@charset "Shift_JIS";
@font-face {
    font-family: 'myfont';
    src: url('/fonts/MPLUSRounded1c-Regular.ttf') format('truetype');
    transform: rotate(0.03deg);
    -moz-transform: rotate(0.03deg);
    -ms-transform: rotate(0.03deg);
    -o-transform: rotate(0.03deg);
    -webkit-transform: rotate(0.03deg);
}
* {
    font-family: 'myfont', sans-serif;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
    padding: 0;
    transition: .5s;
    -webkit-appearance: none;
    /* transform: rotate(0.03deg); */
}
html,
body {
    font-family: 'myfont', sans-serif;
    background: #000000;
    color: #FFFFFF;
    width: 100%;
}

body p, body span, body dl, h1, h2, h3, h4, h5, h6{
    transform: rotate(0.03deg);
    -moz-transform: rotate(0.03deg);
    -ms-transform: rotate(0.03deg);
    -o-transform: rotate(0.03deg);
    -webkit-transform: rotate(0.03deg);
}

section {
    width: 100%;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
}

em,
i {
    vertical-align: middle;
}

a {
    color: #FFFFFF;
}
a:hover {
    color: #FF95B2;
}


/* Windows Chromeで画像がぼやける事象の対処 */

img {
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;

}

/* アニメーションスタイル */
/* アニメーション前 */
/* .u-fade-type-up{
    transform: translateY(50px);
    opacity: 0;
} */

/* トリガー発火でis-activeを付与 */
/* .u-fade-type-up.is-active{
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
} */


/* フォーム */

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea,
select,
label {
    outline: none;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea {
    padding: 4px;
    border: 1px solid #b6b6b6;
    border-radius: 3px;
    box-sizing: border-box;
    background-color: #fbfbfb;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus {
    border-color: rgba(3, 169, 244, 1.00) !important;
    box-shadow: 0 0 2px 0 rgba(3, 169, 244, 0.5);
    background-color: #FFFFFF;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.input_area label {
    margin-bottom: 4px;
}

input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="url"]:disabled,
textarea:disabled {
    background-color: #b6b6b6;
}

form {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
.input_area , input {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
}
.textarea-auto {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.radio-input {
    display: none;
}
.radio-label {
    display: flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}
.radio-label::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(images/radio_button.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 6px;
}
input:checked + .radio-label::before {
    background-image: url(images/radio_button_checked.svg);
}
.ico-required::after {
    /* content: '必須'; */
    content: '\5FC5\9808';
    display: inline;
    color: #FF372B;
    border: 1px solid #FF372B;
    border-radius: 2px;
    padding: 0 4px;
    font-size: 12px;
    margin-left: 6px;
}
.btn_submit_div{
    margin-top: 60px;
}


/* PC表示 */

.full {
    width: 100%;
}

.half {
    width: 70%;
}

.pc-hidden {
    display: none !important;
}

.sp-hidden {
    display: block !important;
}

.sp-disp {
    display: none;
}

section{
    width: 100%;
    display: flex;
    justify-content: center;
}

.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 50px;
}

h1,
h1 .inn {
    font-size: 64px;
    text-align: center;
}

h2,
h2 .inn {
    font-size: 48px;
}

.read {
    line-height: 34px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    max-width: 90%;
    height: 80px;
    font-size: 32px;
    color: #000000;
    background: #FF95B2;
    border-radius: 40px;
    text-decoration: none;
    margin: 0 auto;
    border: none;
    cursor: pointer;
    transition: .5s;
}
.btn:hover {
    /* background: #fbfbfb; */
    color: #000000;
}

.list {
    width: 100%;
}
.list li {
    padding: 20px 0;
    border-bottom: 1px solid #999;
    display: flex;
    justify-content: space-between;
}
.list li h3 {
    width: 5em;
}
.list li div {
    width: calc(100% - 5em - 10px);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 10px  50px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}
header .btn {
    height: auto;
    width: auto;
    max-width: none;
    font-size: 16px;
    padding: 4px 16px;
}
header h1 {
    height: 50px;
}
header h1 a {
    display: block;
}
header h1 img {
    height: 50px;
}

.top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 10px  50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: none;
}
.top-header .btn {
    height: auto;
    width: auto;
    max-width: none;
    font-size: 16px;
    padding: 4px 16px;

}
.top-header h1 {
    display: none;
}
#fixed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 10px  50px;
    position: fixed;
    top: -70px;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}
