/* #darkbox調整
----------------------------------------- */
#darkbox {
    background-size: min(90%, 944px) auto !important;
}
#darkbox_stats {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}
#darkbox_close {
    width: 20px;
    height: 20px;
    /* top: calc(465px - 20vw);
    right: max(16%, 260px); */
}
#darkbox_close:after {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    content: "";
    background-image: url(../img/iconClose.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
#darkbox_prev, #darkbox_next {
    width: 25px;
    height: auto;
    aspect-ratio: 25/52;
    background-color: #FFF;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    border-radius: 0;
    overflow: visible;
}
#darkbox_prev {
    transform: rotate(180deg);
}
#darkbox_prev::after, #darkbox_next::after {
    display: none;
}
@media screen and (max-width: 767px) {
    #darkbox {
        background-size: 335px auto !important;
    }
    #darkbox_stats {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -150px);
    }
    #darkbox_prev, #darkbox_next {
        top: 470px;
    }
    #darkbox_prev {
        left: 50%;
        transform: translateX(-166px) rotate(180deg);
    }
    #darkbox_next {
        left: 50%;
        transform: translateX(144px);
    }
}


/* page
----------------------------------------- */
#pageContents {
    position: relative;
    z-index: 1;
    font-family: 'Noto Sans JP', sans-serif;
}

#pageContents img {
    display: block;
}

/* -------------------ページ内汎用クラス--------------------------- */
#pageContents .mbSSS {
    margin-bottom: 10px !important;
}

#pageContents .mbSS {
    margin-bottom: 15px !important;
}

#pageContents .mbS {
    margin-bottom: 40px !important;
}

#pageContents .mbM {
    margin-bottom: 60px !important;
}

#pageContents .mbL {
    margin-bottom: 80px !important;
}

#pageContents .mbLL {
    margin-bottom: 130px !important;
}

#pageContents .spBr {
    display: none;
}

.headTxt {
    display: flex;
    justify-content: center;
}

.headTxt--small {
    font-size: 0.9em;
}

.headTxt--left {
    justify-content: flex-start;
}

.headTxt--blue {
    color: #0046AD;
}

.headTxt--lineH1 {
    line-height: 1;
}

.boderBox {
    border: solid 1px #0046AD;
    padding: 0.5em 0.8em;
}

.emTxt {
    padding: 0.1em 0.5em;
}

.emTxt--yellow {
    background-color: #FFF500;
}

.emTxt--black {
    background-color: #000;
    color: #fff;
}

.emTxt--red {
    background-color: #E90039;
    color: #fff;
}

.emTxt--strong {
    font-size: 1.64em;
    border-bottom: solid 0.1em #000 ;
    font-weight: 600;
    padding: 0;
}

.emTxt--strongL {
    font-size: 2.8em;
    font-weight: 600;
    padding: 0;
}

.emTxt--blue {
    background-color: #1132FF;
    color: #fff;
    margin: 0 0.5em 0.25em 0;
    padding: 0;
    display: inline-block;
    font-size: 32px;
}

.emTxt--blue02 {
    line-height: 1.2;
    padding: 0;
    background-color: #1132FF;
    color: #fff;
    display: inline-block;
    font-size: 1.5em;
}

.emTxt--boder {
    display: inline-block;
    border: solid 1px;
    margin: 0 0 0 1em;
}

.hvOpacty:hover {
    opacity: 0.8;
}

@media (max-width:768px) {
    #pageContents .mbSSS {
        margin-bottom: 5px !important;
    }
    
    #pageContents .mbSS {
        margin-bottom: 10px !important;
    }
    
    #pageContents .mbS {
        margin-bottom: 20px !important;
    }
    
    #pageContents .mbM {
        margin-bottom: 30px !important;
    }
    
    #pageContents .mbL {
        margin-bottom: 40px !important;
    }
    
    #pageContents .mbLL {
        margin-bottom: 65px !important;
    }

    .boderBox {
        padding: 20px 10px;
    }

    .emTxt--strongL {
        font-size: 2.1em;
        padding: 0;
    }

    .emTxt--blue {
        font-size: min(4.8vw, 18px);
    }
    .headTxt {
        text-align: left;
    }
}
/* -------------------ここまでページ内汎用クラス--------------------------- */


