@charset "UTF-8";

/* 共通 */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
var,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
select,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    vertical-align: bottom;
    box-sizing: border-box;
    line-break: strict;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block
}

ul,
li {
    list-style: none
}

sub {
    vertical-align: baseline;
    line-height: 1;
}

nav li:before {
    content: ""
}

a {
    text-decoration: underline;
    color: #262626;
    transition: .3s;
}

a:hover {
    color: #767676;
    text-decoration: underline;
}

html {
    font-size: 62.5%;
    overflow: auto
}

html.is-fixed {
    overflow: hidden
}

body {
    min-width: 320px;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #262626;
    font-size: 1.5rem;
    line-height: 2;
    -webkit-text-size-adjust: 100%
}

*:focus {
    outline: none
}

small {
    font-size: .8em;
    vertical-align: baseline
}

img {
    max-width: 100%;
}

.en {
    font-family: 'Alata', sans-serif !important;
}

.sp {
    display: none;
}

@media only screen and (max-width:768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}


/* ヘッダー */

#header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 10px;
    min-width: 1080px;
    transition: .5s;
}

#header.fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 0;
    min-width: 1080px;
    background: #fff;
}

#header .inner {
    max-width: 1280px;
    height: 80px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

#header .logo {
    width: 200px;
    display: block;
}

#header .lang {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 130px;
}

#header .lang span {
    width: 100%;
    display: block;
    text-align: center;
    color: #0caa92;
    border: 1px solid #0caa92;
    border-radius: 16px;
    font-size: 13px;
    line-height: 30px;
    padding: 0 10px 0 20px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/header_lang.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left 10px center;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

#header .lang span::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1px solid #0caa92;
    border-bottom: 1px solid #0caa92;
    position: absolute;
    right: 10px;
    top: calc(50% - 4px);
    transform: rotate(45deg);
}

#header .lang ul {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(170, 170, 170, 0.2);
    display: none;
}

#header .lang:hover ul {
    display: block;
}

#header .lang ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 2.4em;
    color: #0caa92;
}

#header .lang ul li a:hover {
    color: #1e82c8;
}

#header .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 70px;
}

#header .nav>li {
    margin-right: 30px;
    position: relative;
}

#header .nav>li a {
    display: block;
    font-size: 14px;
    line-height: 2.4em;
    color: #262626;
    text-align: center;
    position: relative;
    text-decoration: none;
}

#header .nav>li:hover::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #1e82c8;
    position: absolute;
    left: calc(50% - 11px);
    top: 100%;
    border-radius: 50%;
}

#header .nav .sub>a {
    padding-right: 15px;
}

#header .nav .sub>a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1px solid #1e82c8;
    border-bottom: 1px solid #1e82c8;
    position: absolute;
    right: 0;
    top: calc(50% - 5px);
    transform: rotate(45deg);
}

#header .nav .sub .sub_menu {
    width: 240px;
    position: absolute;
    left: calc(50% - 120px);
    top: 100%;
    display: none;
    justify-content: center;
    padding-top: 20px;
}

#header .nav .sub:hover>.sub_menu {
    display: flex;
}

#header .nav .sub ul {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(170, 170, 170, 0.2);
    padding: 10px 20px;
}

#header .nav .sub ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 2.4em;
    white-space: pre;
}

#header .nav .sub ul li a:hover {
    color: #1e82c8;
}

#header #spMenuWrap {
    display: none;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    /*    #header {
        width: calc(100vw - 20px) !important;
        min-width: 0 !important;
    }*/
    #header.fixed {
        width: 100vw!important;
    }
    #header .inner {
        width: 100%;
        height: 60px;
    }
    #header .logo {
        width: 110px;
    }
    #header .nav {
        margin-left: 15px;
    }
    #header .nav>li {
        margin-right: 15px;
    }
    #header .nav>li a {
        font-size: 11px;
        line-height: 2.4em;
        text-decoration: none;
    }
    #header .nav .sub>a {
        padding-right: 10px;
    }
    #header .nav .sub ul li a {
        font-size: 11px;
    }
    #header .lang {
        right: 10px;
        width: 100px;
    }
    #header.fixed .lang {
        right: 20px;
    }
    #header .lang span {
        font-size: 11px;
        line-height: 30px;
        padding: 0 0 0 10px;
        background-size: 16px auto;
        background-position: left 7px center;
    }
    #header .lang span::after {
        right: 5px;
    }
    #header .lang ul li a {
        font-size: 11px;
    }
}