#fixed-header .btn {
    height: auto;
    width: auto;
    max-width: none;
    font-size: 16px;
    padding: 4px 16px;
}
#fixed-header h1 {
    height: 50px;
}
#fixed-header h1 a {
    display: block;
}
#fixed-header h1 img {
    height: 50px;
}

header img,
#fixed-header img {
    height: 50px;
}

.g-navi {
    display: flex;
    align-items: center;
}
.g-navi li{
    margin-right: 30px;
}
.g-navi li:last-child{
    margin-right: 0;
}
header a,
#fixed-header a {
    text-decoration: none;
}

#fixed-header.is-show {
    top: 0;
}

#kv{
    max-height: 850px;
    background-image: url(images/kv_pc.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    align-items: center;
    justify-content: left;
}
#kv .inner {
    max-width: 1200px;
    margin: 100px 0 100px 50px ;
}
#kv img {
    width: 13.5vw;
    max-width: 240px;
    margin-bottom: 40px;
}
#kv h1,
#kv h1 .inn {
    font-size: 4vw;
    margin-bottom: 60px;
    text-align: left;
}

#profile .inner {
    margin:  200px 50px;
    display: flex;
    justify-content: space-between;
}
#profile img {
    width: 45%;
}
#profile .text {
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#profile h2 {
    margin-bottom: 30px;
}

#advance {
    height: 850px;
    background-image: url(images/img02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    align-items: center;
}
#advance .text {
    background-color: rgba(0, 0, 0, 0.7);
    width: 45%;
    height: 500px;
    max-height: 70%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#advance h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

#recruit {
    flex-direction: column;
    margin: 60px 0;

}
#recruit .waku {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
}
#recruit .waku h2 {
    font-size: 64px;
    position: absolute;
    top: 0;
    left: 50px;
}
#recruit .waku .read {
    border: 1px solid #FFFFFF;
    border-right: none;
    width: 90%;
    padding: 80px 120px 80px 50px;
    margin-top: 56px;
}
#recruit .cta {
    margin: 0 auto;
}
#recruit .cta .read {
    margin: 54px 0;
    font-size: 36px;
    line-height: 1.5em;
    text-align: center;
}

#company {
    margin: 100px auto;
}
#company .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#company h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}
#company .list {
    width: 45%;
}

.map {
    width: 45%;
    height: auto;
    border-radius: 3px;
}

#formWrapper,
#thxMessage {
    display: block;
    margin: 100px 0;
    padding: 0 50px;
}
#thxMessage h2 {
    text-align: center;
    margin-bottom: 60px;
}
#thxMessage p {
    text-align: center;
    margin-bottom: 60px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 50px;
}
footer .logo {
    display: flex;
    align-items: center;
}
footer .logo  img {
    height: 50px;
    margin-right: 10px;
}
footer .right {
    display: flex;
    flex-direction: column;
}
footer .g-navi {
    justify-content: right;
    margin-bottom: 6px;
}
footer .g-navi a {
    font-size: 12px;
    text-decoration: none;
}
footer .g-navi li {
    margin: 0;
}
footer .copyright{
    font-size: 12px;
    color: #999;
}


#title {
    padding: 100px 0 60px;
    border-bottom: 1px solid #FFFFFF;
}
#title p {
    margin-top: 60px;
}
#title .anchor {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}
#title .anchor li {
    margin-right: 10px;
}
#title .anchor li:last-child {
    margin-right: 0;
}
#title .anchor a {
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #FFFFFF;
    display: flex;
}
#title .anchor a::after {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(images/expand_more.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: 6px;
}

.recruit-sec .inner {
    border-bottom: 1px solid #FFFFFF;
    padding: 50px 0 100px;
}
.recruit-sec:last-child .inner {
    border-bottom: none;
}
.recruit-sec h2 {
    text-align: center;
    margin-bottom: 60px;
}
.recruit-sec ul {
    margin-bottom: 60px;
}


/* SP表示 */