/* --------------telModal-------------------- */
.telModal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.8);
}

.telModal__innner {
    width: 70%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: 50px 45px;
    font-size: 20px;
    text-align: center;
}

.telModal__link {
    line-height: 1;
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0.05em;
}

.telModal__link a {
    text-decoration: none;
    color: #0046AD;
}

.telModal__innner h4 {
    font-weight: 700;
    font-size: 20px;
    color: #0046AD;
}

.telModal__closeBtn {
    height: 20px;
    width: 20px;
    font-size: 3em;
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    cursor: pointer;
    background-image: url(../img/iconClose.svg);
    background-size: contain;
    background-position: 0 0 ;
    background-repeat: no-repeat;
}

.telModal__closeBtn:hover {
    color: #0bf;
}

@media (max-width:768px) {
    .telModal__innner h4 {
        font-size: 20px;
    }

    .telModal__link {
        font-size: 38px;
    }

    .telModal__innner {
        width: 90%;
        padding: 60px 20px 50px;
        font-size: 14px;
    }
    .telModal__closeBtn {
        top: 20px;
        right: 20px;
    }
}
/* --------------telModal-------------------- */



.fixedBlock {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(270deg, #0087FF 0%, #1132FF 85%, #0046AD 100%);
    z-index: 1000;
}

.fixedBlock__inner {
    display: flex;
    column-gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 72px;
}

.fixedBlock__inner > div {
    width: calc(50% - 15px);
}

.linkBtn {
    background: #fff;
    border-radius: 6px;
    box-shadow: 5px 5px 0px #0046AD;
    font-size:min(1.87vw, 28px);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    position: relative;
    width: fit-content;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkBtn--center {
    margin: 0 auto;
    font-size:min(3.2vw, 48px);
    font-weight: 600;
    width: 100%;
    height: 125px;
}

/* .linkBtn::after {
    content: "";
    background: url("../img/icon06.svg");
    background-size: contain;
    width: 0.85em;
    height: 0.85em;
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
} */

.linkBtn::before {
    content: "";
    background-size: contain;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
}

.linkBtn--tel::before {
    background-image: url("../img/icon07.svg");
}

.linkBtn--form::before {
    background-image: url("../img/icon08.svg");
}

.linkBtn a {
    display: block;
    padding: 0 1.5em;
    padding-left: 40px;
    color: #0046AD;
    text-decoration: none;
}

/* .linkBtn--tel a{
    padding-left: 90px;
} */

#pageContents .section {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.section p {
    margin-bottom: 0;
}

#pageContents .section.section--mv {
    padding-top: 40px;
    padding-bottom: 115px;
}

.section--mv::after {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../img/bg_mv_pc.png");
    background-size: cover;
    z-index: -1;
}

#pageContents .section.section--bgNavy {
    padding-top: 80px;
    padding-bottom: 80px;
}

#pageContents .section.section--bgNavy::after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #1132FF;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
#pageContents .section.section--bgNavy.section--arrow::before {
    content: '';
    width: 120px;
    height: 55px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background-color: #1132FF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
}

#pageContents .section.section--bgLightblue {
    padding-top: 80px;
    padding-bottom: 80px;
}

#pageContents .section.section--bgLightblue > .section--bgLightblue__text {
    margin-bottom: 40px;
    color: #fff;
    font-size: 40px;
    color: #0046AD;
    font-weight: 600;
}

#pageContents .section.section--bgLightblue::after {
    content: "";
    width: 100vw;
    height: 100%;
    background: linear-gradient(90deg,rgba(229, 236, 247, 1) 0%, rgba(229, 243, 255, 1) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

#pageContents .section.section--bgGray {
    padding-top: 80px;
    padding-bottom: 130px;
}

#pageContents .section.section--bgGray::after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #F2F2F2;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

