/* common */
body {
    background: none;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.2rem;
    line-height: 1.618;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
input, select, textarea {
    background-color: #fff;
}
.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* 背景アニメーション */
.bg {
    animation: slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #fff2e3 50%, #fffcf8 50%);
    bottom: 0;
    left: -50%;
    opacity: .5;
    position: fixed;
    right: -50%;
    top: 0;
    z-index: -1;
}
.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}
.bg3 {
    animation-duration:5s;
}
@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

/* header */
header {
    letter-spacing: 0;
    margin-top: -200px;
    padding-top: 40px;
    position: fixed;
    transition: .4s;
    width: 100%;
    z-index: 100;
}
header.on {
    margin-top: 0;
}
header .container {
    align-items: center;
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08), 0 10px 24px 0 rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1400px;
    padding: 32px 80px;
    width: 100%;
}
header img {
    height: 40px;
}
header menu ul {
    display: flex;
    gap: 40px;
}
header menu {
    margin: 16px 0;
}
header menu ul li a {
    color: #252628;
    font-size: 20px;
    font-family: "Anton", sans-serif;
    transition: .2s;
    text-decoration: none;
}
header menu ul li a:hover {
    color: #F17C27;
    text-decoration: none;
}
header .menuOpen {
    display: none;
}
header .menuClose {
    display: none;
}
@media screen and (max-width:1400px) {
    header {
        padding: 40px 40px 0;
    }
    header .container {
        padding: 24px 40px;
    }
    header menu ul {
        gap: 30px;
    }
}
@media screen and (max-width:767px) {
    header {
        margin-top: -200px;
        padding: 20px 20px 0;
    }
    header .container {
        border-radius: 60px;
        padding: 24px 30px 24px 40px;
        width: 100%;
    }
    header img {
        height: 30px;
    }
    header menu {
        background: #fff;
        display: none;
        height: 100vh;
        margin: 0;
        padding: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
    }
    header menu ul {
        align-items: center;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        gap: 40px;
    }
    header .menuOpen {
        display: block;
        height: 32px;
        width: 32px;
    }
    header .menuOpen img {
        height: 100%;
        width: 100%;
    }
    header .menuClose {
        display: block;
        height: 32px;
        position: fixed;
        right: 20px;
        top: 20px;
        width: 32px;
    }
    header .menuClose img {
        height: 100%;
        width: 100%;
    }
}


.mv {
    align-items: center;
    height: 100vh;
    display: flex;
    letter-spacing: 0;
    justify-content: space-between;
    padding: 0 80px;
    position: relative;
}
.mv .logo {
    margin-left: calc(50% - 230px);
    transition: .8s;
    transition-delay: 1s;
    width: 500px;
}
.mv.on .logo {
    margin-left: 0;
}
.mv ul {
    list-style: none;
    margin: 0;
    opacity: 0;
    padding: 0;
    transition: .8s;
    transition-delay: 1s;
}
.mv.on ul {
    opacity: 1;
}
.mv ul li a {
    color: #252628;
    display: block;
    font-size: 32px;
    font-family: "Anton", sans-serif;
    padding: 20px 0;
    transition: .2s;
    text-align: right;
    text-decoration: none;
}
.mv ul li a:hover {
    color: #F17C27;
    text-decoration: none;
}
.mv .scroll {
    bottom: 0;
    left: calc(50% - 40px);
    opacity: 0;
    position: absolute;
    transition: .8s;
    transition-delay: 1s;
}
.mv.on .scroll {
    opacity: 1;
}
.mv .scroll .scroll-down {
    position: relative;
    width: 80px;
    height: 80px;
}
.mv .scroll .scroll-down svg {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    fill: currentColor;
    color: #F17C27;
    animation: scroll-down 2s infinite cubic-bezier(.8,0,.2,1);
    opacity: 0;
}
.mv .scroll .scroll-down svg:nth-child(0) {animation-delay: 0s}
.mv .scroll .scroll-down svg:nth-child(1) {animation-delay: .5s}
.mv .scroll .scroll-down svg:nth-child(2) {animation-delay: 1s}
.mv .scroll .scroll-down svg:nth-child(3) {animation-delay: 1.5s}
@keyframes scroll-down {
    0% {
        opacity: 0;
        top: 0;
        transform: translate(-50%, -50%) scale(.2) rotateX(45deg);
        color: #F17C27;
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(.4) rotateX(0);
        color: #F17C27;
    }
    100% {
        opacity: 0;
        top: 100%;
        transform: translate(-50%, -50%) scale(.2) rotateX(0);
        color: #F17C27;
    }
}
@media screen and (max-width:1024px) {
    .mv {
        padding: 0 40px;
    }
    .mv .logo {
        margin-left: calc(50% - 180px);
        width: 400px;
    }
}
@media screen and (max-width:767px) {
    .mv {
        padding: 0 20px;
    }
    .mv .logo {
        margin-left: calc(50% - 85px);
        width: 200px;
    }
    .mv .logo canvas {
        width: 200px;
    }
    .mv ul li a {
        font-size: 20px;
    }
    .mv .scroll {
        left: calc(50% - 20px);
    }
    .mv .scroll .scroll-down {
        width: 40px;
        height: 40px;
    }
}

