

/*共通*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #333333;
}

li{
    list-style: none;
}

html, body {
    font-size: 16px;
}

body {
    background-color: #FFF;
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
    font-family: "BIZ UDPGothic", sans-serif;
}

.content-wrapper {
    max-width: 1000px;
    margin:  0 auto;
}

p, select, input, button {
    font-family: "BIZ UDPGothic", sans-serif;
    color: #333;
}

.rightflexArea{
    display: none;
}

main.main {
    padding: 0 12px;
}
.hOpacity:hover {
    opacity: 0.8;
}

.c-nowrap {
    white-space: nowrap;
}

/* error */
.errorBlock {
    margin: 36px auto;
    color: #DE505B;
    border: 1px solid #DE505B;
    border-radius: 5px;
    overflow: hidden;
}
.errorBlock .errorContent {
    display: flex;
    gap: 10px;
    padding: 20px 4.2%;
    border-top: 2px solid #fff;
    font-size: 16px;
}
.errorBlock .errorContent img {
    width: 18px;
    height: 18px;
    margin: 4px 0;
}
.errorBlock .errorContent ul.errorList li {
    position: relative;
    margin-left: 1em;
}
.errorBlock .errorContent ul.errorList li:not(:first-child) {
    margin-top: 0.5em;
}
.errorBlock .errorContent ul.errorList li::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #DE505B;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: -0.5em;
}
.errorBlock .errorContent .textLink {
    color: #DE505B;
}
.errorBlock .errorContent a {
    color: #DE505B;
}

/* header */
.header {
    border-bottom: 3px solid #F0F0F0;
}
header .headArea {
    margin:  0 auto;
    max-width: 1000px;
}

.headLogo, .headLogo2, .headContact {
    display: flex;
    align-items: center;
}

.headLogo {
    width: calc(100% / 3);
    justify-content: flex-start;
}

.headLogo2 {
    width: calc(100% / 3);
    justify-content: center;
}

.headContact {
    margin-left: auto;
}

.headLogo img {
    max-height: 22px;
    width: auto;
}

.headLogo2 img {
    max-height: 30px;
    width: auto;
}

/** マイページメンテ **/
#m-mypage_mnt_blk {
    font-size: 0.875rem;
    margin-bottom: 3rem;
}
 #m-mypage_mnt_blk .m-mypage_mnt_title {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

#m-mypage_mnt_blk .m-mypage_mnt_title::after,
#m-mypage_mnt_blk .m-mypage_mnt_title.open::after {
    font-size: 1rem;
    margin-left: 0.5rem;

}
#m-mypage_mnt_blk .m-mypage_mnt_title::after {
    font-family: "Material Icons";
    content:'add';
}
#m-mypage_mnt_blk .m-mypage_mnt_title.open::after {
    font-family: "Material Icons";
    content:'\e15b';
}

#m-mypage_mnt_blk .m-mypage_mnt_body {
    padding: 1rem;
    background-color: #FFFBF5;
    border-radius: 8px;
    margin-top: 0.25rem;
}
#m-mypage_mnt_blk .m-mypage_mnt_body .m-mypage_mnt_msg .time {
    text-align: center;
    margin-top: 1rem;
}
#m-mypage_mnt_blk .m-mypage_mnt_body .m-mypage_mnt_msg .time .mnt_tbl {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 4px 8px;
}
#m-mypage_mnt_blk .m-mypage_mnt_body .m-mypage_mnt_msg .time .mnt_tbl .mnt_row {
    display: contents;
}
#m-mypage_mnt_blk .m-mypage_mnt_body .m-mypage_mnt_msg .time .mnt_tbl .mnt_row span {
    text-align: right;
}
 #m-mypage_mnt_blk .m-mypage_mnt_body .m-mypage_mnt_btn {
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}
#m-mypage_mnt_blk .m-mypage_mnt_body .m-mypage_mnt_btn .m-mypage_btn {
    width: 80px;
    height: 36px;
    padding: 0.25rem;
    display: inline-flex;
    border: solid 1px #333;
}
#m-mypage_mnt_blk .m-mypage_mnt_body .topInfo {
    margin: 0;
    background-color: transparent;
    color: #333;
    border-radius: 0;
    overflow: hidden;
}
#m-mypage_mnt_blk .m-mypage_mnt_body .topInfo .sectionInner {
  padding: 5px;
  font-size: 1em;
}

/** マイページメンテ **/
/* 表示制御 */
.c-hide {
    display: none;
}

/*こくみん共済試算トップ*/
.zenrosaiLogo{
    width: 91px;
    height: 17px;
}

.kokuminLogo{
    width: 117px;
    height: 36px;
}

.contactBtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #0A722E;
    background: #FFF;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.25);
    padding: 0;
    font-weight: normal;
    font-size: 14px;
    cursor: pointer;
    transition: box-shadow .12s ease, transform .12s ease;
}
.contactBtn:hover {
    opacity: 0.8;
}

.contactBtn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.topTitleArea{
    margin: 0 auto;
    padding: 48px 0;
}

.topTitle{
    color: #094;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: bolder;
    line-height: 30px;
    letter-spacing: -0.08px;
}

.btnArea{
    margin: 0 auto;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.diagnosisBtn, .quotationBtn {
    width: 100%;
}

.quotationLink, .diagnosisLink {
    display: flex;
    width: 100%;
    height: 48px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    border: none;
    position: relative;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    transition: box-shadow .12s ease, transform .12s ease;
}

.quotationLink{
    background: #E93D0C;
    box-shadow: 0 3px 0 0 #C73810;
}

.diagnosisLink {
    background: #1838DF;
    box-shadow: 0 3px 0 0 #172EA5;
}

.quotationLink::after, .diagnosisLink::after {
    content: '';
    position: absolute;
    right: 32px;
    background-image: url('../images/icon/open_close.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.3s ease;
    transform: rotate(270deg);
}

.quotationLink:hover, .diagnosisLink:hover {
    opacity: 0.8;
}

.quotationLink:active, .diagnosisLink:active{
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}


.linkArea{
    display: flex;
    padding: 48px 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    color: #333;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.linkArea .link {
    color: #094;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.linkArea .linkArea__text {
    text-align: center;
}

/*------------------トップサブ画面------------------*/
.subText {
    font-weight: 700;
}

.dateArea {
    margin: 48px auto 0;
}

.birth-date, .gender-date, .disease-date, .kaishibi-date {
    margin-bottom: 32px;
}

.birth-title, .gender-title, .disease-title, .kaishibi-title {
    position: relative;
    font-weight: bold;
    padding-left: 8px;
    margin: 0 auto 16px;
}

.disease-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.birth-title:before, .gender-title:before, .disease-title:before, .kaishibi-title:before {
    position: absolute;
    background-color: #009944;
    border-radius: 1px;
    content: "";
    left: 0;
    top: 3px;
    bottom: 0;
    width: 4px;
    height: 75%;
}

.birth-year, .birth-monthDay, .gender-date, .disease-date, .kaishibi-date {
    display: flex;
    padding: 0 24px;
    justify-content: space-between;
    align-items: center;
}

.disease-date {
    flex-wrap: wrap;
}

.kaishibi-date {
  flex-direction: column;
}

.birth-year {
    margin-bottom: 16px;
}

.birth-year-select {
    appearance: none;
}

.birth-year-box {
    flex-basis: 100%;
    margin-right: 8px;
    position: relative;
}

.birth-year-box:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 9px solid #333;
    border-bottom: 0;
}

.birth-month, .birth-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 48%;
}

.birth-month-box, .birth-day-box {
    flex-basis: 100%;
    margin-right: 8px;
}

#birth_y, #birth_m, #birth_d, .com_input {
    display: block;
    padding: 16px;
    border-radius: 8px;
    width: 100%;
    border: 1px solid #b3b3b3;
    font-size: 16px;
    color: #333;
    background: #fff;
    cursor: pointer;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}

input[type="radio" ] {
    display: none;
}

.radio {
    position: relative;
    border: 1px solid #b3b3b3;
    border-radius: 6px;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-size: 16px;
    width: 47%;
}

.radio.column {
  width: 100%;
}
.hoshokaishi {
  color: #009944;
  font-size: 14px;
  margin-top: 4px;
}
.hoshokaishi.column {
  margin-bottom: 16px;
}

.radio span.radioMark {
    position: absolute;
    left: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #b3b3b3;
    display: inline-block;
    background: #fff;
}

input[type="radio" ]:checked + .radio {
    border-color: #009944;
    background: #F5FAF7;
}

input[type="radio" ]:checked + .radio span.radioMark {
    border-color: #009944;
    background: #009944;
    box-shadow: inset 0 0 0 2px white;
}

.top-note {
    color: #333;
    font-size: 14px;
    margin-top: 4px;
    flex-grow: 1;
    max-width: 325px;
}

/*---------next---------*/
.modal-body .nextBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E93D0C;
    border-radius: 10vw;
    color: #fff;
    font-weight: 700;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 0;
    position: relative;
    font-size: 16px;
    transition: box-shadow .12s ease, transform .12s ease;
}

.modal-body .nextBtn:hover {
    opacity: 0.8;
}

.modal-body .nextBtn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/*---------close---------*/
.modal-body .closeArea {
    margin: 48px auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.modal-body .closeAreaBtn_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 1px solid #333;
    border-radius: 8px;
    width: 50%;
    height: 48px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.modal-body .closeAreaBtn_1:hover {
    opacity: 0.8;
}

.closeAreaBtn img {
    padding-bottom: 1px;
}



/* フッター */
.c-footer {
    display: block;
    text-align: center;
    margin: 48px 0 16px;
}

.c-footer #c-nav_top {
    text-align: center;
    margin-bottom: 1rem;
}

.c-footer #c-nav_top a {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #094;
    font-size: 1rem;
}


.c-footer #c-nav_top a:before {
    font-family: "Material Icons";
    content: '\e25a';
    margin-right: 0.25rem;
    vertical-align: middle;
    font-size: 1rem;
    color: #094;
    font-weight: normal;
}

.c-footer #c-foot_auth p {
    text-align: center;
    font-size: 0.875rem;
}

.c-footer .c-disp_block {
    display: block;
    margin: 0 auto;
    height: 45px;
    width: auto;
}

/*こくみん共済試算トップ_サブ画面　レスポンシブ*/

@media screen and (min-width:768px){

    .headArea{
        padding:3vh;
    }

    .zenrosaiLogo{
        width: 236px;
        height: 46px;
    }

    .kokuminLogo{
        width: 180px;
        height: 55px;
        margin-right: 100px;
    }

    .topTitle {
        font-size: 22px;
    }

    #m-mypage_mnt_blk {
        font-size: 16px;
    }

    .linkArea, .linkArea .link {
        font-size: 16px;
    }

    .linkArea br{
        display: none;
    }

    .fotLogo{
        flex-direction: unset;
        justify-content:center;
        gap: 10px;
    }
}


@media screen and (min-width:768px) {

    main.main {
        padding: 0;
        max-width: 1000px;
        margin: 0 auto;
    }

    .btnArea{
        flex-direction: unset;
        justify-content: center;
    }
}

/*かんたん保障診断_プロフィール画面*/

