.header_block{
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    background: #fff;
    width: 100%;
    z-index: 99999;
}

.header_menu{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 120px;
    height: 90px;
}

.mv_logo{
    position: absolute;
    z-index: 2;
    top: 0;
    max-width: 240px;
    width: 15%;
}

.header_menu ul{
    display: flex;
    font-size: 20px;
}

.header_menu ul li{
    padding-right: 2vw;
}

.header_menu ul li:last-child{
    padding-right: 0;
}

.header_menu ul li a{
    text-decoration-line: none;
}

.header_menu ul li a:hover{
    color: #2a8fd7;
}

.mv_box{
    position: relative;
    margin-top: 90px;
}

.mv_txt{
    position: absolute;
    top: 4vw;
    right: 11.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 33%;
    height: 100%;
    object-fit: cover;
}

.mv_txt a:hover{
    opacity: 0.8;
}

/****************
lp_mv
****************/
.lp_mv {
    background-image: url(/assets/images/lp/main_visual.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.mv_payment {
    position: absolute;
    top: 0;
    right: 0;
}

.mv_payment::after {
    position: absolute;
    content: "";
    width: 200px;
    height: 400px;
    background: linear-gradient(64deg, transparent 0%, transparent 50%, #00174C 50%, #00174C 100%);
    top: 0;
    right: 0;
}

.mv_payment_text {
    color: #fff;
    position: relative;
    z-index: 10;
    font-size: 22.5px;
    text-align: right;
    margin-top: 12.5px;
    margin-right: 20px;
}

.mv_payment_text span {
    font-size: 25px;
    font-weight: 700;
    margin-left: 5px;
}

.mv_commission {
    position: absolute;
    top: 96px;
    right: 10px;
    background: #1E8FD7;
    border-radius: 999px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mv_commission_title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.mv_commission_text {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.mv_commission_text span {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 50px;
    margin-right: 5px;
}

.lp_mv .container {
    max-width: 900px;
    padding: 48px 20px 106px;
}

.mv_label {
    display: flex;
    gap: 5.6px;
}

.mv_label-item {
    background: #E5D36B;
    padding: 7.5px 10px;
    font-size: 17.5px;
    font-weight: 500;
}

.mv_titleArea {
    margin-top: 50px;
}

.mv_title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 2px 0 #000;
}

.mv_subtitle {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    text-shadow: 0 1px 0 #000;
    margin-top: 15px;
}

.mv_point {
    margin-top: 75px;
    display: flex;
    gap: 10px;
}

.mv_point-item {
    border: 1px solid #fff;
    background: linear-gradient(180deg, #00174C, #1E8FD7);
    position: relative;
    width: 125px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.mv_point-item::before {
    position: absolute;
    content: "";
    border: 1px solid #fff;
    top: 4px;
    left: 4px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}

.mv_point-item span {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.mv_consul {
    margin-top: 40px;
    background-image: url(/assets/images/lp/mv_consul_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 5px solid #fff;
}

.mv_consul_textArea {
    margin: 5px;
    background: #fff;
    padding: 18.7px 25px 21.8px;
    position: relative;
}

.mv_consul_img {
    position: absolute;
    bottom: 0;
    right: 12.5px;
    max-width: 270px;
}

.mv_consul p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.75;
}

.mv_bnrArea {
    display: flex;
    gap: 28.7px;
    margin-top: 50px;
}


/****************
news
****************/
/* バナー本体 */
.news-banner {
display: flex;
height: 50px;
width: 100%;
background-color: #04174c;
overflow: hidden;
}

/* バナー内コンテンツ */
.news-banner__content {
display: flex;
align-items: center;
color: #fff;
line-height: 30px;
padding-left: 100%;
white-space: nowrap;
animation: animate-banner 20s linear infinite;
}

.news-banner__content p{
    margin-left: 25vw;
}

/* バナー内の要素をすべて選択 */
.news-banner__content p,
.news-banner__content p a{
color: #fff;
}

/* 横にスクロールさせるアニメーション */
@keyframes animate-banner {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-80%);
}
}

/****************
price
****************/
.price {
    background-color: #ECF0F2;
}

.price .units {
    color: #AD9157;
    font-size: clamp(1.125rem, 0.418rem + 1.47vw, 1.5rem);
    line-height: 1.5;
    margin-left: 24px;
}

.price .table_area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    justify-items: end;
}

.table_item {
    max-width: 860px;
    width: 100%;
}

.price .table_item{
    max-width: unset;
    display: flex;
    flex-flow: row wrap;
    gap: 0 40px;
}

.price .table_dl {
    width: calc(100% / 2 - 20px);
    display: flex;
}

.price .table_dt {
    align-items: center;
    border-top: 1px solid #D5E2EE;
    background-color: #F1F7FA;
    display: flex;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    font-weight: 700;
    justify-content: center;
    line-height: 1.6;
    max-width: 210px;
    padding: 14px 0 15px;
    width: 100%;
}

.price .table_dd {
    align-items: baseline;
    border-top: 1px solid #D5E2EE;
    background-color: #fff;
    display: flex;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    justify-content: center;
    line-height: 1.7;
    font-weight: 700;
    max-width: 430px;
    padding: 13px 0 14px;
    width: 100%;
}


.small_price{
    font-size: clamp(0.675rem, 0.843rem + 0.14vw, 0.738rem);
    padding-left: 20px;
}

.contact + .small_price{
    padding-left: 0px;
}

.color_red{
    color: #881104;
}
.color_black{
    color: #312D2B;
}

.price .table_dl .table_dt:last-child .price .able_dl .able_dd:last-child {
    border-bottom: 1px solid #D5E2EE;
}

.price .dd_weight {
    font-size: clamp(1.125rem, 0.889rem + 0.49vw, 1.25rem);
    font-weight: 500;
}

.price_sub-title{
    margin-top: 15px;
    font-size: clamp(1.1rem, 0.927rem + 1.38vw, 1.2rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.price_info-txt{
    color: #8b8b8b;
    font-size: clamp(0.9rem, 0.889rem + 0.49vw, 0.9rem);
    margin-bottom: 40px;
}

.pc__none{
    display: none;
}

/****************
media
****************/
.media {
    background-image: url(/assets/images/lp/media_bg_01.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.media_box{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.media_container {
    /* display: flex; */
}

.left_textArea {
    max-width: 484px;
    width: 100%;
}

.media .title {
    color: #312d2b;
    margin-bottom: 45px;
}

.media_img {
    width: 48%;
}

/* .media_img:nth-child(even){
    margin-left: 45px;
} */

.media .text_sentence {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    line-height: 30px
}


/****************
feelSafe
****************/
.feelSafe {
    background-image: url(/assets/images/lp/feel_safe.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.feelSafe .title {
    text-align: center;
}

.feelSafe .card_list {
    /* display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px; */
    gap: 15px;
    justify-content: center;
    display: flex;
    flex-flow: row wrap;
}

.feelSafe .card_area {
    margin-top: 64px;
}

.feelSafe .card_item {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    color: #1E8FD7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 200px;
    font-size: clamp(1rem, 0.871rem + 0.55vw, 1.25rem);
    font-weight: 500;
    text-align: center;
    line-height: 2;
    width: 200px;
}

.feelSafe .card_item .card_price {
    color: #00174C;
    font-size: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
}

.feelSafe .card_item .money {
    color: #00174C;
    font-size: 28px;
}

/****************
contact
****************/
.contact .container {
    max-width: unset;
    padding: 0 0;
}

.contact .title_area {
    background-color: #00174C;
}

.contact .title_area_inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 30px;
}

.contact .title {
    color: #fff;
}

.contact .contact_sentence {
    color: #E5D36B;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.contact .contact_cardArea {
    background-image: url(/assets/images/lp/contact_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 64px 20px;
}

.contact_cardBox_textArea {
    max-width: 340px;
    width: 100%;
}

.contact .contact_cardArea_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 64px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact .contact_link {
    align-items: center;
    background-color: #fff;
    color: #000;
    display: flex;
    column-gap: 80px;
    text-decoration: none;
    padding: 20px;
}

.contact_cardBox_img {
    max-width: 65px;
    width: 100%;
}

.contact_cardBox_title {
    font-size: clamp(1rem, 0.871rem + 0.55vw, 1.25rem);
    font-weight: 700;
    text-align: center;
    line-height: 2;
}

.contact_cardBox_sentence {
    text-align: center;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    line-height: 1.5;
}

/****************
reason
****************/
.reason_itemBox {
    column-gap: 35px;
    display: flex;
    justify-content: end;
    margin: 0 auto 40px;
    max-width: 1177px;
    /* padding-left: 60px; */
}

.reason_itemBox:nth-child(1) {
    padding-top: 40px;
}

.reason_itemBox_text {
    max-width: 694px;
    padding-left: 56px;
    width: 100%;
}

.reason_itemBox_img {
    max-width: 337px;
    width: 100%;
}

.reason_itemBox_title {
    font-size: clamp(1.125rem, 0.899rem + 0.97vw, 1.563rem);
    font-weight: 700;
    line-height: 1.9;
    margin-bottom: 30px;
    position: relative;
}

.reason .reason_itemBox .reason_itemBox_title::after {
    border-bottom: 4px solid #1E8FD7;
    bottom: 10px;
    color: #1E8FD7;
    font-size: 40px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    left: -60px;
    top: 6px;
    line-height: 0.7;
    position: absolute;
}

.reason .reason_itemBox:nth-of-type(1) .reason_itemBox_title::after {
    content: '01';
}

.reason .reason_itemBox:nth-of-type(2) .reason_itemBox_title::after {
    content: '02';
}

.reason .reason_itemBox:nth-of-type(3) .reason_itemBox_title::after {
    content: '03';
}

.reason .reason_itemBox:nth-of-type(4) .reason_itemBox_title::after {
    content: '04';
}

.reason .reason_itemBox .reason_itemBox_title::before {
    border-bottom: 4px solid #1E8FD7;
    content: '';
    top: 33.5px;
    left: -660px;
    position: absolute;
    padding-right: 50%;
    padding-left: 50%;
}


.reason_itemBox_sentence {
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    font-weight: 400;
    line-height: 2;
}

/****************
point
****************/
.point {
    background-color: #ECF0F2;
}

.point_itemBox {
    position: relative;
}

.point_itemBox::before {
    align-items: center;
    background-color: #1E8FD7;
    content: '01';
    display: flex;
    color: #fff;
    font-size: clamp(1.25rem, 0.927rem + 1.38vw, 1.875rem);
    font-family: 'Oswald', sans-serif;
    justify-content: center;
    height: 50px;
    left: 50%;
    top: 44%;
    transform: translateX(-50%);
    width: 50px;
    position: absolute;
}

.point_itemBox:nth-child(1)::before {
    content: '01';
}

.point_itemBox:nth-child(2)::before {
    content: '02';
}

.point_itemBox:nth-child(3)::before {
    content: '03';
}

.point_itemBox:nth-child(4)::before {
    content: '04';
}

.point_itemBox:nth-child(5)::before {
    content: '05';
}

.point .title {
    text-align: center;
}

.point_BoxArea {
    margin-top: 64px;
}

.point_itemBox:nth-child(odd) {
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
}

.point_itemBox:nth-child(even) {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin-bottom: 34px;
}

.point_itemBox:last-child {
    margin-bottom: 0;
}

.point_itemBox_img {
    max-width: 525px;
    width: 100%;
}

.point_textArea {
    background-color: #fff;
    max-width: 525px;
    width: 100%;
}

.point_text {
    padding: 40px 50px 0 75px;
}

.point_textArea_title {
    font-size: clamp(1.125rem, 0.899rem + 0.97vw, 1.563rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
    position: relative;
}

.point_textArea_title::before {
    border-bottom: 3px solid #AD9157;
    content: '';
    top: 38px;
    position: absolute;
    width: 75px;
}

.point_textArea_sentence {
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    font-weight: 400;
    line-height: 1.7;
}

/****************
case
****************/
.case {
    background-color: #ECF0F2;
}

.case .case_text {
    color: #AD9157;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    font-weight: 400;
    margin-left: 24px;
}

.case_boxArea {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 64px 0;
}

.case_itemBox {
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    padding: 30px 30px 10px;
    position: relative;
}

/* .case_itemBox::before {
    background-color: #AD9157;
    content: 'NEW!';
    color: #fff;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    position: absolute;
} */

.case_itemBox span.new {
    background: #AD9157;
    display: inline-block;
    z-index: 10;
    top: 15px;
    left: 15px;
    position: absolute;
    padding: 5px 10px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    font-weight: 500;
    color: #fff;
    padding: 5px 15px;
}

.case_itemBox a{
    text-decoration: none;
}

.case_itemBox_img {
    max-width: 480px;
    width: 100%;
}

.case_table {
    font-family: 'Roboto', sans-serif;
}

.case_dl {
    align-items: center;
    border-bottom: 1px solid #D5E2EE;
    display: flex;
    padding: 5px 0;
}

.case_dl:last-child {
    border-bottom: unset;
}

.case_dl:nth-child(2) {
    padding: 16px 0;
}

/* .case_dt {
    max-width: 148px;
    width: 100%;
} */

.case_dl_time {
    padding: 0;
}

.case_dl_time .case_dt_time {
    max-width: 150px;
    width: 100%;
}

.case_dl .case_dt,
.case_dl .case_dd {
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
}

.case_dl_time .case_dt,
.case_dl_time .case_dd {
    font-size: clamp(0.75rem, 0.718rem + 0.14vw, 0.813rem);
    line-height: 2.4;
}

.case_dl_time .case_dt {
    margin-right: 22px;
    position: relative;
}

.case_dl_time .case_dt::after {
    background-color: #D5E2EE;
    content: '';
    height: 9px;
    top: 14px;
    left: 118px;
    position: absolute;
    width: 1px;
}

.case_dl .case_dt_name {
    font-size: clamp(1.125rem, 0.899rem + 0.97vw, 1.563rem);
    font-weight: 700;
    line-height: 1.1;
}

.case .link_text {
    position: relative;
}

.case .link_text::before {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
    color: #fff;
    font-size: 12px;
    height: 7px;
    left: -30px;
    top: 10px;
    transform: rotate(-45deg);
    position: absolute;
    width: 7px;
}

.case_dl .case_dd_price {
    font-size: clamp(1.125rem, 0.899rem + 0.97vw, 1.563rem);
    font-weight: 500;
}

/****************
genre
****************/
.genre {
    background-color: #ECF0F2;
}

.genre_text {
    color: #AD9157;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    font-weight: 400;
    margin-left: 24px;
}

.genre_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.genre_listItem {
    background-color: #fff;
    border-radius: 5px;
}

.genre_listBox {
    margin-top: 40px;
}

.genre_listBox_img {
    border-bottom: 1px solid #D4D4D4;
    max-width: 200px;
    width: 100%;
}

.genre_listTile {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 15px;
}

.genre_linkText {
    position: relative;
}

.genre_linkText::before {
    border-right: 2px solid #AD9157;
    border-bottom: 2px solid #AD9157;
    content: '';
    height: 7px;
    transform: rotate(-45deg);
    position: absolute;
    width: 7px;
}

.genre_list .genre_listItem:nth-of-type(1) .genre_linkText::before {
    left: -18px;
    top: 6px;
}

.genre_list .genre_listItem:nth-of-type(2) .genre_linkText::before {
    left: -20px;
    top: 7px;
}

.genre_list .genre_listItem:nth-of-type(3) .genre_linkText::before {
    left: -16px;
    top: 6px;
}

.genre_list .genre_listItem:nth-of-type(4) .genre_linkText::before {
    left: -15px;
    top: 7px;
}

.genre_list .genre_listItem:nth-of-type(5) .genre_linkText::before {
    left: -17px;
    top: 6px;
}

.genre_list .genre_listItem:nth-of-type(6) .genre_linkText::before {
    left: -20px;
    top: 8px;
}

.genre_list .genre_listItem:nth-of-type(7) .genre_linkText::before {
    left: -17px;
    top: 7px;
}

.genre_list .genre_listItem:nth-of-type(8) .genre_linkText::before {
    left: -20px;
    top: 8px;
}

.genre_list .genre_listItem:nth-of-type(9) .genre_linkText::before {
    left: -20px;
    top: 6px;
}

.genre_list .genre_listItem:nth-of-type(10) .genre_linkText::before {
    left: -20px;
    top: 6px;
}

.genre_listText {
    padding: 37px 0 33px;
    text-align: center;
}

.genre_link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.genre_listLead {
    color: #AD9157;
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    line-height: 2;
}

/****************
method
****************/
.method {
    background-color: #ECF0F2;
}

.method_itemArea {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.method_item_container {
    background-color: #fff;
    padding: 40px 24px;
}

.method_item_img {
    width: 100%;
    position: relative;
}

.method_item_img::before {
    align-items: center;
    background-color: #1E8FD7;
    border-radius: 50%;
    display: flex;
    color: #fff;
    font-size: 28px;
    font-family: 'Oswald', sans-serif;
    justify-content: center;
    height: 50px;
    left: 50%;
    top: 88%;
    transform: translateX(-50%);
    width: 50px;
    position: absolute;
}

.method_itemBox:nth-of-type(1) .method_item_img::before {
    content: '01';
}

.method_itemBox:nth-of-type(2) .method_item_img::before {
    content: '02';
}

.method_itemBox:nth-of-type(3) .method_item_img::before {
    content: '03';
}

.method_itemLead {
    color: #AD9157;
    font-weight: 700;
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    text-align: center;
}

.method_item_titleArea {
    text-align: center;
}

.method_itemTitle {
    font-size: clamp(1.125rem, 0.899rem + 0.97vw, 1.563rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.8;
}

.method_itemLead-Eg {
    color: #AD9157;
    font-size: 10px;
}

.method_itemSentence {
    font-size: clamp(0.875rem, 0.843rem + 0.14vw, 0.938rem);
    height: 90px;
    padding: 25px 0 40px;
}

.method .buttom_link {
    font-size: clamp(0.938rem, 0.841rem + 0.41vw, 1.125rem);
}

.method .link_text {
    position: relative;
}

.method_itemBox:nth-of-type(1) .link_text::before {
    background-image: url(/assets/images/lp/calculator.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    left: -33px;
    top: -6px;
    height: 30px;
    width: 24px;
    position: absolute;
}

.method_itemBox:nth-of-type(2) .link_text::before,
.method_itemBox:nth-of-type(3) .link_text::before {
    background-image: url(/assets/images/lp/pin.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    left: -33px;
    top: -6px;
    height: 30px;
    width: 24px;
    position: absolute;
}

/****************
information
****************/
.information {
    background-color: #ECF0F2;
}

.information_itemArea {
    display: flex;
    gap: 50px;
}

.information_itemContainer {
    margin-top: 40px;
}

.information_itemBox_img {
    padding: 0;
}

.information_dl {
    /* align-items: center; */
    border-bottom: 1px solid #D5E2EE;
    display: flex;
}

.information_dt,
.information_dd {
    font-size: clamp(0.75rem, 0.718rem + 0.14vw, 0.813rem);
}

.information_dt {
    background-color: #F1F7FA;
    max-width: 125px;
    padding: 21px 0 21px 25px;
    width: 100%;
}

.information_dd {
    background-color: #fff;
    flex-grow: 1;
    line-height: 1.6;
    padding: 19px 12px 12px 25px;
    width: 100%;
}

/****************
footer
****************/
.footer {
    background-color: #000;
}

.footer small {
    color: #fff;
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 13px 0;
}


/* 202504追記 */
.fm_anchor {
    padding-top: 60px;
    margin-top: -60px;
}

.fix_menu {
    background-color: #000;
}

.fix_menu ul {
    padding: 20px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fix_menu ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.fix_menu ul li a:hover {
    opacity: 0.6;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100% !important;
    z-index: 99;
}