@charset "utf-8"; 

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}

/*
---------------------------------------------

    base settings

    */
html {
    font-size: 62.5%;
}

body {
    min-width: 1000px;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
    font-size: 1.4rem;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: #333;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    font-feature-settings: "palt";
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    clear: both;
}

w {
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}

td, th {
    word-break: break-all;
}

input, textarea {
    font-size: 1.2rem;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    opacity: 0.6;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
    font-weight: normal;
}

/* microclearfix */
.cf:before, .cf:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.cf:after {
    clear: both;
}

/** For IE 6/7 only */
.cf {
    *zoom: 1; }

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* microclearfix */
.cf:before, .cf:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.cf:after {
    clear: both;
}

/** For IE 6/7 only */
.cf {
    *zoom: 1; }

* {
    box-sizing: border-box;
}

.caption {
    font-size: 1rem;
    line-height: 1.4;
    margin: 1em auto;
    word-break: break-all;
    color: #999;
}

/*
---------------------------------------------


*/
.l-main-area p:not([class]) {
    margin: 1rem 0 1rem;
}

.l-parts02-white__column2__right .balloon span, .l-main-area p:not([class]) strong, .l-main-area p:not([class]) span {
    font-weight: bold;
    color: #FF6B34;
    font-size: 1.6rem;
}

.l-main-area ul:not([class]) {
    margin: 2rem;
}

.l-main-area ul:not([class]) li {
    margin: 0 0 1em 0;
    padding: 0 0 0 25px;
    background: url(img/icon_li.svg) no-repeat 0 8px;
    background-size: 10px auto;
    list-style-position: outside;
}

.l-main-area ol:not([class]) {
    margin: 30px 20px;
    counter-reset: number;
    list-style-type: none !important;
    text-align: left;
}

.l-main-area ol:not([class]) li {
    position: relative;
    margin: 0 0 1em 0;
    padding: 0 0 0 25px;
}

.l-main-area ol:not([class]) li:before {
    position: absolute;
    counter-increment: number;
    content: counter(number);
    background: #fffc2a;
    border-radius: 50%;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 1.2rem;
    display: block;
    align-items: center;
    justify-content: center;
}

.l-main-area table {
    width: 100%;
    margin: 30px 0;
    padding: 0;
    border-collapse: collapse;
    text-align: left;
}

.l-main-area table th {
    padding: 10px 15px;
    background: #F7F7F7;
    color: #565656;
    border: 1px #ccc solid;
    min-width: 80px;
    font-size: 1.4rem;
    font-weight: 500;
}

.l-main-area table td {
    padding: 10px 15px;
    background: #fff;
    border: 1px #ccc solid;
    font-size: 1.4rem;
}

.btn-web {
    margin: 3rem auto;
    padding: 0;
    display: block;
    text-align: center;
    position: relative;
}