.headArea{
    display: flex;
    padding: 8px 9px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.backBtn{
    position: relative;
    width: 100%;
    z-index: 100;
    top: 0;
}

.backBtn.fixed {
    position: fixed;
}

.backBtn a {
    display: inline-block;
    border-radius: 0 31px 31px 0;
    overflow: hidden;
    position: absolute;
    top: -10px;
}

.backBtn.fixed a {
    top: 30px;
}

.backBtn p {
    color: #FFFFFF;
    background-color: #999999;
    font-size: 14px;
    line-height: 14px;
    padding: 13px 16px;
}

.backBtn p i {
    margin-right: .5em;
}

.mainContent{
    padding: 20px 12px;
    margin: 0 auto;
    text-align: center;
}
.mainArea {
    width: 90%;
    margin: auto;
}

.pageTitle{
    color: #094;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    margin:14px 0 24px;
    display: flex;
    justify-content: left;
}

.pricesectionArea{
    display: flex;
    align-items: flex-end;
}

.priceCard{
    color: #FFFFFF;
    min-width: 110px;
    width: 30%;
    height: 68px;
    padding: 12px 8px;
    margin-right: 4px;
    border-radius: 8px 8px 0 0;
    background: #094;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.priceLabel{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.priceAmount {
    font-size: 14px;
}

.addFamily{
    color: #333;
    width: 30%;
    min-width: 110px;
    height: 65px;
    padding: 10px 8px;
    margin-right: 8px;
    margin-bottom: 4px;
    border-radius: 8px;
    background: #FFF;
    border: 1px solid #B3B3B3;
    box-shadow: 3px 3px 4px 0 rgba(21, 21, 21, 0.30);
    display: flex;
    align-items: center;
    transition: box-shadow .12s ease, transform .12s ease;
    cursor: pointer;
}

.addFamily::before{
    content: "";
    background-image: url("../images/human_icon.png");
    background-repeat: no-repeat;
    width: 65px;
    height: 30px;
    display:inline-block;
}

.addFamily:hover {
    opacity: 0.8;
}

.addFamily:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.customerContent{
    border: 2px solid #009944;
    border-radius: 0 8px 8px 8px;
    padding: 16px;
    margin-bottom: 20px;
    height: auto;
}

.customerInfo{
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    font-weight: bold;
}
.customerDetails{
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
}

.insurancePeriod{
    font-size: 16px;
    color: #333333;
}

.button-area, .button-sentaku2-text {
    text-align: center;
}

.bigbutton-area{
    margin: 48px 0;
    text-align: center;
}

.footbutton-area{
    text-align: center;
    margin: 48px 0;
}

.arrow_tokuchou {
    height: 12px;
}

.editBtn{
    color: white;
    font-size: 14px;
    cursor: pointer;
    width: 60px;
    height: auto;
    padding: 12px 10px;
    border-radius: 4px;
    border: none;
    background: #909090;
    transition: box-shadow .12s ease, transform .12s ease;
}

.editBtn:hover {
    opacity: 0.8;
}

.editBtn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.diagnosissectionArea {
    width: 100%;
    margin: 24px 0;
    padding: 12px;
    border: 2px solid #094;
    border-radius: 4px;
    background: #FFFBEF;
    cursor: pointer;
}
.diagnosissectionArea:hover {
    opacity: 0.8;
}

.diagnosisArea{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.diagnosisTitle{
    color: #094;
    font-size: 28px;
    font-weight: 700;
}

.diagnosisLogo{
    content: '';
    background-image: url("../images/shindan_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 42px;
    height: 42px;
    display: inline-block;
}

.diagnosisGuidance{
    color: #094;
    border-radius: 5vw;
    border: 1px solid #094;
    background: #FFF;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 10px;
    margin: 6px auto auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 326px;
}

.diagnosisGuidance:after{
    content:  '';
    background-image: url("../images/mingcute_right-fill.svg");
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 17px;
    min-height: 17px;
    display: inline-block;
}

.leftflexArea{
    text-align: center;
}

.recommend {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
    padding: 0 12px;
    height: 34px;
    line-height: 34px;
    border-radius: 25px;
    background-color: #ffffff;
    text-align: center;
}
.recommend.shindan{
    border: 1px solid #E45919;
}
.recommend.shindan p {
    color: #E45919;
}
.recommend.ageAndgender {
    border: 1px solid #094;
}
.recommend.ageAndgender p {
    color: #0A7E2E;
}
.recommend.none {
    border: none;
    height: 10px;
}
.recommend.none p, .recommend.none::before, .recommend.none::after {
    display: none;   
}

.recommend::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #e45919 transparent transparent;
    translate: -50% 100%;
}
.recommend.shindan::before{
    border-color: #e45919 transparent transparent;
}
.recommend.ageAndgender::before{
    border-color: #094 transparent transparent;
}
.recommend::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
}
.recommend p{
    font-size: 14px;
    font-weight: 700;
}

.error {
    display: flex;
    /*justify-content: space-between;*/
    border: 1px solid #DE505B;
    border-radius: 4px;
    color: #DE505B;
    padding: 12px;
    margin-bottom: 12px;
}

.error img{
   width: 16px;
    margin: 0 4px 4px 0
}

.error a {
    font-weight: 700;
    text-decoration: underline;
    color: #DE505B;
    cursor:pointer;
}

.error-textArea {
    width: 95%;
}
.error-text::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #DE505B;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0.5em;
}

.error-text {
    /*text-indent: -1em;*/
    position: relative;
    padding-left: 1em;
}

.margin-btm12 {
    margin-bottom: 12px;
}

.accordionActive{
    margin-bottom: 24px;
    border-radius: 12px;
}

.syougaiwArea p label{
    font-weight: 700;
    cursor: pointer;
}

.accordionActive.active{
    border-radius: 12px;
    border: none;
}

.accordionActive.sougou {
    outline: solid 2px #CCE6FE;
}
.accordionActive.iryou {
    outline: solid 2px #F5DAF3;
}
.accordionActive.syuushin {
    outline: solid 2px #D3F3D3;
}
.accordionActive.syougai {
    outline: solid 2px #D3F3ED;
}
.accordionActive.gan {
    outline: solid 2px #F8DFDA;
}
.accordionActive.kojin {
    outline: solid 2px #DAE2F8;
}
.accordionActive.kodomo {
    outline: solid 2px #FFECCA;
}
.accordionActive.kodomomanki {
    outline: solid 2px #E2F0C8;
}
.accordionActive.shinia {
    outline: solid 2px #F0E3FF;
}

.accordionActive.sougou.isSelected {
    outline: solid 2px #007FCB;
}
.accordionActive.iryou.isSelected {
    outline: solid 2px #E05D7D;
}
.accordionActive.syuushin.isSelected {
    outline: solid 2px #1A7027;
}
.accordionActive.syougai.isSelected {
    outline: solid 2px #03847F;
}
.accordionActive.gan.isSelected {
    outline: solid 2px #B44634;
}
.accordionActive.kojin.isSelected {
    outline: solid 2px #1A4797;
}
.accordionActive.kodomo.isSelected {
    outline: solid 2px #D15700;
}
.accordionActive.kodomomanki.isSelected {
    outline: solid 2px #28A91D;
}
.accordionActive.shinia.isSelected {
    outline: solid 2px #A5347B;
}


.insuranceCard{
    position: relative;
}

.select-area{
    color:  #FFFFFF;
    font-size: 14px;
    border-radius: 12px;
    background: #39A75B;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    top: -18px;
    min-width: 64px;
}

.select-area p {
    color:  #FFFFFF;
    font-weight: 700;
}

.select-area.isSelected{
    background: #DE505B;
}

.select-area:before{
    content: '';
    position: absolute;
    top: 80%;
    left: 50%;
    margin-left:-11px;
    border: 10px solid transparent;
    border-top: 12px solid #39A75B;
}

.select-area.isSelected:before{
    border-top: 12px solid #DE505B;
}

.kodomomanki-checkbox-area {
    width: 28px;
    position: relative;
}

.select-area-course{
    color:  #FFFFFF;
    font-size: 14px;
    border-radius: 12px;
    background: #39A75B;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    top: -23px;
    left: -16px;
    min-width: 64px;
}

.select-area-course p {
    color:  #FFFFFF;
    font-weight: 700;
}

.select-area-course.isSelected{
    background: #DE505B;
}

.select-area-course:before{
    content: '';
    position: absolute;
    top: 80%;
    left: 50%;
    margin-left:-11px;
    border: 10px solid transparent;
    border-top: 12px solid #39A75B;
}

.select-area-course.isSelected:before{
    border-top: 12px solid #DE505B;
}

