@charset "utf-8";
.site-content.home .wrap {
    max-width: 1320px;
    padding: 0 20px 80px;
    margin: 0 auto;
}
.site-content.home article {
    padding-block: 48px 64px;
}

.heading {
    font-family: "Noto Sans CJK JP Black";
    font-size: 40px;
    font-weight: bold;
    color: #1759A9;
    text-align: center;
    margin-bottom: 32px;    
}
.sub-heading {
    font-size: 20px;
    font-weight: bold;
    color: #1759A9;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .sp.inner,
    .contaienr {
        padding-inline: 16px;
    }
    .heading {
        font-size: 30px;
    }
    .sub-heading {
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    .heading {
        font-size: 24px;
    }
    .sub-heading {
        font-size: 12px;
    }
}
@media screen and (max-width: 480px) {
    .heading {
        font-size: 20px;
    }
}

/* MainImage */
#MainImage {
    background-color: #F2F5FA;
}
#MainImage .container {
    max-width: 1484px;
    display: grid;
    grid-template-areas: 'main1 main3'
                         'main2 main3'
                         'main4 main3';
    grid-template-columns: 1fr 1fr;
    padding: 86px 20px 32px;
    margin: auto;
}

#MainImage  .title {
    font-family: "Noto Sans CJK JP Black";
    color: #1759A9;
    font-size: 66px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 16px;
    grid-area: main1;
}
#MainImage .title span {
    color: #000;
}
#MainImage .text01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    grid-area: main2;
}
#MainImage .text01 p {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3;
}
#MainImage .text01 img {
    width: 380px; 
}
#MainImage .text02{
  grid-area: main3;
  align-self: center;
}
#MainImage .text02 {
    font-weight: bold;
    color: #1759A9;
    text-align: center;
    line-height: 1.3;
}
#MainImage .text03 {
  grid-area: main4;
}
#MainImage .text03 .img {
    margin-bottom: 16px;
}
#MainImage .text03 p {
    font-size: 12px;
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  #MainImage .container {
    max-width: 100%;
    grid-template-areas: 'main1'
                         'main2'
                         'main3'
                         'main4';
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 86px 20px 43px;
    margin: 0;
  }
  #MainImage .title {
    margin-bottom: 90px;
  }
  #MainImage .text01 {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 100px;
  }
  #MainImage .text01 p br {
    display: none;
  }
  #MainImage .text02 {
    margin-bottom: 60px; 
  }
  #mainImage .text03 {
    justify-self: left;  
  }
}

@media screen and (max-width: 600px) {
  #MainImage .title {
    font-size: 46px; 
  }
  #MainImage .text01 p {
    font-size: 20px; 
  }
  #MainImage .text02 p {
    font-size: 14px;   
  }
  #MainImage .text03 p {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  #MainImage .title {
    font-size: 36px;   
  }
}

/* introduction */
#introduction .inner {
    max-width: 940px;
    margin: 0 auto;
}
#introduction .contents ul li {
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
}
#introduction .contents ul li img {
    width: 100%;
    object-fit: cover;
}
#introduction .contents.pc ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 16px;
}

@media screen and (max-width: 768px) {
    #introduction .contents.pc ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 600px) {
    #introduction .contents ul {
        grid-template-columns: 1fr;
    }
}

/* points */
#points .contents ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 calc(80vw / 19.2);
    margin-bottom: 72px;
}
#points .contents ul .item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    gap: 0;
    justify-items: center;
}
#points .contents ul .item .num {
    font-family: "Tw Cen MT Condensed Extra Black";
    font-size: 64px;
    color: #1759A9;
    font-weight: bold;
}
#points .contents ul .item .img {
    max-width: 230px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F2F5FA;
    border: 1px solid #1759A9;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 36px;
}
#points .contents ul .item img {
    transform: scale(0.5);
}
#points .contents ul .item03 img {
    transform: scale(0.75);
}
#points .contents ul .item .text01 {
    font-size: 25px;
    font-weight: bold;
    color: #1759A9;    
}
#points .contents ul .item .text02 {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;   
}
#points .contents ul .item .text03 {
    font-size: 15px;
    line-height: 1.4;
    padding-inline: 16px;
}
#points .contents .button {
    display: block;
    max-width: 552px;
    font-size: 30px;
    font-weight: bold;
    color: #FFFF00;
    background-color: #1759A9;
    border: 9px solid #fff;
    border-radius: 100px;
    padding-block: 24px;
    box-shadow: 3px 4px 6px 3px rgba(0,0,0,0.4);
    text-align: center;
    margin: 0 auto;
    transition: .3s;
}

@media screen and (max-width: 768px) {
    #points .contents ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    #points .contents ul .item {
        width: 100%;
    }
    #points .contents ul .item .img {
        margin-bottom: 18px;
    }
    #points .contents ul .item .text01 {
        align-self: flex-end;
        margin-bottom: 3px;
    }
}
@media screen and (max-width: 600px) {
    #points .contents .button {
        font-size: 20px;
    }
    #points .contents ul {
       gap: 60px 20px;
    }
}