/* concept */
.concept {
    overflow: hidden;
    padding: 400px 0;
    position: relative;
}
.concept .concept-bg {
    background: #F17C27;
    border-radius: 2500px;
    height: 5000px;
    left: calc(50% - 2500px);
    position: absolute;
    top: calc(50% - 2500px);
    transform: scale(0);
    transition: 2s;
    width: 5000px;
    z-index: 1;
}
.concept.on .concept-bg {
    transform: scale(1);
}
.concept .container {
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2;
}
.concept .container h2 {
    color: #fff;
    font-size: 100px;
    margin-bottom: 100px;
    opacity: 0;
    transition: .4s;
}
.concept.on .container h2 {
    opacity: 1;
}
.concept .container p {
    color: #fff;
    font-size: 20px;
    line-height: 2;
    opacity: 0;
    transition: .4s;
    transition-delay: 1s;
}
.concept.on .container p {
    opacity: 1;
}
@media screen and (max-width:1024px) {
    .concept {
        padding: 300px 0;
    }
    .concept .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:800px) {
    .concept .container p {
        font-size: 16px;
    }
}
@media screen and (max-width:767px) {
    .concept {
        padding: 300px 0 100px;
    }
    .concept .container {
        padding: 0 20px;
    }
    .concept .container h2 {
        font-size: 70px;
        margin-bottom: 60px;
    }
}

/* NEWS */
.news {
    padding: 400px 0 200px;
}
.news .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.news .container .title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    opacity: 0;
    transition: .4s;
    width: 100%;
}
.news.on .container .title {
    opacity: 1;
}
.news .container .title h2 {
    color: #F17C27;
    font-size: 100px;
}
.news .container .title .more a {
    align-items: center;
    color: #252628;
    display: flex;
    font-weight: bold;
    gap: 8px;
    text-decoration: none;
    transition: .2s;
}
.news .container .title .more a:hover {
    color: #F17C27;
}
.news .container .title .more a:hover img {
    filter: invert(50%) sepia(74%) saturate(659%) hue-rotate(343deg) brightness(99%) contrast(90%);
}
.news .container ul {
    display: flex;
    gap: 40px;
    opacity: 0;
    transition: .4s;
    transition-delay: .4s;
}
.news.on .container ul {
    opacity: 1;
}
.news .container ul li {
    width: calc(33% - 22px);
}
.news .container ul li a {
    text-align: left;
    text-decoration: none;
}
.news .container ul li a img {
    margin-bottom: 20px;
    width: 100%;
}
.news .container ul li a h3 {
    color: #252628;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: .2s;
}
.news .container ul li a p {
    color: #252628;
    font-size: 14px;
    opacity: .7;
}
.news .container ul li a:hover h3 {
    color: #F17C27;
}
@media screen and (max-width:1480px) {
    .news .container {
        padding: 0 40px;
    }
    .news .container ul li {
        width: 100%;
    }
}
@media screen and (max-width:1024px) {
    .news {
        padding: 200px 0 100px;
    }
}
@media screen and (max-width:767px) {
    .news {
        padding: 100px 0 50px;
    }
    .news .container {
        padding: 0 20px;
    }
    .news .container .title {
        margin-bottom: 40px;
    }
    .news .container .title h2 {
        font-size: 60px;
    }
    .news .container ul {
        flex-direction: column;
    }
}