.selected-badge {
    background-image: url('../images/type_l_check_off.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 58px;
    height: 57px;
    display: inline-block;
}
.checkmark {
    background-image: url('../images/type_l_check_on.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 58px;
    height: 57px;
    display: inline-block;
}
.hidden {
    display: none;
}


.insuranceCard.kodomomanki{
    font-size: 16px;
    font-weight: 700;
}

.insuranceHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 12px 12px 0 0;
}

.insuranceHeader.sougou{
    background:#CCE6FE;
    box-shadow: 0 -2px 0 0 #CCE6FE;
}
.insuranceHeader.iryou{
    background: #F5DAF3;
    box-shadow: 0 -2px 0 0 #F5DAF3;
}
.insuranceHeader.syuushin{
    background: #D3F3D3;
    box-shadow: 0 -2px 0 0 #D3F3D3;
}
.insuranceHeader.syougai{
    background: #D3F3ED;
    box-shadow: 0 -2px 0 0 #D3F3ED;
}
.insuranceHeader.gan{
    background: #F8DFDA;
    box-shadow: 0 -2px 0 0 #F8DFDA;
}
.insuranceHeader.kojin{
    background: #DAE2F8;
    box-shadow: 0 -2px 0 0 #DAE2F8;
}
.insuranceHeader.kodomo{
    background: #FFECCA;
    box-shadow: 0 -2px 0 0 #FFECCA;
}
.insuranceHeader.kodomomanki{
    background: #E2F0C8;
    box-shadow: 0 -2px 0 0 #E2F0C8;
}
.insuranceHeader.shinia{
    background: #F0E3FF;
    box-shadow: 0 -2px 0 0 #F0E3FF;
}

.insuranceHeader.isSelected, details.isSelected {
    box-shadow: none;
}

.insuranceCheckbox {
    appearance: none;
    height: 40px;
    width: 40px;;
    position: relative;
    display: inline-block;
    background-image: url(../images/type_l_check_off.png);
    background-size: 36px;
    background-position: left center;
    background-repeat: no-repeat;
    cursor: pointer;
    border: none;
    background-color: inherit;
    text-align: center;
}

.insuranceCheckbox:checked{
    height: 40px;
    width: 40px;
    position: relative;
    display: inline-block;
    background-image: url(../images/type_l_check_on.png);
    background-size: 36px;
    background-position: left center;
    background-repeat: no-repeat;
    cursor: pointer;
    border: none;
    background-color: inherit;
}

.insuranceCheckbox_2 {
    appearance: none;
    height: 28px;
    width: 28px;
    position: relative;
    display: inline-block;
    background-image: url(../images/type_l_check_off.png);
    background-size: 28px;
    background-position: left center;
    background-repeat: no-repeat;
    cursor: pointer;
    border: none;
    background-color: inherit;
    text-align: center;
}

.insuranceCheckbox_2:checked{
    height: 28px;
    width: 28px;
    position: relative;
    display: inline-block;
    background-image: url(../images/type_l_check_on.png);
    background-size: 28px;
    background-position: left center;
    background-repeat: no-repeat;
    cursor: pointer;
    border: none;
    background-color: inherit;
}

.insuranceCheckbox_2:disabled {
    cursor: default;
}

.content.syuushin .insuranceCheckbox_2 {
    position: absolute;
    left: 12px;
}

.syougaiwArea {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-left: 16px;
    padding-top: 24px;
}

.syougaiwArea p {
    font-weight: 700;
}

.insuranceType{
    background-repeat: no-repeat;
    background-size: contain;
    width: auto;
    height: 30px;
    display: inline-block;
    border: none;
    flex-grow: 1;
    margin-left: 4px;
}

.insuranceType.sougou{
    background-image: url("../images/type/type_sougou.png");
}
.insuranceType.iryou{
    background-image: url("../images/type/type_iryou.png");
}
.insuranceType.syuushin{
    background-image: url("../images/type/type_syuushin.png");
}
.insuranceType.syuushinhikiuke{
    background-image: url("../images/type/type_syushin_hikiuke.png");
}
.insuranceType.syougai{
    background-image: url("../images/type/type_syougai.png");
}
.insuranceType.gan{
    background-image: url("../images/type/type_gan.png");
}
.insuranceType.kojin{
    background-image: url("../images/type/type_kojinbaisyo.png");
}
.insuranceType.kodomo{
    background-image: url("../images/type/type_kodomo.png");
}
.insuranceType.kodomomanki{
    background-image: url("../images/type/type_kodomomanki.png");
}
.insuranceType.shiniairyou{
    background-image: url("../images/type/type_shiniairyou.png");
}
.insuranceType.shiniasougou{
    background-image: url("../images/type/type_shiniasougou.png");
}

.productFeatures{
    padding: 8px;
    width: 110px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #666;
    color: #666;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.productFeatures p {
    font-size: 14px;
    font-weight: 700;
    align-items: center;
}

.insuranceBody {
    width: 95%;
    margin: auto;
    background-color: #fff;
}


.insuranceTitle {
    font-weight: bold;
    line-height: 1.4;
    background-color: #fff;
    text-align: center;
}

.insuranceTitle p{
    color: #B9B9B9;
}

.insuranceTitle.isSelected p{
    color: #333;
}


.insuranceTitle.sougou{
    border-bottom: 1px solid #CCE6FE;
}
.insuranceTitle.iryou{
    border-bottom: 1px solid #F5DAF3;
}
.insuranceTitle.syuushin{
    border-bottom: 1px solid #D3F3D3;
}
.insuranceTitle.syougai{
    border-bottom: 1px solid #D3F3ED;
}
.insuranceTitle.gan{
    border-bottom: 1px solid #F8DFDA;
}
.insuranceTitle.kojin{
    border-bottom: 1px solid #DAE2F8;
}
.insuranceTitle.kodomo{
    border-bottom: 1px solid #FFECCA;
}
.insuranceTitle.kodomomanki{
    border-bottom: 1px solid #E2F0C8;
}
.insuranceTitle.shinia{
    border-bottom: 1px solid #F0E3FF;
}


.insuranceTitle p {
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    padding: 24px 0;
}

.insuranceTitle span {
    font-size:20px;
    font-weight: 700;
}

.priceDetails {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 16px 8px;
    border-radius: 8px;
    position: relative;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

select.durationSelect:disabled, select.expirationageSelect:disabled {
    cursor: default;
}

.selectWrapper{
    position: relative;
    margin-right: auto;
}

.selectWrapper::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 9px solid #B9B9B9;
    border-bottom: 0;
    width: 10px;
    height: 9px;
    opacity: 0.8;
    cursor: pointer;
}

.selectWrapper.isSelected::after, .benefitItem.kodomomanki.isChecked .selectWrapper::after {
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 9px solid #333;
    opacity: 1;
}

.durationSelect {
    width: 67px;
    height: auto;
    background-color: white;
    border: 1px solid #B9B9B9;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #B9B9B9;
}

.durationSelect.kodomomanki {
    width: 110px;
    height: auto;
    background-color: white;
    border: 1px solid #B9B9B9;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #B9B9B9;
}

.durationSelect_kodomomanki.isChecked{
    color: #333;
}

.expirationageSelect{
    color: #B9B9B9;
}

.expirationageSelect.isChecked, .durationSelect.kodomomanki.isChecked {
    color: #333;
}

.expirationageSelect {
    width: 120px;
    height: auto;
    background-color: white;
    border: 1px solid #B9B9B9;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}


.durationSelect option, .expirationageSelect option {
    font-size: 16px;
    font-weight: 700;
}

.durationSelect.isSelected{
    color: #333;
}
.monthlyFee {
    font-size: 16px;
    color: #B9B9B9;
    font-weight: 700;
}

.monthlyFee.isSelected {
    color: #333;
}

.feeAmount {
    font-size: 24px;
    font-weight: 700;
    color: #B9B9B9;
    margin-left: 8px;
}


.feeAmount.isSelected {
    color: #333;
}

.unit{
    font-size: 16px;
}

.details{
    padding: 0;
    border-radius: 0 0 12px 12px;
    background: #EBEBEB;
}

.details.isSelected.active{
    background: #FFFFFF;
    padding: 0;
}

.detailsBtn{
    border-radius:4px;
    padding: 0 8px;
    font-size: 16px;
    background: #FFF;
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin: 0 auto;
    font-weight: bold;
    transition: all 0.1s ease;
    color: #EBEBEB;
    border: 1px solid #EBEBEB;
    width: 80%;
    max-width: 160px;
    height: 32px;
}

.detailsBtn.isSelected {
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.detailsBtn.sougou.isSelected {
    color: #1e88e5;
}
.detailsBtn.iryou.isSelected {
    color: #E05D7D;
}
.detailsBtn.syuushin.isSelected {
    color: #1A7027;
}
.detailsBtn.syougai.isSelected {
    color: #03847F;
}
.detailsBtn.gan.isSelected {
    color:  #c81432;
}
.detailsBtn.kojin.isSelected {
    color: #1A4797;
}
.detailsBtn.kodomo.isSelected {
    color: #D15700;
}
.detailsBtn.kodomomanki.isSelected {
    color: #28A91D;
}
.detailsBtn.shinia.isSelected {
    color: #A5347B;
}

.detailsBtn:after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    display: block;
    transition: transform 0.1s ease;
    /* 確認事項 */
    background-image: url("../images/icon/open_close_inactive.png");
    opacity: 0.4;
}
.detailsBtn.isSelected:after {
    opacity: 1;
}

.detailsBtn.sougou.isSelected:after {
    background-image: url("../images/icon/open_close_sougou.png");
}
.detailsBtn.iryou.isSelected:after {
    background-image: url("../images/icon/open_close_iryou.png");
}
.detailsBtn.syuushin.isSelected:after {
    background-image: url("../images/icon/open_close_syuushin.png");
}
.detailsBtn.syougai.isSelected:after {
    background-image: url("../images/icon/open_close_syougai.png");
}
.detailsBtn.kojin.isSelected:after {
    background-image: url("../images/icon/open_close_kojinbaisyo.png");
}
.detailsBtn.gan.isSelected:after {
    background-image: url("../images/icon/open_close_ganRed.png");
}
.detailsBtn.kodomo.isSelected:after {
    background-image: url("../images/icon/open_close_kodomo.png");
}
.detailsBtn.kodomomanki.isSelected:after {
    background-image: url("../images/icon/open_close_kodomomanki.png");
}
.detailsBtn.shinia.isSelected:after {
    background-image: url("../images/icon/open_close_shinia.png");
}
.detailsBtn.isSelected.active:after {
    transform: rotate(180deg);
}

.accordionFooter.sougou.isSelected.active {
    background-color: #007FCB;
    box-shadow: 0 2px 0 0 #007FCB;
}
.accordionFooter.iryou.isSelected.active {
    background-color: #E05D7D;
    box-shadow: 0 2px 0 0 #E05D7D;
}
.accordionFooter.syuushin.isSelected.active {
    background-color: #2C893A;
    box-shadow: 0 2px 0 0 #2C893A;
}
.accordionFooter.syougai.isSelected.active {
    background-color: #00958F;
    box-shadow: 0 2px 0 0 #00958F;
}
.accordionFooter.gan.isSelected.active {
    background-color: #c81432;
    box-shadow: 0 2px 0 0 #c81432;
}
.accordionFooter.kojin.isSelected.active {
    background-color: #1A4797;
    box-shadow: 0 2px 0 0 #1A4797;
}
.accordionFooter.kodomo.isSelected.active {
    background-color: #D15700 ;
    box-shadow: 0 2px 0 0 #D15700;
}
.accordionFooter.kodomomanki.isSelected.active {
    background-color: #28A91D;
    box-shadow: 0 2px 0 0 #28A91D;
}
.accordionFooter.shinia.isSelected.active {
    background-color: #A5347B;
    box-shadow: 0 2px 0 0 #A5347B;
}

.accordionContent {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    border-radius: 8px;
    transition: all 0.7s ease-out;
}


.accordionContent.active{
    max-height: 2000px;
    border-radius: 0;
    transition: all 1s ease;
}

.content{
    margin: 0 12px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.kodomomankiContent{
    padding: 0;
    font-size: 24px;
    font-weight: 700;
}

.kodomomankiContent div,
.kodomomankiContent p,
.kodomomankiContent span,
.kodomomankiContent.isChecked .benefitItem.kodomomanki div,
.kodomomankiContent.isChecked .benefitItem.kodomomanki p,
.kodomomankiContent.isChecked .benefitItem.kodomomanki span {
    color: #B9B9B9;
}
.kodomomankiContent.isChecked div,
.kodomomankiContent.isChecked p,
.kodomomankiContent.isChecked span,
.kodomomankiContent.isChecked .benefitItem.kodomomanki.isChecked div,
.kodomomankiContent.isChecked .benefitItem.kodomomanki.isChecked p,
.kodomomankiContent.isChecked .benefitItem.kodomomanki.isChecked span {
    color: #333;
}


.kodomomankiContent .select-area-course small {
    color: #FFFFFF;
}


.accordionFooter{
    padding: 12px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 12px 12px;
    background-color: #EBEBEB;
}
.accordionFooter.sougou {
    box-shadow: 0 2px 0 0 #CCE6FE;
}
.accordionFooter.sougou.isSelected {
    background-color: #CCE6FE;
}
.accordionFooter.iryou {
    box-shadow: 0 2px 0 0 #F5DAF3;
}
.accordionFooter.iryou.isSelected {
    background-color:#F5DAF3;
}
.accordionFooter.syuushin {
    box-shadow: 0 2px 0 0 #D3F3D3;
}
.accordionFooter.syuushin.isSelected {
    background-color: #D3F3D3;
}
.accordionFooter.syougai {
    box-shadow: 0 2px 0 0 #D3F3ED;
}
.accordionFooter.syougai.isSelected {
    background-color: #D3F3ED;
}
.accordionFooter.gan {
    box-shadow: 0 2px 0 0 #F8DFDA;
}
.accordionFooter.gan.isSelected {
    background-color: #F8DFDA;
}
.accordionFooter.kojin {
    box-shadow: 0 2px 0 0 #DAE2F8;
}
.accordionFooter.kojin.isSelected {
    background-color: #DAE2F8;
}
.accordionFooter.kodomo {
    box-shadow: 0 2px 0 0 #FFECCA;
}
.accordionFooter.kodomo.isSelected {
    background-color: #FFECCA;
}
.accordionFooter.kodomomanki {
    box-shadow: 0 2px 0 0 #E2F0C8;
}
.accordionFooter.kodomomanki.isSelected {
    background-color: #E2F0C8;
}
.accordionFooter.shinia {
    box-shadow: 0 2px 0 0 #F0E3FF;
}
.accordionFooter.shinia.isSelected {
    background-color: #F0E3FF;;
}

.accordionFooter.isSelected {
    box-shadow: none;
}

.detailClose {
    border-top:2px solid #EBEBEB;
}

.closeDetails {
    color: #FFFFFF;
    border: none;
    border-radius: 0 0 4px 4px;
    padding: 4px 0;
    gap: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    max-width: 120px;
    margin: auto;
    line-height: 1.5;
}
.closeDetails.sougou{
    background-color: #007FCB;
}
.closeDetails.iryou{
    background-color: #E05D7D;
}
.closeDetails.syuushin{
    background-color: #2C893A;
}
.closeDetails.syougai{
    background-color: #00958F;
}
.closeDetails.gan{
    background-color: #c81432;
}
.closeDetails.kojin{
    background-color: #1A4797;
}
.closeDetails.kodomo{
    background-color: #D15700;
}
.closeDetails.kodomomanki{
    background-color: #28A91D;
}
.closeDetails.shinia{
    background-color: #A5347B;
}

.closeDetails:after{
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
    background-image: url("../images/icon/open_close.png");
    transform: rotate(180deg);
}

.closeDetails:hover {
    opacity: 0.8;
}

.coveragesectionArea {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;

}

.coverageTitle {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
}

.coverageTitle.sougou{
    color: #007FCB;
}
.coverageTitle.iryou{
    color: #E05D7D;
}
.coverageTitle.syuushin{
    color: #2C893A;
}
.coverageTitle.syougai{
    color: #00958F;
}
.coverageTitle.gan{
    color: #c81432;
}

.coverageTitle.kojin{
    color: #1A4797;
}
.coverageTitle.kodomo{
    color: #D15700;
    margin-bottom: 0;
}
.coverageTitle.kodomomanki{
    color: #28A91D;
}
.coverageTitle.shinia{
    color: #A5347B;
}

.coverageNote {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}
.coverageNote.syougai {
    width: 100%;
}
.coverageNote.sougou {
    border: 1px solid #007FCB;
    padding: 8px;
    border-radius: 8px;
}
.coverageNote.iryou {
    border: 1px solid #E05D7D;
    padding: 8px;
    border-radius: 8px;
}
.coverageNote.kojin {
    border: 1px solid #1A4797;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
}
.coverageNote.kojin p.c-mt-1 {
    margin-top: 1rem;
}

.coverageNote a {
    border-bottom: 1px solid ;
}

.coverageNote img {
    width: 16px;
    margin:0  4px 4px 0;
}

.annotation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.annotation::before{
    content: '';
    background-image: url("../images/info_icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 19px;
    height: 19px;
}

.specialAgreementArea{
    width: 100%;
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #EBEBEB;
    background-color: #FFFBEF;
    position: relative;
}

.specialAgreementArea .insuranceCheckbox{
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
}


.specialAgreement{
    display: inline-block;
    line-height: 1;
    border-radius: 16px;
    padding: 4px 8px;
    background: #2C893A;
    color: #FFFFFF;
    font-size: 12px;
    margin: 0 4px;
}

.specialAgreement_add{
    display: inline-block;
    line-height: 1;
    border-radius: 16px;
    padding: 4px 8px;
    color: #FFFFFF;
    font-size: 12px;
    margin: 0 4px;
}

.benefitHeader {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #EBEBEB;
    background-color: #FFFBEF;
}

.benefitHeader.kodomomanki{
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: center;
    border-radius: 0;
    width: 100%;

}

.benefitTitle {
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.benefitTitle.kodomomanki{
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.helpIcon {
    width: 19px;
    height: 19px;
    cursor: pointer;
}

.helpIcon:hover {
    opacity: 0.8;
}

.helpLink {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: underline;
    cursor: pointer;
}

.helpLink::after {
    content: "";
    background-image: url("../images/icon/help.png");
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
}

.helpLink:hover {
    opacity: 0.8;
}

.infoIcon{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}
.infoIcon.sougou{
    color: #007FCB;
    border: 1px solid #007FCB;
}
.infoIcon.iryou{
    color: #E05D7D;
    border: 1px solid #E05D7D;
}
.infoIcon.syuushin{
    color: #2C893A;
    border: 1px solid #2C893A;
}
.infoIcon.syuushinhikiuke{
    color: #2C893A;
    border: 1px solid #2C893A;
}
.infoIcon.syougai{
    color: #00958F;
    border: 1px solid #00958F;
}
.infoIcon.gan{
    color: #c81432;
    border: 1px solid #c81432;
}
.infoIcon.kojin{
    color: #1A4797;
    border: 1px solid #1A4797;
}
.infoIcon.kodomo{
    color: #D15700;
    border: 1px solid #D15700;
}
.infoIcon.kodomomanki{
    color: #28A91D;
    border: 1px solid #28A91D;
}
.infoIcon.shinia{
    color: #A5347B;
    border: 1px solid #A5347B;
}

.benefitItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.benefitItem:last-of-type{
    border-bottom: none;
}

.benefitCause {
    color: #333;
    font-size: 16px;
    max-width: 60%;
}

.benefitCause.kodomomanki{
    font-size: 16px;
    font-weight: 700;
}

.benefitAmount {
    color: #333;
    font-size: 16px;
}

.benefitAmount.kodomomanki{
    font-size: 16px;
    font-weight: 700;
}

.benefitAmount p{
    display: flex;
    justify-content: end;

}


.announcementArea {
    padding: 14px 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    background: #D3F3D3;
    position: relative;
}
.announcementArea:before{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left:-8px;
    border: 7px solid transparent;
    border-top: 12px solid #D3F3D3;
}
.announcement {
    font-size: 16px;
    font-weight: 700;
}

.announcementItem {
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.announcementItem:last-of-type{
    border-bottom: none;
}

.announcementItem_flex {
    display: flex;
    justify-content: flex-start;
    align-items: start;
}

.announcementItem_num {
    font-size: 20px;
    color: #999;
    margin-right: 6px;
}

.announcementItem_text {
    padding-top: 5px;
    font-size: 16px;
}

.button-omitsumori_2 {
    background: #E93D0C;
    color: #fff;
    padding: 12px 28px 12px 12px;
    width: 48%;
    max-width: 250px;
    height: auto;
    font-size: 16px;
    border-radius: 10vw;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.25);
    transition: box-shadow .12s ease, transform .12s ease;
}

.button-omitsumori_2::after {
    content: '';
    position: absolute;
    right: 5%;
    background-image: url("../images/icon/open_close.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.3s ease;
    transform: rotate(270deg);
}

.button-omitsumori_2:hover {
    opacity: 0.8;
}

.button-omitsumori_2:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.footArea{
    margin-bottom: 100px;
}

.totalArea{
    border-top: 1px solid #094;
    border-bottom: 1px solid #094;
    background: #F2FFF0;
    padding: 12px;
    position: fixed;
    bottom: 0;
    width: 100vw;
    margin-bottom: unset;
    margin-left: -12px;
}
.totalmonthlyFee{
    font-size: 14px;
    font-weight: 700;
}

.totalAmount{
    font-size: 24px;
    font-weight: 700;

}

.totalpriceDetails{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.totalmonthlyFee br {
    display: block;
}
@media screen and (min-width: 370px) { 
    .totalmonthlyFee br {
        display: none;
    }   
}

.topArea{
    margin-bottom: 46px;
}

.top{
    text-align: center;
    color: #0A7E2E;
}





/*------------------------------------------------------------------------------------------------------------------------------------------------*/

.indent {
    text-indent: -1em;
    padding-left: 1em;
}

.indent_sub {
    padding-left: 1.6em;
}

.sougouBlue {
    color: #007fcb;
}

.sougouBlue-bg {
    background-color: #007fcb;
}

.iryouPink {
    color: #e05d7d;
}

.iryouPink-bg {
    background-color: #e05d7d;
}

.shuushinGreen {
    color: #2c893a;
}

.shuushinGreen-bg {
    background-color: #2c893a;
}

.shougaiGreen {
    color: #00958f;
}

.shougaiGreen-bg {
    background-color: #00958f;
}

.ganRed {
    color: #c81432;
}

.ganRed-bg {
    background-color: #c81432;
}

.ganGold {
    color: #9f6c1a;
}

.ganGold-bg {
    background-color: #c28b33;
}

.kobaiBlue {
    color: #1a4797;
}

.kobaiBlue-bg {
    background-color: #1a4797;
}

.kodomoOrange {
    color: #de650f;
}

.kodomoOrange-bg {
    background-color: #de650f;
}

.decoration-kodomoOrange {
    text-decoration-color: #ebc39b;
}

.mankiGreen {
    color: #28a91d;
}

.mankiGreen-bg {
    background-color: #28a91d;
}

.siniaPurple {
    color: #a5347b;
}

.siniaPurple-bg {
    background-color: #a5347b;
}

.text-white {
    color: #fff;
}

.margin-top {
    margin-top: 24px;
}

.margin-top48 {
    margin-top: 48px;
}

.underline {
    text-decoration-line: underline;
}

.underline-offset-4 {
    text-underline-offset: 4px;
}

.text-14px {
    font-size: 14px;
}

.-indent-2rem {
    text-indent: -2rem;
}

.button {
    background: #fff;
    color: #666;
    padding: 0 8px;
    width: 110px;
    height: 30px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid #666;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button:hover {
    opacity: 0.8;
}

.button-sentaku {
    background: #fff;
    color: #0A7E2E;
    padding: 16px;
    width: 100%;
    height: auto;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid #009944;
    text-decoration: underline;
    transition: box-shadow .12s ease, transform .12s ease;
}

.button-sentaku:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.button-sentaku  .sentaku-img {
    fill: currentColor;
}

.button-sentaku:hover, .button-sentaku:hover .sentaku-img {
    background: #009944;
    color: #fff;
}

.nextBtnArea {
    margin: 0 auto;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 72px;
}

.button-omitsumori, .button-hozon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 16px;
    width: 100%;
    height: auto;
    font-size: 16px;
    border-radius: 10vw;
    font-weight: 700;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.25);
    position: relative;
    transition: box-shadow .12s ease, transform .12s ease;
}

.button-omitsumori {
    background: #E93D0C;
}

.button-hozon {
    background: #009944;
}

.button-omitsumori:hover, .button-hozon:hover {
    opacity: 0.8;
}

.button-omitsumori::after, .button-hozon::after {
    content: '';
    position: absolute;
    right: 20px;
    background-image: url("../images/icon/open_close.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.3s ease;
    transform: rotate(270deg);
}

.button-omitsumori:active, .button-hozon:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/*---------モーダル---------*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
    justify-content: center;
    align-items: center;
}
.modal {
    display: none;
    position: fixed;
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0;
    width: 100vw;
    max-width: 1000px;
    max-height: 90vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    width: 100%;
    animation-name: modalopen;
    animation-duration: 1s;
}

@keyframes modalopen {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.modal-header {
    background: #fff;
    padding: 16px;
    padding-right: 32px;
    display: flex;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    z-index: 100;
}

.modalClose {
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 8px; 
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    width: 84px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow .12s ease, transform .12s ease;
}
.modalClose_1{
    font-size: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 4px 8px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}

.modalClose:hover{
    cursor: pointer;
    opacity: 0.8;
}

.modalClose:active{
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.modal-body {
    width: 90%;
    margin: auto;
}

/*------------------商品の特長------------------*/
.st-title-logo img {
    width: 140px;
}

.logo-shougai {
    margin-right: 12px;
}

.st-title-h1 {
    font-weight: 700;
    margin: 24px auto;
}

.st-title-h1-manki {
    font-weight: 700;
    margin: 24px auto 0;
}

.st-title-manki {
    margin-bottom: 24px;
}

.st-main-sougou {
    border-top: 1px solid #ebebeb;
    padding-top: 24px;
}

.st-main-text,
.st-main-text-kodomo {
    font-weight: 700;
    padding: 24px 0;
    border-top: 1px solid #ebebeb;
}

.st-main-text {
    font-weight: 700;
    padding: 24px 0;
    border-top: 1px solid #ebebeb;
}

.st-main-text-sub-1 {
    padding-bottom: 16px;
}

.st-main-text-sub-2 {
    padding-bottom: 0px;
}

.st-main-p {
    padding-bottom: 24px;
}

.st-main-textArea {
    padding: 24px 0 48px;
    border-top: 1px solid #ebebeb;
}

.st-main-textArea-kobai {
    padding-top: 24px;
    border-top: 1px solid #ebebeb;
}

.st-main-textArea-siniaIryou {
    padding-top: 24px;
    border-top: 1px solid #ebebeb;
}

/*---------section01~03---------*/
.st-main-section-01,
.st-main-section03 {
    margin-bottom: 24px;
}

.st-main-section03-kobai {
    margin-bottom: 48px;
}

.st-main-section01-siniaIryou {
    margin-top: 24px;
}

.st-main-section01-gan {
    margin-bottom: 48px;
}

.section-btmLine {
    border-bottom: 1px solid #fff;
}

.section-btmLine-shuushin {
    border-bottom: 1px solid #fff;
}

.section01-title,
.section01-priceTitle,
.section02-title,
.section02-title-kobai,
.section02-title-manki,
.section02-priceTitle,
.section03-title,
.section03-title-kobai,
.section-konnatoki-title,
.section-konnatoki-title-kobai{
    color: #fff;
    margin: 0 auto;
    padding: 2px 0;
    text-align: center;
}

.section02-title-shougai {
    font-weight: 700;
    margin: 24px auto 8px;
}

.section01-titleLine,
.section01-titleLine-shuushin,
.section02-titleLine,
.section02-titleLine-shuushin,
.section02-titleLine-gan,
.section01-titleLine-manki,
.section01-titleLine-sougou {
    font-weight: 700;
    position: relative;
    padding-left: 8px;
}

.section01-titleLine-sougou {
    margin-bottom: 16px;
}

.section02-titleLine,
.section02-titleLine-shuushin,
.section02-titleLine-gan {
    margin-top: 24px;
}

.section01-titleLine:before,
.section01-titleLine-shuushin:before,
.section02-titleLine:before,
.section02-titleLine-shuushin:before,
.section01-titleLine-sougou:before {
    position: absolute;
    border-radius: 1px;
    content: "";
    left: 0;
    top: 3px;
    bottom: 0;
    width: 4px;
    height: 75%;
}

.section02-titleLine-gan:before,
.section01-titleLine-manki:before {
    position: absolute;
    border-radius: 1px;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.section01-titleLine-sougou:before {
    background-color: #007fcb;
}

.section01-titleLine-shuushin:before,
.section02-titleLine-shuushin:before {
    background-color: #2c893a;
}

.section01-titleLine:before,
.section02-titleLine:before {
    background-color: #e05d7d;
}

.section02-titleLine-gan:before {
    background-color: #c81432;
}

.section01-titleLine-manki:before {
    background-color: #28a91d;
}

.section01-titleLine-shuushin:before,
.section02-titleLine-shuushin:before {
    background-color: #2c893a;
}

.section01-titleLine.kodomoOrange:before,
.section02-titleLine.kodomoOrange:before {
    background-color: #de650f;
}

.kodomo-title-flame {
    display: flex;
    justify-content: center;
    margin: 24px auto 8px;
}

.kodomo-title {
    width: 96%;
    position:relative;
    padding: 8px 16px;
    border-top: solid 1px #de650f;
    border-bottom: solid 1px #de650f;
    border-left: solid 1px #de650f;
}

.arrow {
    margin-left: -1px;
}

.section01-tableTitle,
.section02-tableTitle {
    margin: 0 auto;
    text-align: left;
    font-weight: 700;
}

.section02-title,
.section02-title-kobai,
.section02-title-manki,
.section03-title,
.section03-title-kobai,
.section-konnatoki-title {
    margin-top: 24px;
}

.section-konnatoki-title-kobai {
    margin-top: 48px;
}

.margin-none {
    margin: 0;
}

.section01-title,
.section02-title,
.section02-title-kobai,
.section02-title-manki,
.section03-title,
.section03-title-kobai,
.section-konnatoki-title,
.section-konnatoki-title-kobai{
    border-radius: 5vw;
}

.kobai-title-marginTop {
    margin-top: 48px;
}

.section01-priceTitle,
.section02-priceTitle {
    border-radius: 4px;
}

.section01-priceArea,
.section02-priceArea {
    background-color: #eaf6fd;
    width: 85%;
    margin: 0 auto;
}

.section02-priceArea-gan {
    padding: 24px 0;
    border-top: 1px solid #eba49b;
    width: 85%;
    margin: 0 auto;
}

.section02-priceArea-gan-text01 {
    margin-bottom: 8px;
    font-weight: 700;
    text-align: left;
}

.section02-priceArea-gan-text02,
.section02-priceArea-gan-text03 {
    text-align: center;
    font-weight: 700;
}

.section02-priceArea-gan-text02 {
    margin-bottom: -4px;
}

.section02-priceArea-gan-text02 span {
    font-size: 36px;
}

.section02-jikohutangaku01-gan-title,
.section02-jikohutangaku02-gan-title {
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.section02-jikohutangaku01-gan-content {
    border-bottom: 1px solid #c81432;
    border-left: 1px solid #c81432;
    border-right: 1px solid #c81432;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 12px;
}

.section02-jikohutangaku02-gan-content {
    border-bottom: 1px solid #c28b33;
    border-left: 1px solid #c28b33;
    border-right: 1px solid #c28b33;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 12px;
}

.section02-jikohutangaku01-gan-content span,
.section02-jikohutangaku02-gan-content span {
    font-weight: 700;
}

.jikohutangaku_plus {
    display: block;
    margin: 12px auto;
}

.section01-tableArea,
.section02-tableArea {
    width: 85%;
    margin: 0 auto;
}

.st-main-section02-shougai01,
.st-main-section02-shougai02 {
    white-space: nowrap;
}

.st-main-section02-shougai01 {
    padding-bottom: 24px;
}

.section02-shougai-tableFlex,
.section01-sinia-tableFlex,
.section01-siniaIryou-tableFlex,
.section01-kobai-tableFlex{
    display: flex;
    justify-content: flex-start;
}

.section02-shougai-tableFlex {
    align-items: flex-end;
    white-space: nowrap;
    overflow-x: scroll;
}

.section03-shougai {
    margin-top: 24px;
    padding: 12px;
    border: solid 1px #00958f;
}

.section03-shougai a {
    border-bottom: 1px solid #00958f;
    color: #00958f;
}

.section01-kobai-tableFlex {
    white-space: nowrap;
    overflow-x: scroll;
}

.section01-sinia-tableFlex {
    white-space: nowrap;
    overflow-x: scroll;
    align-items: stretch;
    margin: 0;
}

.section01-siniaIryou-tableFlex {
    align-items: stretch;
    white-space: nowrap;
    overflow-x: scroll;
}

/*--シニア総合・医療、がん表高さ固定ここから--*/
.tr-top {
    height: 52px;
}

.tr-top-title {
    height: 78px;
}

.td-01 {
    height: 75px;
}

.td-02,
.td-05-iryou02 {
    height: 62px;
}

.tr-03-sougou {
    height: 136px;
}

.td-04 {
    height: 82px;
}

.td-05 {
    height: 54px;
}

.tr-01 {
    height: 140px;
}

.tr-02 {
    height: 88px;
}

.tr-03,
.tr-04,
.tr-02-gan {
    height: 112px;
}

.td-05-iryou {
    height: 136px;
}

.td-05-iryou01 {
    height: 74px;
}

.tr-01-gan {
    height: 140px;
}

.td-01-gan {
    height: 70px;
}

.td-01-kobai {
    height: 70px;
}

.textLeft-kobai {
    text-align: left;
}

/*--シニア総合・医療表高さ固定ここまで--*/

.section02-tableArea-shougai {
    margin-left: 4px;
    width: 85%;
}

.section01-tableArea-sinia01 {
    margin-right: 24px;
    width: 70%;
    border-collapse: separate;
}
.section01-tableArea-sinia02 {
    width: 30%;
}

.section01-tableArea-siniaIryou01 {
    margin-right: 24px;
    border-collapse: separate;
    flex-grow: 1;
    width: 60%;
}

.section01-tableArea-siniaIryou02 {
    border-collapse: separate;
    width: 30%;
}

.section01-tableArea-kobai {
    border-collapse: separate;
    width: 100%;
    margin-bottom: 24px;
}

.section01-tableArea-kobai td {
    width: auto;
}

.shougai-bui {
    width: 45px;
}

.table-yen {
    font-size: 12px;
}

.section01-img {
    margin: 16px auto;
}

table,
td,
th {
    border-collapse: collapse;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.section01-tableLine-gan-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #fff;
    background-color: #c81432;
    width: 40%;
    padding: 12px 8px;
    border-bottom: 1px solid #fff;
}

.section01-tableLine-sinia-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #fff;
    background-color: #a5347b;
    width: 40%;
    padding: 12px 8px;
    border-bottom: 1px solid #fff;
}

.section01-tableLine-sinia-top02 {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #d9d9d9;
    width: 40%;
    padding: 12px 8px;
    border-bottom: 1px solid #fff;
    opacity: 0.8;
    vertical-align: middle;
}

.section01-tableLine-sinia-top-left {
    border-top: 1px solid #a5347b;
    border-left: 1px solid #a5347b;
    border-right: none;
    vertical-align: middle;
}

.section01-tableLine-gan-top-left {
    border-top: 1px solid #c81432;
    border-left: 1px solid #c81432;
    border-right: none;
    vertical-align: middle;
}

.section01-tableLine-kobai-top-left {
    border-top: 1px solid #b9b9b9;
    border-right: none;
    vertical-align: middle;
}

.section01-tableLine-sinia-top-right {
    color: #fff;
    background-color: #a5347b;
    vertical-align: middle;
}

.section01-tableLine-gan-top-right {
    color: #fff;
    background-color: #c81432;
    vertical-align: middle;
}

.section01-tableLine-kobai-top-right {
    color: #fff;
    background-color: #1a4797;
    vertical-align: middle;
    max-width: 180px;
}

.section01-tableLine-sinia-top-right02 {
    background-color: #d9d9d9;
    border-left: 1px solid #fff;
    vertical-align: middle;
    opacity: 0.8;
    padding: 12px 8px;
}

.section01-tableInner,
.section02-tableInner {
    margin: 0 auto;
    padding: 8px 0;
}

.section02-tableInner-shougai {
    margin: 0 auto;
}

.section02-tableTop-shougai {
    font-size: 14px;
    background-color: #ecf4f3;
}

.table-iryou,
.table-shuushin {
    width: 100%;
    position: relative;
}

.table-iryou::after,
.table-shuushin:after {
    position: absolute;
    content: "";
    width: 3px;
    height: 25%;
    bottom: -25%;
    left: 50%;
}

.table-iryou::after {
    background-color: #e05d7d;
}

.table-shuushin:after {
    background-color: #2c893a;
}

.section01-tableBtm-Text {
    font-size: 14px;
    text-align: right;
    margin-top: 12px;
}

.table-font20 {
    font-size: 20px;
    font-weight: 700;
}

.text-align-right {
    text-align: right;
}

.text-align-left {
    text-align: left;
    padding-left: 8px;
}

.text-align-center {
    vertical-align: middle;
}

.section01-tableTop,
.section02-tableTop {
    background-color: #fdf2f2;
}

.section01-tableTop-shuushin,
.section02-tableTop-shuushin {
    background-color: #eff2e9;
}

.section01-tableLine-l,
.section01-tableLine-r,
.section01-tableLine-r-shuushin,
.section02-tableLine-l-gan,
.section02-tableLine-r-gan,
.section01-tableLine-l-sinia,
.section01-tableLine-l-sinia02,
.section01-tableLine-r-sinia02,
.section01-tableLine-c-sinia02,
.section01-tableLine-c-gan02 {
    width: 50%;
    padding: 12px 8px;
}

.section02-tableLin1-l,
.section02-tableLine-r,
.section02-tableLine-c,
.section01-tableLine-r-sinia,
.section01-tableLine-c-sinia,
.section01-tableLine-l-siniaIryou,
.section01-tableLine-l-gan,
.section01-tableLine-l-gan02,
.section01-tableLine-r-gan {
    padding: 12px 8px;
}

.section01-tableLine-c-sinia {
    font-size: 14px;
    vertical-align: middle;
    border-left: none;
    border-top: 1px solid #a5347b;
    border-right: none;
    background-color: #f6f6f6;
}

.section01-tableLine-c-gan {
    font-size: 14px;
    vertical-align: middle;
    border-left: 1px solid #c81432;
    border-top: 1px solid #c81432;
    border-right: none;
    background-color: #f6f6f6;
}

.section01-tableLine-c-kobai {
    font-size: 14px;
    vertical-align: middle;
    border-left: 1px solid #b9b9b9;
    border-top: 1px solid #b9b9b9;
    border-right: none;
    border-bottom: none;
    background-color: #f6f6f6;
    padding: 12px 8px;
}

.section01-tableLine-r-sinia {
    vertical-align: middle;
    border-top: 1px solid #a5347b;
    border-right: 3px solid #a5347b;
    border-left: 3px solid #a5347b;
}

.section01-tableLine-r-gan {
    vertical-align: middle;
    border-top: 1px solid #c81432;
    border-right: 3px solid #c81432;
    border-left: 3px solid #c81432;
}

.section01-tableLine-r-kobai {
    vertical-align: middle;
    border-top: 1px solid #b9b9b9;
    border-right: 3px solid #1a4797;
    border-left: 3px solid #1a4797;
}

.section01-tableLine-r-sinia02 {
    border-left: none;
    border-right: none;
    border-top: 1px solid #a5347b;
    text-align: center;
    vertical-align: middle;
    background-color: #f9f9f9;
    opacity: 0.8;
}

.section01-tableLine-r-sinia-btm {
    vertical-align: middle;
    border-top: 1px solid #a5347b;
    border-right: 3px solid #a5347b;
    border-left: 3px solid #a5347b;
    border-bottom: 3px solid #a5347b;
    padding: 12px 20px;
    background-color: #f2d7e6;
    position: relative;
    font-size: 14px;
    font-weight: 700;
}

.section01-tableLine-r-gan-btm {
    vertical-align: middle;
    border-top: 1px solid #c81432;
    border-right: 3px solid #c81432;
    border-left: 3px solid #c81432;
    border-bottom: 3px solid #c81432;
    padding: 12px 20px;
    background-color: #ffd5cd;
    position: relative;
    font-size: 14px;
    font-weight: 700;
}

.section01-tableLine-r-kobai-btm {
    vertical-align: middle;
    border-top: 1px solid #b9b9b9;
    border-right: 3px solid #1a4797;
    border-left: 3px solid #1a4797;
    border-bottom: 3px solid #1a4797;
    padding: 12px 4px;
    background-color: #ebf1ff;
    position: relative;
    font-size: 13px;
    font-weight: 700;
}

.section01-tableLine-l-sinia {
    border-left: none;
    border-top: 1px solid #a5347b;
    border-right: 1px solid #a5347b;
    text-align: left;
}

.section01-tableLine-l-sinia02 {
    border-left: none;
    border-top: 1px solid #a5347b;
    border-right: 1px solid #a5347b;
    text-align: center;
    vertical-align: middle;
    background-color: #f9f9f9;
    opacity: 0.8;
}

.section01-tableLine-l-siniaIryou {
    border-left: none;
    border-top: 1px solid #a5347b;
    border-right: none;
    text-align: left;
}

.section01-tableLine-l-gan {
    border-left: none;
    border-top: 1px solid #c81432;
    border-right: none;
    text-align: left;
}

.section01-tableLine-l-kobai {
    border-left: none;
    border-top: 1px solid #b9b9b9;
    border-right: none;
    text-align: left;
    padding: 12px 8px;
}

td.section01-tableLine-l-kobai02 {
    width: 30%;
}

.section01-tableLine-l-kobai03 {
    font-size: 14px;
    vertical-align: middle;
    background-color: #f6f6f6;
    border-left: 1px solid #b9b9b9;
    border-top: 1px solid #b9b9b9;
    border-right: none;
    text-align: center;
    padding: 5px;
}

.section01-tableLine-c-sinia02 {
    border-left: none;
    border-right: none;
    border-top: 1px solid #a5347b;
    text-align: center;
    vertical-align: middle;
    background-color: #f9f9f9;
    opacity: 0.8;
}

.section01-tableLine-c-gan02 {
    border-left: none;
    border-right: none;
    border-top: 1px solid #c81432;
    text-align: center;
    vertical-align: middle;
    background-color: #f9f9f9;
    opacity: 0.8;
}

.section01-tableLine-l-sinia-btm {
    border-left: none;
    border-right: none;
    border-top: 1px solid #a5347b;
    border-bottom: 1px solid #a5347b;
    vertical-align: middle;
    text-align: center;
    background-color: #f6edf2;
    font-size: 14px;
    font-weight: 700;
}

.section01-tableLine-l-gan-btm {
    border-left: none;
    border-right: none;
    border-top: 1px solid #c81432;
    border-bottom: 1px solid #c81432;
    vertical-align: middle;
    text-align: center;
    background-color: #ffece8;
    font-size: 14px;
    font-weight: 700;
}

.section01-tableLine-l-sinia-btm02 {
    border-left: none;
    border-right: none;
    border-top: 1px solid #a5347b;
    border-bottom: 1px solid #a5347b;
    vertical-align: middle;
    text-align: center;
    background-color: #f2d7e6;
    font-size: 14px;
    padding: 12px 20px;
    position: relative;
    font-weight: 700;
}

.section01-tableLine-l-kobai-btm {
    border-left: none;
    border-right: none;
    border-top: 1px solid #b9b9b9;
    border-bottom: 1px solid #b9b9b9;
    vertical-align: middle;
    text-align: center;
    background-color: #ebf1ff;
    font-size: 14px;
    font-weight: 700;
}

.section01-tableLine-l-gan-btm02 {
    border-left: none;
    border-right: none;
    border-top: 1px solid #c81432;
    border-bottom: 1px solid #c81432;
    vertical-align: middle;
    text-align: center;
    background-color: #ffece8;
    font-size: 14px;
    padding: 12px 20px;
    position: relative;
    font-weight: 700;
}

.section01-tableLine-r-sinia-btm02 {
    border-right: none;
    border-left: 1px solid #a5347b;
    border-top: 1px solid #a5347b;
    border-bottom: 1px solid #a5347b;
    vertical-align: middle;
    text-align: center;
    background-color: #f2d7e6;
    font-size: 14px;
    padding: 12px 20px;
    position: relative;
    font-weight: 700;
}

.font-size14 {
    font-size: 14px;
}

.font-size20 {
    font-size: 20px;
}

.font-size20-price {
    font-size: 20px;
    font-weight: bold;
}

.font-weight {
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}

.sinia_marker {
    background: linear-gradient(transparent 60%, #edcdf5 60%);
}

.gan_marker {
    background: linear-gradient(transparent 60%, #FFC0C0 60%);
}

.dashed-line {
    border-top: 1px dashed #a5347b;
}

.dashed-line-gan {
    border-top: 1px dashed #c81432;
}

.right-arrow {
    position: relative;
}

.right-arrow::after {
    position: absolute;
    content: "";
    top: 10px;
    bottom: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-left: 20px solid #a5347b;
    border-bottom: 60px solid transparent;
}

.right-arrow-gan {
    position: relative;
}

.right-arrow-gan::after {
    position: absolute;
    content: "";
    top: 10px;
    bottom: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-left: 20px solid #c81432;
    border-bottom: 60px solid transparent;
}

.td-right {
    vertical-align: top;
}

.td-bg {
    background-color: #f6edf2;
    font-size: 14px;
    padding: 4px;
    display: block;
}

.td-right-gan {
    vertical-align: middle;
    padding: 8px 32px;
}

.td-bg-gan {
    background-color: #ffece8;
    font-size: 14px;
    padding: 4px 10px;
    display: block;
    margin: 0 auto;
}

.section01-tableLine-r-sinia,
.section01-tableLine-r-gan {
    width: 40%;
}

.section01-tableLine-r-sinia img,
.section01-tableLine-l-sinia img,
.section01-tableLine-l-sinia02 img,
.section01-tableLine-c-sinia02 img,
.section01-tableLine-c-gan02 img {
    width: 14px;
    margin-right: 2px;
}

.section01-tableLine-r-sinia-btm img,
.section01-tableLine-l-sinia-btm02 img,
.section01-tableLine-r-sinia-btm02 img,
.section01-tableLine-r-gan-btm img,
.section01-tableLine-l-gan-btm02 img {
    width: 14px;
    position: absolute;
    left: 8px;
    top: 20px;
    padding-right: 4px;
}

.section01-tableLine-sinia-none {
    border: none;
}

.section01-tableLine-l,
.section02-tableLine-l,
.section02-tableLine-l-shougai,
.section02-tableLine-l-gan {
    border-left: none;
    border-top: 1px solid #b9b9b9;
    border-right: 1px solid #b9b9b9;
    border-bottom: 1px solid #b9b9b9;
}

.section02-tableLine-l {
    width: 40%;
}

.section02-tableLine-l-shougai {
    width: 40%;
    font-size: 14px;
    padding: 0 8px;
    background-color: #ecf4f3;
}

.section02-tableLine-l-sinia {
    width: 60%;
    text-align: left;
}

.section02-tableLine-img {
    position: relative;
    background-color: #fff;
}

.section02-tableLine-img img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.syoujyou_pc {
    display: none;
}

.section02-tableLine-r,
.section02-tableLine-c {
    width: 30%;
}

.section01-tableLine-l,
.section02-tableLine-l,
.section02-tableLine-l-shougai {
    border-left: none;
    border-top: 1px solid #b9b9b9;
    border-right: 1px solid #b9b9b9;
    border-bottom: 1px solid #b9b9b9;
}

.section01-tableLine-r {
    border-right: 3px solid #e05d7d;
    border-top: 1px solid #b9b9b9;
    border-left: 3px solid #e05d7d;
    border-bottom: 1px solid #b9b9b9;
}

.section01-tableLine-r-shuushin {
    border-right: 3px solid #2c893a;
    border-top: 1px solid #b9b9b9;
    border-left: 3px solid #2c893a;
    border-bottom: 1px solid #b9b9b9;
}

.section02-tableLine-r,
.section02-tableLine-r-gan {
    border-right: none;
    border-top: 1px solid #b9b9b9;
    border-left: 1px solid #b9b9b9;
    border-bottom: 1px solid #b9b9b9;
}

.section02-tableLine-c {
    border: 1px solid #b9b9b9;
}

.border-color-top-iryou {
    border-top: 3px solid #e05d7d;
}

.border-color-top-shushin {
    border-top: 3px solid #2c893a;
}

.border-color-btm-iryou {
    border-bottom: 3px solid #e05d7d;
}

.border-color-btm-shushin {
    border-bottom: 3px solid #2c893a;
}

.section02-tableLine-l-gan {
    background-color: #ffece8;
}

.section02-tableLine-l-gan img {
    width: 16px;
    margin: 0 4px 2px 0;
}

.section01-detail,
.section02-detail,
.section03-detail {
    display: block;
    margin: 16px auto;
    text-align: center;
    font-weight: 700;
}

.section-konnatoki-text {
    display: block;
    margin: 16px auto;
    padding: 0 8px;
}

.section-konnatoki-gan-info {
    padding: 0 8px;
}

.section-konnatoki-text span {
    font-weight: 700;
}

.section-konnatoki-text img,
.section-konnatoki-gan-info img {
    width: 16px;
    margin: 0 0 4px 2px;
}

.paddin-fix-kobai {
    width: 85%;
    margin-bottom: 0;
}

.st-main-section-Konnatoki img.info-img-right {
    margin: 0 0 0 2px;
}

.st-main-section-Konnatoki img.info-img-left {
    margin: 0 2px 3px 0;
}

.section03-flex-kobai-Text img.info-img-left {
    margin: 0 2px 3px 0;
}

.section01-detailTitle {
    display: flex;
}

.section01-detailTitle img {
    margin-right: 4px;
}

.section01-detailText,
.section02-detailText,
.section03-detailText {
    display: block;
    margin: 16px auto;
    text-align: left;
}

.section01-detailText-gan {
    display: block;
    margin: 16px auto 0;
    text-align: left;
}

.section02-detailText-gan {
    display: block;
    margin: 16px auto 24px;
    text-align: left;
}

.section01-scroll-img,
.section02-scroll-img {
    overflow-x: auto;
    white-space: nowrap;
}

.section01-scroll-img {
    margin-bottom: 48px;
}

.section02-scroll-img {
    margin-bottom: 24px;
}

.section01-scroll-img img {
    max-width: 700px;
}

.section02-scroll-img img {
    max-width: 500px;
}

.section01-detailContent {
    display: block;
    margin: 0 auto 24px;
    text-align: left;
}

.section01-note,
.note,
.note-kodomomanki,
.note-border {
    display: flex;
    align-items: flex-start;
}

.section01-note {
    margin-bottom: 24px;
}

.note {
    margin-bottom: 16px;
}

.section01-note img,
.note img {
    margin: 4px 4px 0 0;
    width: 16px;
}

.note-border {
    border: 1px solid #1A4797;
    border-radius: 8px;
    padding: 16px;
}

.note-kodomomanki img,
.note-border img {
    margin: 4px 4px 0 0;
    width: 16px;
}

.textArea-logo {
    display: flex;
    justify-content: space-between;
    max-width: 465px;
}

.textArea-logo li {
    margin-right: 8px;
}

.textArea-logo li:last-child {
    margin-right: 0;
}

.section03-title img,
.section03-title-kobai img,
.section-konnatoki-title img,
.section-konnatoki-title-kobai img{
    margin-right: 8px;
    margin-bottom: 3px;
    width: 16px;
}

.section01-priceInner,
.section02-priceInner {
    margin: 0 auto 8px;
    padding: 16px 0;
}

.section01-priceName,
.section01-price,
.section02-priceName,
.section02-price {
    text-align: center;
}

.section01-price,
.section02-price {
    padding: 8px 0;
    font-weight: 900;
}

.section01-num,
.section02-num {
    font-size: 36px;
}

.section01-priceText {
    width: 85%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.section01-source,
.section02-source,
.section01-source-iryou,
.section02-source-iryou {
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 24px;
}

.section02-source-gan {
    font-size: 14px;
    width: 100%;
    padding-top: 8px;
    margin: 0 auto;
}

.section01-source-siniaIryou {
    font-size: 14px;
    padding-bottom: 24px;
    margin: 0 8px;
}

.section-konnatoki-source {
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 16px;
}

.section01-source, .section01-source-iryou {
    border-bottom: 1px solid #CCE6FE;
}

.detail02 {
    margin: 24px auto 16px;
}

.price02 {
    padding: 8px 0 0;
}

.source02 {
    border-bottom: none;
}

.section03-content,
.section-konnatoki-content {
    border: 1px solid #b9b9b9;
    padding: 8px 0 24px;
    margin-top: 8px;
    border-radius: 8px;
    position: relative;
}

.section02-flex-kobai,
.section03-flex-kobai {
    display: flex;
    justify-content: flex-start;
}

.section03-flex,
.section03-flex-ex {
    display: flex;
    justify-content: center;
}

.section03-flex-on {
    background-color: #eaf6fd;
    width: 100%;
    text-align: center;
    border-radius: 1vw;
    margin-bottom: 8px;
    padding: 2px 4px;
    font-weight: 700;
}

.section03-flex-none {
    background-color: #fff;
    text-align: center;
}

.circle {
    margin: 0 auto;
    width: 85%;
}

.circle01 {
    margin-right: 2vw;
}

.section03-flex-circle {
    width: 110px;
    height: 110px;
    background-color: #eaf6fd;
    border-radius: 50%;
    text-align: center;
    position: relative;
    line-height: 1.4;
    font-weight: 700;
}

.section03-flex-circle span {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 110px;
    text-align: center;
}

.section03-flex-ex {
    width: 85%;
    margin: 24px auto 0;
}

.section02-flex-kobai-Title,
.section03-flex-kobai-Title,
.section03-flex-exTitle {
    padding-right: 8px;
}

.section03-flex-exText span {
    font-weight: 700;
}

.section03-sp {
    display: none;
}

.section-konnatoki-main,
.section-konnatoki-main-codomo {
    width: 85%;
    margin: 0 auto 16px;
}

.section-konnatoki-main-codomo {
    margin: 0 auto 16px;
    width: 90%;
}

.padding0-kodomo {
    padding: 0;
    margin-bottom: 0;
}

.section-konnatoki-main-shougai {
    width: 75%;
    margin: 0 auto;
    position: relative;
    background-color: #ecf4f3;
}

.section-konnatoki-main-shougai-ex {
    position: absolute;
    top: -6px;
    left: -6px;
}

.kodomo-ex::before {
    content: url("../images/kodomo_ex.svg");
    position: relative;
    top: 10px;
    left: -40px;
}

.section-konnatoki-main-shougai {
    background-color: #ecf4f3;
}

.section-konnatoki-main-siniaIryou {
    width: 90%;
    margin: 0 auto;
    background-color: #f6edf2;
}

.section-konnatoki-sinia-subTitle {
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-konnatoki-main-top {
    text-align: center;
    margin: 0 auto 16px;
    font-weight: 700;
    font-size: 18px;
}

.section-konnatoki-main-title,
.section-konnatoki-main-title-shuushin {
    text-align: center;
    border-radius: 5vw;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-konnatoki-main-title-kodomo {
    margin-bottom: 8px;
    padding-left: 24px;
    text-align: left;
    border-radius: 5vw;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.section-konnatoki-main-title-shougai,
.section-konnatoki-main-title-siniaIryou {
    text-align: center;
    font-weight: 700;
    margin-bottom: 16px;
    padding-top: 24px;
}

.section-konnatoki-main-title-shougai {
    background-color: #ecf4f3;
}

.section-konnatoki-main-title-siniaIryou {
    background-color: #f6edf2;
    font-size: 18px;
}

.section-konnatoki-main-title {
    background-color: #fdf2f2;
}

.section-konnatoki-main-title-shuushin {
    background-color: #eff2e9;
}

.section-konnatoki-main-title-kodomo {
    background-color: #fef5e4;
}

.section-konnatoki-main-sub {
    text-align: center;
    font-size: 14px;
}

.section-konnatoki-main-sub {
    font-size: 14px;
    margin-bottom: 16px;
}

.section-konnatoki-main-sub-kodomo  {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 24px;
    text-align: left;
}

.section-konnatoki-main-price,
.section-konnatoki-main-price-shougai,
.section-konnatoki-main-age-siniaIryou {
    text-align: center;
    font-weight: 700;
}

.section-konnatoki-main-price-shougai,
.section-konnatoki-main-age-siniaIryou {
    width: 80%;
    margin: 0 auto;
    color: #fff;
    padding: 2px 0;
    border-radius: 4px;
}

.section-konnatoki-main-price span {
    font-size: 36px;
}

.section-konnatoki-main-price-shougai span {
    font-size: 20px;
}

.section-konnatoki-main-price-shougai-si,
.section-konnatoki-main-age-siniaIryou-si {
    margin: 4px auto 0;
    width: 80%;
}

.section-konnatoki-main-price-shougai-si {
    text-align: left;
}

.section-konnatoki-main-age-siniaIryou-si {
    font-weight: 700;
    text-align: center;
}

.section-konnatoki-main-age-siniaIryou-si span {
    font-size: 36px;
}

.section-konnatoki-main-priceArea-shougai02 {
    padding: 16px 0 24px;
}

.section-konnatoki-main-ageArea-siniaIryou {
    padding: 16px 0 8px;
}

.section-konnatoki-sonohoka {
    text-align: center;
    font-weight: 700;
    margin: 8px auto;
}

.section-konnatoki-mainSub-gan-nado {
    text-align: left;
    margin-bottom: 16px;
}

.section-konnatoki-mainSub,
.section-konnatoki-mainSub-shuushin,
.section-konnatoki-mainSub-kobai {
    text-align: center;
    border-radius: 5vw;
    font-weight: 700;
    width: 85%;
    margin: 0 auto 12px;
}

.section-konnatoki-mainSub-gan {
    text-align: center;
    border-radius: 5vw;
    font-weight: 700;
    margin: 0 auto 12px;
}

.section-konnatoki-mainSub {
    background-color: #fdf2f2;
}

.section-konnatoki-mainSub-shuushin {
    background-color: #eff2e9;
}

.section-konnatoki-mainSub-gan {
    background-color: #ffece8;
}

.section-konnatoki-mainSub {
    background-color: #fdf2f2;
}

.section-konnatoki-mainSub-shuushin {
    background-color: #eff2e9;
}

.section-konnatoki-mainSub-kobai {
    background-color: #ebf1ff;
}

.st-main-section-kodomo-soudanshitsu {
    background-color: #fffcdb;
    padding: 16px 0;
    margin-top: 24px;
}

.section-kodomo-soudanshitsu-title {
    padding-top: 10px;
    padding-bottom: 24px;
    display: flex;
    justify-content: center;
}

.section-kodomo-soudanshitsu-title img {
    max-width: 75%;
    height: auto;
}

.section-kodomo-soudanshitsu-content {
    padding: 0 12px;
}

.section-kodomo-soudanshitsu-main-top {
    font-weight: 700;
    padding-bottom: 16px;
}

.section-kodomo-soudanshitsu-sub-title {
    text-align: center;
    border-radius: 5vw;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-kodomo-soudanshitsu-box {
    padding-bottom: 24px;
}

.section-kodomo-soudanshitsu-sub-main {
    padding: 0 12px;
}

.section-kodomo-soudanshitsu-sub-main-box-white,
.section-kodomo-soudanshitsu-sub-main-box-white-kodomoOrange {
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 8px;
    background-color: #fff;
    padding: 10px;
}

.section-kodomo-soudanshitsu-sub-main-box-white {
    border: 1px solid #b9b9b9;
}

.section-kodomo-soudanshitsu-sub-main-box-white-kodomoOrange {
    border: 1px solid #de650f;
}

.section-kodomo-soudanshitsu-sub-main-box-white-text {
}

.btm {
    margin-bottom: 0;
}

/*------------------選択中の保障内容------------------*/
.sentaku-h1 {
    color: #009944;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.sentaku-title {
    padding: 16px 12px;
    border-radius: 4px;
    background-color: #fffbef;
    border: 1px solid #ebebeb;
    display: flex;
    justify-content: space-between;
}

.sentaku-title-text {
    width: 90%;
}

.sentaku-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 12px 16px 24px;
    border-bottom: 1px solid #ebebeb;
}

.sentaku-item.last,
.sentaku-item.lastPc {
    border-bottom: none;
}

.sentaku-item-long {
    width: 70%;
}

.long-margin {
    display: block;
    margin-bottom: 10px;
}

.sentaku-item.last.br {
    line-height: 2;
}

.flex-end {
    justify-content: flex-end;
}
.sentaku-item.flex-end div {
    text-align: right;
}

.title-help {
    cursor: pointer;
}
.title-help:hover {
    opacity: 0.8;
}

/* ここまで */

/*---------next---------*/
.nextBtn, .nextBtn-shindan {
    display: block;
    background-color: #E93D0C;
    border-radius: 10vw;
    color: #fff;
    font-weight: 700;
    padding: 16px 0;
    width: 85%;
    text-align: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    position: relative;
}

.nextBtn {
    margin-bottom: 24px;
}

.nextBtn img, .nextBtn-shindan img{
    position: absolute;
    right: 16px;
    transform: rotate(270deg);
    width: 18px;
    height: 18px;
}

/*---------close---------*/
.closeArea {
    margin: 0 auto;
    padding: 48px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.closeAreaBtn,.closeAreaBtn_1,.closeAreaBtn_2 {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px 0;
    width: 40%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    transition: box-shadow .12s ease, transform .12s ease;
}

.closeAreaBtn:hover,.closeAreaBtn_1:hover,.closeAreaBtn_2:hover {
    opacity: 0.8;
}

.closeAreaBtn:active,.closeAreaBtn_1:active,.closeAreaBtn_2:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.closeAreaBtn img {
    padding-bottom: 1px;
}

@media (min-width: 468px) {
    .sp-br
}

@media (min-width: 468px) {
    .section-kodomo-soudanshitsu-title img {
        max-width: 300px;
        height: auto;
    }

    .kodomo-title br {
        display: none;
    }

    .arrow img {
        height: 8.5vh;
    }
}

@media (min-width: 608px) {
    .arrow img {
        height: 5.5vh;
    }
}

@media (min-width: 700px) {
    .syoujyou_sp{
        display: none;
    }

    .syoujyou_pc{
        display: block;
    }
}

/*---------PC---------*/
@media (min-width: 768px) {
    html, body {
        font-size: 18px;
    }
  
    body {
        line-height: 1.6;
    }

    .modal {
        width: 700px;
    }

    .modal-body {
        width: 100%;
    }

    .modal-content {
        margin: 0;
        width: 700px;
    }

    .modalClose {
        font-size: 18px;
        width: 100px;
        height: 46px;
       /* padding: 12px 35px;*/
    }

    .modal-body {
        padding: 0 30px;
    }

    /*---------back--------*/
    .backBtn p {
        font-size: 16px;
        line-height: 16px;
    }

    /*---------error--------*/
    .error {
        margin-bottom: 24px;
    }

    .error-textArea {
        width: 97%;
    }

    .error-text {
        font-size: 16px;
    }

    /*------------------商品の特長------------------*/
    .st-title-logo img {
        width: 180px;
    }

    /*---------section01~03---------*/
    .section01-title,
    .section02-title,
    .section03-title,
    .section-konnatoki-title,
    .section-konnatoki-title-kobai{
        padding: 4px 0;
        max-width: 600px;
    }

    .section02-title-kobai, .section03-title-kobai {
        padding: 4px 0;
        width: 100%;
    }

    .sinia-pc-width100 {
        padding: 4px 0;
        max-width: 100%;
    }

    .section02-title-manki {
        padding: 4px 0;
        width: 100%;
    }

    .section02-titleLine-gan {
        margin-top: 48px;
    }

    .scroll-hidden01 {
        overflow-x: auto;
    }

    .section01-scroll-img,
    .section02-scroll-img {
        white-space: nowrap;
        overflow-x: auto;
        width: 100%;
    }

    .section01-priceArea,
    .section02-priceArea {
        width: 65%;
    }

    .section01-priceTitle,
    .section02-priceTitle {
        border-radius: 4px;
    }

    .section01-priceInner,
    .section02-priceInner {
        font-size: 16px;
        margin: 0 auto 8px;
        padding: 24px 0;
    }

    .section01-num,
    .section02-num {
        font-size: 40px;
    }

    .section01-price,
    .section02-price {
        padding: 0 0 8px 0;
    }

    .section01-priceText,
    .section02-priceText {
        text-align: center;
    }

    .section02-priceArea-gan, .gan-pc-width70, .gan-pc-source-width {
        width: 70%;
    }

    .section01-source,
    .section02-source {
        width: 65%;
        padding-bottom: 24px;
    }

    .section01-scroll-img img {
        max-width: 640px;
    }

    .section01-note img,
    .note img {
        margin: 7px 4px 0 0;
    }

    .note-kodomomanki img,
    .note-border img {
        margin: 7px 4px 0 0;
    }

    .section02-source-iryou, .section01-source-iryou {
        width: 85%;
    }

    .section01-tableBtm-Text {
        font-size: 16px;
    }

    .price02 {
        padding: 0;
    }

    .arrow img {
        height: 46px;
    }

    .kodomo-title-flame {
        justify-content: flex-start;
    }

    .section03-content,
    .section-konnatoki-content {
        max-width: 590px;
        margin: 8px auto  0;
    }

    .section03-flex {
        display: block;
    }

    .section03-flex ul {
        display: flex;
        justify-content: center;
        font-size: 16px;
    }

    .section03-flex-on {
        width: 100%;
        border-radius: 4px;
        margin: 0 12px 24px 0;
        padding: 10px 4px;
        max-width: 130px;
    }

    .section03-flex-none {
        line-height: 45px;
    }

    .section03-sp {
        display: block;
    }

    .section03-sp img {
        display: block;
        margin: 0 auto;
        width: 480px;
    }

    .circle {
        display: flex;
        justify-content: center;
    }

    .section03-flex-circle {
        width: 130px;
        height: 130px;
    }

    .circle01 {
        margin-right: 1.0vw;
    }

    .section03-flex-circle span {
        width: 130px;
    }

    .section03-flex-ex {
        width: 75%;
        margin: 24px auto 0;
        font-size: 16px;
    }

    .section03-flex-exTitle {
        padding-right: 8px;
    }

    .section-konnatoki-main-price-shougai,
    .section-konnatoki-main-price-shougai-si {
        width: 70%;
    }

    .section-konnatoki-main-age-siniaIryou,
    .section-konnatoki-main-age-siniaIryou-si {
        width: 55%;
    }

    .section01-source-siniaIryou {
        width: 55%;
        margin: 0 auto;
    }

    .section-konnatoki-main-shougai {
        width: 60%;
    }

    .td-gan-top, .td-sinia-top {
        height: 54px;
    }

    .td-gan-top02  {
        height: 78px;
    }

    .td-sinia-top02 {
        height: 83px;
    }

    .td-01 {
        height: 80px;
    }

    .td-02 {
        height: 64px;
    }

    .td-03 {
        height: 146px;
    }

    .td-04 {
        height: 88px;
    }

    .td-05 {
        height: 56px;
    }

    .td-01-gan {
        height: 73px;
    }

    .td-gan-btm, .td-sinia-btm {
        height: 51px;
    }

    .td-right-gan, .td-siniaIryou03, .td-siniaIryou04 {
        height: 117px;
    }

    .td-05-iryou {
        height: 144px;
    }

    .td-05-iryou01 {
        height: 80px;
    }

    .td-05-iryou02 {
        height: 64px;
    }

    .gan-pc-width, .shougai-pc-width {
        max-width: 100%;
    }

    .gan-pc-content-width, .shougai-pc-content-width, .sinia-pc-width98 {
        max-width: 98%;
    }

    .kodomo-title {
        width: 98%;
    }

    .br-none {
        display: none;
    }

    .btm-pc {
        margin-bottom: 0;
    }

    .syoujyou_sp{
        display: block;
    }

    .syoujyou_pc{
        display: none;
    }

    /*------------------選択中の保障内容------------------*/
    .sentaku-h1 {
        font-size: 22px;
    }

    .sentaku-table {
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        border: none;
    }

    .sentaku-set01,
    .sentaku-set02 {
        flex-basis: 50%;
    }

    .sentaku-set01 {
        margin-right: 24px;
    }

    .sentaku-item.lastPc {
        border-bottom: 1px solid #ebebeb;
    }
    /* ここまで */

    /*------------------トップサブ画面------------------*/

    .birth-month, .birth-day {
        width: 48%;
    }

    #birth_y, #birth_m, #birth_d, .com_input {
        padding: 24px;
        font-size: 18px;
    }

    .radio {
        border-radius: 6px;
        padding: 16px;
        font-size: 18px;
    }

    .radio span.radioMark {
        width: 18px;
        height: 18px;
    }

    .hoshokaishi, .top-note {
        font-size: 16px;
    }

    .top-note {
        max-width: 600px;
    }

    /*------------------かんたん保障診断TOP------------------*/
    .dateArea-shindan {
        margin: 0 auto;
        padding: 24px 16px 0;
    }

    /*---------next---------*/
    .modal-body .nextBtn {
        padding: 16px 12px;
        font-size: 20px;
    }

    /*---------close---------*/
    .closeArea {
        padding: 64px 0;
    }

    .closeAreaBtn img {
        width: 18px;
        padding-bottom: 2px;
    }

}

@media(min-width: 900px) {
    .scroll-hidden02 {
        overflow-x: auto;
    }

    .modal-pc02 {
        width: 100%;
    }
}

@media(min-width: 960px) {
    .modal {
        overflow-x: hidden;
    }
    .scroll-hidden03 {
        overflow-x: auto;
    }

    .modal-pc01 {
        width: 100%;
    }
}

/*---------SP---------*/
@media screen and (min-width: 768px) {
    .totalArea{
        display: none;
    }
    .footArea{
        margin-bottom: 0;
    }
}

/* ドロワー */
/* ドロワーのオーバーレイ */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.drawer-overlay.is-visible {
    opacity: 0.8;
    visibility: visible;
}

#drawerOverlay.drawer-overlay {
    opacity: 1;
    transition: visibility 0s linear 0.4s;
    visibility: hidden;
    background: transparent;
}
#drawerOverlay.drawer-overlay:before {
    content: "";
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: opacity 0.3s ease;
}
#drawerOverlay.drawer-overlay.is-visible {
    visibility: visible;
    background: transparent;
    transition: visibility 0s linear 0s;
}
#drawerOverlay.drawer-overlay.is-visible:before {
    opacity: 0.8;
}

/* ドロワー本体 */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 94%;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 1101;
    transition: transform 0.4s ease-in-out, visibility 0.4s;
    transform: translateX(100%);
    visibility: hidden;
}

.drawer {
    flex: 1;
    border: none;
}
.drawer.is-active {
  transform: translateX(0);
  visibility: visible;
}
.drawer.overview {
    z-index: 1300;
}

.drawer-header {
    position:sticky;
    top: 0;
    z-index: 1;
    background: #fff;
    border: none;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}
.close-drawer,
.back-drawer {
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
    width: 84px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-drawer:hover,
.back-drawer:hover {
    opacity: 0.8;
}

body.no-scroll, body.no-scroll-modal {
    overflow: hidden;
    width: 100%;
}

iframe {
    height: 100%;
}

/*---------PC---------*/
@media (min-width: 768px) {
    body {
        font-size: 18px;
        line-height: 1.6;
    }

    .headLogo img {
        max-height: 45px;
        width: 231px;
    }

    .headLogo2 img {
        max-height: 55px;
        width: 200px;
    }
    .contactBtn {
        font-size: 18px;
        width: 140px;
        height: 46px;
    }

    .quotationLink, .diagnosisLink {
        height: 70px;
        font-size: 20px;
        border-radius: 5vw;
    }

    .modal.sizeShort {
        max-width: 800px;
    }

    .pageTitle{
        font-size: 22px;
    }

    .customerDetails, .insurancePeriod {
        font-size: 18px;
    }

    .priceCard {
        width: 30%;
    }

    .priceAmount {
        font-size: 16px;
    }

    .addFamily {
        width: 30%;
        padding: 10px;
        line-height: 1.3;
    }

    .addFamily::before {
        width: 50px;
        height: 30px;
    }

    .editBtn {
        width: 40%;
        font-size: 18px;
        padding: 18px 0;
    }

    .select-area, .select-area.isSelected, .recommend p {
        font-size: 16px;
    }

    .select-area {
        top: -15px;
        left: 10px;
    }

    .select-area-course {
        font-size: 14px;
        min-width: 58px;
        top: -23px;
        left: -13px;
    }

    .accordionActive {
        margin-bottom: 32px;
    }

    .diagnosissectionArea {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 16px 18px;
    }

    .diagnosisArea {
        min-width: 300px;
    }

    .diagnosisTitle {
        font-size: 29px;
    }

    .diagnosisGuidance {
        margin:0;
        padding: 7px 12px;
        font-size: 14px;
    }

    .recommend {
        padding: 0 60px;
    }

    .insuranceHeader {
        justify-content: flex-start;
    }

    .insuranceTitle {
        width: auto;
        margin: 0 12px;
    }

    .insuranceTitle p {
        text-align: left;
        color: #B9B9B9;
    }

    .insuranceTitle.isSelected p {
        text-align: left;
        color: #333;
    }

    .content {
        border-bottom: none;
    }


    .priceDetails.inselect {
        justify-content: space-between;
    }

    .selectResult {
        display: flex;
        justify-content: right;
        align-items: baseline;
    }

    .coverageTitle {
        text-align: left;
    }

    .specialAgreementArea {
        justify-content: left;
    }

    .coverageNote .specialAgreement {
        margin-left: 44px;
    }

    .coverageNote {
       text-align: left;
    }
    .coveragesectionArea {
       align-items: flex-start;
    }

    .announcementItem {
        padding: 16px;
    }

    .announcementItem p {
        font-size: 16px;
    }

    br.br_pc {
        display: none;
    }
    br.br_syougai {
        display: block;
    }

    .rightflexArea {
        width: 30%;
        display: block;
        position: sticky;
        right: 0;
        top: 10px;
    }


    .annotation {
        justify-content: flex-start;
    }

    .benefitGroup:last-of-type {
        border-bottom: 1px solid #f0f0f0;
    }

    .benefitGroup.kodomomanki {
        display: flex;
        justify-content: space-between;
        width: 100%;
        border-top: 2px solid #EBEBEB;
    }

    .kodomomanki-set01 {
        width: 40%;
        height: auto;
        display:flex;
        justify-content: center;
        align-items: center;
        border-right: 1px solid #EBEBEB;
        background-color: #FFFBEF;
    }

    .kodomomanki-set01.benefitHeader {
        height: auto;
    }

    .benefitHeader.kodomomanki {
        padding: 0;
        border: none;
        background-color: #FFFBEF;
    }

    .kodomomanki-set02 {
        width: 60%;
    }

    .benefitItem.kodomomanki {
        border: none;
    }

    .benefitItem.kodomomanki.border-pc {
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

   .flexArea {
       display: flex;
       justify-content: space-between;
       gap: 12px;
       align-items: flex-start
   }

   .leftflexArea {
       width: 68%;
   }

   .personDetails {
       padding: 6px 12px;
       border-radius: 4px;
       border: 2px solid #999;
       background: #FFF;
       cursor: pointer;
       gap: 2px;
       margin-bottom: 10px;
   }
   .personDetails.current-tab {
       cursor: default;
   }

   .personTitle {
       padding: 12px 0;
       border-bottom: 1px solid #EBEBEB;
       gap: 2px;
   }

   .insuranceTitle {
       padding: 12px 0;
       border-bottom: 1px solid #EBEBEB;
       gap: 2px;
   }

   .insuranceTitle p {
       font-size: 18px;
   }

    .insuranceTitle span {
        font-size: 22px;
    }

   .priceDetails2 {
       margin: 24px 0;
   }

   .number,.age,.monthlyFee2,.feeAmount2 {
       font-size: 18px;
       font-style: normal;
       font-weight: 700;
   }

   .feeAmount3 {
       font-size: 32px;
       font-weight: 700;
       margin: 0 auto;
   }

   .selectResult3 {
       display: flex;
   }
   .selectResult2 {
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .button-area2 {
       display: flex;
       justify-content: center;
       align-items: center;
   }

    .arrow_tokuchou {
        height: 16px;
    }

    .button-sentaku2 {
        background: #fff;
        color: #0A7E2E;
        font-size: 16px;
        font-weight: 700;
        margin-top: 24px;
        height: auto;
        text-decoration: underline;
        display: flex;
        align-items: center;
        gap: 2px;
        justify-content: space-between;
        transition: box-shadow .12s ease, transform .12s ease;
    }

    .button-sentaku2:after {
        content: '';
        background-image: url("../images/Vector.svg");
        background-repeat: no-repeat;
        background-size: contain;
        min-width: 15px;
        min-height: 15px;
        display: block;
        transition: transform 0.3s ease;
    }
    .button-moushikomi:hover, .button-sentaku2:hover {
        opacity: 0.8;
    }

    .button-moushikomi:active,  .button-sentaku2:active {
        transform: translateY(1px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    }

    .button-moushikomi {
        color: #FFFFFF;
        font-weight: 700;
        font-size: 18px;
        display: flex;
        width: 100%;
        padding: 14px 21px 14px 8px;
        justify-content: center;
        align-items: center;
        border-radius: 99px;
        background: #E93D0C;
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.25);
        margin-top: 20px;
        gap: 20px;
        position: relative;
        transition: box-shadow .12s ease, transform .12s ease;
    }

    .button-moushikomi:after {
        content: '';
        background-image: url("../images/icon/open_close.png");
        background-repeat: no-repeat;
        background-size: contain;
        width: 18px;
        height: 18px;
        display: block;
        transition: transform 0.3s ease;
        position: absolute;
        right: 16px;
        transform: rotate(270deg);
    }

   .personTitle p {
       font-size: 16px;
       font-style: normal;
       font-weight: 700;
   }

   .insuranceTitle p {
       font-size: 18px;
       font-style: normal;
       font-weight: 700;
   }


   .secondPerson {
       border-radius: 4px;
       border: 2px solid #094;
       background: #FFF;
   }

   .toatalmonthlyPayment {
       padding: 6px 12px;
       border-radius: 4px;
       border: 2px solid #DE505B;
       background: #FFF;
   }

   .button-sentaku {
        width: 80%;
        margin: auto;
   }
   .button-sentaku, .button-sentaku2, .button {
    font-size: 18px;
   }
   .button {
        width: 136px;
        height: 40px;
   }
   .insuranceType {
        height: 40px;
        margin-left: 16px;
   }
   .insuranceHeader {
        padding: 16px 24px;
   }

   .accordionFooter {
        padding: 16px;
   }
   .detailsBtn {
        font-size: 18px;
        max-width: 180px;
        padding: 0 8px;
        height: 40px;
   }
   .closeDetails {
        font-size: 18px;
        padding: 6px 0;
   }
    .detailsBtn:after, .closeDetails:after {
        width: 17px;
        height: 17px;
   }

   .nextBtnArea {
        width: 80%;
   }
    .diagnosisBtn, .quotationBtn {
        width: 80%;
    }

   .button-omitsumori, .button-hozon {
        font-size: 20px;
       height: 70px;
   }

}

/* サブ画面_プロフィール入力 */
/** 生年月日のポップアップ **/
#popup_select_block {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    /* _position: absolute;
    _top:expression(eval(document.body.scrollTop)); */
    opacity: 1.0;
    z-index: 1100;
    background-color: #ffffff;
    background-color: rgba(80, 80, 80, 0.7);
}
#popup_select_block > div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 1.0;
    border-radius: 12px;
    z-index: 1001;
    display: block;
    width: fit-content;
    height: fit-content;
    width: 95%;
}
#popup_select_block .popup_selectbox {
    border: solid 2px #39a75b;
    border-radius: 7px;
    background-color: #ffffff;
    padding: 1em;
    overflow: auto;
    margin: 0 auto;
}
#popup_select_block #popup_select_month {
    max-width: 520px;
}
#popup_select_block #popup_select_day {
    max-width: 520px;
}
#popup_select_block .popup_selectbox .section-head {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
}
#popup_select_block .popup_selectbox .section-body {
    display: grid;
    column-gap: 0.8em;
    row-gap: 0.8em;
    justify-content: center;
}
#popup_select_block #popup_select_month .section-body {
    grid-template-columns:80px 80px 80px;
    column-gap: 1.3em;
    row-gap: 1.3em;
}
#popup_select_block #popup_select_month .section-head,
#popup_select_block #popup_select_month .section-body,
#popup_select_block #popup_select_month .section-foot {
    min-width: 200px;
}
#popup_select_block #popup_select_day .section-body {
    grid-template-columns:80px 80px 80px 80px 80px;
}
#popup_select_block #popup_select_day .section-head,
#popup_select_block #popup_select_day .section-body,
#popup_select_block #popup_select_day .section-foot {
    min-width: 320px;
}
#popup_select_block .popup_selectbox div span {
    color: #4d4949;
    background-color: #ffffff;
    border: solid 1px #818181;
    text-align: center;
    text-wrap: nowrap;
    cursor: pointer;
    justify-self: center;
}
#popup_select_block .popup_selectbox div span.sel {
    color: #ffffff;
    background-color: #39a75b;
    border: solid 1px #818181;
}
#popup_select_block .popup_selectbox div span:hover {
    background-color: #f0fade;
    border: solid 1px #4d4949;
}
#popup_select_block .popup_selectbox div span.sel:hover {
    color: #ffffff;
    background-color: #39a75b;
    border: solid 1px #4d4949;
}
#popup_select_block .popup_selectbox .section-body span {
    width: 80px;
    padding: 0.6em 0;
    border-radius: 7px;
    font-size: 18px;
    font-weight: bold;
}
#popup_select_block .popup_selectbox .section-foot {
    margin: 2.5em 0 2em 0;
    padding: 0;
    text-align: center;
}
#popup_select_block .popup_selectbox .section-foot span {
    padding: 0.5em 0;
    border-radius: 18px;
    display: inline-block;
    max-width: 180px;
    width: 100%;
}

