@charset "UTF-8";
/* CSS Document */

/*-------------------------------------*/
/*           fsv             */
/*-------------------------------------*/
.main {
    height: 100vh;
    width: 100%;
    position: relative;
}

/* スライドmain */

#slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
}

#slideshow img {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 8;
    opacity: 0.0;
}

#slideshow img.active {
    z-index: 10;
    opacity: 1.0;
}

#slideshow img.last-active {
    z-index: 9;
}

/* ここまで */

.main_inner {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 98;
}

.main h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: clamp(18px, 6vw, 76px);
    line-height: 1.2em;
    letter-spacing: .1em;
    white-space: nowrap;
    font-weight: 700;
}

.main h1 .sub {
    font-size: clamp(13px, 3vw, 24px);
    display: block;
    line-height: 1;
    font-weight: 400;
    margin: 0 auto 3%;
    width: fit-content;
}

.main .en {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 200;
    white-space: nowrap;
}

.main .popup {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    width: 230px;
    height: 290px;
}
.main .popup a {
    display: inline-block;
}
.main .popup h4 {
    font-size: 25px;
    font-weight: 700;
    padding: 12px 13px 0;
}

.main .popup p {
    font-size: 13px;
    font-weight: 500;
    padding: 3px 13px;
}

.main .popup .btn {
    background-color: #333;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
    display: block;
    margin-top: 21px;
    font-size: 17px;
}
@media (max-width: 768px) {
    .main .tb_popup {
        background-color: #333;
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        position: fixed;
        display: block;
        bottom: 10vh;
        right: 0;
    }
    .main .tb_popup a {
        display: block;
        color: #fff;

        padding: 17px 10px;
        letter-spacing: .4em;
    }
}

/*-------------------------------------*/
/*           sec01             */
/*-------------------------------------*/
.sec01 {
    padding-top: 5%;
}

.sec01 .container {
    display: flex;
    overflow: hidden;
}

.sec01 .container .text_box {
    width: 30%;
    padding-left: 8%;
}

.sec01 .container .text_box h2 {
    font-size: clamp(17px, 7vw, 48px);
    font-weight: 700;
}

.sec01 .container .text_box a {
    display: block;
    margin-top: 10%;
}

.sec01 .slider1 {
    width: calc(100% - 30%);
}

.sec01 .slider1 .date {
    margin-top: 10px;
    font-size: 13px;
    color: #B4B4B4;
}

.sec01 .slider1 .title {
    font-weight: 500;
    font-size: clamp(13px, 2vw, 16px);
    line-height: 1.4em;
}

/* 矢印設定 */
.sec01 .arrow_box1 {
    display: flex;
    align-items: center;
    margin: 25% 0 0;
    position: relative;
    gap: 20px;
}

.sec01 .arrow_box1 .prev-arrow,
.sec01 .arrow_box1 .next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid #1c1d21;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
}
.sec01 .arrow_box1 .prev-arrow::before {
    background-image: url(../img/common/le_arrow.svg);
}
.sec01 .arrow_box1 .next-arrow::before {
    background-image: url(../img/common/ri_arrow.svg);
}
.sec01 .arrow_box1 .prev-arrow::before,
.sec01 .arrow_box1 .next-arrow::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}


/* スライド設定 */
.sec01 .slick-img {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .sec01 .container {
        flex-direction: column;
    }
    .sec01 .container .text_box {
        display: flex;
        width: 100%;
        padding-left: 5%;
    }
    .sec01 .arrow_box1 {
        margin: 0 5% 0 auto;
        gap: 0;
    }
    .sec01 .slider1 {
        width: 100%;
        padding: 4% 0 0 4%;
    }
}
@media (max-width: 430px) {
    .sec01 .prev-arrow,
    .sec01 .next-arrow {
        width: 40px;
        height: 40px;
    }
    .sec01 .prev-arrow::before,
    .sec01 .next-arrow::before {
        width: 12px;
        height: 12px;
    }
    .sec01 .prev-arrow {
        margin-right: 15px;
    }
    .sec01 .slider1 .date {
        font-size: 10px;
        margin-top: 5px;
    }
}
/*-------------------------------------*/
/*           sec02             */
/*-------------------------------------*/
.sec02 {
    padding-top: 10%;
}

.sec02 .container {
    display: flex;
    width: 100%;
}

.sec02 .container .img_box {
    width: 45%;
}

.sec02 .container .text_box {
    width: 60%;
    max-width: 700px;
    margin: 0 4%;
}

.sec02 .text_box h2 {
    margin-left: -15%;
    margin-top: 5%;
    font-weight: 500;
}

.sec02 .text_box h2 .en {
    font-size: clamp(21px, 8vw, 110px);
    padding: 10px 0;
    line-height: 1em;
    font-weight: 700;
}

