@charset "utf-8";
html {
    font-size: 62.5%;
}
body {
    background-color: #ffffff;
    font-family: 'メイリオ', 'Meiryo', 'FP-HiraKakuProN-W3', 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ＭＳ ゴシック', Roboto, 'Droid Sans' , sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: 100%;
    line-height: 1.4;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: scroll;
    color: #000000;
    letter-spacing: 0;
    position: relative;
}
h1,h2,h3,h4,h5 {
    font-family: 'メイリオ', 'Meiryo', 'FP-HiraKakuProN-W3', 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ＭＳ ゴシック', Roboto, 'Droid Sans' , sans-serif;
}
/**********************************
  -- common
**********************************/
.l-contents {
    width: 100%;
}
.contents-wrap {
    width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 667px) {
    .contents-wrap {
        width: calc(100% - 30px);
    }
}
.link-btn-wrap {
    width: 678px;
    height: 80px;
    margin: 30px auto;
}
@media screen and (max-width: 667px) {
    .link-btn-wrap {
        width: 100%;
        max-width: 400px;
        height: 47px;
        margin: 20px auto;
    }
}
.link-btn-wrap a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}
.link-btn {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    background-color: #28a746;
    transition: all .2s linear;
}
.link-btn:hover {
    background-color: rgba(40, 167, 70, 0.7);
}
.link-btn_innerlink {
    position: absolute;
    top: calc(50% - 15px);
    display: block;
    width: 94%;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 667px) {
    .link-btn_innerlink {
        top: 50%;
        left: 50%;
        width: 100%;
        font-size: 1.4rem;
        text-align: center;
        transform: translate(-50%,-50%);
    }
    .link-btn_innerlink p {
        display: inline-block;
        line-height: 1;
    }
}
.link-btn_innerlink::after {
    position: absolute;
    content: '';
    top: calc(50% - 15px);
    right: 10px;
    width: 28px;
    height: 28px;
    background-image: url(../img/link-arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all .2s linear;
}
@media screen and (max-width: 667px) {
    .link-btn_innerlink::after {
        position: relative;
        display: inline-block;
        top: initial;
        right: initial;
        width: 16px;
        height: 16px;
        margin-bottom: -4px;
        margin-left: 10px;
    }
}
.link-btn:hover .link-btn_innerlink::after {
    transform: rotate(90deg);
}
.sp-show {
    display: none;
}
.pc-show {
    display: block;
}
.sp-br {
    display: none;
}
.pc-br {
    display: inline;
}
@media screen and (max-width: 667px) {
    .sp-show {
        display: block;
    }
    .pc-show {
        display: none;
    }
    .sp-br {
        display: inline;
    }
    .pc-br {
        display: none;
    }
}

/**********************************
  -- header
**********************************/
header.l-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    z-index: 10;
}
@media screen and (max-width: 667px) {
    header.l-header {
        height: 100px;
    }
}
.header {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 667px) {
    .header {
        width: calc(100% - 30px);
    }
}
.header_logo {
    width: 136px;
    height: 51px;
    margin-top: 40px;
}
@media screen and (max-width: 667px) {
    .header_logo {
        margin-top: 25px;
    }
}
.header_tel {
    width: 331px;
    height: 57px;
    margin-top: 40px;
}
@media screen and (max-width: 667px) {
    .header_tel {
        width: 200px;
        margin-top: 35px;
        margin-left: 30px;
    }
}