@media only screen and (max-width:768px) {
    #header {
        padding: 0;
        min-width: 0;
    }
    #header.fixed {
        min-width: 0;
    }
    #header .inner {
        max-width: 100%;
        padding: 10px;
        height: 60px;
        border-radius: 0;
    }
    #header .logo {
        width: 126px;
        z-index: 2;
    }
    #header .lang {
        display: none;
    }
    #header .nav {
        display: none;
    }
    #header #spContact {
        width: 44px;
        position: absolute;
        z-index: 2;
        top: calc(50% - 22px);
        right: 60px;
    }
    #header #spMenu {
        background-color: transparent;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
        cursor: pointer;
        height: 60px;
        width: 60px;
    }
    #header #spMenu span {
        position: absolute;
        left: 20px;
        width: 20px;
        height: 2px;
        background-color: #1e82c8;
        transition: .3s;
    }
    #header #spMenu span:nth-of-type(1) {
        top: calc(50% - 8px);
    }
    #header #spMenu span:nth-of-type(2) {
        top: calc(50% - 1px);
    }
    #header #spMenu span:nth-of-type(3) {
        top: calc(50% + 6px);
    }
    #header #spMenu.open span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 28px;
    }
    #header #spMenu.open span:nth-of-type(2) {
        opacity: 0;
    }
    #header #spMenu.open span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
    }
    #header #spMenuWrap {
        background-color: #1e82c8;
        position: absolute;
        right: -100vw;
        top: 0;
        z-index: -1;
        cursor: pointer;
        height: 100vh;
        width: 90%;
        padding: 60px 0 0 0;
        display: block;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, .35);
        transition: .5s;
    }
    #header #spMenuWrap.open {
        right: 0;
    }
    #header .sp_menu_inner {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        overflow: auto;
    }
    #header .sp_menu_inner a {
        text-decoration: none;
        color: #fff;
    }
    #header .sp_menu_ttl01 {
        border-bottom: 1px solid #fff;
        padding: 0 0 0 10vw;
        font-size: 3.6vw;
        position: relative;
    }
    #header .sp_menu_ttl01 .menu_ac {
        position: absolute;
        display: block;
        left: 0;
        top: 0;
        width: 12vw;
        height: 100%;
    }
    #header .sp_menu_ttl01 .menu_ac::before {
        content: '';
        display: block;
        width: 6vw;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 3vw;
        top: 50%;
    }
    #header .sp_menu_ttl01 .menu_ac::after {
        content: '';
        display: block;
        width: 6vw;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 3vw;
        top: 50%;
        transform: rotate(-90deg);
        transition: .5s;
    }
    #header .sp_menu_ttl01 .menu_ac.open::after {
        transform: rotate(0deg);
    }
    #header .sp_menu_ttl01 a {
        position: relative;
        display: block;
        padding: 4vw 3vw;
    }
    #header .sp_menu_ttl01 a::after {
        content: '';
        display: block;
        width: 2vw;
        height: 2vw;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
        transform: rotate(-45deg);
        position: absolute;
        right: 5vw;
        top: calc(50% - 1vw);
    }
    #header .sp_menu_list01 {
        padding: 0 0 0 10vw;
        position: relative;
        display: none;
    }
    #header .sp_menu_list01 li {
        border-bottom: 1px solid #fff;
    }
    #header .sp_menu_list01 li:last-child::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #fff;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    #header .sp_menu_list01 a {
        font-size: 3.2vw;
        position: relative;
        display: block;
        padding: 2vw 3vw;
    }
    #header .sp_menu_list01 a::after {
        content: '';
        display: block;
        width: 2vw;
        height: 2vw;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
        transform: rotate(-45deg);
        position: absolute;
        right: 5vw;
        top: calc(50% - 1vw);
    }
    #header .sp_menu_recruit {
        margin: 6vw auto;
        width: 50vw;
    }
    #header .sp_menu_recruit a {
        display: block;
        text-align: center;
        font-size: 3.6vw;
        line-height: 1em;
        color: #1e82c8;
        background: #fff;
        padding: 1.5em;
        border-radius: 4em;
    }
    #header .sp_menu_lang {
        border-top: 1px solid #fff;
        padding: 0 5vw 0 20vw;
        background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon09.svg);
        background-repeat: no-repeat;
        background-size: 10vw auto;
        background-position: left 4vw center;
    }
    #header .sp_menu_lang ul {
        display: flex;
        justify-content: flex-start;
        padding: 4vw 0;
    }
    #header .sp_menu_lang ul li {
        width: 30%;
        margin-right: 5%;
    }
    #header .sp_menu_lang ul li a {
        display: block;
        text-align: center;
        font-size: 3vw;
        line-height: 1em;
        color: #fff;
        background: #1e82c8;
        padding: .5em;
        border-radius: 3em;
        border: 1px solid #fff;
    }
    #header .sp_menu_lang ul li.current-lang a {
        color: #1e82c8;
        background: #fff;
    }
}