.btn-web a {
    width: 90%;
    max-width: 500px;
    margin: 0;
    padding: 1.5rem 3rem 2rem 3rem;
    display: inline-block;
    background: #FF6B33;
    background: -moz-linear-gradient( left, #FF6B33 0%, #FF6B33 100%);
    background: -webkit-linear-gradient( left, #FF6B33 0%, #FF6B33 100%);
    background: linear-gradient( to right, #FF6B33 0%, #FF6B33 100%);
    box-shadow: 5px 5px 0 #FFD0BE;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: 0.2s;
}

.btn-web a:after {
    content: "";
    width: 8px;
    height: 21px;
    background: url(img/arrow01_white.svg) no-repeat center center;
    background-size: 96%;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.btn-web a:hover {
    opacity: 1;
    background: #FF9268;
    background: -moz-linear-gradient(left, #FF9268 0%, #FF9268 100%);
    background: -webkit-linear-gradient(left, #FF9268 0%, #FF9268 100%);
    background: linear-gradient(to right, #FF9268 0%, #FF9268 100%);
}

.btn-internal {
    margin: 4rem auto;
    padding: 0;
    display: block;
    text-align: center;
    position: relative;
}

.btn-internal a {
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 1.5rem 3rem 2rem 3rem;
    display: inline-block;
    border: 2px solid #3567BE;
    background: #FFFA85;
    box-shadow: 5px 5px 0 #BECDE8;
    border-radius: 100px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    color: #3567BE;
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: 0.2s;
    font-size: 1.8rem;
}

.lower-bottom .btn-internal a {
width: 90%;
}
.l-mv-box .btn-internal {
    max-width: 360px;
}

.l-mv-box .btn-internal a:after {
    transform: translateY(-50%) rotate(90deg);
}

.btn-internal a:after {
    content: "";
    width: 10px;
    height: 21px;
    background: url(img/arrow01_blue02.svg) no-repeat right center;
    background-size: 96%;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.btn-internal.up a:after {
    transform: rotate(-90deg);
    margin-top: -10px;
    right: 30px;
}

.btn-internal a:hover {
    opacity: 1;
    background: #FFFDCB;
}

.btn-internal.up {
    margin-top: 10rem;
}

.btn-internal.up a {
    width: 30%;
}

.btn-tel {
    display: none;
}

.pc-tel {
    text-align: center;
}

.btn-link {
    margin: 20px 0;
    padding: 0;
    font-weight: bold;
    text-align: right;
    line-height: 1.4;
}

.btn-link a {
    padding: 5px 0 5px 20px;
    background: url(img/arrow01_blue.svg) no-repeat left center;
    background-size: 9px 15px;
    font-weight: normal;
    text-decoration: underline;
}

.btn-accordion {
    text-align: center;
    max-width: 370px;
    margin: 4rem auto;
}

.btn-accordion {
    background: #fff;
    color:#717171;
    border: 4px solid #DBDBDB;
    border-radius: 100px;
    padding: 1.6rem 7rem;
    display: inline-block;
    margin: 20px auto 50px;
    line-height: 1.4;
    font-size: 1.8rem;
    position: relative;
    box-shadow: 5px 5px 0 #E9E9E9;
    cursor: pointer;
    transition: 0.2s;
    max-width: 370px;
    display: block;
    font-weight: bold;
}

.btn-accordion:hover {
    opacity: 0.6;
}
.btn-accordion:before{
     content: "";
    position: absolute;
    width: 2px;
    height: 22px;
    background: #9A9A9A;
    background-size: 96%;
    top: 50%;
    margin-top: -10px;
    right: 25px;
    transform: rotate(0deg);
    transition: 0.2s;
}   


.btn-accordion:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 22px;
    background: #9A9A9A;
    background-size: 96%;
    top: 50%;
    margin-top: -10px;
    right: 25px;
    transform: rotate(90deg);
    transition: 0.2s;
}

.btn-accordion.is-open:before{
    transform: rotate(-90deg);
}

.accordion-item {
    display: none;
}
.l-main-area .accordion-item .frame-wrap{margin: 0;}

.l-main-area .float-wrap {
    margin: 10px 0 40px;
}

.l-main-area .float-wrap .float-img img {
    max-width: 100%;
}

.l-main-area .float-wrap .float-img.fr {
    width: 300px;
    margin: 0 0 10px 20px;
    float: right;
}

.l-main-area .float-wrap .float-img.fl {
    width: 300px;
    margin: 0 20px 10px 0;
    float: left;
}
.float-img.ct{
    margin: 0 auto;
    text-align: center;
    
}
.l-main-area .float-wrap .float-img.ct {
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
}

.l-main-area .float-wrap .caption {
    padding: 8px 0 0 0;
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: #999999;
    word-break: break-all;
    line-height: 1.4;
    text-align: center;
}

.l-main-area .l-icon-title {
    margin: 7rem 0 2rem;
    padding: 13px 13px 13px 110px;
    background: url(img/bg_slash01.png);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
}


.l-main-area .l-icon-title:after {
    content: "";
    width: 83px;
    height: 83px;
    background: url(img/icon_hexagon_yellow01.png) no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF84B;
    font-size: 1.8rem;
    line-height: 1;
    position: absolute;
    top: -0.2rem;
    bottom: 0;
    margin: auto;
    letter-spacing: 1px;
    left: 0px;
    padding-right: 2px;
    box-sizing: border-box;
}

.l-main-area .l-icon-title--check, .l-main-area .l-icon-title--recommend, .l-main-area .l-icon-title--point {
    background: #FFFEE8;
    color: #396ABF;
	font-weight: bold;
}

.l-main-area .l-icon-title--check:after {
    content: "Check";
}

.l-main-area .l-icon-title--recommend:after {
    content: "おすすめ";
    font-size: 1.5rem;
}

.l-main-area .l-icon-title--point:after {
    content: "Point";
}

.l-main-area .l-number-wrapper {
    padding: 3rem 3.5rem;
    border-radius: 10px;
    background: #FFFDD2;
}
.l-main-area .costArea .l-number-wrapper{
  margin: 1rem 0;
	padding: 1rem 1rem;
}
.l-main-area .l-parts03 .costArea .l-number-wrapper dl {
margin: 0;
}

.l-main-area .l-number-wrapper dl{
    border-bottom: solid 1px #C6C6C6;
    font-size: 1.4rem;
    display: flex;
}
.l-main-area .l-number-wrapper dl dt{
    padding: 0.5rem;
    width: 50%;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.l-main-area .l-number-wrapper dl dd{
    margin: 0;
    padding: 0.5rem;
    width: 50%;
}
.l-main-area .l-number-wrapper dl dd span{
    font-size: 2rem;
    font-weight: bold;
    color: #FF6227;
}

.l-parts05-text span {
    font-weight: bold;
    color: #FF6B34;
    font-size: 1.6rem;
}

.l-main-area .l-number-wrapper .l-icon-title:after {
    content: counter(number);
    counter-increment: number;
    font-size: 3rem;
}

.l-main-area .box-wrap {
    width: 100%;
    margin: 8rem 0 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.l-main-area .box-wrap .box {
    width: calc((100% - 7rem) / 2);
    margin: 0 0 3rem 2rem;
    padding: 2rem;
    border: solid 3px #3567BE;
    border-radius: 10px;
    background: #EBF2FF;
}

.l-main-area .box-wrap .box:nth-child(2n) {
    margin: 0 0 30px 0;
}

.l-main-area .box-wrap .box:after {
    content: "";
    width: 100%;
    height: 100%;
}

.l-main-area .box-wrap p {
    margin: 0;
}

.l-main-area .box-wrap .box-head {
    margin: -5rem 0 0 -5rem;
    padding: 2rem;
    background: #3567BE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.l-main-area .box-wrap .box-head a {
    display: block;
    padding: 0 3rem 0 0;
    background: url(img/arrow01_white.svg) no-repeat right 0 center;
    background-size: 12px 20px;
    text-decoration: none;
    color: inherit;
}

.l-main-area .box-wrap .box-head a:hover {
    opacity: 0.5;
}

.l-main-area .box-wrap .box-head::before, .l-main-area .box-wrap .box-head::after {
    display: none;
}

.l-main-area .box-wrap .box-body {
    padding: 2rem 0;
}

.l-main-area .box-wrap .btn-internal {
    margin: 2rem auto 0;
}

.l-main-area .box-wrap .btn-internal a {
    width: 70%;
    padding: 1rem 4rem;
}

.l-main-area .frame-wrap {
    width: 100%;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    counter-reset: number;
}

.l-main-area .frame-wrap .frame {
    width: calc((100% - 41px) / 3);
    margin: 0 20px 30px 0;
    padding: 2rem;
    border: solid 2px #3567BE;
    position: relative;
    overflow: hidden;
}

.l-main-area .frame-wrap .frame:nth-child(3n) {
    margin: 0 0 30px 0;
}

.l-main-area .frame-wrap p {
    margin: 2rem auto;
}

.l-main-area .frame-wrap .frame-head {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #3567BE;
    line-height: 1.2;
    text-align: center;
    position: relative;
	    font-weight: bold;
}
.l-main-area .l-parts.part01 .frame-wrap .frame-head{
    font-size: 2.6rem;
}

.l-main-area .frame-wrap .frame-head a {
    padding: 0 2.5rem 0 0;
    display: flex;
    background: url(img/arrow01_blue.svg) no-repeat right 0 center;
    background-size: 12px 20px;
    color: #3567BE;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.l-main-area .frame-wrap .frame-head a span{
    font-size: 2rem;
    display: contents;
}

.l-main-area .frame-wrap .frame-head a:hover {
    opacity: 0.5;
}

.l-main-area .frame-wrap .frame-body {
    padding: 0rem 0 0;
}

.l-main-area .frame-wrap .btn-internal {
    margin: 2rem auto 0;
}

.l-main-area .frame-wrap .btn-internal a {
    width: 100%;
    padding: 1rem 4rem 1rem 1rem;
    min-width: inherit;
}

.l-main-area .frame-wrap .frame table {
    margin-bottom: 0;
}

/* low ----------------*/
.site_title_lower-wrapper {
    width: 100%;
    margin: 0 auto;
    background: #396ABF;
    padding: 2rem 0;
    padding-left: 100px;
    border-bottom: 5px solid #FFFC2A;
}

.site_title_lower {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    font-size: 3.4rem;
    color: #fff;
    font-weight: bold;
    padding: 0rem 0 0rem;
    letter-spacing: 3px;
    line-height: 1.4;
}

.site_title_lower a {
    display: block;
}

.site_title_lower img {
    object-fit: contain;
    width: 20%;
}

.site_title_lower .belt {
    display: inline-block;
    font-size: 2.4rem;
    background: #fff;
    color: #0096d2;
    padding: 5px 20px;
    line-height: 1;
    border-radius: 5px;
}

.site_title_lower .small {
    font-size: 2.7rem;
    line-height: 1em;
}

.l-main-area--low h1 {
    margin: 3rem 0 7rem;
    padding: 7rem 0 0;
    font-size: 4rem;
    font-weight: bold;
    color: #3567BE;
    letter-spacing: 3px;
    line-height: 1.2;
    position: relative;
    text-align: center;
}

.l-main-area--low h1 a {
    padding: 0 4rem 0 0;
    display: block;
    color: #fff;
    text-decoration: none;
    background: url(img/arrow01_white.svg) no-repeat right center;
    background-size: 14px;
}

.l-main-area--low h1 a:hover {
    color: #ffff00;
    background: url(img/arrow01_yellow.svg) no-repeat right center;
    background-size: 14px;
}
.l-main-area--low .l-parts04-image:first-child {
    margin-right: -30px;
    width: 40%;
    margin-left: 0;
}

.l-main-area h2:not([class]), .l-main-area--low h2 {
    margin: 7rem 0 1.5rem;
    padding: 1.5rem 6rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: #396ABF;
    border-bottom: 3px solid #396ABF;
    line-height: 1.4;
    position: relative;
    z-index: 5;
    background: #bbe2ff;
}

.l-main-area h2:not([class]) a, .l-main-area--low h2 a {
   display: block;
    padding: 0 2rem 0 0;
    background: url(img/arrow01_blue.svg) no-repeat right 0 center;
    background-size: 12px 20px;
    color: #396abf;
    font-weight: bold;
    text-decoration: none;
}

.l-main-area h2:not([class]):nth-of-type(1), .l-main-area--low h2:nth-of-type(1) {
    margin: 4rem 0 1.5rem;
}

.l-main-area h3:not([class]), .l-main-area--low h3 {
    margin: 4rem auto 1.5rem;
    padding: 1rem 1.5rem 1rem 6rem;
    background-size: auto 4px;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    position: relative;
    color: #396ABF;
	border-bottom: 2px solid #dfe4e9;
}

.l-main-area h3:not([class]):before, .l-main-area--low h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(img/icon_hexagon01.png);
    width: 41px;
    height: 41px;
	    background-size: 100%;
}

.l-main-area h3:not([class]) a, .l-main-area--low h3 a {
    display: inline-block;
    padding-right: 3rem;
    background: url(img/arrow01_blue.svg) no-repeat right 0 center;
    background-size: 10px auto;
    text-decoration: none;
}

.l-main-area h3:not([class]) a:hover, .l-main-area--low h3 a:hover {
    background: url(img/arrow01_blue.svg) no-repeat right 0 center;
    background-size: 10px 18px;
    color: #0096d2;
}

.l-main-area h4:not([class]), .l-main-area h5:not([class]), .l-main-area--low h4, .l-main-area--low h5 {
    margin: 3rem 0 1.5rem;
    padding: 1rem 2rem;
    background: #EBF2FF;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    color: #3567BE;
    position: relative;
}

.l-main-area h4:not([class]) a, .l-main-area h5:not([class]) a, .l-main-area--low h4 a, .l-main-area--low h5 a {
    display: inline-block;
    padding-right: 3rem;
    background: url(img/arrow01_blue.svg) no-repeat right 0 center;
    background-size: 8px auto;
    text-decoration: none;
    font-weight: 500;
}

.lower-bottom {
    background: #FFFEE8;
    padding: 0 0 10rem;
    margin: 180px auto 0px;
}

.lower-bottom .l-common-lead02 {
    margin: 20px auto;
}

.l-main-area .l-common-lead02 p {
    margin-bottom: 0;
}

.lower-bottom-column3 {
    display: flex;
    flex-wrap: wrap;
}
.lower-bottom-column3 .txt-quote{
    color:#959595;
    font-size:1rem;
}

.lower-bottom-column3__box {
    width: calc(((100% - 4rem) / 3) - 1px);
    margin: 0 2rem 2rem 0;
    background: #fff;
    border-radius: 25px 25px 0 0;
    position: relative;
    border: 2px solid #2252A7;
}

.lower-bottom-column3__box:nth-child(3n) {
    margin: 0 0 2rem;
}

.lower-bottom-column3__line {
    border-top: 0;
    padding: 1rem 2rem;
}
.lower-bottom-column3__line .caption{
    text-align: center;
}

.lower-bottom-column3__line table {
    border: 1px solid #CCCCCC;
	width: 100%;
}

.lower-bottom-column3__line table th {
    padding: 10px 15px;
    background: #F7F7F7;
    color: #565656;
    border: 1px #ccc solid;
    min-width: 80px;
    font-size: 1.4rem;
    font-weight: 500;
}

.lower-bottom-column3__line table td {
    padding: 10px 15px;
    background: #fff;
    border: 1px #ccc solid;
    font-size: 1.4rem;
}

.lower-bottom-column3__line table td span {
    display: block;
    color: #999;
    font-size: 1rem;
}

.lower-bottom-column3__catch {
    margin: 0;
    padding: 1.8rem 1rem 0.8em;
    background: #2252A7;
    border-radius: 20px 20px 0 0;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
}

.lower-bottom-column3__catch span {
    color: #FFF84B;
    font-size: 3rem;
}

.lower-bottom-column3__title {
    margin: 0 0 2rem;
    padding: 0.2em 0 0.7em;
    border-bottom: solid 1px #B1B1B1;
    color: #3567BE;
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 1.4;
    text-align: center;
    z-index: 1;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lower-bottom-column3__title span {
    font-size: 1.8rem;
    display: contents;
}

.lower-bottom-column3__title a {
    padding: 0 3rem 0 0;
    display: block;
    background: url(img/arrow01_blue.svg) no-repeat right center;
    background-size: 10px;
    color: #0096d2;
    text-decoration: none;
}

.lower-bottom-column3__title a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
}

.lower-bottom-column3__image {
    text-align: center;
    font-size: 1rem;
    color: #999;
    line-height: 1.2;
}

.lower-bottom-column3__image img {
    max-width: 100%;
}

.lower-bottom-column3__image span {
    display: block;
    padding-top: 1rem;
    color: #999;
}

.lower-bottom-column3__list {
    margin: 2.5rem 0;
    padding: 0;
}

.lower-bottom-column3__list li {
        background: url(img/icon_check01.png) no-repeat left 5px top 10px;
    background-size: 8%;
    padding-left: 30px;
    font-size: 1.4rem;
}

.lower-bottom-column3__list li span {
    font-size: 1.6rem;
    font-weight: bold;
    color: #FF6227;
}

.lower-bottom-column3__tag {
    margin: 0;
}

.lower-bottom-column3__tag .tag-list {
    margin: 0 1rem 1rem 0;
    padding: 0.2rem 1rem;
    display: inline-block;
    background: #fff;
    border: solid 1px #0096d2;
    font-size: 1.2rem;
    color: #0096d2;
    text-align: center;
    position: relative;
}

.lower-bottom-column3__tag .tag-list:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #0097d2 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.lower-bottom-column3__info {
    padding: 0 1rem;
    border-radius: 10px;
    background: #FFFDD2;
}

.lower-bottom-column3__info dl {
    border-bottom: solid 1px #C6C6C6;
    font-size: 1.4rem;
    display: flex;
	margin: 0;
}

.lower-bottom-column3__info dl:last-child {
    border: none;
}

.lower-bottom-column3__info dl dt {
    padding: 1rem;
    width: 50%;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.lower-bottom-column3__info dl dd {
    margin: 0;
    padding: 1rem 0;
    width: 50%;
}

.lower-bottom-column3__info dl dd span {
    font-size: 2rem;
    font-weight: bold;
    color: #FF6227;
}

.lower-bottom .btn-web {
    width: 100%;
}

.lower-bottom .btn-web a {
    width: 90%;
    padding: 1rem 3rem 1.2rem 2rem;
    font-size: 1.8rem;
}

.lower-bottom .btn-tel {
    width: 90%;
}

/*
---------------------------------------------

  header area

  */
.l-header-area {
    width: 100%;
    margin: 0;
    padding: 0 0 0 100px;
}

.l-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 0;
}

.l-header__link {
    display: inline-block;
    text-decoration: none;
}

.l-header__link:hover {
    opacity: 0.6;
}

.l-header-sitename {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: right;
}

.l-header-sitename__link {
    text-decoration: none;
}

.l-header-sitename__link:hover {
    text-decoration: underline;
}

.l-header-logo {
    margin: 10px 0 0;
    text-align: center;
}

.l-header-logo__image {
    width: 100%;
    height: 100%;
}

.l-header-logo a {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 60px;
}

.l-gnavi-btn {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    padding: 50px 0 0;
    display: block;
    position: relative;
    line-height: 1;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    color: #3567BE;
    cursor: pointer;
    text-decoration: none;
}

.l-gnavi-btn:hover {
    color: #3567BE;
}

.l-gnavi-btn span {
    width: 30px;
    height: 3px;
    display: inline-block;
    background: #3567BE;
    transition: all 0.4s;
    position: absolute;
    left: 15px;
}

.l-gnavi-btn span:nth-of-type(1) {
    top: 19px;
}

.l-gnavi-btn span:nth-of-type(2) {
    top: 29px;
}

.l-gnavi-btn span:nth-of-type(3) {
    top: 39px;
}

.l-gnavi-btn-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s;
}

.l-gnavi-btn-box.is-active .l-gnavi-btn {
    background: none;
}

.l-gnavi-btn-box.is-active .l-gnavi-btn span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}

.l-gnavi-btn-box.is-active .l-gnavi-btn span:nth-of-type(2) {
    opacity: 0;
}

.l-gnavi-btn-box.is-active .l-gnavi-btn span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}

.is-navi-open .l-gnavi-area--slide-left {
    transform: translateX(0);
}

.l-gnavi-area {
    width: 400px;
    height: 100vh;
    padding: 0;
    background: #fff;
    position: fixed;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.14);
    transition: all 0.8s ease;
    top: 0;
    left: 0;
    z-index: 300;
}

.l-gnavi-area-menu {
    display: table-cell;
    vertical-align: middle;
}

.l-gnavi-area-scroll {
    height: 100%;
    padding: 20px 100px 20px 0;
    overflow-x: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none;
}

.l-gnavi-area-scroll::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
}

.l-gnavi-area-scroll__inner {
    height: 100%;
    display: table;
}

.l-gnavi-area-bar {
    width: 100px;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
}

.l-gnavi-area--slide-right {
    transform: translateX(-300px);
}

.l-gnavi-area--slide-left {
    left: auto;
    right: 0;
    transform: translateX(-100%);
}

.l-gnavi-area--slide-down {
    transform: translateY(-100%);
}

.l-gnavi-area--slide-up {
    transform: translateY(100%);
}

.l-gnavi-list {
    position: relative;
    width: 300px;
}

.l-gnavi-list__link {
    width: 90%;
    margin: 0 auto;
    padding: 10px 45px 10px 20px;
    display: block;
    text-decoration: none;
}

.l-gnavi-list__link--menu {
    cursor: pointer;
}

.l-gnavi-list__sub {
    margin: 0 0 0 1.6rem;
    border-top: dashed 1px #0096d2;
    background: #e5f6fd;
    display: none;
}

.l-gnavi-list__sub .l-gnavi-list__item {
    background: url(img/arrow01_blue.svg) no-repeat left 2rem center;
    background-size: 4px 8px;
}

.l-gnavi-btn-close__link {
    margin: 20px auto;
    padding: 10px 20px 10px 50px;
    display: inline-block;
    background: #ffffff;
    text-decoration: none;
    position: relative;
}

.l-gnavi-btn-close__link:hover {
    background: #ccc;
    color: #ffffff;
}

.l-gnavi-btn-close__link:hover:after {
    background: #ffffff;
}

.l-gnavi-btn-close__link:hover:before {
    background: #ffffff;
}

.l-gnavi-btn-close__link:before {
    content: "";
    width: 20px;
    height: 3px;
    background: #000;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    left: 20px;
}

.l-gnavi-btn-close__link:after {
    content: "";
    width: 20px;
    height: 3px;
    background: #000;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 20px;
}

.is-gnavi-cover .l-gnavi-area {
    height: auto;
    top: auto;
    z-index: 1;
    overflow-y: hidden;
}

.is-navi-open .l-gnavi-area {
    opacity: 1;
}

.is-navi-open .l-gnavi-area--slide-right {
    transform: translateX(0);
}

.is-navi-open .l-gnavi-area--slide-left {
    transform: translateX(0);
}

.is-navi-open .l-gnavi-area--slide-down {
    transform: translateY(0);
}

.is-navi-open .l-gnavi-area--slide-up {
    transform: translateY(0);
}

.is-navi-open .is-gnavi-cover {
    height: 100vh;
    overflow-y: scroll;
}

.is-navi-open .is-gnavi-cover .l-gnavi-area {
    position: static;
}

/*
---------------------------------------------

  footer area

  */
.l-footer-area {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 0 100px;
    background: #F5F7F9;
    position: relative;
}

.l-footer-disclaimer {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    font-size: 1rem;
    color: #000;
    text-align: left;
}

.l-footer-disclaimer dt {
    float: left;
}

.l-footer-note {
    text-align: center;
    margin: 20px auto;
    font-size: 1.2rem;
}

.l-footer-bottom {
    margin: 0 auto;
    background: #3567BE;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.l-footer-bottom__inner {
    width: 96%;
    max-width: 1100px;
    display: table;
    margin: 0 auto;
}

.l-footer-bottom__copy {
    padding: 10px 0;
    display: table-cell;
    text-align: left;
}

.l-footer-bottom__copy__link {
    text-decoration: none;
    color: #fff;
}

.l-footer-bottom__copy__link:hover {
    text-decoration: underline;
}

.l-footer-bottom__sitemap {
    padding: 10px 0;
    display: table-cell;
    text-align: right;
}

.l-footer-bottom__sitemap__link {
    background: url(img/arrow01_white.svg) no-repeat right center;
    background-size: 7px 12px;
    padding: 0 24px 0 0;
    text-decoration: none;
    color: #fff;
}

.l-footer-bottom__sitemap__link:hover {
    text-decoration: underline;
}

.l-footer-menu-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 0 0;
}

.l-footer-menu {
    margin: 0 0 40px;
}

.l-footer-menu__title {
    margin: 0 0 10px 0;
    padding: 0 0 5px;
    border-bottom: solid 1px #333;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.4;
}

.l-footer-menu__title__link {
    display: block;
    padding: 0 0 0 25px;
    background: url(img/arrow01_blue.svg) no-repeat left 1rem center;
    background-size: 10px 16px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.l-footer-menu__title__link:hover {
    text-decoration: underline;
    font-weight: bold;
}

.l-footer-menu__list {
    display: inline;
}

.l-footer-menu__list__item {
    float: left;
    padding: 0 10px;
    display: inline-block;
}

.l-footer-menu__list__item:first-child {
    display: none;
}

.l-footer-menu__list__link {
    padding: 5px 0 5px 15px;
    background: url(img/icon_li_footer.svg) no-repeat left top 11px;
    background-size: 8px 8px;
    text-align: left;
    font-size: 1.2rem;
    text-decoration: none;
}

.l-footer-menu__list__link:hover {
    text-decoration: underline;
}

.l-footer-submenu__list {
    display: inline-block;
}

.l-footer-submenu__list__item {
    display: inline-block;
}

.l-footer-submenu__list__link {
    padding: 5px 15px;
    text-align: left;
    font-size: 1.2rem;
    text-decoration: none;
}

.l-footer-submenu__list__link:before {
    content: "- ";
}

.l-footer-submenu__list__link:hover {
    text-decoration: underline;
}

/*
---------------------------------------------

  common

  */
.l-pagetop {
    position: absolute;
    top: -80px;
    right: 30px;
    z-index: 100;
}

.l-pagetop__link {
    width: 60px;
    height: 60px;
    background: #FFF84B;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-pagetop__link:hover {
    opacity: 0.7;
}

.l-pagetop__image {
    width: 24px;
}

.l-pagetop.is-fixed {
    position: fixed;
    top: auto;
    bottom: 30px;
}

.l-sns-list {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, 0);
}

.l-sns-list__item {
    text-align: center;
}

.l-sns-list__link {
    width: 30px;
    height: 30px;
    margin: 0 auto 1rem;
    text-decoration: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #0096d2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-sns-list__link:hover {
    opacity: 0.6;
}

.l-sns-list__link--twitter .l-sns-list__image {
    width: 18px;
    height: 15px;
}

.l-sns-list__link--facebook .l-sns-list__image {
    width: 9px;
    height: 17px;
}

.l-sns-list__link--line .l-sns-list__image {
    width: 19px;
    height: 18px;
}

.l-sns-list__link--instagram .l-sns-list__image {
    width: 19px;
    height: 19px;
}

.l-sns-list__link--hatena .l-sns-list__image {
    width: 17px;
    height: 15px;
}

#pankuzu {
    max-width: 1100px;
    width: 94%;
    margin: 4rem auto 2rem auto;
    font-size: 1.2rem;
}