/**********************************
  -- main visual
**********************************/
.l-main-v {
    width: 100%;
    height: 100%;
}
.main-v-wrap {
    width: 100%;
    min-width: 1000px;
    height: 29vw;
    min-height: 558px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 667px) {
    .main-v-wrap {
        min-width: auto;
        min-height: auto;
        height: auto;
    }
}
.main-v {
    width: 100%;
    min-width: 1920px;
    height: 29vw;
    min-height: 558px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/main-visual.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media screen and (max-width: 667px) {
    .main-v {
        min-width: auto;
        height: auto;
        min-height: initial;
        position: relative;
        left: initial;
        transform: initial;
        background: none;
        padding-top: 90px;
    }
}

/**********************************
  -- content01
**********************************/
.icon-area {
    display: flex;
    flex-wrap: wrap;
    margin-top: 55px;
}
@media screen and (max-width: 667px) {
    .icon-area {
        margin-top: 35px;
    }
}
.icon-wrap {
    width: 250px;
}
@media screen and (max-width: 667px) {
    .icon-wrap {
        width: 25%;
    }
}
.icon_back img {
    width: 100%;
}
.icon_txt {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    text-align: center;
}
@media screen and (max-width: 667px) {
    .icon_txt {
        margin-top: 5px;
        font-size: 2.4vw;
    }
}

/**********************************
  -- content02
**********************************/
#content02 {
    margin-top: 60px;
}
@media screen and (max-width: 667px) {
    #content02 {
        margin-top: 40px;
    }
}
#content02 .content-wrap {
    width: 100%;
    height: 450px;
    position: relative;
    background-image: url(../img/back-content02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
@media screen and (max-width: 667px) {
    #content02 .content-wrap {
        height: auto;
        background: none;
    }
}
#content02 .content_txt {
    position: absolute;
    top: 64px;
    left: 64px;
}
@media screen and (max-width: 667px) {
    #content02 .content_txt {
        width: 85%;
        top: 7vw;
        left: 50%;
        transform: translateX(-50%);
    }
}
#content02 h2 {
    display: inline;
    color: #28a745;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    padding-right: 40px;
    border-bottom: 1px solid #b0a899;
}
@media screen and (max-width: 667px) {
    #content02 h2 {
        display: block;
        font-size: 4.8vw;
        padding-right: 0;
        padding-bottom: 2vw;
        text-align: center;
    }
}
#content02 ul {
    margin-top: 30px;
    color: #28a745;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.9;
}
@media screen and (max-width: 667px) {
    #content02 ul {
        margin-top: 4.5vw;
        font-size: 3vw;
        line-height: 1.2;
    }
}
#content02 li {
    position: relative;
    padding-left: 50px;
}
@media screen and (max-width: 667px) {
    #content02 li {
        padding-left: 7vw;
        padding-bottom: 2vw;
    }
}
#content02 li::before {
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    width: 31px;
    height: 33px;
    background-image: url(../img/list-star.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media screen and (max-width: 667px) {
    #content02 li::before {
        top: calc(50% - 3.7vw);
        width: 4.5vw;
        height: 4.7vw;
    }
}
.beginner-wrap {
    display: flex;
    margin-top: 22px;
    padding: 5px 40px;
    background-color: #FFF;
    border-radius: 20px;
}
@media screen and (max-width: 667px) {
    .beginner-wrap {
        margin-top: 3vw;
        padding: 3vw;
        border-radius: 10px;
    }
}
@media screen and (max-width: 330px) {
    .beginner-wrap {
        margin-top: 2vw;
        padding: 1vw 3vw;
    }
}
.beginner_img {
    width: 50px;
}
@media screen and (max-width: 667px) {
    .beginner_img {
        width: 11vw;
        position: relative;
    }
    .beginner_img img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}
.beginner_txt {
    padding: 11px 0 10px 30px;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
}
@media screen and (max-width: 667px) {
    .beginner_txt {
        padding: 0 0 0 5vw;
        font-size: 2.6vw;
    }
}
.content_img {
    position: absolute;
    right: 35px;
}
@media screen and (max-width: 667px) {
    .content_img {
        top: 15vw;
        width: 26vw;
        right: 5vw;
    }
}
.attent {
    position: absolute;
    bottom: 45px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
}
@media screen and (max-width: 667px) {
    .attent {
        bottom: 9vw;
    }
}
@media screen and (max-width: 400px) {
    .attent {
        bottom: 6vw;
    }
}
@media screen and (max-width: 330px) {
    .attent {
        bottom: 4vw;
    }
}
.attent_txt {
    display: inline;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}
@media screen and (max-width: 667px) {
    .attent_txt {
        font-size: 3vw;
    }
}
@media screen and (max-width: 400px) {
    .attent_txt {
        font-size: 3vw;
    }
    .attent_txt:first-child {
        display: block;
        margin-bottom: -1.5vw;
    }
}
@media screen and (max-width: 330px) {
    .attent_txt {
        font-size: 2.5vw;
    }
    .attent_txt:first-child {
        margin-bottom: -2.5vw;
    }
}
.attent img {
    margin-bottom: 3px;
}
@media screen and (max-width: 667px) {
    .attent img {
        width: 4vw;
    }}