/* SERVICE */
.service {
    padding: 200px 0 400px;
}
.service .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.service .container .title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    opacity: 0;
    transition: .4s;
    width: 100%;
}
.service.on .container .title {
    opacity: 1;
}
.service .container .title h2 {
    color: #F17C27;
    font-size: 100px;
}
.service .container ul {
    display: flex;
    gap: 40px;
    opacity: 0;
    text-align: center;
    transition: .4s;
    transition-delay: .4s;
}
.service.on .container ul {
    opacity: 1;
}
.service .container ul li h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}
.service .container ul li img {
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
}
.service .container ul li p {
    color: #252628;
    opacity: .7;
}
@media screen and (max-width:1480px) {
    .service .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:1024px) {
    .service {
        padding: 100px 0 200px;
    }
}
@media screen and (max-width:767px) {
    .service {
        padding: 50px 0 100px;
    }
    .service .container {
        padding: 0 20px;
    }
    .service .container .title {
        margin-bottom: 40px;
    }
    .service .container .title h2 {
        font-size: 60px;
    }
    .service .container ul {
        flex-direction: column;
    }
}

/* RECRUIT */
.recruit {
    overflow-x: hidden;
    padding: 200px 0;
    position: relative;
    width: 100%;
}
.recruit .bg-left {
    background: #F17C27;
    height: 100%;
    left: -50%;
    position: absolute;
    top: 0;
    transition: .4s;
    width: 50%;
    z-index: -1;
}
.recruit .bg-right {
    background: #F17C27;
    height: 100%;
    position: absolute;
    right: -50%;
    top: 0;
    transition: .4s;
    width: 50%;
    z-index: -1;
}
.recruit.on .bg-left {
    left: 0;
}
.recruit.on .bg-right {
    right: 0;
}
.recruit .container {
    margin: 0 auto;
    max-width: 1400px;
    opacity: 0;
    padding: 0;
    text-align: center;
    transition: .4s;
    transition-delay: .4s;
    width: 100%;
}
.recruit.on .container {
    opacity: 1;
}
.recruit .container .detail {
    align-items: center;
    display: flex;
}
.recruit .container .detail .text {
    text-align: left;
    width: 40%;
}
.recruit .container .detail .text h2 {
    color: #fff;
    font-size: 100px;
    margin-bottom: 40px;
}
.recruit .container .detail .text p {
    color: #fff;
}
.recruit .container .detail .text .button {
    text-decoration: none;
}
.recruit .container .detail .text div {
    align-items: center;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08), 0 10px 24px 0 rgba(0, 0, 0, 0.12);
    color: #F17C27;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 80px;
    justify-content: center;
    margin-top: 40px;
    text-decoration: none;
    width: 300px;
}
.recruit .container .detail .img {
    width: 60%;
}
.recruit .container .detail .img img {
    width: 100%;
}
@media screen and (max-width:1480px) {
    .recruit .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:1024px) {
    .recruit {
        padding: 200px 0 200px;
    }
}
@media screen and (max-width:767px) {
    .recruit {
        padding: 100px 0 100px;
    }
    .recruit .container {
        padding: 0 20px;
    }
    .recruit .container .detail {
        flex-direction: column;
        gap: 40px;
    }
    .recruit .container .detail .text {
        width: 100%;
    }
    .recruit .container .detail .text h2 {
        font-size: 60px;
    }
    .recruit .container .detail .text div {
        border-radius: 30px;
        color: #F17C27;
        display: flex;
        font-size: 20px;
        font-weight: bold;
        height: 60px;
        justify-content: center;
        margin-top: 40px;
        text-decoration: none;
        width: 250px;
    }
    .recruit .container .detail .img {
        width: 100%;
    }
}

