@charset "UTF-8";

/*========================

header

========================*/

/*
 * gnav
 */

 /* ナビゲーション
========================*/
#gnav {
    width: 100%;
    background-color: #fff;
    position: absolute;
    z-index: 999;
}
#gnav .nav {
    max-width: 1000px;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1em 0;
}
#gnav ul {
    margin-top: 1.375em;
}
#gnav li {
    position: relative;
    margin: 0 1.25em;
    padding-bottom: 1.125em;
    transition : all 0.5s;
}
#gnav li:first-child {
    margin-left: 0;
}
#gnav li:last-child {
    margin-right: 0;
}
#gnav li:after {
    position: absolute;
    bottom: .5em; right: 50%;
    display: block;
    width: 100%;
    height: .188em;
    content: "";
    transition : all 0.5s;
    opacity: 0;
}
#gnav li:hover:after {
    bottom: .5em;
    right: 0;
    background-image: url(../graduate_images/line_01.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}
#gnav .nav li a {
    margin-bottom: .313em;
    font-weight: bold;
    color: #5e5e5e;
    text-decoration: none;
    transition : all 0.5s;
}
#gnav .nav a:hover {
    color: #e687c0;
}
#gnav .gnav_confirm {
    color: #fff;
    font-size: .875em;
}
#gnav .gnav_confirm a {
    padding: .75em 1em;
    color: #fff;
    text-decoration: none;
    background-color: #d14298;
    border-radius: .25em;
    transition : all 0.5s;
}
#gnav .gnav_confirm a:hover {
    color: #fff;
    background-color: #e687c0;
}
#gnav .gnav_confirm a i {
    margin-right: .5em;
}
@media (max-width: 1024px) {
    #gnav {
        width: 100%;
        z-index: 9999;
    }
    #gnav .wrap {
        display: flex;
        flex-flow: column;
        padding: 0;
    }
    #gnav .nav {
        position: relative;
        width: 100%;
        flex-flow: column;
        align-items: flex-start;
        padding: 0;
    }
    .gnav_logo {
        width: 200px;
        padding: 1em;
    }
    .gnav_btn_sp {
        position: absolute;
        right: .4em;
        color: #5e5e5e;
        font-size: 2.5em;
    }
    #gnav .nav ul {
        margin-top: 0;
        flex-flow: column;
        width: 100%;
        border-bottom: 1px solid #ccc;
    }
    #gnav .nav ul.active {
        display: flex;
    }
    #gnav li {
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 1px solid #ccc;
    }
    #gnav .nav li a {
        display: block;
        padding: .5em;
        margin-bottom: 0;
        text-align: center;
    }
    #gnav .gnav_confirm {
        order: 3;
        padding: .5em;
        width: 100%;
    }
    #gnav .gnav_confirm.active {
        display: block;
    }
    #gnav .gnav_confirm a {
        width: 100%;
        padding: .5em 0;
        border-radius: .313em;
        font-size: 1.25em;
        text-align: center;
    }
}

/* 追従時 */
#gnav.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
}

/*
 * mv
 */
.mv {
    width: 100%;
}
.mv:before,
.mv:after {
    display: block;
    width: 100%;
    height: 6.25em;
    content: "";
    background-position: -4.376em top;
    background-repeat: repeat-x;
    background-size: auto 100%;
}
.mv:before {
    background-image: url(../graduate_images/mv_01.jpg);
}
.mv:after {
    background-image: url(../graduate_images/mv_03.jpg);
}
.mv img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .mv:before,
    .mv:after {
        height: 2.5em;
    }
    .mv img {
        height: 210px;
        object-fit: cover;
    }
}

/*========================

lead

========================*/
#lead {
    padding: 5em 0;
    text-align: center;
    letter-spacing: .063em;
}
#lead h1 {
    margin-bottom: .75em;
    font-size: 1.75em;
    font-weight: 600;
    line-height: 1.7;
}
#lead h1 span {
    font-size: 1.125em;
    font-weight: 700;
    letter-spacing: 0.075em;
    display: block;
}
#lead h1 span.equal {
    margin: auto;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
