@charset "UTF-8";

/* @font-face {
    font-family: 'Nicoca';
    src: url('../fonts/nicoca_v2-5.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.nicoca {
    font-family: 'Nicoca', sans-serif;
} */

html {
    font-size: 62.5%;
}

body {
    color: #3C4856;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: justify;
    margin: 0 auto;
    text-align: left;
    word-break: break-word;
    letter-spacing: 0;
    font-weight: 500;
}

.en {
    font-family: "Montserrat", serif;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #2B86C9;
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.pattern {
    position: absolute;
    width: 200%; /* Increased size to cover full screen */
    height: 200%;
    background: radial-gradient(circle, #61AAD0, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px); /* Slightly larger blur */
    animation: movePattern var(--duration) ease-in-out infinite;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(-30px, 40px);
    }
    75% {
        transform: translate(40px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@media screen and (min-width:768px) and ( max-width:1120px) {
    body {
        min-width: 1120px;
    }
}

p {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.02em;
}

span {
    display: inline-block;
}

img {
    display: inline-block;
    width: 100%;
}

a {
    display: inline-block;
    cursor: pointer;
}

.hover_opa {
    transition: all 0.5s;
}
.hover_opa:hover {
    opacity: 0.6;
    transition: all 0.5s;
}

.sp_br {
    display: none;
}

section {
    position: relative;
    background-color: #FFF;
}

.wrapper {
    width: 90%;
    max-width: 1140px;
    margin: auto;
    position: relative;
}

.btn {
    position: relative;
    transition: all 0.5s;
}

.btn,
.btn::before,
.btn::after,
.btn:hover,
.btn:hover::before,
.btn:hover::after {
    transition: all 0.5s;
}

/**********************************************************
    
    header 

 **********************************************************/

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    transition: all 0.5s;
}

.header_wrapper {
    width: calc(100% - 76px);
    max-width: 1350px;
    margin: auto;
    padding: 15px 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;

}

.logo img {
    width: 71px;
    transition: all 0.5s;
}

.logo span {
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-left: 20px;
}

.logo:hover {
    opacity: 0.7;
}

.header_nav > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header_nav_list:last-child {
    margin-left: 8px;
}

.header_nav_link,
.header_nav_list > a {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.5s;
    position: relative;
}

.header_nav_link::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 0;
    height: 1px;
    background-color: #FFF;
    transition: 0.5s all;
}

.header_nav_link:hover::before {
    width: 100%;
}

.dropdown_nav:hover::before {
    width: 0;
}

.btn_point.dropdown_nav:hover::before {
    width: 29px;
}

.header_nav_list {
    position: relative;
    display: inline-block;
}

.dropdown_nav {
    display: inline-block;
    cursor: default;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    padding-top: 60px;
}

.dropdown01,
.dropdown03 {
    width: 230px;
    left: -75px;
}

.dropdown02 {
    width: 202px;
    left: -45px;
}

.dropdown03 {
    left: -20px;
    padding-top: 37px;
}

.dropdown_menu {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown_menu li {
    margin-bottom: 15px;
}

.dropdown_menu li:last-child {
    margin-bottom: 0;
}

.dropdown_menu li a {
    color: #3C4856;
    font-size: 1.4rem;
    line-height: 1.5;
    position: relative;
    padding-left: 10px;
}

.dropdown_menu li a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    background-color: #FD4636;
    border-radius: 50%;
}

.dropdown_menu li a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 0;
    height: 1px;
    background-color: #3C4856;
    transition: 0.5s all;
}

.dropdown_menu li a:hover::after {
    width: 100%;
}

/* 親要素をホバーしたら表示 */
.header_nav_list:hover .dropdown {
    display: block;
}

.header_nav_list .btn {
    width: 190px;
    height: 61px;
    border-radius: 50px;
    padding-right: 62px;
    color: #3C4856;
    background-color: #FFF;
    border: 1px solid #3C4856;
}

.btn,
.btn a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_point::before {
    position: absolute;
    content: "";
    top: 0;
    right: 48px;
    bottom: 0;
    margin: auto;
    width: 29px;
    height: 2px;
    background-color: #3C4856;
}

.btn_point::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 31px;
    margin: auto;
    width: 8px;
    height: 8px;
    background-color: #FD4636;
    border-radius: 50%;
}

.entry_btn:hover {
    color: #FFF;
    background-color: #3C4856;
}

.entry_btn.btn_point:hover::before {
    background-color: #FFF;
}

.hamburger_menu {
    display: none;
}

.scroll_header {
    transition: all 0.5s;
    background-color: #FFF;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.16);
}

.logo_blue {
    display: none;
}

.logo_white {
    display: block;
}

.scroll_header .logo_blue {
    display: block;
}

.scroll_header .logo_white {
    display: none;
}

.scroll_header .logo span,
.scroll_header .header_nav_link {
    color: #3C4856;
    transition: all 0.5s;
}

.scroll_header .header_nav_link::before {
    background-color: #3C4856;
}

/**********************************************************
    
    採用サイト

**********************************************************/

.fv {
    height: 49.16vw;
    min-height: 708px;
    padding: 0;
    background-color: initial;
    position: relative;
    overflow: hidden;
}

.top_page .fv_title {
    color: #FFF;
    position: absolute;
    left: 35px;
    bottom: 45px;
}

.top_page .fv_title span {
    display: block;
}

.fv_maintitle {
    font-size: 3.7rem;
    line-height: 1.5;
    font-weight: bold;
}

.fv_subtitle {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 300;
}

.fv_circle {
    width: 40vw;
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    margin: auto;
}

.fv_circle img {
    animation: 20s linear infinite rotation;
}

.fv_slider {
    width: 100%;
    position: absolute;
    top: 65px;
    /* margin-left: -50px; */
}

.fv_slide {
    transition: all 0.5s ease-in-out;
}


.fv_slider .slick-current {
    transition: all 0.5s ease-in-out;
    transform: rotate(-5deg);
}


@media screen and (min-width: 769px) {
.fv_slider {
    height: 510px;
}

.fv_slider .slick-track {
    height: 500px;
}

.fv_slider .slick-list {
    width: calc(100% + 4vw);
    transform: translateX(-4vw);
}

.fv_slide {
    width: 15.97vw!important;
    height: initial;
    margin: 75px 2.083vw 170px 2.083vw;
}

.fv_slider .slick-current {
    width: 26.52vw!important;
    margin: 40px 5.555vw 0 4.166vw;
}
}

.fv_bg01,
.fv_bg02,
.fv_bg03,
.fv_bg04,
.fv_bg05,
.fv_bg06 {
    position: absolute;
    z-index: -1;
}

.fv_bg01 {
    width: 139px;
    top: -50px;
    left: 300px;
}

.fv_bg02 {
    width: 212px;
    top: 300px;
    left: 50px;
}

.fv_bg03 {
    width: 262px;
    bottom: -80px;
    right: 335px;
}

.fv_bg04 {
    width: 212px;
    top: -125px;
    right: 216px;
}

.fv_bg05 {
    width: 223px;
    top: 105px;
    right: -60px;
}

.fv_bg06 {
    width: 95px;
    bottom: 130px;
    right: 50px;
}

.fv_high_school {
    position: absolute;
    width: 315px;
    right: 10px;
    bottom: 10px;
}

/* .fv_slider .slick-center img {
    transform: scale(1.4);
} */

.top_page .recruit_first {
    background-color: #3C4856;
}

.top_about {
    padding-top: 160px;
}

.top_about::before {
    position: absolute;
    content: "";
    right: 15px;
    bottom: 50px;
    margin: auto;
    width: 425px;
    height: 136px;
    background-image: url(../img/top_about_bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-10deg);
}