/* footer */
footer {
    background: #f4f4f4;
    padding: 100px 0;
}
footer .container {
    align-items: center;
    display: flex;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    text-align: center;
    width: 100%;
}
footer .container .content {
    text-align: left;
    width: 35%;
}
footer .container .content img {
    width: 150px;
}
footer .container .copy {
    text-align: right;
    width: 65%;
}
footer .container .copy p {
    color: #252628;
    font-size: 14px;
    opacity: .7;
    margin: 0;
}
@media screen and (max-width:1480px) {
    footer .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:767px) {
    footer {
        padding: 50px 0;
    }
    footer .container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    footer .container .content {
        text-align: center;
        width: 100%;
    }
    footer .container .copy {
        text-align: center;
        width: 100%;
    }
}

/* ABOUT list */
.about-list {
    padding: 300px 0 200px;
}
.about-list .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.about-list .container .title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    transition: .4s;
    width: 100%;
}
.about-list .container .title h2 {
    color: #F17C27;
    font-size: 100px;
}
.about-list .container .list {
    border-top: 1px solid #E9E9E9;
}
.about-list .container .list li {
    border-bottom: 1px solid #E9E9E9;
    display: flex;
    padding: 40px 0;
    text-align: left;;
}
.about-list .container .list li .head {
    font-weight: bold;
    width: 30%;
}
.about-list .container .list li .value {
    color: #252628;
    font-size: 14px;
    opacity: .7;
    width: 60%;
}
@media screen and (max-width:1480px) {
    .about-list .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:1024px) {
    .about-list {
        padding: 200px 0 100px;
    }
}
@media screen and (max-width:767px) {
    .about-list {
        padding: 200px 0 100px;
    }
    .about-list .container {
        padding: 0 20px;
    }
    .about-list .container .title {
        margin-bottom: 40px;
    }
    .about-list .container .title h2 {
        font-size: 60px;
    }
}

/* SERVICE list */
.service-list {
    padding: 300px 0 200px;
}
.service-list .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.service-list .container .title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    transition: .4s;
    width: 100%;
}
.service-list .container .title h2 {
    color: #F17C27;
    font-size: 100px;
}
.service-list .container .list li {
    align-items: center;
    display: flex;
    text-align: left;
}
.service-list .container .list li .img {
    font-weight: bold;
    width: 40%;
}
.service-list .container .list li .img img {
    width: 100%;
}
.service-list .container .list li .detail {
    padding-left: 40px;
    width: 60%;
}
.service-list .container .list li .detail h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}
.service-list .container .list li .detail p {
    color: #252628;
    font-size: 14px;
    opacity: .7;
}
.service-list .container .list li .detail a {
    text-decoration: none;
}
.service-list .container .list li .detail .button div {
    align-items: center;
    background: #F17C27;
    border-radius: 40px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08), 0 10px 24px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 80px;
    justify-content: center;
    margin-top: 40px;
    text-decoration: none;
    width: 300px;
}
.service-list .container .list li.reverse {
    flex-direction: row-reverse;
}
.service-list .container .list li.reverse .detail {
    padding-left: 0;
}
@media screen and (max-width:1480px) {
    .service-list .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:1024px) {
    .service-list {
        padding: 200px 0 100px;
    }
    .service-list .container .list li {
        margin-bottom: 40px;
    }
    .service-list .container .list li .img {
        width: 50%;
    }
    .service-list .container .list li .detail {
        width: 50%;
    }
}
@media screen and (max-width:767px) {
    .service-list {
        padding: 200px 0 100px;
    }
    .service-list .container {
        padding: 0 20px;
    }
    .service-list .container .title {
        margin-bottom: 40px;
    }
    .service-list .container .title h2 {
        font-size: 60px;
    }
    .service-list .container .list li {
        flex-direction: column;
    }
    .service-list .container .list li .img {
        width: 100%;
    }
    .service-list .container .list li .detail {
        padding: 0;
        width: 100%;
    }
    .service-list .container .list li.reverse {
        flex-direction: column;
    }
    .service-list .container .list li.reverse .img {
        margin: 40px 0;
    }
    .service-list .container .list li .detail .button div {
        border-radius: 30px;
        display: flex;
        font-size: 20px;
        font-weight: bold;
        height: 60px;
        justify-content: center;
        margin-top: 40px;
        text-decoration: none;
        width: 250px;
    }
}