#pageContents .section.section--bgblue {
    padding-top: 110px;
    padding-bottom: 130px;
}

#pageContents .section.section--bgblue::after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #4D7EC6;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

#pageContents .section.section--bgblue::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 107.5px 0 107.5px;
    border-color: #4D7EC6 transparent transparent transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 99%);
}

.section .sectionInner {
    padding: 0 52px;
}

#pageContents h2 {
    text-align: center;
    font-size: 50px;
    position: relative;
    margin: 0 auto 45px;
    font-weight: 800;
}

#pageContents h2::before {
    content: "";
    width: 1.52em;
    height: 1.4em;
    background-image: url("../img/icon03.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 14px;
}
#pageContents .section.section--bgNavy h2::before {
    background-image: url("../img/icon10.png");
}
#pageContents .section.section--bgNavy h2 {
    color: #fff;
}
#pageContents .section.section--bgGray h2,
#pageContents .section.section--contact h2 {
    color: #0046AD;
}
#pageContents .section .WhiteBlock h2 {
    color: #0046AD;
}
#pageContents .section .WhiteBlock h2::before {
    background-image: url("../img/icon03.png");
}

/* .cautionBlock {
    width: 100%;
    padding: 70px 40px 50px;
    background-color: #FFB100;
    border-radius: 16px;
} */

.cautionBlock__caveatTxt {
    font-weight: 600;
    color: #0046AD;
}

.cautionBlock__txt {
    color: #fff;
}

.col2Block {
    display: flex;
    column-gap: 50px;
    margin: 0 auto;
}

.col2Block img{
    object-fit: contain;
    max-width: 110px;
    margin: 0 auto 10px;
}

.col2Block li {
    width: calc(50% - 8px);
    background-color: #fff;
    padding: 10px 40px;
    font-size: 40px;
}

.col2Block--item {
    column-gap: 56px;
    margin-bottom: 0;
}

.col2Block--item li {
    width: calc(50% - 28px);
    padding: 20px;
    border: none;
    border-radius: 0;
    background-color: #F2F2F2;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.col2Block--item li:hover {
    opacity: 0.8;
}

