@charset "UTF-8";

/* =================================================================
   :root / CSS変数
   ================================================================= */
:root {
    --primary-color: #0d306f;
    --secondary-color: #f0f0f0;
    --text-color: #333;
    --bg-color: #fff;
    --accent-color: #0056b3;
}

/* =================================================================
   Reset & Basic / 基本スタイル
   ================================================================= */
body {
    font-family: 'Helvetica Neue', 'Arial', 'Hiragino Sans', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =================================================================
   Utility & Component / 共通コンポーネント
   ================================================================= */
/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.section-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Buttons  */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #d23340;
    color: white;
}

.btn-primary:hover {
    background-color: #db9393;
    /*  */
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 2px solid #ccc;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    text-decoration: none;
}

.btn-large {
    padding: 15px 24px;
    font-size: 1.1rem;
    margin: 0 20px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin: 0 20px;
}

.highlight {
    font-weight: bold;
}

/* =================================================================
   Header / ヘッダー
   ================================================================= */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
    padding-left: 10px;
}

.logo img {
    height: 50px;
}

/* =================================================================
   Hero / ヒーローセクション
   ================================================================= */
.hero {
    background-image: url("img/hero.png");
    background-size: cover;
    background-position: center;
    width: 100%;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-img-wrapper {
    margin:0;
    display: contents;
}

.hero img {
    padding: 20px;
    width: 80%;
    max-width: max-content;
    max-height: max-content;
    margin-right: 50px;
}

.hero-btn {
    font-size: 2rem;
    position: relative;
    margin-bottom: 40px;
    line-height: 1.8;
    border: solid 5px #fff;
    border-radius: 50px;
    padding: 0 120px;
}



/* =================================================================
   Plans / 料金プランセクション
   ================================================================= */
.plans-section {
    padding: 0;
    background: #fceac7;
    padding-bottom: 20px;
}

/* Plans Section Title  */
.plans-section-title {
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 40px;
    margin-top: 0;
    padding-top: 0;
}

.plans-section-title span {
    display: inline-block;
    border-bottom: 3px solid #0d306f;
}

/* Campaign Plan  */
.campaign-plan {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.campaign-plan .campaign-badge-wrapper {
    text-align: center;
}

/* Campaign Badge  */
.campaign-plan .campaign-badge {
    display: inline-block;
    color: #d23340;
    font-size: 2rem;
    font-weight: bold;
    padding: 0 16px;
    text-align: center;
    position: relative;
    text-decoration: none;
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
}

.campaign-plan .campaign-badge::before,
.campaign-plan .campaign-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 0;
    border-top: 2px solid #d23340;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.campaign-plan .campaign-badge::before {
    left: -14px;
    -webkit-transform: translateY(-50%) rotate(-110deg);
    -moz-transform: translateY(-50%) rotate(-110deg);
    -ms-transform: translateY(-50%) rotate(-110deg);
    -o-transform: translateY(-50%) rotate(-110deg);
    transform: translateY(-50%) rotate(-110deg);
}

.campaign-plan .campaign-badge::after {
    right: -14px;
    -webkit-transform: translateY(-50%) rotate(110deg);
    -moz-transform: translateY(-50%) rotate(110deg);
    -ms-transform: translateY(-50%) rotate(110deg);
    -o-transform: translateY(-50%) rotate(110deg);
    transform: translateY(-50%) rotate(110deg);
}

/* Plan Highlight  */
.campaign-plan .plan-highlight {
    background-color: #0d306f;
    color: white;
    padding-top: 10px;
    position: relative;
    margin-bottom: 20px;
}

/* Discount Badge  */
.campaign-plan .discount-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    background: -webkit-linear-gradient(145deg, #cf2823 30%, #ff1f1f, #cf2823 70%);
    background: -moz-linear-gradient(145deg, #cf2823 30%, #ff1f1f, #cf2823 70%);
    background: -ms-linear-gradient(145deg, #cf2823 30%, #ff1f1f, #cf2823 70%);
    background: -o-linear-gradient(145deg, #cf2823 30%, #ff1f1f, #cf2823 70%);
    background: linear-gradient(145deg, #cf2823 30%, #ff1f1f, #cf2823 70%);
    color: white;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    border: 1px solid #ffd700;
    line-height: 1;
}

.campaign-plan .discount-badge .percentage,
.campaign-plan .percentage {
    font-size: 3rem;
    line-height: 1;
    color: #fff;
}

.campaign-plan .discount-badge .off,
.campaign-plan .off {

    font-size: 2.2rem;
    line-height: 1;
    display: block;
    color: #fff;

}

/* Plan Details  */
.campaign-plan .plan-details {
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.campaign-plan .plan-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0 15px 0;
    color: white;
    text-align: center;
}

.campaign-plan .price {
    text-align: center;
    background-color: white;
    padding: 15px;
    color: #333;
}

.campaign-plan .original-price {
    display: block;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5px;
}

.campaign-plan .discounted-price {
    display: block;
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
}

.campaign-plan .tax-included {
    font-size: 0.4em;
    font-weight: normal;
}

/* Plan Description  */
.campaign-plan .plan-description {
    margin-top: 20px;
}

.campaign-plan .plan-description h4 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    color: #333;
    background-color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid #333;
    position: relative;
    display: inline-block;
    -webkit-box-shadow: 4px 4px 0px #ff8c42;
    -moz-box-shadow: 4px 4px 0px #ff8c42;
    box-shadow: 4px 4px 0px #ff8c42;
}

.campaign-plan .plan-description h4::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #333;
}

.campaign-plan .plan-description h4::before {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.campaign-plan .plan-description ul {
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.campaign-plan .plan-description li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    text-align: left;
}

.campaign-plan .plan-description li:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1;
}

.campaign-plan .plan-description li:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #dc2626;
    border-radius: 50%;
}

.campaign-plan .note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.campaign-plan .plan-description .note {
    text-align: center;
}

/* =================================================================
   Other Plans / その他の料金プランセクション
   ================================================================= */
.other-plans-section {
    background: #fcd1a5;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.other-plans .section-title-wrapper {
    display: block;
    text-align: center;
    padding: 20px 0;
}

.other-plans .section-title {
    display: inline;
    font-size: 1.8rem;
    text-align: left;
    border-bottom: none;
    /*  */

    /*  */
}

.other-plans .pricing-container {
    max-width: 1200px;
    margin: 30px auto 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.other-plans .pricing-card {
    background: white;

    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: visible;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 320px;
    position: relative;
    margin-top: 30px;
}

.other-plans .discount-badge {
    background: -webkit-linear-gradient(135deg, #b555db 0%, #4fb0f1 70%, #93d4ff 100%);
    background: -moz-linear-gradient(135deg, #b555db 0%, #4fb0f1 70%, #93d4ff 100%);
    background: -ms-linear-gradient(135deg, #b555db 0%, #4fb0f1 70%, #93d4ff 100%);
    background: -o-linear-gradient(135deg, #b555db 0%, #4fb0f1 70%, #93d4ff 100%);
    background: linear-gradient(135deg, #b555db 0%, #4fb0f1 70%, #93d4ff 100%);
    color: white;
    text-align: center;
    padding: 0px 70px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 25px;
    position: absolute;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    white-space: nowrap;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.other-plans .discount-badge::after {}

.other-plans .discount-badge .off {
    font-size: 1rem;
}

.other-plans .plan-header {
    background: #0d306f;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.6rem;
    font-weight: bold;
}

.other-plans .pricing-content {
    padding: 30px 20px;
    text-align: center;
}

.other-plans .original-price {
    color: #666;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.other-plans .price-arrow {


    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 15px 0;
}

.other-plans .arrow-down {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 15px solid #e74c3c;
}

.other-plans .current-price {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 15px 0 0 0;
}

.other-plans .tax-included {
    font-size: 0.4em;
    font-weight: normal;
}

.other-plans .notes-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.other-plans .notes-wrapper {
    display: inline-block;
    text-align: left;
}

.other-plans .note {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* =================================================================
   Features / 特徴セクション
   ================================================================= */
.features-section {
    background-color: #f9f9f9;
}

.features-section-title {
    font-size: 3.0rem;
    font-weight: bold;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 40px;
    margin-top: 0;
    padding-top: 0;
}

.features-section-title span {
    display: inline-block;
    border-bottom: 3px solid #1e3c72;
}

.feature-badge {
    position: relative;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 20px 15px 25px;
    margin-right: 25px;
}

.feature-badge svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.feature-badge-text {
    position: relative;
    z-index: 1;
}

.feature-badge-text .number {
    font-size: 3.2rem;
    margin-left: 5px;
}

.feature-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
}

.feature-item.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.feature-item.reverse .feature-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.feature-image {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}

.feature-content {
    -webkit-box-flex: 1.4;
    -webkit-flex: 1.4;
    -moz-box-flex: 1.4;
    -ms-flex: 1.4;
    flex: 1.4;
}

.feature-title {
    font-size: 1.8rem;
    margin: 0;
}

.feature-content p {
    font-size: 1.1rem;
    margin-top: 10px;
}

.feature-content p.note {
    font-size: 0.9rem;
    margin: 0;
}

.feature-content-sub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 30px 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.club-off,
.fromnow-club-and {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.club-off .left,
.fromnow-club-and .left {
    -webkit-box-flex: 1.5;
    -webkit-flex: 1.5;
    -moz-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.club-off .left img,
.fromnow-club-and .left img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.club-off .left p,
.fromnow-club-and .left p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    text-align: left;
}

.club-off .right,
.fromnow-club-and .right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.club-off .right img,
.fromnow-club-and .right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-content .notes-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.feature-content .notes-wrapper {
    display: inline-block;
    text-align: left;
}

.feature-content .note {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.feature-content .btn-wrapper {
    margin-top: 5px;
    text-align: center;
}

.feature-content .btn {
    border-radius: 0;
}

/* =================================================================
   CTA / 行動喚起セクション
   ================================================================= */
.cta-section {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.cta-section p {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 20px;
}

.cta-campaign-badge-wrapper {
    text-align: center;
}

/* Campaign Badge  */
.cta-campaign-badge {
    display: inline-block;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    padding: 0 16px;
    text-align: center;
    position: relative;
    text-decoration: none;
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
}

.cta-campaign-badge::before,
.cta-campaign-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 0;
    border-top: 2px solid #fff;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cta-campaign-badge::before {
    left: -14px;
    -webkit-transform: translateY(-50%) rotate(-110deg);
    -moz-transform: translateY(-50%) rotate(-110deg);
    -ms-transform: translateY(-50%) rotate(-110deg);
    -o-transform: translateY(-50%) rotate(-110deg);
    transform: translateY(-50%) rotate(-110deg);
}

.cta-campaign-badge::after {
    right: -14px;
    -webkit-transform: translateY(-50%) rotate(110deg);
    -moz-transform: translateY(-50%) rotate(110deg);
    -ms-transform: translateY(-50%) rotate(110deg);
    -o-transform: translateY(-50%) rotate(110deg);
    transform: translateY(-50%) rotate(110deg);
}

/* =================================================================
   Reasons / 選ばれる理由セクション
   ================================================================= */
.reasons-section {
    padding: 60px 0;
    text-align: center;
    padding: 0;
    background-image: url('img/magazine_hyoshi.png');
    background-position: top;
    background-repeat: repeat;
    z-index: -2;
    position: relative;
    margin-bottom: -300px;
}

.reasons-section .container {
    padding-top: 50px;
}

.reasons-section .section-title {
    display: inline;
    margin: 0;
    padding: 5px 5px 10px 5px;
    background-color: var(--primary-color);
    color: #fff;
}

.reasons-section .section-lead-wrapper {
    margin: 120px auto 80px auto;
    padding: 20px;
    border: #1e3a8a solid 10px;
    border-radius: 30px;
    background: #fff;
}

.reasons-section .section-lead {

    margin: auto;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: bold;
}

.reason-item {
    text-align: center;
}

.reason-subtitle {
    position: relative;
    font-size: 3.0rem;
    font-weight: bold;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 0;
    z-index: 2;
}

.reason-subtitle img {
    padding-right: 20px;
}

.reason-subtitle span {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #1e3c72;
}

.reason-bg1 {
    width: 100%;
    margin: 0;
    padding: 30px 0 170px 0;
    position: relative;
    top: 200px;
}

.reason-bg1::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e9e0cd;
    -webkit-transform: skewY(-3deg);
    -moz-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
    -o-transform: skewY(-3deg);
    transform: skewY(-3deg);
    z-index: 1;

}

.reason-bg2 {
    width: 100%;
    margin: 0;
    padding: 50px 0 150px 0;
    position: relative;
    top: 0;
}

.reason-bg2::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #c5d7d1;
    -webkit-transform: skewY(-3deg);
    -moz-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
    -o-transform: skewY(-3deg);
    transform: skewY(-3deg);
    z-index: 1;

}

.reason-bg3 {
    width: 100%;
    margin: 0;
    padding: 140px 0 100px 0;
    position: relative;
    top: -250px;
    overflow: hidden;
}

.reason-bg3::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e9e0cd;
    -webkit-transform: skewY(-3deg) translateY(90px);
    -moz-transform: skewY(-3deg) translateY(90px);
    -ms-transform: skewY(-3deg) translateY(90px);
    -o-transform: skewY(-3deg) translateY(90px);
    transform: skewY(-3deg) translateY(90px);
    z-index: 1;

}

.reason-item p {
    z-index: 2;
    position: relative;
    font-size: 1.2rem;
    font-weight: bold;
}

.reason-item .reason-content-img {
    margin-bottom: 15px;

    z-index: 2;
    position: relative;
}


/* =================================================================
   Info / お知らせセクション
   ================================================================= */
.info-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.info-section-title {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 40px;
    margin-top: 0;
    padding-top: 0;
}

.info-section-title span {
    display: inline-block;
    border-bottom: 3px solid #1e3c72;
}

.info-block {
    margin-bottom: 20px;
}

.info-block h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 15px 0;
    padding-left: 12px;
    position: relative;
}

.info-block h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #1e3c72;
    border-radius: 2px;
}

.info-block p {
    margin: 2px 0 0 20px;
    font-size: 1.1rem;

}

.info-block .note {
    margin: 0 0 0 20px;
    font-size: 0.9rem;
}

.payment-table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow: hidden;
    border: solid 1px #4a5568;
    margin-bottom: 20px;
}

.payment-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.payment-method {
    background-color: #4a5568;
    color: white;
    padding: 5px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 50px;
}

.payment-method:last-child {
    border-right: none;
}

.payment-details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.payment-detail {
    background-color: white;
    padding: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.payment-detail:last-child {
    border-right: none;
}

.payment-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.payment-item:not(:last-child) {
    border-right: 1px solid #2d3748;
}

.payment-item .payment-method {
    border-right: none;
}

.payment-item .payment-detail {
    border-right: none;
}

.payment-note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.payment-note::before {
    content: '※';
    margin-right: 2px;
}

/* =================================================================
   Footer / フッター
   ================================================================= */
.footer {
    background-color: #f9f4eb;

    padding: 50px 0 20px;
    text-align: center;
}

.footer-section-title {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 40px;
    margin-top: 0;
    padding-top: 0;
}

.footer-section-title span {
    display: inline-block;
    border-bottom: 3px solid #1e3c72;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-contact .tel {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0 0 0;
    color: #d23340;
}

.footer-contact .reception-time {
    font-size: 1.1rem;
    margin: 0;
    font-weight: bold;
}

.footer-contact .note {
    margin-bottom: 0;
    font-size: 1rem;
}

.footer .btn-secondary {
    background-color: #fff;
    border-color: #1e3c72;
    margin-top: 15px;
}

.footer .btn-secondary:hover {
    background-color: #1e3c72;
    color: #fff;
}

.copyright {
    font-size: 0.8rem;
    margin-top: 40px;
    border-top: 1px solid #1e3c72;
    padding-top: 20px;
}


/* =================================================================
   Responsive / レスポンシブ
   ================================================================= */
@media (max-width: 991px) {
    .hero {
        min-height: 300px;
    }

    .hero img {
        width: 80%;
    }

    .other-plans .pricing-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .other-plans .pricing-card {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    .other-plans .current-price {
        font-size: 32px;
    }

    .other-plans .discount-badge {
        font-size: 1.6rem;
    }

    .feature-item,
    .feature-item.reverse {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -moz-box-orient: vertical;
        -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .reason-item .reason-content-img {
        width: 80%;
    }

    .plan-highlight {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .reasons-section .section-lead-wrapper {
        margin-bottom: 30px;
    }

    /* 文字サイズ調整 - タブレット */
    .plans-section-title {
        font-size: 2.8rem;
    }

    .campaign-badge {
        font-size: 1.6rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .discounted-price {
        font-size: 2.2rem;
    }

    .original-price {
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    .feature-number {
        font-size: 1rem;
    }

    .reason-item .reason-subtitle {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1.3rem;
    }

    .footer-contact .tel {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 0;
    }

    .logo img {
        height: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero {
        height: 40vh;

    }

    .hero img {
        width: 80%;
        max-height: 80%;
        margin-right: 30px;
    }

    /* Discount Badge  */
    .campaign-plan .discount-badge {
        top: -10px;
        left: -10px;
        width: 80px;
        height: 80px;

    }

    .campaign-plan .discount-badge .percentage,
    .campaign-plan .percentage {
        font-size: 1.8rem;
        line-height: 1;
        color: #fff;
    }

    .campaign-plan .discount-badge .off,
    .campaign-plan .off {
        font-size: 1rem;
        line-height: 1;
        display: block;
        color: #fff;
    }

    .other-plans .pricing-content {
        padding: 20px 15px;
    }

    .other-plans .current-price {
        font-size: 28px;
    }

    .other-plans .apply-button {
        width: 90%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .feature-content {
        padding: 20px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-item {
        margin-bottom: 20px;
    }

    .club-off,
    .fromnow-club-and {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }

    .club-off .right,
    .fromnow-club-and .right {
        -webkit-box-flex: unset;
        -webkit-flex: none;
        -moz-box-flex: unset;
        -ms-flex: none;
        flex: none;
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .club-off .left img,
    .fromnow-club-and .left img {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .club-off .left p,
    .fromnow-club-and .left p {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        font-size: 13px;
    }

    .feature-notes {
        padding: 15px;
    }

    .feature-notes p {
        font-size: 12px;
    }

    .reasons-section .section-lead-wrapper {
        margin-bottom: 0;
    }

    .reasons-section .section-lead {
        font-size: 0.8rem;
    }

    .payment-table {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .payment-item {
        border-right: none;
        border-bottom: 1px solid #2d3748;
    }

    .payment-item:last-child {
        border-bottom: none;
    }

    /* 文字サイズ調整 - スマホ */
    .plans-section-title {
        font-size: 2.2rem;
    }

    .features-section-title {
        font-size: 2rem;
    }

    .other-plans .section-title {
        font-size: 1.3rem;
    }

    .other-plans .plan-header {
        font-size: 1rem;
        padding: 15px;
    }

    .other-plans .discount-badge {
        font-size: 1.4rem;

    }

    .other-plans .original-price {
        font-size: 0.9rem;
    }

    .other-plans .current-price {
        font-size: 1.8rem;
    }

    .other-plans .tax-note {
        font-size: 12px;
    }

    .other-plans .note {
        font-size: 12px;
    }

    .campaign-plan .campaign-badge {
        font-size: 1.4rem;
    }

    .campaign-plan .plan-name {
        font-size: 1.3rem;
    }

    .campaign-plan .discounted-price {
        font-size: 1.8rem;
    }

    .campaign-plan .original-price {
        font-size: 0.9rem;
    }

    .campaign-plan .plan-description h4 {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .campaign-plan .note {
        font-size: 0.8rem;
    }

    .feature-badge {
        font-size: 16px;
        padding: 10px 15px 10px 20px;
        margin-right: 20px;
    }

    .feature-badge-text .number {
        font-size: 2.4rem;
        margin-left: 3px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .feature-content p.note {
        font-size: 0.8rem;
    }

    .reason-subtitle {
        font-size: 1.8rem;
    }

    .reason-item p {
        font-size: 0.8rem;
    }

    .reason-subtitle img {
        width: 40px;
        padding-right: 10px;
        height: auto;
    }

    .cta-campaign-badge {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .btn-large {
        font-size: 1rem;
        padding: 12px 20px;
        margin: 0 10px;
    }

    .info-section-title {
        font-size: 1.8rem;
    }

    .footer-contact h4 {
        font-size: 1.1rem;
    }

    .footer-contact .tel {
        font-size: 1.2rem;
    }

    .footer-contact .reception-time {
        font-size: 0.8rem;
    }

    .footer-section-title {
        font-size: 1.6rem;
    }

    .copyright {
        font-size: 0.7rem;
    }

    .info-block h4 {
        font-size: 1.1rem;
    }

    .info-block p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-content {
        padding: 15px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-badge {
        font-size: 14px;
        padding: 8px 12px 8px 16px;
        margin-right: 15px;
    }

    .feature-badge-text .number {
        font-size: 2rem;
    }

    .plans-section-title {
        font-size: 1.8rem;
    }

    .features-section-title {
        font-size: 1.6rem;
    }

    .other-plans .section-title {
        font-size: 1.1rem;
    }

    .campaign-plan .campaign-badge {
        font-size: 1.2rem;
    }

    .campaign-plan .plan-name {
        font-size: 1.1rem;
    }

    .campaign-plan .discounted-price {
        font-size: 1.5rem;
    }

    .reason-subtitle {
        font-size: 1.4rem;
    }

    .reasons-section .section-lead {
        font-size: 0.8rem;
    }

    .cta-campaign-badge {
        font-size: 1.2rem;
    }
}