@media (max-width: 479px) {
    .pc-hidden {
        display: block !important;
    }
    .sp-hidden {
        display: none !important;
    }
    .pc-disp {
        display: none !important;
    }
    .sp-disp {
        display: inline;
    }
    .inner{
        margin: 0 20px;
    }
    .btn {
        font-size: 24px;
    }
    h1,
    h1 .inn {
        font-size: 14vw;
    }
    h2,
    h2 span {
        font-size: 32px;
    }
    .top-header,
    header,
    #fixed-header {
        padding: 10px 20px;
    }
    .g-navi li{
        margin-right: 20px;
    }
    #kv{
        height: 90vh;
        background-image: url(images/kv_sp.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
        align-items: center;
        justify-content: left;
    }
    #kv .inner {
        margin: 0 20px;
    }
    #kv h1,
    #kv h1 .inn {
        font-size: 12vw;
        margin-bottom: 30px;
    }
    #kv img {
        display: block;
        width: 30vw;
        margin-bottom: 30px;
    }
    #profile .inner {
        justify-content: left;
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    #profile .text {
        margin: 0 20px 30px;
    }
    #profile h2,
    #profile h2 .inn {
        font-size: 10vw;
        /* text-align: right; */
    }
    #profile img {
        display: none;
    }
    #advance {
        height: auto;
        align-items: normal;
        background-size: 130%;
        background-position: top right;
    }
    #advance .inner{
        margin-left: 0;
    }
    #advance .text{
        width: 100%;
        height: auto;
        max-height: none;
        margin-top: 150px;
        /* position: absolute; */
    }
    #recruit .waku h2 {
        font-size: 48px;
        left: 20px;
    }
    #recruit .waku .read {
        padding: 40px 20px;
        margin-top: 46px;
    }
    #recruit .cta .read {
        font-size: 6vw;
        margin-bottom: 30px;
    }
    #company .inner {
        flex-direction: column;
    }
    #company h2 {
        margin-bottom: 30px;
    }
    #company .list {
        width: 100%;
        margin-bottom: 20px;
    }
    .map {
        width: 100%;
    }
    #formWrapper,
    #thxMessage {
        margin: 60px 0;
        padding: 0 20px;
    }
    #thxMessage h2 {
        font-size: 7.5vw;
        margin-bottom: 30px;
    }
    #thxMessage p {
        margin-bottom: 30px;
    }
    #formWrapper h2 {
        margin-bottom: 30px;
    }
    .input_area {
        flex-direction: column;
    }
    .btn_submit_div {
        margin-top: 30px;
    }
    footer {
        flex-direction: column;
        justify-content: start;
        padding: 20px 0;
    }
    footer .logo {
        margin-bottom: 16px;
    }
    #title {
        padding: 50px 0;
    }
    #title p {
        margin-top: 30px;
    }
    #title .anchor li {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    #title .anchor a {
        position: relative;
    }
    #title .anchor a::after {
        position: absolute;
        right: 10px;
    }
    .recruit-sec .inner {
        padding: 30px 20px 60px;
    }
    .recruit-sec h2 {
        margin-bottom: 30px;
    }
    footer img {
        height: 50px;
        display: none;
    }
    footer .g-navi {
        justify-content: center;
    }
    footer .g-navi a {
        font-size: 14px;
    }
}

/* animation */
.anim-box {
    opacity: 0;
}
/* フェードイン */
.anim-box.fadein.is-animated {
    animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
/* スライドイン */
.anim-box.slidein.is-animated {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
/* ズームイン */
.anim-box.zoomin.is-animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
/* キラッとする */
.anim-box.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.anim-box.kiran::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.anim-box.kiran:hover::before {
    animation: kiran 0.5s linear;
}

/* 文字が滑らかに表示される */
.smooth {
    clip-path: inset(0 100% 0 0);
    /* display: inline-block; */
    transition: 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}
.smooth.is-animated {
    clip-path: inset(0);
}

/*文字がぬるりと現れる */
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
    display: block;
}

.matrix .bg-wrap {
    overflow: hidden;
    opacity: 0;
}

.matrix .bg-wrap + .bg-wrap {
    margin-top: 10px;
}

.matrix .bg-wrap .inn {
    opacity: 0;
    transform: matrix(1, 0, 0, 1, 0, 100);
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-animated .bg-wrap {
    opacity: 1;
}

.matrix.is-animated .bg-wrap .inn {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slideIn {
    0% {
        transform: translateX(180px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
    }
    40%,100% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes kiran {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }
    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.6;
    }
    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.4;
    }
    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.2;
    }
    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
