body {
    color:#000000;
    font-family: Arial, Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.5;
}

img {
    width :100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #000000;
}

a:hover {
    opacity: 0.7;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

h3 {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 20px;
}

.container {
    width: 80vw;
    margin: auto;
}

.clear::after {
    content:"";
    clear: both;
    display: block;
}

/*===========================
スマホ表示
===========================*/

@media only screen and (max-width: 767px) {

    /*===========================
    共通
    ===========================*/

    .container {
        width: calc(100% - 40px);
        margin: auto;
    }

}

/*===========================
header
===========================*/

header {
    background-image: url(img/header.png);
    background-size: cover;
    background-position: center;
}

.logo {
    width: 360px;
}

.header {
    display: flex;
    justify-content: space-between;
    background-repeat: no-repeat;
    align-items: center;
}

.header-nav {
    display: flex;
    justify-content: space-between;
}

.header-nav-item {
    margin-left: 40px;
    width: 85px;
    text-align: center;
}

.header-nav-item a {
    color: #F4F4F4;
    font-weight: 600;
    font-size: 20px;
    line-height: 1px;
}

.header-nav-item span {
    font-size: 14px;
}

.cta {
    text-align: center;
    width: 100%;
    padding: 8px;
    color: #C7020B;
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    background-color: #f4f4f4;
}

.header-sp {
    position: relative;
    width: 100%;
    z-index: 10;
}

.menu-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: crimson;
    width: 50px;
    height: 50px;
    perspective: 1000px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
}

.menu-icon span {
    top: 50%;
    display: block;
    width: 30px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: .3s;
}

.menu-icon span:nth-of-type(2) {
    top: calc(50% - 10px);
}

.menu-icon span:nth-of-type(3) {
    top: calc(50% + 10px);
}

.menu-icon span:nth-of-type(3),
.menu-icon.active span:nth-of-type(3) {
    transition: none;
}

.menu-icon.active span:nth-of-type(3) {
    display: none;
}

.menu-icon.active span:nth-of-type(1) {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.menu-icon.active span:nth-of-type(2) {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    top: 25px;
}

/* tab */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .header {
        position: relative;
        height: 90px;
    }

    .header-left {
        position: absolute;
    }

    .header-right {
        display: none;
    }
}

/* sp */

@media screen and (max-width:767px) {
    .header {
        position: relative;
        height: 90px;
    }

    .header-left {
        position: absolute;
    }

    .header-right {
        display: none;
    }
}

@media screen and (min-width:1025px) {
    .header-sp {
        display: none;
    }
}

.hamberger {
    position: absolute;
    display: none;
    background-color: #C7020B;
    margin-left: -10vw;
    width: 110vw;
    height: 100vh;
    margin-top: -45px;
}