.top_about_box {
    align-items: stretch;
}

.top_about_txt {
    width: 50%;
    color: #FFF;
}

.top_about_txt p {
    font-size: 2rem;
    letter-spacing: 0;
}

.top_about_btn {
    margin: 80px 0;
}

.top_about_btn a {
    width: 320px;
    height: 80px;
    color: #3C4856;
    background-color: #FFF;
    justify-content: initial;
    padding-left: 40px;
}

.top_about_btn a p {
    font-size: 1.5rem;
}

.top_about_img {
    width: 44%;
    position: relative;
}

.top_about_img01,
.top_about_img02,
.top_about_img03 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.top_about_img01 {
    top: 0;
    transform: rotate(-5deg);
    text-align: center;
}
.top_about_img02 {
    top: 175px;
    transform: rotate(5deg);
    text-align: right;
}
.top_about_img03 {
    top: 400px;
    transform: rotate(-5deg);
}

.top_about_img img {
    width: 70%;
}

.top_page .heading_subtitle {
    font-size: 11rem;
}

.top_job {
    padding-bottom: 170px;
}

.top_job .wrapper {
    position: relative;
}

.top_job .top_about_btn {
    position: absolute;
    right: 0;
    top: 0;
}

.top_job .job_p {
    font-size: 1.8rem;
}

.top_job_lists {
    gap: 20px;
    margin-top: 60px;
}

.top_job_lists_item {
    width: calc((100% - 60px) / 4);
    text-align: center;
}

.top_job_lists_item a {
    width: 100%;
    padding: 60px 0 35px 0;
    border: 1px solid #3C4856;
    border-radius: 6px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    transition: all 0.5s;
}

.top_job_lists_icon {
    width: 94px;
    margin: auto;
    transition: all 0.5s;
}

.top_job_lists_subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 25px;
}

.top_job_lists_title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #FD4636;
}


.top_job_lists_item a:hover {
    background-color: #3C4856;
    color: #FFF;
    transition: all 0.5s;
}

.top_job_lists_item a:hover .top_job_lists_subtitle {
    color: #FFF;
    transition: all 0.5s;
}

.top_job_lists_item a:hover .top_job_lists_icon {
    filter: invert();
    transition: all 0.5s;
}

.top_member {
    background-color: #F0FAFF;
    padding-bottom: 0;
}

.member_slider {
    margin-top: 60px;
}

/* .member_slider .slick-track {
    transform: translateX(50px) !important;
} */

.member_slide {
    margin: 0 15px;
}

.member_slide a {
    width: 100%;
}

.member_slide a:hover {
    opacity: 0.6;
}

.member_slider .slick-slide:nth-child(odd) {
    margin-top: 45px;
}

.member_slide_thumb {
    position: relative;
}

.member_slide_thumb img {
    width: 100%;
    height: 17vw;
    max-height: 266px;
    object-fit: cover;
    border-radius: 5px;
}

.member_slide_introduce {
    padding: 8px 18px;
    position: absolute;
    background-color: #F0FAFF;
    bottom: 0;
    right: 0;
}

.member_slide_position {
    font-size: 1.2rem;
    color: #99A9B0;
    margin-bottom: 5px;
}

.member_slide_name {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
}

.member_slide_title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 10px;
}

.member_slider_btn {
    position: absolute;
    top: 160px;
    right: 150px;
    display: flex;
    gap: 20px;
}

.member_slider_prev,
.member_slider_next {
    width: 67px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    border: 1px solid #3C4856;
    border-radius: 50px;
    transition: all 0.5s;
}

.member_slider_prev:hover,
.member_slider_next:hover {
    background-color: #3C4856;
    color: #FFF;
    transition: all 0.5s;
}

.top_member .top_about_btn {
    justify-content: center;
}

.athena_industry_title_loop img {
    margin-right: 20px;
}

.top_environment h2 {
    margin-bottom: 50px;
}

.top_environment_box {
    align-items: initial;
}

.top_environment_txt {
    width: 50%;
    padding-top: 20px;
}

.top_environment_img {
    width: 33%;
    position: relative;
}

.top_environment_img::before {
    position: absolute;
    content: "";
    top: -50px;
    left: -125px;
    margin: auto;
    width: 171px;
    height: 171px;
    background-image: url(../img/fv_bg04.webp);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(20deg);
}

.top_borderline {
    width: 100%;
    height: 235px;
    background-image: linear-gradient(360deg, rgba(60, 72, 86, 1), rgba(255, 255, 255, 1));
}

.top_inside_athena {
    color: #FFF;
    background-color: #3C4856;
}

.top_inside_athena .heading_subtitle {
    color: #54BAC2;
}

.top_inside_athena p {
    font-size: 1.8rem;
    letter-spacing: 0;
}

.top_inside_athena_box {
    align-items: center;
    margin-top: 80px;
}

.top_inside_athena_box ul {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.top_inside_athena_txt {
    width: 426px;
}

.top_inside_athena_lists {
    font-size: 2rem;
    line-height: 2;
}

/* .top_inside_athena_lists_first {
    position: relative;
    padding-left: 24px;
} */

.top_inside_athena_lists a {
    position: relative;
    padding-left: 24px;
    display: block;
}

.top_inside_athena_lists a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background-color: #FD4636;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s;
}

.top_inside_athena_lists a:hover::before {
    opacity: 1;
    transition: all 0.5s;
}

.top_inside_athena_lists a::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 179px;
    height: 1px;
    background-color: #FFF;
    opacity: 0;
    transition: all 0.5s;
}


.top_inside_athena_lists a:hover::after {
    opacity: 1;
    transition: all 0.5s;
}

.top_inside_athena_img {
    width: 50%;
    position: relative;
}

.top_inside_athena_img_circle {
    width: 202px;
    position: absolute;
    right: 0;
    bottom: -70px;
    animation: 20s linear infinite rotation;
}

@keyframes rotation {
    0%{ transform:rotate(0);}
    100%{ transform:rotate(360deg); }
}

.top_inside_athena_img > img {
    padding-right: 120px;
}

.top_inside_athena_img .top_inside_athenamain_image {
    display: block;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.top_entry {
    background-color: initial;
}

.top_entry .heading_subtitle {
    color: #FFF;
}

.top_about .top_about_btn a {
    border: 1px solid #FFF;
}

.top_entry .top_about_btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 40px 0 0 0;
}

.top_blog {
    padding-bottom: 80px;
}

.top_blog .top_about_btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 40px 0 0 0;
}

.top_blog .environment_ojt_slide {
    margin: 120px 0 0 0;
}