@media screen and (max-width: 767px) {
  #popup_select_block #popup_select_day .section-head,
  #popup_select_block #popup_select_day .section-body,
  #popup_select_block #popup_select_day .section-foot {
    min-width: auto;
  }
  #popup_select_block #popup_select_day .section-body {
    grid-template-columns:16% 16% 16% 16% 16%;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-body span {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #popup_select_block #popup_select_day.popup_selectbox {
    padding: 0.6em;
  }
  #popup_select_block #popup_select_day .section-body {
    grid-template-columns:16% 16% 16% 16% 16%;
    column-gap: 0.6em;
    row-gap: 0.6em;
    overflow-y: auto;
    max-height: 450px;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-body span {
    width: 100%;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-body span {
    padding: 0.5em 0;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-head {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-foot {
    margin: 1.5em 0 1.0em 0;
  }
}

@media screen and (max-width: 349px) {
  #popup_select_block .popup_selectbox {
    padding: 0.5em;
  }
  #popup_select_block .popup_selectbox .section-body {
    column-gap: 0.4em;
    row-gap: 0.4em;
  }
  #popup_select_block #popup_select_month .section-body {
    grid-template-columns:80px 80px;
    column-gap: 0.4em;
    row-gap: 0.4em;
  }
  #popup_select_block #popup_select_day .section-body {
    grid-template-columns:20% 20% 20% 20%;
    column-gap: 0.4em;
    row-gap: 0.4em;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-body span {
    width: 100%;
  }
}

