
@font-face {
	font-family: 'MyFont';
	src: url(../font/MPLUS1p-Medium.ttf);
}

body{
    font-family: MyFont;
    color: #333;
}

.main_wrap,
.main_title,
.all_wrap {
    position: relative;
}
.hover_action{
opacity: 1;
transition: 0.3s;
}

.hover_action:hover{
    opacity: 0.5;
transition: 0.3s;
}

.purun,
.purun2,
.main_title:before,
.main_wrap::before,
.all_wrap::after {
    position: absolute;
}

.main_title,
.main_img,
.all_wrap  {
    margin: 0 auto;
}

.mt2 {
    margin-top: 2%;
}

.mt4 {
    margin-top: 4%;
}

.content_inner{
    padding: 4%;
}

.all_wrap {
    max-width: 860px;
    width: 100%;
    padding-bottom: 2%;
    background: url(./img/bg_under3.jpg)no-repeat;
    background-size: contain;
}

.all_wrap::after {
    content: '';
    z-index: -15;
    background: #def0f9;
}

.footer_bg{
    background: url(./img/wave.svg)no-repeat;
}


.underline {
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 20%, rgba(119, 218, 249, 1) 20%, rgba(153, 227, 251, 1) 40%, rgba(255, 255, 255, 1) 40%);
}

.main_wrap::before {
    width: 100%;
    height: 100%;
    content: '';
    z-index: -15;
    background: rgb(222, 240, 249);
    background: linear-gradient(0deg, rgba(222, 240, 249, 1) 90%, rgba(255, 255, 255, 1) 90%);
    right: 0;
}

.main_title,
.copyright{
    text-align: center;
}
.main_title {
    z-index: 999;
}

.main_img {
    width: 65%;
}
.txt_r{
    text-align: right;
    margin-top: 1%;
}

.main_title:before {
    width: 104%;
    height: 100%;
    content: '';
    background: url(./img/bg_main2.png)no-repeat;
    background-size: contain;
    display: block;
    z-index: 9;
}

.bg_wh {
    background: #fff;
    border-radius: 15px;
    padding: 2% 0;
}

.bg_sk {
    background: #def0f9;
    color: #00a2d8;
    display: inline-block;
    padding: 1% 4%;
    max-width: 250px;
}
.copyright{
    margin-top: 6%;
  }

.purun {
    animation: purun 3.6s linear 1s 1;
    animation-iteration-count: infinite;
    width: 15%;
    right: 8px;
}


.purun2 {
    animation: purun2 4s infinite;
    display: inline-block;
    width: 15%;
    left: 8px;
    top: 12%;
}

@keyframes purun {
    0% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    15% {
        transform: scale(0.9, 0.9) translate(0%, 5%);
    }

    30% {
        transform: scale(1.3, 0.8) translate(0%, 10%);
    }

    50% {
        transform: scale(0.8, 1.3) translate(0%, -10%);
    }

    70% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }

    100% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}
@keyframes purun2 {
    0% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
    100% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}



/*PC*/
@media (min-width: 751px) {

    .p1 {
        font-size: 18px;
    }
}

/*スマホ*/
@media (max-width: 750px) {
    .p1 {
        font-size: 14px;
    }
}