.top_job .heading_subtitle,
.top_member .heading_subtitle,
.top_environment .heading_subtitle,
.top_blog .heading_subtitle,
.txt_gradetion {
    background: linear-gradient(90deg, #3C4856 0%, #326D81 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top_inside_athena .heading_subtitle {
    background: linear-gradient(90deg, #54BAC2 0%, #BEFCFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}































/**********************************************************
    
    下層ページ

**********************************************************/

.kasou_page .fv {
    height: 520px;
    min-height: initial;
    padding: 0;
    background-color: initial;
}

.kasou_page .fv .fv_title {
    color: #FFF;
    padding-top: 250px;
}

.kasou_page .fv span {
    font-size: 11rem;
    font-weight: bold;
    line-height: 1.22;
    text-shadow:1px 1px 0 #3498E2, -1px -1px 0 #3498E2,
    -1px 1px 0 #3498E2, 1px -1px 0 #3498E2,
    0px 1px 0 #3498E2,  0-1px 0 #3498E2,
    -1px 0 0 #3498E2, 1px 0 0 #3498E2;
}

.kasou_page .fv h1 {
    font-size: 20px;
    font-weight: bold;
    padding-left: 26px;
    position: relative;
    text-shadow:1px 1px 0 #3498E2, -1px -1px 0 #3498E2,
    -1px 1px 0 #3498E2, 1px -1px 0 #3498E2,
    0px 1px 0 #3498E2,  0-1px 0 #3498E2,
    -1px 0 0 #3498E2, 1px 0 0 #3498E2;
}

.kasou_page .fv h1::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-color: #FD4636;
    border-radius: 50%;
}

.recruit_first {
    background-color: #FFF;
    border-radius: 180px 180px 0 0;
}

section {
    padding: 120px 0;
}

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

.fb_box.reverse {
    flex-direction: row-reverse;
}

.about {
    padding-top: 170px;
}

.about h2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 40px;
	letter-spacing: 0.2rem;
	line-height:1.4;
}

.about .fb_box_txt {
    width: 51%;
}

.about .fb_box_img {
    width: 43%;
}

.about .fb_box_img img {
    border-radius: 10px;
}

.about_top_bg01, 
.about_top_bg02 {
    position: absolute;
} 

.about_top_bg01 {
    width: 503px;
    bottom: 50px;
    right: 45px;
}

.about_top_bg02 {
    width: 96px;
    top: 180px;
    right: 570px;
}

.philosophy {
    background-color: #F0FAFF;
    padding: 50px 0 155px 0;
}

.marquee {
    background-color: #3C4856;
    padding: 25px 0;
}

.philosophy_title_loop img {
    margin: 0 25px;
}

.heading_title {
    font-size: 3.2rem;
    color: #FD4636;
    font-weight: bold;
    margin-bottom: 30px;
}

.philosophy_item .heading_title {
    margin: 60px 0 20px 0;
}

.heading_subtitle {
    font-size: 7rem;
    line-height: 1.4;
    font-weight: bold;
}

.philosophy_item .heading_subtitle {
    font-size: 4.8rem;
    margin-bottom: 20px;
}

.corporate_philosophy_h3 {
    font-size: 2rem;
    padding-left: 26px;
    position: relative;
    margin: 38px 0 25px 0;
}

.corporate_philosophy_h3::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-color: #FD4636;
    border-radius: 50%;
}

.philosophy_item p {
    line-height: 1.6;
    font-weight: bold;
}

.recruit_vision_txt {
    width: 170px;
    margin-bottom: 15px;
}

.philosophy_item ul {
    gap: 65px;
}

.philosophy_item ul li {
    padding: 30px;
    border-bottom: 1px dotted #3C4856;
    position: relative;
    cursor: pointer;
	transition: 0.2s;
}

.philosophy_item ul li:hover {
    background-color: #FFF;
}

.philosophy_item ul li::before {
    position: absolute;
    content: "";
    right: 48px;
    bottom: 33px;
    margin: auto;
    width: 40px;
    height: 1px;
    background-color: #3C4856;
}

.philosophy_item ul li::after {
    position: absolute;
    content: "";
    bottom: 31px;
    right: 31px;
    margin: auto;
    width: 8px;
    height: 8px;
    background-color: #FD4636;
    border-radius: 50%;
}

.philosophy_item ul li span {
    font-size: 4.8rem;
    font-weight: bold;
}

.philosophy_item ul li h4 {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: bold;
	color: #127CCA;
	letter-spacing: 0.2rem;
}

.philosophy_item ul li p {
    font-weight: 500;
}

/**********************************************************
    
    仕事を知る

**********************************************************/

.job_p {
    font-size: 2rem;
    line-height: 1.5;
}

.dot_box {
    padding: 34px 54px;
    border: 1px dotted #3C4856;
    border-radius: 10px;
}

.job_lists {
    flex-wrap: wrap;
    margin: 50px 0;
    gap: 30px 40px;
}

.job_lists_item {
    min-height: 231px;
    width: calc((100% - 40px) / 2);
}