.col2Block--item li:first-child::before,
.col2Block--item li:last-child::before {
    content:"";
    width: 106px;
    height: auto;
    aspect-ratio: 106/42;
    position: absolute;
    top: 14px;
    right: 16px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.col2Block--item li:first-child::before {
    background-image: url("../img/icon04.png");
}

.col2Block--item li:last-child::before {
    background-image: url("../img/icon05.png");
}

.col2Block--item li img {
    width: 100%;
    max-width: none;
    margin: 0;
}

.col2Block--item li p {
    font-size: 24px;
    background-color: #1132FF;
    color: #fff;
    flex-grow: 1;
    padding: 10px;
    position: relative;
}

.col2Block--item li p::before {
    content: '';
    width: 22px;
    height: 18px;
    background: #1132FF;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: absolute;
    top: -12px;
    left: 22.8%;
}

.col2Block--contact {
    column-gap: normal;
    color: #0046AD;
}

.col2Block--contact > li {
    width: 50%;
    margin: 0;
    border: none;
    background-color: transparent;
    border-radius: 0;
    font-size: 20px;
    text-align: left;
    padding: 0;
}

.col2Block--contact > li:first-child {
    padding-right: 30px;
    border-right: solid 1px #0046AD;
}

.col2Block--contact > li:last-child {
    padding-left: 30px;
}

.col2Block--contact h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.col2Block--sp {
    display: block;
}

.cautionBlock__leading {
    font-size: 28px;
    color: #fff;
}

.paymentBlock {
    background-color: #F2F2F2;
    padding: 45px;
    font-size: 36px;
    text-align: left;
    color: #0046AD;
}

.paymentBlock img {
    min-width: 110px;
}

.itemInformationBlock > li {
    border: solid 1px #1132FF;
    background-color: #fff;
    padding: 0 60px 50px;
    /* box-shadow: 0 0 30px rgba(17, 52, 125, 0.3); */
    margin: 85px 0;
}
.itemInformationBlock > li:first-of-type {
    margin-top: 40px;
}
.itemInformationBlock > li:last-of-type {
    margin-bottom: 0;
}

.itemInformationBlock > li h3{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    background-color: #1132FF;
    display: block;
    line-height: 1;
    width: calc(100% + 120px);
    margin-left: -60px;
    padding: 14px 40px;
}
.itemInformationBlock > li h3 span {
    display: inline-block;
    margin-left: 2em;
    font-size: 0.5em;
}

p.itemInformationBlock__labelTxt {
    margin-top: 40px;
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    color: #0046AD;
}

.WhiteBlock {
    background-color: #fff;
    padding: 40px;
}

.col3Block {
    display: flex;
    column-gap: 40px;
}

.col3Block li {
    width: calc((100% - 80px) / 3);
    display: flex;
    flex-direction: column;
}

.col3Block li p {
    background-color: #1132FF;
    padding: 12px;
    color: #fff;
    font-size: 24px;
    flex-grow: 1;
    margin-bottom: 6px;
    position: relative;
}

.col3Block li p::after {
    content: '';
    width: 22px;
    height: 18px;
    background: #1132FF;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.col3Block li p::before {
    content: '';
    width: 24px;
    height: 20px;
    background: #fff;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.col3Block li img {
   width: 100%;
}

.noteBlock {
    padding: 20px;
    background-color: #F2F2F2;
    font-size: 32px;
    color: #0046AD;
    margin: 40px 0 0;
    font-weight: 600;
}

.contactCardBlock {
    background: linear-gradient(90deg,rgba(229, 236, 247, 1) 0%, rgba(229, 243, 255, 1) 100%);
    box-shadow: 5px 5px 0px #0046AD;
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
}

.contactCardBlock__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contactCardBlock a {
    text-decoration: none;
    color: #0046AD;
    display: block;
    padding: 20px 40px;
    text-align: left;
}

.contactCardBlock h3.contactCardBlock__ttl {
    font-size: 28px;
    padding: 0 0 10px 1.14em;
    position: relative;
    margin-bottom: 30px;
    font-weight: 600;
}

.contactCardBlock h3.contactCardBlock__ttl::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, #0087FF 0%, #1132FF 85%, #0046AD 100%);
}

.contactCardBlock h3.contactCardBlock__ttl::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    transform: translateY(-50%);
    display: block;
    background-image: url("../img/icon06.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.42em;
    height: 0.92em;
}

p.contactCardBlock__lead {
    font-size: 20px;
    margin-bottom: 15px;
}

.contactCardBlock__main {
    text-align: left;
    position: relative;
    padding-left: 70px;
    margin-bottom: 15px;
    width: fit-content;
    /* margin: 0 auto; */
}

.contactCardBlock__main::before {
    width: 50px;
    height: 50px;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.contactCardBlock__main--tel::before {

    background-image: url("../img/icon07.svg");
}

.contactCardBlock__main--mail {
    font-size: 28px;
}

.contactCardBlock__main--mail::before {
    background-image: url("../img/icon08.svg");
}

.policyBlock {
    background-color: #FFF6B5;
    padding: 30px;
    color: #0046AD;
    font-weight: 600;
}

.policyBlock p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 24px;
}

.infoBlock {
    background-color: #fff;
    padding: 60px;
    font-size: 24px;
    color: #0046AD;
}

.infoBlock h3.infoBlock__ttl {
    font-size: 40px;
    text-align: center;
    font-weight: 600;
}

.infoBlock__main {
	line-height: 2em;
}

