@charset "UTF-8";


/*共通*/
.fade50 {
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.fade50:hover {
    opacity: 0.5;
}

.fade-in,
.fade-up,
.fade-left,
.fade-right,
.fade-bottom {
    transition: .8s;
    opacity: 0;
}

.fade-in-top {
    animation-name: fade-in-top;
    animation-duration: 2s;
    animation-iteration-count: 1;
    opacity: 1;
}

@keyframes fade-in-top {
    from {
        opacity: 0;
        transform: translateY(0px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up-top {
    animation-name: fade-up-top;
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    opacity: 1;
}

@keyframes fade-up-top {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-bottom-top {
    animation-name: fade-bottom-top;
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    opacity: 1;
}

@keyframes fade-bottom-top {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-left-top {
    animation-name: fade-left-top;
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    opacity: 1;
}

@keyframes fade-left-top {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-right-top {
    animation-name: fade-right-top;
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    opacity: 1;
}

@keyframes fade-right-top {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*共通*/


/*リセット*/
h1,
h2,
h3,
h4,
h5 {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
}

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

table {}

td,
th {}

ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

li {
    margin: 0px;
    padding: 0px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

a:active,
a:hover {
    outline: 0;
}

a img {
    border: none;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

img {
    border: 0;
    margin: 0px;
    padding: 0px;
    display: inline-block;
    width: 100%;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

textarea {
    overflow: auto;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
    border-radius: 0;
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
    border-radius: 0px;
}

input[type="submit"]::focus,
input[type="reset"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
    border-radius: 0px;
}

/*リセット*/


html {
    font-size: 62.5%;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: source-han-sans-japanese, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    font-style: normal;
    max-height: 999999px;
    overflow-x: hidden;
}

#mobi_menu {
    display: none;
}


/*loading*/
#loading {
    width: 105vw;
    height: 105vh;
    transition: all 1s;
    background-color: #fff;
    position: fixed;
    top: -2.5vh;
    left: -2.5vw;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.spinner {
    width: 220px;
    height: 52px;
    margin: 0px auto;
    padding-bottom: 25px;
    background-color: #fff;
    border-radius: 100%;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

.loaded {
    opacity: 0;
    visibility: hidden;
    transition: 1.0s;
}

/*loading*/




/*header*/
.header_box {
    position: fixed;
    width: 100%;
    height: 140px;
    top: 0px;
    z-index: +100;
    background: #fff;
}

.header_menu {
    width: 980px;
    margin: 25px auto 45px auto;
    display: flex;
    justify-content: space-between;
}

.header_l {
    width: 620px;
}

.header_logo {
    width: 200px;
    margin-top: 15px;
}

.header_logo img {
    display: block;
}

.header_l ul {
    display: flex;
    justify-content: space-between;
    width: 620px;
    font-size: 1.3rem;
    margin-top: 15px;
}

.header_l ul li {}

.header_l ul li a {
    color: #000;
    text-decoration: none;
}

.header_r {
    width: 205px;
    display: flex;
    justify-content: space-between;
}

.header_r img {
    width: 90px;
    border-radius: 100%;
    display: block;
}

.header_img {
    display: flex;
    justify-content: center;
    background: #009bbe;
    height: auto;
    position: relative;
    margin-top: 140px;
}

.header_img_inner {
    position: relative;
}

.header_img .pc {
    display: block;
    height: 300px;
    width: auto;
}

.header_img .sp {
    display: none;
}

.header_img h2 {
    position: absolute;
    top: 70px;
    left: 260px;
    font-size: 3.0rem;
    color: #fff;
    letter-spacing: 1.2rem;
    font-weight: 400;
    font-style: normal;
}

.header_img h2.staff {
    position: absolute;
    top: 70px;
    left: 260px;
    font-size: 3.0rem;
    color: #fff;
    letter-spacing: 0.7rem;
    font-weight: 400;
    font-style: normal;
}

.header_title {
    width: 1010px;
    margin: 220px auto 0px auto;
}

.header_title img {
    display: block;
}

/*header*/





/*スマホメニュー*/
.header {
    display: none;
}

/*スマホメニュー*/





/*footer*/
.footer_box {
    padding-top: 100px;
    border-top: solid 1px #0096b9;
    position: relative;
}

.footer_box_anker {
    top: -141px;
    position: absolute;
}

.footer_tel {
    text-align: center;
}

.footer_tel h2 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.5rem;
    color: #000;
    margin: 0px 0px 70px 0px;
    font-weight: 500;
    font-style: normal;
}

.footer_tel h2 span {
    border-bottom: solid 2px #000;
    padding-bottom: 10px;
    line-height: 100%;
}

.footer_tel h2 span::after {
    content: "";
    margin-left: -0.5rem;
}

.footer_tel_img {
    margin: 60px 0px 40px 0px;
}

.footer_tel_img img {
    max-width: 520px;
    width: 90%;
}

.footer_tel span:nth-child(3) {
    font-size: 1.6rem;
    font-weight: 400;
    font-style: normal;
}

.footer_t {
    border-top: solid 1px #009bbe;
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.footer_t_contents {
    width: 980px;
    display: flex;
}

.footer_t_l {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
}

.footer_t_inner {
    width: 400px;
    text-align: center;
}

.footer_logo {
    margin-bottom: 20px;
}

.footer_t_l span {
    font-size: 1.6rem;
}

.footer_bt {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.footer_bt a {
    width: 240px;
    height: 50px;
    background: url(../img/common/footer_t_arrow.png) no-repeat #009bbe;
    background-size: 20px;
    background-position: center right 15px;
    line-height: 100%;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    letter-spacing: 0;
    font-weight: 500;
    font-style: normal;
}

.footer_t_r {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
    border-left: solid 1px #009bbe;
    font-size: 1.6rem;
    letter-spacing: 0;
}

.footer_t_r ul {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #009bbe;
    padding: 0px 10px 0px 0px;
}

.footer_t_r ul:nth-child(1) {
    border-top: solid 1px #009bbe;
}

.footer_t_r ul:nth-child(1) li:nth-child(1) {
    letter-spacing: 0.5rem;
}

.footer_t_r ul li {
    padding: 15px 0px;
}

.footer_t_r ul:nth-child(2) li {
    color: #009bbe;
}

.footer_t_r ul:nth-child(3) li {
    color: #009bbe;
}

.footer_t_r ul li:nth-child(1) {
    width: 30%;
    color: #000;
}

.footer_t_r span {
    margin-top: 25px;
    display: block;
}

.footer_b {
    background: #009bbe;
    padding: 100px 0px 40px 0px;
}

.footer_b_inner {
    width: 980px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
}

.footer_b_l {
    width: 460px;
}

.footer_b_r {
    width: 460px;
}

.footer_b_title {
    width: 100%;
    height: 50px;
    background: #fff;
    color: #009bbe;
    font-size: 2.0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.footer_b_l p {
    color: #fff;
    font-size: 1.6rem;
    line-height: 180%;
    letter-spacing: 0;
    margin-bottom: 40px;
}

.footer_sns {
    width: 980px;
    margin: 20px auto;
    display: flex;
    justify-content: flex-end;
}

.footer_sns a + a {
    margin-left: 35px;
}

.footer_sns img {
    width: 50px;
}

.footer_copy {
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
}

.gototop {
    width: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/*footer*/





/*top*/
#top {}

#top .box01 {
    background: #0096b9;
    margin-top: 80px;
    padding-bottom: 40px;
}

#top .box01_img {
    width: 1180px;
    margin: 0px auto;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}

#top .box01_img img {
    width: 910px;
    display: block;
    margin-top: -125px;
    margin-right: -30px;
    margin-bottom: 0px;
}

#top .box01_inner01 {
    margin-top: 125px;
}

#top .box01_title {
    width: 240px;
    margin: 0px auto;
}

#top .box01_text {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    line-height: 260%;
    margin-top: 80px;
}

#top .box01_text_sp {
    display: none;
}

#top .box01_inner02 {
    margin: 140px auto 0px auto;
    width: 530px;
    background: #fff;
    padding: 90px 140px 70px 140px;
    border-radius: 20px;
}

#top .box01_inner02 h2 {
    text-align: center;
    font-size: 3.0rem;
    color: #009bbe;
    letter-spacing: 0.5rem;
    line-height: 100%;
    font-weight: 500;
    font-style: normal;
}

#top .box01_inner02 h2::after {
    content: "";
    margin-left: -0.5rem;
}

#top .box01_inner02 ul {
    font-size: 2.2rem;
    line-height: 260%;
    margin-top: 40px;
    font-weight: 500;
    font-style: normal;
}

#top .box01_inner02 ul li {
    display: flex;
}

#top .box01_inner02 ul li::before {
    content: "□";
    display: block;
    margin-right: 1.0rem;
}

#top .box01_icon {
    width: 35px;
    margin: -10px auto 0px auto;
}

#top .box01_icon img {
    display: block;
}

#top .back_icon {
    background: url(../img/top/box01_back.svg) no-repeat;
    background-size: 4000px;
    background-position: center top;
}

#top .box02 {}

#top .box02_inner {
    padding-top: 230px;
    padding-bottom: 170px;
}

#top .box02 p {
    text-align: center;
    font-size: 2.2rem;
    color: #009bbe;
    line-height: 200%;
    letter-spacing: 0.5rem;
    font-weight: 500;
    font-style: normal;
}

#top .box03 {
    padding-top: 100px;
    position: relative;
}

#top .box03_anker {
    top: -80px;
    position: absolute;
}

#top .box03 h2 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.5rem;
    font-weight: 500;
    font-style: normal;
}

#top .box03 h2 span {
    border-bottom: solid 2px #000;
    padding-bottom: 10px;
    line-height: 100%
}

#top .box03 h2 span::after {
    content: "";
    margin-left: -0.5rem;
}

#top .box03_inner01 {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    line-height: 100%;
    margin-top: 130px;
}

#top .box03_inner01_l {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: +1;
}

#top .box03_inner01_l img {
    width: 600px;
    height: 425px;
}

#top .box03_inner01_r {
    width: 50%;
}

#top .box03_inner01_r .box03_num {
    width: 80px;
    margin-left: 80px;
}

#top .box03_inner01_r h3 {
    margin-left: 80px;
    color: #009bbe;
    margin-top: 50px;
    line-height: 180%;
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    font-weight: 500;
    font-style: normal;
}

#top .box03_inner01_r .box03_text {
    background: #f0f5f5;
    padding: 30px 0px 30px 165px;
    line-height: 220%;
    font-size: 1.6rem;
    margin-top: 30px;
    margin-left: -85px;
    z-index: -1;
    position: relative;
    letter-spacing: 0;
}