/**********************************
  -- content03
**********************************/
#content03 {
    margin-top: 80px;
}
#content03 .contents-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#content03 h2 {
    width: 100%;
    color: #28a745;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    padding-bottom: 10px;
}
@media screen and (max-width: 667px) {
    #content03 h2 {
        font-size: 5vw;
    }
}
#content03 .content-wrap {
    width: 430px;
    height: 130px;
    border-radius: 10px;
    margin-top: 30px;
    padding: 25px;
    box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.2);
}
@media screen and (max-width: 667px) {
    #content03 .content-wrap {
        width: 100%;
        height: auto;
        margin-top: 3vw;
        padding: 3.5vw;
    }
}
#content03 .content-wrap h3 {
    font-size: 2.6rem;
    position: relative;
    padding-left: 38px;
}
@media screen and (max-width: 667px) {
    #content03 .content-wrap h3 {
        font-size: 4vw;
        padding-left: 8vw;
    }
}
#content03 .content-wrap h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 29px;
    height: 34px;
    background-image: url(../img/list-content03.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media screen and (max-width: 667px) {
    #content03 .content-wrap h3::before {
        width: 5vw;
        height: 5.5vw;
        background-size: contain;
    }
}
#content03 .content-wrap ul {
    margin-top: 15px;
    padding-left: 28px;
}
@media screen and (max-width: 667px) {
    #content03 .content-wrap ul {
        margin-top: 2vw;
        padding-left: 5vw;
    }
}
#content03 .content-wrap li {
    list-style: disc;
    font-size: 1.6rem;
    line-height: 1.5;
}
@media screen and (max-width: 667px) {
    #content03 .content-wrap li {
        font-size: 3vw;
    }
}
#content03-01 {
    background-color: #e8f5c7;
    background-image: url(../img/back-content03-01.png);
    background-repeat: no-repeat;
    background-position: right -33px center; 
}
@media screen and (max-width: 667px) {
    #content03-01 {
        background-size: 39vw;
        background-position: right -3vw bottom -3vw;
    }
}
#content03-02 {
    background-color: #e4f6da;
    background-image: url(../img/back-content03-02.png);
    background-repeat: no-repeat;
    background-position: right -22px bottom -15px; 
}
@media screen and (max-width: 667px) {
    #content03-02 {
        background-size: 26vw;
        background-position: right bottom -3vw;
    }
}
#content03-03 {
    background-color: #e4f6da;
    background-image: url(../img/back-content03-03.png);
    background-repeat: no-repeat;
    background-position: right -56px center; 
}
@media screen and (max-width: 667px) {
    #content03-03 {
        background-color: #e8f5c7;
        background-size: 34vw;
        background-position: right -6vw bottom -2vw;
    }
}
#content03-04 {
    background-color: #e8f5c7;
    background-image: url(../img/back-content03-04.png);
    background-repeat: no-repeat;
    background-position: right 4px bottom -18px; 
}
@media screen and (max-width: 667px) {
    #content03-04 {
        background-color: #e4f6da;
        background-size: 25vw;
        background-position: right 3vw bottom -4vw;
    }
}
#content03::after {
    content: "";
    display: block;
    width: 100%;
    height: 216px;
    background-image: url(../img/arrow-content03.png);
    background-repeat: no-repeat;
    background-position: center bottom 30px; 
}
@media screen and (max-width: 667px) {
    #content03::after {
        height: 44vw;
        background-size: 33vw;
        background-position: center bottom 5vw;
    }
}

/**********************************
  -- content04
**********************************/
#content04 .content-txt h2 {
    color: #28a745;
    font-size: 3.6rem;
    text-align: center;
}
@media screen and (max-width: 667px) {
    #content04 .content-txt h2 {
        font-size: 5vw;
    }
}
#content04 .content-txt img {
    margin-top: 55px;
}
@media screen and (max-width: 667px) {
    #content04 .content-txt img {
        margin-top: 5vw;
    }
}
#content04 .content-txt h3 {
    margin-top: 60px;
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
@media screen and (max-width: 667px) {
    #content04 .content-txt h3 {
        font-size: 4vw;
    }
}
#content04 .content-txt h3 span {
    font-size: 2rem;
    line-height: 2;
}
@media screen and (max-width: 667px) {
    #content04 .content-txt h3 span {
        font-size: 3vw;
    }
}
#content04 .content-txt p {
    margin-top: 45px;
    text-align: center;
}
@media screen and (max-width: 667px) {
    #content04 .content-txt p {
        font-size: 3.5vw;
        margin-top: 3vw;
        text-align: left;
    }
}
#content04 .link-btn-wrap {
    margin-top: 60px;
} 
@media screen and (max-width: 667px) {
    #content04 .link-btn-wrap {
        margin-top: 10vw;
    } 
}
#content04 .other-link-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 678px;
    margin: 0 auto;
}
@media screen and (max-width: 667px) {
    #content04 .other-link-btn-wrap {
        width: 100%;
    }
    #content04 .other-link-btn-wrap .seach_deatil,
    #content04 .other-link-btn-wrap .web-seach_deatil {
        width: 100%;
    }
}
#content04 .other-link-btn-wrap a {
    padding: 20px 10px;
    margin: 0 auto;
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    width: 300px;
}
@media screen and (max-width: 667px) {
    #content04 .other-link-btn-wrap a {
        width: calc(100% - 20px);
        max-width: 380px;
        font-size: 1.4rem;
        padding-top: 13px;
        padding-bottom: 13px;
        margin-bottom: 1rem;
    }
}
#content04 .other-link-btn-wrap a:hover {
    opacity: 0.7;
}
#content04 .other-link-btn-wrap .seach_deatil a {
    background: #db6687;
    transition: all .2s linear;
}
#content04 .other-link-btn-wrap .web-seach_deatil a {
    background: #4298A2;
    transition: all .2s linear;
}