.infoBlock__link {
    padding-left: 1em;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.infoBlock__link a {
    font-size: 18px;
    color: #0046AD !important;
}

.infoBlock__link::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    width: 0.42em;
    height: 0.92em;
    background-image: url("../img/icon06.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.snsLinkBlock {
    width: 307px;
    max-width: 100%;
    margin: 0 auto;
}

.snsLinkBlock__link{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: 20px 50px 20px 50px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #0046AD;
    position: relative;
    border-radius: 6px;
    background: #fff;
    z-index: 0;
    /* border: 1px solid;
    border-image: linear-gradient(300deg, #0087FF 0%, #1132FF 85%, #0046AD 100%);
    border-image-slice: 1;
    border-radius: 6px;
    background-color: #fff; */
}
.snsLinkBlock__link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 1px;
    background: linear-gradient(300deg, #0087FF 0%, #1132FF 85%, #0046AD 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.snsLinkBlock__link::before {
    content: "";
    display: inline-block;
    margin-right: 0.8em;
    width: 12px;
    height: 25px;
    background-image: url(../img/icon06.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
}

.snsLinkBlock__link img {
    width: 30px;
    margin-left: 0.8em;
}

#footnotes {
    margin-bottom: 120px !important;
}

/* ----------------1000px以下-------------------------- */
@media (max-width: 1000px) {
    #pageContents .pcBr {
        display: none;
    }

    .col2Block li {
        font-size: 30px;
    }

    .linkBtn {
        font-size:16px;
        /* height: 80px; */
    }

    .linkBtn::after {
        width: 1em;
        height: 1em;
        position: absolute;
        right: 8px;
        transform: translateY(-50%);
    }

    .linkBtn a {
        padding: 34px 18px 9px;
    }

    .linkBtn--tel::before,
    .linkBtn--form::before {
        width: 20px;
        height: 20px;
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
    }

    .col2Block--contact {
        display: block;
    }
    
    .col2Block--contact > li {
        width: 100%;
        font-size: 16px;
    }
    
    .col2Block--contact > li:first-child {
        padding-right: 0;
        padding-left: 0;
        padding: 0 0 30px;
        border-right: none;
        border-bottom: solid 1px #0046AD;
        margin: 0;
    }
    
    .col2Block--contact > li:last-child {
        padding-left: 0;
        padding-right: 0;
        padding-top: 30px;
    }
    
    .col2Block--contact h4 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 30px;
        text-align: center;
    }

    .col3Block {
        display: block;
        padding: 0 10px;
    }

    .col3Block li {
        width: 100%;
        display: block;
        margin-bottom: 30px;
    }

    .col3Block li:last-child {
        margin-bottom: 0;
    }

    .col3Block li p {
        padding: 10px;
        font-size: 16px;
    }

    .infoBlock__main {
        font-size: 15.8px;
    }
}
/* ----------------ここまで1000px以下-------------------------- */