@media screen and (max-width: 200px) {
  #popup_select_block #popup_select_month .section-body {
    grid-template-columns:80px;
    overflow-y: auto;
    max-height: 360px;
  }
  #popup_select_block #popup_select_day .section-body {
    grid-template-columns:50px 50px;
  }
  #popup_select_block #popup_select_month .section-head,
  #popup_select_block #popup_select_month .section-body,
  #popup_select_block #popup_select_month .section-foot {
    min-width: 98%;
  }
  #popup_select_block #popup_select_day .section-head,
  #popup_select_block #popup_select_day .section-body,
  #popup_select_block #popup_select_day .section-foot {
    min-width: 98%;
  }
}
/** 生年月日のポップアップ **/
.text-center {
  text-align: center;
}

/* ドロワーサブ画面 */
.s-drawer_contents .s-drawer_title .s-drawer_description {
    border-bottom: 1px solid #B3B3B3;
}

.s-drawer_contents {
    margin: 0 auto;
    padding: 24px 12px 0;
}

.s-drawer_title{
    margin-bottom: 32px;
}

.s-drawer_title h1{
    font-size: 20px;
    border-bottom: 1px solid #B3B3B3;
}

.c-section_separator_kokumin {
    position: relative;
    padding-block: 8px;
    padding-left: 16px;
    margin-bottom: 4px;
    font-size: 18px;
}
.c-section_separator_kokumin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--color-green);
}
.c-section_item_text p {
    font-size: 16px;
}
.c-section_item_text p.c-mt-1 {
    margin-top: 1rem;
}
.c-input_text.c-mt-2 {
    margin-top: 2rem;
}

.t-section_title.bordered {
    border-left: 5px solid #009944;
    padding-left: 8px;
}
.t-section_info{
    margin: 16px 0;
}

.t-section_info li{
    position: relative;
    font-size: 14px;
    margin-left: 8px;
}

.t-section_info li:before{
    content: '\30FB';
    left: -12px;
    position: absolute;
}

.t-section_content {
    text-indent: 1em;
}

.t-section_info_p {
    margin:32px auto 12px;
    font-weight: 700;
}

.t-section-info-add {
    color: #009944;
    font-weight: 700;
    margin: 32px auto 4px;
}

.t-section-info-caution {
    font-size: 14px;
    margin: 12px auto;
}

.t-section-info-caution02 {
    font-size: 14px;
    margin: 12px auto 16px;
}

.t-section-info-gray {
    padding: 16px;
    background-color: #E6E7E9;
    margin-bottom: 24px;
}

.announcementItem_img {
    height: 24px;
}

.gray_img {
    margin: 0 4px 2px 0;
    height: 20px;
}

.gray-title {
    padding-top: 16px;
    border-top: 1px solid #333;
}