/**********************************
  -- content05
**********************************/
#content05 {
    margin-top: 115px;
    padding-bottom: 90px;
    background-color: #e4f6da;
}
@media screen and (max-width: 667px) {
    #content05 {
        margin-top: 20vw;
        padding-bottom: 18vw;
    }
}
#content05 .contents-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#content05 h2 {
    width: 100%;
    margin-top: 65px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
}
@media screen and (max-width: 667px) {
    #content05 h2 {
        margin-top: 10vw;
        padding-bottom: 0;
        font-size: 4.8vw;
    }
}
#content05 h2 span {
    font-size: 2rem;
    line-height: 2;
}
@media screen and (max-width: 667px) {
    #content05 h2 span {
        font-size: 3vw;
    }
}
#content05 .content-wrap {
    width: 250px;
}
@media screen and (max-width: 667px) {
    #content05 .content-wrap {
        width: 50%;
        margin-top: 4vw;
    }
}
#content05 .content-wrap img {
    width: 100%;
}
#content05 .content-wrap h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #28a745;
    text-align: center;
    margin-top: 5px;
}
@media screen and (max-width: 667px) {
    #content05 .content-wrap h3 {
        font-size: 5vw;
    }
}
#content05 .content-wrap p {
    margin-top: 20px;
    padding: 0 10px;
}
#content05 .content-txt p {
    margin-top: 45px;
    text-align: center;
	width: 1000px;
}
@media screen and (max-width: 667px) {
    #content05 .content-wrap p {
        margin-top: 3vw;
        padding: 0 2vw;
        font-size: 3.5vw;
    }
	#content05 .content-txt p {
        font-size: 3.5vw;
        margin-top: 5vw;
        text-align: left;
		width: 100%;
	}
}
#content05 .other-link-btn-wrap {
/*
    display: flex;
*/
    flex-wrap: wrap;
    justify-content: space-between;
    width: 678px;
    margin: 30px auto 0;
}
@media screen and (max-width: 667px) {
    #content05 .other-link-btn-wrap {
        width: 100%;
		margin-top: 20px;
    }
    #content05 .other-link-btn-wrap .seach_deatil,
    #content05 .other-link-btn-wrap .web-seach_deatil {
        width: 100%;
    }
}
#content05 .other-link-btn-wrap a {
    padding: 20px 10px;
    margin: 0 auto;
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    width: 300px;
}
@media screen and (max-width: 667px) {
    #content05 .other-link-btn-wrap a {
        width: calc(100% - 20px);
        max-width: 380px;
        font-size: 1.4rem;
        padding-top: 13px;
        padding-bottom: 13px;
        margin-bottom: 1rem;
    }
}
#content05 .other-link-btn-wrap a:hover {
    opacity: 0.7;
}
#content05 .other-link-btn-wrap .seach_deatil a {
    background: #db6687;
    transition: all .2s linear;
}
#content05 .other-link-btn-wrap .web-seach_deatil a {
    background: #4298A2;
    transition: all .2s linear;
}