/* NEWS list */
.news-list {
    padding: 300px 0 200px;
}
.news-list .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.news-list .container .title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    transition: .4s;
    width: 100%;
}
.news-list .container .title h2 {
    color: #F17C27;
    font-size: 100px;
}
.news-list .container ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: .4s;
    transition-delay: .4s;
}
.news-list .container ul li {
    width: 100%;
}
.news-list .container ul li a {
    display: flex;
    gap: 30px;
    text-align: left;
    text-decoration: none;
}
.news-list .container ul li a img {
    margin-bottom: 20px;
    width: 300px;
}
.news-list .container ul li a h3 {
    color: #252628;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: .2s;
}
.news-list .container ul li a p {
    color: #252628;
    font-size: 14px;
    margin: 0;
    opacity: .7;
}
.news-list .container ul li a:hover h3 {
    color: #F17C27;
}
.news-list .container .pager {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    letter-spacing: 0rem;
    margin-top: 100px;
}
.news-list .container .pager .back,
.news-list .container .pager .next {
    align-items: center;
    border-radius: 24px;
    color: #252628;
    display: flex;
    font-weight: bold;
    height: 48px;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: .2s;
    width: 48px;
}
.news-list .container .pager .back img,
.news-list .container .pager .next img {
    width: 20px;
}
.news-list .container .pager .back:hover,
.news-list .container .pager .next:hover {
    background: #FCE5D4;
}
.news-list .container .pager .number {
    align-items: center;
    border-radius: 24px;
    color: #252628;
    display: flex;
    font-weight: bold;
    height: 48px;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: .2s;
    width: 48px;
}
.news-list .container .pager a.number:hover {
    background: #FCE5D4;
}
.news-list .container .pager .number.on {
    color: #F17C27;
}
@media screen and (max-width:1480px) {
    .news-list .container {
        padding: 0 40px;
    }
    .news-list .container ul li {
        width: 100%;
    }
}
@media screen and (max-width:1024px) {
    .news-list {
        padding: 200px 0 100px;
    }
}
@media screen and (max-width:767px) {
    .news-list {
        padding: 200px 0 100px;
    }
    .news-list .container {
        padding: 0 20px;
    }
    .news-list .container ul li a {
        flex-direction: column;
        gap: 20px;
    }
    .news-list .container ul li a img {
        margin: 0;
        width: 100%;
    }
}

/* NEWS post */
.news-post {
    padding: 300px 0 200px;
}
.news-post .container {
    margin: 0 auto;
    max-width: 800px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.news-post .container .title {
    margin-bottom: 80px;
    text-align: left;
    transition: .4s;
    width: 100%;
}
.news-post .container .title h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}
.news-post .container .thumbnail {
    margin-bottom: 80px;
}
.news-post .container .thumbnail img {
    width: 100%;
}
.news-post .container .detail {
    margin-bottom: 80px;
    text-align: left;
}
.news-post .container .detail p {
    color: #252628;
    opacity: .7;
}
.news-post .container .bottom a {
    align-items: center;
    color: #252628;
    display: flex;
    font-weight: bold;
    gap: 8px;
    text-decoration: none;
    transition: .2s;
}
.news-post .container .bottom a img {
    width: 20px;
}
.news-post .container .bottom a:hover {
    color: #F17C27;
}
.news-post .container .bottom a:hover img {
    filter: invert(50%) sepia(74%) saturate(659%) hue-rotate(343deg) brightness(99%) contrast(90%);
}
@media screen and (max-width:1480px) {
    .news-post .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:1024px) {
    .news-post {
        padding: 200px 0 100px;
    }
}
@media screen and (max-width:767px) {
    .news-post {
        padding: 200px 0 100px;
    }
    .news-post .container {
        padding: 0 20px;
    }
    .news-post .container .title {
        margin-bottom: 40px;
    }
    .news-post .container .title h2 {
        font-size: 32px;
    }
    .news-post .container .thumbnail {
        margin-bottom: 40px;
    }
    .news-post .container .detail {
        margin-bottom: 40px;
        text-align: left;
    }
}