/* -------------------768px以下----------------------------------- */
@media (max-width: 768px) {
    #pageContents .spBr {
        display: block;
    }

    #pageContents h2 {
        font-size: 22px;
        margin: 0 auto 30px;
    }

    #pageContents h2::before {
        width: 1.8em;
        height: 1.8em;
        margin-right: 10px;
        vertical-align: middle;
    }

    .headTxt--small {
        font-size: 12px;
    }

    .fixedBlock__inner {
        padding: 0;
        column-gap: 15px;
        justify-content: center;
    }

    .fixedBlock__inner > div {
        width: auto;
    }

    #pageContents .section {
        font-size: 14px;
    }

    #pageContents .section.section--mv {
        padding: 0;
        width: 100%;
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    #pageContents .section.section--mv h1 {
        margin: 0;
    }
    #pageContents .section.section--mv h1 img {
        width: 100%;
    }

    .section--mv::after {
        display: none;
    }

    .section .sectionInner {
        padding: 0;
    }

    #pageContents .section.section--bgNavy,
    #pageContents .section.section--bgGray {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #pageContents .section.section--bgLightblue > .section--bgLightblue__text {
        font-size: 18px;
        margin-bottom: 30px;
    }

    #pageContents .section.section--bgLightblue {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #pageContents .section.section--bgblue {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #pageContents .section.section--bgblue::before {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 40px 75px 0 75px;
        border-color: #4D7EC6 transparent transparent transparent;
    }

    #pageContents .section.section--bgNavy.section--arrow::before {
        width: 58px;
        height: 24px;
        bottom: -23px;
    }


    /* .cautionBlock {
        width: 100%;
        padding: 20px 20px 45px;
        background-color: #FFB100;
        border-radius: 16px;
    } */

    .col2Block {
        column-gap: 10px;
        margin-bottom: 30px;
    }

    .col2Block li {
        flex-direction: column;
        row-gap: 5px;
        justify-content: space-between;
        padding: 10px;
        font-size: 18px;
        margin-bottom: 0;
        text-align: center;
    }

    .col2Block--item {
        flex-direction: column;
        gap: 20px;
    }

    .col2Block--item li {
        width: 100%;
        padding: 30px 0 20px;
    }

    .col2Block--item li p {
        font-size: 16px;
        padding: 10px;
    }

    .col2Block--item li p::before {
        left: 19.8%;
    }

    .col2Block--item li:first-child::before,
    .col2Block--item li:last-child::before {
    width: 72px;
    position: absolute;
    top: 20px;
    right: 20px;
}

    .col2Block--sp {
        display: flex;
        justify-content: center;
        column-gap: 20px;
        align-items: center;
        margin-bottom: 12px;
    }

    .col2Block--sp img{
        margin: 0;
        width: 30%;
    }

    .col2Block--sp p{
        width: 300px;
        max-width: 100%;
    }

    .cautionBlock {
        text-align: left;
        border-radius: 8px;
    }

    .cautionBlock__leading {
        font-size: 18px;
        text-align: center;
    }

    .cautionBlock__txt {
        text-align: center;
    }

    .paymentBlock {
        padding: 15px 25px;
        font-size: 18px;
        text-align: center;
    }

    .itemInformationBlock > li h3 {
        font-size: 20px;
        color: #fff;
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 10px;
    }

    .itemInformationBlock > li h3 span {
        margin-left: 0;
        font-size: 0.7em;
    }

    p.itemInformationBlock__labelTxt {
        margin-top: 0;
        font-size: 18px;
    }

    .itemInformationBlock > li {
        padding: 0 20px 20px;
        /* box-shadow: 0 0 15px rgba(17, 52, 125, 0.3); */
        margin: 30px 0;
    }

    .contactCardBlock {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contactCardBlock a {
        min-height: 140px;
        padding: 15px;
    }

    .contactCardBlock h3.contactCardBlock__ttl {
        font-size: 18px;
        padding: 0 0 10px 18px;
        margin-bottom: 20px;
    }

    p.contactCardBlock__lead {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .contactCardBlock__main {
        padding-left: 35px;
    }

    .contactCardBlock__main::before {
        position: absolute;
        width: 30px;
        height: 30px;
    }

    .contactCardBlock__main--mail {
        font-size: 16px;
    }

    .WhiteBlock {
        padding: 30px 10px;
    }
    
    .noteBlock {
        margin: 30px 0 0;
        padding: 20px 10px;
        font-size: 18px;
    }

    .col2Block--contact h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .col2Block--contact > li {
        font-size: 14px;
        border-radius: 0;
        text-align: left;
    }

    .col2Block--sp1col {
        flex-direction: column;
        margin-bottom: 0;
    }

    .policyBlock {
        padding: 20px 10px;
    }

    .policyBlock p {
        font-size: 16px;
    }

    .infoBlock {
        background-color: #fff;
        padding: 20px 10px;
        font-size: 16px;
    }

    .infoBlock h3.infoBlock__ttl {
        font-size: 18px;
    }

    .infoBlock__link::before {
        top: calc(50% - 4px);
    }

    .infoBlock__link a {
        font-size: 12px;
    }

    .snsLinkBlock {
        width: 335px;
    }

    .snsLinkBlock__link{
        max-width: 310px;
        margin: 0 auto;
        font-size: 18px;
    }

    .snsLinkBlock__link::before {
        width: 8px;
        height: 16px;
    }


    #footnotes {
        margin-bottom: 115px !important;
    }
}
/* -------------------ここまで768px以下----------------------------------- */