#lead p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
}
@media (max-width: 768px) {
    #lead {
        padding: 4em 1em;
    }
    #lead h1 {
        font-size: 1.75em;
        line-height: 1.3;
    }
    #lead h1 span {
        margin-bottom: .5em;
    }
    #lead p {
        font-size: .95em;
        text-align: left;
    }
}
@media (max-width: 420px) {
    #lead h1 {
        font-size: 1.25em;
        line-height: 1.3;
    }
}

/*========================

what

========================*/
.what_box {
    margin-bottom: 6em;
}
.what_box:last-child {
    margin-bottom: 0;
}
#what_work,
#oneday {
    margin-top: -6em;
    padding-top: 6em;
}

/*
 * what_lead
 */
.what_lead {
    position: relative;
    overflow-x: hidden;
}
.what_lead:after {
    position: absolute;
    top: 0;
    right: 51.5%;
    width: 35%;
    height: 100%;
    content: "";
    background: url(../graduate_images/what-ph_01.jpg) no-repeat center center;
    background-size: 100% auto;
    box-shadow: inset 0 0 .625em .625em #fff;
}
.what_lead .col {
    justify-content: flex-end;
}
.what_lead .col > * {
    width: 48.5%;
}
.what_lead .what_lead_txt h3 {
    margin-bottom: .5em;
    font-size: 1.75em;
    color: #aa1b47;
}
.what_lead .what_lead_txt h3 strong {
    font-size: 2.5em;
}
.what_lead .what_lead_txt p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.7;
}
.what_lead img {
    margin-bottom: 1.5em;
}
.shop_btn a {
    display: block;
    width: 65%;
    margin-top: 30px;
    padding: .75em 0;
    border-radius: .5em;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #e687c0;
    transition : all 0.5s;
}
.shop_btn a:hover {
    opacity: .7;
}
@media (max-width: 768px) {
    .what_box {
        margin-bottom: 3em;
    }
    .what_lead:after {
        display: none;
    }
    .what_lead .col {
        flex-flow: column;
    }
    .what_lead .col > * {
        width: 100%;
    }
    .what_lead .what_lead_txt h3 {
        font-size: 1.375em;
    }
    .what_lead p {
        margin-bottom: 1.2em;
    }
    .what_lead .sp {
        position: relative;
    }
    .what_lead .sp:after {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        box-shadow: inset 0 0 0.625em 0.625em #fff;
    }
    .what_lead .sp img {
        margin-bottom: 0;
    }
    .shop_btn {
        margin-bottom: 1.2em;
    }
    .shop_btn a {
        width: 100%;
        padding: .64em 0;
    }
}


/*
 * what_mind
 */
.what_mind {
    padding: 3.75em 0;
    color: #fff;
    background: url(../graduate_images/what-bg_01.png);
    background-size: cover;
}
.what_mind .wrap {
    max-width: 900px;
}
.what_mind h3 {
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
}
.what_mind_list ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1.25em;
    color: #e687c0;
}
.what_mind_list .col2 {
    width: 49%;
    padding: .75em 0;
    font-weight: 600;
    text-align: center;
    border-radius: .75em;
    background-color: #fff;
}
.what_mind_list li:before {
    display: inline-block;
    width: 1.2em;
    height: 1em;
    content: "";
    margin-right: .2em;
    background: url(../graduate_images/ico_01.png) no-repeat;
    background-size: cover;
}
.what_mind_list li:nth-child(n+3) {
    margin-top: 2%;
}
.what_mind_txt {
    line-height: 1.7;
    margin: 1.75em auto 0;
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: .09em;
}
.what_mind_txt strong {
    margin: 0 .25em;
    padding: .188em .375em;
    font-weight: 500;
    background-color: #aa1b47;
}

@media (max-width: 768px) {
    .what_mind {
        padding: 3em 0;
    }
    .what_mind h3 {
        font-size: 1.375em;
    }
    .what_mind_list ul {
        flex-flow: column;
        font-size: 1em;
    }
    .what_mind_list .col2 {
        width: 100%;
        padding: .75em 1.5em;
        text-align: left;
    }
    .what_mind_list li:nth-child(n+2) {
        margin-top: 1em;
    }
    .what_mind_txt {
        width: 100%;
        margin: 1em auto 0;
        font-size: 1em;
    }
}