/* RECRUIT list */
.recruit-list {
    padding: 300px 0 200px;
}
.recruit-list .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.recruit-list .container .title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    transition: .4s;
    width: 100%;
}
.recruit-list .container .description {
    color: #252628;
    font-size: 16px;
    margin-bottom: 80px;
    opacity: .7;
    text-align: left;
}
.recruit-list .container .title h2 {
    color: #F17C27;
    font-size: 100px;
}
.recruit-list .container .list {
}
.recruit-list .container .list .recruit-section {
    border-bottom: 1px solid #E9E9E9;
    border-top: 1px solid #E9E9E9;
    display: flex;
}
.recruit-list .container .list .recruit-section .job {
    padding: 40px 0;
    text-align: left;
    width: 30%;
}
.recruit-list .container .list .recruit-section .job h3 {
    margin: 0;
}
.recruit-list .container .list .recruit-section .detail {
    width: 70%;
}
.recruit-list .container .list .recruit-section li {
    border-bottom: 1px solid #E9E9E9;
    display: flex;
    padding: 40px 0;
    text-align: left;;
}
.recruit-list .container .list .recruit-section li:last-child {
    border-bottom: none;
}
.recruit-list .container .list li .head {
    font-weight: bold;
    width: 30%;
}
.recruit-list .container .list li .value {
    color: #252628;
    font-size: 14px;
    opacity: .7;
    width: 70%;
}
.recruit-list .container .buttons {
    margin-top: 80px;
}
.recruit-list .container .buttons a {
    text-align: center;
    text-decoration: none;
}
.recruit-list .container .buttons a div {
    align-items: center;
    background: #F17C27;
    border-radius: 40px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08), 0 10px 24px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 80px;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
    width: 300px;
}
@media screen and (max-width:1480px) {
    .recruit-list .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:1024px) {
    .recruit-list {
        padding: 200px 0 100px;
    }
}
@media screen and (max-width:767px) {
    .recruit-list {
        padding: 200px 0 100px;
    }
    .recruit-list .container {
        padding: 0 20px;
    }
    .recruit-list .container .title {
        margin-bottom: 40px;
    }
    .recruit-list .container .title h2 {
        font-size: 60px;
    }
    .recruit-list .container .list .recruit-section {
        border-top: none;
        flex-direction: column;
    }
    .recruit-list .container .list .recruit-section .job {
        padding: 40px 0;
        width: 100%;
    }
    .recruit-list .container .list .recruit-section .detail {
        border-top: 1px solid #E9E9E9;
        width: 100%;
    }
    .recruit-list .container .buttons {
        margin-top: 40px;
    }
    .recruit-list .container .buttons a div {
        border-radius: 30px;
        display: flex;
        font-size: 20px;
        font-weight: bold;
        height: 60px;
        justify-content: center;
        margin-top: 40px;
        text-decoration: none;
        width: 250px;
    }
}