#top .box03_inner01_r .box03_text p {
    width: 330px;
    font-weight: 400;
    font-style: normal;
}

#top .box03_inner01_img_sp {
    display: none;
}

#top .box03_inner02 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-top: 100px;
}

#top .box03_inner02_l {
    width: calc(50% + 300px);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    align-items: flex-end;
}

#top .box03_inner02_l .box03_num {
    width: 440px;
    margin-right: 130px;
}

#top .box03_inner02_l .box03_num img {
    width: 80px;
}

#top .box03_inner02_l h3 {
    width: 440px;
    margin-left: 80px;
    color: #009bbe;
    margin-top: 50px;
    line-height: 180%;
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    margin-right: 130px;
    font-weight: 500;
    font-style: normal;
}

#top .box03_inner02_l .box03_text {
    background: #f0f5f5;
    padding: 30px 0px 30px 0px;
    line-height: 220%;
    font-size: 1.6rem;
    margin-top: 30px;
    z-index: -1;
    position: relative;
    letter-spacing: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 150px;
}

#top .box03_inner02 .box03_text p {
    width: 420px;
    font-weight: 400;
    font-style: normal;
}

#top .box03_inner02_r {
    width: calc(50%);
}

#top .box03_inner02_r img {
    width: 330px;
    margin-left: -40px;
}

#top .box04_icon01 {
    width: 850px;
    margin: 150px auto 0px auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

#top .box04_icon01 img {
    width: 65px;
    display: block;
}

#top .box04 {
    background: #009bbe;
    padding: 100px 0px;
    position: relative;
}

#top .box04_anker {
    top: -80px;
    position: absolute;
}

#top .box04 h2 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.5rem;
    color: #fff;
    font-weight: 500;
    font-style: normal;
}

#top .box04 h2 span {
    border-bottom: solid 2px #fff;
    padding-bottom: 10px;
    line-height: 100%
}

#top .box04 h2 span::after {
    content: "";
    margin-left: -0.5rem;
}

#top .box04_inner {
    width: 850px;
    color: #fff;
    margin: 100px auto 0px auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#top .box04_contents {
    width: 350px;
}

#top .box04_contents h3 {
    font-size: 3.0rem;
    text-align: center;
    margin-top: 40px;
    font-weight: 500;
    font-style: normal;
}

#top .box04_contents p {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 250%;
    margin-top: 40px;
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
}

#top .box04_bt {
    width: 230px;
    margin: 100px auto 0px auto;
}

#top .box04_bt a {
    color: #000;
    background: url(../img/top/box04_icon02.png) no-repeat #fff;
    background-size: 20px;
    background-position: center right 20px;
    text-decoration: none;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    letter-spacing: 0.5rem;
    font-weight: 500;
    font-style: normal;
}

#top .box05 {
    margin: 0px 0px;
    padding: 100px 0px;
    position: relative;
}

#top .box05_anker {
    top: -80px;
    position: absolute;
}

#top .box05 h2 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.5rem;
    color: #000;
    font-weight: 500;
    font-style: normal;
}

#top .box05 h2 span {
    border-bottom: solid 2px #000;
    padding-bottom: 10px;
    line-height: 100%
}

#top .box05 h2 span::after {
    content: "";
    margin-left: -0.5rem;
}

#top .box05_inner01 {
    margin: 100px auto 0px auto;
    width: 810px;
    display: flex;
    justify-content: center;
}

#top .box05_inner01 .slider {
    width: 610px;
    margin: 0px auto;
}

#top .box05_inner01 .slider_l {
    width: 60px;
    border: solid 2px #009bbe;
    border-right: none;
    content: "";
    display: block;
}

#top .box05_inner01 .slider_r {
    width: 60px;
    border: solid 2px #009bbe;
    border-left: none;
    content: "";
    display: block;
}

/*-----------height調整----------*/
.slick-slide {
    height: auto !important;
}

/*-----------矢印表示----------*/
.slick-next {
    right: -210px !important;
}

.slick-next:before {
    background: url(../img/common/slick_r.svg) no-repeat !important;
    background-size: 50px !important;
}

.slick-prev {
    left: -210px !important;
}

.slick-prev:before {
    background: url(../img/common/slick_l.svg) no-repeat !important;
    background-size: 50px !important;
}

.slick-arrow {
    z-index: 2 !important;
    width: 50px !important;
    height: 25px !important;
}

.slick-arrow:before {
    content: "" !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1 !important;
}

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

#top .box05_contents01 {
    width: 810px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
}

#top .box05_contents_inner {
    width: 510px;
    padding: 35px 0px 0px 0px;
    margin: 0px auto;
}

#top .box05 h3 {
    font-size: 3.8rem;
    color: #009bbe;
    text-align: center;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.5rem;
    font-weight: 500;
    font-style: normal;
}

#top .box05 h3 span span {
    font-size: 90px;
    font-family: din-2014, sans-serif;
    line-height: 100%;
    display: flex;
    align-items: center;
}

#top .box05 h3 span {
    font-size: 60px;
    line-height: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-style: normal;
}

#top .box05_course {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 100%;
}

#top .box05_course_l {
    width: 240px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6464;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 10px;
}

#top .box05_course_l span {
    font-size: 2.8rem;
    font-family: din-2014, sans-serif;
    line-height: 100%;
    padding: 0px 5px;
    letter-spacing: 0.2rem;
}

#top .box05_course_c {
    color: #ff6464;
    font-size: 3.0rem;
}

#top .box05_course_r {
    width: 220px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6464;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 10px;
}

#top .box05_course_r span {
    font-size: 2.8rem;
    font-family: din-2014, sans-serif;
    line-height: 100%;
    padding: 0px 5px;
    letter-spacing: 0.2rem;
}

#top .box05 ul {
    width: 410px;
    margin: 65px auto 35px auto;
}

#top .box05 ul li {
    display: flex;
    justify-content: space-between;
    font-size: 2.2rem;
    line-height: 100%;
    border-bottom: solid 2px #009bbe;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

#top .box05_list_l::before {
    content: "●";
    color: #009bbe;
    margin-right: 1rem;
}

#top .box05_list_l {}

#top .box05_list_r {
    color: #009bbe;
}

#top .box05_list_r span {
    font-size: 4.2rem;
    font-family: din-2014, sans-serif;
}

#top .box05_inner02 {
    font-size: 1.6rem;
    width: 690px;
    margin: 40px auto 0px auto;
    padding-left: 50px;
    display: flex;
    justify-content: center;
    letter-spacing: 0;
    line-height: 200%;
}

#top .box05_inner03 {
    width: 810px;
    padding: 50px 0px 45px 0px;
    border: solid 2px #009bbe;
    margin: 65px auto 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#top .box05_inner03 h3 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    font-weight: 500;
    font-style: normal;
}

#top .box05_contents {
    display: flex;
    width: 640px;
    font-size: 2.2rem;
    line-height: 100%;
    font-weight: 500;
    font-style: normal;
}

#top .box05_contents_l {
    border: solid 2px #009bbe;
    width: 185px;
    background: #009bbe;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0px;
    border-radius: 5px 0px 0px 5px;
}

#top .box05_contents_r {
    width: 380px;
    display: flex;
    align-items: center;
    padding: 14px 0px 14px 66px;
    border-radius: 0px 5px 5px 0px;
    border: solid 2px #009bbe;
    line-height: 150%;
}

#top .box05_contents_c {
    font-size: 4.0rem;
    line-height: 100%;
    padding: 10px 0px;
    color: #009bbe;
    font-weight: 100;
}

#top .box05_inner03 p {
    width: 640px;
    font-size: 1.6rem;
    text-align: left;
    letter-spacing: 0;
    margin-top: 25px;
}

#top .box06 {
    background: #f0f5f5;
    margin-top: 130px;
    padding: 120px 0px 60px 0px;
    position: relative;
}

#top .box06_anker {
    top: -60px;
    position: absolute;
}

#top .box06 h2 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.5rem;
    color: #000;
    font-weight: 500;
    font-style: normal;
}

#top .box06 h2 span {
    border-bottom: solid 2px #000;
    padding-bottom: 10px;
    line-height: 100%
}

#top .box06 h2 span::after {
    content: "";
    margin-left: -0.5rem;
}

#top .box06_inner {
    width: 970px;
    margin: 85px auto 0px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#top .box06_contents {
    width: 440px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#top .box06_img {
    width: 190px;
}

#top .box06_text {
    color: #009bbe;
    font-size: 2.0rem;
    line-height: 100%;
    margin-top: 30px;
    font-weight: 500;
    font-style: normal;
}

#top .box06_title {
    font-size: 2.1rem;
    line-height: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    font-weight: 500;
    font-style: normal;
}

#top .box06_contents p {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 220%;
    margin-top: 30px;
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
}

#top .box07 {
    padding-top: 100px;
    margin-top: -100px;
}

#top .box07 a {
    text-decoration: none;
}

#top .box07_inner a:hover .box07_contents {
    background: #4cb5ce;
    transition: 0.3s;
}

#top .box07_inner a:hover .box07_contents03 {
    background: #4cb5ce;
    transition: 0.3s;
}

#top .box07_inner a:hover .box07_l01 {
    color: #97cbdc;
    transition: 0.3s;
}

#top .box07_inner a:hover .box07_r02 {
    color: #97cbdc;
    transition: 0.3s;
}

#top .box07_inner a:hover .box07_l03 {
    color: #97cbdc;
    transition: 0.3s;
}

#top .box07_inner a:hover .box07_contents_inner01::after {
    opacity: 1;
    transition: 0.3s;
}

#top .box07_contents_inner01::after {
    content: "詳しく見る";
    position: absolute;
    bottom: 160px;
    left: 35px;
    width: 230px;
    height: 50px;
    background: url(../img/top/box07_icon.png) no-repeat #fff;
    background-size: 20px;
    background-position: center right 20px;
    color: #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    transition: 0.3s;
}

#top .box07_inner a:hover .box07_contents_inner02::after {
    opacity: 1;
    transition: 0.3s;
}

#top .box07_contents_inner02::after {
    content: "詳しく見る";
    position: absolute;
    bottom: 160px;
    right: 105px;
    width: 230px;
    height: 50px;
    background: url(../img/top/box07_icon.png) no-repeat #fff;
    background-size: 20px;
    background-position: center right 20px;
    color: #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    transition: 0.3s;
}

#top .box07_inner a:hover .box07_contents_inner03::after {
    opacity: 1;
    transition: 0.3s;
}

#top .box07_contents_inner03::after {
    content: "詳しく見る";
    position: absolute;
    bottom: 160px;
    left: 35px;
    width: 230px;
    height: 50px;
    background: url(../img/top/box07_icon.png) no-repeat #fff;
    background-size: 20px;
    background-position: center right 20px;
    color: #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    transition: 0.3s;
}