/*
 * what_flow
 */
.what_flow .col {
    flex-wrap: wrap;
}
.what_flow li {
    width: calc(100% / 4);
    margin-bottom: 2.45em;
    overflow:hidden;
}
.what_flow li:last-child,
.what_flow li:nth-child(4n) {
    padding-right: 0;
}
.what_flow li:nth-last-child(-n+3) {
    margin-bottom: 0;
}
.what_flow li .step {
    padding: .5em 1em;
    font-size: .875em;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background-color: #d14298;
    display: block;
    position: relative;
    overflow: hidden;
}
.what_flow li:nth-child(4n) .step {
    background: linear-gradient(to right, #d14298 0%,#d14298 94%,#ffffff 94%,#ffffff 100%);
}
.what_flow li .step:before,
.what_flow li .step:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin: auto;
    border-style: solid;
    border-width: 22px 0 22px 1em;
    transform: translateY(-50%);
    top: 50%;
    z-index: 1;
}
.what_flow li:last-child .step:before,
.what_flow li:last-child .step:after {
    content: unset;
}
.what_flow li .step:before {
    border-color: transparent transparent transparent #fff;
    right: 0;
}
.what_flow li .step:after{
    right: 3px;
    border-color: transparent transparent transparent #d14298;
}
.what_flow dl {
    position: relative;
    font-size: 1.25em;
    text-align: center;
}
.what_flow dt {
    padding: 1em 0 .95em;
    font-size: .8em;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.what_flow .col .col2:first-child {
    width: 55%;
}
.what_flow .col .col2:first-child img {
    width: 100%;
    height: auto;
}
.what_flow .col .col2:last-child {
    width: 44%;
}

@media (max-width: 768px) {
    .what_flow > .col {
        flex-flow: column;
    }
    .what_flow li {
        width: 100%;
        margin-bottom: 0;
        display: flex;
    }
    .what_flow li:nth-last-child(-n+3) {
        margin-bottom: 0;
    }
    .what_flow li:last-child {
        margin-bottom: 0;
    }
    .what_flow li .step {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        -o-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }
    .what_flow li:nth-child(4n) .step {
        background: #d14298;
    }
    .what_flow li .step:before,
    .what_flow li .step:after {
        margin: auto;
        border-style: solid;
        border-width: 1em 28px 0 28px;
        transform: translate(-50%, 0);
        top: unset;
        left: 50%;
    }
    .what_flow li:last-child .step:before,
    .what_flow li:last-child .step:after {
        content: unset;
    }
    .what_flow li .step:before {
        border-color: #fff transparent transparent transparent;
        right: unset;
        bottom: 0;
    }
    .what_flow li .step:after{
        right: unset;
        bottom: 3px;
        border-color: #d14298 transparent transparent transparent;
    }
    .what_flow dt {
        background-color: #f8efff;
    }
}



/*========================

interview

========================*/

/*
 * interview box
 */
.interview_box {
    margin-bottom: 6.25em;
}

.interview_prof {
    align-items: center;
}
.interview_box:nth-child(odd) .interview_prof {
    padding-top: 6.25em;
    border-top: 1px solid #ccc;
}
.interview_meta .position {
    display: inline-block;
    margin-bottom: 1em;
    padding: .375em .75em;
    color: #FFF;
    font-size: .875em;
    background-color: #d14298;
}
.interview_meta .interview_name {
    display: block;
    line-height: 1;
    margin-bottom: .375em;
    font-size: 1.75em;
    font-weight: 500;
}
.interview_meta .career {
    margin-bottom: 1.28em;
    font-size: .875em;
}

.interview_box h2 {
    line-height: 1.7;
    color: #e687c0;
    font-size: 1.3em;
}

@media (max-width: 768px) {
    .interview_prof {
        flex-direction: column;
    }
    .interview_prof .col2 {
        width: 100%;
    }
    .interview_meta .position {
        font-size: .875em;
    }
    .interview_meta .interview_name {
        font-size: 1.5em;
    }
    .interview_box h2 {
        font-size: 1.375em;
        margin-bottom: .72em;
    }
}

.interview_txt {
    margin-top: 3.75em;
}
.interview_txt .col {
    justify-content: space-between;
}
.interview_txt:nth-child(even) .col {
    flex-direction: row-reverse;
}
.interview_txt .interview_paragraph {
    width: 64%;
    box-sizing: border-box;
    font-size: 1em;
}
.interview_txt:nth-child(odd) .interview_paragraph {
    padding-right: 2em;
}
.interview_txt:nth-child(even) .interview_paragraph {
    padding-left: 2em;
}
.interview_txt .interview_paragraph h3 {
    margin-bottom: 1em;
    font-size: 1.5em;
    letter-spacing: .1em;
}
.interview_txt .interview_paragraph p {
    margin-top: .75em;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 1px;
}
.interview_txt .interview_ph {
    width: 36%;
}
.interview_txt .interview_ph img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .interview_box {
        margin-bottom: 3em;
    }
    .interview_box:nth-child(odd) .interview_prof {
        padding-top: 3em;
    }
    .interview_txt {
        margin-top: 2em;
    }
    .interview_txt .col,
    .interview_txt:nth-child(even) .col {
        flex-direction: column;
    }
    .interview_txt .col .col2 {
        width: 100%;
    }
    .interview_txt:nth-child(even) .interview_paragraph {
        padding-left: 0;
    }
    .interview_txt:nth-child(odd) .interview_paragraph {
        padding-right: 0;
    }
    .interview_txt .interview_paragraph h3 {
        padding: 0;
        font-size: 1.25em;
    }
    .interview_txt .interview_ph {
        margin-top: 1em;
    }
}
@media (max-width: 420px) {
    .interview_txt h3 {
        padding: .65em;
        margin-bottom: .727em;
        font-size: 1.375em;
    }
    .interview_txt p {
        font-size: .9em;
    }
}