.sec02 .text_box h3 {
    font-size: clamp(23px, 4vw, 55px);
    line-height: 1.5em;
    font-weight: 600;
    padding: 6% 0;
}

.sec02 .text_box p {
    margin-top: 5%;
    line-height: 2em;
}


@media (max-width: 768px) {
    .sec02 .container .img_box {
        margin-left: -25%;
    }
}
@media (max-width: 430px) {
    .sec02 .container {
        padding: 0 5%;
    }
    .sec02 .container .text_box,
    .sec02 .container .img_box {
        width: 100%;
    }
    .sec02 .container .img_box {
        margin-left: 0;
        margin-top: -10%;
    }
    .sec02 .text_box h2 {
        margin-left: 0;
        position: relative;
        z-index: 1;
    }
    .sec02 .text_box h2 .flex.en {
        padding: 5px 0;
    }
}
/*-------------------------------------*/
/*           sec03             */
/*-------------------------------------*/
.sec03 {
    padding-top: 10%;
}
.sec03 .container {
    margin: 30px auto 0;
    width: 100%;
    max-width: unset;
    overflow: hidden;
}
.sec03 .container h2 {
    padding-left: 8%;
    display: flex;
    align-items: center;
    gap: 2%;
    font-weight: 500;
    margin-bottom: 20px;
}
.sec03 .container h2 .en {
    font-size: clamp(21px, 8vw, 130px);
    font-weight: 700;
    line-height: 1.3em;
    margin-top: -.17em;
}

/* 中央以外のスライド */
.sec03 .slider2 .slick-img {
    height: auto;
    opacity: .3;
    transform: scale(.8);
    transition: opacity .5s, transform .5s;
    width: 100%;
}

/* 中央のスライド */
.sec03 .slider2 .slick-img.slick-center {
    opacity: 1;
    transform: scale(1);
}
/* 左右がはみ出たデザイン */
.sec03 .slider2 .slick-list {
    overflow: visible;
}
/* 矢印 */
.sec03 .slider2 .slider_content {
    position: relative;
}
.sec03 .slider2 .slick-prev,
.sec03 .slider2 .slick-next {
    display: block;
    width: 70px;
    height: 70px;
    border: 1px solid #1c1d21;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position: absolute;
    z-index: 20;
    background-color: #f4f4f473;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 20px;
    opacity: 1;
    top: 25%;
}
.sec03 .slider2 .slick-prev {
    left: 30%;
}
.sec03 .slider2 .slick-next {
    right: 30%;
}
.sec03 .slider2 .slick-next::before {
    background-image: url(../img/common/ri_arrow.svg);
}
.sec03 .slider2 .slick-prev::before {
    background-image: url(../img/common/le_arrow.svg);
}
.sec03 .slider2 .slick-next::before,
.sec03 .slider2 .slick-prev::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 17px;
    height: 17px;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    opacity: 1;
}
.sec03 .slider2 {
    position: relative;
}
.sec03 .slider2 .text_box {
    padding: 20px 0;
}
.sec03 .slider2 .text_box h3 {
    font-size: clamp(20px, 3vw, 35px);
    font-weight: 600;
    margin: 3% 0;
    line-height: 1em;
}
.sec03 .slider2 .text_box p {
    line-height: 1.9em;
    display: inline;
}
.sec03 .slider2 .text_box p + p {
    margin-top: 10px;
}
.sec03 .slider2 .text_box .btn_box {
    margin-top: 4%;
}
@media (max-width: 1600px) {
    .sec03 .slider2 .slick-prev,
    .sec03 .slider2 .slick-next {
        top: 30%;
    }
    .sec03 .slider2 .slick-prev {
        left: 16%;
    }
    .sec03 .slider2 .slick-next {
        right: 16%;
    }
}
@media (max-width: 768px) {
    .sec03 .slider2 .slick-prev,
    .sec03 .slider2 .slick-next {
        top: 25%;
        width: 50px;
        height: 50px;
    }
    .sec03 .slider2 .slick-prev {
        left: 10%;
    }
    .sec03 .slider2 .slick-next {
        right: 10%;
    }
}

/*-------------------------------------*/
/*           sec04             */
/*-------------------------------------*/
.sec04 {
    padding-top: 10%;
}
.sec04 .flex {
    display: flex;
}
.sec04 h2 {
    display: flex;
    align-items: center;
    gap: 2%;
    font-weight: 500;
    margin-bottom: 20px;
}
.sec04 h2 .en {
    font-size: clamp(21px, 8vw, 130px);
    font-weight: 700;
    line-height: 1.1em;
    margin-top: -.17em;
}
.sec04 h3 {
    font-size: clamp(23px, 4vw, 66px);
    line-height: 1.5em;
    font-weight: 600;
    margin-bottom: 5%;
}
/*タブ切り替え全体のスタイル*/
.sec04 .tabs {
    margin-top: 50px;
    padding-bottom: 40px;
}