/**********************************
  -- content06
**********************************/
#content06 h2 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-top: 90px;
}
@media screen and (max-width: 667px) {
    #content06 h2 {
        font-size: 4.8vw;
        margin-top: 13vw;
    }
}
#content06 .content-wrap {
    margin-top: 45px;
    border-radius: 20px;
    box-shadow: 0 0 21px 0 rgba(0,0,0,0.2);
    padding: 75px 40px;
}
@media screen and (max-width: 667px) {
    #content06 .content-wrap {
        margin-top: 4vw;
        border-radius: 10px;
        padding: 10vw 5vw;
    }
}
.step-wrap {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 667px) {
    .step-wrap {
        justify-content: space-between;
    }
}
.step-wrap img {
    width: 165px;
	height: 145px;
}
@media screen and (max-width: 667px) {
    .step-wrap img {
        width: 30%;
        height: 23vw;
    }
}
.step-txt {
    margin-left: 30px;
    width: calc(100% - 200px);
}
@media screen and (max-width: 667px) {
    .step-txt {
        margin-left: 0;
        width: 66%;
    }
}
.step-txt h3 {
    padding-left: 145px;
    font-size: 2.8rem;
    font-weight: 700;
    color: #28a745;
    position: relative;
}
@media screen and (max-width: 667px) {
    .step-txt h3 {
        padding-left: 0;
        font-size: 3.8vw;
        line-height: 1;
    }
}
.step-txt h3 .step {
    position: absolute;
    top: -2px;
    left: 0;
    display: block;
    width: 80px;
    height: 30px;
    padding: 9px 25px 0 25px;
    margin-right: 13px;
    border-radius: 20px;
    background-color: #28a745;
    color: #FFF;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}
@media screen and (max-width: 667px) {
    .step-txt h3 .step {
        position: relative;
        top: 0;
        display: inline-block;
        width: auto;
        height: auto;
        padding: 1vw 12px;
        margin-right: 1vw;
        font-size: 2vw;
    }
}
.step-txt p {
    margin-top: 20px;
}
@media screen and (max-width: 667px) {
    .step-txt p {
        margin-top: 2vw;
        font-size: 3vw;
    }
}
.step-wrap::after {
    content: "";
    display: block;
    width: 100%;
    height: 77px;
    background-image: url(../img/arrow-content06.png);
    background-repeat: no-repeat;
    background-position: center top 20px; 
}
@media screen and (max-width: 667px) {
    .step-wrap::after {
        height: 20vw;
        background-size: 6vw;
        background-position: center top 5vw;
    }
}
.step-wrap:last-child::after {
    content: none;
}

/**********************************
  -- content07
**********************************/
#content07 .link-btn-wrap {
    margin-top: 100px;
}
@media screen and (max-width: 667px) {
    #content07 .link-btn-wrap {
        margin-top: 15vw;
    }
}

/**********************************
  -- content08
**********************************/
#content08 h2 {
    font-size: 3.3rem;
    text-align: center;
    margin-top: 100px;
    padding-bottom: 10px;
}
@media screen and (max-width: 667px) {
    #content08 h2 {
        font-size: 5.5vw;
        margin-top: 20vw;
        padding-bottom: 2vw;
    }
}
.voice-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
    padding: 40px;
    border-radius: 20px;
    border: solid 4px #b9dda6;
}
@media screen and (max-width: 667px) {
    .voice-wrap {
        flex-direction: column;
        flex-flow: column-reverse;
        margin-top: 4vw;
        padding: 10vw 5vw;
        border-radius: 10px;
    }
}
.voice_name {
    width: 100%;
    padding-bottom: 13px;
    padding-right: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    text-align: right;
    border-bottom: 1px solid #b0a899;
}
@media screen and (max-width: 667px) {
    .voice_name {
        padding-bottom: 0;
        padding-right: 0;
        font-size: 4vw;
        border-bottom: none;
    }
}
.voice_txt {
    width: 100%;
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.5;
}
@media screen and (max-width: 667px) {
    .voice_txt {
        margin-top: 0;
        font-size: 3.2vw;
    }
}
#content08 .content08_txt {
    margin-top: 30px;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
}
@media screen and (max-width: 667px) {
	#content08 .content08_txt {
		margin-top: 6vw;
		font-size: 3vw;
		text-align: left;
	}
}