.job_lists_item h3 {
    font-size: 2.4rem;
    justify-content: initial;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.job_lists_item h3 img {
    width: 45px;
}

.job_lists_item p {
    font-size: 1.5rem;
    line-height: 1.5;
}

.job_btn_box {
    justify-content: center;
    gap: 40px;
}

.center_btn_box {
    justify-content: center;
    gap: 40px;
}

.interview_btn {
    width: 400px;
    height: 100px;
    justify-content: left;
    border: 1px solid #3C4856;
    border-radius: 50px;
    padding-left: 12px;
    gap: 15px;
}

.normal_btn {
    width: 400px;
    height: 100px;
    border: 1px solid #3C4856;
    border-radius: 50px;
    gap: 15px;
}

.interview_btn::before {
    right: 56px;
}

.interview_btn::after {
    right: 39px;
}

.interview_btn_icon {
    width: 78px;
}

.interview_btn_icon img {
    width: 100%;
    height: 78px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.interview_btn p {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
}

.interview_btn:hover,
.normal_btn:hover {
    background-color: #3C4856;
    color: #FFF;
}

.interview_btn:hover::before,
.normal_btn:hover::before {
    background-color: #FFF;
}

.job_sales,
.job_management {
    background-color: #F0FAFF;
}

.interview_none_btn {
    justify-content: center;
}


/**********************************************************
    
    働く人を知る

**********************************************************/

.article_search {
    justify-content: initial;
    gap: 100px;
}

.article_search_title {
    font-size: 2rem;
    font-weight: bold;
    color: #FD4636;
}

.article_search ul {
    justify-content: initial;
    gap: 8px;
    margin-top: 15px;
}

.article_search ul li a {
    border: 1px solid #3C4856;
    border-radius: 200px;
}

.article_search ul li a:hover {
    color: #FFF;
    background-color: #3C4856;
}

.article_search_category ul li a {
    width: 104px;
    height: 31px;
    font-size: 1.6rem;
    font-weight: 600;
}

.article_search ul li a span {
    position: relative;
}

.article_search ul li a span::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.article_search_category ul li a span {
    padding-left: 14px;
}

.article_search_category ul li a span::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.category_human span::before {
    background-color: #FFE18D;
}
.category_culture span::before {
    background-color: #50C9C3;
}
.category_atena span::before {
    background-color: #DE4D4D;
}
.category_all span::before {
    background-color: #3498E2;
}

.article_search_tag ul li a {
    padding: 0 15px;
    height: 31px;
    font-size: 1.2rem;
    font-weight: 400;
}

.tag span {
    position: relative;
    padding-left: 22px;
}

.tag span::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url(../img/tag_icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.5s;
}

.tag span:hover::before {
    filter: invert();
}

.article_archive {
    flex-wrap: wrap;
    justify-content: initial;
    gap: 75px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.article_archive_list {
    width: calc((100% - 150px) / 3);
}

.article_archive_list a {
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px dotted #3C4856;
}

.article_archive_list a:hover {
    opacity: 0.6;
}

.article_thumb {
    margin-bottom: 20px;
}

.article_thumb img {
    height: 100%;
}

.interview_thumb img {
    border-radius: 10px;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
}

span.article_category {
    margin-bottom: 6px;
}

span.article_category span {
    font-size: 1.2rem;
    font-weight: 600;
    padding-left: 15px;
    position: relative;
}

span.article_category span::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.article_title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 14px;
}

.article_tag {
    justify-content: initial;
    gap: 20px;
}

/**********************************************************
    
    インタビュー

**********************************************************/

.interview_head {
    z-index: 0;
}

.interview_head_box {
    align-items: center;
    gap: 65px;
}

.interview_head_box_img {
    width: 48%;
}

.interview_head_box_img img {
    width: 100%;
    max-height: 362px;
    border-radius: 10px;
    object-fit: cover;
}

.interview_head_box_txt {
    width: 47%;
}

.interview_head_box_txt .tag {
    padding: 8px 16px;
    border: 1px solid #3C4856;
    border-radius: 50px;
}

.interview_head_title {
    font-size: 4.8rem;
    font-weight: bold;
    margin: 25px 0;
}

.interview_head_name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 45px;
}

.interview_head_bg01,
.interview_head_bg02,
.interview_head_bg03 {
    position: absolute;
}

.interview_head_bg01 {
    width: 504px;
    bottom: 110px;
    right: 0;
    z-index: -1;
}

.interview_head_bg02 {
    width: 54px;
    bottom: 10px;
    left: 500px;
    z-index: -1;
}

.interview_head_bg03 {
    width: 54px;
    bottom: 10px;
    right: 350px;
    z-index: -1;
}

.interview_contents {
    padding-top: 0;
    background-color: #F0FAFF;
}

.interview_contents .marquee {
    margin-bottom: 120px;
}

.interview_title_loop img {
    margin: 0 55px;
}

.post_img_txt_box {
    gap: 55px;
    margin: 60px 0;
}

.post_img_txt {
    width: calc(52% - 55px);
}

.post_img_box {
    width: 48%;
}

.interview_imgbox {
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.interview_imgbox img {
    width: 50%;
    max-height: 362px;
    border-radius: 10px;
    object-fit: cover;
}

.interview_contents .post_h3 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 27px;
    margin-top: 60px;
}

.interview_contents p {
    line-height: 2.5;
}

.interview_contents .interview_btn_box {
    margin: auto;
    margin-top: 120px;
    max-width: 860px;
    justify-content: center;
}

.interview_contents .interview_btn_box a:first-child {
    padding-left: 15px;
    padding-right: 0;
    background-color: #FFF;
}

.interview_contents .interview_btn_box a:last-child {
    padding-left: 0;
    padding-right: 0;
    background-color: #FFF;
}

.interview_contents .interview_btn_box a:hover {
    background-color: #3C4856;
    color: #FFF;
}

.btn_point_reverse::before {
    right: initial;
    left: 56px;
}
.btn_point_reverse::after {
    right: initial;
    left: 39px;
}

.pagination {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.page-numbers {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    color: #3C4856;
    border: 1px solid #3C4856;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-numbers.current {
    color: #FFF;
    background-color: #2B86C9;
    border: 1px solid #2B86C9;
}

.page-numbers.prev,
.page-numbers.next {
    display: none;
}

.pagination_single span {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    color: #FFF;
    background-color: #2B86C9;
    border: 1px solid #2B86C9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

/**********************************************************
    
    働く環境

**********************************************************/

.benefits_lists {
    flex-wrap: wrap;
    margin: 50px 0;
    gap: 30px;
}

.benefits_lists_item {
    /* min-height: 231px; */
    width: calc((100% - 60px) / 3);
    border-radius: 10px;
    padding: 35px 30px 20px 30px;
}

.benefits_lists_item h3 {
    font-size: 2rem;
    line-height: 1.5;
    justify-content: initial;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.benefits_lists_item h3 img {
    width: 109px;
}

.benefits_lists_item p {
    font-size: 1.4rem;
    line-height: 1.5;
}

.environment_ojt {
    padding-top: 0;
}

.environment_ojt_slide {
    margin: 50px 0;
    height: 35vw;
}

.environment_ojt_slide > div,
.environment_ojt_slide > div > div {
    height: 35vw;
}

.environment_ojt_slide_item {
    margin: 10px 25px;
}

@media screen and (min-width: 769px) {
.environment_ojt01 {
    width: 23.68vw!important;
}

.environment_ojt02 {
    width: 31.39vw!important;
    margin-top: 195px;
}

.environment_ojt03 {
    width: 23.68vw!important;
}

.environment_ojt04 {
    width: 33.05vw!important;
    margin-top: 55px;
}
}

.environment_ojt01,
.environment_ojt03 {
    animation: updown01 3s infinite;
}
.environment_ojt02,
.environment_ojt04 {
    animation: updown02 3s infinite;
}

@keyframes updown01 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes updown02 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.environment_development_project {
    background-color: #F0FAFF;
}

.development_project_txt {
    position: relative;
    width: 55px;
    height: 51px;
}

.development_project_txt::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 51px;
    height: 51px;
    background-image: url(../img/development_txt.webp);
    background-repeat: no-repeat;
    background-size: contain;
}

.environment_development_project_box {
    margin-top: 60px;
    gap: 105px;
}

.environment_development_project_txt {
    width: calc(57% - 105px);
}

.environment_development_project_txt p {
    font-size: 2rem;
    line-height: 2.2;
}

.environment_development_project_img {
    width: 43%;
    position: relative;
    z-index: 1;
}

.development_project_bg {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 105px;
    margin: auto;
    z-index: -1;
}

@media screen and (max-width: 1350px) {
    .development_project_bg {
        left: 5vw;
    }
}

.environment_development_project_img img:first-child {
    margin-bottom: 40px;
}

/**********************************************************
    
    数字で見るアテナ工業

**********************************************************/

.numbers {
    background-color: #F0FAFF;
}

.numbers_lists {
    flex-wrap: wrap;
    gap: 40px 20px;
}

.numbers_lists_item {
    min-height: 374px;
    padding: 30px 40px 13px 40px;
    background-color: #FFF;
}

.numbers_lists_item_big {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.numbers_lists_item_middle {
    width: calc((100% - 20px) / 2);
}

.numbers_lists_item_small {
    width: calc((100% - 40px) / 3);
}

.numbers_lists_item_left,
.numbers_lists_item_right {
    width: calc((100% - 20px) / 2);
}

.numbers_lists_item_right {
    padding-left: 40px;
}

.numbers_lists_item_box {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.numbers_lists_item h2 {
    color: #127CCA;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.5;
    padding-left: 30px;
    position: relative;
}

.numbers_lists_item h2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background-color: #FD4636;
    border-radius: 50%;
}

.numbers_lists_number_about {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
}

.numbers_lists_number_txt {
    font-size: 10rem;
    font-weight: bold;
    line-height: 1;
}

.numbers_lists_number_txt.digit1 {
    min-width: 7rem;
}
.numbers_lists_number_txt.digit2 {
    min-width: 14rem;
}

.numbers_lists_number_red {
    color: #FD4636;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.5;
}

.numbers_lists_item_left .numbers_lists_number_red {
    font-size: 5rem;
}

.numbers_lists_number {
    margin-top: auto;
}

.numbers_lists_item_img {
    position: absolute;
}

.numbers_special_order_product {
    width: 303px;
    top: 0;
    right: 0;
}

.numbers_products {
    width: 436px;
    top: 53px;
    left: 20px;
}

.numbers_patent {
    width: 327px;
    top: 60px;
    right: 5px;
}

.numbers_trading_companies {
    width: 261px;
    top: 41px;
    right: 16px;
}

.numbers_employee_ratio,
.numbers_male_female_ratio {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.numbers_lists_item_small {
    text-align: center;
    padding: 25px 30px;
}

.numbers_lists_item.numbers_lists_item_small h2 {
    width: 105%;
    font-size: 2.6rem;
    text-align: left;
    padding-left: 24px;
}

.regular_employee {
    text-align: left;
}

.numbers_lists_item_small .numbers_lists_number_txt {
    font-size: 8rem;
}

.numbers_lists_item_small .numbers_lists_number_red {
    font-size: 2.7rem;
}

.numbers_lists_item_small .numbers_lists_number_txt.digit1 {
    min-width: 6rem;
}
.numbers_lists_item_small .numbers_lists_number_txt.digit2 {
    min-width: 10rem;
}
.numbers_lists_item_small .numbers_lists_number_txt.digit3 {
    min-width: 14rem;
}

.numbers_overtime,
.numbers_calender,
.numbers_paid,
.numbers_years {
    position: relative;
    width: 100%;
    margin: auto;
    margin-top: 40px;
}

.numbers_overtime {
    max-width: 261px;
}

.numbers_calender {
    max-width: 169px;
}

.numbers_paid {
    max-width: 202px;
}

.numbers_years {
    max-width: 175px;
    margin-top: 10px;
}


/**********************************************************
    
    周辺地域の魅力

**********************************************************/

.region {
    padding: 60px 0;
}

.region_map {
    position: relative;
    z-index: 1;
}

.seki .region_map::before {
    position: absolute;
    content: "";
    top: -55px;
    right: 50px;
    margin: auto;
    width: 26.52vw;
    width: 382px;
    max-width: 382px;
    height: 18.61vw;
    height: 268px;
    max-height: 268px;
    background-image: url(../img/seki_map.webp);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.sakaimachi .region_map::before {
    position: absolute;
    content: "";
    top: -50px;
    right: 0;
    margin: auto;
    width: 26.52vw;
    width: 382px;
    max-width: 382px;
    height: 18.61vw;
    height: 268px;
    max-height: 268px;
    background-image: url(../img/sakaimachi_map.webp);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.seki .region_h2_span {
    width: 382px;
}

.sakaimachi .region_h2_span {
    width: 824px;
}

.region_link {
    display: flex;
    gap: 20px;
}

.region_link a,
.seki .heading_title span,
.sakaimachi .heading_title span {
    color: #FFF;
    font-size: 2.8rem;
    font-weight: bold;
    padding: 3px 30px;
    border-radius: 60px;
    display: inline-block;
}

.seki .heading_title span,
.sakaimachi .heading_title span {
    margin: 20px 0 40px 0;
}

.region_link a:first-child,
.seki .heading_title span {
    background-color: #41A099;
    border: 1px solid #41A099;
}

.region_link a:first-child:hover {
    background-color: #FFF;
    color: #41A099;
}

.region_link a:last-child,
.sakaimachi .heading_title span {
    background-color: #DE4D4D;
    border: 1px solid #DE4D4D;
}

.region_link a:last-child:hover {
    background-color: #FFF;
    color: #DE4D4D;
}

.seki,
.sakaimachi {
    text-align: center;
    border-top: 1px solid #AAAAAA;
}

.region_company {
    align-items: center;
    margin-top: 60px;
}

.region_company_img {
    width: 56%;
}

.region_company_info {
    width: calc(44% - 40px);
    text-align: left;
}

.seki h3,
.sakaimachi h3 {
    font-size: 3.8rem;
    font-weight: bold;
}

.region_company_name {
    margin-bottom: 40px;
}

.region_company_address {
    font-weight: bold;
    margin-bottom: 30px;
}

.region_company_access {
    font-size: 2.4rem;
    font-weight: bold;
    color: #41A099;
    margin-bottom: 10px;
}

.region_company_access_lists li {
    font-size: 1.6rem;
    line-height: 1.5;
}

.gifu_charm {
    padding-bottom: 0;
}

.gifu_charm_box li h3 {
    font-size: 2.7rem;
    font-weight: bold;
    margin: 20px 0;
}

.seki .marquee,
.sakaimachi .marquee {
    margin-top: 100px;
}

.seki_title_loop img,
.sakaimachi_title_loop img {
    margin-right: 30px;
}

.region_charm {
    padding: 100px 0;
}

.region_charm_lists {
    gap: 40px 15px;
    flex-wrap: wrap;
    margin-top: 70px;
}

.region_charm_lists li {
    width: calc((100% - 30px) / 3);
}

.region_charm_lists h4 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 10px 0 15px 0;
}

.region_charm_lists p {
    letter-spacing: 0;
}

.seki_slide {
    height: 35vw;
}



/* 
.gifu_access,
.gifu_qa {
    background-color: #F0FAFF;
}

.gifu_access img {
    margin-top: 50px;
}

.gifu_merit_lists {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gifu_merit_box {
    gap: 80px;
    align-items: center;
    position: relative;
}

.gifu_merit_img {
    width: 23.5%;
}

.gifu_merit_txt {
    width: calc(76.5% - 80px);
    padding: 30px 50px;
    position: relative;
}

.gifu_merit_txt::before,
.gifu_merit_txt::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
}

.gifu_merit_txt::before {
    top: 0;
    left: 0;
    border-top: 3px solid #FD4636;
    border-left: 3px solid #FD4636;
}

.gifu_merit_txt::after {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #FD4636;
    border-right: 3px solid #FD4636;
}

.gifu_merit_txt h3 {
    font-size: 2rem;
    line-height: 2;
    font-weight: bold;
    margin-bottom: 20px;
} */


.seki .qa_lists,
.sakaimachi .qa_lists {
    margin-top: 85px;
}

.seki .qa_lists li,
.sakaimachi .qa_lists li {
    background-color: #EEEEEE;
    padding: 40px 0;
    border-radius: 10px;
    border-bottom: none;
}

.seki .qa_lists li > div,
.sakaimachi .qa_lists li > div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
	cursor: pointer;
}

.seki .qa_lists li p,
.sakaimachi .qa_lists li p {
    text-align: left;
}


















/**********************************************************
    
    よくある質問

**********************************************************/

.qa .wrapper {
    max-width: 920px;
}

.qa_lists li {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px dotted #3C4856;
}

.qa_list_q,
.qa_list_a {
    justify-content: initial;
    gap: 20px;
}

.qa_list_q {
    margin-bottom: 20px;
}

.qa_list_icon img {
    width: 43px;
}

.qa_list_q .qa_list_txt {
    font-size: 1.8rem;
    font-weight: bold;
}

.qa_list_1 .qa_list_txt {
    font-size: 1.6rem;
    font-weight: 500;
}

/**********************************************************
    
    インターンシップ

**********************************************************/

.internship_info {
    text-align: center;
    padding-bottom: 75px;
}

.internship_info .heading_subtitle {
    font-size: 3.8rem;
}

.internship_info_time {
    font-size: 3rem;
    font-weight: bold;
}

.internship_info_time span {
    font-size: 2rem;
    padding-right: 35px;
    position: relative;
}

.internship_info_time span::before {
    position: absolute;
    content: "";
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    background-image: url(../img/internship_info_time.webp);
    background-repeat: no-repeat;
    background-size: contain;
}

.internship_info .fb_box {
    justify-content: center;
    margin: 40px 0;
}

.internship_info p a {
    text-decoration: underline;
}

.internship_program_details {
    padding-top: 0;
    background-color: #F0FAFF;
}

.internship_program_details .marquee {
    margin-bottom: 110px;
}

.internship_title_loop img {
    margin-right: 20px;
}

.program_details_lists {
    flex-wrap: wrap;
    gap: 20px 70px;
    margin: 50px 0;
}

.program_details_lists_item {
    width: calc((100% - 70px) / 2);
    padding: 33px 35px;
}

.program_details_lists_item h3 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: bold;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.program_details_lists_item h3::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 13px;
    height: 13px;
    background-color: #FD4636;
    border-radius: 50%;
}

.program_details_lists_item p {
    font-size: 1.8rem;
    line-height: 1.4;
}

.program_details_img_lists {
    gap: 35px;
    margin-top: 80px;
}

.program_details_img_lists li {
    width: calc((100% - 70px) / 3);
}

.internship_testimonials .heading_title {
    margin-bottom: 65px;
}

.internship_testimonials_box {
    padding: 60px 0;
    position: relative;
}

.internship_testimonials_box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 597px;
    height: 2px;
    background-color: #127CCA;
}

.internship_testimonials_box:last-child::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 597px;
    height: 2px;
    background-color: #127CCA;
}

.internship_testimonials_box h3 {
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 70px;
}

.internship_testimonials_box h3 span {
    font-size: 3.8rem;
    color: #FD4636;
}

.internship_testimonials_lists {
    max-width: 700px;
    margin: auto;
}

.internship_testimonials_item {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.internship_testimonials_item::before {
    position: absolute;
    content: "";
    top: -28px;
    left: -46px;
    margin: auto;
    width: 72px;
    height: 68px;
    background-image: url(../img/testimonials_icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

/**********************************************************
    
    高卒採用について

**********************************************************/

.high_school {
    text-align: center;
}

.high_school_maintxt {
    /* font-size: 4.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 80px; */
    width: 618px;
    margin:  0 auto 80px auto;
}

.high_school_maintxt span {
    color: #FD4636;
}

.high_school_subtxt {
    font-size: 2rem;
    line-height: 2.3;
}

.high_school_slide {
    margin-top: 100px;
    z-index: 5;
}

.high_school_slide_item {
    margin: 0 25px;
}


@media screen and (min-width: 769px) {
.high_school_slide,
.high_school_slide > div ,
.high_school_slide > div > div  {
    height: 35vw;
}

.high_school_slide01,
.high_school_slide03 {
    width: 23.61vw!important;
}

.high_school_slide02,
.high_school_slide04 {
    width: 31.39vw!important;
}
}

.high_school_slide02 {
    margin-top: 200px;
}

.high_school_slide04 {
    margin-top: 60px;
}

.high_school_bg01,
.high_school_bg02,
.high_school_bg03,
.high_school_bg04,
.high_school_bg05,
.high_school_bg06 {
    position: absolute;
}

.high_school_bg01 {
    width: 217px;
    top: 200px;
    left: 0;
}

.high_school_bg02 {
    width: 260px;
    top: 200px;
    right: 0;
}

.high_school_bg03 {
    width: 124px;
    top: 490px;
    left: 160px;
    transform: rotate(-9.5deg);
}

.high_school_bg04 {
    width: 147px;
    top: 600px;
    right: 210px;
    transform: rotate(17.5deg);
}

.high_school_bg05 {
    width: 230px;
    bottom: 0;
    left: 0;
}

.high_school_bg06 {
    width: 429px;
    bottom: 40px;
    right: 100px;
    transform: rotate(-7deg);
    z-index: 10;
}

.high_school_flow {
    text-align: center;
    padding: 290px 0;
    overflow: hidden;
}

.high_school_flow_bg_wrapper {
    background-color: #CFFCFE;
    position: relative;
    z-index: 2;
}

.high_school_flow .heading_subtitle {
    font-size: 11rem;
}

.high_school_flow_bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 250px;
    z-index: 1;
}

.high_school_flow_bg.reverse {
    top: initial;
    bottom: 0;
    transform: rotate(180deg);
}

.high_school_flow_bg::before,
.high_school_flow_bg::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
}


.high_school_flow_bg::before {
    width: 110%;
    height: 120%;
    min-height: 280px;
    height: 20vw;
    top: 0;
    background-image: url(../img/high_school_flow_bg01.webp);
    transform: rotate(-5deg);
}

.high_school_flow_bg::after {
    /* width: 110vw;
    height: 15vw; */
    top: 110px;
    background-image: url(../img/high_school_flow_bg02.webp);
}

@media (min-width: 768px) and (max-width: 1440px) {
    .high_school_flow_bg::after {
        width: 100%;
        top: 150px;
    }
    .high_school_flow_bg::before {
        min-height: 290px;
        height: 13vw;
        top: 50px;
    }
}

.high_school_flow_lists {
    margin-top: 20px;
    width: 50%;
}

.high_school_flow_box {
    margin-top: 60px;
}

.high_school_flow_lists_item {
    width: 100%;
}

.high_school_flow_img_box {
    width: calc(50% - 54px);
}

.high_school_flow_img {
    position: relative;
    margin-bottom: 45px;
    z-index: 1;
}

.high_school_flow_img::before {
    position: absolute;
    content: "";
    bottom: -20px;
    right: -20px;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: #127CCA;
    border-radius: 20px;
    z-index: -1;
}

.high_school_flow_lists_img {
    position: relative;
    border-radius: 280px;
    z-index: 1;
}

.high_school_flow_lists_img img {
    width: 100%;
    height: 321px;
    border-radius: 280px;
    object-fit: cover;
}

.high_school_flow_lists_img::before {
    position: absolute;
    content: "";
    right: -10px;
    bottom: -10px;
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 270px;
    background-color: #127CCA;
    z-index: -1;
}

.high_school_flow_lists_txt {
    text-align: left;
    margin-bottom: 110px;
}

.high_school_flow_lists_txt h3 {
    display: inline-block;
    font-size: 2.6rem;
    font-weight: bold;
    margin: 40px 0 30px 0;
    padding-left: 60px;
    position: relative;
}

.high_school_flow_lists_txt h3 span {
    position: absolute;
    top: -30px;
    left: 0;
    margin: auto;
    font-size: 8rem;
    color: #FD4636;
}

.high_school_flow_lists_txt p {
    font-size: 1.8rem;
}

.high_school_flow_lists_item_right {
    margin-top: 321px;
}

.high_school_flow_lists_item_left {
    margin-top: -161px;
}

.high_school_message {
    text-align: center;
    background-image: url(../img/high_school_message_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.high_school_map {
    padding-top: 0;
    background-color: #FFEACE;
    text-align: center;
}

.high_school_map .marquee {
    margin-bottom: 100px;
}

.high_school_map .heading_subtitle {
    font-size: 11rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.high_school_map_title_loop img {
    margin-right: 30px;
}

.high_school_map .heading_subtitle img {
    width: 74px;
}

.high_school_map_lists > li {
    margin-top: 80px;
}

.high_school_map_lists h3 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.high_school_map_lists h3 span {
    width: 148px;
    border-bottom: 2px dashed #3C4856;
    padding-bottom: 13px;
}

.high_school_map_place {
    max-width: 922px;
    margin: auto;
    margin-top: 40px;
}

.high_school_map_place p {
    font-size: 2rem;
    font-weight: bold;
}

.high_school_map_place ul li {
    font-size: 1.6rem;
    margin: 10px 0;
    padding-left: 18px;
    text-align: left;
    position: relative;
}

.high_school_map_place ul li::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    background-color: #FD4636;
    border-radius: 50%;
}

.high_school_internship {
    text-align: center;
    padding-bottom: 290px;
}

.high_school_internship_box {
    gap: 85px;
    margin-top: 40px;
}

.high_school_internship_txt {
    width: 50%;
}

.high_school_internship_txt > p {
    text-align: left;
    font-size: 1.8rem;
    line-height: 2.5;
    margin-top: 30px;
}

.high_school_internship_txt .top_about_btn {
    margin-bottom: 0;
}

.high_school_internship_img {
    width: calc(50% - 85px);
    position: relative;
}


.high_school_internship_img01,
.high_school_internship_img02,
.high_school_internship_img03 {
    position: absolute;
    left: 0;
    right: 100px;
    margin: auto;
}

.high_school_internship_img01 {
    top: 30px;
    transform: rotate(-6deg);
    text-align: center;
}

.high_school_internship_img02 {
    top: 30px;
    left: 100px;
    right: 0;
    transform: rotate(2.5deg);
    text-align: right;
}

.high_school_internship_bg01,
.high_school_internship_bg02,
.high_school_internship_bg03,
.high_school_internship_bg04 {
    position: absolute;
}

.high_school_internship_bg01 {
    width: 315px;
    top: 120px;
    left: 0;
}

.high_school_internship_bg02 {
    width: 167px;
    top: 130px;
    right: 0;
}

.high_school_internship_bg03 {
    width: 125px;
    bottom: 150px;
    left: 0;
}

.high_school_internship_bg04 {
    width: 180px;
    bottom: 180px;
    right: 0;
}

.high_school_parent {
    background-color: #CFFCFE;
    margin-top: -170px;
    text-align: center
}

.high_school_parent span {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 50px 0 45px 0;
}

.high_school_parent_txt {
    font-size: 1.8rem;
    line-height: 2.5;
    font-weight: bold;
}

.high_school_parent_img {
    margin: 60px 0 80px 0;
}

.high_school_parent .qa_list_txt {
    text-align: left;
}

.high_school_parent .qa_lists li {
    background-color: #FFF;
    padding: 40px 0;
    border-radius: 10px;
    border-bottom: none;
}

.high_school_parent .qa_lists li > div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
	cursor: pointer;
}

.qa_list_a_box {
    display: none;
}

.qa_list_a_box.open {
    display: block;
}

.qa_list_q_box .qa_list_q {
    margin-bottom: 0;
    align-items: center;
}

.qa_list_a_box .qa_list_a {
    margin-top: 20px;
}

.txt_gradation {
    background: linear-gradient(0deg, #3C4856,#326D81);
    background: -webkit-linear-gradient(0deg, #3C4856,#326D81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 追加 */

.high_school_message {
    margin-top: -170px;
    padding: 260px 0 120px 0;
}

.high_school_message .heading_subtitle {
    font-size: 11rem;
}

.high_school_message_lists {
    max-width: 920px;
    margin: auto;
    gap: 83px;
    flex-wrap: wrap;
}

.high_school_message_lists li {
    width: calc((100% - 83px) / 2);
	cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/high_school_message_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #3C4856;
    padding: 50px;
    /* border: 1px solid #3C4856; */
    z-index: 999;
}

.popup::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58px;
    height: 58px;
    border: 29px solid #3C4856;
    border-right-color: rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.close_btn {
    position: absolute;
    display: block;
    color: #FFF;
    background-color: #3C4856;
    cursor: pointer;
    top: -30px;
    font-size: 24px;
    right: -30px;
    border-radius: 50%;
    padding: 17px 19px;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
    z-index: 999;
}

.popup_contents_img {
    width: 45%;
    position: relative;
}

.popup_contents_img::before {
    position: absolute;
    content: "";
    top: -24px;
    left: 0;
    right: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    background-color: #FD4636;
    border-radius: 50%;
}


.popup_contents_img img {
    height: 100%;
    object-fit: cover;
}

.popup_contents_txt {
    width: calc(55% - 50px);
}

.popup_contents_txt .qa_lists li {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 20px;
}

.popup_contents_txt .qa_list_a {
    text-align: left;
}

.koigokoro {
    font-size: 2.8rem;
    font-family: "ta-koigokoro", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    line-height: 1.4;
}

.high_school_message_bg01,
.high_school_message_bg02,
.high_school_message_bg03 {
    position: absolute;
}

.high_school_message_bg01 {
    width: 256px;
    top: 300px;
    left: 0;
}

.high_school_message_bg02 {
    width: 157px;
    top: 550px;
    right: 0;
}

.high_school_message_bg03 {
    width: 210px;
    bottom: 20px;
    right: 0;
}

.high_school_h2_sub {
    color: #127CCA;
    font-size: 2rem!important;
}

.high_school_flow_h2 {
    width: 518px;
    margin: auto;
}

.high_school_message_h2 {
    width: 625px;
    margin: auto;
}

/**********************************************************
    
    募集要項

**********************************************************/

.category_all_ja span::before {
    background-color: #FFE18D;
}
.category_new_graduate span::before {
    background-color: #50C9C3;
}
.category_mid_career span::before {
    background-color: #063DA5;
}
.category_manufacturing span::before {
    background-color: #3498E2;
}
.category_sales span::before {
    background-color: #C70054;
}

.description_archive_list {
    padding: 60px 50px 40px 50px;
    margin-top: 60px;
}

.description_archive_list .fb_box {
    gap: 30px;
}

.description_archive_list_txt {
    width: calc(100% - 336px);
}

.description_archive_list_img {
    width: 306px;
}

.description_archive_list h2 {
    align-items: center;
    justify-content: initial;
    gap: 25px;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.description_archive_list h2 img {
    width: 45px;
}

.description_archive_list p {
    line-height: 1.5;
}

.description_btn {
    width: 306px;
    height: 60px;
    border: 1px solid #3C4856;
    border-radius: 50px;
    justify-content: left;
    padding-left: 45px;
    margin-top: 40px;
}

.description_btn:hover {
    background-color: #3C4856;
    color: #FFF;
}

.description_btn:hover::before {
    background-color: #FFF;
}

/**********************************************************
    
    募集要項 詳細

**********************************************************/

.description_person h2 {
    color: #FD4636;
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 35px;
}

.description_details h2 {
    font-size: 3.8rem;
    font-weight: bold;
    margin-bottom: 35px;
}

.description_person_lists {
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.description_person_list {
    width: 100%;
    padding: 40px 50px;
}

.description_person_list_img {
    margin-bottom: 20px;
}

.description_person_list h3 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 2;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

.description_person_list h3::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-color: #FD4636;
    border-radius: 50%;
}

.description_details_table {
    width: 100%;
    border: 1px dashed #3C4856;
    border-radius: 10px;
    margin-top: 45px;
}

.description_details_table th,
.description_details_table td {
    font-size: 1.8rem;
    line-height: 1.25;
    font-weight: 500;
    padding: 30px 40px;
    border-bottom: 0.5px solid rgba(60, 72, 86, 0.5);
}

.description_details_table th {
    width: 32%;
    background-color: #F0FAFF;
}

.description_details_table td {
    width: 68%;
}

.center_btn_box {
    margin-top: 80px;
}

/**********************************************************
    
    エントリー

**********************************************************/

.entry_form {
    width: 100%;
    margin-top: 80px;
}

.entry_form th,
.entry_form td {
    font-size: 1.6rem;
    padding: 30px 0;
    vertical-align: middle;
}

.entry_form th {
    width: 27%;
}

.entry_form td {
    width: 73%;
}

.entry_form td input,
.entry_form td textarea {
    width: 100%;
    line-height: 1.5;
    padding: 13px 30px;
    border: 1px solid #3C4856;
    border-radius: 3px;
}

.entry_form td label {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 2;
    margin-bottom: 10px;
}

.entry_form td label input {
    width: 18px;
    height: 18px;
}

.entry_form td textarea {
    height: 200px;
}

input::placeholder {
    color: #CECECE;
}

.require {
    height: 16px;
    position: relative;
}

.require::before {
    position: absolute;
    content: "";
    top: -5px;
    left: 5px;
    margin: auto;
    width: 6px;
    height: 6px;
    background-image: url(../img/form_inquiry.webp);
    background-repeat: no-repeat;
    background-size: contain;
}

.file {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px dashed #3C4856;
    padding: 30px;
}

.file span {
    font-size: 1.4rem;
    line-height: 2;
}


.entry_complete {
    text-align: center;
    padding-bottom: 55px;
}

.entry_complete span {
    font-size: 8rem;
    font-weight: bold;
    color: #FD4636;
    margin-bottom: 60px;
}

.note {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 40px 0;
}

.entry_complete a {
    font-size: 1.2rem;
    line-height: 1.7;
}

/**********************************************************
    
    ブログ

**********************************************************/

.article_archive_list .article_head {
    margin-bottom: 4px;
}

.article_head {
    margin-bottom: 80px;
}

.post_img {
    margin: 40px 0;
}

.blog_single .wrapper {
    max-width: 920px;
}

.blog_single .post_contents {
    padding-bottom: 80px;
    margin-bottom: 80px;
    border-bottom: 1px dashed #3C4856;
}

.blog_single h1 {
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: bold;
    margin: 23px 0 28px 0;
}

.blog_single .article_date {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.bolg_related {
    padding-top: 0;
}

.bolg_related h2 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}


.post_contents img,
.post_contents .wp-block-image {
    margin: 40px 0;
}

.post_contents .wp-block-image img {
    margin: 0;
}

.post_contents h2 {
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: bold;
    margin: 60px 0 40px 0;
}

.post_contents h3,
.post_contents h4,
.post_contents h5,
.post_contents h6 {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
    margin: 40px 0 20px 0;
}

.post_contents h4 {
    font-size: 2rem;
}

.post_contents h5 {
    font-size: 1.8rem;
}

.post_contents h6 {
    font-size: 1.6rem;
}

.post_contents p {
    margin-bottom: 20px;
}

.post_contents p a {
    color: #127CCA;
    text-decoration: underline;
}

.wp-block-list {
    list-style: inside;
    padding-left: 10px;
    margin: 20px 0;
}

.wp-block-list li {
    font-size: 1.6rem;
    line-height: 2;
}

.wp-block-list::marker {
    margin-right: 10px;
}

.wp-block-list ul {
    padding-left: 25px;
    margin: 0;
}

.blog_single .interview_btn_box {
    justify-content: center;
}





























/**********************************************************
    
    フッター

**********************************************************/

.footer_links {
    background-color: #3C4856;
    padding: 80px 0;
}

.footer_wrapper {
    width: calc(100% - 76px);
    max-width: 1350px;
    margin: auto;
}

.footer_link_box {
    display: flex;
    justify-content: space-between;
    gap: 38px;
}

.footer_link_box a {
    width: calc((100% - 76px) / 3);
    height: 225px;
    color: #FFF;
    font-size: 2rem;
    border: 1px solid #FFF;
    border-radius: 30px;
}

.footer_link_box .btn_point::before {
    background-color: #FFF;
}

.footer_link_box a:hover {
    color: #3C4856;
    background-color: #FFF;
}

.footer_link_box .btn_point:hover::before {
    background-color: #3C4856;
}

.footer_main {
    padding: 110px 0 95px 0;
    color: #FFF;
}

.footer_main_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_main .logo {
    display: inline-block;
    padding-left: 20px;
}

.footer_main .logo img {
    width: 89px;
}

.footer_left p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.footer_name {
    margin: 15px 0 10px 0;
}

.footer_nav {
    margin-top: 25px;
}

.footer_nav > ul {
    display: flex;
    gap: 20px;
}

.footer_nav > ul > li {
    width: 170px;
}

.footer_nav_big {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
}

.footer_nav_small {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 15px;
}

.footer_nav_small:hover {
    opacity: 0.6;
}

.copyright:hover {
    opacity: 1;
}

.footer_bottom {
    width: 100%;
    border-top: 1px solid #FFF;
    margin-top: 40px;
    padding-top: 40px;
}

.footer_bottom ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}

/* アニメーション */
/* アニメーションスタートの遅延時間を決めるCSS*/

.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
    opacity: 0;
}

.delay-time02 {
    animation-delay: 0.2s;
}
.delay-time04 {
    animation-delay: 0.4s;
}
.delay-time06 {
    animation-delay: 0.6s;
}
.delay-time08 {
    animation-delay: 0.8s;
}
.delay-time10 {
    animation-delay: 1s;
}
.delay-time12 {
    animation-delay: 1.2s;
}
.delay-time14 {
    animation-delay: 1.4s;
}
.delay-time16 {
    animation-delay: 1.6s;
}
.delay-time18 {
    animation-delay: 1.8s;
}
.delay-time20 {
    animation-delay: 2.0s;
}
    
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
    
.fade {
    opacity: 0;
}
    
/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/
    
.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    @keyframes fadeUpAnime{
        from {
        opacity: 0;
        transform: translateY(100px);
        }
    
        to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左から */

.fadeLeft{
    animation-name:fadeLeftAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeLeftAnime{
        from {
        opacity: 0;
        transform: translateX(-100px);
        }
    
        to {
        opacity: 1;
        transform: translateX(0);
        }
    }
    
/* 右から */
    
.fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeRightAnime{
        from {
        opacity: 0;
        transform: translateX(100px);
        }
    
        to {
        opacity: 1;
        transform: translateX(0);
        }
    }

.rotateY{
        animation-name:rotateYAnime;
        animation-duration:1s;
        animation-fill-mode:forwards;
    }
    
    @keyframes rotateYAnime{
        from{
            transform: rotateY(0);
            }
        to{
            transform: rotateY(-360deg);
            }
    }

.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-list-item {
    display: block!important;
    margin: 0!important;
}

.form_privacy_txt {
    text-align: center;
    margin-top: 50px;
}

.form_privacy_txt a {
    text-decoration: underline;
}

.wpcf7-file {
    border: none!important;
    padding: 0!important;
}

.wpcf7 input[type="file"] {
    width: 320px;
    font-weight: 400;
}

input[type=file]::file-selector-button {
    background: #CECECE;
    padding: 9px 29px;
    border-radius: 3px;
    margin-right: 30px;
    border: none!important;
}

.form_privacy_txt input {
    width: 18px!important;
    height: 18px!important;
    border-radius: 0!important;
    margin-right: 20px;
}

.wpcf7-spinner {
    display: none!important;
}

input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 400px;
    height: 100px;
    border: 1px solid #3C4856;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.02em;
}

.submit_btn_box {
    position: relative;
}

.submit_btn_box::before {
    position: absolute;
    content: "";
    top: 0;
    right: 48px;
    bottom: 0;
    margin: auto;
    width: 29px;
    height: 2px;
    background-color: #3C4856;
}

.submit_btn_box::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 31px;
    margin: auto;
    width: 8px;
    height: 8px;
    background-color: #FD4636;
    border-radius: 50%;
}

.philosophy .popup {
    background-image: initial;
    background-color: #FFF;
    border-radius: 10px;
}

.philosophy .popup::after {
    display: none;
}

.philosophy .popup::before {
    position: absolute;
    content: "";
    top: 0;
    right: 30px;
    margin: auto;
    width: 190px;
    height: 109px;
    background-image: url(../img/philosophy_popup_bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
}

.philosophy .popup .popup_contents_txt {
    width: 100%;
}

.philosophy .popup .popup_contents_txt .en {
    font-size: 4.8rem;
    font-weight: bold;
    background: linear-gradient(0deg, #3C4856, #326D81);
    background: -webkit-linear-gradient(0deg, #3C4856, #326D81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 0;
}

.philosophy .popup .popup_contents_txt span {
    font-size: 2rem;
    color: #FD4636;
    margin-left: 20px;
}

.philosophy .popup h4 {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dotted #3C4856;
	color: #127CCA;
	letter-spacing: 0.2rem;
}

.philosophy .popup .popup_contents_txt p {
    line-height: 1.6;
}

.philosophy_item h3 span{
	font-size:1.4rem;
	color: #3C4856;
	margin-left:10px;
	font-family: "Noto Sans JP", serif;
}