/*
---------------------------------------------

  contents area

  */
.l-contents-area {
    width: 100%;
    margin: 0 auto;
    padding-left: 100px;
}

/*
---------------------------------------------

  main area / common

  */
.l-main-area {
    width: 100%;
    margin: 0 auto 15rem auto;
    padding: 0;
    text-align: left;
}

.l-main-area--low {
    max-width: 1100px;
    width: 94%;
    margin: 0 auto 7rem auto;
}

.l-section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.l-common-title {
    padding: 4rem 0 0;
    margin: 0 0 4rem;
    font-size: 3.4rem;
    font-weight: bold;
    text-align: center;
    color: #3567BE;
    line-height: 1.4;
    position: relative;
    letter-spacing: 3px;
}
.l-common-title span{
    font-size: 4rem;
    background: linear-gradient(transparent 70%,#FFF84B 70%);
}

.l-common-title a {
    background: url(img/arrow01_blue.svg) no-repeat right center;
    background-size: 12px auto;
    padding: 0 35px;
    display: inline-block;
    text-decoration: none;
}

.l-common-title .marker {
    line-height: 1.3em;
    font-size: 3.4rem;
    color: #3567BE;
    font-weight: bold;
    background: none;
}

.l-common-title .marker span {
    font-size: 4rem;
    background: -webkit-linear-gradient(transparent 70%, #FFF84B 0%);
    background: -o-linear-gradient(transparent 95%, #fffc2a 0%);
    background: linear-gradient(transparent 70%, #FFF84B 0%);
}

.l-common-title:before {
    content: "";
    width: 50px;
    height: 25px;
    background: url(img/img_car01.png) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
.l-parts04.wave .l-common-title:before{
    
}

.l-common-title02__wrap {
    background: url(img/lower-bottom_bg.png) no-repeat center center, #3567BF;
    background-size: auto 100%;
    margin-bottom: 50px;
}
#osusume .l-common-title02__wrap{
    background: url(img/lower-bottom_bg.png) no-repeat center center, #3567BF;
    background-size: 1370px auto;
    margin-bottom: 50px;
}

.l-common-title02 {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 4rem 5% 4rem 5%;
    text-align: center;
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 1.4;
    position: relative;
}

.l-common-title02 span {
    font-size: 3.4rem;
}

.l-common-title02:after {
    content: "";
    width: 178px;
    height: 186px;
    background: url(img/icon_right.png) no-repeat bottom right;
    background-size: 60% auto;
    position: absolute;
    right: 7%;
    bottom: 0%;
    margin: auto;
}

.l-common-title02:before {
    content: "";
    width: 168px;
    height: 196px;
    background: url(img/icon_left.png) no-repeat bottom left;
    background-size: 60% auto;
    position: absolute;
    left: 7%;
    bottom: 0%;
    margin: auto;
}

.l-common-lead02 {
    width: 100%;
    max-width: 650px;
    margin: 50px auto;
    text-align: center;
}

.curtain-title-box {
    padding: 9rem 0 1rem;
    background: url(img/bg_cartain01_left.png) no-repeat left top, url(img/bg_cartain01_right.png) no-repeat right top, url(img/txt_special-feature.png) no-repeat center top 40px;
    background-size: 42% auto, 42% auto, auto;
    border-top: 4px solid #0096d2;
    margin-top: 100px;
}

.curtain-title {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 0 0;
    text-align: center;
    font-size: 3.4rem;
    font-weight: 500;
    color: #0096d2;
    line-height: 1.4;
    letter-spacing: 5px;
    background: url(img/img_seiko03.png) no-repeat right bottom, url(img/img_kyoko03.png) no-repeat left bottom;
}

.l-common-lead02 p:not([class]) span {
    color: #0096d2;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 2px;
}

.l-common-lead {
    width: 80%;
    max-width: 800px;
    margin: 1.5rem auto 4rem;
}

/*
---------------------------------------------

  top

  */
.l-mv {
    width: 100%;
    min-height: 530px;
    background: url(img/bg_mv.jpg) right bottom no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 15rem;
}

.l-mv-wrapper {
    max-width: 1100px;
    width: 94%;
    padding: 2rem 0 0;
    margin: 0 auto;
}

.l-mv-box {
    margin: 0 auto 0 0;
    color: #fff;
    max-width: 642px;
}

.l-main-area .l-mv-box p {
    max-width: 520px;
    color: #565656;
	text-shadow: 1px 1px 0px #fff;
}

.l-mv-logo {
    padding-bottom: 1rem;
    text-align: center;
}

.l-mv-title {
    width: 80%;
    margin: 2rem 0;
    font-weight: bold;
    font-size: 3rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #fff;
    line-height: 1.2;
}

.l-mv-title a {
    color: #fff;
    text-decoration: none;
}

.l-mv-title a:hover {
    text-decoration: underline;
}

.l-mv-check {
    position: absolute;
    right: 2rem;
    bottom: -100px;
    color: #fff;
    font-size: 2.1rem;
    font-weight: bold;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    text-align: center;
    line-height: 1.2;
}

.l-mv-check a {
    width: 205px;
    height: 195px;
    padding: 7rem 3.5rem 2.5rem;
    display: block;
    color: #fff;
    text-decoration: none;
    background: url(img/icon_check.svg) no-repeat center center;
    background-size: 100%;
}

.l-mv-check a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}

.l-mv-check p {
    padding-bottom: 2.3rem;
    background: url(img/arrow01_white.svg) no-repeat center bottom;
    background-size: 10px;
    margin: 0;
}

.l-mv-title {
    margin: 2rem auto 2rem 0;
}

.l-mv-box02 {
    background: rgba(0, 150, 210, 0.8);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.l-mv-box02_inner {
    max-width: 1100px;
    width: 94%;
    margin: auto;
    position: relative;
}

.l-mv-box02_title {
    font-size: 4rem;
    line-height: 1.4;
    color: #3567BE;
    font-weight: bold;
    margin: 0;
    padding: 0 0 2rem;
    letter-spacing: 3px;
}

.l-mv-box02_title span {
    background: linear-gradient(transparent 70%,#FFF84B 70%);
}

.l-mv-box02_title .belt {
    /* display: inline-block; */
    font-size: 3.4rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(transparent 70%,#FFF84B 70%);
    color: #3567be;
    padding: 0;
}

.l-mv-box02_title .small {
    font-size: 3.2rem;
}

.l-mv__person-wrap {
    position: absolute;
    display: flex;
    background: #fff;
    border: 4px solid #3567BE;
    border-radius: 20px;
    right: -20px;
    bottom: -80px;
    padding: 20px 10px 0 55px;
    max-width: 390px;
}

.l-mv__person_box {
    position: relative;
    margin: 0 20px;
}
.l-mv__person_box:first-child .l-mv__person__img{
    width: 130px;
    height: auto;
    left: -25%;
}

.l-mv__person-balloon {
    position: absolute;
    left: -96px;
    top: -80px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.4;
    color: #3567c0;
    background: #fff;
    padding: 10px 15px;
    border-radius: 20px;
}

.l-mv__person-balloon::after {
    content: "";
    position: absolute;
    border: solid transparent;
    border-width: 20px 6px;
    border-top-color: #fff;
    right: -11px;
    bottom: -23px;
    transform: rotate(-45deg);
}

.l-mv__person__img {
    position: absolute;
    left: -1rem;
    right: 0;
    margin: auto;
    bottom: 100%;
	width: 120%;
}
.l-mv__person__img__st {
    position: absolute;
    left: -3rem;
    right: 0;
    margin: auto;
    bottom: 100%;
	width: 170%;
}	

.l-mv__person_name {
    text-align: center;
    font-size:1.6rem;
    color: #3567BE;
    line-height:1.2;
    font-weight: bold;
}

.l-mv__person_txt {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.4;
}

.l-parts01 {
    margin: 0 auto;
    padding: 6rem 0 6rem;
    background: #F5F7F9;
    background-position: center top 44%;
}

.l-parts {
    margin: 0 auto;
}

.l-parts.pr{
    margin: 15rem auto 0;
}
.l-parts.part01{
    margin: 10rem auto 8rem;
}

.l-parts.part02{
    margin:10rem auto 0;
}
.hostArea{
    margin: 0px auto 0rem;
    max-width: 1000px;
}
.l-parts.pr .btn-internal a{
    max-width: 360px;
}

.l-parts01-column3 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.l-parts01-column3__box {
    width: calc((100% - 50px) / 2);
    margin: 0 50px 50px 0;
    background: #ffffff;
    padding: 3.5rem 4.5rem 2.5rem;
    background: #ffffff;
}

.l-parts01-column3__box:nth-child(2n) {
    margin-right: 0;
}

.l-parts01-column3 .catch-image img {
    width: 100%;
    border-radius: 2rem;
}

.l-parts01-column3 .catch-text {
    margin: 0rem 0 1em;
    padding: 0 0rem 0;
    color: #3567BE;
    line-height: 1.4;
    font-size: 2.4rem;
    font-weight: bold;
}

.l-parts01-column3 .catch-text a {
    display: block;
    background: url(img/arrow01_blue.svg) no-repeat right center;
    background-size: 8px auto;
    padding-right: 20px;
    text-decoration: none;
}

.l-parts01-column3 .catch-body {
    padding: 0 0rem;
}

.l-parts01-column3 .tag {
    padding-top: 2rem;
    border-top: solid 1px #ccc;
    display: flex;
    flex-wrap: wrap;
}

.l-parts01-column3 .tag-list {
    margin-right: 1rem;
    display: inline-block;
    border: solid 1px #0096d2;
    padding: 0.5rem 1rem;
    background: none;
    font-size: 1.2rem;
    color: #0096d2;
    position: relative;
}

.l-parts01-column3 .tag-list:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #0097d2 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}

ul.tag {
    margin: 0;
}

li.tag-list {
    background: none;
}

.l-parts02 {
    margin: 10rem 0 0;
    padding: 7rem 0 10rem;
    position: relative;
    z-index: 0;
    background: #EBF2FF;
}
.l-parts02-white {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-radius: 20px;
    background: #fff;
}

.l-parts02-white__title {
    padding: 3rem 0;
    background: #2252A7;
    border-radius: 20px 20px 0 0;
    color: #fff;
    position: relative;
}

.l-parts02-white__title .catch-title {
    width: 76%;
    margin: 0 auto;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 5px;
}

.l-parts02-white__title .catch-title span {
    color: #ffff00;
    font-size: 3.5rem;
}

.l-parts02-white-inner {
    margin: 4rem auto 2rem;
    padding: 0 5rem;
}

.l-parts02-white__column2 {
    margin: 1rem auto 4rem;
}
.l-parts02-white__column2 .school{
    font-size: 3rem;
    text-align: center;
    margin: 0 auto 3rem;
    color: #3567BE;
    font-weight: bold;
    line-height: normal;
}

.l-parts02-white__column2 .school span{
    font-size: 2.4rem;
}
.l-parts02-white__column2__left {
    width: 350px;
    height: 200px;
    margin-right: 20px;
    text-align: center;
}

.l-parts02-white__column2__left.mt {
    margin-top: 25px;
}

.l-parts02-white__column2__left img {
    height: 100%;
}

.l-parts02-white__column2__left p {
    text-align: center;
}

.l-parts02-white__column2__right {
    width: calc(100% - 370px);
}

.l-parts02-white__column2__right .balloon {
    border: 2px solid #0096d2;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    background: #fff;
}

.l-parts02-white__column2__right .balloon::before, .l-parts02-white__column2__right .balloon::after {
    content: "";
    position: absolute;
    border: solid transparent;
    border-width: 11px 9px;
    left: 40px;
    margin-top: -6px;
}

.l-parts02-white__column2__right .balloon::before {
    border-bottom-color: #0096d2;
    top: -18px;
}

.l-parts02-white__column2__right .balloon::after {
    border-bottom-color: #fff;
    top: -15px;
}

.l-parts02-white__column2 .clinic {
    margin: 0 0 0.5rem;
    padding: 2.5rem 0 1rem 12.5rem;
    background: url(img/img_kyokoseiko02.png) no-repeat left bottom;
    background-size: 117px auto;
    color: #0096d2;
    line-height: 1.4;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 3px;
}

.l-parts02-white__column2 .catch {
    margin: 0 0 0.5rem;
    padding: 3.5rem 9rem 1rem 0rem;
    background: url(img/img_kyokoseiko02.png) no-repeat right bottom;
    background-size: 100px auto;
    color: #0096d2;
    line-height: 1.4;
    letter-spacing: 2px;
    font-size: 2rem;
    font-weight: 500;
}

.l-parts02-white__column2 .catch02 {
    margin: 0 0 2rem;
    color: #0096d2;
    line-height: 1.4;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.l-parts02-white__column2 .price {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.l-parts02-white__column2 .price-list {
    width: 290px;
    padding: 0;
    background: #ffff00;
    border-radius: 10px;
    color: #0096d2;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.l-parts02-white__column2 .price-list .category {
    padding-right: 2rem;
    display: inline;
}

.l-parts02-white__column2 .price-list .data {
    display: inline;
}

.l-parts02-white__column2 .price-list .data span {
    color: #0096d2;
    font-size: 3.6rem;
}

.l-parts02-white__column3 {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.l-parts02-white__column3__box {
    width: calc((100% - 3rem) / 2);
    margin: 0 3rem 2rem 0;
    padding: 3rem;
    background: #F5F7F9;
    border-radius: 20px;
}

.l-parts02-white__column3__box:nth-child(2n) {
    margin: 0 0 2rem 0;
}

.l-parts02-white__column3__box .voice-catch {
    margin: 0 0 2rem;
    padding: 0 0 1.5rem 8rem;
    color: #3567BE;
    font-weight: 500;
    font-size: 1.8rem;
	font-weight: bold;
    line-height: 1.4;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    width: 100%;
    background: url(img/icon_hexagon02.png) no-repeat 5% 30%;
	background-size: 12%;
    border-bottom: 1px solid #D3D8DC;
}

.l-parts02-white__column3__box .cost {
    margin-top: 1rem;
}

.l-parts02-white__column3__box .cost span {
    font-size: 1.8rem;
}

.l-parts02-white .btn-web {
    margin-top: 1rem;
}

.l-parts02-white .title-voice {
    margin: 6rem 0 2.5rem;
    background: url(img/deco_wave_s_long.png) repeat-x  center;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: #0096d2;
    position: relative;
    letter-spacing: 2px;
}
.l-parts02-white .featureArea .title-voice{
    margin: 4rem 0 2.5rem;
}

.l-parts02-white .title-voice span {
    color: #3567BE;
    padding: 0 2rem;
    background: #fff;
}

.l-parts02-white table.information th {
    width: 140px;
    background: #F7F7F7;
    border: 1px #ccc solid;
    text-align: center;
    color: #565656;
}

.l-parts02-white table.information td {
    border: 1px #ccc solid;
}

.l-parts02-white__information {
    margin: 0 auto 0rem;
}

.l-parts02-white__information .map {
    width: 400px;
    margin-right: 40px;
}

.l-parts02-white__information .map iframe {
    width: 100%;
    height: 100%;
}

.l-parts02-white__information table.information {
    margin: 0 auto;
    max-width: 840px;
}

.l-parts02-white__information table.information th {
    width: 140px;
    text-align: center;
    font-size: 1.4rem;
    padding: 15px 25px;
    letter-spacing: 2px;
}

.l-parts02-white__information table.information td {
    font-size: 1.3rem;
    padding: 10px 25px;
    line-height: 1.5;
}

.l-parts03 {
    width: 100%;
    margin: 0 auto;
    background: #FFFEE8;
    padding:  0 0 6rem;
}

.l-parts03-column3 {
    display: flex;
    flex-wrap: wrap;
}

.l-parts03-column3__box {
    width: calc(((100% - 4rem) / 3) - 1px);
    margin: 0 2rem 2rem 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    position: relative;
    border: 2px solid #2252A7;
}

.l-parts03-column3__box:nth-child(3n) {
    margin: 0 0 2rem;
}

.l-parts03-column3__line {
    border-top: 0;
    padding: 1rem 2rem;
}

.l-parts03-column3__line .btn-web {
    margin: 2rem auto;
}

.l-parts03-column3__catch {
    margin: 0;
    padding: 1.8rem 1rem 0.8em;
    background: #2252A7;
    border-radius: 15px 15px 0 0;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.4em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-parts03-column3__catch span {
    color: #fffc2a;
    font-size: 3rem;
    display: contents;
}

.l-parts03-column3__title {
    margin: 0 0 2rem;
    padding: 0.2em 0 0.7em;
    border-bottom: solid 1px #B1B1B1;
    color: #3567BE;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.l-parts03-column3__title span{
    font-size: 1.8rem;
    display: contents;
}

.l-parts03-column3__title a {
    padding: 0 3rem 0 0;
    display: block;
    background: url(img/arrow01_blue.svg) no-repeat right center;
    background-size: 10px;
    color: #0096d2;
    text-decoration: none;
}

.l-parts03-column3__title a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
}

.l-parts03-column3__image {
    text-align: center;
    font-size: 1rem;
    color: #999;
    line-height: 1.2;
}

.l-parts03-column3__image img {
    max-width: 100%;
}

.l-parts03-column3__image span {
    display: block;
    padding-top: 1rem;
    color: #999;
}

.l-parts03-column3__list {
    margin: 2.5rem 0;
    padding: 0;
}

.l-parts03-column3__list li {
    background: url(img/icon_check01.png) no-repeat left 5px top 8px;
    padding-left: 30px;
}

.l-parts03-column3__list li span {
    font-size: 1.8rem;
    font-weight: 500;
    color: #FF6227;
}

.l-parts03-column3__tag {
    margin: 0;
}

.l-parts03-column3__tag .tag-list {
    margin: 0 1rem 1rem 0;
    padding: 0.2rem 1rem;
    display: inline-block;
    background: #fff;
    border: solid 1px #0096d2;
    font-size: 1.2rem;
    color: #0096d2;
    text-align: center;
    position: relative;
}

.l-parts03-column3__tag .tag-list:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #0097d2 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.l-parts03-column3__info {
    padding: 0 1rem;
    border-radius: 10px;
    background: #fff;
}

.l-parts03-column3__info dl {
    border-bottom: solid 1px #e5e5e5;
    font-size: 1.4rem;
    display: flex;
}

.l-parts03-column3__info dl:last-child {
    border: none;
    padding: 0 0 1rem;
}

.l-parts03-column3__info dl dt {
    padding: 1rem 0 1rem 1rem;
    width: 70%;
}

.l-parts03-column3__info dl dd {
    margin: 0;
    padding: 1rem 0;
    width: 30%;
}

ul.l-parts03-column3__tag {
    margin: 2rem 0 0;
}
.l-parts03-column3__line .btn-internal a {
width: 90%;
}


.l-parts04 {
    margin-bottom: 4rem;
    padding: 0;
    position: relative;
}

.l-parts04.wave {
}

.l-parts04.wave.wave02 {
    margin: 0 auto;
    background-position: center top -165px;
}

.l-parts04.wave.wave03 {
    margin: 0 auto 4rem;
    background-position: center top 42px;
}

.l-parts04 .l-section-inner {
    position: relative;
    z-index: 0;
    max-width: 1140px;
}

.l-parts04 .l-section-inner .questionArea {
    max-width: 1140px;
    margin: 0 0 9rem 0;
    background: url(img/parts04_bg-parts.png)no-repeat;
	background-size: 20%;
}
.l-parts04 .l-parts04-head{
    max-width: 830px;
    margin: 0 auto 7rem;
}

.l-parts04-list {
    display: flex;
    margin: 0 auto 2rem auto;
    position: relative;
}

.l-parts04-list.part01 {
    margin: 0 0 3rem auto;
	max-width: 1000px;
}
.l-parts04-list.part01 .l-parts04-body{
    width: 100%;
}

.l-parts04-list.part02 {
    margin: 0 auto 2rem auto;
}

.l-parts04-list__wrap.wave::before {
    width: 200vw;
    height: 100%;
    content: "";
    position: absolute;
    background: url(img/bg_wave01.png) no-repeat center;
    background-size: 1400px auto;
    left: -50vw;
    z-index: -1;
}

.left .l-parts04-image {
    margin: 0 30px 30px 0;
    width: 140px;
    text-align: center;
}

.l-parts04-image img {
    width: 50%;
}
.l-main-area--low .l-parts04-image img {
    width: 43%;
}


.right .l-parts04-image {
    margin: 0 0 30px 30px;
    text-align: center;
}

.l-parts04-image .label {
    margin: auto;
    padding: 0 0.5rem;
    background: #0096d2;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.8;
    text-align: center;
    color: #fff;
    display: inline-block;
    min-width: 90%;
}

.l-parts04-image {
    text-align: center;
}

.l-parts04-image .image-box {
    margin: 0;
}

.l-parts04-body {
    width: calc(100% - 140px);
    padding: 2.5rem 4rem;
    border-radius: 20px;
    position: relative;
    background: #F2F5F8;
    color: #111;
    font-size: 1.5rem;
    height: 50%;
    margin: auto;
}
.l-parts04-body .btn-internal{
    max-width: 380px;
}
.l-parts04-body .btn-internal a:after{
    transform: translateY(-50%) rotate(90deg);
}

.l-parts04-body:first-child::after {
    border-left-color: #fff;
    right: -54px;
}
.l-parts04-body:nth-child(2)::after {
    border-right-color: #fff;
    left: -54px;
}



.l-parts04-image{
    display: flex;
    align-items: center;
}
.l-parts04-image:first-child {
        margin-right: 0px;
    width: 40%;
    margin-left: -15rem;
}

.navi .l-parts04-image:first-child {
    margin-left: 0rem;
}


.l-parts04-image:first-child img{width: 60%;}

.l-main-area--low .l-parts04-image:first-child img{
    width: 50%;
}

.l-parts04-body .catch {
    margin: 1.5rem 0;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #3567BE;
    display: inline;
    padding: 0.5rem 0rem;
}

.navi .l-parts04-body .catch {
	font-size:1.8rem;
}
.l-parts04-body:first-child {
    margin-left: 1rem;
}

.l-parts04-body .catch p {
    font-weight: bold;
}

.l-parts04-body .catch span.bg-blue {
    display: inline-block;
    background: #3567BE;
    color: #fff;
    padding: 0.5rem 2rem;
    margin: 0 0 1rem 0;
    font-size: 2rem;
}
.l-parts04-body .catch span.line {
    background: linear-gradient(transparent 80%, #FFF84B 0%);
}

.l-parts04-body .catch a {
    display: block;
    background: url(img/arrow01_blue.svg) no-repeat right center;
    background-size: 10px auto;
}

.l-parts04 .tag {
    margin: 0;
}

.l-parts04 .tag .tag-list {
    margin: 0 1rem 1rem 0;
    padding: 0.2rem 1rem;
    display: inline-block;
    background: #fff;
    border: solid 1px #0096d2;
    font-size: 1.2rem;
    color: #0096d2;
    text-align: center;
    position: relative;
}

.l-parts04 .tag .tag-list:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #0097d2 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.l-parts05 {
    margin: 0 0 10rem;
}

.l-parts05-column2 {
    display: flex;
    flex-wrap: wrap;
}

.l-parts05-box {
    width: calc((100% - 3rem) / 2);
    margin: 0 0 4rem 1rem;
    padding: 2rem 3rem;
    border-radius: 10px;
    position: relative;
    background: #f1fafe;
}

.l-parts05-box:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #f1fafe;
    border-radius: 10px;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
}

.l-parts05-box:nth-child(2n) {
    margin: 0 0 4rem 2rem;
}

.l-parts05-image {
    width: 100px;
    height: auto;
    float: left;
    font-size: 1.4rem;
}

.l-parts05-image .flame {
    margin-bottom: 1rem;
    max-width: 100px;
    height: auto;
    text-align: center;
}

.l-parts05-image span {
    padding-left: 1rem;
    color: #333;
    font-weight: normal;
}

.l-parts05-image img {
    max-width: 100%;
}

.l-parts05-catch {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: #3567BE;
    margin: 1rem 0;
    letter-spacing: 2px;
	    font-weight: bold;
}

p.l-parts05-text {
    margin: 1rem 0 0;
}

.l-parts05-box .caption {
    white-space: nowrap;
    overflow: auto;
}

.l-parts05-box .caption::-webkit-scrollbar {
    height: 5px;
}

.l-parts05-box .caption::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 10px;
}

.l-parts05-box .caption::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 10px;
}

.pr-wrap {
    border: 3px solid #3567BE;
    border-radius: 10px;
    background: url(img/img_nav08.png) no-repeat 95% 20% ,#EBF2FF;
    margin-left: 2rem;
    background-size: 210px auto;
    padding: 0 4rem;
}

.pr-box-head {
    margin: -6rem 0 2rem -2.2rem;
    background: #3567BE;
    border-radius: 10px;
    padding: 2rem 2rem 2rem 10rem;
    color: #fff;
    font-size: 2.6rem;
    font-weight: bold;
    display: inline-block;
    max-width: 750px;
    position: relative;
    line-height: 1.4;
    width: 100%;
}

.pr-box-head .txt-pr {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    background: #FFF84B;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #3567BE;
    font-size: 2.8rem;
}
.pr-box-head .small{
    font-size: 2.8rem;
}

.pr-box-head a {
    display: block;
    background: url(img/arrow01_white.svg) no-repeat right center;
    background-size: 12px auto;
    padding-right: 20px;
    text-decoration: none;
    font-size: 3.4rem;
}

.pr-box-body {
    padding: 0 25rem 2rem 0rem;
}

/*--------------------------------------
  toc_parts
---------------------------------------*/
.toc_parts {
    background: #fff;
    margin: 5rem 0;
    padding: 4rem 5rem;
    box-sizing: border-box;
    border: 2px solid #ABC4F2;
}

.toc_parts .ttl {
    padding: 0 0 0 1rem;
    font-size: 2rem;
    font-weight: bold;
    border-left: 4px solid #3567BE;
}

#toc {
    margin: 1.5rem 0 0 0;
    padding: 0 2rem 0;
    border-top: 1px solid #C4C4C4;
}

#toc .chapter {
    margin: 0 0 2rem;
    counter-reset: count;
}

#toc .chapter .chapter-h {
    margin: 2rem 0 0;
    padding: 0 0 0 3.5rem;
    font-size: 1.6rem;
    line-height: 1.8;
    position: relative;
    counter-increment: count;
    background: none;
}

#toc .chapter .chapter-h:last-child {
    margin-bottom: 0;
}

#toc ul.chapter .chapter-h::before {
    content: "0" counter(count);
    position: absolute;
    top: 14px;
    left: 0;
    transform: translate(0, -50%);
    color: #55ACEE;
    font-size: 2rem;
    font-weight: bold;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
}