/**********************************
  -- content09
**********************************/
#content09 {
    margin-top: 115px;
    margin-bottom: 250px;
}
@media screen and (max-width: 667px) {
    #content09 {
        margin-top: 40vw;
        margin-bottom: 30vw;
    }    
}
#content09 h2 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 667px) {
    #content09 h2 {
        font-size: 5.5vw;
    }
}
#content09 .content09_txt {
    margin-top: 30px;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
}
@media screen and (max-width: 667px) {
    #content09 .content09_txt {
        margin-top: 6vw;
        font-size: 3vw;
        text-align: left;
    }
}
.contact-form-wrap {
    margin-top: 50px;
    box-shadow: 0 0 21px 0 rgba(0,0,0,0.2);
    padding: 85px 100px;
}
@media screen and (max-width: 667px) {
    .contact-form-wrap {
        margin-top: 7vw;
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
        padding: 10vw 5vw;
        border-radius: 10px;
    }
}
.contact-form_txt {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: #F00;
}
@media screen and (max-width: 667px) {
    .contact-form_txt {
        font-size: 4vw;
    }
}
/* -- form */
.contact-form .wpcf7 {
    margin-top: 0!important;
}
.contact-form .form-table tr {
    height: 50px;
    border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 667px) {
    .contact-form .form-table tr {
        display: flex;
        flex-wrap: wrap;
        height: auto;
        padding: 3vw 0;
    }
}
.contact-form .form-table tr:last-child {
    border-bottom: none;
}
.contact-form .form-table th {
    text-align: left;
    width: 300px;
    vertical-align: middle;
}
@media screen and (max-width: 667px) {
    .contact-form .form-table th {
        width: 100%;
        font-size: 3vw;
    }
    .contact-form .form-wished_time {
        font-size: 3vw;
	}
}
.contact-form .form-table tr:nth-child(13) th,
.contact-form .form-table tr:nth-child(14) th,
.contact-form .form-table tr:nth-child(16) th,
.contact-form .form-table tr:nth-child(17) th,
.contact-form .form-table tr:nth-child(18) th {
    vertical-align: top;
    padding-top: 40px;
}
@media screen and (max-width: 667px) {
    .contact-form .form-table tr:nth-child(13) th,
    .contact-form .form-table tr:nth-child(14) th,
    .contact-form .form-table tr:nth-child(16) th,
    .contact-form .form-table tr:nth-child(17) th,
    .contact-form .form-table tr:nth-child(18) th {
        padding-top: 0;
    }
}
.contact-form .form-table th.form-known-intro-wrap {
    padding: 0 10px;
}
@media screen and (max-width: 667px) {
    .contact-form .form-table th.form-known-intro-wrap br {
        display: none;
    }
}
.contact-form .form-table th .required {
    color: #F00;
    margin-right: 10px;
    line-height: 1;
}
.contact-form .form-table th label {
    font-size: 1.6rem;
    font-weight: 400;
}
@media screen and (max-width: 667px) {
    .contact-form .form-table th label {
        font-size: 3vw;
    }
}
.contact-form .form-table td {
    text-align: left;
    vertical-align: middle;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 500px;
}
@media screen and (max-width: 667px) {
    .contact-form .form-table td {
        padding: 1vw 0; 
        width: 100%;
    }
}
.contact-form input[type="text"] {
    width: 210px;
    padding: 0 10px;
    height: 50px;
    font-size: 1.6rem;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
@media screen and (max-width: 667px) {
    .contact-form input[type="text"] {
        -webkit-appearance: none;
        width: 85%;
        padding: 0 6%;
        font-size: 3vw;
        height: 10vw;
        border-radius: 5px;
    }
}
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 470px;
    padding: 0 10px;
    height: 50px;
    font-size: 1.6rem;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
@media screen and (max-width: 667px) {
    .contact-form td span.email,
    .contact-form td span.tel {
        width: 100%;
    }
    .contact-form input[type="email"],
    .contact-form input[type="tel"] {
        -webkit-appearance: none;
        width: 91%;
        font-size: 3vw;
        border-radius: 5px;
        height: 10vw;
        padding: 0 3%;
    }    
}
.contact-form textarea {
    width: 470px;
    height: 130px;
    font-size: 16px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
}
@media screen and (max-width: 667px) {
    .contact-form td span.consul {
        width: 100%;
    }
    .contact-form textarea {
        -webkit-appearance: none;
        width: 91%;
        font-size: 3vw;
        border-radius: 5px;
        margin: 0;
        padding: 1vw 3%;
        
    }
}
.contact-form textarea.wpcf7-not-valid {
    margin-bottom: 0;
}
.contact-form input.form-name-last,
.contact-form input.form-kana-last {
    margin-right: 25px;
}
@media screen and (max-width: 667px) {
    .contact-form input.form-name-last,
    .contact-form input.form-kana-last {
        margin-right: 0;
    }    
}
.contact-form input.form-address {
    width: 490px;
}
@media screen and (max-width: 667px) {
    .contact-form td span.address {
        width: 100%;
    }
    .contact-form input.form-address {
        width: 91%;
        padding: 0 3%;
    }
}
*:focus {
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #60a0fd;
    border-radius: 10px;
}
@media screen and (max-width: 667px) {
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-radius: 5px;
    }
}
.contact-form select:focus,
.contact-form input[type="date"]:focus {
    border: 1px solid #60a0fd;
    border-radius: 5px;
}
select::-ms-expand {
    display: none;
}
.contact-form span.sex,
.contact-form span.marry,
.contact-form span.child {
    position: relative;
    display: block;
    width: 200px;
}
@media screen and (max-width: 667px) {
    .contact-form span.sex,
    .contact-form span.marry,
    .contact-form span.child {
        width: 50%;
    }
}
.contact-form span.business,
.contact-form span.known {
    position: relative;
    display: block;
    width: 250px;
}
@media screen and (max-width: 667px) {
    .contact-form span.business,
    .contact-form span.known {
        width: 70%;
    }    
}
.contact-form span.choice01-hour,
.contact-form span.choice01-minn,
.contact-form span.choice02-hour,
.contact-form span.choice02-minn,
.contact-form span.choice03-hour,
.contact-form span.choice03-minn {
    position: relative;
    display: inline-block;
    width: 153px;
    margin-right: 5px;
}
@media screen and (max-width: 667px) {
    .contact-form span.choice01-hour,
    .contact-form span.choice01-minn,
    .contact-form span.choice02-hour,
    .contact-form span.choice02-minn,
    .contact-form span.choice03-hour,
    .contact-form span.choice03-minn {
        width: 20vw;
    }    
}
.contact-form span.sex::after,
.contact-form span.marry::after,
.contact-form span.child::after,
.contact-form span.business::after,
.contact-form span.known::after,
.contact-form span.choice01-hour::after,
.contact-form span.choice01-minn::after,
.contact-form span.choice02-hour::after,
.contact-form span.choice02-minn::after,
.contact-form span.choice03-hour::after,
.contact-form span.choice03-minn::after {
    content: '<>';
    font: 17px "Consolas", monospace;
    color: #FFF;
    background-color: #0076ff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: -11px;
    top: 11px;
    width: 44px;
    padding: 0 0 2px;
    position: absolute;
    pointer-events: none;  
    text-align: center;
    border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 667px) {
    .contact-form span.sex::after,
    .contact-form span.marry::after,
    .contact-form span.child::after,
    .contact-form span.business::after,
    .contact-form span.known::after,
    .contact-form span.choice01-hour::after,
    .contact-form span.choice01-minn::after,
    .contact-form span.choice02-hour::after,
    .contact-form span.choice02-minn::after,
    .contact-form span.choice03-hour::after,
    .contact-form span.choice03-minn::after {
        content: none;
    }    
}
.contact-form input.form-hour {
	width: 100px;
}
@media screen and (max-width: 667px) {
    .contact-form span.form-check-teacher {
        font-size: 3vw;
    }
}
.contact-form span select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    height: 44px;
    width: 100%;
    margin: 0;
    padding: 0px 20px;
    font-size: 1.6rem;
    line-height: 1.75;
    color: #000;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #DDD;
    border-radius: 5px;
    -ms-word-break: normal;
    word-break: normal;
}
@media screen and (max-width: 667px) {
    .contact-form span select {
        -webkit-appearance: menulist;
        -moz-appearance: menulist;
        appearance: menulist;
        height: 10vw;
        font-size: 3vw;
        padding: 0 5vw;
    }
}
.contact-form span select.form-choice-hour,
.contact-form span select.form-choice-minn {
    margin: 0;
    padding: 0 24px 0 5px;
    font-size: 1.4rem;
}
@media screen and (max-width: 667px) {
    .contact-form span select.form-choice-hour,
    .contact-form span select.form-choice-minn {
        padding: 0 6%;
        font-size: 3vw;
        height: 6vw;
    }
}
.contact-form .form-check-consul {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}
@media screen and (max-width: 667px) {
    .contact-form .form-check-consul {
        margin-top: 0;
        margin-bottom: 0;
    }
}
.contact-form .form-check-consul.wpcf7-not-valid {
    margin-bottom: 0;
    border-radius: 5px;
}
.contact-form .form-check-consul label {
    display: block;
    margin-bottom: 8px;
}
@media screen and (max-width: 667px) {
    .contact-form .form-check-consul label {
        margin-bottom: 0;
    }
}
.contact-form .form-check-consul label span {
    padding-left: 5px;
    font-size: 1.6rem;
    line-height: 1.2;
}
@media screen and (max-width: 667px) {
    .contact-form .form-check-consul label span {
        padding-left: 1vw;
        font-size: 3vw;
        vertical-align: middle;
    }
}
.contact-form .consul-choice {
    display: flex;
    margin: 20px 0;
}
@media screen and (max-width: 667px) {
    .contact-form .consul-choice {
        margin: 2vw 0;
        width: 100%;
    }
}
.contact-form .consul-title {
    width: 100px;
    padding-top: 8px;
}
@media screen and (max-width: 667px) {
    .contact-form .consul-title {
        width: 20%;
        padding-top: 1vw;
        font-size: 3vw;
    }
}
.contact-form .consul-select {
    width: 390px;
    line-height: 1;
}
@media screen and (max-width: 667px) {
    .contact-form .consul-select {
        width: 80%;
        line-height: 1;
        font-size: 3vw;
    }
}
.contact-form .consul-select .choice01-date, 
.contact-form .consul-select .choice02-date, 
.contact-form .consul-select .choice03-date {
    display: block;
}
.contact-form .form-choice-date {
    width: 150px;
    height: 40px;
    font-size: 14px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-bottom: 0;
}
@media screen and (max-width: 667px) {
    .contact-form .form-choice-date {
        /* -webkit-appearance: none; */
        width: 100%;
        height: 6vw;
        font-size: 3vw;
    }
}
.contact-form .form-btn {
    text-align: center;
    margin-top: 30px;
}
input[type="submit"]{
    -webkit-appearance: none;
}
.contact-form input[type="submit"],
.contact-form input[type="button"] {
    background-color: #28a745;
    color: #FFF;
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.6rem;
    opacity: 1;
    transition: opacity 0.2s linear;
}
@media screen and (max-width: 667px) {
    .contact-form input[type="submit"],
    .contact-form input[type="button"] {
        padding: 4vw 10vw;
        font-size: 4vw;
    }    
}
.contact-form input[type="submit"]:hover,
.contact-form input[type="button"]:hover {
    opacity: 0.6;
}