/* フッター */

#footer {
    background: #464646;
    padding: 70px 0;
    position: relative;
}

#footer .scroll_top {
    width: 64px;
    height: 64px;
    position: absolute;
    z-index: 1;
    top: -32px;
    left: calc(50% - 32px);
    border-radius: 50%;
    background-color: #1e82c8;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow01.svg);
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: center;
}

#footer .inner {
    max-width: 1280px;
    padding: 0 20px;
    margin: auto;
}

#footer a {
    text-decoration: none;
}

#footer .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #aaaaaa;
    padding-bottom: 40px;
}

#footer .head .link a {
    color: #fff;
    position: relative;
    padding-right: 40px;
}

#footer .head .link a::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: calc(50% - 15xp);
    border-radius: 50%;
    background-color: #1e82c8;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 13px auto;
    background-repeat: no-repeat;
    background-position: center;
}

#footer .head .link a:hover {
    color: #1e82c8;
}

#footer .footer_menu {
    width: 860px;
    margin-right: 0;
    margin-left: auto;
}

#footer .footer_menu p {
    color: #aaaaaa;
    font-size: 13px;
    min-width: 18%;
}

#footer .footer_contents {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #aaaaaa;
    padding: 30px 0;
    line-height: 1.5;
}

#footer .footer_menu ul {
    margin-right: 50px;
}

#footer .footer_menu ul li {
    padding-bottom: 0.6em;
}

#footer .footer_menu ul li:last-child {
    padding-bottom: 0;
}

#footer .footer_menu li a {
    color: #aaaaaa;
    font-size: 13px;
    text-decoration: none;
}

#footer .footer_menu li a:hover {
    color: #1e82c8;
}

#footer .footer_menu li.top a {
    color: #fff;
    font-size: 15px;
}

#footer .footer_menu li.top a:hover {
    color: #1e82c8;
}

#footer .footer_location {
    display: flex;
    justify-content: flex-start;
    padding: 30px 0 50px;
}

#footer .footer_location p.company,
#footer .footer_location p.address,
#footer .footer_location p.map {
    color: #fff;
    font-size: 13px;
    margin-right: 50px;
}

#footer .footer_location p.map {
    margin-right: auto;
}

#footer .footer_location p.map a {
    color: #fff;
    font-size: 13px;
    text-decoration: underline;
    position: relative;
    padding-right: 20px;
}

#footer .footer_location p.map a::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon03.svg);
    background-size: auto 18px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: calc(50% - 9px);
}

#footer .footer_location p.map a:hover {
    color: #1e82c8;
}

#footer .footer_links {
    display: flex;
    justify-content: space-evenly;
    padding: 0 0 90px;
}

#footer .footer_links .btn {
    width: 31%;
}

#footer .footer_links .btn a {
    display: block;
    text-align: center;
    background-color: #1e82c8;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 13px auto;
    background-position: right 15px center;
    background-repeat: no-repeat;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
}

#footer .footer_links .btn a:hover {
    color: #1e82c8;
    background-color: #fff;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow03.svg);
}

#footer .footer_links .btn.recruit a {
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon02.svg);
    background-size: 16px auto;
}

#footer .footer_links .btn.recruit a:hover {
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon01.svg);
}

#footer .bottom {
    width: 880px;
    margin-right: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .bottom ul {
    display: flex;
    justify-content: flex-start;
    width: 60%;
}

#footer .bottom ul li {
    margin-right: 30px;
}

#footer .bottom ul li a {
    color: #fff;
    font-size: 14px;
}

#footer .bottom ul li a:hover {
    color: #1e82c8;
}