/* functions */
#functions .inner {
    padding-inline: 40px;
    margin-bottom: 56px;
}
#functions .content {
    background-color: #F2F5FA;
    position: relative;
    border-radius: 24px;
    padding: 64px 48px 106px;
}
#functions .content .list .item {
    display: grid;
    grid-template-areas: 'function1 function2 function3';
    grid-template-columns: 5.5% 47.25% 47.25%;
    align-items: center;
    margin-block: 24px;
}
#functions .content .list .item:first-child {
    margin-top: 0;
}
#functions .content .list .item > * {
    font-weight: bold;
}
#functions .content .list .item .img {
    text-align: center;
    grid-area: function1;
}
#functions .content .list .item .img img {
    object-fit: contain;
    transform: scale(0.75);
}
#functions .content .list .function02 .img img,
#functions .content .list .function04 .img img {
    transform: scale(1);
}
#functions .content .list .item .text01 {
    grid-area: function2;
}
#functions .content .list .item .text01 p {
    font-size: 25px;
    color: #1759A9;
    margin-left: 30px;
}
#functions .content .list .item .text02 {
  grid-area: function3;
}
#functions .content .list .item .text02 ul li::before {
    content: "・";
}
#functions .content .button {
    display: block;
    max-width: 469px;
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    color: #1759A9;
    background-color: #fff;
    border: 1px solid #1759A9;
    border-radius: 100px;
    padding: 24px 0;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}

@media screen and (max-width: 768px) {
    #functions .content {
        border-radius: 0;
        margin-inline: calc(50% - 50vw);
        padding: 32px 40px 54px;
    }
    #functions .content .list .item {
        grid-template-areas: 'function1 function2'
                             'function1 function3';
        grid-template-columns: 8.75% calc(91.25% - 30px);
        column-gap: 30px;
    }
    #functions .content .list .item .img {
        align-self: flex-start;
    }
    #functions .content .list .item .text01 p {
        margin-left: 0;
    }
}
@media screen and (max-width: 600px) {
    #functions .content {
        padding-inline: 20px;
    }
    #functions .content .list .item {
        grid-template-columns: 8.75% calc(91.25% - 15px);
        column-gap: 15px;
    }
}
@media screen and (max-width: 480px) {
    #functions .content .list .item .text01 p {
        font-size: 16px;
    }
    #functions .content .list .item .text02 ul li {
        font-size: 10px;
    }
    #functions .content .button {
        font-size: 20px;
        width: 80%;
    }
}

/* plan */
#plan {
    padding-bottom: 86px;
}
#plan .inner {
    padding-inline: 60px;
}
#plan .comment {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}
#plan .comment span {
    display: block;
    margin-bottom: 24px;
}
#plan .list {
    max-width: 100%;
    padding-top: 16px;
    margin-bottom:calc(61px / 2);
}
#plan .list .item {
    max-width: 100%;
    border: 3px solid #1759A9;
    border-radius: 14px;
    position: relative;
    padding: 20px;
}
#plan .list .item.silver {
    background-color: #F6F6F6;
}
#plan .list .item.gold {
    background-color: #FFF8E1;
}
#plan .list .item.platium {
    background-color: #F2FDE1;
}
#plan .list .item .name {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}
#plan .list .item .amount {
    font-size: 40px;
    font-weight: bold;
    border-bottom: 1px dotted #000;
    text-align: center;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
}
#plan .list .item .amount span {
    font-size: 16px;
}
#plan .list .item .checkList {
    margin-bottom: 30px;
}
#plan .list .item .checkList li {
    font-size: 15px;
    font-weight: bold;
}
#plan .list .item .checkList li span {
    color: #D80000;
}
#plan .list .item .checkList li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../../image/share/checkbox.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: sub;
    margin-right: 8px;
}
#plan .list .item .button {
    display: block;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    transform: translateY(50%);
}
#plan .list .item .button a {
    display: inline-block;
    font-size: 21px;
    color: #1759A9;
    font-weight: bold;
    background-color: #fff;
    border: 3px solid #1759A9;
    border-radius: 8px;
    text-align: center;
    padding: 0.5em 2em;
    transition: .25s;
}
#plan .list .item .button a:hover {
    color: #fff;
    background-color: #1759A9;
}

#plan .contents.pc .list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 450px;
    gap: calc(61px / 2 + 24px) 24px;
}

#plan .contents.sp .topSlide02 {
    margin-left: 16px;
}
#plan .contents.sp .topSlide02 .list .item {
    height: 450px;
}

@media screen and (max-width: 1024px) {
    #plan .list .item .amount {
        font-size: 30px;
    }
}
@media screen and (max-width: 768px) {
    #plan .list .item .amount {
        font-size: 40px;
    }
}
@media screen and (max-width: 600px) {
    #plan .list .item .name {
        font-size: 26px;
    }
    #plan .list .item .amount {
        font-size: 30px;
    }
}
@media screen and (max-width: 480px) {
    #plan .contents.sp .topSlide02 {
        margin-left: 0;
    }
    #plan .contents.sp .topSlide02 .list .item {
        height: 400px;
    }
    #plan .list .item .amount span {
        font-size: 12px;
    }
    #plan .list .item .checkList li {
        font-size: 13px;
    }
    #plan .list .item .button a {
        font-size: 16px;
    }
}