/* -- form alert */
.contact-form .screen-reader-response {
    display: none;
}
.contact-form .wpcf7-form-control-wrap.name-last,
.contact-form .wpcf7-form-control-wrap.name-first,
.contact-form .wpcf7-form-control-wrap.kana-last,
.contact-form .wpcf7-form-control-wrap.kana-first,
.contact-form .wpcf7-form-control-wrap.age,
.contact-form .wpcf7-form-control-wrap.post {
    width: 240px;
}
@media screen and (max-width: 667px) {
    .contact-form .wpcf7-form-control-wrap.name-last,
    .contact-form .wpcf7-form-control-wrap.name-first,
    .contact-form .wpcf7-form-control-wrap.kana-last,
    .contact-form .wpcf7-form-control-wrap.kana-first,
    .contact-form .wpcf7-form-control-wrap.age,
    .contact-form .wpcf7-form-control-wrap.post {
        width: 50%;
        display: inline-block;
    }   
}
.contact-form .wpcf7-not-valid {
    background-color: rgba(255, 80, 80, 0.2);
}
.contact-form .wpcf7-not-valid-tip {
    font-size: 1.4rem;
    color: #F00;
}
@media screen and (max-width: 667px) {
    .contact-form .wpcf7-not-valid-tip {
        font-size: 2.4vw;
        line-height: 1;
    }
}
.contact-form .consul-select .wpcf7-not-valid-tip {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 13px;
}
@media screen and (max-width: 667px) {
    .contact-form .consul-select .wpcf7-not-valid-tip {
        margin: 2vw 0 0 0;
    }
    }