.interview_off {
    box-sizing: border-box;
    margin-top: 3.75em;
    padding: 2em;
    border: 3px solid #8c42d1;
    background-color: #f8efff;
    display: flex;
    justify-content: space-between;
}
.interview_off .off_ttl {
    width: 12.5%;
}
.interview_off .off_txt {
    width: 62.5%;
}
.interview_off .off_img {
    width: 20%;
}
.interview_off h3 {
    margin-bottom: 0;
}
.interview_off p {
    line-height: 2;
    letter-spacing: 1px;
}

@media (max-width: 420px) {
    .interview_off {
        padding: 2em 1em;
        flex-direction: column;
    }
    .interview_off .off_ttl {
        width: 70%;
        margin: auto;
    }
    .interview_off .off_txt,
    .interview_off .off_img {
        width: 100%;
    }    
    .interview_off h3 {
        text-align: center;
    }
    .interview_off h3 img {
        width: 70%;
    }
    .interview_off p {
        padding: 1em 0;
    }
}


/*
 * interview day
 */

/* タイトル
========================*/
.interview_day_title {
    position: relative;
    padding-top: 5em;
    margin-bottom: 3.75em;
}
.interview_day_title:before {
    position: absolute;
    z-index: 0;
    top: 0; left: 50%;
    width: 12.5em;
    height: 12.5em;
    content: "";
    border-radius: 50%;
    background-color: #e687c0;
    transform: translateX(-50%);
}
.interview_day_title h2 {
    position: relative;
    z-index: 2;
    border-top: .1em solid #e687c0;
    font-size: 1.75em;
    color: #fff;
    text-align: center;
}


/* タイムテーブル
========================*/
.interview_day_box {
    position: relative;
    box-sizing: border-box;
    padding-bottom: 2.625em;
}
.interview_day_box:first-child,
.interview_day_box:last-child {
    padding-bottom: 0;
}
.interview_day_office .interview_day_box {
    padding-right: 4.5625em;
    border-right: .109375em solid #e687c0;
}
.interview_day_outside .interview_day_box {
    padding-left: 4.5625em;
    border-left: .109375em solid #e687c0;
}
.interview_day_office .interview_day_box:last-child,
.interview_day_outside .interview_day_box:last-child {
    border: 0;
}