#top .box07_name01 {
    display: flex;
    align-items: center;
    line-height: 100%;
    font-weight: 500;
    font-style: normal;
}

#top .box07_name01 span:nth-child(1) {
    font-size: 2.5rem;
    line-height: 100%;
    letter-spacing: 2rem;
}

#top .box07_name01 span:nth-child(2) {
    margin-left: 20px;
    font-size: 4.0rem;
    line-height: 100%;
    letter-spacing: 3rem;
}

#top .box07_name02 {
    font-size: 2.0rem;
    line-height: 100%;
    margin-top: 35px;
    letter-spacing: 0.5rem;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 300;
    font-style: normal;
}

#top .box07_name03 {
    display: flex;
    align-items: center;
    line-height: 100%;
    font-weight: 500;
    font-style: normal;
}

#top .box07_name03 span {
    margin-left: 0px;
    font-size: 4.0rem;
    line-height: 100%;
    letter-spacing: 3rem;
}

#top .box07_name04 {
    display: none;
}

#top .box07_contents {
    background: #009bbe;
    width: 100%;
    height: 365px;
    position: relative;
    transition: 0.3s;
}

#top .box07_contents03 {
    background: #009bbe;
    width: 100%;
    height: 365px;
    margin-top: 20px;
    transition: 0.3s;
}

#top .box07_contents_inner01 {
    height: 365px;
    width: 980px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

#top .box07_l01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

#top .box07_r01 {
    width: 440px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

#top .box07 h2 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.5rem;
    color: #000;
    margin: 70px 0px;
    font-weight: 500;
    font-style: normal;
}

#top .box07 h2 span {
    border-bottom: solid 2px #000;
    padding-bottom: 10px;
    line-height: 100%
}

#top .box07 h2 span::after {
    content: "";
    margin-left: -0.5rem;
}

#top .box07_link {
    display: none;
}

#top .box07_contents_inner02 {
    height: 365px;
    width: 980px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

#top .box07_l02 {
    width: 440px;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-left: -100px;
}

#top .box07_l02 img {}

#top .box07_r02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding-right: 80px;
}

#top .box07_contents_inner03 {
    height: 365px;
    width: 980px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    color: #fff;
}

#top .box07_l03 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#top .box07_r03 {
    width: 440px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

/*top*/





/*staff*/
#staff {
    min-width: 1180px;
    background: #ffffff;
}

#staff .box01 {
    padding-top: 140px;
    font-size: 1.6rem;
}

#staff .box01_inner {
    display: flex;
    justify-content: space-between;
    width: 850px;
    margin: 0px auto;
}

#staff .box01_name01 {
    display: flex;
    align-items: center;
    line-height: 100%;
}

#staff .box01_name01 span:nth-child(1) {
    font-size: 2.0rem;
    line-height: 100%;
    letter-spacing: 2rem;
}

#staff .box01_name01 span:nth-child(2) {
    margin-left: 20px;
    font-size: 4.0rem;
    line-height: 100%;
    letter-spacing: 3rem;
}

#staff .box01_name02 {
    font-size: 2.0rem;
    line-height: 100%;
    color: #009bbe;
    margin-top: 35px;
    letter-spacing: 0.5rem;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 300;
    font-style: normal;
}

#staff .box01_name03 {
    display: flex;
    align-items: center;
    line-height: 100%;
}

#staff .box01_name03 span:nth-child(1) {
    margin-left: 0px;
    font-size: 4.0rem;
    line-height: 100%;
    letter-spacing: 3rem;
}

#staff .box01 ul {}

#staff .box01 ul li::before {
    content: "●";
    color: #009bbe;
    margin-right: 10px;
}

#staff .box01 ul li {
    margin-bottom: 10px;
}

#staff .box01_img {
    width: 850px;
    margin: 50px auto 0px auto;
}

#staff .box01_textbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#staff .box01_textbox .box01_textbox_title {
    color: #009bbe;
    font-size: 3.0rem;
    line-height: 200%;
    font-weight: normal;
    letter-spacing: 0.9rem;
    margin-top: 60px;
    font-weight: 500;
    font-style: normal;
    display: inline-block;
    text-align: center;
    padding-left: 20px;
}

#staff .box01_textbox .box01_textbox_title span {
    display: inline;
}

#staff .box01_textbox p {
    display: inline-block;
    margin: 30px auto 0px auto;
    line-height: 200%;
}

#staff .box01 p span {
    display: block;
}

#staff .box02 {
    padding-top: 60px;
}

#staff .box02_inner01 {
    width: 650px;
    padding: 80px 100px 40px 100px;
    background: #f0f5f5;
    margin: 0px auto;
}

#staff .box02_inner02 {
    width: 650px;
    padding: 80px 100px 60px 100px;
    background: #f0f5f5;
    margin: 80px auto 0px auto;
}

#staff .box02_inner01 h2 {
    color: #009bbe;
    font-size: 2.5rem;
    font-weight: normal;
    text-align: center;
    letter-spacing: 1.0rem;
    margin-bottom: 40px;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 500;
    font-style: normal;
}

#staff .box02_inner02 h2 {
    color: #009bbe;
    font-size: 2.5rem;
    font-weight: normal;
    text-align: center;
    letter-spacing: 1.0rem;
    margin-bottom: 40px;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 500;
    font-style: normal;
}

#staff .box02_inner03 h2 {
    color: #009bbe;
    font-size: 2.5rem;
    font-weight: normal;
    text-align: center;
    letter-spacing: 1.0rem;
    margin-bottom: 30px;
    margin-top: 80px;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 500;
    font-style: normal;
}

#staff .box02_inner01 h3 {
    background: #fff;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: solid 1px #009bbe;
    font-size: 1.6rem;
    color: #009bbe;
    font-weight: 500;
    font-style: normal;
}

#staff .box02_inner02 h3 {
    border-bottom: solid 1px #009bbe;
    font-size: 1.6rem;
    color: #009bbe;
    font-weight: 500;
    font-style: normal;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#staff .box02_inner01 p {
    font-size: 1.6rem;
    text-align: center;
    line-height: 200%;
    margin-bottom: 35px;
}

#staff .box02_inner02 {}

#staff .box02_inner02_list01 {
    margin-top: 20px;
}

#staff .box02_inner02_list01 {
    font-size: 1.6rem;
    line-height: 100%;
    margin-bottom: 55px;
}

#staff .box02_inner02_list02 {
    font-size: 1.6rem;
    line-height: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

#staff .box02_inner02_list02 li {
    margin-bottom: 20px;
}

#staff .box02_inner02_list02 li:nth-child(odd) {
    width: 15%;
}

#staff .box02_inner02_list02 li:nth-child(even) {
    width: 85%;
}

#staff .box02_inner02_list03 {
    font-size: 1.6rem;
    line-height: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

#staff .box02_inner02_list03 li {
    margin-bottom: 20px;
}

#staff .box02_inner02_list03 li:nth-child(odd) {
    width: 10%;
}

#staff .box02_inner02_list03 li:nth-child(even) {
    width: 90%;
}


#staff .box02_inner03 {}

#staff .box02_inner03 p {
    width: 850px;
    margin: 40px auto 0px auto;
    padding: 0px;
    font-size: 1.6rem;
    line-height: 220%;
    letter-spacing: 0;
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
}

#staff .box02_bn {
    display: flex;
    justify-content: space-between;
    width: 850px;
    margin: 100px auto 0px auto;
}

#staff .box02_bn a {
    display: block;
    width: 380px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: #009bbe;
    border-radius: 15px;
    justify-content: center;
    position: relative;
    transition: 0.3s;
}

#staff .box02_bn a::before {
    content: "詳しく見る";
    position: absolute;
    bottom: 50px;
    left: 85px;
    width: 210px;
    height: 50px;
    background: url(../img/top/box07_icon.png) no-repeat #fff;
    background-size: 20px;
    background-position: center right 20px;
    color: #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    transition: 0.3s;
    z-index: +1;
}

#staff .box02_bn a:hover::before {
    transition: 0.3s;
    opacity: 1;
}

#staff .box02_bn a:hover {
    background: #4cb9d1;
    transition: 0.3s;
    color: #97cbdc;
}

#staff .box02_bn a:hover img {
    opacity: 0.5;
    transition: 0.3s;
}



#staff .box02_bn img {
    width: 150px;
    transition: 0.3s;
}

#staff .box02_bn span:nth-child(1) {
    font-size: 2.2rem;
    letter-spacing: 1.5rem
}

#staff .box02_bn span:nth-child(2) {
    font-size: 1.3rem;
    margin-top: 20px;
    letter-spacing: 0.3rem;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 300;
    font-style: normal;
}

#staff .box02_bn_text {
    display: flex;
    flex-direction: column;
    width: 160px;
    padding-left: 20px;
}

#staff .box03 {
    margin-top: 135px;
}

#staff .box03_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#staff .box03_inner img {
    width: calc(50% - 5px);
}

/*staff*/





/*treatment*/
#treatment {
    min-width: 1180px;
}

#treatment .box01 {
    padding-top: 140px;
    font-size: 1.6rem;
}

#treatment .box01_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 850px;
    margin: 0px auto;
}

#treatment .box01 h2 {
    font-size: 3.0rem;
    color: #009bbe;
    text-align: center;
    margin-top: 45px;
    font-weight: 500;
    font-style: normal;
}

#treatment .box01 p {
    margin: 45px 0px 0px 0px;
    padding: 0px;
    line-height: 220%;
    letter-spacing: 0;
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
}

#treatment .box01 article {
    opacity: 0;
}

#treatment .box01 article:nth-child(1) {
    width: 350px;
    margin-bottom: 120px;
    -webkit-animation: example 1s ease 0.2s 1 forwards;
    animation: example 1s ease 0.2s 1 forwards;
}

#treatment .box01 article:nth-child(2) {
    width: 350px;
    margin-bottom: 120px;
    -webkit-animation: example 1s ease 0.4s 1 forwards;
    animation: example 1s ease 0.4s 1 forwards;
}

#treatment .box01 article:nth-child(3) {
    width: 350px;
    margin-bottom: 90px;
    -webkit-animation: example 1s ease 0.6s 1 forwards;
    animation: example 1s ease 0.6s 1 forwards;
}

#treatment .box01 article:nth-child(4) {
    width: 350px;
    margin-bottom: 90px;
    -webkit-animation: example 1s ease 0.8s 1 forwards;
    animation: example 1s ease 0.8s 1 forwards;
}