/*タブのスタイル*/
.sec04 .tab_item {
    height: 50px;
    width: 215px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    float: left;
    position: relative;
}
.sec04 .tab_item::after {
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #1c1d2163;
    z-index: 1;
}
.sec04 .tab_item .pc_btn {
    height: 40px;
    width: unset;
    vertical-align: middle;
}

.sec04 .tab_item .tb_btn {
    display: none;
}


/*ラジオボタンを全て消す*/
.sec04 input[name="tab_item"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.sec04 .tab_content {
    display: none;
    padding: 30px;
    clear: both;
    overflow: hidden;
    border: 1px solid #D1D1D1;
}


/*選択されているタブのコンテンツのみを表示*/
#kobac:checked ~ #kobac_content,
#modori:checked ~ #modori_content,
#flat7:checked ~ #flat7_content,
#kei:checked ~ #kei_content,
#joycal:checked ~ #joycal_content,
#station:checked ~ #station_content {
    display: block;
}

/*選択されているタブのスタイルを変える*/
.sec04 .tabs input:checked + .tab_item::after {
    display: none;
}


.sec04 .kobac {
    background-color: #DB131B;
    padding: 0 5px;
}
.sec04 .modori {
    background-color: #3FAC45;
    padding: 0 5px;
}
.sec04 .flat7,
.sec04 .kei,
.sec04 .joycal {
    background-color: #FFFFFF;
    padding: 0 20px;
}
.sec04 .station {
    background-color: #025CD9;
    padding: 0 20px;
}
.sec04 .station span::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url("/img/common/eneos.jpg");
    background-size: contain;
    margin-right: 10px;
}

.sec04 .tab_content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}
.sec04 .tab_content dd + dt {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #D1D1D1;
}

.sec04 .tab_content ul li a:hover {
    opacity: .6;
}

