@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

body {
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
}

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

.wrap {
    position: relative;
    overflow: hidden;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.parent {
    padding: 64px 5vw;
}

.child {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.serif {
    font-family: "Noto Serif JP", serif;
}

.red-txt {
    color: #EF4444;
}

.gold-txt {
    color: #D4AF37;
}

.gradation {
    background: linear-gradient(90deg,
        #D4AF37 0%,
        #F3E5AB 50%,
        #D4AF37 100%
    );
}

.gradation-txt {
    background: linear-gradient(90deg,
                #D4AF37 0%,
                #F3E5AB 50%,
                #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-btn {
    position: relative;
    background: linear-gradient(90deg,
        #DC2626 0%,
        #991B1B 100%
    );
    display: inline-block;
    max-width: 360px;
    width: 100%;
    padding: 12px;
    border-radius: 50vh;
    font-size: 20px;
    text-align: center;
    color: #f1f1f1;
    box-shadow: 0 0 16px rgba(220,38,38,0.3);
}

.cta-btn .cta-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
/*終わり*/


/*<header class="header">*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0 5vw;
    width: 100%;
    height: 80px;
    background-color: #111;
    border-bottom: solid 1px #C9A65A;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-wrap {
    max-width: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header-logo {
    width: 100%;
}

.header-cta-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta {
    color: #fff;
    width: 240px;
    text-align: center;
    padding: 8px;
    border-radius: 50vh;
}

.header-cta-01 {
    border: solid 1px #fff;
}

.header-cta-02 {
    position: relative;
    background: linear-gradient(90deg,
        #DC2626 0%,
        #991B1B 100%
    );
}

.header-cta-02 .cta-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
/*終わり*/


/*<div class="breadcrumb">*/
.breadcrumb {
    margin-top: 80px;
    padding: 8px 5vw;
    background-color: #171717;
}

.breadcrumb-in {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B7B7B7;
    font-size: 12px;
}

.breadcrumb-txt-03 {
    color: #F3D37A;
}
/*終わり*/


/*<section class="fv">*/
.fv {
    background-image: url(../img/fv_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: solid 3px #CC0000;
}

.fv-in {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fv-txt-wrap-01 {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fv-h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 3px 4px 0 rgba(0,0,0,0.4);
}

.fv-h1 .large-txt,
.fv-h1 .red-txt {
    font-size: 72px;
}

.fv-date-wrap {
    position: relative;
    width: max-content;
    margin: 0 auto;
    padding: 16px 0;
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
    border-top: solid 1px #D4AF37;
    border-bottom: solid 1px #D4AF37;
}

.fv-date-01 {
    position: relative;
    font-size: 24px;
    z-index: 2;
}

.fv-date-02 {
    position: relative;
    font-size: 32px;
    z-index: 2;
}

.fv-date-03 {
    position: relative;
    font-size: 24px;
    z-index: 2;
}

.fv-light-01 {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
}

.fv-txt-01-wrap {
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.fv-txt-01 {
    padding: 0 8px;
    border-left: solid 2px #fff;
}

.fv-txt-01:first-child {
    border-left: none;
}

.fv-txt-02 {
    color: #F3E5AB;
    font-size: 20px;
}

.fv-txt-wrap-02 {
    border-radius: 8px;
    border: solid 1px #AA8C2C;
    background-color: #1A1A1A;
    padding: 24px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.fv-txt-wrap-02-l {
    width: 49%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.fv-txt-03 {
    font-weight: 800;
    color: #222;
    padding: 4px 16px;
    border-radius: 4px;
}

.fv-txt-05 {
    font-size: 24px;
}

.fv-txt-06 {
    font-weight: 800;
    font-size: 40px;
}

.fv-txt-06 span {
    font-size: 48px;
}

.fv-txt-07 {
    font-size: 20px;
}

.fv-txt-wrap-02-r {
    width: 49%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fv-guest-wrap {
    width: 49%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

.fv-guest-img {
    max-width: 120px;
    width: 100%;
}

.fv-guest-txt-01 {
    font-size: 12px;
    font-weight: 400;
}
.fv-guest-txt-01 >span {
    font-size: 16px;
    font-weight: 400;
    font-weight: bold;
}

.fv-guest-txt-02 {
    font-size: 18px;
}
.fv-guest-txt-02>span {
    font-size: 12px;
}

.fv-txt-wrap-03 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fv-h2 {
    position: relative;
    text-align: center;
    border-bottom: solid 1px #F3E5AB;
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    width: max-content;
    margin: 0 auto;
    z-index: 2;
}

.fv-h2 span {
    font-size: 48px;
    padding-left: 8px;
}

.fv-light-02 {
    position: absolute;
    bottom: -28px;
    right: -60px;
    max-width: 160px;
    width: 100%;
}

.fv-lane-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.fv-lane-con {
    width: 32%;
    border-radius: 8px;
    padding: 16px;
    border: solid 1px #F3E5AB;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fv-lane-con-01 {
    background-color: #7C1241;
}

.fv-lane-con-02 {
    background-color: #B85502;
}

.fv-lane-con-03 {
    background-color: #015194;
}

.fv-lane-title {
    text-align: center;
    padding: 4px 8px;
    border: solid 1px #fff;
    width: max-content;
    margin: 0 auto;
}

.fv-lane-ul {
    flex-grow: 1;
    background-color: #1A1A1A;
    color: #f1f1f1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fv-txt-08 {
    border-radius: 50vh;
    padding: 8px;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
}
/*終わり*/


/*<div class="swiper coach-swiper">*/
.swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide {
    height: auto;
}

.swiper-box {
    height: 100%;
}

.swiper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*終わり*/


/*<section class="lead">*/
.lead {
    background-image: url(../img/lead_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.lead-in {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    line-height: 1.7;
}

.lead-h2 {
    font-size: 32px;
    font-weight: 800;
}

.lead-txt-01 {
    font-size: 18px;
}

.lead-txt-04-wrap {
    border: solid 1px #D4AF37;
    background-color: rgba(0,0,0,0.6);
    font-size: 18px;
    padding: 16px;
    border-radius: 4px;
}
/*終わり*/


/*<section class="worry-01">*/
.worry-01 {
    background-image: url(../img/worry_01_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.worry-01-in {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    text-align: center;
}

.worry-01-h2 {
    border-radius: 4px;
    background-color: #fff;
    padding: 8px;
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    margin-top: 8px;
}

.worry-01-h2 span {
    font-size: 32px;
    font-weight: 800;
}

.worry-01-h3 {
    font-size: 32px;
    font-weight: 800;
}

.worry-01-h3 {
    font-size: 32px;
    font-weight: 800;
}

.worry-01-h3-txt {
    margin-top: 4px;
}
/*終わり*/


/*<section class="worry-02">*/
.worry-02 {
    background-image: url(../img/worry_02_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.worry-02-txt-wrap {
    width: max-content;
    margin: 0 auto;
    padding: 24px;
    background-color: #1A1A1A;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.worry-02-h2-wrap {
    padding: 16px 0;
    border-top: solid 1px #D4AF37;
    border-bottom: solid 1px #D4AF37;
}

.worry-02-h2 {
    font-weight: 600;
    font-size: 32px;
}
/*終わり*/


/*<section class="cause">*/
.cause {
    background-color: #222;
}

.cause-in {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cause-h2-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #f1f1f1;
    text-align: center;
}

.cause-h2 {
    border-radius: 4px;
    background-color: #f1f1f1;
    padding: 8px;
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    margin-top: 8px;
}

.cause-txt-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cause-txt-01 {
    font-size: 32px;
    font-weight: 800;
}

.cause-txt-02 {
    color: #f1f1f1;
}

.cause-txt-02 span {
    font-size: 24px;
    font-weight: 800;
}

.cause-txt-03 {
    padding: 8px;
    font-size: 24px;
    border-radius: 50vh;
}

.cause-lane-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.cause-lane-con {
    width: 32%;
    border-radius: 8px;
    border: solid 1px #F3E5AB;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cause-lane-title-wrap {
    border-radius: 8px 8px 0 0;
    text-align: center;
    padding: 16px;
    color: #f1f1f1;
}

.cause-lane-title {
    font-size: 18px;
}

.cause-lane-con-01 .cause-lane-title-wrap {
    background-color: #7C1241;
}

.cause-lane-con-02 .cause-lane-title-wrap {
    background-color: #B85502;
}

.cause-lane-con-03 .cause-lane-title-wrap {
    background-color: #015194;
}

.cause-lane-txt-wrap {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cause-lane-txt {
    text-align: center;
}

.cause-lane-ul {
    background-color: #222;
    color: #f1f1f1;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;    
}

.cause-get-wrap {
    border-radius: 8px;
    border: solid 1px #AA8C2C;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #f1f1f1;
}

.cause-get-title {
    text-align: center;
    border-bottom: solid 1px #AA8C2C;
    width: max-content;
    padding-bottom: 4px;
    margin: 0 auto;
    font-size: 20px;
}

.cause-get-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.cause-get-con {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cause-get-num {
    font-weight: 600;
    font-size: 24px;
}

.cause-get-txt-02 {
    font-size: 14px;
    font-weight: 400;
}
/*終わり*/


/*<section class="lecture">*/
.lecture {
    background-image: url(../img/lecture_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.lecture-in {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lecture-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #f1f1f1;
}

.lecture-title-01 {
    border-radius: 4px;
    background-color: #DC2626;
    padding: 8px;
}

.lecture-h2 {
    font-size: 40px;
}

.lecture-pro-wrap {
    border-radius: 4px;
    background-color: #111;
    border: solid 1px #333;
    color: #f1f1f1;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lecture-pro-title {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 8px;
    text-align: center;
    border-bottom: solid 1px #1F2937;
}

.lecture-pro-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.lecture-pro-con {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 49%;
}

.lecture-man {
    max-width: 160px;
    width: 100%;
}

.lecture-pro-txt-wrap {
    width: calc(100% - 180px);
    font-size: 12px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lecture-pro-txt-01 > span{
    font-size: 15px;
    font-weight: bold;
}
.lecture-pro-txt-02 {
    font-weight: 600;
    font-size: 18px;
}

.lecture-txt-wrap-01 {
    border-top: solid 1px #D4AF37;
    border-bottom: solid 1px #D4AF37;
    color: #f1f1f1;
    padding: 16px;
    text-align: center;
}

.lecture-txt-01 {
    font-size: 20px;
}

.lecture-txt-02 {
    font-weight: 800;
    font-size: 40px;
}

.lecture-txt-02 span {
    font-size: 48px;
}   

.lecture-point-wrap {
    border: solid 1px #D4AF37;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lecture-point-title {
    text-align: center;
    font-size: 24px;
    color: #F9D76B;
}

.lecture-point-ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lecture-point-ul li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #f1f1f1;
}

.lecture-point-num {
    font-size: 20px;
    font-weight: 800;
}

.lecture-point-txt-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lecture-point-txt-wrap .large-txt {
    font-size: 18px;
}

.lecture-point-txt {
    font-size: 14px;
    font-weight: 400;
}

.lecture-txt-wrap-02 {
    background-color: #1F2937;
    border-left: solid 4px #DC2626;
    border-radius: 8px;
    padding: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lecture-txt-04 {
    font-weight: 600;
    font-size: 18px;
}

.lecture-ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 8px;
}

.lecture-ul li {
    width: 49%;
    display: flex;
    gap: 4px;
    font-size: 14px;
}

.lecture-txt-wrap-03 {
    background-color: #1F2937;
    border-left: solid 4px #D4AF37;
    border-radius: 8px;
    padding: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.lecture-txt-wrap-l {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lecture-txt-05 {
    font-weight: 600;
    font-size: 18px;
}

.lecture-img {
    width: 48%;
}

.lecture-txt-07 {
    text-align: center;
    font-weight: 800;
    font-size: 24px;
}
/*終わり*/


/*<section class="schedule">*/
.schedule {
    background-color: #1A1A1A;
}

.schedule-in {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.schedule-h2 {
    width: max-content;
    margin: 0 auto;
    text-align: center;
    border-bottom: solid 1px #D4AF37;
    color: #fff;
    padding-bottom: 8px;
    font-size: 32px;
    font-weight: 600;
}

.schedule-img {
    border-radius: 8px;
}

.schedule-txt-wrap {
    background-color: #FACC15;
    padding: 24px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.schedule-txt-02 {
    font-weight: 800;
    font-size: 24px;
}
/*終わり*/


/*<section class="coach">*/
.coach {
    background-color: #111;
}

.coach-in {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.coach-h2-wrap {
    padding: 16px;
    border-radius: 4px;
    border: solid 1px #D4AF37;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.coach-h2 {
    font-weight: 800;
    font-size: 24px;
    color: #f1f1f1;
}

.coach-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 16px 0;
    border-top: solid 1px rgba(255,255,255,0.5);
}

.coach-con-last {
    border-bottom: solid 1px rgba(255,255,255,0.5);
}

.coach-img-wrap{
    width: 20%;
}

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

.coach-txt-wrap {
    width: 78%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #f1f1f1;
}

.coach-txt-01 {
    font-size: 20px;
}

.coach-txt-03 {
    font-size: 14px;
}
/*終わり*/


/*<section class="strategy">*/
.strategy {
    background-color: #1A1A1A;
    border-bottom: solid 3px #DC2626;
}

.strategy-in {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strategy-h2-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.strategy-h2 {
    position: relative;
    font-size: 48px;
    font-weight: 800;
    z-index: 2;
}

.strategy-h2 span {
    font-size: 56px;
}

.strategy-h2-txt {
    position: relative;
    font-size: 32px;
    color: #f1f1f1;
    z-index: 2;
}

.strategy-light {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
    max-width: 160px;
    width: 100%;
}

.strategy-area {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.strategy-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strategy-title-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #f1f1f1;
    border-bottom: solid 1px #374151;
    padding-bottom: 16px;
}

.strategy-title-01 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-h3 {
    font-size: 24px;
    font-weight: 600;
    padding-left: 8px;
}

.strategy-wrap-01 .strategy-h3 {
    border-left: solid 5px #7C1241;
}

.strategy-wrap-02 .strategy-h3 {
    border-left: solid 5px #B85502;
}

.strategy-wrap-03 .strategy-h3 {
    border-left: solid 5px #015194;
}

.strategy-h3-txt {
    padding-left: 8px;
}

.strategy-title-02 {
    padding: 4px 16px;
    border-radius: 4px;
}

.strategy-wrap-01 .strategy-title-02 {
    background-color: #7C1241;
}

.strategy-wrap-02 .strategy-title-02 {
    background-color: #B85502;
}

.strategy-wrap-03 .strategy-title-02 {
    background-color: #015194;
}

.strategy-con {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    color: #f1f1f1;
}

.strategy-con-l {
    width: 25%;
    background-color: #1F2937;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.strategy-num {
    font-size: 40px;
}

.strategy-con-name {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
}

.strategy-con-name span {
    font-size: 16px;
    font-weight: 800;
}

.strategy-con-r {
    width: 75%;
    background-color: #222;
    padding: 24px;
}

.strategy-h4 {
    color: #F3E5AB;
    font-size: 20px;
    font-weight: 600;
    border-bottom: solid 1px #333;
    padding-bottom: 8px;
}

.strategy-con-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 16px;
}

.strategy-txt-wrap {
    width: 48%;
}

.strategy-txt-wrap-02 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strategy-ul-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strategy-ul-title-01,
.strategy-ul-title-02 {
    width: max-content;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
}

.strategy-wrap-01 .strategy-ul-title-01 {
    background-color: #7C1241;
}

.strategy-wrap-02 .strategy-ul-title-01 {
    background-color: #B85502;
}

.strategy-wrap-03 .strategy-ul-title-01 {
    background-color: #015194;
}

.strategy-ul-title-02 {
    color: #D4AF37;
    background-color: rgba(170,140,44,0.2);
}

.strategy-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-ul-02 {
    background-color: #1F2937;
    padding: 16px;
}

.strategy-ul li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-weight: 400;
}

.strategy-ul-02 li:first-child {
    border-bottom: solid 1px #374151;
    padding-bottom: 4px;
}

.strategy-wrap-01 .strategy-ul-01 span {
    color: #7C1241;
}

.strategy-wrap-02 .strategy-ul-01 span {
    color: #B85502;
}

.strategy-wrap-03 .strategy-ul-01 span {
    color: #015194;
}

.strategy-ul-03 span {
    color: #D4AF37;
}
/*終わり*/


/*<section class="cta-01">*/
.cta-01 {
    background-color: #1A1A1A;
    color: #f1f1f1;
    text-align: center;
}

.cta-01-in {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-01-h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 1.3;
}

.cta-01-txt-01 {
    font-weight: 800;
    font-size: 20px;
    padding: 10px 24px;
    background-color: #fff;
    border-radius: 4px;
}

.cta-01-txt-02 {
    line-height: 2;
}

.cta-01-txt-02 span {
    background-color: rgba(127,29,29,0.3);
    border-radius: 4px;
    padding: 0 8px;
}

.cta-01-txt-03 {
    font-size: 20px;
}

.cta-01-txt-03 span {
    border-bottom: solid 2px #991B1B;
}
/*終わり*/


/*<section class="overview">*/
.overview {
    background-color: #222;
    color: #f1f1f1;
    border-bottom: solid 3px #D4AF37;
}

.overview-in {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.overview-h2 {
    width: max-content;
    margin: 0 auto;
    text-align: center;
    border-bottom: solid 1px #D4AF37;
    color: #fff;
    padding-bottom: 8px;
    font-size: 32px;
    font-weight: 600;
}

    /*<div class="summit-wrap">*/
.summit-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: solid 1px #D4AF37;
    border-radius: 8px;
    background-color: #1A1A1A;
    padding: 40px;
}

.summit-h3-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.summit-h3 {
    font-weight: 600;
    font-size: 32px;
}

.summit-h3-txt {
    font-size: 18px;
}

.summit-dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.summit-dl dt {
    width: 20%;
    border-top: solid 1px #333;
    padding: 16px 0;
}

.summit-dl dd {
    width: 80%;
    border-top: solid 1px #333;
    padding: 16px 0;
    font-weight: 400;
}

.summit-dl dd .small-txt {
    font-size: 12px;
}

.summit-txt {
    text-align: center;
    font-size: 20px;
}

.summit-wrap .cta-btn-wrap {
    text-align: center;
}

    /*<div class="how-wrap">*/
.how-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.how-h3 {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
}

.how-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.how-con {
    border-radius: 8px;
    padding: 16px;
    width: 24%;
    background-color: #1A1A1A;
    border: solid 1px #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.how-con-04 {
    border: solid 1px #D4AF37;
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.how-num {
    font-size: 24px;
}

.how-small-txt {
    margin-top: 8px;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
}

    /*<div class="faq-wrap">*/
.faq-wrap {
    background-color: #1A1A1A;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-h3 {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
}

.faq-con {
    border-top: solid 1px #333;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.q-txt,
.a-txt {
    display: flex;
    gap: 8px;
}

.a-txt {
    font-weight: 400;
}

.q-txt span,
.a-txt span {
    font-weight: 800;
}
/*終わり*/


/*<section class="cta-02">*/
.cta-02 {
    background-color: #171717;
}

.cta-02-in {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cta-02-h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
}

.cta-02-txt-wrap {
    border-radius: 8px;
    background-color: #222;
    color: #f1f1f1;
    border: solid 1px #333;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-02-txt-04 {
    padding-bottom: 16px;
    border-bottom: solid 1px #D4AF37;
}

.cta-02-txt-05 {
    text-align: center;
    font-size: 24px;
}

.cta-02-txt-06 {
    text-align: center;
}

.cta-02 .cta-btn-wrap {
    text-align: center;
}
/*終わり*/


/*追従ボタン*/
.fix-cta-btn-wrap {
    display: none;
}
/*終わり*/


/*<div class="form">*/
.form {
    background-color: #222;
}

.form-in{
    text-align: center;
}
/*終わり*/

/*<footer class="footer">*/
.footer {
    padding: 40px 5vw 16px 5vw;
    background-color: #171717;
}

.copyright {
    text-align: center;
    color: #6B7280;
    font-size: 12px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }

    .parent {
        padding: 64px 3vw;
    }
/*終わり*/  


/*<header class="header">*/
    .header {
        padding: 0 3vw;
    }

    .header-cta-wrap {
        display: none;
    }
/*終わり*/


/*<div class="breadcrumb">*/
    .breadcrumb {
        padding: 8px 3vw;
    }
/*終わり*/


/*<section class="fv">*/
    .fv-h1 {
        font-size: clamp(32px, 56vw / 10.24, 56px);
    }

    .fv-h1 .large-txt,
    .fv-h1 .red-txt {
        font-size: clamp(48px, 72vw / 10.24, 72px);
    }

    .fv-txt-wrap-02 {
        flex-direction: column;
        gap: 40px;
        justify-content: center;
        align-items: center;
    }

    .fv-txt-wrap-02-l {
        width: 100%;
    }

    .fv-txt-wrap-02-r {
        max-width: 440px;
        width: 100%;
    }

    .fv-lane-con {
        padding: clamp(8px, 16vw / 10.24, 16px);
    }

    .fv-lane-ul {
        padding: clamp(8px, 16vw / 10.24, 16px);
    }

    .fv-lane-ul li {
        font-size: clamp(12px, 16vw / 10.24, 16px);
    }

    .fv-txt-08 {
        font-size: clamp(18px, 24vw / 10.24, 24px);
    }
/*終わり*/


/*<section class="lead">*/
    .lead-in {
        width: 100%;
        gap: clamp(16px, 24vw / 10.24, 24px);
    }

    .lead-h2 {
        font-size: clamp(22px, 32vw / 10.24, 32px);
    }
/*終わり*/


/*<section class="worry-01">*/
    .worry-01-h2 {
        font-size: clamp(16px, 24vw / 10.24, 24px);
    }

    .worry-01-h2 span {
        font-size: clamp(20px, 32vw / 10.24, 32px);
    }

    .worry-01-h3 {
        font-size: clamp(24px, 32vw / 10.24, 32px);
    }
/*終わり*/


/*<section class="worry-02">*/
    .worry-02-txt-wrap {
        width: 100%;
    }

    .worry-02-h2 {
        font-size: clamp(24px, 32vw / 10.24, 32px);
    }
/*終わり*/


/*<section class="cause">*/
    .cause-h2 {
        font-size: clamp(20px, 24vw / 10.24, 24px);
    }

    .cause-txt-01 {
        font-size: clamp(24px, 32vw / 10.24, 32px);
    }

    .cause-txt-03 {
        font-size: clamp(20px, 24vw / 10.24, 24px);
    }

    .cause-lane-title-wrap {
        padding: clamp(4px, 16vw / 10.24, 16px);
    }

    .cause-lane-txt-wrap {
        padding: clamp(4px, 8vw / 10.24, 8px);
    }

    .cause-lane-txt {
        font-size: clamp(12px, 16vw / 10.24, 16px);
    }

    .cause-lane-ul {
        padding: clamp(8px, 16vw / 10.24, 16px);
    }

    .cause-lane-ul li {
        font-size: clamp(12px, 16vw / 10.24, 16px);
    }

    .cause-get-wrap {
        padding: clamp(16px, 24vw / 10.24, 24px);
    }
/*終わり*/


/*<section class="lecture">*/
    .lecture-pro-wrap {
        padding: clamp(24px, 40vw / 10.24, 40px) clamp(16px, 24vw / 10.24, 24px);
    }

    .lecture-pro-flex {
        max-width: 800px;
        margin: 0 auto;
        flex-direction: column;
        gap: 40px;
    }

    .lecture-pro-con {
        width: 100%;
    }    
/*終わり*/


/*<section class="schedule">*/
/*終わり*/


/*<section class="coach">*/
/*終わり*/


/*<section class="strategy">*/
    .strategy-con {
        flex-direction: column;
    }

    .strategy-con-l {
        width: 100%;
        padding: clamp(16px, 24vw / 10.24, 24px);
    }

    .strategy-img-01 {
        max-width: 200px;
        width: 100%;
    }

    .strategy-con-r {
        width: 100%;
        padding: clamp(16px, 24vw / 10.24, 24px);
    }

    .strategy-h4 {
        font-size: clamp(18px, 20vw / 10.24, 20px);
    }

    .strategy-ul-02 {
        padding: clamp(8px, 16vw / 10.24, 16px);
    }

/*終わり*/


/*<section class="cta-01">*/
    .cta-01-in {
        width: 100%;
    }

    .cta-01-h2 {
        font-size: clamp(24px, 40vw / 10.24, 40px);
    }
/*終わり*/


/*<section class="overview">*/
    /*<div class="summit-wrap">*/
    .summit-wrap {
        padding: clamp(24px, 40vw / 10.24, 40px);
    }

    .summit-txt {
        font-size: clamp(18px, 20vw / 10.24, 20px);
    }

    /*<div class="how-wrap">*/
    .how-flex {
        flex-direction: column;
        gap: 4px;
        max-width: 640px;
        margin: 0 auto;
    }

    .how-con {
        width: 100%;
    }
/*終わり*/


/*<section class="cta-02">*/
    .cta-02-h2 {
        font-size: clamp(24px, 32vw / 10.24, 32px);
    }

    .cta-02-txt-wrap {
        padding: clamp(24px, 40vw / 10.24, 40px);
    }

    .cta-02-txt-05 {
        font-size: clamp(18px, 24vw / 10.24, 24px);
    }
/*終わり*/


/*追従ボタン*/
    .fix-cta-btn-wrap {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        z-index: 1000;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        background-color: #222;
    }

    .fix-cta-btn-wrap.is-hidden {
        opacity: 0;
        visibility: hidden;
    }

    .fix-cta-btn {
        width: 50%;
        position: relative;
        padding: 20px 16px;
        border: solid 1px #fff;
        text-align: center;
        color: #f1f1f1;
        font-size: 18px;
        font-weight: 600;
        z-index: 1;
    }

    .fix-cta-btn-02 {
        background: linear-gradient(90deg,
            #DC2626 0%,
            #991B1B 100%
        );
    }
/*終わり*/
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .parent {
        padding: clamp(48px, 64vw / 5.99, 64px) 3vw;
    }

    .cta-btn {
        max-width: clamp(300px, 360vw / 5.99, 360px);
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }

/*終わり*/  


/*<header class="header">*/
    .header {
        height: clamp(64px, 80vw / 5.99, 80px);
    }

    .header-logo-wrap {
        max-width: clamp(220px, 280vw / 5.99, 280px);
    }
/*終わり*/


/*<div class="breadcrumb">*/
    .breadcrumb {
        margin-top: clamp(64px, 80vw / 5.99, 80px);
    }

    .breadcrumb-in {
        font-size: clamp(10px, 12vw / 5.99, 12px);
    }
/*終わり*/


/*<section class="fv">*/
    .fv {
        padding: clamp(40px, 64vw / 5.99, 64px) 3vw;
    }

    .fv-h1 {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

    .fv-h1 .large-txt,
    .fv-h1 .red-txt {
        font-size: clamp(40px, 48vw / 5.99, 48px);
    }

    .fv-date-wrap {
        padding: clamp(8px, 16vw / 5.99, 16px) 0;
    }

    .fv-date-01 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .fv-date-02 {
        font-size: clamp(22px, 32vw / 5.99, 32px);
    }

    .fv-date-03 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .fv-light-01 {
        top: clamp(-24px, -32vw / 5.99, -32px);
    }

    .fv-txt-01 {    
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }

    .fv-txt-02 {
        font-size: clamp(14px, 20vw / 5.99, 20px);
    }

    .fv-txt-wrap-02 {
        padding:  24px clamp(16px, 24vw / 5.99, 24px);
    }

    .fv-txt-04 {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .fv-txt-05 {
        font-size: clamp(16px, 24vw / 5.99, 24px);
    }

    .fv-txt-06 {
        font-size: clamp(32px, 40vw / 5.99, 40px);
    }

    .fv-txt-06 span {
        font-size: clamp(40px, 48vw / 5.99, 48px);
    }

    .fv-txt-07 {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }

    .fv-h2 {
        font-size: clamp(24px, 32vw / 5.99, 32px);
        width: 100%;
    }

    .fv-h2 span {
        font-size: clamp(32px, 48vw / 5.99, 48px);
    }

    .fv-lane-wrap {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .fv-lane-con {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fv-lane-title {
        width: 30%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }

    .fv-lane-ul {
        width: 50%;
    }

    .fv-lane-ul li {font-size: 14px;}

    .fv-txt-08 {
        font-size: clamp(16px, 18vw / 5.99, 18px);
    }
/*終わり*/


/*<section class="lead">*/
    .lead-h2 {
        font-size: clamp(15px, 22vw / 5.99, 22px);
    }

    .lead-txt-01 {
        font-size: clamp(14px, 18vw / 5.99, 18px);
    }

    .lead-txt-02,
    .lead-txt-03,
    .lead-txt-05,
    .lead-txt-06 {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .lead-txt-04-wrap {
        font-size: clamp(14px, 18vw / 5.99, 18px);
        padding: clamp(8px, 16vw / 5.99, 16px) clamp(4px, 8vw / 5.99, 8px);
    }
/*終わり*/


/*<section class="worry-01">*/
    .worry-01-h3 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<section class="worry-02">*/
    .worry-02-txt-wrap {
        padding: clamp(16px, 24vw / 5.99, 24px);
    }

    .worry-02-h2 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

    .worry-02-h2-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .worry-02-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="cause">*/
    .cause-h2 {
        font-size: clamp(18px, 20vw / 5.99, 20px);
    }

    .cause-txt-01 {
        font-size: clamp(22px, 24vw / 5.99, 24px);
    }

    .cause-txt-02 {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .cause-txt-03 {
        font-size: clamp(18px, 20vw / 5.99, 20px);
    }

    .cause-lane-flex {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
        gap: 16px;
    }

    .cause-lane-con {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }

    .cause-lane-title-wrap {
        width: 30%;
        border-radius: 8px 0 0 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .cause-lane-title {
        font-size: clamp(14px, 18vw / 5.99, 18px);
    }

    .cause-lane-txt-wrap {
        width: 70%;
    }

    .cause-lane-txt {
        font-size: 13px;
    }

    .cause-get-wrap {
        padding: clamp(10px, 16vw / 5.99, 16px);
    }

    .cause-get-title {
        font-size: clamp(18px, 20vw / 5.99, 20px);
    }

    .cause-get-flex {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
        gap: 16px;
    }

    .cause-get-con {
        width: 100%;
    }
/*終わり*/


/*<section class="lecture">*/
    .lecture-title-01 {
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }

    .lecture-h2 {
        line-height: 1.3;
        font-size: clamp(32px, 40vw / 5.99, 40px);
    }

    .lecture-pro-title {
        font-size: clamp(18px, 20vw / 5.99, 20px);
    }

    .lecture-pro-con {
        max-width: 440px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }  
    
    .lecture-man {
        margin: 0 auto;
    }

    .lecture-pro-txt-wrap {
        width: 100%;
    }

    .lecture-pro-txt-03 {
        text-align: left;
        font-size: 14px;
    }

    .lecture-txt-01 {
        font-size: clamp(14px, 20vw / 5.99, 20px);
    }

    .lecture-txt-02 {
        font-size: clamp(24px, 40vw / 5.99, 40px);
    }

    .lecture-txt-02 span {
        font-size: clamp(32px, 48vw / 5.99, 48px);
    }   

    .lecture-txt-03 {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .lecture-point-wrap {
        padding: clamp(16px, 24vw / 5.99, 24px);
    }

    .lecture-point-title {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .lecture-point-txt-wrap .large-txt {
        font-size: clamp(16px, 18vw / 5.99, 18px);
    }

    .lecture-txt-wrap-02 {
        padding: clamp(16px, 24vw / 5.99, 24px);
    }

    .lecture-ul li {
        width: 100%;
    }

    .lecture-txt-wrap-03 {
        padding: clamp(16px, 24vw / 5.99, 24px);
        flex-direction: column;
        gap: 24px;
    }

    .lecture-txt-wrap-l {
        width: 100%;
    }

    .lecture-txt-06 {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .lecture-img {
        max-width: 360px;
        width: 100%;
    }

    .lecture-txt-07 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<section class="schedule">*/
    .schedule-h2 {
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .schedule-img-wrap {
        position: relative;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .schedule-img {
        display: block;
        min-width: 700px;
    }

    .schedule-txt-wrap {
        padding: clamp(16px, 24vw / 5.99, 24px);
    }

    .schedule-txt-01 {
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }

    .schedule-txt-02 {
        font-size: clamp(14px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<section class="coach">*/
    .coach-h2 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

    .coach-txt-01 {
        font-size: clamp(14px, 20vw / 5.99, 20px);
    }

    .coach-txt-02 {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="strategy">*/
    .strategy-h2 {
        font-size: clamp(40px, 48vw / 5.99, 48px);
    }

    .strategy-h2 span {
        font-size: clamp(48px, 56vw / 5.99, 56px);
    }

    .strategy-h2-txt {
        font-size:clamp(20px, 32vw / 5.99, 32px);
    }

    .strategy-title-wrap {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }

    .strategy-h3 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .strategy-h3-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .strategy-num {
        font-size: clamp(24px, 40vw / 5.99, 40px);
    }

    .strategy-con-r {
        width: 100%;
        padding: 16px clamp(8px, 16vw / 5.99, 16px);
    }

    .strategy-h4 {
        font-size: clamp(14px, 18vw / 5.99, 18px);
    }

    .strategy-con-flex {
        flex-direction: column;
        gap: 40px;
    }

    .strategy-txt-wrap {
        width: 100%;
    }

    .strategy-img-02 {
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
    }
/*終わり*/


/*<section class="cta-01">*/
    .cta-01-h2 {
        font-size: clamp(16px, 24vw / 5.99, 24px);
    }

    .cta-01-txt-01 {
        font-size: clamp(16px, 20vw / 5.99, 20px);
        padding: 10px clamp(16px, 24vw / 5.99, 24px);
    }

    .cta-01-txt-03 {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }
/*終わり*/


/*<section class="overview">*/
    .overview-h2 {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

    /*<div class="summit-wrap">*/
    .summit-wrap {
        padding: clamp(16px, 24vw / 5.99, 24px);
    }

    .summit-h3 {
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .summit-h3-txt {
        font-size: clamp(16px, 18vw / 5.99, 18px);
    }

    .summit-dl {
        flex-direction: column;
    }

    .summit-dl dt {
        width: 100%;
        padding: 16px 0 0 0;
    }

    .summit-dl dd {
        width: 100%;
        border-top: none;
        padding: 8px 0 16px 0;
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .summit-txt {
        font-size: clamp(16px, 18vw / 5.99, 18px);
    }

    /*<div class="how-wrap">*/
    .how-h3 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

    /*<div class="faq-wrap">*/
    .faq-wrap {
        padding: 24px clamp(16px, 24vw / 5.99, 24px);
    }

    .faq-h3 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<section class="cta-02">*/
    .cta-02-h2 {
        font-size: clamp(22px, 24vw / 5.99, 24px);
    }
   
    .cta-02-txt-wrap {
        padding: 24px clamp(16px, 24vw / 5.99, 24px);
    }

    .cta-02-txt-06 {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*追従ボタン*/
    .fix-cta-btn {
        padding: clamp(16px, 20vw / 5.99, 20px) 16px;
        font-size: clamp(14px, 18vw / 5.99, 18px);
    }
/*終わり*/


/*<footer class="footer">*/
    .footer {
        padding: 16px 3vw;
    }

    .copyright {
        font-size: clamp(8px, 12vw / 5.99, 12px);
    }
/*終わり*/
}
