@charset "utf-8";
/* CSS Document */

/*******
common
********************************/
#mainContent {
    min-width: auto !important;
}
#contents h2 {
    font-size: 32px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}
#contents h2 + p {
    margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
#contents h2 + p {
    margin-bottom: 20px;
}
}
[class*="sec0"] .inr {
    max-width: 1220px;
    line-height: 1.6;
    color: #0E1A35;
    padding: 100px 10px;
    margin: 0 auto;
}
[class*="sec0"] .inr img {
    max-width: 100%;
    height: 100%;
}

#contents .pc {
    display: block;
}
#contents .sp {
    display: none;
}
#contents p {
    font-size: 20px;
}


/*******
section
********************************/
/* sec01 */
#sec01.sec01 {
    background: #EFF2F6;
}
#contents .sec01 .inr {
    max-width: none;
    width: 1200px;
}
@media screen and (max-width: 1200px) {
    #contents .sec01 .inr{
        width: 100%;
    }
}
#contents .sec01 .inr > div {
    display: flex;
}
@media screen and (max-width: 640px) {
    #contents .sec01 .inr > div {
        flex-direction: column;
    }
}
#sec01.sec01 .str-outer {
    padding-right: 0;
    padding-left: 0;
}
#sec01.sec01 div.inr > div > div:nth-of-type(1) {
    width: 55%;
}
#sec01.sec01 div.inr > div > div:nth-of-type(2) {
    width: 45%;
    margin-top: 20px;
}
@media screen and (max-width: 640px) {
    #sec01.sec01 div.inr > div > div:nth-of-type(1) {
        width: 100%;
    }
    #sec01.sec01 div.inr > div > div:nth-of-type(2) {
        width: 100%;
    }
}
#sec01.sec01 .str-outer .str-inner {
    max-width: none;
}
#sec01.sec01 .str-outer:nth-of-type(1) .str-inner {
    width: 600px;
    margin-left: 0;
}
@media screen and (max-width: 640px) {
    #sec01.sec01 .str-outer:nth-of-type(1) .str-inner {
        width:100%;
    }
}
#contents iframe {
    border-radius: 20px;
}
#contents h3.line_blue {
    position: relative;
    padding-left: 20px;
}
#contents h3.line_blue:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: -7px;
    width: 7px;
    height: 100%;
    border-radius: 5px;
    background: #0F1ED2;
}
#contents h3.line_blue {
    font-size: 32px;
    color: #535A6E;
}
#contents h3.line_blue span {
    display: block;
    font-size: 20px;
    margin-bottom: 30px;
}
#contents h3.line_blue + p {
    margin-left: 20px;
}
#contents h4.box_blue {
    display: inline-block;
    font-size: 16px;
    color: #0F1ED2;
    border: 1px solid #0F1ED2;
    padding: 5px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    margin-left: 20px;
}
#contents h4.box_blue + p {
    display: block;
    font-size: 14px;
    color: #535A6E;
    margin-left: 20px;
}


/* sec02 */
#contents .sec02 .inr {
    max-width: none;
}
#sec02.sec02 .inr {
    display: flex;
    width: 1200px;
}
@media screen and (max-width: 1200px) {
    #sec02.sec02 .inr{
        width: 100%;
    }
}
#sec02.sec02 .inr:nth-of-type(1) {
    padding-bottom: 20px;
}
#sec02.sec02 .inr:nth-of-type(2) {
    padding-top: 20px;
    padding-bottom: 20px;
}
#sec02.sec02 .inr:nth-of-type(3) {
    padding-top: 20px;
    padding-bottom: 20px;
}
#sec02.sec02 .inr > div:nth-of-type(1) {
    width: 47%;
}
#sec02.sec02 .inr > div:nth-of-type(1) .str-inner {
    max-width: 506px;
}
#sec02.sec02 .inr > div:nth-of-type(2) {
    width: 53%;
    margin-top: 20px;
}
@media screen and (max-width: 640px) {
    #sec02.sec02 .inr {
        display: flex;
        flex-direction: column;
    }
    #sec02.sec02 .inr > div:nth-of-type(1) {
        width: 100%;
    }