#toc .chapter .chapter-h a {
    font-weight: bold;
    text-decoration: none;
}

#toc .chapter .chapter-h a:hover {
    opacity: .6;
}

#toc .chapter .chapter-h span {
    color: #0b072b;
    font-weight: bold;
}

#toc li.chapter-h.chapter-h-three {
    margin: 1rem 0 1rem 4rem;
    padding: 0 0 0 1.5rem;
    counter-increment: none;
}

#toc li.chapter-h.chapter-h-three::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: solid 1px #0b072b;
    border-right: solid 1px #0b072b;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#toc li.chapter-h.chapter-h-three a {
    font-weight: 400;
}

#toc li.chapter-h.chapter-h-three span {
    font-weight: 400;
}

#toc .chapter br {
    display: none;
}

/*
---------------------------------------------

  smartphone settings

  */
@media screen and (min-width: 481px) {
    .sp, .forSP, .sp_br {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    body {
        min-width: 100%;
        min-width: inherit;
        font-size: 1.4rem;
    }

    .pc, .forPC, .pc_br {
        display: none !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }
    .site_title_lower img{
        width: 30%;
    }

    /*
---------------------------------------------


*/
    .l-main-area{
        margin: 0 auto 7rem auto;
    }
    .l-main-area .top_h2 {
        margin: 0 0 3rem;
        padding: 2rem 2rem 0;
        font-size: 2.2rem;
    }

    .l-main-area .top_h2 a {
        background-size: 8px 16px;
    }

    .l-main-area .top_h2:after {
        height: 30px;
    }

    .l-main-area .top_h3 {
        font-size: 2rem;
    }

    .l-main-area .top_h3 a {
        background-size: 8px 16px;
    }

    .l-main-area .top_h4 {
        font-size: 1.8rem;
    }

    .l-main-area .top_h4 a {
        background-size: 7px 15px;
    }

    .l-main-area ul {
        margin: 2rem 0;
        font-size: 1.4rem;
    }

    .l-main-area ol {
        margin: 3rem 0;
        font-size: 1.4rem;
    }

    .l-main-area table {
        width: 100%;
        margin: 30px auto 20px;
        display: block;
        border-top: 1px #d3d3d3 solid;
        font-size: 1.4rem;
    }

    .l-main-area table tr {
        width: 100%;
        display: block;
    }

    .l-main-area table th {
        width: 100%;
        display: block;
        border-top: none;
    }

    .l-main-area table td {
        width: 100%;
        display: block;
        border-top: none;
    }

    .l-main-area table thead {
        width: 100%;
        display: block;
    }

    .l-main-area table thead th {
        width: 100%;
        display: block;
    }

    .l-main-area table thead td {
        width: 100%;
        display: block;
    }

    .l-main-area table tbody {
        width: 100%;
        display: block;
    }

    .l-main-area table tbody th {
        width: 100%;
        display: block;
    }

    .l-main-area table tbody td {
        width: 100%;
        display: block;
    }

    .btn-web {
        width: 90%;
        min-width: inherit;
        margin: 3rem auto;
    }
    .lower-bottom .btn-web{
        width: 90%;
    }

    .btn-web a {
        padding: 1.5rem 2rem 1.8rem 1rem;
        font-size: 1.5rem;
    }
	.lower-bottom .btn-web a {
		width: 90%;
    padding: 1.5rem 2rem 1.8rem 1rem;
    font-size: 1.5rem;
 }
    .btn-web a:after {
        right: 1.5rem;
        background-size: 60%;
    }

    .btn-internal {
        width: 90%;
        margin: 3rem auto;
    }
    

    .btn-internal a {
        width: 90%;
        min-width: inherit;
        padding: 1.2rem 3rem 1.8rem 3rem;
        font-size: 1.6rem;
    }

    .btn-internal a:after {
        background-size: 60%;
    }

    .btn-internal.up {
        margin-top: 5rem;
    }

    .btn-internal.up a {
        width: 90%;
    }

    .btn-tel {
        width: 90%;
        margin: 2rem auto;
        padding: 0;
        display: block;
        text-align: center;
    }

    .btn-tel a {
        width: 90%;
        position: relative;
        margin: 0;
        padding: 1.5rem 1rem 1.8rem 1rem;
        background: #3567BF url(img/icon_tel.svg) no-repeat left 20px center;
        background-size: auto 20px;
        border-radius: 40px;
        box-shadow: 5px 5px 0 #ccc;
        display: inline-block;
        font-size: 1.5rem;
        line-height: 1.4;
        text-decoration: none;
        text-align: center;
        z-index: 10;
        color: #fff;
        font-weight: bold;
    }

    .btn-link {
        margin: 3rem auto;
        padding: 0;
        display: block;
        text-align: center;
        width: 90%;
    }

    .btn-link a {
        width: 90%;
        position: relative;
        margin: 0 auto;
        padding: 1.6rem 4rem 1.9rem 4rem;
        text-align: center;
        display: inline-block;
        background: #fff url(img/arrow01_blue.svg) no-repeat right 20px center;
        background-size: 9px 15px;
        border: #3567BE solid 2px;
        border-radius: 100px;
        color: #3567BE;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.4;
        text-decoration: none;
    }

    .btn-accordion {
        width: 90%;
        margin: 4rem auto;
        padding: 1.6rem 13%;
		font-size: 1.5rem;
    }

    .l-main-area .float-wrap {
        width: 100%;
        margin: 10px auto 20px;
        font-size: 1.4rem;
    }

    .l-main-area .float-wrap .flame {
        text-align: center;
		width: 80%;
    margin: 0 auto;
    }

    .l-main-area .float-wrap .float-img.fr {
        width: 100%;
        margin: 0 0 20px;
        float: none;
    }

    .l-main-area .float-wrap .float-img.fl {
        width: 100%;
        margin: 0 0 20px;
        float: none;
    }

    .l-main-area .float-wrap .float-img.ct {
        width: 100%;
    }

    .l-main-area .float-wrap .float-img.t_small {
        width: 40%;
    }

    .l-main-area .float-wrap .float-img.fr.t_small {
        margin: 0 0 20px 10px;
        float: right;
    }

    .l-main-area .float-wrap .float-img.fl.t_small {
        margin: 0 20px 10px 0;
        float: left;
    }

    .l-main-area .box-wrap {
        width: 94%;
        margin: 8rem 0 4rem auto;
        display: block;
        font-size: 1.4rem;
    }

    .l-main-area .box-wrap .box {
        width: 100%;
        margin: 0 0 5rem;
        padding: 1.5rem;
    }

    .l-main-area .box-wrap .box:nth-child(2n) {
        margin: 0 auto 2rem;
    }

    .l-main-area .box-wrap .box-head {
        margin: -4rem 0 0 -4rem;
        padding: 0;
        font-size: 2rem;
    }

    .l-main-area .box-wrap .box-head a {
        padding: 2rem 3rem 2rem 2rem;
        background-size: 10px;
        background-position: right 1rem center;
    }

    .l-main-area .box-wrap .box-body {
        padding: 1rem 0;
    }

    .l-main-area .box-wrap .box-body .btn-internal a {
        width: 90%;
    }

    .l-main-area .frame-wrap {
        margin: 0 auto 4rem;
        display: block;
        font-size: 1.4rem;
    }

    .l-main-area .frame-wrap .frame {
        width: 100%;
        margin: 0 auto 2rem;
		padding: 2rem 2rem 1rem;
    }

    .l-main-area .frame-wrap .frame:nth-child(3n) {
        margin: 0 auto 2rem;
		    padding: 2rem;
    }

    .l-main-area .frame-wrap .frame::before {
        left: 25px;
    }

    .l-main-area .frame-wrap .frame-head {
        font-size: 2rem;
        text-align: center;
    }
    .l-main-area .l-parts.part02 .frame-wrap .frame-head{
        font-size: 2rem;
    }

    .l-main-area .frame-wrap .frame-head a {
        background-size: 8px;
        padding: 0 2.5rem 0 2.5rem;
    }
    .l-main-area .frame-wrap .frame-head a span{
        font-size: 1.6rem;
    }
	
	.l-main-area .l-parts.part01 .frame-wrap .frame-head {
    font-size: 2.2rem;
}

    .l-main-area .l-icon-title {
        width: 100%;
        margin: 5rem 0 1.5rem;
        padding: 1rem 1rem 1rem 7.5rem;
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .l-main-area .l-icon-title:before {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        left: -4px;
        background-size: 100% auto;
    }

    .l-main-area .l-icon-title:after {
        width: 60px;
        height: 60px;
        left: 0;
        background-size: 100% auto;
        font-size: 1.3rem;
    }

    .l-main-area .l-number-wrapper .l-icon-title:before {
        padding: 0;
        font-size: 2.8rem;
    }

    /* low ----------------*/
    .site_title_lower-wrapper {
          padding: 1rem 0 0.7rem;
    }

    .l-main-area--low h1 {
        margin: 2rem 0 3rem;
        font-size: 2.6rem;
        line-height: 1.4;
        background-size: 35px auto;
        padding: 2rem 0 0;
    }

    .l-main-area h2:not([class]), .l-main-area--low h2 {
        text-align: left;
        font-size: 2rem;
        background-size: 50px auto;
        padding: 1.4rem 2rem;
        margin: 5rem 0 2rem;
        background: #bbe2ff;
    }

    .l-main-area h2:not([class]) a, .l-main-area--low h2 a {
        background-size: 8px auto;
    }

    .l-main-area h3:not([class]), .l-main-area--low h3 {
        font-size: 1.8rem;
		    margin: 2rem auto 1rem;
    }

    /*
---------------------------------------------

  header area

  */
    .l-header {
        width: 96%;
        margin: 0 auto;
        padding: 10px 0;
        text-align: left;
    }

    .l-header-area {
        padding: 0;
    }

    .l-header-left {
        display: none;
    }

    .l-header-sitename {
        font-size: 1rem;
    }

    .l-header-logo a {
        width: 50%;
        height: auto;
    }

    .l-gnavi-area {
        display: none;
    }

    /*
---------------------------------------------

  footer area

  */
    .l-footer-area {
        padding: 2rem 0 5rem 0;
        min-width: inherit;
    }

    .footMenu {
        width: 100%;
        height: 6rem;
        margin: 0;
        position: fixed;
        bottom: 0;
        z-index: 300;
    }

    .footMenu .menuLeft {
        width: 50%;
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #3567BE;
    }

    .footMenu .menuLeft .l-gnavi-btn {
        margin: 0;
    }

    .footMenu .menuRight {
        width: 50%;
        height: 100%;
        float: right;
        background: #FFFA85;
        color: #3567BE;
        font-size: 1.2rem;
        line-height: 1.2;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .footMenu .menuRight a {
        padding: 0.15rem 2rem 0 0.5rem;
        background: url(img/arrow01_blue.svg) no-repeat right 0rem center;
        background-size: 6px;
        color: inherit;
        display: block;
        text-decoration: none;
		    font-weight: bold;
    }

    .footMenu .l-gnavi-btn {
        width: 100%;
        height: 100%;
    }

    .footMenu .l-gnavi-btn span {
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
    }

    .footMenu .l-gnavi-btn span:nth-child(1) {
        top: 15px;
    }

    .footMenu .l-gnavi-btn span:nth-child(2) {
        top: 25px;
    }

    .footMenu .l-gnavi-btn span:nth-child(3) {
        top: 35px;
    }

    .footMenu .l-gnavi-btn.active span:nth-of-type(1) {
        transform: translate(-50%, 10px) rotate(-45deg);
    }

    .footMenu .l-gnavi-btn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .footMenu .l-gnavi-btn.active span:nth-of-type(3) {
        transform: translate(-50%, -10px) rotate(45deg);
    }

    .l-footer-logo {
        margin: 1rem auto;
        width: 92%;
    }

    .l-footer-logo__image {
        width: 100%;
    }

    .l-footer-logo__link {
        display: block;
        text-align: center;
        color: #3567BE;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.6;
        text-decoration: none;
    }

    .l-footer-logo__link .belt {
        display: inline-block;
        font-size: 1.8rem;
        font-weight: 500;
        background: #fff;
        color: #0096d2;
        padding: 5px 20px;
    }

    .l-footer-logo__link .small {
        font-size: 2rem;
    }

    .l-footer-disclaimer {
        width: 90%;
        margin: 0 auto 1rem;
        padding: 2rem 5%;
    }

    .l-footer-bottom {
        padding: 0 5%;
    }

    .l-footer-bottom__inner {
        width: 90%;
        display: block;
    }

    .l-footer-bottom__copy {
        display: block;
        text-align: center;
    }

    .l-footer-bottom__sitemap {
        display: none;
    }

    .l-footer-note {
        margin: 0 0 1rem;
        font-size: 1rem;
    }

    .l-footer-menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 110;
        width: 100%;
        height: 100%;
        background: #d0f0fc;
        margin: 0;
        padding: 0 0 60px 0;
        opacity: 0;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, opacity 1s;
    }

    .l-footer-menu-wrapper.active {
        transform: translate3d(0, 0, 0);
        transition: transform 0.3s ease-in-out, opacity 0.3s;
        opacity: 1;
    }

    .l-footer-menu {
        width: 90%;
        margin: 0 auto 2rem;
    }

    .l-footer-menu__title {
        margin: 0 0 1rem;
        padding: 0;
        border-bottom: solid 1px #333333;
    }

    .l-footer-menu__title__link {
        display: block;
        font-size: 1.5rem;
        position: relative;
        padding: 1rem 2.5rem 1rem 0;
        background: none;
        font-weight: inherit;
        color: #333333;
    }

    .l-footer-menu__title__link::after {
        content: "";
        width: 8px;
        height: 15px;
        background: url(img/arrow01_blue.svg) no-repeat center center;
        background-size: 100%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%) rotate(90deg);
    }

    .l-footer-menu__title__link.is-open::after {
        transform: translateY(-50%) rotate(270deg);
    }

    .l-footer-menu__title__link:hover {
        text-decoration: none;
        opacity: 1;
    }

    .l-footer-menu__list {
        display: none;
    }

    .l-footer-menu__list__item {
        width: 100%;
        padding: 0.8rem;
    }

    .l-footer-menu__list__item:first-child {
        display: block;
    }

    .l-footer-menu__list__link {
        margin: 0;
        display: block;
        background: url(img/icon_li_footer.svg) no-repeat left top 13px;
        background-size: 8px 8px;
    }

    .l-footer-submenu__list {
        display: block;
    }

    .l-footer-submenu__list__item {
        display: block;
    }

    /*
---------------------------------------------

  common

  */
    .l-pagetop {
        top: -5.5rem;
        right: 0.5rem;
    }

    .l-pagetop__link {
        width: 50px;
        height: 50px;
    }

    .l-pagetop__link:hover {
        background: #0096d2;
    }

    .l-pagetop__image {
        width: 14px;
    }

    .l-pagetop.is-fixed {
        bottom: 5.5rem;
    }

    #pankuzu {
        margin: 0 auto;
        padding: 1rem;
        white-space: nowrap;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .l-sns-list {
        display: none;
    }

    /*
---------------------------------------------

  contents area

  */
    .l-contents-area {
        padding: 0;
    }

    .l-contents-area--low {
        width: 100%;
    }

    /*
---------------------------------------------

  main area

  */
    .l-main-area--low {
        width: 94%;
        margin: 0 auto 7rem;
        float: none;
        overflow: visible;
    }

    .l-section-inner {
        width: 94%;
        margin: 0 auto;
    }

    p.l-common-lead {
        width: 100%;
        margin: 2rem 0 3rem;
    }

    /*
---------------------------------------------

  top

  */
    .l-mv {
        min-height: inherit;
        min-width: inherit;
        padding: 0;
        background: none;
        position: relative;
        margin-bottom: 5rem;
    }

    .l-mv-wrapper {
        width: 100%;
        padding: 0;
    }

    .l-mv-logo {
        position: relative;
        width: 100%;
        padding: 0;
        background: none;
        text-align: left;
    }

    .l-mv-logo img {
        width: 60%;
    }

    .l-mv-box {
        width: 100%;
        margin: 0;
        padding: 1rem;
        background:url(img/bg_mv_sp.jpg) -30rem no-repeat;
        background-size: auto 100%;
    }
	
	.l-mv-box .btn-internal {
    margin: 1rem auto;
}

    .l-mv-box .btn-internal a:after {
        transform: translateY(-50%) rotate(90deg);
    }

    .l-mv-box p {
        margin: 0;
        padding: 0.8rem;
    }
	
	.l-main-area .l-mv-box p {
    margin: 0 auto;
    padding: 0 1.5rem 1rem;
}

    .l-mv-title {
        width: 100%;
        min-height: 13rem;
        margin: 2rem 0 0;
        padding: 0 48% 1rem 1rem;
        background: url(img/bg_mv.jpg) center top no-repeat;
        background-size: cover;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
    }

    .l-mv-check {
        display: none;
    }

    .l-mv-title {
        font-size: 2rem;
    }

    .l-mv-box02 {
        position: relative;
        background: none;
    }

    .l-mv-box02_inner {
        width: auto;
    }

    .l-mv-box-wrap {
        background: rgba(255, 255, 255 ,0.7);
		padding: 1rem 0 0 0;
    }
	
	.l-mv-box-wrap img {
  width: 50%;
    text-align: center;
    margin: 0 auto 0;
    display: block;
    background: #356cc2;
    padding: 0.5rem 1rem;
}

    .l-mv-box02_title {
           padding: 0 0 1rem;
        text-align: center;
        font-size: 3rem;
        letter-spacing: 3px;
        line-height: 1.4;
    }

    .l-mv-box02_title .belt {
        font-size: 2.4rem;
        letter-spacing: 3px;
        display: initial;
		margin-bottom: 1rem;
    line-height: 1;
    }
	
.l-mv-box02_title .mv-box_margin {
    margin-top: 10px;
}
	
    .l-mv-box02_title .small {
        font-size: 1.8rem;
    }

    .l-mv__person-wrap {
       position: relative;
    right: auto;
    bottom: auto;
    margin: 6rem 1rem 3rem;
    padding:4rem 1rem 0rem 7rem;
    border: 4px solid #3567BE;
    border-radius: 10px;
    }

    .l-mv__person__img {
       top: -155px;
        display: flex;
        align-items: baseline;
        justify-content: center;
        height: 80px;
        text-align: center;
    }
    .l-mv__person_box:first-child .l-mv__person__img{
        width: 90%;
        height: auto;
        align-items: center;
		left: 0%;
    }
    .l-mv__person_box:nth-child(2) .l-mv__person__img{align-items: center;}

    .l-mv__person__img img {
        height: auto;
        width: 90%;
    }
	.l-mv__person__img__st {
		left: 0;
			width: 100%;
		}

    .l-mv__person-balloon {
        position: absolute;
    background: #FFFA85;
    left: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #3567c0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 0.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	text-shadow: -1px 2px 0 #fffa85;
    }

    .l-mv__person_box {
        margin:  0.9rem auto;
        font-size: 1.4rem;
        width: 50%;
    }

    .l-mv__person_name {
        font-size: 1.5rem;
		margin-top: 1rem;
    }

    .l-mv__person_txt {
        font-size: 1.3rem;
    }

    .l-common-title {
        font-size: 2.2rem;
        margin: 1rem 0 2rem;
        padding-top: 3.5rem;
    }
	
    .l-common-title span{
        font-size: 3rem;
    }
.l-common-title:before {
	width: 40px;
    height: 21px;
	    }
	
    .l-common-title span.sp_fontsize {
        font-size: 3.2rem;
		line-height: 1.4em;
    }

    .l-common-lead {
        margin: 2rem auto;
        width: auto;
        padding: 0 1.5rem;
    }

    .l-common-title02__wrap {
        margin: 0 0 4rem 0;
        background: url(img/sp_lower-bottom_bg.png) no-repeat center center #3567BF;
        background-size: auto 100%;
    }
    #osusume .l-common-title02__wrap{background: url(img/sp_lower-bottom_bg.png) no-repeat center center, #3567BF;background-size: auto 100%;}

    .l-common-title02 span {
        font-size: 2.2rem;
    }

    lower-bottom .l-common-title02__wrap {
        margin-bottom: 1rem;
    }

    .l-common-title02 {
        padding: 3rem 2rem 5rem;
        font-size: 2.2rem;
        position: relative;
		z-index: 0;
    }
    #osusume .l-common-title02{
        padding: 3rem 1.7rem 5rem;
		z-index: 0;
    }

    .l-common-title02:after {
        background-size: 100% auto;
        position: absolute;
        content: "";
        bottom: 0;
        background: url(img/sp_icon_right.png) no-repeat bottom right;
        background-size: auto 35%;
        width: 178px;
        height: 186px;
        right: 0%;
        top: -31%;
        margin: 0;
		z-index: -1;
    }
    #osusume .l-common-title02:after{
        margin: 0;
        transform: translateY(-50%);
        bottom: 0;
        top: 46%;
        background-size: auto 35%;
		z-index: -1;
    }
    #osusume .l-common-title02:before{
        margin: 0;
        bottom: 0;
        background-size: auto 35%;
        transform: translateY(-50%);
        top: 43%;
		z-index: -1;
    }

    .l-common-title02:before {
        content: "";
        position: absolute;
        left: 0%;
        background: url(img/sp_icon_left.png) no-repeat left bottom;
        background-size: auto 35%;
        width: 168px;
        height: 196px;
        margin: 0;
        top: -38%;
		    z-index: -1;
    }

    .l-common-lead02 {
        margin: 2rem 0;
    }

    .l-common-lead02 p:not([class]) span.sp_color {
        color: #FF6227;
        letter-spacing: 1px;
        font-size: 1.8rem;
    }

    .curtain-title-box {
        min-width: inherit;
        padding: 3rem 0 1rem;
        background: url(img/bg_cartain01_left.png) no-repeat left top, url(img/bg_cartain01_right.png) no-repeat right top, url(img/txt_special-feature.png) no-repeat center top 10px;
        background-size: 42% auto, 42% auto, 60px auto;
        margin-top: 30px;
    }

    .curtain-title {
        padding: 6rem 6rem 0;
        background: url(img/img_seiko03.png) no-repeat right -14px bottom, url(img/img_kyoko03.png) no-repeat left -15px bottom;
        background-size: 8rem;
        letter-spacing: 0;
        font-size: 2.4rem;
    }

    .l-section-inner {
        background-size: 20%;
    }

    .l-parts {
        min-width: 100%;
    }
	.l-parts.pr {
    margin: 7rem auto 0;
}
	
    .l-parts.part01,
    .l-parts.part02{
        margin: 5rem auto 4rem;
    }

    .l-parts01 {
		padding: 3rem 0 4em;
        overflow-x: hidden;
        min-width: 100%;
    }

    .l-parts01 .l-section-inner {
        background-size: 20%;
        background-position: left top, right top 300px;
    }

    .l-parts01-column3 {
        min-width: inherit;
    }

    .l-parts01-column3:after {
        content: none;
    }

    .l-parts01-column3__box {
        width: 96%;
        margin: 2rem auto 0;
        position: relative;
        padding: 2rem;
    }

    .l-parts01-column3__box:nth-child(2n) {
        margin-right: auto;
    }

    .l-parts01-column3__box .catch-image {
        width: 80%;
        margin: 0 auto;
    }

    .l-parts01-column3__box .catch-text, .l-parts01-column3__box .catch-body {
        padding: 0;
    }
    .l-parts01-column3__box .catch-text{
        font-size: 2rem;
    }

    .l-parts02 {
        margin: 4rem auto 0;
        padding: 4rem 0 6rem;
        min-width: inherit;
        background: #EBF2FF;
        background-size: 100% auto;
    }

    .l-parts02:before {
        height: 3rem;
        background-position: -5rem 0;
        background-size: 120% auto;
    }

    .l-parts02:after {
        bottom: -2px;
        height: 3rem;
        background-position: -5rem 0;
        background-size: 120% auto;
    }

    .l-parts02-white {
        width: 100%;
        padding-bottom: 2rem;
    }

    .l-parts02-white:last-child {
        margin-bottom: 0;
    }

    .l-parts02-white-inner {
        margin: 0 auto 2rem;
        padding: 0 1.5rem;
    }

    .l-parts02-white__title {
        padding: 2rem 3rem 2rem;
    }

    .l-parts02-white__title:after {
        height: 25px;
        top: 99%;
        background: url(img/bg_waveblue2_l_top.svg) no-repeat left top -5px;
    }

    .l-parts02-white__title .catch-title {
        width: auto;
        padding: 0;
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .l-parts02-white__title .catch-title span {
        font-size: 2.4rem;
    }
    .l-parts02-white__column2 .school{
        font-size: 2.4rem;
		margin: 0 auto 2rem;
		line-height: 2.8rem;
    }
    .l-parts02-white__column2 .school span{
        font-size: 1.6rem;
    }

    .l-parts02-white__column2 {
        width: 100%;
        margin:2rem 0;
        display: block;
        position: relative;
    }

    .l-parts02-white__column2__left {
        width: auto;
        top: 6rem;
        font-size: 1.2rem;
        margin: auto;
        height: auto;
    }

    .l-parts02-white__column2__left img {
        height: auto;
        max-height: 200px;
    }

    .l-parts02-white__column2__right {
        width: 100%;
    }

    .l-parts02-white__column2 .catch02 {
        margin: 0 0 2rem;
        color: #0096d2;
        line-height: 1.4;
        font-size: 1.8rem;
        font-weight: 500;
    }

    .l-parts02-white__column2__right .balloon {
        padding: 1rem;
    }

    .l-parts02-white__column2__right .balloon::before {
        border-bottom-color: #0096d2;
        top: -18px;
        left: 80%;
    }

    .l-parts02-white__column2__right .balloon::after {
        border-bottom-color: #fff;
        top: -15px;
        left: 80%;
    }

    .l-parts02-white__column2__right .clinic {
        margin: 2rem 0 1rem;
        padding: 1.5rem 8.5rem 1.5rem 0rem;
        background: url(img/img_kyokoseiko02.png) no-repeat right bottom;
        background-size: 80px auto;
        color: #0096d2;
        line-height: 1.2;
        font-size: 2.2rem;
        font-weight: 500;
    }

    .l-parts02-white__column2__right .price {
        width: 60%;
        margin: 0 0 3.5rem auto;
    }

    .l-parts02-white__column2__right .price-list {
        padding: 0.5rem;
        font-size: 1.4rem;
    }

    .l-parts02-white__column2__right .price-list .data span {
        font-size: 1.8rem;
    }

    .l-parts02-white .title-voice {
        font-size: 2rem;
        margin: 3rem 0 2rem;
    }
    .l-parts02-white .featureArea .title-voice{
        margin: 2rem 0 1rem;
    }

    .l-parts02-white .title-voice span {
        padding: 0 1rem;
        background: #fff;
        display: inline-block;
        width: 100%;
        line-height: 1.4;
    }

    .l-parts02-white__column3__box {
        width: 100%;
        margin: 0 0 2rem;
		    padding: 2rem;
    }

    .l-parts02-white__column3__box .voice-catch {
        margin: 0 0 1rem;
    padding: 0 0 1rem 6rem;
    }

	.l-parts02-white__column3__box .voice-catch {
    background: url(img/icon_hexagon02.png) no-repeat 3% 30%;
		background-size: 12%;
}
    .l-parts02-white__information .map {
        width: 100%;
        margin: 0 0 2rem;
    }

    .l-parts02 table.information {
        margin: 0;
        width: 100%;
    }

    .l-parts02 table.information th {
        width: 100%;
        border-width: 0px 1px 0px 1px;
        padding: 2px 25px;
    }

    .l-parts03 {
        margin-bottom: 2rem;
        min-width: 100%;
    }

    .l-parts03-column3__box {
        width: 100%;
        margin: 0 0 2rem;
    }

    .l-parts03-column3__catch {
        padding: 1.5rem;
        line-height: 1.4;
        font-size: 1.8rem;
    }
    .l-parts03-column3__catch span{
        font-size: 2.4rem;
    }

    .l-parts03-column3__title {
        text-align: center;
        padding: 0 0 1rem;
        font-size: 2.2rem;
    }

    .l-parts03-column3__info dl {
        font-size: 1.3rem;
    }

    .l-parts03-column3__info dl dd {
        padding: 1rem 0 1rem 0;
    }

    p.l-parts03-column3__image {
        margin: 0;
    }

    ul.l-parts03-column3__tag {
        margin: 1rem 0 0;
    }
	
	.l-parts03-column3__line .btn-web a {
    padding: 1rem 2rem 1.3rem 1rem;
}
	.l-parts03-column3__line .btn-internal a {
    padding: 1rem 2rem 1.3rem 1rem;
}
	.l-parts03-column3__line .btn-tel a {
    padding: 1rem 2rem 1.3rem 1rem;
}
	
	
		.lower-bottom .btn-web a {
    padding: 1rem 2rem 1.3rem 1rem;
}
	.lower-bottom .btn-internal a {
    padding: 1rem 2rem 1.3rem 1rem;
}
	.lower-bottom .btn-tel a {
    padding: 1rem 2rem 1.3rem 1rem;
}
	
	.float-img.ct {
    margin: 0 auto;
    text-align: center;
    width: 80%;
}
	
	
    .l-parts04 {
        min-width: inherit;
        padding: 0;
        margin-bottom: 2rem;
    }

    .l-parts04 .l-section-inner:after, .l-parts04 .l-section-inner:before {
        content: none;
    }

    .l-parts04-list {
        display: flex;
        margin: 0 0 2rem 0;
        position: relative;
    }

    .l-main-area.l-main-area--low .l-parts04-list {
        position: relative;
        display: block;
        margin-top: -1rem;
    }

    .l-parts04-body {
        font-size: 1.4rem;
    }

    .l-parts04-body:first-child, .l-parts04-body:nth-child(2) {
        margin: 0;
        display: block;
		    padding: 2rem 2rem 1rem;
    }
.l-parts04-body:first-child {
    margin-left: 0;
}
    .l-main-area.l-main-area--low .l-parts04-body:nth-child(2) {
        margin: 0 auto;
        display: block;
        /* margin-left: 8.5rem; */
    }

    .l-parts04-body:first-child::before, .l-parts04-body:first-child::after, .l-parts04-body:nth-child(2)::before, .l-parts04-body:nth-child(2)::after {
        display: none;
    }

    .l-parts04.wave, .l-parts04.wave.wave02, .l-parts04.wave.wave03 {
        min-width: 100%;
    }
    .l-parts04 .l-parts04-head{
        margin: 0 auto 3rem;
    }
    .l-common-title .marker{
        font-size: 2rem;
    line-height: 1.6em;
    }
    .l-parts04 .l-section-inner .questionArea{
        background: url(img/parts04_bg-parts.png)no-repeat 0% 0%;
        padding: 8rem 0 0;
        background-size: 50%;
        margin: 0 auto 0rem auto;
    }
    .l-parts04-image {
        width: 8rem;
        height: 9rem;
        position: absolute;
        z-index: 1;
        margin: auto;
        top: 1rem;
        text-align: center;
    }

    .l-parts04-image:first-child {
        left: 2%;
        width: 28%;
        top: 50%;
        transform: translateY(-50%);
		margin-left: 0;
    }
	
.navi .l-parts04-image:first-child {
    left: 5%;
  top: 23%;
}
    .l-main-area.l-main-area--low .l-parts04-image:first-child {
        left: 1%;
        top: 0%;
        bottom: 0;
        width: 30%;
        transform: translateY(-70%);
    }

    .l-parts04-image:nth-child(2n) {
        right: 2rem;
		    top: 4rem;
    }
	.navi .l-parts04-image:nth-child(2n) {
    right: 2rem;
    top: 1rem;
}

    .l-main-area.l-main-area--low .l-parts04-image:nth-child(2n) {
        right: 2%;
        top: -1rem;
        bottom: 0;
        width: 23%;
        transform: translateY(-70%);
    }

    .l-parts04-image .label {
        top: 1rem;
        font-size: 1.1rem;
        width: 100%;
        line-height: 1.4;
    }

    .l-parts04-image .image-box {
        width: 100%;
        height: auto;
        margin: auto;
    }

    .l-parts04-image .image-box img {
        width: 100%;
        height: auto;
    }

    .l-main-area.l-main-area--low .l-parts04-image .image-box img {
        width: 80%;
        height: auto;
    }

    .l-parts04-body {
        width: 100%;
        padding: 2rem;
    }

    .l-main-area.l-main-area--low .l-parts04-body {
        width: 100%;
        padding: 1.4rem;
        margin: 0 auto;
    }

    .l-parts04-body .catch {
        min-height: 7rem;
        display: flex;
        align-items: center;
        font-size: 1.8rem;
        letter-spacing: 1px;
        display: block;
    }
	.navi .l-parts04-body .catch {
	font-size:1.6rem;
}
	
      .l-parts04-body .catch span.bg-blue{
		font-size: 1.6rem;
    padding: 0.3rem 1rem;}

    .l-parts04-body .catch a {
        padding-right: 2rem;
    }

    .l-parts04-body:first-child .catch {
        margin: 0 10rem 2rem 0;
    }

    .l-parts04-body:nth-child(2n) .catch {
        margin: 0 0 2rem 10rem;
    }

    .l-parts05-box {
        width: 100%;
        margin: 0 0 3rem;
        padding: 2rem;
    }
    .l-parts05-image .flame{
        margin-bottom: 0rem;
    }

    .l-parts05-box:nth-child(2n) {
        margin: 0 0 2rem;
    }

    .l-parts05-catch {
        font-size: 1.6rem;
        margin: 0rem 0 1rem;
    }

    .pr-wrap {
        border: 3px solid #3567BE;
        border-radius: 10px;
        margin: 7rem 0 2rem 0rem;
        background: #EBF2FF;
        padding: 0 2rem;
    }

    .pr-box-head {
        margin: -2rem 0 1rem 0rem;
        background: #3567BE;
        border-radius: 10px;
        padding: 1.5rem 1.4rem 1.5rem 5.5rem;
        color: #fff;
        font-size: 2rem;
        font-weight: bold;
        display: inline-block;
        max-width: 100%;
        position: relative;
        line-height: 1.6;
    }

    .pr-box-head .txt-pr {
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 40px;
        height: 40px;
        background: #FFF84B;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #3567BE;
        font-size: 1.8rem;
    }

    .pr-box-head a {
        display: block;
        background: url(img/arrow01_white.svg) no-repeat right center;
        background-size: 12px auto;
        padding-right: 20px;
        font-size: 2rem;
    }
    .pr-box-head .small{
        font-size: 1.8rem;
    }

    .pr-box-body {
        padding: 0 0rem;
        position: relative;
    }

    .pr-box-body::before {
        content: "";
        width: 120px;
        height: 120px;
        background: url(img/img_nav08.png) no-repeat left top -25px;
        background-size: 100% auto;
        float: right;
    }

    .lower-bottom {
        margin: 0 0 0rem;
        padding: 0 0 5rem;
    }

    .lower-bottom-column3__box {
        width: 100%;
        margin: 0 0 2rem;
    }

    .lower-bottom-column3__catch {
        padding: 1.5rem;
        line-height: 1.4;
        font-size: 2rem;
    }
    .lower-bottom-column3__catch span{
        font-size: 2.4rem;
    }

    .lower-bottom-column3__title {
        text-align: center;
        padding: 0 0 1rem;
        font-size: 2.2rem;
    }
.lower-bottom-column3__list li {
	background-size: 6%;
}
    .lower-bottom-column3__info dl {
        font-size: 1.5rem;
        margin: 0;
    }

    .lower-bottom-column3__info dl dd {
        padding: 1rem 0 1rem 0;
    }

    .lower-bottom-column3__line .tableArea {
        margin: 2rem auto;
    }
	.lower-bottom-column3__line table {
    width: 100%;
}

    .site_title_lower .belt {
        font-size: 1.5rem;
    }

    .site_title_lower .small {
        font-size: 1.7rem;
    }

    .site_title_lower {
        font-size: 2.4rem;
        padding: 0px 0 0rem;
    }

    .sitemap_area .l-footer-menu__title__link:after {
        content: "";
        transform: translateY(-50%) rotate(00deg);
    }

    .toc_parts {
        margin: 3rem 0;
        padding: 3rem 2.5rem 2rem;
    }

    .toc_parts .ttl {
        font-size: 1.6rem;
        border-left: 2px solid #6e6e6e;
    }

    #toc {
        margin: 1.5rem 0 0 0;
        padding: 1rem 0 0;
    }

    #toc .chapter .chapter-h {
        margin: 1rem 0;
        padding: 0 0 0 3rem;
        font-size: 1.5rem;
        line-height: 1.6;
    }

    #toc ul.chapter .chapter-h::before {
        top: 11px;
        font-size: 1.8rem;
    }

    #toc li.chapter-h.chapter-h-three {
        margin: 0.5rem 0 0.5rem 2rem;
    }

    #toc li.chapter-h.chapter-h-three::before {
        top: 6px;
        width: 6px;
        height: 6px;
    }

    #toc li.chapter-h-three+.chapter-h-two {
        margin-top: 2rem;
    }
}