#treatment .box01 article:nth-child(5) {
    width: 350px;
    margin-bottom: 140px;
    -webkit-animation: example 1s ease 1.0s 1 forwards;
    animation: example 1s ease 1.0s 1 forwards;
}

#treatment .box01 article:nth-child(6) {
    width: 350px;
    margin-bottom: 140px;
    -webkit-animation: example 1s ease 1.2s 1 forwards;
    animation: example 1s ease 1.2s 1 forwards;
}

@-webkit-keyframes example {
    100% {
        opacity: 1;
    }
}

@keyframes example {
    100% {
        opacity: 1;
    }
}

#treatment .box01 article span {
    color: #009bbe;
    margin-top: 10px;
}

#treatment .box02 {
    background: #009bbe;
    padding: 130px 0px 80px 0px;
}

#treatment .box02_inner {
    width: 850px;
    margin: 0px auto;
}

#treatment .box02 h2 {
    font-size: 2.8rem;
    color: #fff;
    line-height: 100%;
    margin-bottom: 100px;
    text-align: center;
    letter-spacing: 0.5rem;
    font-weight: 500;
    font-style: normal;
}

#treatment .box02 h2 span {
    border-bottom: solid 2px #fff;
    padding-bottom: 10px;
}

#treatment .box02 h2 span::after {
    content: "";
    margin-left: -0.5rem;
}

#treatment .box02 article {
    width: 100%;
}

#treatment .box02_contents {
    display: flex;
    position: relative;
}

#treatment .box02_num {
    background: #ff6464;
    width: 72px;
    height: 72px;
    font-size: 3.0rem;
    color: #fff;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: absolute;
    font-family: din-2014, sans-serif;
    font-weight: 400;
    font-style: normal;
}

#treatment .box02 h3 {
    background: #fff;
    width: 100%;
    height: 72px;
    margin-left: 36px;
    border-radius: 0px 100px 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009bbe;
    font-size: 2.5rem;
    font-weight: 500;
    font-style: normal;
}

#treatment .box02 article p {
    color: #fff;
    font-size: 1.6rem;
    margin: 10px 0px 10px 36px;
    border-left: solid 3px #ff6464;
    text-align: center;
    height: 57px;
    padding-top: 15px;
}

#treatment .box02 article:nth-child(6) p {
    border-left: none;
}

#treatment .box03 {
    background: #f0f5f5;
    padding: 130px 0px;
}

#treatment .box03_inner {
    background: #fff;
    padding: 110px 80px;
    width: 820px;
    margin: 0px auto;
}

#treatment .box03_contents01 {}

#treatment .box03_img {
    width: 240px;
    margin: 0px auto;
}

#treatment .box03 h2 {
    letter-spacing: 0.5rem;
    text-align: center;
    font-size: 3.5rem;
    line-height: 100%;
    margin-top: 70px;
    font-weight: 500;
    font-style: normal;
}

#treatment .box03_contents01 p {
    font-size: 1.7rem;
    width: 450px;
    margin: 40px auto 0px auto;
    line-height: 200%;
}

#treatment .box03_contents02 {
    border: solid 1px #009bbe;
    margin: 70px auto 0px auto;
}

#treatment .box03_contents02 h3 {
    color: #009bbe;
    text-align: center;
    font-size: 2.5rem;
    line-height: 100%;
    margin-top: 80px;
    letter-spacing: 0.5rem;
    font-weight: 500;
    font-style: normal;
}

#treatment .box03_contents02_text01 {
    font-size: 1.6rem;
    letter-spacing: 0;
    border-bottom: solid 1px #009bbe;
    padding: 30px 70px 50px 70px;
    line-height: 200%;
}

#treatment .box03 ul {
    width: 650px;
    margin: 65px auto 70px auto;
}

#treatment .box03 ul li {
    display: flex;
    margin-bottom: 10px;
}

#treatment .box03 ul li span {
    display: block;
}

#treatment .box03_num {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff6464;
    color: #fff;
    font-size: 2.5rem;
    border-radius: 100px;
    font-family: din-2014, sans-serif;
    font-weight: 400;
    font-style: normal;
}

#treatment p.box03_contents02_text02 {
    font-size: 2.0rem;
    line-height: 180%;
    font-weight: 500;
    font-style: normal;
    padding: 0px;
    margin: 0px 0px 25px 35px;
    padding: 0px 0px 25px 0px;
    border-bottom: dotted #009bbe 1px;
    width: 100%;
}

#treatment .box03_numbox::after {
    border-left: solid 3px #ff6464;
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 70px);
    margin-left: 29px;
    margin-top: 10px;
}

#treatment .box03 ul li:last-child .box03_contents02_text02 {
    font-size: 2.0rem;
    line-height: 180%;
    font-weight: 500;
    font-style: normal;
    padding: 0px;
    margin: 0px 0px 0px 35px;
    padding-bottom: 0px;
    border-bottom: none;
    width: 100%;
}

#treatment .box03 ul li:last-child .box03_numbox::after {
    border: none;
}

#treatment dt.box03_title div {
    color: #009bbe;
    line-height: 180%;
    font-size: 2.0rem;
    margin: 20px 0px 0px 0px;
    padding-top: 20px;
    padding-left: 60px;
    padding-right: 60px;
    font-weight: 500;
    font-style: normal;
    border-top: solid 1px #009bbe;
    background: url(../img/treatment/box03_q.svg) no-repeat;
    background-size: 35px;
    background-position: top 25px left;
}

#treatment dd.box03_text03 {
    margin: 0px 0px 0px 0px;
    padding-top: 20px;
    padding-left: 60px;
    background: url(../img/treatment/box03_a.svg) no-repeat;
    background-size: 35px;
    background-position: top 25px left;
}

#treatment dd.box03_text03 div {
    line-height: 100%;
    font-size: 1.6rem;
    padding-bottom: 0px;
    margin: 0px 0px 0px 0px;
}

#treatment dd.box03_text03:last-child {
    margin-bottom: 0px;
}

#treatment dd.box03_text03 span {
    width: calc(100% - 60px);
    display: block;
    line-height: 220%;
}

#treatment .box03_contents03 {}

#treatment .box03_contents03 h3 {
    font-size: 2.5rem;
    line-height: 100%;
    margin-top: 90px;
    text-align: center;
    margin-bottom: 45px;
    color: #009bbe;
}

#acMenu dt {
    display: block;
    cursor: pointer;
    background: url(../img/treatment/arrrow_open.svg) no-repeat;
    background-size: 15px;
    background-position: top 30px right 20px;
    transition: 0.1s;
}

#acMenu dd {
    display: none;
    padding-bottom: 0px;
}

#acMenu dt.active {
    background: url(../img/treatment/arrrow_close.svg) no-repeat;
    background-size: 15px;
    background-position: top 30px right 20px;
    transition: 0.1s;
}

/*treatment*/