#sec02.sec02 .inr > div:nth-of-type(2) {
        width: 100%;
        margin-top: 0;
    }
}

/* sec03 */
#sec03.sec03 {
    background-image: url(../img/bg_sec03.webp);
    background-repeat: no-repeat, no-repeat;
    background-position: center 59%, center;
    background-size: auto, 100% 100%;
}
#sec03.sec03 .inr {
    width: 1200px;
}
@media screen and (max-width: 1200px) {
    #sec03.sec03 .inr{
        width: 100%;
        padding-top: 30px;
    }
}
#sec03.sec03 .inr .inr_s {
    display: flex;
}
@media screen and (max-width: 640px) {
    #sec03.sec03 .inr .inr_s {
        display: flex;
        flex-direction: column;
    }
    #sec03.sec03 .inr .inr_s iframe {
        width: 100%;
        height: auto;
    }
}

.video-container {
    /* 角丸の半径 */
    border-radius: 20px;
    
    /* 重要：この設定で角を隠す */
    overflow: hidden;
    
    /* レスポンシブにする場合の例（16:9） */
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#contents .sec03 h3 {
    margin-bottom: 40px;
    font-size: 32px;
}
#contents .sec03 .inr_s .str-outer:nth-of-type(1) {
    width: 64%;
}
@media screen and (max-width: 640px) {
    #contents .sec03 .inr_s .str-outer:nth-of-type(1) {
        width: 100%;
    }
}
#contents .sec03 .inr_s .str-outer:nth-of-type(2) {
    margin-left: 20px;
    font-size: 20px;
}
#contents .sec03 .inr_s .str-outer:nth-of-type(2) p:nth-of-type(2) {
    font-size: 14px;
}


/* sec04 */

#sec04.sec04 .inr {
    width: 1200px;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    #sec04.sec04 .inr{
        width: 100%;
    }
}
#contents .sec04 h3 {
    margin-bottom: 65px;
    font-size: 32px;
}
#contents .sec04 p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}

#contents #sec04.sec04 .inr .mod-btn-02.of-type-04 a, .mod-btn-02.of-type-04 button {
    background-color: #535A6E;
    background-image: none;
    padding: 10px 60px 9px 30px;
}
#contents #sec04.sec04 .inr .mod-btn-02.of-type-04 a::before,.mod-btn-02.of-type-04 button::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff
}
#contents #sec04.sec04 .inr .mod-btn-02 .btn>span::before,.mod-btn-02 a::before,.mod-btn-02 button::before,.mod-btn-02>span::before {
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    content: "";
    transition: right .2s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    background-image: none;
}
#contents #sec04.sec04 .inr a:visited {
    color: #ffffff;
}
#contents #sec04.sec04 .inr a:link {
	color: #ffffff;
}
#contents #sec04.sec04 .inr a:visited {
	color: #ffffff;
}
#contents #sec04.sec04 .inr a:active {
	color: #ffffff;
}


@media screen and (max-width: 1200px) {
    #contents h2 {
        font-size: 3.5vw;
    }


@media screen and (max-width: 640px) {
    /*******
    common
    ********************************/
    #contents h2 {
        font-size: 21px;
        text-align: center;
    }
    #contents h3 {
        font-size: 20px;
    }
    #contents h3 span {
        font-size: 16px;
    }
    [class*="sec0"] .inr {
        padding: 20px 10px;
    }

    #contents .pc {
        display: none;
    }
    #contents .sp {
        display: block;
    }

    /*******
    section
    ********************************/
    /* sec01 */
    #contents .sec01 h3 {
        margin-bottom: 35px;
    }
    #contents h3.line_blue {
        font-size: 20px;
    }
    #contents .sec04 h3 {
       font-size: 20px;       
    }
    #contents .sec04 p {
        font-size: 15px;
    }

    /* sec02 */

    /* sec03 */
    #contents .sec03 h3 {
        margin-bottom: 35px;
    }
    
    /* sec04 */
    #contents .sec04 h3 {
        margin-bottom: 35px;
    }
    .mod-btn-02 .btn>span::before, .mod-btn-02 a::before, .mod-btn-02 button::before, .mod-btn-02>span::before {
        right: 20px;
        width: 15px;
        height: 15px;
    }
}