.hamberger-nav {
    text-align: center;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.hamberger-nav-item{
    font-size: 20px;
    margin-top: 30px;
}

.scroll_prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/*===========================
top
===========================*/

.top {
    position: relative;
    background-image: url(img/fv-pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.top-title {
    padding: 100px 0 150px;
    color: #fff;
    position: relative;
}

.fv {
    position: absolute;
    right: -10vw;
    bottom: 0;
    width: 60%;
}

.catchcopy-main {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, .4);
    position: relative;
    z-index: 1;
}

.catchcopy-main span {
    position: absolute;
    transform: rotate(90deg);
    font-size: 30px;
    left: -20px;
    bottom: 30px;
}

.catchcopy-sub {
    width: 64%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.catchcopy-english {
    font-size: 100px;
    color: #F8B521;
    position: absolute;
    line-height: 1.2;
    font-weight: 700;
    right: -10vw;
    bottom: 0;
    text-align: right;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px) {
    .top {
        background-image: url(img/fv-sp.jpg);
        overflow: hidden;
    }
    
    .top-title {
        padding: 130px 0 230px;
    }
    
    .fv {
        right: -60px;
        width: 90%;
    }
    
    .catchcopy-main {
        font-size: 45px;
        margin-bottom: 15px;
    }
    
    .catchcopy-main span {
        font-size: 14px;
        left: -10px;
        bottom: 15px;
    }
    
    .catchcopy-sub {
        width: 100%;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .catchcopy-english {
        font-size: 60px;
        right: -20px;
        bottom: -5px;
    }
}


/*===========================
we-are
===========================*/

.we-are {
    position: relative;
}

.we-are-item {
    padding: 100px 0;
}

.we-are-left {
    width: 45%;
    float: left;
}

.we-are-left p{
    font-size: 40px;
    margin-bottom: 30px;
}

.we-are-right {
    width: 45%;
    float: right;
}

.we-are img {
    box-shadow: 3px 3px 20px rgba(0, 0, 0, .16);
    margin-bottom: 30px;
}

.gray-bg {
    position: absolute;
    background-color: #F4F4F4;
    width: 320px;
    height: 480px;
    right: 0;
    bottom: 0;
    z-index: -10;
}

.text-box {
    font-size: 16px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){

    .we-are-left {
        width: 100%;
        float: none;
    }

    .we-are-right {
        width: 100%;
        float: none;
    }
    
    .we-are-item {
        padding: 50px 0;
    }
    
    .we-are-left p{
        font-size: 30px;
        margin-bottom: 20px;
    }

    .we-are img {
        margin-bottom: 20px;
    }
    
    .gray-bg {
        width: 100%;
        height: 620px;
    }

    .text-box {
        font-size: 14px;
    }
}


/*===========================
our-business
===========================*/

.our-business {
    position: relative;
    background-image: url(img/our-bisiness.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.our-business-item {
    background-color: rgba(0, 0, 0, .5);
    padding: 20px 0;
}

.our-business p {
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
    color: seashell;
}

.our-business img {
    position: relative;
    z-index: 1;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .our-business {
        background-image: url(img/our-bisiness.jpg);
        background-position: center;
        background-size: cover;
    }
    
    .our-business-item {
        background-color: rgba(0, 0, 0, .5);
        padding: 50px 0;
    }
    
    .our-business p {
        font-size: 30px;
    }
}

/*===========================
about
===========================*/

.about {
    padding: 100px 0;
}

.about-box {
    display: flex;
    justify-content: space-between;
}

.about-item {
    margin-right: 30px;
}

.about-content {
    width: calc((100% - 60px) / 3);
}

.about-item-topix {
    padding: 33px 20px;
    border: solid;
    border-color: black;
}

.english-name {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.about-pic {
    margin-right: 30px;
}

.about-profile {
    background-color: #F1F1F1;
    padding: 33px 20px;
}

.about-profile li {
    font-size: 14px;
}

.c-btn {
    font-size: 16px;
    color: #F4F4F4;
    padding: 10px;
    width: 200px;
    background-color: #C7020B;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .about {
        padding: 50px 0;
    }
    
    .about-box {
        display: block;
    }
    
    .about-item {
        margin-right: 0;
    }

    .about-content {
        width: 100%;
    }
    
    .about-item-topix {
        padding: 33px 20px;
        margin-top: 20px;
    }
    
    .english-name {
        font-size: 30px;
    }
    
    .about-pic {
        margin-right: 0;
        margin-top: 20px;
    }
    
    .about-profile {
        padding: 33px 20px;
        margin-top: 20px;
    }

    .about-profile ul {
        margin-top: 10px;
    }
    
    .c-btn {
        margin: 30px auto 0;
    }
}

/*===========================
training-support
===========================*/

.training-support {
    background-image: url(img/cta.jpg);
    background-size: cover;
    padding: 100px 0;
    text-align: center;
}

.training-item-english {
    font-size: 50px;
    font-weight: bold;
    color: #F4F4F4;
    line-height: 1.1;
}

.training-item-message {
    font-size: 16px;
    color: #F4F4F4;
    margin-top: 20px;
}

.trainig-cta {
    font-size: 18px;
    color: #F4F4F4;
    padding: 21px 40px;
    width: 360px;
    background-color: #C7020B;
    border-radius: 5px;
    text-align: center;
    margin: 40px auto;
}

.trainig-cta-item {
    font-size: 14px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .training-support {
        background-position: center;
    }
    
    .training-item-english {
        font-size: 30px;
    }
    
    .training-item-message {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .trainig-cta {
        padding: 21px 40px;
    }
    
    .trainig-cta-item {
        font-size: 14px;
    }
}


/*===========================
news
===========================*/

.news {
    background-color: #F1F1F1;
    padding: 100px 0;
}

.news-category {
    background-color: #C7020B;
    width: 78px;
    font-size: 12px;
    color: #F4F4F4;
    text-align: center;
    display: inline-block;
}

.news-date {
    display: inline-block;
    vertical-align: middle;
}

.news-title {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.news-box {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-box-item {
    background-color: #fff;
    margin-top: 30px;
    width: 32%;
}

.news-box-item img {
    display: block;
}

.news-item {
    padding: 20px;
}

.news-more {
    font-size: 18px;
    color: #F4F4F4;
    padding: 15px 40px;
    width: 250px;
    background-color: #C7020B;
    border-radius: 5px;
    text-align: center;
    margin: 40px auto;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .news {
        padding: 50px 0;
    }
    
    .news-category {
        width: 60px;
        font-size: 10px;
    }

    .news-date {
        font-size: 12px;
        vertical-align: bottom;
    }
    
    .news-title {
        font-size: 30px;
    }
    
    .news-box {
        margin-top: 0;
    }
    
    .news-box-item {
        width: 48%;
    }
    
    .news-item {
        padding: 12px;
    }

    .news-article-title {
        font-size: 14px;
        margin-top: 5px;
    }
}

/*===========================
creed
===========================*/

.creed {
    background-image: url(img/creed.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.creed-box {
    background-color: rgba(0, 0, 0, .5);
}

.creed-item {
    padding: 150px 0;
}

.creed-title {
    font-size: 50px;
    font-weight: 600;
    color: #EDA644;
    line-height: 1.1;
    text-align: center;
}

.creed-sub {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    color: #F4F4F4;
    margin-top: 20px;
}

.creed-text-first {
    text-align: center;
    color: #F4F4F4;
    margin-top: 20px;
}

.creed-text-second {
    text-align: center;
    color: #F4F4F4;
    margin-top: 20px;
}

.creed-text-third {
    text-align: center;
    color: #F4F4F4;
    margin-top: 20px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .creed {
        background-image: url(img/creed-sp.jpg);
    }
    
    .creed-item {
        padding: 100px 0;
    }
    
    .creed-title {
        font-size: 30px;
    }
    
    .creed-sub {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .creed-text-first {
        margin-top: 20px;
        font-size: 14px;
    }
    
    .creed-text-second {
        margin-top: 15px;
        font-size: 14px;
    }
    
    .creed-text-third {
        margin-top: 15px;
        font-size: 14px;
    }
}

/*===========================
contact
===========================*/

.contact {
    position: relative;
    padding: 100px 0;
}

.contact-item {
    font-size: 50px;
    font-weight: 600;
}

.contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-form {
    width: 45%;
}

.contact-pic {
    width: 45%;
}

.contact-orange-box {
    background-color: orange;
    width: 40%;
    height: calc(100% + 100px);
    right: 0;
    position: absolute;
    z-index: -1;
    top: -5px;
}

.form {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

    .form-item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}
    
    .form-item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}

    .form-item-input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 16px;
 }

    .form-item-textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 16px;
}

    .form-btn {
    border-radius: 5px;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #C7020B;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}


/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){

    .contact {
        position: relative;
        padding: 50px 0;
    }
    
    .contact-item {
        font-size: 30px;
    }
    
    .contact-box {
        display: block;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .contact-pic {
        width: 100%;
    }

    .Form {
        margin-top: 40px;
    }

    .form-item {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }

    .form-item-input {
        margin-left: 0;
        margin-top: 18px;
        height: 40px;
        flex: inherit;
        font-size: 15px;
    }

    .form-item-textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }

    .form-item-textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }

    .form-btn {
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
        margin: 0 auto 30px;
    }

}

/*===========================
sns
===========================*/

.sns {
    background-color: #F1F1F1;
    padding: 100px 0;
}

.sns-box {
    display: flex;
    justify-content: space-between;
}

.sns-box-item {
    background-color: #fff;
    width: 30%;
}

.youtube-item {
    padding: 20px;
}

.youtube-title {
    font-size: 18px;
    color: #F4F4F4;
    padding: 15px 20px;
    width: 100%;
    background-color: #C7020B;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .sns {
        padding: 50px 0;
    }
    
    .sns-box {
        display: block;
    }
    
    .sns-box-item {
        width: 100%;
        height: 350px;
        margin-bottom: 20px;
    }
    
    .youtube-item {
        padding: 20px;
    }
    
    .youtube-title {
        font-size: 18px;
        color: #F4F4F4;
        padding: 15px 20px;
        width: 100%;
        background-color: #C7020B;
        border-radius: 5px;
        text-align: center;
        margin-top: 20px;
    }
}

/*===========================
footer
===========================*/

footer {
    background-image: url(img/footer-pc.jpg);
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.fotter-sub {
    background-color: black;
    color: #fff;
    padding: 20px 0;
}

.fotter-left {
    float: left;
}

.fotter-left p {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.fotter-left li {
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}

.fotter-right {
    float: right;
    width: 40%;
}

.fotter-nav-item {
    float: left;
    margin-right: 40px;
}

.fotter-nav-item a {
    font-weight: 600;
    color: #F4F4F4;
}

.copyright {
    font-size: 12px;
    color: #F4F4F4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){

    footer {
        background-image: url(img/footer-sp.jpg);
        background-size: contain;
        padding: 100px 0 120px;
    }
    
    .copyright {
        width: 80%;
    }
}

/*===========================
profileページ
===========================*/

.profile-top {
    background-image: url(img/profile-background.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

.profile-fv {
    width: 425px;
    margin: 0 auto;
    display: block;
    padding-top: 100px;
}

.profile-name {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.profile-gray-bg {
    position: absolute;
    background-color: #F4F4F4;
    width: 320px;
    height: 480px;
    right: 0;
    bottom: 0;
    z-index: -10;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .profile-top {
        background-position: center;
        background-size: cover;
        height: 200px;
        margin-bottom: 200px;
    }
    
    .profile-fv {
        width: 295px;
        display: block;
        padding-top: 50px;
    }
    
    .profile-name {
        font-size: 40px;
    }
}

/*===========================
i-am
===========================*/

.i-am {
    position: relative;
}

.i-am-item {
    padding: 100px 0;
}

.i-am-left {
    width: 45%;
    float: left;
}

.i-am-left p{
    margin-bottom: 30px;
}

.i-am-right {
    width: 45%;
    float: right;
}

.i-am-right p{
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: bold;
}

.i-am img {
    box-shadow: 3px 3px 20px rgba(0, 0, 0, .16);
    margin-bottom: 30px;
}

.profile-gray-bg {
    position: absolute;
    background-color: #F4F4F4;
    width: 100%;
    height: 400px;
    right: 0;
    bottom: 0;
    z-index: -10;
}

.text-box {
    font-size: 16px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .i-am {
        position: relative;
    }
    
    .i-am-item {
        padding: 50px 0;
    }
    
    .i-am-left {
        width: 100%;
        float: none;
    }
    
    .i-am-left p{
        margin-bottom: 30px;
    }
    
    .i-am-right {
        width: 100%;
        float: none;
    }
    
    .i-am-right p{
        font-size: 30px;
    }
    
    .i-am img {
        margin-bottom: 20px;
    }
}

/*===========================
current-profession
===========================*/

.current-profession {
    display: flex;
    justify-content: space-between;
    background-repeat: no-repeat;
    align-items: center;
    padding: 100px 0;
    flex-direction: row-reverse;
}

.current-profession + .current-profession {
    padding-top: 0;
}

.noreverse {
    flex-direction: row;
}

.current-profession-right {
    padding-left: 40px;
    width: 50%;
}

.current-profession-right p {
    font-size: 80px;
    line-height: 1.1;
}

.noreverse .current-profession-right p {
    text-align: right;
    padding-right: 45px;
}

.current-profession-left {
    position: relative;
    text-align: right;
    width: 50%;
    padding-right: 45px;
}

.noreverse .current-profession-left {
    text-align: left;
    padding-left: 45px;
    padding-right: 0;
}

.current-profession-left::before {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    content: "";
    border-left: 1px dashed #888;
    z-index: -2;
}

.noreverse .current-profession-left::before {
    right: initial;
    left: 0;
}

.history {
    position: relative;
}

.history::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #fff;
    border: 8px solid #000;
    box-sizing: border-box;
    right: -55px;
}

.noreverse .history::after {
    left: -55px;
}

.profession {
    font-weight: bold;
    padding-bottom: 25px;
}

.profession:last-child {
    position: relative;
}

.profession:last-child::after {
    position: absolute;
    content: "";
    height: calc(100% + 6px);
    width: 2px;
    background-color: #fff;
    top: -6px;
    right: -46px;
    z-index: -1;
}

.noreverse .profession:last-child::after {
    left: -46px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .current-profession {
        display: block;
        padding: 50px 0;
        flex-direction: row-reverse;
    }

    .current-profession-right {
        padding-left: 0;
        width: 100%;
    }
    
    .current-profession-right p {
        font-size: 50px;
    }
    
    .noreverse .current-profession-right p {
        padding-right: 0;
    }
    
    .current-profession-left {
        margin-top: 25px;
        width: 95%;
    }
    
    .noreverse .current-profession-left {
        margin-left: 15px;
    }

}

/*===========================
certifications
===========================*/

.certifications {
    padding: 100px 0;
}

.certifications-title {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.certifications-box {
    margin-top: 50px;
}

.certifications-item {
    position: relative;
    padding: 30px;
    height: 400px;
}

.certifications-box-item {
    position: relative;
    margin: 0 20px;
    width: 340px;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, .16);
}

.slick-track {
    padding: 20px 0;
}

.prev-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25vw;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 23px 40px 23px 0;
    border-color: transparent #EDA644 transparent transparent;
    z-index: 5;
    cursor: pointer;
}

.next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25vw;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 23px 0 23px 40px;
    border-color: transparent transparent transparent #EDA644;
    z-index: 5;
    cursor: pointer;
}

.certifications-box-item img {
    object-fit: contain;
    height: 210px;
    padding-top: 30px;
}

.certifications-item-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.certifications-item-link{
    display: block;
    width: calc(100% - 60px);
    position: absolute;
    bottom: 30px;
    margin-top: 20px;
    color: blue;
    font-weight: bold;
    text-decoration: underline;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){

    .certifications {
        padding: 50px 0;
    }
    
    .certifications-title {
        font-size: 30px;
    }
    
    .certifications-box {
        margin-top: 20px;
    }
    
    .certifications-item {
        padding: 20px;
        height: 350px;
    }
    
    .prev-arrow {
        left: -20px;
    }
    
    .next-arrow {
        right: -20px;
    }
    
    .certifications-box-item img {
        object-fit: contain;
        height: 210px;
        padding-top: 30px;
    }
    
    .certifications-item-title {
        font-size: 18px;
    }
    
}


/*===========================
education
===========================*/

.education {
    background-color: #F1F1F1;
    padding: 100px 0;
}

.education-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
}

.education-box {
    display: flex;
    margin-top: 65px;
}

.education-box-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.education-box-item.noreverse {
    flex-direction: column;
}

.education-box-img {
    width: 100%;       
}

.education-box-img img {
    display: block;
    height: 190px;
    object-fit: cover;
}

.dokkyo {
    padding: 25px;
    background-color: #212227;
    color: #fff;
    height: 190px;
    width: 100%;
}

.toledo {
    padding: 25px;
    background-color: #FFD200;
    color: #124080;
    height: 190px;
    width: 100%;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    
    .dokkyo {
        padding: 25px;
        background-color: #212227;
        color: #fff;
        height: 190px;
    }
    
    .toledo {
        padding: 25px;
        background-color: #FFD200;
        color: #124080;
        height: 190px;
    }

    .education {
        padding: 50px 0;
    }
    
    .education-title {
        font-size: 30px;
    }
    
    .education-box {
        display: block;
        margin-top: 20px;
        width: 70%;
    }
    
    .education-box-item {
        flex-direction: column;
    }
}

/*===========================
publications
===========================*/

.publications {
    padding: 100px 0;
    position: relative;
}

.publications-orange-box {
    background-color: orange;
    width: 55%;
    height: calc(100% + 100px);
    position: absolute;
    z-index: -1;
    top: -100px;
}

.publications-box-item-title {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}

.publications-box-item {
    padding: 200px 80px;
    border: 4px solid #fff;
}

.publications-box-item-title {
    position: relative;
    padding-bottom: 12px;
    font-weight: bold;
    color: #fff;
}

.publications-box-item-title::after {
    content: "";
    position: absolute;
    height: 8px;
    width: 250px;
    background-color: #fff;
    right: 0;
    bottom: 0;
}

.publications-box-item span {
    display: block;
    font-weight: bold;
    text-align: right;
    color: #fff;
    margin-top: 16px;
}

.sports-training {
    margin-bottom: 10px;
}

.training-item {
    margin-left: 20px;
}

.training-item-detail {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 10px;
}

.publiscations-box {
    display: flex;
    justify-content: space-between;
    width: 70%;
    align-items: center;
}

.sports-training {
    display: flex;
    justify-content: space-between;
}

.sports-training-img {
    width: 110px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width:767px){
    .publications {
        padding: 50px 0;
        position: relative;
    }
    
    .publications-orange-box {
        background: none;
    }

    .publications-box-orange {
        background-color: orange;
        width: 100vw;
        margin-left: -10vw;
        padding: 60px 20px;
    }
    
    .publications-box-item-title {
        font-size: 30px;
    }
    
    .publications-box-item {
        padding: 50px 60px;
        text-align: center;
    }
    
    .publications-box-item-title::after {
        height: 4px;
        width: 150px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .publications-box-item span {
        text-align: center;
    }

    .book {
        margin-top: 50px;
    }

    .sports-training {
        margin-bottom: 20px;
    }
    
    .training-item {
        margin-left: 15px;
    }
    
    .training-item-detail {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .training-detail-tx {
        font-size: 14px;
    }
    
    .publiscations-box {
        display: block;
        width: 80%;
    }
    
    .sports-training {
        display: flex;
        justify-content: space-between;
    }
    
    .sports-training-img {
        width: 110px;
    }
}


/*===========================
news-detail
===========================*/

.news-container {
    width: 60vw;
    margin: auto;
}

.news-container .news-article-title {
    display: block;
    font-size: 30px;
    margin-top: 30px;
}

.news-container h3 {
    display: block;
    font-size: 20px;
    margin-top: 20px;
}

.news-container p{
    margin-top: 20px;
}

.news-container .news-date {
    margin-left: 20px;
}

/* pc sp
------------------------------------------ */
.pc {
    display: block;
}

.pcInline {
    display: inline-block;
}

.spInline,
.sp {
    display: none;
}

@media screen and (max-width: 767px) {

    .pcInline,
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .spInline {
        display: inline-block;
    }
}