/* CONTACT list */
.contact-list {
    padding: 300px 0 200px;
}
.contact-list .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.contact-list .container .title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    transition: .4s;
    width: 100%;
}
.contact-list .container .title h2 {
    color: #F17C27;
    font-size: 100px;
    text-align: left;
}
.contact-list .container .form li {
    display: flex;
    margin-bottom: 40px;
}
.contact-list .container .form li .head {
    padding: 20px 0;
    text-align: left;
    width: 30%;
}
.contact-list .container .form li .head p {
    margin-bottom: 0;
}
.contact-list .container .form li .head .inquiry {
    background: #D34348;
    border-radius: 4px;
    color: #fff;
    margin-left: 8px;
    padding: 4px 8px;
}
.contact-list .container .form li .value {
    width: 70%;
}
.contact-list .container .form li .value p {
    margin-bottom: 0;
}
.contact-list .container .form li .value input {
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
}
.contact-list .container .form li .value input[type="file"],
.contact-list .container .form li .value input.file {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
}
.contact-list .container .form li .value select {
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
}
.contact-list .container .form li .value textarea {
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    height: 300px;
    padding: 20px;
    width: 100%;
}
.contact-list .container .recaptcha img {
    margin: 50px auto 0;
    max-width: 300px;
    width: 100%;
}
.contact-list .container .recaptcha .cf7sr-g-recaptcha {
    position: relative;
    margin: 80px auto 0;
    left: 50%;
    margin-left: -152px;
}
.contact-list .container .recaptcha .wpcf7-not-valid-tip {
    text-align: center;
}
.contact-list .container .buttons {
    margin-top: 80px;
}
.contact-list .container .buttons p {
    margin-bottom: 0;
}
.contact-list .container .buttons a {
    text-decoration: none;
}
.contact-list .container .buttons .wpcf7-spinner {
    display: none;
}
.contact-list .container .buttons a div {
    align-items: center;
    background: #F17C27;
    border-radius: 40px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08), 0 10px 24px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 80px;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
    width: 300px;
}
.contact-list .wpcf7 form input[type="submit"] {
    align-items: center;
    background: #F17C27;
    background-image: url(../images/arrow-white.svg);
    background-position: right 36px center;
    background-repeat: no-repeat;
    background-size: 20px auto;
    border: none;
    border-radius: 40px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08), 0 10px 24px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    font-weight: bold;
    height: 80px;
    justify-content: center;
    margin: 0 auto;
    padding: 0px 40px 0 20px;
    text-decoration: none;
    width: 300px;
    letter-spacing: 0.2rem;
}
.contact-list .wpcf7-not-valid-tip {
    text-align: left;
}
@media screen and (max-width:1480px) {
    .contact-list .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:1024px) {
    .contact-list {
        padding: 200px 0 100px;
    }
}
@media screen and (max-width:767px) {
    .contact-list {
        padding: 200px 0 100px;
    }
    .contact-list .container {
        padding: 0 20px;
    }
    .contact-list .container .title {
        margin-bottom: 40px;
    }
    .contact-list .container .title h2 {
        font-size: 60px;
    }
    .contact-list .container .form li {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .contact-list .container .form li .head {
        padding: 20px 0;
        width: 100%;
    }
    .contact-list .container .form li .value {
        width: 100%;
    }
    .contact-list .container .recaptcha img {
        margin: 20px auto 0;
    }
    .contact-list .container .buttons {
        margin-top: 40px;
    }
    .contact-list .container .buttons a div {
        border-radius: 30px;
        display: flex;
        font-size: 20px;
        font-weight: bold;
        height: 60px;
        justify-content: center;
        margin-top: 40px;
        text-decoration: none;
        width: 280px;
    }
    .contact-list .wpcf7 form input[type="submit"] {
        border-radius: 30px;
        height: 60px;
        width: 280px;
    }
}

/* THANKS */
.thanks {
    padding: 300px 0 200px;
}
.thanks .container {
    margin: 0 auto;
    max-width: 1000px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.thanks .container .title {
    margin-bottom: 80px;
    transition: .4s;
    width: 100%;
}
.thanks .container .thumbnail {
    margin-bottom: 80px;
}
.thanks .container .title h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}
.thanks .container .thumbnail img {
    width: 100%;
}
.thanks .container .detail {
    margin-bottom: 80px;
}
.thanks .container .detail p {
    color: #252628;
    margin-bottom: 40px;
    opacity: .7;
}
.thanks .container .buttons {
    margin-top: 40px;
}
.thanks .container .buttons a {
    text-decoration: none;
}
.thanks .container .buttons a div {
    align-items: center;
    background: #F17C27;
    border-radius: 40px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08), 0 10px 24px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    height: 80px;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
    width: 300px;
}
@media screen and (max-width:1480px) {
    .thanks .container {
        padding: 0 40px;
    }
}
@media screen and (max-width:1024px) {
    .thanks {
        padding: 200px 0 100px;
    }
}
@media screen and (max-width:767px) {
    .thanks {
        padding: 200px 0 100px;
    }
    .thanks .container {
        padding: 0 20px;
    }
    .thanks .container .title {
        margin-bottom: 40px;
    }
    .thanks .container .title h2 {
        font-size: 32px;
    }
    .thanks .container .thumbnail {
        margin-bottom: 40px;
    }
    .thanks .container .detail {
        margin-bottom: 40px;
        text-align: left;
    }
}
