@charset "utf-8";

html {
    height: 100%;
    background-color:#fff;
    width:100vw;
    max-width:100%;
}
 
body {  
    font-family: "Avenir Next","Zen Kaku Gothic New","Avenir",Arial,sans-serif;
    width: 100%;
    font-size: 16px;
    color: #606060;
    line-height: 1.5;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

main {
    overflow-x: hidden;
}

.section-title {
    position: relative;
    margin-bottom: 32px;
    z-index: 4;
}

.section-title h3 {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
}

.btn {
    background-color: #FF8E93;
    color: #fff;
    font-size: 26px;
    max-width: 600px;
    width: 100%;
    display: block;
    border-radius: 56px;
    margin: 40px auto 0;
    position: relative;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.btn:hover {
    opacity: 0.8;
}

.btn::before {
    content: "";
    position: absolute;
    border: #fff 1px solid;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 56px;
}

.btn-arrow {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 27px;
    display: block;
}

.marker {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFE65C));
    background:-o-linear-gradient(transparent 50%, #FFE65C 50%);
    background:linear-gradient(transparent 50%, #FFE65C 50%);
}

.bold {
    font-weight: bold;
}

@media screen and (max-width:768px){
    .btn {
        font-size: 18px;
        margin: 20px auto 0;
    }

    .section-title {
        margin-bottom: 24px;
    }

    .section-title h3 {
        font-size: 22px;
    }

    .btn {
        font-size: 18px;
        margin: 16px auto 0;
    }

    .btn-arrow {
        right: 16px;
        width: 22px;
    }
}

@media screen and (max-width:360px){
    .btn {
        font-size: 16px;
    }

    .btn-arrow {
        width: 19px;
    }
}

/*--------------------------header----------------------------*/
.header {
    position: absolute;
    top: 16px;
    left: 32px;
    max-width: 309px;
    width: 50%;
}

.header-logo {
    display: block;
    width: 100%;
}

.header-logo img {
    display: block;
    width: 100%;
}

@media screen and (max-width:768px){
    .header {
        top: 12px;
        left: 20px;
    }
}

/*--------------------------mainvisual----------------------------*/
.mainvisual {
    background-color: rgba(247, 165, 165, 0.1);
    padding: 50px 0;
}

.mainvisual-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.mainvisual-text {
    width: 55%;
    margin-right: -5%;
}

.mainvisual-image {
    width: 55%;
    margin-left: -5%;
}

.mainvisual-title {
    position: relative;
}

.mainvisual-title__decoration {
    position: absolute;
    left: -50px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.15;
    width: 30%;
    display: block;
    max-inline-size: none;
    max-block-size: none;
    -webkit-transform: rotate(-62deg);
        -ms-transform: rotate(-62deg);
            transform: rotate(-62deg);
}

.mainvisual-title__small {
    background-color: #FF8E93;
    color: #fff;
    font-weight: 500;
    font-size: 28px;
    border-radius: 30px;
    padding: 6px 28px 4px;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.mainvisual-title__big {
    font-size: 40px;
    font-weight: 500;
    margin: 8px 0 32px;
}

.mainvisual-title__big_pink {
    color: #FF8E93;
}

.mainvisual-merit {
    position: relative;
    padding: 24px;
    max-width: 520px;
}

.mainvisual-merit__blue {
    background-color: #EAF4FC;
    border: #60AEED 1px solid;
}

.mainvisual-merit__yellow {
    background-color: #FFF3D4;
    border: #FF9D00 1px solid;
    margin-top: 40px;
}

.mainvisual-merit__title {
    position: absolute;
    left: -10px;
    -webkit-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
            transform: rotate(-3deg);
    height: 40px;
    top: -24px;
}

.mainvisual-merit__title img {
    width: auto;
    height: 40px;
    display: block;
}

.mainvisual-merit__check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.mainvisual-merit__blue .mainvisual-merit__check {
    color: #60AEED;
}

.mainvisual-merit__yellow .mainvisual-merit__check {
    color: #FF9D00;
}

.mainvisual-merit__check_icon {
    width: 17px;
    margin-right: 8px;
}

.mainvisual-merit__check_icon img {
    width: 100%;
    display: block;
}

@media screen and (max-width:1260px){
    .mainvisual {
        padding: 100px 0 50px;
    }

    .mainvisual-image {
        width: 50%;
    }

    .mainvisual-text {
        margin-right: 0;
    }

    .mainvisual-title__small {
        font-size: 26px;
    }

    .mainvisual-title__big {
        font-size: 36px;
    }
}

@media screen and (max-width:1100px){
        .mainvisual-title__small {
            font-size: 22px;
        }

        .mainvisual-title__big {
            font-size: 32px;
        }

        .mainvisual-merit {
            padding: 24px 16px 16px;
            max-width: 480px;
        }

        .mainvisual-merit__check {
            font-size: 18px;
        }
}

@media screen and (max-width:980px){
    .mainvisual-title__small {
        font-size: 20px;
    }

    .mainvisual-title__big {
        font-size: 28px;
    }

    .mainvisual-merit__check {
        font-size: 16px;
    }

    .mainvisual-merit {
        max-width: 430px;
    }
}

@media screen and (max-width:870px){
    .mainvisual-title__small {
        font-size: 17px;
    }

    .mainvisual-title__big {
        font-size: 25px;
    }

    .mainvisual-merit__title {
        height: 32px;
    }

    .mainvisual-merit__title img {
        height: 32px;
    }

    .mainvisual-merit__check {
        font-size: 14.5px;
    }

    .mainvisual-merit {
        max-width: 400px;
        padding: 16px 12px;
    }
}

@media screen and (max-width:768px){
    .mainvisual-inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .mainvisual-text {
        margin: 0 auto;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .mainvisual-image {
        width: 100%;
        margin: 18px auto 0;
        max-width: 500px;
    }

    .mainvisual-title__small {
        font-size: 22px;
    }

    .mainvisual-title__big {
        font-size: 32px;
    }

    .mainvisual-merit__title {
        height: 32px;
    }

    .mainvisual-merit {
        max-width: 480px;
    }

    .mainvisual-merit__check {
        font-size: 18px;
    }
}

@media screen and (max-width:600px){
    .mainvisual-title__decoration {
        left: -20px;
    }
}

@media screen and (max-width:550px){
    .mainvisual {
        padding: 84px 0 30px;
    }

    .mainvisual-title__small {
        font-size: 17px;
        padding: 6px 18px 4px 8px;
    }

    .mainvisual-title__big {
        font-size: 23px;
        margin-bottom: 22px;
    }

    .mainvisual-merit {
        padding: 18px 12px 14px;
    }

    .mainvisual-merit__title {
        height: 27px;
        top: -16px;
    }

    .mainvisual-merit__title img {
        height: 27px;
    }

    .mainvisual-merit__check_icon {
        width: 12px;
        margin-right: 4px;
    }

    .mainvisual-merit__check {
        font-size: 13.5px;
    }

    .mainvisual-merit__yellow {
        margin-top: 28px;
    }

    .mainvisual-image {
        max-width: 400px;
    }
}

@media screen and (max-width:480px){
    .mainvisual {
        padding: 70px 0 30px;
    }
}

@media screen and (max-width:390px){
    .mainvisual-title__decoration {
        left: -12px;
    }

    .mainvisual-title__small {
        font-size: 16px;
    }

    .mainvisual-title__big {
        font-size: 21px;
    }

    .mainvisual-merit__check {
        font-size: 12px;
    }
}

@media screen and (max-width:360px){
    .mainvisual {
        padding: 60px 0 30px;
    }

    .mainvisual-text {
        margin: 0;
        width: 100%;
    }

    .mainvisual-title__small {
        font-size: 14px;
    }

    .mainvisual-title__big {
        font-size: 19px;
    }

    .mainvisual-merit {
        padding: 16px 8px 10px;
        letter-spacing: -0.5px;
    }

    .mainvisual-image {
        margin: 12px auto 0;
    }
}

/*--------------------------companies----------------------------*/
.companies {
    padding: 60px 0;
}

.companies-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.companies-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
}

.companies-title h3 {
    display: inline-block;
    margin: 0 auto;
    position: relative;
}

.companies-title h3::before {
    content: "";
    position: absolute;
    display: block;
    width: 46px;
    left: -58px;
    bottom: 0;
    width: 46px;
    height: 55px;
    background-image: url("../images/sparkle.png");
    background-size: contain;
}

.companies-title h3::after {
    content: "";
    position: absolute;
    display: block;
    -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
            transform: scale(-1, 1);
    bottom: 0;
    right: -50px;
    width: 46px;
    height: 55px;
    background-image: url("../images/sparkle.png");
    background-size: contain;
}

.companies-logo__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.companies-logo__wrapper::before{
  content:"";
  display: block;
  width:24%;
  -webkit-box-ordinal-group:2;
      -ms-flex-order:1;
          order:1;
}
.companies-logo__wrapper::after{
  content:"";
  display: block;
  width:24%;
}

.companies-logo {
    width: 24%;
    margin: 5px 0;
}

.companies-logo img {
    display: block;
    width: 100%;
}

@media screen and (max-width:768px){
    .companies {
        padding: 40px 0 50px;
    }

    .companies-title {
        font-size: 22px;
        margin-bottom: 7px;
    }

    .companies-title h3::before {
        width: 30px;
        height: 36px;
        left: -38px;
    }

    .companies-title h3::after {
        width: 30px;
        height: 36px;
        right: -30px;
    }

    .companies-logo__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .companies-logo {
        width: 49%;
        margin: 2.5px 0;
    }
}

/*--------------------------menu----------------------------*/
.menu {
    background-color: #FF8E93;
    padding: 12px 0;
}

.menu-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.menu-item__wrapper {
    width: 14.28%;
    border-left: 1px solid #fff;
}

.menu-item__wrapper:last-of-type {
    border-right: 1px solid #fff;
}

.menu-item {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    padding: 18px 0;
}

.menu-item p {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.menu-item:hover p {
    opacity: 0.7;
}

.menu-arrow {
    display: none;
}

@media screen and (max-width:1150px){
    .menu-item {
        font-size: 16px;
    }
}

@media screen and (max-width:950px){
    .menu-item {
        font-size: 14px;
    }
}

@media screen and (max-width:850px){
    .menu-item {
        font-size: 13px;
    }
}

@media screen and (max-width:768px){
    .menu {
        padding: 10px 0 24px;
    }

    .menu-inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .menu-item__wrapper {
        width: 48%;
        border-left: none;
        border-right: none!important;
        border-bottom: 1px solid #fff;
    }

    .menu-item {
        font-size: 14px;
        position: relative;
    }

    .menu-item__wrapper_qa {
        width: 100%;
    }

    .menu-arrow {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 13px;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
    }

    .menu-item:hover .menu-arrow {
        opacity: 0.7;
    }
}

/*--------------------------news----------------------------*/
.news {
    background-color: rgba(247, 165, 165, 0.1);
    padding: 60px 0;
}

.news-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.news-banner {
    width: 38%;
}

.news-banner img {
    width: 100%;
    display: block;
}

.news-content {
    width: 60%;
    background-color: #fff;
    border: 2px solid #FF8E93;
    padding: 24px 40px 28px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.news-decoration {
    width: 8px;
    height: 8px;
    position: absolute;
    background-color: #FF8E93;
    border-radius: 8px;
}

.news-decoration1 {
    top: 20px;
    left: 20px;
}

.news-decoration2 {
    top: 20px;
    right: 20px;
}

.news-decoration3 {
    bottom: 20px;
    left: 20px;
}

.news-decoration4 {
    bottom: 20px;
    right: 20px;
}

.news-content::before {
    content: "";
    display: block;
    position: absolute;
    border: 1px solid #FF8E93;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
}

.news-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 5;
}

.news-title h3 {
    font-weight: 500;
    font-size: 28px;
    margin-right: 8px;
}

.news-title_en {
    width: 113px;
    margin-top: -10px;
}

.news-title_en img {
    display: block;
    width: 100%;
}

.news-content__inner {
    z-index: 6;
}

.news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0;
}

.news-item:not(:last-of-type) {
    border-bottom: #FF8E93 1px solid;
}

.news-date {
    color: #FF8E93;
    margin-right: 12px;
}

@media screen and (max-width:768px){
    .news {
        padding: 50px 0 60px;
    }

    .news-inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .news-banner {
        width: 100%;
    }

    .news-content {
        width: 100%;
        margin-top: 20px;
        padding: 24px 24px 28px;
    }

    .news-title h3 {
        font-size: 20px;
    }

    .news-title_en {
        width: 81px;
    }

    .news-item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .news-date {
        width: 100%;
        margin-bottom: 4px;
    }

    .news-text {
        width: 100%;
    }
}

/*--------------------------about----------------------------*/
.about {
    padding: 110px 0 80px;
}

.about-inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
    position: relative;
}

.about-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_pink.png");
    background-size: contain;
    opacity: 0.1;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.about-title img {
    width: 120px;
    display: block;
    margin: 0 auto;
}

.about-title__br {
    display: none;
}

.about-content p {
    text-align: center;
    font-size: 20px;
}

.about-content__pink {
    font-weight: 500;
    color: #FF8E93;
}

.about-decoration1 {
    position: absolute;
    left: 120px;
    top: 0;
    width: 58px;
    display: block;
    -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
            transform: rotate(-20deg);
    z-index: -2;
}

.about-decoration2 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 73px;
    display: block;
    -webkit-transform: rotate(-29deg);
        -ms-transform: rotate(-29deg);
            transform: rotate(-29deg);
    z-index: -3;
}

.about-decoration3 {
    position: absolute;
    left: 100px;
    bottom: -30px;
    width: 44px;
    display: block;
    z-index: -4;
}

.about-decoration4 {
    position: absolute;
    right: 120px;
    top: 0;
    width: 61px;
    display: block;
    z-index: -5;
}

.about-decoration5 {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 92px;
    display: block;
    -webkit-transform: rotate(29deg);
        -ms-transform: rotate(29deg);
            transform: rotate(29deg);
    z-index: -6;
}

.about-decoration6 {
    position: absolute;
    right: 100px;
    bottom: -50px;
    width: 58px;
    display: block;
    -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
            transform: rotate(-20deg);
    z-index: -7;
}

@media screen and (max-width:1000px){
    .about-decoration1 {
        left: 100px;
        top: -40px;
        width: 38px;
    }

    .about-decoration2 {
        top: 40px;
        bottom: 0;
        margin: 0;
        width: 53px;
    }

    .about-decoration3 {
        left: 100px;
        bottom: -50px;
        width: 34px;
    }

    .about-decoration4 {
        right: 100px;
        top: -45px;
        width: 41px;
    }

    .about-decoration5 {
        right: 0;
        top: 40px;
        bottom: 0;
        margin: 0;
        width: 52px;
    }

    .about-decoration6 {
        right: 100px;
        bottom: -50px;
        width: 38px;
    }
}

@media screen and (max-width:768px){
    .about {
        padding: 70px 0 60px;
    }

    .about-content p {
        text-align: left;
        font-size: 16px;
    }

    .about-title::before {
        width: 90px;
        height: 90px;
    }

    .about-title img {
        width: 83px;
    }

    .about-decoration1 {
        left: 77px;
        top: -30px;
        width: 23px;
    }

    .about-decoration2 {
        top: 30px;
        bottom: 0;
        margin: 0;
        left: -5px;
        width: 33px;
        -webkit-transform: rotate(29deg);
            -ms-transform: rotate(29deg);
                transform: rotate(29deg);
    }

    .about-decoration3 {
        left: 65px;
        bottom: -35px;
        width: 22px;
    }

    .about-decoration4 {
        right: 59px;
        top: -30px;
        width: 26px;
    }

    .about-decoration5 {
        right: 0;
        top: 28px;
        bottom: 0;
        margin: 0;
        width: 39px;
        -webkit-transform: rotate(-32deg);
            -ms-transform: rotate(-32deg);
                transform: rotate(-32deg);
    }

    .about-decoration6 {
        right: 40px;
        bottom: -35px;
        width: 28px;
    }
}

@media screen and (max-width:355px){
    .about-title__br {
        display: block;
    }
}

/*--------------------------serviceFlow----------------------------*/
.serviceFlow {
    padding: 110px 0 80px;
    background-color: rgba(255, 189, 41, 0.1);
}

.serviceFlow-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.serviceFlow-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_white.png");
    background-size: contain;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.serviceFlow-title img {
    width: 208px;
    display: block;
    margin: 0 auto;
}

.serviceFlow-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.serviceFlow-flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.serviceFlow-flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.serviceFlow-flow__item {
    width: calc(24% - 12.75px);
    border-radius: 28px;
    position: relative;
}

.serviceFlow-flow__item_pink {
    border: #FF8E93 1.5px solid;
    background-color: #FEEAEA;
}

.serviceFlow-flow__item_blue {
    border: #7DBCEF 1.5px solid;
    background-color: #EAF4FC;
}

.serviceFlow-flow__head {
    position: absolute;
    margin: auto;
    top: -19px;
    background-color: #fff;
    left: 0;
    right: 0;
    width: 144px;
    padding: 8px 20px;
}

.serviceFlow-flow__head img {
    display: block;
    margin: 0 auto;
}

.serviceFlow-step1 {
    width: 61px;
}

.serviceFlow-step2 {
    width: 67px;
}

.serviceFlow-step3 {
    width: 67px;
}

.serviceFlow-step4 {
    width: 69px;
}

.serviceFlow-flow__item_pink .serviceFlow-flow__head {
    border: #FF8E93 1.5px solid;
    border-radius: 24px;
}

.serviceFlow-flow__item_blue .serviceFlow-flow__head {
    border: #7DBCEF 1.5px solid;
    border-radius: 24px;
}

.serviceFlow-arrow {
    width: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.serviceFlow-arrow img {
    width: 100%;
    display: block;
}

.serviceFlow-flow__item_pink .serviceFlow-flow__top {
    background-color: #FF8E93;
    color: #fff;
    border-radius: 26px 26px 0 0;
    text-align: center;
    padding: 24px 16px 12px;
}

.serviceFlow-flow__item_blue .serviceFlow-flow__top {
    background-color: #7DBCEF;
    color: #fff;
    border-radius: 26px 26px 0 0;
    text-align: center;
    padding: 24px 16px 12px;
}

.serviceFlow-flow__top {
    font-size: 28px;
    font-weight: 500;
}

.serviceFlow-flow__small {
    font-size: 20px;
}

.serviceFlow-flow__bottom {
    padding: 12px 16px 28px;
}


.serviceFlow-bottom__title_wrapper {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.serviceFlow-flow__item_pink .serviceFlow-flow__bottom_title {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    color: #FF8E93;
    position: relative;
    margin-bottom: 8px;
    margin: 0 auto;
    display: inline-block;
}

.serviceFlow-flow__item_pink .serviceFlow-flow__bottom_title::before {
    content: "";
    background-image: url("../images/flower_pink.png");
    width: 8px;
    height: 8px;
    background-size: contain;
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.serviceFlow-flow__item_pink .serviceFlow-flow__bottom_title::after {
    content: "";
    background-image: url("../images/flower_pink.png");
    width: 8px;
    height: 8px;
    background-size: contain;
    position: absolute;
    right: -16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.serviceFlow-flow__item_blue .serviceFlow-flow__bottom_title {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    color: #7DBCEF;
    position: relative;
    margin-bottom: 8px;
}

.serviceFlow-flow__item_blue .serviceFlow-flow__bottom_title::before {
    content: "";
    background-image: url("../images/flower_blue.png");
    width: 8px;
    height: 8px;
    background-size: contain;
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.serviceFlow-flow__item_blue .serviceFlow-flow__bottom_title::after {
    content: "";
    background-image: url("../images/flower_blue.png");
    width: 8px;
    height: 8px;
    background-size: contain;
    position: absolute;
    right: -16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.serviceFlow-flow__bottom_text_small {
    margin-top: 8px;
    font-size: 12px;
}

.serviceFlow-balloon {
    background-color: #FFBD29;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    margin: 24px auto 0;
    max-width: 500px;
    padding: 8px 20px;
    position: relative;
}

.serviceFlow-balloon::before {
    content: "";
    position: absolute;
    display: block;
    width: 22px;
    height: 12px;
    top: -11px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url("../images/balloon_tail_yellow.png");
    background-size: contain;
}

.serviceFlow-features {
    border: #FF8E93 1.5px solid;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
    max-width: 995px;
    margin: 60px auto 0;
}

.serviceFlow-features__decoration1_pc {
    position: absolute;
    left: -60px;
    bottom: -13px;
    width: 164px;
}

.serviceFlow-features__decoration2_pc {
    position: absolute;
    right: -60px;
    bottom: -13px;
    width: 172px;
}

.serviceFlow-features__decoration_pc {
    display: block;
}

.serviceFlow-features__decoration_sp {
    display: none;
}

.serviceFlow-features__header {
    background-color: #FF8E93;
    padding: 8px 24px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    border-radius: 18px 18px 0 0;
}

.serviceFlow-features__title_br {
        display: none;
    }

.serviceFlow-features__inner {
    padding: 24px 24px 36px;
    
}

.serviceFlow-features__list_wrapper {
    max-width: 730px;
    margin: 0 auto;
}

.serviceFlow-features__list {
    position: relative;
    padding-left: 21px;
}

.serviceFlow-features__list:not(:last-of-type) {
    margin-bottom: 8px;
}

.serviceFlow-features__list::before {
    content: "";
    width: 17px;
    height: 15px;
    position: absolute;
    display: block;
    background-image: url("../images/check_pink.png");
    background-size: contain;
    left: 0;
    top: 3px;
}

@media screen and (max-width:1120px){
    .serviceFlow-features__decoration1_pc {
        left: -30px;
        bottom: -13px;
        width: 104px;
    }

    .serviceFlow-features__decoration2_pc {
        right: -30px;
        bottom: -13px;
        width: 112px;
    }
}

@media screen and (max-width:980px){
    .serviceFlow-arrow__blue {
        display: none;
    }

    .serviceFlow-flow {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .serviceFlow-flow__item {
        width: calc(49% - 8.5px);
    }

    .serviceFlow-flow__item1, .serviceFlow-flow__item2 {
        margin-bottom: 32px;
    }
}

@media screen and (max-width:950px){
    .serviceFlow-features__decoration_pc {
        display: none;
    }

    .serviceFlow-features__decoration_sp {
        display: block;
    }

    .serviceFlow-features__decoration1_sp {
        position: absolute;
        top: -40px;
        left: -10px;
        width: 116px;
    }

    .serviceFlow-features__decoration2_sp {
        position: absolute;
        width: 100px;
        top: -40px;
        right: -10px;
    }

    .serviceFlow-features__title_br {
        display: block;
    }
}

@media screen and (max-width:768px){
    .serviceFlow {
        padding: 70px 0 60px;
    }

    .serviceFlow-title::before {
        width: 90px;
        height: 90px;
    }

    .serviceFlow-title img {
        width: 148px;
    }

    .serviceFlow-text {
        text-align: left;
        font-size: 16px;
        margin-bottom: 32px;
    }

    .serviceFlow-arrow__blue {
        display: block;
    }

    .serviceFlow-flow__item {
        width: 100%;
        margin-bottom: 0!important;
    }

    .serviceFlow-arrow {
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: -10px auto 8px;
    }

    .serviceFlow-flow__item {
        border-radius: 15px;
    }

    .serviceFlow-flow__item_pink .serviceFlow-flow__top {
        border-radius: 13px 13px 0 0;
    }

    .serviceFlow-flow__item_blue .serviceFlow-flow__top {
        border-radius: 13px 13px 0 0;
    }

    .serviceFlow-flow__top {
        font-size: 24px;
    }

    .serviceFlow-flow__small {
        font-size: 16px;
    }

    .serviceFlow-flow__item_pink .serviceFlow-flow__bottom_title {
        font-size: 20px;
    }

    .serviceFlow-flow__item_blue .serviceFlow-flow__bottom_title {
        font-size: 20px;
    }

    .serviceFlow-flow__bottom {
        padding: 12px 16px 24px;
    }

    .serviceFlow-balloon {
        font-size: 20px;
    }

    .serviceFlow-features {
        margin-top: 56px;
    }

    .serviceFlow-features__header {
        font-size: 18px;
        border-radius: 15px 15px 0 0;
        padding: 8px 16px;
    }

    .serviceFlow-features {
        border-radius: 17px;
    }

    .serviceFlow-features__inner {
        padding: 12px 16px 20px;
    }
}

@media screen and (max-width:560px){
    .serviceFlow-features__decoration1_sp {
        width: 72px;
    }

    .serviceFlow-features__decoration2_sp {
        width: 66px;
    }
}

@media screen and (max-width:380px){
    .serviceFlow-features__header {
        font-size: 16px;
        border-radius: 15px 15px 0 0;
    }
}

@media screen and (max-width:370px){
    .serviceFlow-balloon {
        font-size: 18px;
    }
}

@media screen and (max-width:340px){
    .serviceFlow-balloon {
        font-size: 16px;
    }
}

@media screen and (max-width:330px){
    .serviceFlow-features__header {
        font-size: 15.5px;
    }
}

/*--------------------------merit----------------------------*/
.merit {
    padding: 110px 0 80px;
    background-color: rgba(125, 188, 239, 0.15);
}

.merit-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.merit-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_white.png");
    background-size: contain;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.merit-title img {
    width: 112px;
    display: block;
    margin: 0 auto;
}

.merit-text {
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 6;
}

.merit-content__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.merit-content__sp {
    display: none;
}

.merit-item {
    width: 32%;
    position: relative;
    z-index: 10;
    padding: 0 24px 28px;
}

.merit-item::before {
    content: "";
    background-color: #fff;
    border-radius: 28px;
    height: 70%;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    position: absolute;
    z-index: -1;
}

.merit-img {
    height: 228px;
    width: auto;
}

.merit-img img {
    display: block;
    height: 100%;
    margin: 0 auto;
}

.merit-number {
    background-color: #fff;
    max-width: 133px;
    margin: 16px auto 8px;
    border-radius: 20px;
    padding: 8px 20px;
}

.merit-item__pink .merit-number {
    border: #FF8E93 1px solid;
}

.merit-item__blue .merit-number {
    border: #7DBCEF 1px solid;
}

.merit-item__yellow .merit-number {
    border: #FFBD29 1px solid;
}

.merit-number img {
    display: block;
    height: 14px;
    width: auto;
    margin: 0 auto;
}

.merit-item__title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4px;
}

.merit-item__pink .merit-item__title {
    color: #FF8E93;
}

.merit-item__blue .merit-item__title {
    color: #7DBCEF;
}

.merit-item__yellow .merit-item__title {
    color: #FFBD29;
}

.merit-item__small {
    margin-top: 8px;
    font-size: 12px;
}

@media screen and (max-width:1180px){
    .merit-img {
        height: 180px;
    }
}

@media screen and (max-width:1010px){
    .merit-img {
        height: 130px;
    }

    .merit-item::before {
        height: 80%;
    }
}

@media screen and (max-width:768px){
    .merit {
        padding: 70px 0 60px;
    }

    .merit-title::before {
        width: 90px;
        height: 90px;
    }

    .merit-title img {
        width: 82px;
    }
    
    .merit-text {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .merit-content__pc {
        display: none;
    }

    .merit-content__sp {
        display: block;
    }

    .merit-img {
        height: 196px;
    }

    .merit-item {
        padding: 0 16px 24px;
    }

    .merit .slick-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .merit .slick-slide {
        height: auto !important;
        margin: 0 10px;
    }

    .merit .slick-dots li button:before {
        font-size: 12px;
    }

    .merit .slick-dots {
        bottom: -35px;
    }

    .merit .slick-dots li.slick-active button:before {
        color: #FF8E93;
    }
}

@media screen and (max-width:390px){
    .merit-img {
        height: 160px;
    }
}

/*--------------------------supportSystem----------------------------*/
.supportSystem {
    padding: 110px 0 80px;
}

.supportSystem-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.supportSystem-title__top {
    color: #FF8E93;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    margin-bottom: 4px;
}

.supportSystem-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_pink.png");
    background-size: contain;
    opacity: 0.1;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.supportSystem-title img {
    width: 308px;
    display: block;
    margin: 0 auto;
}

.supportSystem-content {
    position: relative;
}

.supportSystem-decoration1_pc {
    position: absolute;
    left: 0;
    top: -40px;
    width: 270px;
}

.supportSystem-decoration2_pc {
    position: absolute;
    right: 0;
    top: -40px;
    width: 260px;
}

.supportSystem-decoration1_sp {
    display: none;
}

.supportSystem-decoration2_sp {
    display: none;
}

.supportSystem-blue {
    background-color: #7DBCEF;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 26px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 20px;
    margin: 0 auto;
    padding: 40px 24px;
}

.supportSystem-blue__br {
    display: none;
}

.supportSystem-arrow {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 12px auto;
}

.supportSystem-arrow img {
    display: block;
    width: 65px;
    margin: 0 auto;
}

.supportSystem-arrow__text {
    position: absolute;
    right: -182px;
    bottom: 10px;
    font-size: 24px;
    color: #7DBCEF;
    font-weight: 500;
    width: 170px;
}

.supportSystem-yellow__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.supportSystem-yellow {
    width: calc(49% - 12.5px);
    background-color: #FFF3D4;
    border: #FFBD29 1.5px solid;
    border-radius: 20px;
}

.supportSystem-yellow__top {
    background-color: #FFBD29;
    border-radius: 20px 20px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 26px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 24px;
}

.supportSystem-yellow__icon {
    width: 32px;
    margin-right: 8px;
}

.supportSystem-yellow__icon img {
    display: block;
    width: 100%;
}

.supportSystem-yellow__bottom {
    padding: 16px 24px;
    font-size: 20px;
    text-align: center;
}

.supportSystem-plus {
    width: 25px;
}

.supportSystem-plus img {
    display: block;
    width: 100%;
}

@media screen and (max-width:1270px){
    .supportSystem-decoration1_pc {
        width: 230px;
    }

    .supportSystem-decoration2_pc {
        width: 220px;
    }
}

@media screen and (max-width:1190px){
    .supportSystem-decoration1_pc {
        width: 200px;
        top: -20px;
    }

    .supportSystem-decoration2_pc {
        width: 190px;
        top: -20px;
    }
}

@media screen and (max-width:1120px){
    .supportSystem-decoration1_pc {
        width: 250px;
    }

    .supportSystem-decoration2_pc {
        width: 240px;
    }

    .supportSystem-blue__br {
        display: block;
    }
}

@media screen and (max-width:980px){
    .supportSystem-decoration1_pc {
        width: 210px;
        top: 10px;
    }

    .supportSystem-decoration2_pc {
        width: 190px;
        top: 10px;
    }
}

@media screen and (max-width:900px){
    .supportSystem-blue {
        font-size: 20px;
    }

    .supportSystem-yellow__top {
        font-size: 20px;
    }

    .supportSystem-yellow__bottom {
        font-size: 16px;
    }
}

@media screen and (max-width:890px){
    .supportSystem-decoration1_pc {
        width: 180px;
    }

    .supportSystem-decoration2_pc {
        width: 160px;
    }
}

@media screen and (max-width:768px){
    .supportSystem {
        padding: 70px 0 60px;
    }

    .supportSystem-title__top {
        font-size: 18px;
    }

    .supportSystem-title {
        margin-bottom: 12px;
    }

    .supportSystem-title::before {
        width: 90px;
        height: 90px;
    }

    .supportSystem-title img {
        width: 174px;
    }

    .supportSystem-decoration1_pc {
        display: none;
    }

    .supportSystem-decoration2_pc {
        display: none;
    }

    .supportSystem-decoration1_sp {
        display: block;
        position: absolute;
        left: -6px;
        top: -66px;
        width: 103px;
    }

    .supportSystem-decoration2_sp {
        display: block;
        position: absolute;
        left: -6px;
        top: -60px;
        width: 74px;
    }

    .supportSystem-blue {
        width: 100%;
        padding: 12px 16px;
        border-radius: 15px;
    }

    .supportSystem-arrow img {
        width: 50px;
    }

    .supportSystem-arrow__text {
        font-size: 18px;
        bottom: 6px;
    }

    .supportSystem-yellow__wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .supportSystem-yellow {
        width: 100%;
        position: relative;
    }

    .supportSystem-plus {
        margin: 12px auto;
    }

    .supportSystem-yellow__top {
        padding: 12px 16px;
    }

    .supportSystem-yellow__bottom {
        padding: 12px 16px 16px;
    }
}

@media screen and (max-width:340px){
    .supportSystem-yellow__bottom {
        font-size: 15px;
    }
}

/*--------------------------officialSponsor----------------------------*/
.officialSponsor {
    padding: 110px 0 80px;
    background-color: rgba(247, 165, 165, 0.1);
}

.officialSponsor-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.officialSponsor-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_white.png");
    background-size: contain;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.officialSponsor-title img {
    width: 252px;
    display: block;
    margin: 0 auto;
}

.officialSponsor-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 24px;
}



.is-accordion .officialSponsor-block__inner {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 1s ease;
  -o-transition: height 1s ease;
  transition: height 1s ease;
}

.officialSponsor-block__innerWrap {
  padding: 20px 40px 40px;
}

.officialSponsor-block {
    border-radius: 20px;
    border: #FF8E93 1.5px solid;
    background-color: #fff;
    overflow: hidden;
}

.officialSponsor-block:not(:first-of-type) {
    margin-top: 24px;
}

.officialSponsor-header {
    background-color: #FF8E93;
    border-radius: 18px 18px 0 0;
    padding: 16px 40px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    position: relative;
}

.officialSponsor-block.is-accordion .officialSponsor-header::after {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;   /* サイズ調整 */
  height: 28px;
  background: url("../images/accordion_arrow.png") no-repeat center/contain;
}

/* 開いたら回転 */
.officialSponsor-block.is-open .officialSponsor-header::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.officialSponsor-block.is-accordion .officialSponsor-header {
  cursor: pointer;
}

.officialSponsor-block__text {
    text-align: center;
    margin-bottom: 16px;
}

.officialSponsor-logo__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.officialSponsor-logo {
    width: 32%;
    margin-bottom: 12px;
}

.officialSponsor-logo img {
    display: block;
    width: 100%;
}

.officialSponsor-logo:nth-of-type(2), .officialSponsor-logo:nth-of-type(5), .officialSponsor-logo:nth-of-type(8), .officialSponsor-logo:nth-of-type(11) {
    margin: 0 2%;
}

.officialSponsor-item__title {
    display: block;
    background-color: rgba(247, 165, 165, 0.2);
    padding: 8px 20px;
    margin-bottom: 12px;
    margin-top: 32px;
}

.officialSponsor-item__title h4 {
    padding-left: 16px;
    position: relative;
    font-weight: 500;
    font-size: 24px;
}

.officialSponsor-item__title h4::before {
    content: "";
    width: 6px;
    height: 100%;
    background-color: #FF8E93;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.officialSponsor-item__tag_wrapper {
    margin-left: -6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.officialSponsor-item__tag {
    color: #FF8484;
    border-radius: 50px;
    border: #FF8484 1px solid;
    padding: 4px 12px 3px;
    margin: 3px 6px;
    font-weight: 500;
}

.scrollhint {
  overflow-x: auto;
}

.officialSponsor-table {
    margin-top: 32px;
}

.officialSponsor-table__1 {
  table-layout: fixed;
}

.officialSponsor-table__1 .officialSponsor-table__head,
.officialSponsor-table__1 .officialSponsor-table__contents {
  width: 100%;
}

.officialSponsor-table__multiple {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
}

.officialSponsor-table__multiple 
.officialSponsor-table__head,
.officialSponsor-table__multiple 
.officialSponsor-table__contents {
  min-width: 260px;
  max-width: 320px;
}

.officialSponsor-table__left {
    background-color: #FF8E93;
    color: #fff;
    font-size: 18px;
    text-align: center;
    width: 112px;
    vertical-align: middle;
    padding: 16px 20px;
    min-width: 112px;
}

.officialSponsor-table__left_none {
    background-color: transparent;
}

.officialSponsor-table tr:not(:last-of-type) .officialSponsor-table__left {
    border-bottom: #fff 1px solid;
}

.officialSponsor-table__head_pink {
    background-color: #FF8E93;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
    text-align: center;
    padding: 16px 20px;
}

.officialSponsor-table__head_blue {
    background-color: #7DBCEF;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
    text-align: center;
    padding: 16px 20px;
}

.officialSponsor-table__head_yellow {
    background-color: #FFBD29;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
    text-align: center;
    padding: 16px 20px;
}

.officialSponsor-table__head {
    width: 100%;
    padding: 16px 20px;
}

.officialSponsor-table__contents {
    width: 100%;
    padding: 16px 20px;
}

.officialSponsor-table__head,
.officialSponsor-table__contents {
  width: auto;
}

.officialSponsor-table__pink {
    background-color: rgba(247, 165, 165, 0.15);
}

.officialSponsor-table tr:not(:last-of-type) .officialSponsor-table__pink {
    border-bottom: 1px solid #FF8E93;
}

.officialSponsor-table__blue {
    background-color: rgba(125, 188, 239, 0.15);
}

.officialSponsor-table tr:not(:last-of-type) .officialSponsor-table__blue {
    border-bottom: 1px solid #7DBCEF;
}

.officialSponsor-table__yellow {
    background-color: rgba(255, 189, 41, 0.15);
}

.officialSponsor-table tr:not(:last-of-type) .officialSponsor-table__yellow {
    border-bottom: 1px solid #FFBD29;
}

.officialSponsor-applicationPeriod__list_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.officialSponsor-applicationPeriod__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 6px 24px 6px 0;
}

.officialSponsor-applicationPeriod__list h6 {
    color: #FF8484;
    font-weight: 500;
    padding: 4px 12px 3px;
    border-radius: 50px;
    border: #FF8484 1px solid;
    margin-right: 12px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    white-space: nowrap;
}

.officialSponsor-applicationPeriod__list p {
    margin-top: 4px;
}

.officialSponsor-item__text {
    margin-top: 8px;
}

.officialSponsor-item__text_small {
    font-size: 14px;
    margin-top: 4px;
}

.officialSponsor-schedule__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 12px;
    margin-top: 12px;
}

.officialSponsor-schedule__circle_yellow {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #FFBD29;
}

.officialSponsor-schedule__circle_blue {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #7DBCEF;
    margin: 0 2px 0 4px;
}

.officialSponsor-schedule__pc {
    display: block;
    width: 100%;
}

.officialSponsor-schedule__sp {
    display: none;
}

.officialSponsor-scedule__text {
    position: relative;
    padding-left: 38px;
    margin: 12px 0;
}

.officialSponsor-scedule__text::before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #BDDDF7;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.officialSponsor-table__br {
    display: none;
}


@media screen and (min-width: 769px) {
    .officialSponsor-table__2_3 {
        table-layout: fixed;
    }
}

@media screen and (max-width: 768px) {
    .officialSponsor {
        padding: 70px 0 60px;
    }

    .officialSponsor-title::before {
        width: 90px;
        height: 90px;
    }

    .officialSponsor-title img {
        width: 182px;
    }
    
    .officialSponsor-text {
        font-size: 16px;
        text-align: left;
        margin-bottom: 20px;
    }

    .officialSponsor-block {
        border-radius: 15px;
    }

    .officialSponsor-header {
        padding: 12px 16px;
        font-size: 20px;
        border-radius: 13px 13px 0 0;
    }

    .officialSponsor-block__innerWrap {
        padding: 16px 16px 28px;
    }

    .officialSponsor-logo__wrapper {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .officialSponsor-logo:nth-of-type(2), .officialSponsor-logo:nth-of-type(5), .officialSponsor-logo:nth-of-type(8), .officialSponsor-logo:nth-of-type(11) {
        margin: 0 0 8px;
    }

    .officialSponsor-block__text {
        text-align: left;
        margin-bottom: 12px;
    }

    .officialSponsor-logo {
        width: 49%;
        margin-bottom: 8px;
    }

    .officialSponsor-item__title {
        margin-top: 28px;
        padding: 8px 12px;
    }

    .officialSponsor-item__title h4 {
        font-size: 18px;
        padding-left: 12px;
    }

    .officialSponsor-item__title h4::before {
        width: 4px;
    }

    .officialSponsor-table {
        margin-top: 28px;
    }

    .officialSponsor-table__contents {
        padding: 16px 12px;
    }

    .officialSponsor-table__left {
        width: 75px;
        font-size: 14px;
        padding: 16px 8px;
        min-width: 75px;
    }

    .officialSponsor-table__1 .officialSponsor-table__head,
    .officialSponsor-table__1 .officialSponsor-table__contents {
        width: calc(100% - 75px);
    }

    .officialSponsor-table__2_3 {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        min-width: 100%;
    }

    .officialSponsor-table__2_3 
    .officialSponsor-table__head,
    .officialSponsor-table__2_3 
    .officialSponsor-table__contents {
        max-width: 204px;
    }

    .officialSponsor-table__multiple 
    .officialSponsor-table__head,
    .officialSponsor-table__multiple 
    .officialSponsor-table__contents {
        min-width: auto;
        max-width: 204px;
    }

    .officialSponsor-table__head {
        padding: 16px 12px;
        font-size: 15px;
    }

    .officialSponsor-table__contents {
        font-size: 15px;
    }

    .officialSponsor-schedule__pc {
        display: none;
    }

    .officialSponsor-schedule__sp {
        display: block;
        min-width: 646px;
    }

    .officialSponsor-block.is-accordion .officialSponsor-header::after {
        right: 12px;
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 360px) {
    .officialSponsor-table__br {
        display: block;
    }

    .officialSponsor-table__left {
        width: 56px;
        padding: 16px 8px;
        min-width: 56px;
    }
}

/*--------------------------sponsoringCompany----------------------------*/
.sponsoringCompany {
    padding: 110px 0 80px;
}

.sponsoringCompany-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.sponsoringCompany-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_pink.png");
    background-size: contain;
    opacity: 0.1;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.sponsoringCompany-title img {
    width: 308px;
    display: block;
    margin: 0 auto;
}

.sponsoringCompany-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 28px;
}

.sponsoringCompany-logo__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.sponsoringCompany-logo__wrapper::before{
  content:"";
  display: block;
  width:24%;
  -webkit-box-ordinal-group:2;
      -ms-flex-order:1;
          order:1;
}

.sponsoringCompany-logo__wrapper::after{
  content:"";
  display: block;
  width:24%;
}

.sponsoringCompany-logo {
    width: 24%;
    margin: 5px 0;
}

.sponsoringCompany-logo img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .sponsoringCompany {
        padding: 70px 0 60px;
    }

    .sponsoringCompany-title::before {
        width: 90px;
        height: 90px;
    }

    .sponsoringCompany-title img {
        width: 198px;
    }

    .sponsoringCompany-text {
        text-align: left;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .sponsoringCompany-logo {
        width: 49%;
        margin: 2.5px 0;
    }
}

/*--------------------------service----------------------------*/
.service {
    padding: 110px 0 80px;
    background-color: rgba(255, 189, 41, 0.15);
}

.service-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.service-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_white.png");
    background-size: contain;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.service-title img {
    width: 144px;
    display: block;
    margin: 0 auto;
}

.service-text {
    font-size: 18px;
    margin-bottom: 28px;
    text-align: center;
}

.service-block:not(:last-of-type) {
    margin-bottom: 24px;
}

.service-block__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 8px 40px;
    font-size: 28px;
    font-weight: 500;
}

.service-block__pink .service-block__header {
    background-color: #FF8E93;
}

.service-block__pink .service-block__header_en {
    width: 84px;
}

.service-block__header_en {
    margin-left: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.service-block__header_en img {
    display: block;
    width: 100%;
}

.service-block__blue .service-block__header {
    background-color: #7DBCEF;
}

.service-block__blue .service-block__header_en {
    width: 165px;
}

.service-block__yellow .service-block__header {
    background-color: #FFBD29;
}

.service-block__yellow .service-block__header_en {
    width: 96px;
}

.service-block__inner {
    background-color: #fff;
    padding: 16px 40px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 0 0 20px 20px;
}

.service-item {
    width: 49%;
    padding: 20px 32px 24px;
    border-radius: 8px;
}

.service-item:not(:first-of-type, :nth-of-type(2)) {
    margin-top: 16px;
}

.service-block__pink .service-item {
    background-color: rgba(247, 165, 165, 0.2);
}

.service-block__blue .service-item {
    background-color: rgba(125, 188, 239, 0.2);
}

.service-block__yellow .service-item {
    background-color: rgba(255, 189, 41, 0.2);
}

.service-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.service-block__pink .service-item__title {
    color: #FF8484;
    border-bottom: #FF8484 3px dotted;
}

.service-block__blue .service-item__title {
    color: #60AEED;
    border-bottom: #60AEED 3px dotted;
}

.service-block__yellow .service-item__title {
    color: #FF9D00;
    border-bottom: #FF9D00 3px dotted;
}

.service-item__title h5 {
    margin-left: 12px;
}

.service-item__icon {
    height: 57px;
    width: auto;
}

.service-item__icon img {
    width: auto;
    display: block;
    height: 57px;
}

.service-item__list__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.service-item__list {
    position: relative;
    padding-left: 14px;
    margin: 4px 20px 4px 0;
}

.service-item__list::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 6px;
}

.service-block__pink .service-item__list::before {
    background-color: #FF8E93;
}


.service-block__blue .service-item__list::before {
    background-color: #7DBCEF;
}

.service-block__yellow .service-item__list::before {
    background-color: #FFBD29;
}

.service-item__text_small {
    font-size: 14px;
    margin-top: 4px;
}

@media screen and (max-width: 940px) {
    .service-item__title {
        font-size: 20px;
    }
}

@media screen and (max-width: 850px) {
    .service-block__inner {
        padding: 16px 24px 24px;
    }

    .service-item {
        padding: 20px 16px;
    }
}

@media screen and (max-width: 768px) {
    .service {
        padding: 70px 0 60px;
    }

    .service-title::before {
        width: 90px;
        height: 90px;
    }

    .service-title img {
        width: 92px;
    }

    .service-text {
        text-align: left;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .service-block__header {
        font-size: 24px;
        padding: 8px 16px;
    }

    .service-block__pink .service-block__header_en {
        width: 76px;
    }

    .service-block__blue .service-block__header_en {
        width: 149px;
    }

    .service-block__yellow .service-block__header_en {
        width: 87px;
    }

    .service-block__inner {
        padding: 16px 16px 24px;
    }

    .service-item__icon {
        height: 42px;
    }

    .service-item__icon img {
        height: 42px;
    }

    .service-item__title h5 {
        margin-left: 8px;
    }
}

@media screen and (max-width: 650px) {
    .service-item {
        width: 100%;
    }

    .service-item:not(:first-of-type) {
        margin-top: 16px;
    }
}

@media screen and (max-width: 350px) {
    .service-block__header {
        font-size: 22px;
    }
}

/*--------------------------benefits----------------------------*/
.benefits {
    padding: 110px 0 80px;
    background-color: rgba(125, 188, 239, 0.15);
}

.benefits-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.benefits-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_white.png");
    background-size: contain;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.benefits-title img {
    width: 148px;
    display: block;
    margin: 0 auto;
}

.benefits-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.benefits-item {
    width: 49%;
}

.benefits-item__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 28px;
}

.benefits-item__number {
    width: 15%;
}

.benefits-item__number img {
    width: 100%;
    display: block;
}

.benefits-item__text p {
    width: 82%;
}

@media screen and (max-width: 768px) {
    .benefits {
        padding: 70px 0 60px;
    }

    .benefits-title::before {
        width: 90px;
        height: 90px;
    }

    .benefits-title img {
        width: 102px;
    }

    .benefits-item {
        width: 100%;
    }

    .benefits-item:not(:first-of-type) {
        margin-top: 20px;
    }

    .benefits-item__text {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 480px) {
    .benefits-item__number {
        width: 20%;
    }

    .benefits-item__text p {
        width: 78%;
    }
}

/*--------------------------fee----------------------------*/
.fee {
    padding: 110px 0 80px;
}

.fee-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.fee-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_pink.png");
    background-size: contain;
    opacity: 0.1;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.fee-title img {
    width: 86px;
    display: block;
    margin: 0 auto;
}

.fee-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
}

.fee-item__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 790px;
    margin: 0 auto;
}

.fee-item {
    width: 49%;
    position: relative;
    border-radius: 20px;
    padding: 48px 28px 40px;
}

.fee-item__pink {
    background-color: rgba(247, 165, 165, 0.2);
    border: #FF8E93 1.5px solid;
}

.fee-item__yellow {
    background-color: rgba(255, 189, 41, 0.2);
    border: #FFBD29 1.5px solid;
}

.fee-item__decoration1 {
    position: absolute;
    left: -110px;
    width: 137px;
    bottom: 0;
    display: block;
    max-inline-size: none;
    max-block-size: none;
    z-index: 12;
}

.fee-item__decoration2 {
    position: absolute;
    right: -99px;
    width: 143px;
    bottom: 0;
    display: block;
    max-inline-size: none;
    max-block-size: none;
    z-index: 11;
}

.fee-item__title {
    font-size: 20px;
    padding: 12px 24px;
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 50px;
}

.fee-item__pink .fee-item__title {
    background-color: #FF8E93;
}

.fee-item__yellow .fee-item__title {
    background-color: #FFBD29;
}

.fee-item__price {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.fee-item__pink .fee-item__price {
    color: #FF8E93;
    border-bottom: #FF8E93 3px dotted;
}

.fee-item__yellow .fee-item__price {
    color: #FFBD29;
    border-bottom: #FFBD29 3px dotted;
}

.fee-item__price_big {
    font-size: 46px;
}

.fee-item__about {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.fee-item__pink .fee-item__about {
    color: #FF8E93;
}

.fee-item__yellow .fee-item__about {
    color: #FFBD29;
}

.fee-conditions {
    background-color: rgba(125, 188, 239, 0.1);
    border: 1.5px solid #7DBCEF;
    margin-top: 40px;
    padding: 28px 80px 32px;
    border-radius: 20px;
}

.fee-conditions__title_wrapper {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.fee-conditions__title {
    position: relative;
    color: #7DBCEF;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
}

.fee-conditions__title::before {
    content: "";
    background-image: url("../images/flower_blue.png");
    width: 8px;
    height: 8px;
    background-size: contain;
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.fee-conditions__title::after {
    content: "";
    background-image: url("../images/flower_blue.png");
    width: 8px;
    height: 8px;
    background-size: contain;
    position: absolute;
    right: -16px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.fee-conditions__text {
    margin-bottom: 12px;
}

.fee-conditions__list_wrapper {
    margin-bottom: 12px;
}

.fee-conditions__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.fee-conditions__list:not(:first-of-type) {
    margin-top: 8px;
}

.fee-conditions__list_number {
    color: #fff;
    font-weight: 500;
    background-color: #7DBCEF;
    font-size: 14px;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 8px;
}

.fee-conditions__text_small {
    font-size: 14px;
}

.fee-conditions__text_small:not(:first-of-type) {
    margin-top: 4px;
}

@media screen and (max-width: 1040px) {
    .fee-item__decoration1 {
        left: -50px;
        width: 87px;
    }

    .fee-item__decoration2 {
        right: -59px;
        width: 93px;
    }

    .fee-conditions {
        padding: 28px 40px 32px;
    }
}

@media screen and (max-width: 930px) {
    .fee-item__decoration1 {
        left: -20px;
        width: 67px;
    }

    .fee-item__decoration2 {
        right: -29px;
        width: 73px;
    }
}

@media screen and (max-width: 768px) {
    .fee {
        padding: 70px 0 60px;
    }

    .fee-title::before {
        width: 90px;
        height: 90px;
    }

    .fee-title img {
        width: 58px;
    }

    .fee-text {
        text-align: left;
        font-size: 16px;
        margin-bottom: 32px;
    }

    .fee-item__wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .fee-item__decoration1 {
        bottom: 70px;
        left: -8px;
        width: 54px;
    }

    .fee-item__decoration2 {
        bottom: 70px;
        right: -8px;
        width: 56px;
    }

    .fee-item {
        width: 100%;
        border-radius: 10px;
        padding: 26px 16px 20px;
    }

    .fee-item:not(:first-of-type) {
        margin-top: 28px;
    }

    .fee-item__title {
        font-size: 16px;
        padding: 4px 16px;
        top: -15px;
    }

    .fee-item__price {
        font-size: 20px;
        margin-bottom: 12px;
        padding-bottom: 4px;
    }

    .fee-item__price_big {
        font-size: 30px;
    }

    .fee-item__about {
        font-size: 16px;
    }

    .fee-conditions {
        padding: 24px 16px 28px;
        border-radius: 12px;
        margin-top: 24px;
    }

    .fee-conditions__title {
        font-size: 20px;
    }

    .fee-conditions__title_wrapper {
        padding: 0 20px;
    }
}

@media screen and (max-width: 360px) {
    .fee-item__decoration1 {
        bottom: 70px;
        left: -8px;
        width: 44px;
    }

    .fee-item__decoration2 {
        bottom: 70px;
        right: -8px;
        width: 46px;
    }

    .fee-conditions__title {
        font-size: 18px;
    }
}

/*--------------------------application----------------------------*/
.application {
    background-color: rgba(255, 189, 41, 0.1);
    padding: 110px 0 80px;
}

.application-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_white.png");
    background-size: contain;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.application-title img {
    width: 262px;
    display: block;
    margin: 0 auto;
}

.application-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.application-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 28px;
}

.application-item__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.application-item {
    width: calc(24% - 12.75px);
    background-color: #fff;
    border-radius: 28px;
    padding: 20px 16px 28px;
}

.application-item__pink {
    border: #FF8E93 1.5px solid;
}

.application-item__blue {
    border: #60AEED 1.5px solid;
}

.application-arrow {
    width: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.application-arrow img {
    width: 100%;
    display: block;
}

.application-item__img {
    width: 113px;
    margin: 0 auto;
}

.application-item__img img {
    width: 100%;
    display: block;
}

.application-item__title {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    margin: 12px 0 8px;
}

.application-item__pink .application-item__title {
    color: #FF8484;
}

.application-item__blue .application-item__title {
    color: #60AEED;
}

@media screen and (max-width:980px){
    .application-arrow__blue {
        display: none;
    }

    .application-item__wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .application-item {
        width: calc(49% - 8.5px);
    }

    .application-item1, .application-item2 {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 768px) {
    .application {
        padding: 70px 0 60px;
    }

    .application-title::before {
        width: 90px;
        height: 90px;
    }

    .application-title img {
        width: 186px;
    }

    .application-text {
        font-size: 16px;
        text-align: left;
        margin-bottom: 20px;
    }

    .application-arrow__blue {
        display: block;
    }

    .application-item {
        width: 100%;
        margin-bottom: 0!important;
        border-radius: 15px;
        padding: 20px 16px 24px;
    }

    .application-arrow {
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: -14px auto -14px;
    }

    .application-item__title {
        font-size: 20px;
    }

    .application .btn {
        margin-top: 20px;
    }
}

/*--------------------------Q&A----------------------------*/
.qa {
    padding: 110px 0 80px;
}

.qa-title {
    margin-bottom: 55px;
    font-family: Arial,"Zen Kaku Gothic New","Avenir",sans-serif;
}


.qa-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_pink.png");
    background-size: contain;
    opacity: 0.1;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.qa-title img {
    width: 316px;
    display: block;
    margin: 0 auto;
}

.qa-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.qa-item {
    position: relative;
}

.qa-item:not(:first-of-type) {
    margin-top: 46px;
}

.qa-question {
    color: #fff;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
    font-size: 20px;
    width: 580px;
}

.qa-item__pink .qa-question {
    background-color: #FF8E93;
}

.qa-item__blue .qa-question {
    background-color: #60AEED;
}

.qa-item__yellow .qa-question {
    background-color: #FFBD29;
}

.qa-question__q {
    width: 33px;
    min-width: 33px;
    margin-right: 8px;
}

.qa-question__q img {
    width: 100%;
    display: block;
}

.qa-question__title {
    width: calc(100% - 41px);
}

.qa-answer {
    border-radius: 20px;
    padding: 42px 24px 28px;
    margin-left: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.qa-item__pink .qa-answer {
    background-color: rgba(247, 165, 165, 0.2);
}

.qa-item__blue .qa-answer {
    background-color: rgba(125, 188, 239, 0.2);
}

.qa-item__yellow .qa-answer {
    background-color: rgba(255, 189, 41, 0.2);
}

.qa-answer__a {
    width: 33px;
    min-width: 33px;
    margin-right: 8px;
}

.qa-answer__a img {
    display: block;
    width: 100%;
}

.qa-answer__text_wrapper {
    width: calc(100% - 41px);
    margin-top: 6px;
}

.qa-answer__small {
    margin-top: 12px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .qa {
        padding: 70px 0 60px;
    }

    .qa-title::before {
        width: 90px;
        height: 90px;
    }

    .qa-title img {
        width: 228px;
    }

    .qa-question {
        font-size: 16px;
        padding: 8px 16px;
        width: 92%;
    }

    .qa-question__q {
        width: 26px;
        min-width: 26px;
    }

    .qa-answer__a {
        width: 26px;
        min-width: 26px;
    }

    .qa-answer {
        margin-left: 20px;
        padding: 42px 16px 24px;
    }

    .qa-answer__text_wrapper {
        margin-top: 3px;
    }
}

/*--------------------------caution----------------------------*/
.caution {
    padding: 110px 0 80px;
    background-color: rgba(247, 165, 165, 0.1);
}

.caution-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.caution-title::before {
    content: "";
    display: block;
    background-image: url("../images/flower_white.png");
    background-size: contain;
    width: 135px;
    height: 135px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.caution-title img {
    width: 142px;
    display: block;
    margin: 0 auto;
}

.caution-item:not(:first-of-type) {
    margin-top: 24px;
}

.caution-content__title {
    display: block;
    background-color: rgba(247, 165, 165, 0.2);
    padding: 8px 20px;
    margin-bottom: 12px;
}

.caution-content__title h5 {
    padding-left: 16px;
    position: relative;
    font-weight: 500;
    font-size: 24px;
}

.caution-content__title h5::before {
    content: "";
    width: 6px;
    height: 100%;
    background-color: #FF8E93;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.caution-list {
    position: relative;
    padding-left: 18px;
}

.caution-list:not(:last-of-type) {
    margin-bottom: 8px;
}

.caution-list::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #FF8E93;
    position: absolute;
    left: 0;
    top: 6px;
}

.caution-list__small {
    font-size: 14px;
    margin-top: 4px;
}

@media screen and (max-width: 768px) {
    .caution {
        padding: 70px 0 60px;
    }

    .caution-title::before {
        width: 90px;
        height: 90px;
    }

    .caution-title img {
        width: 104px;
    }

    .caution-content__title {
        margin-top: 28px;
        padding: 8px 12px;
    }

    .caution-content__title h5 {
        font-size: 18px;
        padding-left: 12px;
    }

    .caution-content__title h5::before {
        width: 4px;
    }
}

/*--------------------------footer----------------------------*/
.footer {
    background-color: #FF8E93;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

@media screen and (max-width: 768px) {
    .footer {
        font-size: 14px;
    }
}