@media (max-width: 768px) {
    .sec04 .flex {
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .sec04 .tab_item {
        width: 100%;
    }

}
/*-------------------------------------*/
/*           loop             */
/*-------------------------------------*/

.loop_wrap {
    display: flex;
    overflow: hidden;
    gap: 5%;
}
.loop_wrap img {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
    pointer-events: none;
    width: 180%;
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/*-------------------------------------*/
/*           sec05             */
/*-------------------------------------*/
.sec05 {
    padding: 8% 0;
}
.sec05 h2 {
    display: flex;
    align-items: center;
    gap: 2%;
    font-weight: 500;
    margin-bottom: 20px;
    padding-left: 8%;
}
.sec05 h2 .en {
    font-size: clamp(21px, 8vw, 130px);
    font-weight: 700;
    line-height: 1.1em;
    margin-top: -.17em;
}
.sec05 .flex {
    display: flex;
}
.sec05 .img_box {
    width: 50%;
}
.sec05 .text_box {
    width: 50%;
    padding: 0 5%;
}
.sec05 h3 {
    font-size: clamp(23px, 3vw, 60px);
    line-height: 1.5em;
    font-weight: 600;
    margin: 5% 0;
}
.sec05 ul {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sec05 ul li {
    width: fit-content;
    background-color: #fff;
    padding: 5px 10px;
    border: 1px solid #1c1d21;
}

@media (max-width: 768px) {
    .sec05 .flex {
        flex-direction: column;
    }
    .sec05 .img_box {
        width: 90%;
    }
    .sec05 .text_box {
        width: 100%;
    }
}

/*-------------------------------------*/
/*           sec06             */
/*-------------------------------------*/
.sec06 h3 {
    text-align: center;
    font-size: clamp(19px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 5%;
}
.sec06 ul {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.sec06 ul .img_box {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: flex;
    align-items: center;
    max-width: 130px;
}
.sec06 ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafafa;
    padding: 20px 10px 50px;
    border: 1px solid #DEDEDE;
    position: relative;
}
.sec06 ul li h4 {
    font-weight: 600;
    padding: 5% 0 0;
    text-align: center;
}
.sec06 ul li .num_box .num {
    font-size: clamp(34px, 6vw, 80px);
    margin-top: 10px;
    font-weight: 600;
    background: linear-gradient(#FE5901, #EF1212);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1em;
    padding-left: .3em;
}
.sec06 ul li .num_box .num_little {
    font-size: clamp(18px, 4vw, 40px);
    margin-top: 10px;
    font-weight: 600;
    background: linear-gradient(#FE5901, #EF1212);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1em;
}
.sec06 ul li .num_box .unit {
    font-size: clamp(15px, 1.8vw, 20px);
    background:#1c1d21;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 5px;
}
.sec06 ul li#box3::after {
    content: '※配属先によって異なります';
    font-size: clamp(10px, 1.8vw, 12px);
    position: absolute;
    bottom: 5px;
    padding: 0 10px;
    line-height: 1.4em;
}
.sec06 ul li#box5::after {
    content: '※2025年4月';
    font-size: clamp(10px, 1.8vw, 12px);
    position: absolute;
    bottom: 5px;
    padding: 0 10px;
    line-height: 1.4em;
}
.sec06 ul li#box6::after {
    content: '※カークリニックアキヤマのアルバイトを除きます';
    font-size: clamp(10px, 1.8vw, 12px);
    position: absolute;
    bottom: 5px;
    padding: 0 10px;
    line-height: 1.4em;
}
@media (max-width: 600px) {
    .sec06 ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }
    .sec06 ul .img_box {
        width: 100px;
        height: 100px;
    }
    .sec06 ul li {
        padding: 15% 10px 20%;
    }
}
@media (max-width: 430px) {
    .sec06 ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .sec06 ul li {
        flex-direction: row;
        padding: 8%;
    }
    .sec06 ul .img_box {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }
    .sec06 ul .text_box {
        padding-left: 13%;
    }
    .sec06 ul li h4 {
        text-align: left;
        padding: 5px 0;
    }
    .sec06 ul li .num_box .num {
        padding-left: 0;
    }
}

/*-------------------------------------*/
/*           sec07             */
/*-------------------------------------*/
.sec07 {
    padding: 8% 0;
}
.sec07 .flex {
    display: flex;
    justify-content: center;
    gap: 5%;
}
.sec07 .flex .box {
    width: 45%;
    position: relative;
    padding: 40px 0 0 40px;
}
.sec07 h3 {
    background-color: #1c1d21;
    color: #ffffff;
    width: 120px;
    height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 19px;
    line-height: 1.4em;
    position: absolute;
    top: 0;
    left: 0;
}
.sec07 p {
    padding: 5% 0;
}
@media (max-width: 768px) {
    .sec07 .flex {
        flex-direction: column;
        gap: 50px;
    }
    .sec07 .flex .box {
        width: 100%;
    }

}
@media (max-width: 430px) {
    .sec07 h3 {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }
}

/*-------------------------------------*/
/*           sec08             */
/*-------------------------------------*/


/*-------------------------------------*/
/*           sec09             */
/*-------------------------------------*/
.sec09 {
    padding: 8% 0;
}
.sec09 h2 {
    display: flex;
    align-items: center;
    gap: 2%;
    font-weight: 500;
    margin-bottom: 4%;
}
.sec09 h2 .en {
    font-size: clamp(21px, 8vw, 130px);
    font-weight: 700;
    line-height: 1.4em;
    margin-top: -.17em;
}
.sec09 .flex {
    display: flex;
    justify-content: space-between;
}
.sec09 .text_box {
    width: 60%;
}
.sec09 .text_box h3 {
    font-size: clamp(23px, 3vw, 60px);
    font-weight: 600;
    margin-bottom: 5%;
}
.sec09 .text_box p + p {
    margin-top: 20px;
}
.sec09 .img_box {
    width: 35%;
}
.sec09 .img_box p {
    text-align: right;
}
.sec09 .img_box p:first-of-type {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .sec09 .flex {
        flex-direction: column;
    }
    .sec09 .img_box,
    .sec09 .text_box {
        width: 100%;
    }
    .sec09 .img_box {
        margin-top: 20px;
    }
}

/*-------------------------------------*/
/*           sec10             */
/*-------------------------------------*/
.sec10 h3 {
    font-size: clamp(19px, 3vw, 26px);
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #BEBEBE;
}
.sec10 table {
    width: 100%;
    font-size: clamp(15px, 1.8vw, 17px);
}
.sec10 table tr {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #D1D1D1;
}
.sec10 table th {
    width: 10em;
}
@media (max-width: 768px) {
    .sec10 table tr {
        display: flex;
        flex-direction: column;
    }
    .sec10 table th {
        margin-bottom: 5px;
    }
}

/*-------------------------------------*/
/*           sec11             */
/*-------------------------------------*/
.sec11 {
    padding: 8% 0;
}
.sec11 h3 {
    font-size: clamp(19px, 3vw, 26px);
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #BEBEBE;
}
.sec11 table {
    font-size: clamp(15px, 1.8vw, 17px);
}
.sec11 table tr {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #D1D1D1;
}
.sec11 table th {
    width: 6em;
    font-size: clamp(19px, 3vw, 32px);
    color: #DEDEDE;
}
.sec11 .event p:first-child {
    font-weight: 600;
}
@media (max-width: 430px) {
    .sec11 table tr {
        display: flex;
        flex-direction: column;
    }
    .sec11 table th {
        padding: 10px 0;
    }
}