@media (max-width: 768px) {
    .interview_day .wrap.col {
        flex-flow: column;
        padding-left: 2em;
    }
    .interview_day .col2 {
        width: 100%;
    }
    .interview_day_office .interview_day_box,
    .interview_day_office .interview_day_box:last-child {
        padding-right: 0;
        padding-left: 1.25em;
        border-right: 0;
        border-left: 3px solid #d14298;
    }
    .interview_day_outside .interview_day_box,
    .interview_day_outside .interview_day_box:last-child {
        padding-right: 0;
        padding-left: 1.25em;
        border-right: 0;
        border-left: 3px solid #8c42d1;
    }
    .interview_day_office .interview_day_box:first-child,
    .interview_day_outside .interview_day_box:first-child {
        margin-top: 5.3em;
        padding-left: 0;
        border-left: 0;
    }
}


.interview_day_02 {
    padding-bottom: 21.0625em;
}
.interview_day_04 {
    padding-bottom: 11.25em;
}
.interview_day_08 p {
    padding-bottom: 2.2em;
}
.interview_day_09 {
    padding-bottom: 9.0625em;
}
.interview_day_10 {
    padding-bottom: 5.75em;
}
.interview_day_11 p {
    padding: 0 0 .875em;
}
.interview_day_12 {
    padding-bottom: 10.375em;
}
_:-ms-lang(x)::-ms-backdrop, .interview_day_12 {
    padding-bottom: 11.5em;
}
_:-ms-lang(x)::backdrop, .interview_day_12 {
    padding-bottom: 11em;
}
_:lang(x)::-ms-, .interview_day_12 {
    padding-bottom: 11em;
}
_:lang(x)::-moz-placeholder, .interview_day_12 {
    padding-bottom: 9.5em;
}
@media (max-width: 1024px) {
    .interview_day_10 {
        padding-bottom: 7.5em;
    }    
}
@media (max-width: 768px) {
    .interview_day_02,
    .interview_day_04,
    .interview_day_08 p,
    .interview_day_09,
    .interview_day_10,
    .interview_day_11 p,
    .interview_day_12 {
        padding-bottom: 2.625em;
    }
    _:lang(x)::-moz-placeholder, .interview_day_12 {
        padding-bottom: 2.625em;
    }
    .interview_day_08 p,
    .interview_day_11 p {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.interview_day_task_both:after,
.interview_day_task_office:after,
.interview_day_task_outside:before {
    position: absolute;
    z-index: 2;
    top: -.375em;
    display: block;
    height: 2.75em;
    content: "";
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.interview_day_task_both:after {
    right: -3.36em;
    width: 6.6875em;
    background-image: url(../graduate_images/day_icon_03.png);
}
.interview_day_outside .interview_day_task_both:after {
    display: none;
}
.interview_day_task_office:after {
    right: -1.5em;
    width: 4.8125em;
    background-image: url(../graduate_images/day_icon_04.png);
}
.interview_day_task_outside:before {
    left: -1.5em;
    width: 4.8125em;
    background-image: url(../graduate_images/day_icon_05.png);
}

@media (max-width: 768px) {
    .interview_day_task_both:after,
    .interview_day_task_office:after,
    .interview_day_task_outside:before {
        top: -.5625em;
    }
    .interview_day_task_both:after,
    .interview_day_task_office:after {
        right: auto; left: -1.5em;
        width: 4.8125em;
        transform: rotate(180deg);
    }
    .interview_day_outside .interview_day_task_both:after {
        display: block;
        width: 4.625em;
        background-position: right center;
        transform: rotate(0);
    }
}


.interview_day_intro {
    position: relative;
    padding-bottom: 4.4375em;
}
.interview_day_office .interview_day_intro {
    padding-left: 2.9375em;
}
.interview_day_outside .interview_day_intro {
    padding-right: 2.9375em;
}
.interview_day_office .interview_day_intro:before,
.interview_day_outside .interview_day_intro:before {
    position: absolute;
    top: -.9375em;
    z-index: 2;
    content: "";
    width: 4.75em;
    height: 14.5625em;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.interview_day_office .interview_day_intro:before {
    left: 0;
    width: 4.75em;
    background-image: url(../graduate_images/day_icon_01.png);
}
.interview_day_outside .interview_day_intro:before {
    right: 0;
    width: 5.5em;
    background-image: url(../graduate_images/day_icon_02.png);
}
.interview_day_intro dt {
    padding-top: .06em;
    margin-bottom: 1.25em;
}
.interview_day_intro dt span {
    display: block;
    padding: .25em 0;
    color: #fff;
    font-size: 1.25em;
    font-weight: 500;
    text-align: center;
}
.interview_day_office .interview_day_intro dt,
.interview_day_office .interview_day_intro dd {
    padding-left: 3.0625em;
}
.interview_day_outside .interview_day_intro dt,
.interview_day_outside .interview_day_intro dd {
    padding-right: 3.0625em;
}
.interview_day_office .interview_day_intro dt {
    background-color: #d14298;
}
.interview_day_outside .interview_day_intro dt {
    background-color: #8c42d1;
}
.interview_day_intro dd {
    line-height: 1.7;
    font-size: 1em;
    font-weight: 500;
}
.interview_day_office .interview_day_intro dd {
    padding-right: 1em;
}
.interview_day_outside .interview_day_intro dd {
    padding-left: 1em;
}

@media (max-width: 768px) {
    .interview_day_intro {
        padding-bottom: 2.625em;
    }
    .interview_day_intro dt span {
        font-size: 1.25em;
    }
    .interview_day_office .interview_day_intro dd {
        padding-right: 0;
        font-size: 1em;
    }
    .interview_day_outside .interview_day_intro dd {
        padding-left: 0;
        font-size: 1em;
    }
}

.interview_day_box h3 {
    margin-bottom: .28em;
    font-size: 1.25em;
}
.interview_day_outside h3 {
    color: #8c42d1;
}
.interview_day_office h3 {
    color: #d14298;
    text-align: right;
}
.interview_day_box p {
    line-height: 1.7;
    font-size: 1em;
    font-weight: 500;
}
.interview_day_box figure {
    margin-top: .9375em;
}

@media (max-width: 768px) {
    .interview_day_box h3 {
        padding-left: 2.5em;
        font-size: 1.125em;
        text-align: left;
    }
    .interview_day_box figure img:nth-child(n+1) {
        margin-top: .46875em;
    }
}



/*========================

ideal staff

========================*/

/*
 * mind
 */
.ideal_mind {
    overflow: hidden;
}
[class^="ideal_mind_ttl_"] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 23.75em;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ideal_mind_ttl_01 {
    background-image: url(../graduate_images/ideal_bg_01.png);
}
.ideal_mind_ttl_02 {
    text-align: right;
    background-image: url(../graduate_images/ideal_bg_02.png);
}
.ideal_mind_ttl_03 {
    background-image: url(../graduate_images/ideal_bg_03.png);
}
.ideal_mind h2 {
    position: relative;
    font-size: 1.75em;
    letter-spacing: .1em;
}
.ideal_mind p {
    margin-top: .5em;
    font-size: 1.125em;
    font-weight: 600;
    line-height: 1.7;
}
@media (max-width: 768px) {
    [class^="ideal_mind_ttl_"] {
        padding-bottom: 3em;
        align-items: flex-end;
    }
    .ideal_mind h2 {
        font-size: 1.5em;
    }
    .ideal_mind p {
        font-size: 1em;
    }
    .ideal_mind_ttl_02 {
        background-position: -14em center;
    }
    .ideal_mind_ttl_03 {
        background-position: -25em center;
    }
}
@media (max-width: 420px) {
    .ideal_mind_ttl_03 {
        background-position: -48em center;
    }
}


/*
 * what
 */
#ideal {
    padding-bottom: 0;
}
.ideal_what {
    padding: 5.5625em 0;
    text-align: center;
}
.ideal_what_ttl {
    width: 78.75em;
    line-height: 1;
    margin: 0 auto;
}
.ideal_what_ttl p {
    color: #ecbbe0;
    font-size: 5em;
    text-align: right;
}
.ideal_what_ttl h2 {
    margin-top: .75em;
    font-size: 1.875em;
}
.ideal_what .col {
    padding: 2em 0;
    align-items: center;
    justify-content: center;
}
.ideal_what .col h3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6.66em;
    height: 6.66em;
    margin-bottom: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 1.75em;
    font-weight: 500;
}
.ideal_what .col h3:first-child {
    background-color: #87aae6;
}
.ideal_what .col h3:last-child {
    background-color: #e687c0;
}
.ideal_what .col p {
    line-height: 1;
    padding: 0 .428em;
    color: #d14298;
    font-weight: 100;
    font-size: 13.125em;
}
.ideal_what_txt h3 {
    font-size: 1.5em;
}
.ideal_what_txt h3 span:first-child {
    color: #8c42d1;
}
.ideal_what_txt h3 span:last-child {
    color: #aa1b47;
}
.ideal_what_txt p {
    line-height: 1.7;
    font-size: 1.125em;
    font-weight: 500;
}

@media (max-width: 1260px) {
    .ideal_what_ttl {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .ideal_what_ttl p {
        margin-bottom: .25em;
        font-size: 1.5em;
        text-align: center;
    }
    .ideal_what_ttl h2 {
        font-size: 1.375em;
    }
    .ideal_what .col p {
        padding: 0 .1em;
        font-size: 6em;
    }
    .ideal_what .col h3 {
        width: 6em;
        height: 6em;
        font-size: 1.25em;
    }
    .ideal_what_txt h3 {
        font-size: 1.25em;
    }
    .ideal_what_txt p {
        font-size: 1em;
        text-align: left;
    }
}



/*========================

flow

========================*/

/*
 * graph
 */
.flow_graph {
    margin-bottom: 6em;
}
.flow_graph .wrap {
    position: relative;
}
.flow_graph .wrap .flow_catch {
    width: 30em;
    height: 10em;
    border-bottom: 2px solid #fa2d99;
    position: absolute;
    top: 2.5em;
    left: -2em;
    transform: rotate(-22.5deg);
    transform-origin: left top;
}
.flow_graph .wrap .flow_catch:after {
    content: "";
    width: 5em;
    height: 2px;
    background-color: #fa2d99;
    display: block;
    position: absolute;
    bottom: -2px;
    right: 0;
    transform: rotate(22.5deg);
    transform-origin: right bottom;
}
.flow_graph .wrap .flow_catch p {
    padding: 2em;
    font-size: 1.125em;
    font-weight: bold;
    letter-spacing: .1em;
    color: #fff;
    text-align: center;
    background-color: #fa2d99;
    border-radius: 50%;
    display: inline-block;
    transform: rotate(22.5deg);
}
.flow_graph .col {
    align-items: flex-end;
    justify-content: space-between;
}
.flow_graph .col .flow_box {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.flow_graph .col .flow_box.flow01 {
    height: 15em;
    background-color: #fad280;
}
.flow_graph .col .flow_box.flow02 {
    height: 22.5em;
    background-color: #f9bd3f;
}
.flow_graph .col .flow_box.flow03 {
    height: 30em;
    background-color: #f39e1e;
}
.flow_graph .col .flow_box h2 {
    padding: .75em .5em;
    font-size: 1.125em;
    letter-spacing: 1px;
    text-align: center;
    background-color: #fff;
}
.flow_graph .col .flow_box.flow01 h2 {
    border: 2px solid #fad280;
    border-right: 0;
}
.flow_graph .col .flow_box.flow02 h2 {
    border: 2px solid #f9bd3f;
    border-right: 0;
}
.flow_graph .col .flow_box.flow03 h2 {
    border: 2px solid #f39e1e;
}
.flow_graph .col .flow_box p {
    padding: 1em;
    padding-bottom: 0;
    line-height: 1.7;
    font-weight: 500;
}
.flow_graph .col .flow_box.flow03 p {
    color: #fff;
}
.flow_graph_arr {
    font-size: 2.25em;
    font-weight: 500;
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
}
@media (max-width: 1024px) {
    .flow_graph .col .flow_box.flow01 {
        height: 25em;
    }
    .flow_graph .col .flow_box.flow02 {
        height: 32.5em;
    }
    .flow_graph .col .flow_box.flow03 {
        height: 40em;
    }
}
@media (max-width: 768px) {
    .flow_graph .wrap .flow_catch {
        width: unset;
        height: unset;
        margin-bottom: 3em;
        transform: unset;
        border: 0;
        position: unset;
        text-align: center;
    }
    .flow_graph .wrap .flow_catch:after {
        content: unset;
    }
    .flow_graph .col .flow_box {
        flex-direction: row-reverse;
    }
    .flow_graph .col .flow_box.flow01,
    .flow_graph .col .flow_box.flow02,
    .flow_graph .col .flow_box.flow03 {
        height: 100%;
    }
    .flow_graph .col {
        flex-direction: column;
    }
    .flow_graph .col .flow_box {
        width: 100%;
    }
    .flow_graph .col .flow_box div:first-child {
        width: calc(100% - 2.125em);
    }
    .flow_graph .col .flow_box h2 {
        font-size: 1em;
    }
    .flow_graph .col .flow_box.flow01 h2 {
        border: 0;
        border-top: 2px solid #fad280;
        border-right: 2px solid #fad280;
    }
    .flow_graph .col .flow_box.flow02 h2 {
        border: 0;
        border-right: 2px solid #f9bd3f;
    }
    .flow_graph .col .flow_box.flow03 h2 {
        border: 0;
        border-right: 2px solid #f39e1e;
    }
    .flow_graph .col .flow_box div p {
        padding: .5em;
        border-left: 1px solid #fff;
    }
    .flow_graph_arr {
        padding: .75em;
        font-size: 1.125em;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        -o-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
        display: block;
        position: relative;
        overflow-x: hidden;
    }
    .flow_graph_arr:before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 1em 28px 0 28px;
        transform: translateX(-50%);
        display: block;
        position: absolute;
        left: 50%;
        z-index: 1;
    }
    .flow_graph_arr:before {
        border-color: #f9bd3f transparent transparent transparent;
        top: 0;
    }
    .flow02 .flow_graph_arr:before {
        border-color: #fad280 transparent transparent transparent;
        top: 0;
    }
    .flow01 .flow_graph_arr:before {
        content: unset;
    }
    .flow_graph .wrap .flow_catch p {
        transform: unset;
    }
}

/*
 * other
 */
.flow_other_ph {
    position: relative;
    max-width: 78.75em;
    margin: 0 auto;
}
.flow_other_ph p {
    position: absolute;
    right: 0;
    bottom: 2em;
    padding: 1.28em 1.6em;
    font-size: 1.375em;
    font-weight: 500;
    line-height: 1.7;
    background-color: rgba(230, 135, 192, .5);
}

@media (max-width: 1024px) {
    .flow_other_ph {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .flow_other_ph {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
    .flow_other_ph p {
        padding: 1em;
        position: relative;
        right: auto;
        bottom: auto;
        font-size: 1em;
    }
}




/*========================

footer

========================*/
#footer_top {
    position: fixed;
    z-index: 1000;
    right: 40px;
    text-align: right;
}
#footer_top a {
    transition : all 0.5s;
}
#footer_top a:hover {
    opacity: .7;
}

@media (max-width: 768px) {
    #footer_top {
        right: 20px;
    }
    #footer_top img {
        width: 6.25em;
    }
}

/*
 * fnav
 */
#fnav {
    padding: 5em 0;
    background-color: #fad2e7;
}
#fnav .col {
    justify-content: space-between;
}
#fnav .col2:last-child {
    text-align: right;
}
.footer_confirm a {
    display: inline-block;
    padding: .5em 1em;
    margin-bottom: .66em;
    border-radius: .25em;
    color: #fff;
    font-size: .95em;
    text-decoration: none;
    background-color: #aa1b47;
    transition : all 0.5s;
}
.footer_confirm a:hover {
    background-color: #e687c0;
}
.footer_confirm i {
    padding-right: .5em;
}
#fnav small {
    color: #6d6d6d;
    font-style: normal;
    font-size: .875em;
}

@media (max-width: 768px) {
    #fnav {
        padding: 3em 0;
    }
    #fnav .col {
        flex-direction: column;
    }
    #fnav .col .col2 {
        width: 100%;
        text-align: center;
    }
    #fnav img {
        width: 60%;
    }
    .footer_confirm a {
        width: 60%;
        margin-top: .66em;
    }
}