#footer .bottom .copyright {
    color: #fff;
    font-size: 12px;
}

#footer .bottom .lang {
    color: #fff;
    font-size: 14px;
}

#footer .bottom .lang a {
    color: #fff;
    font-size: 14px;
}

#footer .bottom .lang a.current {
    color: #0caa92;
}

@media only screen and (max-width:768px) {
    #footer {
        padding: 10vw 0 4vw;
    }
    #footer .scroll_top {
        width: 10vw;
        height: 10vw;
        top: -5vw;
        left: calc(50% - 5vw);
        background-size: 4vw auto;
    }
    #footer .inner {
        max-width: 100%;
        padding: 0 6vw;
        margin: auto;
    }
    #footer .head {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 6vw;
    }
    #footer .head .logo {
        width: 30vw;
    }
    #footer .head .link {
        margin-top: 5vw;
    }
    #footer .head .link a {
        padding-right: 8vw;
    }
    #footer .head .link a::after {
        width: 6vw;
        height: 6vw;
        top: calc(50% - 3vw);
        background-size: 2.5vw auto;
    }
    #footer .footer_menu {
        width: 100%;
        margin: auto;
    }
    #footer .footer_menu p {
        font-size: 3.4vw;
        width: 100%;
    }
    #footer .footer_contents {
        padding: 5vw 0;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    #footer .footer_menu ul {
        width: 50%;
        margin: 4vw auto 0;
    }
    #footer .footer_menu li a {
        font-size: 3.4vw;
        text-decoration: none;
    }
    #footer .footer_menu li.top a {
        font-size: 3.6vw;
    }
    #footer .footer_location {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 5vw 0;
    }
    #footer .footer_location p.company,
    #footer .footer_location p.address,
    #footer .footer_location p.map {
        font-size: 3.4vw;
        line-height: 2.5em;
        margin-right: 0;
    }
    #footer .footer_location p.map {
        margin-right: auto;
    }
    #footer .footer_location p.map a {
        font-size: 3.4vw;
        padding-right: 6vw;
    }
    #footer .footer_location p.map a::after {
        content: '';
        display: block;
        width: 5vw;
        height: 5vw;
        background-size: auto 5vw;
        top: calc(50% - 2.5vw);
    }
    #footer .footer_links {
        flex-direction: column;
        padding: 0 0 12vw;
    }
    #footer .footer_links .btn {
        width: 58.6vw;
        margin: 4vw auto auto;
    }
    #footer .footer_links .btn a {
        background-size: 3vw auto;
        background-position: right 4vw center;
        padding: 2vw;
        border-radius: 1vw;
        font-size: 3.6vw;
    }
    #footer .footer_links .btn.recruit a {
        background-size: 4vw auto;
    }
    #footer .bottom {
        width: 100%;
        margin: auto;
        flex-wrap: wrap;
    }
    #footer .bottom ul {
        width: 100%;
        margin-bottom: 5vw;
    }
    #footer .bottom ul li {
        margin-right: 4vw;
    }
    #footer .bottom ul li a {
        font-size: 3.4vw;
    }
    #footer .bottom .copyright {
        font-size: 3vw;
    }
    #footer .bottom .lang {
        font-size: 3.4vw;
    }
    #footer .bottom .lang a {
        font-size: 3.4vw;
    }
}


/* コンテンツ共通 */

body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
}

#container {
    min-width: 1080px;
}

.scroll_contact {
    position: fixed;
    z-index: 20;
    right: 10px;
    bottom: 100px;
    width: 100px;
    height: 100px;
}

#main {
    padding-top: 80px;
}

.not_found #page {
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    #main {
        padding-top: 60px;
    }
}

@media only screen and (max-width:768px) {
    #container {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }
    .scroll_contact {
        display: none;
    }
    #main {
        padding-top: 60px;
    }
    .not_found #page {
        min-height: 50vh;
        padding: 6vw;
    }
}

.em-blue {
    font-weight: bold;
    color: #1E82C8;
}

.normal-number-list {
    padding-left: 4em!important;
    text-indent: -1.3em!important;
}

.evenly-table {
    width: 100%;
    table-layout: fixed;
}


/*韓国語対応*/

/* #header .lang ul li.lang-item-kr,
#header .sp_menu_lang ul li.lang-item-kr {
    display: none;
} */