.contact-form .form-choice-hour + .wpcf7-not-valid-tip,
.contact-form .form-choice-minn + .wpcf7-not-valid-tip {
    display: none;
}
/* -- form msg */
.contact-form .wpcf7-mail-sent-ok {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    padding-top: 40px;
}
.contact-form .wpcf7-validation-errors,
.contact-form .wpcf7-acceptance-missing,
.contact-form .wpcf7-mail-sent-ng {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #F00;
    padding-top: 40px;
}
@media screen and (max-width: 667px) {
    .contact-form .wpcf7-validation-errors,
    .contact-form .wpcf7-acceptance-missing,
    .contact-form .wpcf7-mail-sent-ng {
        font-size: 5vw;
    }
}
/**********************************
  -- float contents
**********************************/
.l-float-contents {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 150px;
    background-color: #dfdede;
    opacity: 0;
    transition: opacity .4s linear;
}
@media screen and (max-width: 667px) {
    .l-float-contents {
        height: 20vw;
    }
}
.float-contents-wrap {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media screen and (max-width: 667px) {
    .float-contents-wrap {
        width: calc(100% - 30px);
        padding-top: 4vw;
    }
}
.float-tel {
    width: 380px;
    margin-left: 40px;
    margin-top: 30px;
}
@media screen and (max-width: 667px) {
    .float-tel {
        width: 40%;
        margin-left: 5vw;
        margin-top: 0;
    }
}
.float-contents-wrap .link-btn-wrap {
    width: 580px;
    margin: 35px auto;
}
@media screen and (max-width: 667px) {
    .float-contents-wrap .link-btn-wrap {
        width: 50%;
        margin: 0;
    }
}
.float-contents-wrap .link-btn_innerlink {
    font-size: 2.6rem;
}
@media screen and (max-width: 667px) {
    .float-contents-wrap .link-btn {
        height: 11vw;
    }
    .float-contents-wrap .link-btn_innerlink {
        font-size: 2.4vw;
        left: 55%;
    }
    .float-contents-wrap .link-btn_innerlink::after {
        margin-bottom: 0;
        margin-left: 4vw;
    }
    .float-contents-wrap .link-btn_innerlink p {
        line-height: 1.2;
    }
}
#page-top {
    z-index: 11;
}
@media screen and (max-width: 667px) {
    #page-top {
        display: none;
    }
}

/**********************************
  -- Thakns
**********************************/
.p-soudan-thanks {
    padding-top: 130px;
    padding-bottom: 160px;
}