/*レスポンシブ　750px以下*/
@media screen and (max-width:750px) {
    #mobi_menu {}





    /*header*/
    .header_box {
        position: fixed;
        display: flex;
        align-items: center;
        width: 100%;
        height: 70px;
        top: 0px;
        background: #fff;
        z-index: +100;
        overflow-x: hidden;
    }

    .header_menu {
        width: 90%;
        margin: 0px auto;
        display: flex;
        justify-content: space-between;
    }

    .header_l {
        width: 100%;
    }

    .header_l_t {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .header_logo {
        width: 152px;
        margin: 0px auto 0px auto;
    }

    .header_logo a img {
        display: block;
        width: 100%;
    }

    .header_l_t a {
        width: auto;
        border-radius: 5px;
        display: block;
    }

    .header_l_t a img {
        border-radius: 5px;
    }

    a.header_gototel {
        display: none;
    }

    .header_l ul {
        display: none;
        justify-content: space-between;
        width: 815px;
        font-size: 1.3rem;
        margin-top: 15px;
    }

    .header_l ul li {}

    .header_l ul li a {
        color: #000;
        text-decoration: none;
    }

    .header_r {
        width: 90px;
        display: none;
        justify-content: space-between;
    }

    .header_r img {
        width: 90px;
        border-radius: 100%;
        display: block;
    }

    .header_img {
        display: flex;
        justify-content: center;
        background: url(../img/common/header_back_l.png) no-repeat, url(../img/common/header_back_r.png) no-repeat, #009bbe;
        background-size: 65px 240px, 65px 240px;
        background-position: left, right;
        height: 240px;
        position: relative;
        margin-top: 70px;
        overflow-x: hidden;
    }

    .header_img_inner {
        position: relative;
        width: 100%;
    }

    .header_img .pc {
        display: none;
    }

    .header_img .sp {
        display: block;
        width: 80px;
        position: absolute;
        bottom: 0px;
        right: 100px;
    }

    .header_img h2 {
        position: absolute;
        width: 100%;
        text-align: center;
        top: 70px;
        left: auto;
        font-size: 2.5rem;
        color: #fff;
        letter-spacing: 0.7rem;
    }

    .header_img h2.staff {
        position: absolute;
        width: 100%;
        text-align: center;
        top: 70px;
        left: auto;
        font-size: 2.5rem;
        color: #fff;
        letter-spacing: 0.7rem;
    }

    .header_title {
        width: 280px;
        margin: 80px auto 0px auto;
    }

    .header_title img {
        display: block;
    }

    /*header*/





    /*スマホメニュー*/
    body.open {
    overflow: hidden;
    }
    
    body.close {
    overflow: hidden;
    }
    
    .header {
        top: 70px;
        right: 0px;
        width: 100%;
        height: 60px;
        z-index: 1000;
        color: #ccc;
        display: block;
        position: fixed;
    }

    .sp_logo {
        display: none;
    }

    .header nav {
        width: 100%;
        height: calc( 100vh - 70px);
        padding-bottom: 40px;
        top: 0px;
        position: absolute;
        background-color: rgba(255, 255, 255, 1);
        color: #000;
        overflow: scroll;
    }

    .header .opennav {
        transition: 0.7s;
        opacity: 1;
        visibility: inherit;
    }

    .header .closenav {
        transition: 0.7s;
        opacity: 0;
        visibility: hidden;
    }

    .header a {
        color: #000;
        text-decoration: none;
    }

    .header a:hover {
        color: #000;
    }

    .header .menu_button {
        width: 20px;
        height: 20px;
        padding: 0px 0px;
        right: 0px;
        position: absolute;
        display: flex;
        top: -40px;
        right: 20px;
    }

    .header .menu_button .sp_menu {
        width: 20px;
        height: 20px;
        padding: 0px 5px 0px 10px;
        text-align: center;
        cursor: pointer;
        position: absolute;
    }

    .header .menu_button .open {
        opacity: 1;
        transition: 0.7s;
        background: url(../img/sp/open.png) no-repeat;
        background-size: 20px 20px;
        background-position: center;
    }

    .header .menu_button .close {
        opacity: 1;
        transition: 0.7s;
        background: url(../img/sp/close.png) no-repeat;
        background-size: 20px 20px;
        background-position: center;
    }

    .header .openmenu {
        transition: 0.7s;
        padding-right: 10px;
    }

    .header .closemenu {
        background-color: rgba(255, 255, 255, 1);
        padding-right: 10px;
        transition: 0.7s;
    }

    .header nav ul {
        width: 90%;
        list-style-type: none;
        margin: 0 auto;
        padding: 0px 0px 0px 0px;
    }

    .header nav ul li:first-child {
        border-top: solid 1px #000;
    }

    .header nav ul li {
        padding: 28px 0px;
        border-bottom: solid 1px #000;
        text-align: center;
        font-size: 1.6rem;
        letter-spacing: 0.5rem;
    }

    .header nav ul li:last-child {
        border-bottom: none;
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

    .header nav ul li:last-child a {}

    .header nav ul li:last-child a + a {
        margin-left: 30px;
    }

    .header nav ul li:last-child img {
        border-radius: 100px;
        width: 90px;
    }

    /*スマホメニュー*/




    /*footer*/
    .footer_box {
        margin-top: 0px;
        padding-top: 0px;
        overflow-x: hidden;
        border-top: none;
        position: relative;
    }

    .footer_box_anker {
        top: -110px;
        position: absolute;
    }

    .footer_tel {
        border-top: none;
        text-align: center;
        background: none;
        padding-top: 45px;
        position: relative;
    }

    .footer_tel h2 {
        font-size: 1.6rem;
        text-align: center;
        letter-spacing: 0.5rem;
        color: #000;
        margin: 0px 0px 0px 0px;
        font-weight: 500;
        font-style: normal;
        position: relative;
    }

    .footer_tel h2 span {
        border-bottom: solid 2px #000;
        padding-bottom: 7px;
        line-height: 100%;
    }

    .footer_tel h2 span::after {
        content: "";
        margin-left: -0.5rem;
    }

    .footer_tel_img {
        margin: 35px 0px 10px 0px;
    }

    .footer_tel_img img {
        width: 295px;
    }

    .footer_tel span:nth-child(3) {
        font-size: 1.1rem;
        font-weight: 400;
        font-style: normal;
    }

    .footer_t {
        border-top: solid 1px #009bbe;
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    .footer_t_contents {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer_t_l {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0px;
    }

    .footer_t_inner {
        width: 285px;
        text-align: center;
    }

    .footer_logo {
        width: 255px;
        margin: 0px auto;
    }

    .footer_t_l span {
        font-size: 1.1rem;
    }

    .footer_bt {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .footer_bt a {
        width: 145px;
        height: 28px;
        background: url(../img/common/footer_t_arrow.png) no-repeat #009bbe;
        background-size: 10px;
        background-position: center right 7px;
        line-height: 100%;
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        letter-spacing: 0;
        font-weight: 500;
        font-style: normal;
    }

    .footer_t_r {
        border-top: solid 1px #009bbe;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px 0px;
        border-left: none;
        font-size: 1.1rem;
        letter-spacing: 0;
    }

    .footer_t_r ul {
        border-bottom: solid 1px #009bbe;
        display: flex;
        justify-content: space-between;
        padding: 0px 10px 0px 0px;
        font-weight: 500;
        font-style: normal;
        font-size: 1.1rem;
    }

    .footer_t_r ul:nth-child(1) {
        border-top: solid 1px #009bbe;
    }

    .footer_t_r ul:nth-child(1) li:nth-child(1) {
        letter-spacing: 0.5rem;
    }

    .footer_t_r ul li {
        padding: 8px 0px;
    }

    .footer_t_r ul:nth-child(2) li {
        color: #009bbe;
    }

    .footer_t_r ul:nth-child(3) li {
        color: #009bbe;
    }

    .footer_t_r ul li:nth-child(1) {
        width: 30%;
        color: #000;
    }

    .footer_t_r span {
        margin-top: 5px;
        display: block;
        text-align: left;
        line-height: 180%;
    }

    .footer_b {
        background: #009bbe;
        padding: 40px 0px 40px 0px;
    }

    .footer_b_inner {
        width: 90%;
        max-width: 520px;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer_b_l {
        width: 280px;
        margin: 0px auto;
    }

    .footer_b_r {
        width: 280px;
        margin: 0px auto;
    }

    .footer_b_title {
        width: 280px;
        height: 33px;
        background: #fff;
        color: #009bbe;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
    }

    .footer_b_l p {
        color: #fff;
        font-size: 1.1rem;
        line-height: 180%;
        letter-spacing: 0;
        margin-bottom: 20px;
    }

    .footer_sns {
        width: 100%;
        margin: 20px auto;
        display: flex;
        justify-content: center;
    }

    .footer_sns a + a {
        margin-left: 20px;
    }

    .footer_sns img {
        width: 35px;
    }

    .footer_copy {
        text-align: center;
        color: #fff;
        font-size: 1.1rem;
    }

    .gototop {
        width: 20px;
        position: fixed;
        bottom: 15px;
        right: 15px;
    }

    /*footer*/





    /*top*/
    #top {
        margin-bottom: 0px;
        overflow-x: hidden;
        margin-top: -10px;
    }

    #top .box01 {
        margin-top: 35px;
        padding-bottom: 0px;
        background: #0096b9;
    }

    #top .box01_img {
        width: 300px;
        margin: 0px 0px;
        display: flex;
        margin: 0px auto;
        justify-content: flex-end;
    }

    #top .box01_img img {
        width: 265px;
        display: block;
        margin-top: -35px;
        margin-bottom: 0px;
    }

    #top .box01_inner01 {
        margin-top: 40px;
    }

    #top .box01_title {
        width: 110px;
        margin: 0px auto;
    }

    #top .box01_text {
        display: none;
    }

    #top .box01_text_sp span {
        display: block;
    }

    #top .box01_text_sp {
        text-align: center;
        color: #fff;
        font-size: 1.1rem;
        line-height: 240%;
        margin-top: 25px;
        display: block;
    }

    #top .box01_inner02 {
        margin: 40px auto 0px auto;
        width: 260px;
        background: #fff;
        padding: 25px 25px;
        border-radius: 8px;
    }

    #top .box01_inner02 h2 {
        text-align: center;
        font-size: 1.4rem;
        font-weight: 500;
        font-style: normal;
        color: #009bbe;
        letter-spacing: 0.25rem;
        line-height: 150%;
    }

    #top .box01_inner02 h2::after {
        content: "";
        margin-left: 0;
    }

    #top .box01_inner02 ul {
        font-size: 1.1rem;
        line-height: 230%;
        margin-top: 20px;
        font-weight: 500;
        font-style: normal;
        letter-spacing: 0;
    }

    #top .box01_icon {
        width: 20px;
        margin: -10px auto 0px auto;
    }

    #top .back_icon {
        background: url(../img/top/box01_back.svg) no-repeat;
        background-size: 1500px;
        background-position: center top;
    }

    #top .box02 {}

    #top .box02_inner {
        padding-top: 100px;
        padding-bottom: 0px;
    }

    #top .box02 p {
        color: #009bbe;
        text-align: center;
        font-size: 1.2rem;
        line-height: 170%;
        letter-spacing: 0.25rem;
        font-weight: 500;
        font-style: normal;
    }

    #top .box03 {
        margin-top: 70px;
        padding-top: 0px;
    }

    #top .box03_anker {
        top: -110px;
        position: absolute;
    }

    #top .box03 h2 {
        font-size: 1.4rem;
        text-align: center;
        letter-spacing: 0.5rem;
        font-weight: 500;
        font-style: normal;
        padding-bottom: 20px;
    }

    #top .box03 h2 span {
        border-bottom: solid 2px #000;
        padding-bottom: 6px;
        line-height: 100%
    }

    #top .box03 h2 span::after {
        content: "";
        margin-left: -0.5rem;
    }

    #top .box03_inner01 {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        line-height: 100%;
        margin-top: 40px;
    }

    #top .box03_inner01_l {
        display: none;
        width: 50%;
        justify-content: flex-end;
        z-index: +1;
    }

    #top .box03_inner01_l img {
        width: 600px;
        height: 425px;
    }

    #top .box03_inner01_r {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #top .box03_inner01_r .box03_num {
        width: 45px;
        margin: 0px auto;
    }

    #top .box03_inner01_r .box03_num img {
        display: block;
    }

    #top .box03_inner01_r h3 {
        margin: 20px auto 0px auto;
        width: auto;
        color: #009bbe;
        line-height: 180%;
        font-size: 1.8rem;
        letter-spacing: 0.5rem;
        font-weight: 500;
        font-style: normal;
        display: inline-block;
    }

    #top .box03_inner01_r .box03_text {
        background: none;
        padding: 0px;
        line-height: 190%;
        width: 272px;
        margin: 5px auto 0px auto;
        font-size: 1.1rem;
        z-index: -1;
        position: relative;
        letter-spacing: 0;
    }

    #top .box03_inner01_r .box03_text p {
        width: 100%;
        text-align: justify;
        text-justify: inter-ideograph;
        text-justify: inter-character;
    }

    #top .box03_inner01_img_sp {
        width: 272px;
        display: block;
        margin: 20px auto 0px auto;
    }

    #top .box03_inner02 {
        width: 100%;
        display: flex;
        position: relative;
        margin-top: 40px;
    }

    #top .box03_inner02_l {
        width: 90%;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    #top .box03_inner02_l .box03_num {
        width: 45px;
        margin: 0px auto;
    }

    #top .box03_inner02_l .box03_num img {
        width: 45px;
        display: block;
    }

    #top .box03_inner02_l h3 {
        width: auto;
        margin: 10px auto 0px auto;
        color: #009bbe;
        line-height: 180%;
        font-size: 1.8rem;
        letter-spacing: 0.5rem;
        font-weight: 500;
        font-style: normal;
        display: inline-block;
    }

    #top .box03_inner02_l .box03_text {
        background: none;
        padding: 0px;
        line-height: 190%;
        width: 272px;
        margin: 5px auto 0px auto;
        font-size: 1.1rem;
        z-index: -1;
        position: relative;
        letter-spacing: 0;
    }

    #top .box03_inner02 .box03_text p {
        width: 100%;
    }

    #top .box03_inner02_r {
        width: calc(50%);
        display: none;
    }

    #top .box03_inner02_r img {
        width: 330px;
        margin-left: -40px;
    }

    #top .box04_icon01 {
        width: 250px;
        margin: 40px auto 0px auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    #top .box04_icon01 img {
        width: 35px;
        display: block;
    }

    #top .box04 {
        background: #009bbe;
        padding: 50px 0px 40px 0px;
    }

    #top .box04 h2 {
        font-size: 1.5rem;
        text-align: center;
        letter-spacing: 0.5rem;
        color: #fff;
        font-weight: 500;
        font-style: normal;
    }

    #top .box04 h2 span {
        border-bottom: solid 2px #fff;
        padding-bottom: 7px;
        line-height: 100%
    }

    #top .box04 h2 span::after {
        content: "";
        margin-left: -0.5rem;
    }

    #top .box04_inner {
        width: 270px;
        color: #fff;
        margin: 60px auto 0px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    #top .box04_contents {
        width: 100%;
    }

    #top .box04_contents:last-child {
        width: 100%;
        margin-top: 40px;
    }

    #top .box04_contents h3 {
        font-size: 1.7rem;
        text-align: center;
        margin-top: 20px;
        font-weight: 500;
        font-style: normal;
    }

    #top .box04_contents p {
        font-size: 1.1rem;
        letter-spacing: 0;
        line-height: 190%;
        margin-top: 10px;
        text-align: justify;
        text-justify: inter-ideograph;
        text-justify: inter-character;
    }

    #top .box04_bt {
        width: 125px;
        margin: 30px auto 0px auto;
    }

    #top .box04_bt a {
        color: #000;
        background: url(../img/top/box04_icon02.png) no-repeat #fff;
        background-size: 12px;
        background-position: center right 10px;
        text-decoration: none;
        border-radius: 10px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        letter-spacing: 0.25rem;
        font-weight: 500;
        font-style: normal;
    }

    #top .box05 {
        width: 310px;
        margin: 0px auto;
        padding: 60px 0px 0px 0px;
    }

    #top .box05_anker {
        top: -45px;
        position: absolute;
    }

    #top .box05 h2 {
        font-size: 1.6rem;
        text-align: center;
        letter-spacing: 0.5rem;
        color: #000;
        font-weight: 500;
        font-style: normal;
    }

    #top .box05 h2 span {
        border-bottom: solid 2px #000;
        padding-bottom: 7px;
        line-height: 100%
    }

    #top .box05 h2 span::after {
        content: "";
        margin-left: -0.5rem;
    }

    #top .box05_text {
        width: 90%;
        margin: 60px auto 0px auto;
        font-size: 1.6rem;
        line-height: 200%;
    }

    #top .box05_inner01 {
        margin: 10px auto 0px auto;
        width: 310px;
        display: flex;
        justify-content: center;
    }

    #top .box05_inner01 .slider {
        width: 255px;
        margin: 0px auto;
    }

    #top .box05_inner01 .slider_l {
        width: 22px;
        border: none;
        border-right: none;
        content: "";
        display: block;
    }

    #top .box05_inner01 .slider_r {
        width: 22px;
        border: none;
        border-left: none;
        content: "";
        display: block;
    }

    /*-----------height調整----------*/
    .slick-slide {
        height: auto !important;
    }

    /*-----------矢印表示----------*/
    .slick-next {
        right: -50px !important;
    }

    .slick-next:before {
        background: url(../img/common/slick_r.svg) no-repeat !important;
        background-size: 22px !important;
    }

    .slick-prev {
        left: -22px !important;
    }

    .slick-prev:before {
        background: url(../img/common/slick_l.svg) no-repeat !important;
        background-size: 22px !important;
    }

    .slick-arrow {
        z-index: 2 !important;
        width: 50px !important;
        height: 25px !important;
    }

    .slick-arrow:before {
        content: "" !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 1 !important;
    }

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

    #top .box05_contents01 {
        width: 235px;
        margin: 0px auto;
        display: flex;
        justify-content: space-between;
    }

    #top .box05_contents01 .title02 {
        letter-spacing: 0;
    }

    #top .box05_contents_inner {
        width: 235px;
        margin: 0px auto;
        padding: 35px 0px 0px 0px;
        display: block;
    }

    #top .box05 h3 {
        font-size: 1.8rem;
        color: #009bbe;
        text-align: center;
        line-height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        letter-spacing: 0.5rem;
        font-weight: 500;
        font-style: normal;
        white-space: nowrap;
    }

    #top .box05 h3 span span {
        font-size: 4.0rem;
        font-family: din-2014, sans-serif;
        line-height: 100%;
        display: flex;
        align-items: center;
    }

    #top .box05 h3 span {
        font-size: 2.3rem;
        line-height: 100%;
        display: flex;
        align-items: center;
        font-weight: 500;
        font-style: normal;
    }

    #top .box05_course {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        line-height: 100%;
    }

    #top .box05_course_l {
        width: 170px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ff6464;
        color: #fff;
        font-size: 1.2rem;
        border-radius: 10px;
    }

    #top .box05_course_l span {
        font-size: 2.0rem;
        font-family: din-2014, sans-serif;
        line-height: 100%;
        padding: 0px 5px;
        letter-spacing: 0.2rem;
    }

    #top .box05_course_c {
        color: #ff6464;
        font-size: 2.5rem;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #top .box05_course_r {
        width: 170px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ff6464;
        color: #fff;
        font-size: 1.2rem;
        border-radius: 10px;
    }

    #top .box05_course_r span {
        font-size: 2.0rem;
        font-family: din-2014, sans-serif;
        line-height: 100%;
        padding: 0px 5px;
        letter-spacing: 0.2rem;
    }

    #top .box05 ul {
        width: 100%;
        margin: 30px auto 20px auto;
    }

    #top .box05 ul li {
        display: flex;
        justify-content: space-between;
        font-size: 1.2rem;
        line-height: 100%;
        border-bottom: solid 2px #009bbe;
        padding-bottom: 10px;
        margin-bottom: 17px;
    }

    #top .box05_list_l::before {
        content: "●";
        color: #009bbe;
        margin-right: 1rem;
    }

    #top .box05_list_l {}

    #top .box05_list_r {
        color: #009bbe;
    }

    #top .box05_list_r span {
        font-size: 2.5rem;
        font-family: din-2014, sans-serif;
    }

    #top .box05_inner02 {
        font-size: 0.9rem;
        width: 255px;
        margin: 0px auto 0px auto;
        padding-left: 0px;
        display: flex;
        justify-content: center;
        letter-spacing: 0;
        line-height: 190%;
    }

    #top .box05_inner03 {
        width: 305px;
        padding: 25px 0 20px 0;
        border: solid 2px #009bbe;
        margin: 40px auto 0px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #top .box05_inner03 h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 500;
        font-style: normal;
    }

    #top .box05_contents {
        display: flex;
        width: 260px;
        font-size: 2.2rem;
        line-height: 100%;
        font-weight: 500;
        font-style: normal;
        letter-spacing: 0rem;
    }

    #top .box05_contents_l {
        border: solid 2px #009bbe;
        width: 80px;
        background: #009bbe;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3px 0px;
        border-radius: 5px 0px 0px 5px;
        font-size: 1.1rem;
    }

    #top .box05_contents_r {
        width: 170px;
        display: flex;
        align-items: center;
        padding: 3px 0px 3px 2%;
        border-radius: 0px 5px 5px 0px;
        border: solid 2px #009bbe;
        line-height: 150%;
        font-size: 1.1rem;
    }

    #top .box05_contents_c {
        font-size: 2.0rem;
        line-height: 100%;
        padding: 3px 0px;
        color: #009bbe;
        font-weight: 100;
    }

    #top .box05_inner03 p {
        width: 260px;
        font-size: 1.0rem;
        text-align: left;
        letter-spacing: 0;
        margin-top: 20px;
        margin-bottom: 0px;
    }

    #top .box05_inner03 p span {
        display: block;
        margin-left: 1rem;
    }

    #top .box06 {
        background: #f0f5f5;
        margin-top: 60px;
        padding: 60px 0px 30px 0px;
    }

    #top .box06_anker {
        top: -50px;
        position: absolute;
    }

    #top .box06 h2 {
        font-size: 1.5rem;
        text-align: center;
        letter-spacing: 0.5rem;
        color: #000;
        font-weight: 500;
        font-style: normal;
    }

    #top .box06 h2 span {
        border-bottom: solid 2px #000;
        padding-bottom: 7px;
        line-height: 100%
    }

    #top .box06_inner {
        width: 280px;
        margin: 45px auto 0px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #top .box06_contents {
        width: 100%;
        margin: 0px auto 25px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #top .box06_img {
        width: 110px;
    }

    #top .box06_text {
        color: #009bbe;
        font-size: 1.1rem;
        line-height: 100%;
        margin-top: 10px;
        font-weight: 500;
        font-style: normal;
    }

    #top .box06_title {
        font-size: 1.2rem;
        line-height: 150%;
        margin-top: 20px;
        letter-spacing: 0;
        font-weight: 500;
        font-style: normal;
        text-align: left;
        display: block;
        width: 100%;
    }

    #top .box06_contents p {
        font-size: 1.1rem;
        letter-spacing: 0;
        line-height: 190%;
        margin-top: 10px;
        text-align: justify;
        text-justify: inter-ideograph;
        text-justify: inter-character;
    }

    #top .box07 {
        padding-top: 0px;
        margin-top: 0px;
    }

    #top .box07 a {
        text-decoration: none;
    }

    #top .box07_contents {
        background: #009bbe;
        width: 100%;
        padding: 40px 0px 0px 0px;
        height: auto;
        position: relative;
    }

    #top .box07_contents03 {
        background: #009bbe;
        width: 100%;
        margin-top: 7px;
        padding: 40px 0px 0px 0px;
        height: auto;
        position: relative;
    }

    #top .box07_contents_inner01 {
        height: auto;
        width: 100%;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #top .box07_contents_inner02 {
        height: auto;
        width: 100%;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #top .box07_contents_inner03 {
        height: auto;
        width: 100%;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #top .box07_l01 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        color: #fff;
        text-align: center;
    }

    #top .box07_r01 {
        width: 215px;
        margin: 25px auto 0px auto;
        position: relative;
        display: flex;
        align-items: flex-end;
    }

    #top .box07_r01 img {
        width: 215px;
        height: 190px;
        object-fit: cover;
        object-position: center top;
    }

    #top .box07_l02 {
        width: 220px;
        margin: 20px auto 0px auto;
        position: relative;
        display: flex;
        align-items: flex-end;
        margin-left: auto;
        order: 2;
    }

    #top .box07_l02 img {
        width: 215px;
        height: 190px;
        object-fit: cover;
        object-position: center top;
    }

    #top .box07_r02 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        padding-right: 0px;
        order: 1;
    }

    #top .box07_l03 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #top .box07_r03 {
        width: 215px;
        margin: 40px auto 0px auto;
        position: relative;
        display: flex;
        align-items: flex-end;
    }

    #top .box07_r03 img {
        width: 215px;
        height: 175px;
        object-fit: cover;
        object-position: center top;
    }

    #top .box07 h2 {
        font-size: 1.6rem;
        text-align: center;
        letter-spacing: 0.5rem;
        color: #000;
        margin: 30px 0px 40px 0px;
        font-weight: 500;
        font-style: normal;
    }

    #top .box07 h2 span {
        border-bottom: solid 2px #000;
        padding-bottom: 7px;
        line-height: 100%
    }

    #top .box07 h2 span::after {
        content: "";
        margin-left: -0.5rem;
    }

    #top .box07_link {
        width: 125px;
        height: 28px;
        background: url(../img/top/box07_icon.png) no-repeat #fff;
        background-size: 11px;
        background-position: center right 15px;
        color: #000;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        margin: 23px auto 0px auto;
    }

    #top .box07_name01 {
        display: inline-block;
        line-height: 100%;
        margin: 0px auto;
        text-align: left;
        white-space: nowrap;
    }

    #top .box07_name01 span:nth-child(1) {
        font-size: 1.4rem;
        line-height: 100%;
        letter-spacing: 1.5rem;
        font-weight: 500;
        font-style: normal;
        white-space: nowrap;
    }

    #top .box07_name01 span:nth-child(2) {
        margin-left: 10px;
        font-size: 2.2rem;
        line-height: 100%;
        letter-spacing: 2.0rem;
        white-space: nowrap;
    }

    #top .box07_name01 span:nth-child(2)::after {
        content: "";
        margin-left: -1.0rem;
    }

    #top .box07_name02 {
        display: none;
    }

    #top .box07_name03 {
        display: inline-block;
        line-height: 100%;
        margin: 0px auto;
        text-align: left;
        white-space: nowrap;
    }

    #top .box07_name03 span {
        margin-left: 10px;
        font-size: 2.2rem;
        line-height: 100%;
        letter-spacing: 2.0rem;
        white-space: nowrap;
    }

    #top .box07_name03 span::after {
        content: "";
        margin-left: -1rem;
    }

    #top .box07_name04 {
        font-size: 1.1rem;
        line-height: 100%;
        margin-top: 18px;
        letter-spacing: 0.5rem;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 300;
        font-style: normal;
        margin-left: 0px;
        display: block;
        white-space: nowrap;
        text-align: center;
    }

    #top .box07_inner a:hover .box07_contents {
        background: #4cb5ce;
        transition: 0.3s;
    }

    #top .box07_inner a:hover .box07_contents03 {
        background: #4cb5ce;
        transition: 0.3s;
    }

    #top .box07_inner a:hover .box07_l01 {
        color: #97cbdc;
        transition: 0.3s;
    }

    #top .box07_inner a:hover .box07_r02 {
        color: #97cbdc;
        transition: 0.3s;
    }

    #top .box07_inner a:hover .box07_l03 {
        color: #97cbdc;
        transition: 0.3s;
    }

    #top .box07_inner a:hover .box07_contents_inner01::after {
        opacity: 0;
        transition: 0.3s;
    }

    #top .box07_contents_inner01::after {
        content: "詳しく見る";
        position: absolute;
        bottom: 160px;
        left: 35px;
        width: 230px;
        height: 50px;
        background: url(../img/top/box07_icon.png) no-repeat #fff;
        background-size: 20px;
        background-position: center right 20px;
        color: #000;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        opacity: 0;
        transition: 0.3s;
    }

    #top .box07_inner a:hover .box07_contents_inner02::after {
        opacity: 0;
        transition: 0.3s;
    }

    #top .box07_contents_inner02::after {
        content: "詳しく見る";
        position: absolute;
        bottom: 160px;
        right: 105px;
        width: 230px;
        height: 50px;
        background: url(../img/top/box07_icon.png) no-repeat #fff;
        background-size: 20px;
        background-position: center right 20px;
        color: #000;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        opacity: 0;
        transition: 0.3s;
    }

    #top .box07_inner a:hover .box07_contents_inner03::after {
        opacity: 0;
        transition: 0.3s;
    }

    #top .box07_contents_inner03::after {
        content: "詳しく見る";
        position: absolute;
        bottom: 160px;
        left: 35px;
        width: 230px;
        height: 50px;
        background: url(../img/top/box07_icon.png) no-repeat #fff;
        background-size: 20px;
        background-position: center right 20px;
        color: #000;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        opacity: 0;
        transition: 0.3s;
    }

    /*top*/





    /*staff*/
    #staff {
        min-width: 100%;
        background: #ffffff;
        overflow-x: hidden;
    }

    #staff .box01 {
        padding-top: 70px;
        font-size: 1.1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #staff .box01_inner {
        display: inline-block;
        width: auto;
        margin: 0px auto;
    }

    #staff .box01_name01 {
        display: flex;
        align-items: center;
        line-height: 100%;
    }

    #staff .box01_name01 {}

    #staff .box01_name01 span:nth-child(1) {
        font-size: 1.1rem;
        line-height: 100%;
        letter-spacing: 2rem;
    }

    #staff .box01_name01 span:nth-child(2) {
        margin-left: 10px;
        font-size: 2.2rem;
        line-height: 100%;
        letter-spacing: 2rem;
        white-space: nowrap;
    }

    #staff .box01_name01 span:nth-child(2)::after {
        content: "";
        margin-left: -3.0rem;
    }

    #staff .box01_name02 {
        font-size: 1.1rem;
        line-height: 100%;
        color: #009bbe;
        margin-top: 20px;
        letter-spacing: 0.5rem;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 300;
        font-style: normal;
    }

    #staff .box01_name03 {
        display: flex;
        align-items: center;
        line-height: 100%;
    }

    #staff .box01_name03 span:nth-child(1) {
        margin-left: 0px;
        font-size: 2.2rem;
        line-height: 100%;
        letter-spacing: 2rem;
    }

    #staff .box01 ul {
        margin-top: 25px;
    }

    #staff .box01 ul li::before {
        content: "●";
        color: #009bbe;
        margin-right: 5px;
    }

    #staff .box01 ul li {
        margin-bottom: 0px;
    }

    #staff .box01_img {
        width: 280px;
        margin: 25px auto 0px auto;
    }

    #staff .box01_textbox {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #staff .box01_textbox .box01_textbox_title {
        color: #009bbe;
        font-size: 1.5rem;
        line-height: 200%;
        text-align: center;
        font-weight: normal;
        letter-spacing: 0.5rem;
        margin-top: 25px;
        font-weight: 500;
        font-style: normal;
        display: inline-block;
        text-align: center;
        padding-left: 1.5rem;
    }

    #staff .box01_textbox .box01_textbox_title span {
        display: block;
    }

    #staff .box01 p {
        width: 280px;
        margin: 20px auto 0px auto;
        line-height: 200%;
        text-align: justify;
        text-justify: inter-ideograph;
        text-justify: inter-character;
        display: inline-block;
        letter-spacing: 0rem;
    }

    #staff .box01 p span {
        display: inline;
    }

    #staff .box02 {
        padding-top: 40px;
    }

    #staff .box02_inner01 {
        width: 100%;
        padding: 40px 0px 20px 0px;
        background: #f0f5f5;
        margin: 0px auto;
    }

    #staff .box02_inner01 span {
        display: block;
    }

    #staff .box02_inner02 {
        width: 100%;
        padding: 40px 0px;
        background: #f0f5f5;
        margin: 20px auto 0px auto;
    }

    #staff .box02_inner01 h2 {
        color: #009bbe;
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        letter-spacing: 0.25rem;
        margin-bottom: 15px;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 500;
        font-style: normal;
    }

    #staff .box02_inner01 span {
        display: block;
    }

    #staff .box02_inner02 h2 {
        color: #009bbe;
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        letter-spacing: 0.25rem;
        margin-bottom: 15px;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 500;
        font-style: normal;
    }

    #staff .box02_inner03 h2 {
        color: #009bbe;
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        letter-spacing: 0.25rem;
        margin-bottom: 20px;
        margin-top: 40px;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 500;
        font-style: normal;
    }

    #staff .box02_inner01 h3 {
        background: #fff;
        width: 300px;
        height: 28px;
        margin: 0px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        border: solid 1px #009bbe;
        font-size: 1.1rem;
        color: #009bbe;
        font-weight: 500;
        font-style: normal;
    }

    #staff .box02_inner02 h3 {
        border-bottom: solid 1px #009bbe;
        width: 300px;
        margin: 0px auto;
        font-size: 1.1rem;
        color: #009bbe;
        font-weight: 500;
        font-style: normal;
        padding-bottom: 0px;
        margin-bottom: 10px;
    }

    #staff .box02_inner01 p {
        font-size: 1.1rem;
        text-align: center;
        line-height: 200%;
        width: 300px;
        margin: 5px auto 18px auto;
    }

    #staff .box02_inner02 {}

    #staff .box02_inner02_list01 {
        margin-top: 15px;
    }

    #staff .box02_inner02_list01 {
        font-size: 1.1rem;
        line-height: 100%;
        width: 300px;
        margin: 0px auto 40px auto;
    }

    #staff .box02_inner02_list02 {
        font-size: 1.1rem;
        line-height: 100%;
        margin-bottom: 20px;
        display: flex;
        flex-wrap: wrap;
        width: 300px;
        margin: 0px auto 0px auto;
    }

    #staff .box02_inner02_list02 li {
        margin-bottom: 5px;
        line-height: 150%;
    }

    #staff .box02_inner02_list02 li:nth-child(odd) {
        width: 70px;
    }

    #staff .box02_inner02_list02 li:nth-child(even) {
        width: calc(100% - 70px);
    }

    #staff .box02_inner02_list03 {
        font-size: 1.1rem;
        line-height: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
        width: 300px;
        margin: 0px auto 0px auto;
    }

    #staff .box02_inner02_list03 li {
        margin-bottom: 5px;
        line-height: 150%;
    }

    #staff .box02_inner02_list03 li:nth-child(odd) {
        width: 50px;
    }

    #staff .box02_inner02_list03 li:nth-child(even) {
        width: calc(100% - 50px);
    }


    #staff .box02_inner03 {}

    #staff .box02_inner03 p {
        width: 280px;
        margin: 20px auto 0px auto;
        padding: 0px;
        font-size: 1.1rem;
        line-height: 185%;
        letter-spacing: 0;
        text-align: justify;
        text-justify: inter-ideograph;
        text-justify: inter-character;
    }

    #staff .box02_bn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 255px;
        margin: 50px auto 0px auto;
    }

    #staff .box02_bn a {
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #fff;
        background: #009bbe;
        border-radius: 15px;
        justify-content: center;
    }

    #staff .box02_bn a:hover::before {
        transition: 0.3s;
        opacity: 0;
    }

    #staff .box02_bn a + a {
        margin-top: 30px;
    }

    #staff .box02_bn img {
        width: 40%;
    }

    #staff .box02_bn span:nth-child(1) {
        font-size: 1.5rem;
        letter-spacing: 0.75rem;
        white-space: nowrap;
    }

    #staff .box02_bn span:nth-child(2) {
        font-size: 0.9rem;
        margin-top: 5px;
        letter-spacing: 0.3rem;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 300;
        font-style: normal;
    }

    #staff .box02_bn_text {
        display: flex;
        flex-direction: column;
        width: 40%;
        padding-left: 20px;
    }

    .box02_bt {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .box02_bt a {
        width: 240px;
        height: 50px;
        background: url(../img/common/footer_t_arrow.png) no-repeat #003282;
        background-size: 20px;
        background-position: center right 15px;
        line-height: 100%;
        color: #fff;
        border-radius: 10px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        letter-spacing: 0;
        font-weight: 500;
        font-style: normal;
    }

    #staff .box03 {
        margin-top: 70px;
    }

    #staff .box03_inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    #staff .box03_inner img {
        width: 100%;
    }

    #staff .box03_inner img + img {
        margin-top: 10px;
    }

    /*staff*/





    /*treatment*/
    #treatment {
        min-width: 100%;
    }

    #treatment .box01 {
        padding-top: 70px;
        font-size: 1.1rem;
        overflow-x: hidden;
    }

    #treatment .box01_inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 280px;
        margin: 0px auto;
    }

    #treatment .box01 h2 {
        font-size: 1.8rem;
        color: #009bbe;
        text-align: center;
        margin-top: 20px;
        font-weight: 500;
        font-style: normal;
    }

    #treatment .box01 p {
        margin: 10px 0px 0px 0px;
        padding: 0px;
        line-height: 220%;
        letter-spacing: 0;
        text-align: justify;
        text-justify: inter-ideograph;
        text-justify: inter-character;
    }

    #treatment .box01 article {
        opacity: 0;
    }

    #treatment .box01 article:nth-child(1) {
        width: 100%;
        margin-bottom: 40px;
        -webkit-animation: example 1s ease 0.2s 1 forwards;
        animation: example 1s ease 0.2s 1 forwards;
    }

    #treatment .box01 article:nth-child(2) {
        width: 100%;
        margin-bottom: 40px;
        -webkit-animation: example 1s ease 0.4s 1 forwards;
        animation: example 1s ease 0.4s 1 forwards;
    }

    #treatment .box01 article:nth-child(3) {
        width: 100%;
        margin-bottom: 40px;
        -webkit-animation: example 1s ease 0.6s 1 forwards;
        animation: example 1s ease 0.6s 1 forwards;
    }

    #treatment .box01 article:nth-child(4) {
        width: 100%;
        margin-bottom: 40px;
        -webkit-animation: example 1s ease 0.8s 1 forwards;
        animation: example 1s ease 0.8s 1 forwards;
    }

    #treatment .box01 article:nth-child(5) {
        width: 100%;
        margin-bottom: 40px;
        -webkit-animation: example 1s ease 1.0s 1 forwards;
        animation: example 1s ease 1.0s 1 forwards;
    }

    #treatment .box01 article:nth-child(6) {
        width: 100%;
        margin-bottom: 60px;
        -webkit-animation: example 1s ease 1.2s 1 forwards;
        animation: example 1s ease 1.2s 1 forwards;
    }

    @-webkit-keyframes example {
        100% {
            opacity: 1;
        }
    }

    @keyframes example {
        100% {
            opacity: 1;
        }
    }

    #treatment .box01 article span {
        color: #009bbe;
        margin-top: 10px;
    }

    #treatment .box02 {
        background: #009bbe;
        padding: 50px 0px 40px 0px;
    }

    #treatment .box02_inner {
        width: 96%;
        margin: 0px auto;
    }

    #treatment .box02 h2 {
        font-size: 1.6rem;
        color: #fff;
        line-height: 100%;
        margin-bottom: 60px;
        text-align: center;
        letter-spacing: 0.5rem;
        font-weight: 500;
        font-style: normal;
    }

    #treatment .box02 h2 span {
        border-bottom: solid 2px #fff;
        padding-bottom: 7px;
    }

    #treatment .box02 h2 span::after {
        content: "";
        margin-left: -0.5rem;
    }

    #treatment .box02 article {
        width: 280px;
        margin: 0px auto;
    }

    #treatment .box02_contents {
        display: flex;
        position: relative;
    }

    #treatment .box02_num {
        background: #ff6464;
        width: 38px;
        height: 38px;
        font-size: 1.8rem;
        color: #fff;
        line-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        position: absolute;
        font-family: din-2014, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    #treatment .box02 h3 {
        background: #fff;
        width: 100%;
        height: 38px;
        margin-left: 19px;
        border-radius: 0px 100px 100px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #009bbe;
        font-size: 1.5rem;
        font-weight: 500;
        font-style: normal;
    }

    #treatment .box02 article p {
        color: #fff;
        font-size: 1.1rem;
        margin: 10px 0px 10px 17px;
        border-left: solid 3px #ff6464;
        text-align: center;
        height: auto;
        padding: 10px 0px;
        line-height: 150%;
    }

    #treatment .box02 article p span {
        display: block;
    }

    #treatment .box02 article:nth-child(6) p {
        border-left: none;
    }

    #treatment .box03 {
        background: #f0f5f5;
        padding: 40px 0px;
    }

    #treatment .box03_inner {
        background: #fff;
        padding: 50px 0px 30px 0px;
        width: 310px;
        margin: 0px auto;
    }

    #treatment .box03_contents01 {}

    #treatment .box03_img {
        width: 130px;
        margin: 0px auto;
    }

    #treatment .box03 h2 {
        letter-spacing: 0.5rem;
        text-align: center;
        font-size: 1.8rem;
        line-height: 100%;
        margin-top: 30px;
        font-weight: 500;
        font-style: normal;
    }

    #treatment .box03_contents01 p {
        font-size: 1.1rem;
        width: 250px;
        margin: 20px auto 0px auto;
        line-height: 190%;
    }

    #treatment .box03_contents02 {
        width: 250px;
        border: solid 1px #009bbe;
        margin: 55px auto 0px auto;
    }

    #treatment .box03_contents02 h3 {
        color: #009bbe;
        text-align: center;
        font-size: 1.5rem;
        line-height: 100%;
        margin-top: 40px;
        letter-spacing: 0.25rem;
        font-weight: 500;
        font-style: normal;
    }

    #treatment .box03_contents02_text01 {
        font-size: 1.1rem;
        letter-spacing: 0;
        border-bottom: solid 1px #009bbe;
        padding: 10px 5% 20px 5%;
        line-height: 200%;
    }

    #treatment .box03 ul {
        width: 210px;
        margin: 30px auto 30px auto;
    }

    #treatment .box03 ul li {
        display: flex;
        width: 100%;
    }

    #treatment .box03 ul li span {
        display: inline;
    }

    #treatment .box03_num {
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ff6464;
        color: #fff;
        font-size: 2.0rem;
        border-radius: 100px;
        font-family: din-2014, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    #treatment p.box03_contents02_text02 {
        font-size: 1.1rem;
        line-height: 180%;
        font-weight: 500;
        font-style: normal;
        padding: 0px;
        margin: 0px 0px 10px 15px;
        padding: 0px 0px 10px 0px;
        border-bottom: dotted #009bbe 1px;
        width: 100%;
    }

    #treatment .box03_contents02_text02 span {
        display: inline;
    }

    #treatment .box03_numbox::after {
        border-left: solid 3px #ff6464;
        display: block;
        content: "";
        width: 100%;
        height: calc(100% - 35px);
        margin-left: 15px;
        margin-top: 10px;
    }

    #treatment .box03 ul li:last-child .box03_contents02_text02 {
        font-size: 1.1rem;
        line-height: 180%;
        font-weight: 500;
        font-style: normal;
        padding: 0px;
        margin: 0px 0px 0px 20px;
        padding-bottom: 0px;
        border-bottom: none;
        width: 100%;
    }

    #treatment .box03 ul li:last-child .box03_numbox::after {
        border: none;
    }

    #treatment dt.box03_title {}

    #treatment dt.box03_title div {
        color: #009bbe;
        line-height: 150%;
        font-size: 1.1rem;
        margin: 20px 0px 0px 0px;
        padding-top: 25px;
        padding-left: 40px;
        padding-right: 15px;
        font-weight: 500;
        font-style: normal;
        border-top: solid 1px #009bbe;
        background: url(../img/treatment/box03_q.svg) no-repeat;
        background-size: 21px;
        background-position: top 25px left;
    }

    #treatment dt.box03_title div span {
        display: block;
    }

    #treatment dd.box03_text03 {
        margin: 0px 0px 0px 0px;
        padding-top: 10px;
        padding-left: 40px;
        background: url(../img/treatment/box03_a.svg) no-repeat;
        background-size: 21px;
        background-position: top 20px left;
    }

    #treatment dd.box03_text03 div {
        line-height: 180%;
        font-size: 1.1rem;
        padding: 10px 0px 0px 0px;
        margin: 0px 0px 0px 0px;
        width: 100%;
    }

    #treatment dd.box03_text03:last-child {
        margin-bottom: 0px;
    }

    #treatment dd.box03_text03 span {
        width: calc(100%);
        display: block;
        line-height: 180%;
    }

    #treatment .box03_contents03 {}

    #treatment .box03_contents03 h3 {
        font-size: 1.5rem;
        line-height: 100%;
        margin-top: 50px;
        text-align: center;
        margin-bottom: 20px;
        color: #009bbe;
    }

    #acMenu {
        width: 250px;
        margin: 0px auto;
        font-size: 1.1rem;
    }

    #acMenu dt {
        display: block;
        cursor: pointer;
        background: url(../img/treatment/arrrow_open.svg) no-repeat;
        background-size: 10px;
        background-position: top 30px right 5px;
        transition: 0.1s;
    }

    #acMenu dd {
        display: none;
        padding-bottom: 0px;
    }

    #acMenu dt.active {
        background: url(../img/treatment/arrrow_close.svg) no-repeat;
        background-size: 10px;
        background-position: top 30px right 5px;
        transition: 0.1s;
    }

    /*treatment*/


}

/*レスポンシブ　750px以下*/