/* advantage */
#advantage {
    background-color: #F2F5FA;
    margin-inline: calc(50% - 50vw);
    padding-bottom: 64px;
}
#advantage .inner {
    max-width: 1110px;
    padding-inline: 20px;
    margin: 0 auto;
}
#advantage .contents ul li .text01 {
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 16px;
}
#advantage .contents ul li .text02 {
    font-size: 15px;
    line-height: 1.4;
}
#advantage .contents ul li .text02 span:nth-child(2) {
    display: block;
    margin-top: 24px;
}

#advantage .contents.pc ul {
    display: flex;
    gap: calc(64vw / 19.2);
}
#advantage .contents.pc ul li {
    flex-grow: 1;
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#advantage .contents.sp {
    margin-left: 36px;
    padding-right: 0;
}
/* newInfo */
#newInfo .inner {
    padding-inline: 20px;
}
#newInfo .container {
    display: flex;
}
#newInfo .button {
    max-width: 160px;
    width: 50%;
    font-size: 18px;
    color: #1759A9;
    border: 1px solid #1759A9;
    border-radius: 50px;
    text-align: center;
    padding-block: 10px;
    transition: .25s;
}
#newInfo .button:hover {
    color: #fff;
    background-color: #1759A9;
}
#newInfo .sp.button {
    margin: 0 auto;
}
#newInfo .box.left {
    width: 27.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#newInfo .box.left .heading {
    text-align: left;
}
#newInfo .box.right {
    flex-grow: 1;
}

@media screen and (max-width: 768px) {
    #newInfo {
        margin-right: calc(50% - 50vw);
        padding-right: calc(50vw - 50%);
    }
    #newInfo .container {
        flex-direction: column;
        padding-left: 16px;
    }
    #newInfo .box.left {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 64px;
    }
    #newInfo .box.left .heading {
        margin: 0;
    }
    #newInfo .box.left .heading {
        text-align: center;
    }
}
@media screen and (max-width: 480px) {
    #newInfo .container {
        padding-left: 0;
    }
}

/* contact */
#contact .inner {
    padding-inline: 40px;
}
#contact .contents .content {
    color: #fff;
    background-color: #1759A9;
    border-radius: 14px;
    padding: 36px;
    text-align: center;
    margin-bottom: 64px;
}
#contact .contents .content .block {
    display: flex;
}
#contact .contents .content .block section {
    width: calc(100% / 3);
    padding: 0 16px;
}
#contact .contents .content .block section:nth-child(2) {
    border-left: 1px dotted #fff;
    border-right: 1px dotted #fff;
}
#contact .contents .content .block section .button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
#contact .contents .content .block section .text01 {
    font-size: 22px;
    font-weight: bold;
}
#contact .contents .content .block section .button {
    color: #1759A9;
    font-weight: bold;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    padding-block: 16px;
    margin-block: 16px 10px;
    transition: .3s;
}
#contact .contents .content .block .button img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(1906%) hue-rotate(205deg) brightness(90%) contrast(85%);
}
#contact .contents .content .block section:nth-child(1) .button img {
    max-width: 37px;
}
#contact .contents .content .block section:nth-child(2) .button img,
#contact .contents .content .block section:nth-child(3) .button img {
    max-width: 30px;
}
#contact .contents .content .block section .button:hover {
    color: #fff;
    background-color: #1759A9;
}
#contact .contents .content .block section .button:hover img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(39%) saturate(2%) hue-rotate(133deg) brightness(110%) contrast(100%);
}
#contact .contents .content .block section .text02 {
    font-size: 13px;
}

@media screen and (max-width: 768px) {
    #contact .contents .content {
        padding: 0 16px 32px 16px;
        margin: 0;
    }
    #contact .contents .content .block {
        max-width: 529px;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    #contact .contents .content .block section {
        width: 100%;
        padding: 32px 0;
    }
    #contact .contents .content .block section:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px dotted #fff;
        border-bottom: 1px dotted #fff;
    }
    #contact .contents .content .block section .button {
        margin-block: 16px;
    }
}
@media screen and (max-width: 600px) {
    #contact .contents .content {
        padding: 18px;
    }
}

/*linkBanners */
#linkBanners ul {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: calc(80vw / 19.2);
}
#linkBanners ul li {
    text-align: center;
}
#linkBanners ul li a .img {
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}
#linkBanners ul li a .img img {
    width: 100%;
    object-fit: cover;
    transition: .3s;
}
#linkBanners ul li a p {
    font-size: 15px;
    line-height: 1.4;
}
#linkBanners ul li a:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    #linkBanners ul {
        gap: 40px;
    }
    #linkBanners ul li a p {
        font-size: 7.5px;
    }
}
@media screen and (max-width: 480px) {
    #linkBanners ul {
        gap: 20px;
    }
}

@media screen and (max-width: 1024px) {
    #functions .inner, #plan .inner,
    #newInfo .inner, #contact .inner {
        padding: 0;
    }
}