


/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(100%, 375px);
    --color__accent: #FF7BAC;
}

/* コンテンツ全体の調整 */
body {
    width: min(100%, 375px);
    margin-inline: auto;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-optical-sizing: auto;
    color: #2b2b2b;
    background-color: #FFF;

    &.page { /* bodyが .page というクラス名を持っているときだけ */
        margin: 0 auto;
    }
}


h1, h2 {
    margin: 0;
}

p, a, ul, ol, table {
    /* 400-768 */
    font-size: clamp(0.875rem, 0.739rem + 0.543vw, 1rem);
}

/* imgタグの調整 */
img {
    vertical-align: top;
    width: 100%;
}

.pc-only {
    display: block;
}
@media (max-width: 767px) {
    .pc-only {
        display: none;
    }
}
.sp-only {
    display: none;
}
@media (max-width: 767px) {
    .sp-only {
        display: block;
    }
}


/* 折り返し */
/* PC版でのみ表示 */
.pc {
    display: inline; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc {
        display: none; /* SPでは非表示 */
    }
}
/* SP版でのみ表示 */
.sp {
    display: none; /* PCでは非表示 */
}

@media (max-width: 767px) {
    .sp {
        display: inline; /* SPでは表示 */
    }
}

span.strong {
    font-weight: bold; /* 太字にする */
    font-size: 1em;  /* 強調のためにサイズを若干大きく（任意） */
}

/*------------------------------------------------------------
スクロールアニメーション
------------------------------------------------------------*/

/* フェードイン */
.fadein {
    opacity: 0;
    animation: fadein 1s ease-in forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadein-scrollin {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;


    &.scrollin-left {
        transform: translate(-30px, 0);
    }

    &.scrollin-right {
        transform: translate(30px, 0);
    }

    &.scrollin-bottom {
        transform: translate(0, 30px);
    }

    &.scrollin {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/*######################################################################
コンテンツ
######################################################################*/
.inner {
    width: 92%;
    margin-inline: auto;
}
/*------------------------------------------------------------
header
------------------------------------------------------------*/
.site-header {
    display: flex;
    width: min(100%, 375px);
    margin-inline: auto;
    padding: 0;
    margin: 0;
    align-items: center;
}

/*------------------------------------------------------------
fv
------------------------------------------------------------*/
.fv {
    position: relative;
    width: min(100%, 375px);
    margin-inline: auto;
    padding-bottom: 4%;
}
.fv__cta {
    position: absolute;
    width: min(89%, 334px);
    top: 87%;
    left: 50%;
    transform: translateX(-50%);


}

/*------------------------------------------------------------
worry
------------------------------------------------------------*/
.worry {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
welcome
------------------------------------------------------------*/
.welcome {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
service
------------------------------------------------------------*/
.service {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
message
------------------------------------------------------------*/
.message {
    width: min(100%, 375px);
    margin-top: -1px;
}

/*------------------------------------------------------------
program
------------------------------------------------------------*/
.program {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
career
------------------------------------------------------------*/
.career {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
salary
------------------------------------------------------------*/
.salary {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
evaluation
------------------------------------------------------------*/
.evaluation {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
career-pass
------------------------------------------------------------*/
.career-pass {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
role-model
------------------------------------------------------------*/
.role-model {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
voice
------------------------------------------------------------*/
.voice {
    position: relative;
    width: min(100%, 375px);
    background-color: #f85b00;
    padding: 37% 0 10%;
}
.voice__title {
    position: absolute;
    width: min(68%, 257px);
    top: 0;
    right: 0;
}

/* アコーディオン */
.accordion {
  display: flex;
  width: min(91%, 341px);
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}
.accordion-item {
  cursor: pointer;
}
.accordion-image {
  display: block;
  width: 100%;
  height: auto;
}

/*------------------------------------------------------------
office
------------------------------------------------------------*/
.office {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
flow
------------------------------------------------------------*/
.flow {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta {
    width: min(100%, 375px);
}
.cta__area {
    position: absolute;
    width: min(89%, 334px);
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
}
.cta__area02 {
    position: absolute;
    width: min(89%, 334px);
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
}

/*------------------------------------------------------------
faq
------------------------------------------------------------*/
.faq {
    position: relative;
    width: min(100%, 375px);
    background-color: #032e83;
    padding: 32% 0 8%;
}
.faq__title {
    position: absolute;
    width: min(67%, 252px);
    top: 0;
    left: 0;
}

/* アコーディオン */
.accordion2 {
  display: flex;
  width: min(91%, 341px);
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}
.accordion2-item {
  cursor: pointer;
}
.accordion2-image {
  display: block;
  width: 100%;
  height: auto;
}
/*------------------------------------------------------------
recruit
------------------------------------------------------------*/
.recruit {
    width: min(100%, 375px);
    background-color: #eeeeee;
    padding: 5px 0 30px 0;
}
.recruit-table__table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    border: 1px solid #f85b00;
}
.recruit-table__table th {
    background-color: #f85b00;
    color: #fff;
    text-align: center;
    padding: 5px;
    vertical-align: middle;
    width: 28%;
    font-size: 19px;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}
.recruit-table__table td {
    background-color: #fff;
    color: #2b2b2b;
    text-align: left;
    padding: 5px 0 5px 20px;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #f85b00;
}
.recruit-table__table tr:last-child th,
.recruit-table__table tr:last-child td {
  border-bottom: none;
}

/* 募集要項ボタン */
.recruit-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.recruit-content.is-open {
  max-height: 1000px;
}

.recruit-toggle {
  text-align: center;
  margin-block: 20px;
  width: min(89%, 334px);
  margin-inline: auto;
}

.recruit-toggle__btn {
  display: inline-block;
  cursor: pointer;
  max-width: 100%;
  height: auto;
}


/*------------------------------------------------------------
challenge
------------------------------------------------------------*/
.challenge {
    width: min(100%, 375px);
}

/*------------------------------------------------------------
company
------------------------------------------------------------*/
.company {
    width: min(100%, 375px);
    background-color: #eeeeee;
    padding-block: 28px;
}
h2.company__title {
    font-size: 23px;
    font-weight: bolder;
    color: #2b2b2b;
    text-align: center;
}
.company-table__table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 0 0;
    border: 1px solid #2b2b2b;
}
.company-table__table th {
    background-color: #2b2b2b;
    color: #fff;
    text-align: center;
    padding: 5px;
    vertical-align: middle;
    width: 27%;
    font-size: 19px;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}
.company-table__table td {
    background-color: #fff;
    color: #2b2b2b;
    text-align: left;
    padding: 5px 0 5px 10px;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid #2b2b2b;
}
.company-table__table tr:last-child th,
.company-table__table tr:last-child td {
  border-bottom: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 1.5rem 0;
    background-color: #032e83;
    color: #FFF;
    font-style: normal;
}
@media (max-width: 767px) {
    .footer {
        padding: 1.2rem 0;
    }
 }

.footer__nav {
    font-size: clamp(0.875rem, 0.765rem + 0.49vw, 1rem);
    letter-spacing: 0.8px;
    
    ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;

        li:not(:last-child)::after {
            content: "　　";
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;
        font-size: 14px!important;

        &:hover {
            color: lightgray;
        }
    }
}
@media (max-width: 767px) {
    .footer__nav a {
        font-size: 14px!important;
    }
 }

.copyright__p {
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin-top: 10px !important;
    font-size: 12.5px !important;
}
@media (max-width: 767px) {
    .copyright__p {
        margin-top: 0;
        font-size: 12.5px !important;
    }
 }

.follow__btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    /* background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0; */
}

