@charset "UTF-8";

/* ===========================================
 * reset
 * ======================================== */

/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0
}

main {
    display: block
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit
}

pre {
    font-family: monospace, monospace;
    font-size: inherit
}

address {
    font-style: inherit
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit
}

abbr[title] {
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

svg,
img,
embed,
object,
iframe {
    vertical-align: bottom
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit
}

[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: checkbox
}

[type="radio"] {
    -webkit-appearance: radio;
    appearance: radio
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
    cursor: default
}

:-moz-focusring {
    outline: auto
}

select:disabled {
    opacity: inherit
}

option {
    padding: 0
}

fieldset {
    margin: 0;
    padding: 0;
    min-width: 0
}

legend {
    padding: 0
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

label[for] {
    cursor: pointer
}

details {
    display: block
}

summary {
    display: list-item
}

[contenteditable]:focus {
    outline: auto
}

table {
    border-color: inherit
}

caption {
    text-align: left
}

td,
th {
    vertical-align: top;
    padding: 0
}

th {
    text-align: left;
    font-weight: 700
}

/* ===========================================
 * shared
 * ======================================== */


/* Scss Document */
/*--------------------------------------------------
 設定
 --------------------------------------------------*/
/* Scss Document */
/* Scss Document */
.l_base {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .l_base {
        padding: 0 16px;
    }
}

/* Scss Document */
/* Scss Document */
.m_btn1 {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    min-width: 400px;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 10px;
    transition: all 0.3s;
}

.m_btn1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    background: url(/assets/images/ico_arrow1.svg) no-repeat;
    background-size: contain;
    width: 18px;
    height: 10px;
}

@media screen and (min-width: 768px) {
    .m_btn1:hover {
        background: #313636;
        color: #fff;
        border: 1px solid #313636;
    }
}

.m_txtLink:hover {
    text-decoration: underline;
}

.m_sectionTtl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a3068;
}

@media screen and (max-width: 767px) {
    .m_sectionTtl {
        font-size: 3.8rem;
    }
}

.m_subTtl {
    width: 140px;
    position: relative;
    color: #268dd9;
    font-size: 2.4rem;
    font-family: "Chivo", sans-serif;
}

@media screen and (max-width: 767px) {
    .m_subTtl {
        font-size: 2rem;
    }
}

.m_subTtl::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 20px;
    width: 23px;
    height: 23px;
    background: url(/assets/images/ico_ttl.svg) no-repeat;
}

.m_subTtl.v-ico1 {
    width: 160px;
}

.m_subTtl.v-ico1::after {
    right: 20px;
}

.m_subTtl.v-ico2 {
    width: 115px;
}

/* clearfix */
.clearfix {
    zoom: 1;
}

.clearfix:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    line-height: 0;
    content: ".";
}

@media screen and (min-width: 768px) {
    a[href*="tel:"] {
        text-decoration: none;
        pointer-events: none;
        cursor: default;
    }
}

@media screen and (max-width: 767px) {
    .pcOnly {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .spOnly {
        display: none;
    }
}

/* base style
 --------------------------------------------------*/
html {
    height: 100%;
    font-size: 62.5%;
}

body {
    height: 100%;
    color: #000;
    font-size: 1.6rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.6;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

@media screen and (max-width: 767px) {
    body {
        width: 100%;
    }
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* header */
.gHead {
    position: fixed;
    display: flex;
    justify-content: center;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 100;
    transition: 0.4s;
}

@media screen and (max-width: 767px) {
    .gHead {
        border-top: none;
        height: 50px;
    }
}

.gHead.is_active {
    background: transparent;
}

@media screen and (max-width: 767px) {
    .gHead.is_active {
        background: #fff;
        border-bottom: 1px solid #d4d4d4;
    }
}

.gHead.is_active .gHeadNav {
    display: none;
}

.gHead__inner {
    width: 100%;
    max-width: 1366px;
    margin: auto;
    padding: 0;
    position: relative;
    height: 100%;
}

.gHead .v-navBtn {
    position: relative;
    padding: 10px 20px 10px 45px;
    color: #fff;
    background: #1a3068;
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .gHead .v-navBtn:hover {
        opacity: 0.6;
    }
}

.gHead .v-navBtn::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 18px;
    width: 15px;
    height: 12px;
    background: url(/assets/images/ico_mail.svg) no-repeat;
}

.gHead .v-navBtn:hover {
    color: #fff;
}

.gHead.is-animation {
    height: 70px;
    margin-top: -15px;
    padding-top: 10px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .gHead.is-animation {
        padding-top: 15px;
    }
}

@media screen and (min-width: 768px) {
    .gHead.is-animation .gLogo .gLogo__logoArea {
        left: 30px;
    }
}

.gHead.is-animation .gLogo .gLogo__logoArea img {
    width: 113px;
}

.gHead.is-animation .v-navBtn {
    padding: 5px 20px 10px 45px;
}

.gHead.is-animation .v-navBtn::before {
    top: 13px;
}

.gLogo {
    background: #fff;
    position: relative;
    top: 10px;
    margin: 0 10px;
}

.gLogo__logoArea {
    position: absolute;
    top: 18px;
    left: 15px;
    display: flex;
    align-items: center;
    margin-top: -10px;
}

@media screen and (max-width: 767px) {
    .gLogo__logoArea {
        top: 12px;
    }
}

.gLogo__logoArea--txt {
    position: relative;
    top: 2px;
    margin-left: 60px;
    font-weight: 700;
    color: #1a3068;
}

@media screen and (max-width: 910px) {
    .gLogo__logoArea--txt {
        margin-left: 20px;
    }
}

@media screen and (max-width: 767px) {
    .gLogo__logoArea--txt {
        font-size: 1.4rem;
        margin-left: 10px;
    }
}

@media screen and (max-width: 767px) {
    .gLogo__logoArea .commonHumb {
        display: none;
    }
}

.gLogo img {
    width: 154px;
    height: auto;
}

@media screen and (max-width: 767px) {
    .gLogo img {
        width: 113px;
    }
}

.gLogo.is_active {
    background: #fff;
    z-index: 99999;
    border-radius: 2px;
}

.gLogo.is_active .commonHumb {
    display: none;
}

.gLogo.is_active .gLogo__logoArea--txt {
    margin-left: 56px;
}

.commonHumb {
    position: relative;
    top: 2px;
    left: 10px;
    width: 14px;
    height: 17px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .commonHumb {
        left: auto;
        right: 20px;
        top: 17px;
    }
}

.commonHumb span {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 3px;
    background: #1a3068;
}

@media screen and (max-width: 767px) {
    .commonHumb span {
        left: auto;
        right: 0;
        background: #000;
        transition: all 0.2s;
    }
}

.commonHumb span::before,
.commonHumb span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 14px;
    height: 3px;
    background: #1a3068;
}

@media screen and (max-width: 767px) {

    .commonHumb span::before,
    .commonHumb span::after {
        height: 2px;
        background: #000;
    }
}

.commonHumb span::after {
    top: 14px;
}

@media screen and (max-width: 767px) {
    .commonHumb.is_active span {
        top: 5px;
        transform: rotate(45deg);
    }

    .commonHumb.is_active span::after {
        opacity: 0;
    }

    .commonHumb.is_active span::before {
        transform: rotate(-90deg);
        top: 0;
    }
}

.navClose {
    display: none;
    position: relative;
    top: -8px;
    left: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.navClose img {
    width: 100%;
}

.commonNav {
    display: none;
    justify-content: space-between;
    padding-top: 100px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.4;
    max-width: 1240px;
    padding: 100px 20px 50px;
}

.commonNav>div {
    width: 270px;
}

.commonNav .commonNav__head {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a3068;
}

.commonNav ul {
    margin-bottom: 30px;
}

.commonNav ul li {
    position: relative;
    margin: 7px 0 7px 10px;
}

.commonNav ul li a {
    color: #313636;
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .commonNav ul li a:hover {
        color: #268dd9;
    }
}

.gNavBg {
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    width: 100vw;
    z-index: 10000;
}

.gNavBg.is_active {
    display: block;
    animation-name: opa;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0, 0.67, 0.88, 1.02);
}

.gHeadNav {
    position: absolute;
    top: 20px;
    right: -17px;
    display: flex;
}

@media screen and (max-width: 910px) {
    .gHeadNav {
        right: -10px;
    }
}

@media screen and (max-width: 767px) {
    .gHeadNav {
        display: none;
    }
}

.gHeadNav__list {
    display: flex;
}

.gHeadNav__list--item {
    margin-right: 25px;
    font-weight: 500;
}

@media screen and (max-width: 910px) {
    .gHeadNav__list--item {
        margin-right: 10px;
        font-size: 1.4rem;
    }
}

.gHeadNav__list--item.v-blank {
    position: relative;
}

.gHeadNav__list--item.v-blank::after {
    content: "";
    position: relative;
    top: 1px;
    margin-left: 10px;
    display: inline-block;
    background: url(/assets/images/ico_blank.svg) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
}

.gHeadNav__list--item.v-hasChild {
    cursor: pointer;
}

.gHeadNav__list--item.v-hasChild span {
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .gHeadNav__list--item.v-hasChild span:hover {
        color: #268dd9;
    }
}

.gHeadNav__list--item a {
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .gHeadNav__list--item a:hover {
        color: #268dd9;
    }
}

.gHeadNavChild {
    display: none;
    position: absolute;
    left: -50%;
    top: 50px;
    background: #fff;
    padding: 30px;
}

.gHeadNavChild.is_active {
    display: flex !important;
    z-index: 100000;
}

.gHeadNavChild__item {
    margin: 0 20px;
    white-space: nowrap;
}

@media screen and (min-width: 768px) {

    .commonHumb.v-sp,
    .commonNavSP {
        display: none !important;
    }

    .spFoot {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .commonNavSP {
        display: none;
        background: #fff;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 50px);
        overflow: auto;
        line-height: 1.8;
        padding-bottom: 200px;
    }

    .navList {
        margin: 10px 15px 0;
        font-size: 16px;
    }

    .navList .navList__item {
        border-bottom: 1px solid #d4d4d4;
        font-weight: bold;
    }

    .navList .navList__item .navList__item--txt {
        position: relative;
    }

    .navList .navList__item .navList__item--txt::after {
        content: "";
        position: absolute;
        right: 10px;
        top: 15px;
        background: url(/assets/images/ico_arrow2.svg) no-repeat;
        background-size: contain;
        width: 17px;
        height: 17px;
    }

    .navList .navList__item .navList__item--txt.v-hasChild {
        padding: 10px 0;
    }

    .navList .navList__item .navList__item--txt.v-hasChild::after,
    .navList .navList__item .navList__item--txt.v-hasChild::before {
        content: "";
        position: absolute;
        right: 10px;
        top: 22px;
        width: 15px;
        height: 2px;
        background: #262947;
    }

    .navList .navList__item .navList__item--txt.v-hasChild::after {
        transform: rotate(90deg);
    }

    .navList .navList__item .navList__item--txt.v-hasChild.is_active::after {
        opacity: 0;
    }

    .navList .navList__item .navList__item--txt a {
        padding: 10px 0;
        display: block;
    }

    .childNavList {
        display: none;
        font-weight: normal;
        margin-left: 5px;
    }

    .childNavList .childNavList__item {
        position: relative;
        border-bottom: 1px dashed #d4d4d4;
    }

    .childNavList .childNavList__item:last-child {
        border-bottom: none;
    }

    .childNavList .childNavList__item .childNavList__item--txt a {
        display: block;
        padding: 10px 0;
    }

    .childNavList .childNavList__item .childNavList__item--txt::after {
        content: "";
        position: absolute;
        right: 13px;
        top: 18px;
        background: url(/assets/images/ico_arrow2.svg) no-repeat;
        background-size: contain;
        width: 11px;
        height: 11px;
    }

    .childNavList .childNavList__item .childNavList__item--txt.v-hasChild {
        padding: 10px 0;
    }

    .childNavList .childNavList__item .childNavList__item--txt.v-hasChild::after,
    .childNavList .childNavList__item .childNavList__item--txt.v-hasChild::before {
        content: "";
        position: absolute;
        right: 14px;
        top: 24px;
        width: 9px;
        height: 1px;
        background: #262947;
    }

    .childNavList .childNavList__item .childNavList__item--txt.v-hasChild::after {
        transform: rotate(90deg);
    }

    .childNavList .childNavList__item .childNavList__item--txt.is_active::after {
        opacity: 0;
    }

    .grandchildList {
        display: none;
        margin-top: 5px;
        margin-left: 0;
    }

    .grandchildList .grandchildList__item {
        position: relative;
        margin: 3px 0;
    }

    .grandchildList .grandchildList__item::before {
        content: "";
        position: relative;
        display: inline-block;
        left: 0x;
        top: -1px;
        padding-right: 20px;
        background: url(/assets/images/ico_arrow2.svg) no-repeat;
        background-size: contain;
        width: 11px;
        height: 11px;
    }
}

.gFoot {
    border-top: 2px solid #f3f4f7;
    margin-top: 100px;
}

.gFoot .commonNav {
    display: flex;
    padding-top: 60px;
}

@media screen and (max-width: 767px) {
    .gFoot .commonNav {
        display: none;
    }
}

.gFoot .commonNav>div {
    width: 25%;
    border-right: 2px solid #f7f7f7;
    padding-right: 20px;
    padding-left: 20px;
}

.gFoot .commonNav>div:last-child {
    border-right: none;
}

.gFoot .sns {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
    padding: 40px;
}

.gFoot .sns__item {
    margin: 0 20px;
}

.gFoot .sns a {
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .gFoot .sns a:hover {
        opacity: 0.6;
    }
}

.gFoot .copy {
    background: #1a3068;
    color: #fff;
    padding: 5px 0 8px;
    font-size: 1.4rem;
    text-align: center;
}

/* ===========================================
 * top
 * ======================================== */

/* Scss Document */
/*--------------------------------------------------
 設定
 --------------------------------------------------*/
/* Scss Document */
/* Scss Document */
.l_base {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .l_base {
        padding: 0 16px;
    }
}


.mv {
    width: 100%;
    height: 100vh;
}

.mv__item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.mv__item img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.mv__item--txt {
    position: absolute;
    left: 230px;
    top: 40%;
    font-size: 1.3333333333vw;
    font-weight: 500;
    color: #424242;
}

@media screen and (max-width: 767px) {
    .mv__item--txt {
        left: 25px;
        top: 35%;
    }
}

.mv__item--txt h1 {
    font-size: 2.4vw;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
    .mv__item--txt h1 {
        font-size: 8vw;
    }
}

.mv__item--txt h1 span {
    font-size: 3.7333333333vw;
}

@media screen and (max-width: 767px) {
    .mv__item--txt h1 span {
        font-size: 10.6666666667vw;
    }
}

.mv__item .mv__scroll {
    position: absolute;
    bottom: 78px;
    right: 120px;
    font-size: 2rem;
    font-family: "Chivo", sans-serif;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .mv__item .mv__scroll {
        right: 85px;
    }
}

.mv__item .mv__scroll::after {
    content: "";
    position: absolute;
    width: 76px;
    height: 78px;
    background: url(/assets/images/top/ico_scroll.svg) no-repeat;
}

.mv__item .mv__scroll p {
    position: absolute;
    bottom: -60px;
    left: -25px;
    z-index: 1;
}

.mv .slick-list .slick-slide:not(.slick-current):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    transition: 0.3s ease 0s;
}

.serviceTab {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.serviceTab__item {
    width: 50%;
    font-size: 2.6rem;
    font-weight: 500;
    color: #888;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .serviceTab__item:hover {
        opacity: 0.6;
    }
}

.serviceTab__item.is_current {
    color: #268dd9;
    border-bottom: 2px solid #268dd9;
}

.tagList {
    display: flex;
    justify-content: center;
    margin: 0 -20px 40px;
}

@media screen and (max-width: 767px) {
    .tagList {
        margin: 0 auto 20px;
        flex-wrap: wrap;
    }
}

.tagList__item {
    cursor: pointer;
    background: #e8eaf0;
    border-radius: 2px;
    text-align: center;
    margin: 0 5px;
    padding: 10px 20px;
    transition: all 0.2s;
}

@media screen and (max-width: 767px) {
    .tagList__item {
        width: calc(50% - 10px);
        margin: 0 5px 10px;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (min-width: 768px) {
    .tagList__item:hover {
        opacity: 0.6;
    }
}

.tagList__item.is_current {
    background: #1a3068;
    color: #fff;
}

.libHdc_tabArea {
    margin-bottom: 60px;
}

.searchPanel {
    max-width: 980px;
    margin: 0 auto;
}

.searchPanel .info__item {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px 0 35px;
    border-bottom: 0.5px solid #dadada;
}

.searchPanel .info__item:first-child {
    border-top: 1px solid #dadada;
}

@media screen and (max-width: 767px) {
    .searchPanel .info__item {
        display: block;
    }
}

.searchPanel .info__item--date {
    width: 330px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 10px;
}

.searchPanel .info__item--date span {
    font-weight: 500;
    font-family: "Chivo", sans-serif;
    font-weight: 500;
}

.searchPanel .info__item--date label {
    padding-left: 20px;
    font-weight: 700;
    color: #288ed9;
}

.searchPanel .info__item--txt {
    font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
    .searchPanel .info__item--txt {
        width: 90%;
    }
}

.searchPanel .info__item--txt a {
    position: relative;
}

.searchPanel .info__item--txt a span {
    display: block;
    width: 628px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
    .searchPanel .info__item--txt a span {
        width: 95%;
    }
}

.searchPanel .info__item--txt a::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 15px;
    width: 31px;
    height: 15px;
    background: url(/assets/images/ico_arrow.svg);
}

@media screen and (max-width: 767px) {
    .searchPanel .info__item--txt a::after {
        right: -25px;
    }
}

.searchPanel picture {
    width: 100%;
    display: block;
    text-align: center;
}

.searchPanel p {
    width: 100%;
    margin-top: 10px;
    font-size: 1.4rem;
}

.section1 {
    background: #f7f7f7;
    padding-top: 60px;
    padding-bottom: 120px;
}

.sectionCopy {
    text-align: center;
    margin-bottom: 50px;
}

.sectionCopy p {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    display: inline-block;
}

.serviceTxt {
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .serviceTxt {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .serviceTxt p {
        font-size: 1.4rem;
    }
}

.serviceTxt p span {
    padding-right: 10px;
    font-size: 2.4rem;
    font-weight: 700;
    font-family: "Chivo", sans-serif;
    color: #1a3068;
}

@media screen and (max-width: 767px) {
    .serviceTxt p span {
        font-size: 2rem;
    }
}

.serviceTxt p+p {
    padding-left: 80px;
}

@media screen and (max-width: 767px) {
    .serviceTxt p+p {
        padding-left: 0;
        margin-top: 20px;
    }
}

.serviceList {
    display: flex;
    margin: 0 -20px 60px;
}

@media screen and (max-width: 767px) {
    .serviceList {
        display: block;
        margin: 0 0 30px;
    }
}

.serviceList__item {
    width: 340px;
    margin: 0 20px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .serviceList__item {
        width: 100%;
        margin: 0;
    }
}

.serviceList__item--box {
    position: relative;
}

.serviceList__item--img {
    display: block;
    height: 203px;
    margin-bottom: 45px;
    text-align: center;
}

.serviceList__item--txt {
    padding: 45px 30px 40px;
}

.serviceList__item--txt p {
    margin-bottom: 30px;
}

.serviceList__item.v-icoArrow2 {
    position: relative;
}

.serviceList__item.v-icoArrow2::after {
    content: "";
    width: 30px;
    height: 30px;
    border-top: solid 10px #273466;
    border-right: solid 10px #273466;
    position: absolute;
    top: 50%;
    right: -9%;
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    .serviceList__item.v-icoArrow2::after {
        top: initial;
        bottom: -6%;
        right: 0;
        left: 0;
        transform: rotate(135deg);
        margin: auto;
    }
}

.serviceList__item.v-icoArrow3 {
    position: relative;
}

.serviceList__item.v-icoArrow3::after {
    content: "";
    width: 30px;
    height: 30px;
    border-top: solid 10px #273466;
    border-right: solid 10px #273466;
    position: absolute;
    top: 50%;
    left: -9%;
    transform: rotate(-135deg);
}

@media screen and (max-width: 767px) {
    .serviceList__item.v-icoArrow3::after {
        top: -6%;
        right: 0;
        left: 0;
        transform: rotate(-45deg);
        margin: auto;
    }
}

@media screen and (max-width: 767px) {
    .serviceList li+li {
        margin-top: 40px;
    }
}

.topBtn {
    display: block;
    position: relative;
    padding: 25px 40px;
    color: #fff;
    font-weight: 700;
    background: #1a3068;
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .topBtn:hover {
        opacity: 0.6;
    }
}

.topBtn.v-icoBlank {
    position: relative;
}

.topBtn.v-icoBlank::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 20px;
    width: 24px;
    height: 18px;
    background: url(/assets/images/ico_blank.svg) no-repeat;
}

.topBtn.v-icoArrow {
    position: relative;
}

.topBtn.v-icoArrow::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -30px;
    width: 62px;
    height: 30px;
    background: url(/assets/images/top/ico_arrow.png) no-repeat;
}

.topBtn.v-btnWrap {
    width: 380px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .topBtn.v-btnWrap {
        width: 85%;
    }
}

.section2 .companyBg {
    padding: 70px 0;
    background: url(/assets/images/top/bg1.jpg) no-repeat;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .section2 .companyBg {
        background-position-x: 60%;
    }
}

.section2 .companyBg .sectionTtl {
    justify-content: flex-start;
}

@media screen and (max-width: 767px) {
    .section2 .companyBg .sectionTtl {
        justify-content: center;
    }
}

.section2 .companyBg .company__item {
    float: right;
    margin-right: 120px;
}

@media screen and (max-width: 767px) {
    .section2 .companyBg .company__item {
        float: none;
        margin-right: 0;
    }
}

.section2 .companyBg .company__item .sectionCopy p {
    text-align: left;
}

.section2 .recruitBg {
    padding: 75px 0 60px;
    background: url(/assets/images/top/bg2.jpg) no-repeat;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .section2 .recruitBg {
        background-position-x: 30%;
    }
}

.section2 .recruitBg .sectionTtl {
    justify-content: flex-start;
}

.section2 .recruitBg .recruit__item {
    float: left;
    margin-right: 120px;
}

@media screen and (max-width: 767px) {
    .section2 .recruitBg .recruit__item {
        float: none;
        margin-right: 0;
    }
}

.section2 .recruitBg .recruit__item .sectionCopy p {
    text-align: left;
}

.section3 {
    padding: 85px 0 100px;
}

.section4 {
    display: flex;
}

@media screen and (max-width: 767px) {
    .section4 {
        display: block;
    }
}

.section4 a {
    width: 100%;
    transition: all 0.2s;
}

@media screen and (min-width: 768px) {
    .section4 a:hover {
        opacity: 0.6;
    }
}

.section4 a img {
    width: 100%;
}

.partnerTtl {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.partnerTxt {
    margin-bottom: 30px;
}

.cl::after {
    content: "";
    display: block;
    clear: both;
}

/* ===========================================
 * service
 * ======================================== */

.l-main--service {
    padding-bottom: 0 !important;
}

.c-common-breadcrumb-wrap+.gFoot {
    margin-top: 0;
}

.l_base {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .l_base {
        padding: 0 16px;
    }
}


.sub-mv-wrap {
    padding: 60px 0;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .sub-mv-wrap {
        padding: 40px 0;
    }
}

.sub-mv-lead-en {
    color: #268dd9;
    font-size: 2.4rem;
    position: relative;
    margin-right: 50px;
    font-weight: 700;
    font-family: "Chivo", sans-serif;
}

@media screen and (max-width: 767px) {
    .sub-mv-lead-en {
        font-size: 2rem;
    }
}

.sub-mv-lead-en::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -30px;
    width: 23px;
    height: 23px;
    background-image: url(../images/sub_main_en.png);
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    .sub-mv-lead-en::after {
        width: 23px;
        height: 16px;
        right: -26px;
        top: 8px;
    }
}

.sub-mv-lead {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .sub-mv-lead {
        display: block;
    }
}

.sub-mv-lead-ja {
    color: #1a3068;
    font-size: 3.6rem;
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 767px) {
    .sub-mv-lead-ja {
        display: block;
        font-size: 3rem;
    }
}

.sub-mv-lead-txt {
    color: #000;
    font-size: 1.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .sub-mv-lead-txt {
        font-size: 1.6rem;
    }
}

.p-service-01-wrap {
    padding-top: 120px;
    padding-bottom: 150px;
    background-color: #f7f7f7;
    position: relative;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .p-service-01-wrap {
        padding-top: 60px;
        padding-bottom: 120px;
    }
}

.p-service-01-items {
    background-color: #fff;
    padding: 40px 40px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .p-service-01-items {
        padding: 30px;
    }
}

.p-service-01-items::after {
    content: "";
    position: absolute;
    top: 0px;
    left: -10px;
    width: 62px;
    height: 62px;
    z-index: 999;
    background-image: url(/assets//images/service/service_label_border.png);
    background-repeat: no-repeat;
}

.p-service-01-items {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .p-service-01-items {
        display: block;
    }
}

.p-service-01-items-lead {
    color: #1a3068;
    font-size: 4rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: "Chivo", sans-serif;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-lead {
        font-size: 3rem;
        margin-bottom: 15px;
    }
}

.p-service-01-items-txt {
    color: #000;
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-txt {
        font-size: 1.4rem;
    }
}

.p-service-01-items-img-area {
    display: flex;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-img-area {
        justify-content: center;
        margin-top: 30px;
    }
}

.p-service-01-items-img-1 {
    width: 90px;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-img-1 {
        width: auto;
        margin-right: 15px;
        height: 80px;
    }
}

.p-service-01-items-img-2 {
    width: 90px;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-img-2 {
        width: auto;
        height: 80px;
    }
}

.p-service-01-items-link-area {
    background-color: #d1d6e1;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-link-area {
        display: block;
    }
}

.p-service-01-items-link-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s;
}

.p-service-01-items-link-items:hover {
    opacity: 0.5;
}


.p-service-01-items-link-txt-img {
    width: 200px;
    display: block;
    height: auto;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-link-txt-img {
        width: 150px;
    }
}

.p-service-01-items-link-btn-img {
    width: 25px;
    display: block;
    height: auto;
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-link-btn-img {
        width: 18px;
    }
}

.p-service-01-items-link-items-1 {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .p-service-01-items-link-items-1 {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.p-service-01-items-wrap-2 {
    margin-top: 50px;
}

.sub-bread-label-en {
    color: #000;
    position: relative;
    font-size: 1.6rem;
    margin-right: 40px;
}

.sub-bread-label-en::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -30px;
    width: 22px;
    height: 17px;
    background-image: url(../images/sub_main_en.png);
    background-repeat: no-repeat;
}

.sub-bread-label {
    color: #268dd9;
    font-size: 1.6rem;
    padding-top: 90px;
    padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .sub-bread-label {
        padding-top: 60px;
    }
}

/* ===========================================
 * news
 * ======================================== */


:root {
    --font-chivo: 'Chivo', sans-serif;
    --font-noto: 'Noto Sans JP', sans-serif;
}

.l-main--under {
    /* max-width: 1100px; */
    margin: 0 auto;
    padding-top: 150px;
    padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
    .l-main--under {
        padding-bottom: 120px;
        padding-top: 100px;
    }
}

.l-main--under .c-page-header-wrapper {
    margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
    .l-main--under .c-page-header-wrapper {
        margin-bottom: 42px;
    }
}

.l-main--under {
    font-family: var(--font-noto);
}

.c-page-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    .c-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


.c-page-header--en {
    font-size: 2.4rem;
    font-weight: 600;
    color: #268dd9;
    text-transform: capitalize;
    line-height: 1.2;
    padding-right: 42px;
    position: relative;
    font-family: var(--font-chivo);
}

.c-page-header--en::after {
    content: "";
    background-image: url(/assets/images/news/img_news_arrow_blue_1.svg);
    width: 23px;
    height: 23px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}


.c-page-header--jp {
    font-size: 4.8rem;
    font-weight: bold;

    color: #333366;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .c-page-header--jp {
        font-size: 3.4rem;
        margin-top: 1.5rem;
    }
}

.c-page-header+* {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .c-page-header+* {
        margin-top: 21px;
    }
}





.p-news-link {
    display: flex;
}



.p-news-link__item {
    display: block;
    padding: 10px 18px;
    color: #000;
    background-color: rgb(235, 235, 235);
    transition: opacity 0.3s;
}

.p-news-link__item:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .p-news-link__item {
        padding: 4px 6px;
        font-size: 12px;
    }
}

.p-news-link__item+.p-news-link__item {
    margin-left: 10px;
}

.p-news-link__item--current {
    background-color: #333366;
    color: #fff;
}

.p-news-list {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid#cccccc;
}

@media screen and (max-width: 768px) {
    .p-news-list {
        margin-top: 20px;
        padding-bottom: 24px;
    }

}

.p-news-list-item {
    padding-top: 28px;
    border-top: 1px solid#cccccc;
}

@media screen and (max-width: 768px) {
    .p-news-list-item {
        padding-top: 24px;
    }
}

.p-news-list-item__info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.p-news-list-item__info-date {
    font-size: 1.4rem;
    color: #000;
    font-family: var(--font-chivo);
}

.p-news-list-item__info-cat {
    font-size: 1.4rem;
    color: #268dd9;
    margin-left: 20px;
    font-weight: bold;
}

.p-news-list-item__ttl {
    margin-top: 20px;
    font-size: 1.8rem;
    padding-right: 32px;
    position: relative;
    display: block;
    line-height: 1.45;
}

@media screen and (max-width: 768px) {
    .p-news-list-item__ttl {
        padding-right: 0;
        margin-top: 10px;
        font-size: 1.4rem;
    }
}

.p-news-list-item__ttl:hover {
    text-decoration: underline;
}

.p-news-list-item__ttl::before {
    content: "";
    background-image: url(/assets/images/news/ico_news_arrow_right_1.svg);
    width: 32px;
    height: 16px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .p-news-list-item__ttl::before {
        display: none;
    }
}



.p-news-list-item+.p-news-list-item {
    margin-top: 29px;
}

@media screen and (max-width: 768px) {
    .p-news-list-item+.p-news-list-item {
        margin-top: 24px;
    }

}


.p-news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 450px;
    margin: 84px auto 0;
}

@media screen and (max-width: 768px) {
    .p-news-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        max-width: 450px;
        margin: 84px auto 0;
    }

}


/*
.p-news-pagination::before,
.p-news-pagination::after {
    position: absolute;
    content: "";
    width: 18px;
    height: 27px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/assets/images/news/ico_news_arrow_left_1.svg);
}

.p-news-pagination::after {
    left: initial;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}
*/

.p-news-pagination__item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 768px) {
    .p-news-pagination__item--skip {
        padding-top: 5px;
    }
}

@media screen and (max-width: 768px) {
    .p-news-pagination__item {
        width: 27px;
        height: 27px;
    }
}

.p-news-pagination__arrow img {
    display: block;
}


.p-news-pagination__arrow {
    width: 18px;
    height: 27px;
    margin-right: 48px;
}

.p-news-pagination__arrow>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .p-news-pagination__arrow {
        width: 12px;
        height: 19px;
        margin-right: 20px;
    }
}

.p-news-pagination__arrow:last-of-type {
    transform: rotate(180deg);
    margin-left: 48px;
    margin-right: 0px;
}

@media screen and (max-width: 768px) {
    .p-news-pagination__arrow:last-of-type {
        margin-left: 20px;
    }
}

.p-news-pagination__item-inner {
    font-size: 1.8rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 768px) {
    .p-news-pagination__item-inner {
        font-size: 1.2rem;
    }
}

.p-news-pagination__item--current .p-news-pagination__item-inner {
    background-color: #f0f0f0;
}

.p-news-pagination__item+.p-news-pagination__item {
    margin-left: 9px;
}





/* ここからニュース詳細 */
.p-news-list-item__info--under {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .p-news-list-item__info--under {
        margin-top: 43px;
    }
}

.p-news-article__title {
    font-weight: bold;
    margin-top: 57px;
    font-size: 3.0rem;
    padding-bottom: 61px;
    border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 768px) {
    .p-news-article__title {
        margin-top: 30px;
        font-size: 2.4rem;
        padding-bottom: 26px;
    }
}

.p-news-article__desc {
    margin-top: 60px;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    .p-news-article__desc {
        margin-top: 32px;
        font-size: 1.4rem;
    }
}

.p-news-article__img {
    margin-top: 42px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .p-news-article__img {
        margin-top: 22px;
    }
}

.p-news-article__img+* {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .p-news-article__img+* {
        margin-top: 32px;
    }
}

.p-news-article__img--large {
    max-width: 712px;
}

@media screen and (max-width: 768px) {
    .p-news-article__img--large {
        max-width: 100%;
    }
}

.p-news-article__img-inner {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .p-news-article__img-inner {}
}

.p-news-article__text {
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    .p-news-article__text {
        font-size: 1.4rem;
    }
}

.p-news-article__text+* {
    margin-top: 2.4rem;
}

@media screen and (max-width: 768px) {
    .p-news-article__text+* {
        margin-top: 1.8rem;
    }
}


.p-news-article__header {}

@media screen and (max-width: 768px) {
    .p-news-article__header {}
}

.p-news-article__header--2 {
    font-weight: bold;
    color: #3399cc;
    font-size: 2.4rem;
    margin-top: 48px;
}

@media screen and (max-width: 768px) {
    .p-news-article__header--2 {
        font-size: 2rem;
        margin-top: 44px;
    }

}


.p-news-article__header--2+* {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .p-news-article__header--2+* {
        margin-top: 20px;
    }
}

.p-news-article__header--3 {
    font-weight: bold;
    font-size: 1.6rem;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .p-news-article__header--3 {
        font-size: 1.4rem;
        margin-top: 20px;
    }
}

.p-news-article__header--3+* {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .p-news-article__header--3+* {
        margin-top: 0;
    }
}

.p-news-article__header--4 {
    color: #3399cc;
    font-size: 1.6rem;
    padding-left: 1.6rem;
    position: relative;
    margin-top: 1.6rem;
}


@media screen and (max-width: 768px) {
    .p-news-article__header--4 {
        color: #3399cc;
        font-size: 1.4rem;
        padding-left: 1.4rem;
        position: relative;
        margin-top: 1.4rem;
    }
}

.p-news-article__header--4::before {
    content: "ー";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.p-news-article__header--4+* {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .p-news-article__header--4+* {
        margin-top: 0;
    }
}

.p-news-article__list {
    padding-left: 1.6rem;
}

@media screen and (max-width: 768px) {
    .p-news-article__list {
        padding-left: 1.4rem;
    }
}


.p-news-article__list-item {
    position: relative;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    .p-news-article__list-item {
        font-size: 1.4rem;
    }
}

.p-news-article__list-item::after {
    content: "・";
    display: block;
    position: absolute;
    left: -1.6rem;
    top: 1.6rem;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .p-news-article__list-item::after {
        left: -1.4rem;
        top: 1.4rem;
    }

}


.p-news-article__text--inner-link {
    color: #3399cc;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .p-news-article__text--inner-link {}
}


.p-news-under__link {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #cccccc;
}

@media screen and (max-width: 768px) {
    .p-news-under__link {
        margin-top: 52px;
        padding-top: 52px;
    }
}

/* ===========================================
 * company
 * ======================================== */
/* common */

.l-bg--gray {
    background-color: #f7f7f7;
    padding: 82px 0px;
}

.p-company-section+.p-company-section {
    margin-top: 80px;
}

.p-company-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.p-company-header--en {
    font-size: 1.6rem;
    font-weight: 600;
    color: #268dd9;
    text-transform: capitalize;
    line-height: 1.2;
    padding-right: 28px;
    position: relative;
    font-family: var(--font-chivo);
}

.p-company-header--en::after {
    content: "";
    background-image: url(/assets/images/news/img_news_arrow_blue_1.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}

.p-company-header--jp {
    font-size: 3.2rem;
    font-weight: bold;
    color: #333366;
    line-height: 1.2;
}

.p-company-header+* {
    margin-top: 59px;
}

.p-company-item {
    padding: 55px 58px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.p-company-item::before {
    content: "";
    background-image: url(/assets/images/company/ico_blank_blue1.svg);
    width: 89px;
    height: 100px;
    background-size: contain;
    position: absolute;
    top: 0;
    left: -20px;
    z-index: -1;
}

.p-company-item__ttl {
    color: #273466;
    font-size: 3rem;
    font-weight: bold;
}

/* サブタイトル（ミッションページで使用） */
.p-company-item__sttl {
    color: #273466;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
}

/* アコーディオン付きタイトル */
.p-company-item__summary {
    color: #273466;
    font-size: 3rem;
    font-weight: bold;
    display: grid;
    grid-template-columns: 1fr 1fr 1em;
    padding: 55px 58px;
    margin: -55px -58px;
    cursor: pointer;
}

.p-company-item .p-company-item__summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 0.5em;
    height: 0.5em;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
    margin: auto;
}

.p-company-item[open] .p-company-item__summary::after {
    transform: rotate(225deg);
}

.p-company-item__summary-imgs {
    display: flex;
    align-items: center;
}

.p-company-item__summary-icon {
    height: 1.4em;
}

.p-company-item__summary-logo {
    width: 200px;
}

.p-company-item__img {
    margin-left: 40px;
    width: 270px;
}

.p-company-item__desc {
    margin-top: 46px;
}

.p-company-item__desc-wrapper {
    width: calc(100% - 270px - 40px);
}

.p-company-item__sign {
    text-align: right;
    padding-top: 30px;
    font-weight: bold;
    font-size: 2.2rem;
}

.p-company-item__sign-inner {
    font-weight: normal;
    font-size: 1.4rem;
    padding-right: 10px;
}


.p-company-item-vlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.p-company-item-vlist .p-company-item {
    margin-bottom: 16px;
}

/* CEO */
.p-company-item-inner {
    display: flex;
    flex-wrap: wrap;
    margin-top: 36px;
}

.p-company-item__desc-wrapper {
    width: calc(100% - 270px - 40px);
}

.p-company-item-inner .p-company-item__desc {
    margin-top: 0;
}

.p-company-item__img {
    width: 270px;
    margin-left: 40px;
}


@media screen and (max-width: 768px) {
    .p-company-item__img {
        width: 100%;
        margin-left: 0px;
        display: none;
    }

    .p-company-item__desc-wrapper {
        width: 100%;
    }

    .p-company-item__desc {
        font-size: 1.4rem;
    }
}

.p-company-links {
    display: flex;
    font-size: 2.4rem;
    line-height: 3;
    gap: 36px;
}

.p-company-link {
    flex: 1;
    border-bottom: 2px solid #3465a4;
    position: relative;
}

.p-company-link::after {
    clip-path: polygon(0 0, 0 100%, 80% 50%);
    content: "";
    background-color: #268dd9;
    width: 1em;
    height: 1em;
    top: calc((100% - 1em) / 2);
    position: absolute;
    margin-left: 1em;
}

.p-company-link__hash::after {
    clip-path: polygon(0 10%, 50% 90%, 100% 10%);
}


@media screen and (max-width: 768px) {
    .p-company-links {
        font-size: 1.4rem;
    }

    .p-company-link::after {
        margin-left: 4px;
    }
}


/* history */
.p-company-history-wrapper {
    margin-top: 100px;
}

.p-company-info-list-inner {
    display: flex;
    margin-bottom: 40px;
}

.p-company-info-list__dt {
    /* padding-right: 40px; */
    font-weight: normal;
    flex: 1;
}

.p-company-info-list__dd {
    flex: 2;
}

.p-company-history-list__dd {
    flex: 4;
}

.p-company-info-list__dd_span {
    display: block;
    padding-top: 40px;
}


/* information */

.p-company-info-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.p-company-info-content {
    flex: 1;
}

.p-company-info-img {
    max-width: 450px;
    margin-left: auto;
    display: block;
}



/* board member */


.p-company-member-list-inner {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
}

.p-company-member-list__dt {
    /* padding-right: 40px; */
    font-weight: normal;
    flex: 1;
}

.p-company-member-list__dd {
    flex: 2;
}

/* 16行目のCSSが反映されていませんのでここに書いてます */
.p-company-header--en {
    font-size: 1.6rem;
    font-weight: 600;
    color: #268dd9;
    text-transform: capitalize;
    line-height: 1.2;
    padding-right: 28px;
    position: relative;
}

.p-company-header--en::after {
    content: "";
    background-image: url(/assets/images/news/img_news_arrow_blue_1.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}


/* common SP*/

@media screen and (max-width: 767px) {

    .l-bg--gray {
        background-color: #f7f7f7;
        padding: 50px 0px;
    }

    .p-company-header--jp {
        font-size: 2.4rem;
    }
}

/* ミッションSP */

@media screen and (max-width: 767px) {
    .p-company-item {
        padding: 40px 30px;
    }

    .p-company-item::before {
        width: 71px;
        height: 80px;
    }

    .p-company-item__ttl {
        font-size: 2.4rem;
    }

    .p-company-item__sttl {
        font-size: 2.4rem;
    }

    .p-company-item__summary {
        font-size: 2.4rem;
        grid-template-columns: 1fr 1em;
    }

    .p-company-item__summary-imgs {
        grid-column: 1;
        grid-row: 2/3;
    }

    .p-company-item__desc {
        margin-top: 20px;
        padding-right: 0;
    }
}

/* CEOメッセージSP */
.p-company-item__img-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .p-company-item__img-sp {
        display: block;
        width: 100%;
        padding-top: 15px;
        margin-left: 0;
    }

    .p-company-item__sign {
        padding-right: 0px;
        padding-top: 10px;
        font-weight: bold;
        font-size: 2.2rem;
    }

    .p-company-item__sign-inner {
        font-weight: normal;
        font-size: 1.2rem;
    }
}


/* ヒストリーSP */

@media screen and (max-width: 767px) {
    .p-company-info-list-inner {
        margin-bottom: 20px;
    }

    .p-company-info-list__dd_span {
        padding-top: 20px;
    }

    .p-company-info-list__dt {
        font-size: 1.4rem;
    }

    .p-company-history-list__dd {
        flex: 2;
        font-size: 1.4rem;
    }

    .p-company-history-wrapper {
        margin-top: 60px;
    }
}

/* インフォーメーション */

@media screen and (max-width: 767px) {
    .p-company-info-inner {
        display: block;
    }

    .p-company-info-list__dt {
        font-size: 1.4rem;
    }

    .p-company-info-list__dd {
        font-size: 1.4rem;
    }

    .p-company-info-img {
        margin-top: 36px;
    }
}

/* ボードメンバー */

@media screen and (max-width: 767px) {
    .p-company-member-list__dt {
        font-size: 1.4rem;
        flex: 2;
    }

    .p-company-member-list__dd {
        font-size: 1.4rem;
        flex: 1;
    }
}

/* ===========================================
 * MAIN
 * ======================================== */

.c-common-breadcrumb {
    display: block;
    width: 100%;
    background-color: transparent;
    margin: 80px auto 0 auto;
    padding: 20px 0;
}

.c-common-breadcrumb-wrap {
    display: block;
    width: 100%;
    background-color: #eee;
    padding: 20px 0;
}

.c-common-breadcrumb-wrap+.gFoot {
    margin-top: 0;
}

.c-common-breadcrumb-list {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    color: #268dd9;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "Chivo", sans-serif;
    overflow: hidden;
}

.c-common-breadcrumb-list span {
    display: inline-block;
    position: relative;
    padding-right: 39px;
    top: 0;
    left: 0;
    color: #333;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: "Chivo", sans-serif;
}

.c-common-breadcrumb-list span::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    right: 8px;
    width: 23px;
    height: 23px;
    background: url(/assets/images/ico_ttl.svg) no-repeat;
}

.c-common-breadcrumb-link:hover {
    transition: ease .3s;
    opacity: 0.7;
}

.p-privacy-sec-wrapper {
    /* padding-top: 60px;
    padding-bottom: 120px; */
}

.m_sectionTtl-privacy {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0 auto 60px;
}

.m_subTtl-privacy {
    display: inline-block;
    width: 230px;
}

.m_subTtl-privacy::after {
    top: 7px;
    right: 5px;
}

.p-service-wrap {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.p-privacy-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    position: relative;
    display: block;
    color: #268dd9;
    margin: 0 auto 20px auto;
}

.p-privacy-desc {
    margin: 0 auto 40px auto;
}

.p-privacy-lead {
    font-size: 1.4rem;
    font-weight: normal;
    text-align: left;
    position: relative;
    display: block;
    margin: 0 auto 20px auto;
}

.p-privacy-lead span {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
    position: relative;
    display: block;
    margin: 0 auto;
}

.p-privacy-link {
    font-size: 1.4rem;
    font-weight: normal;
    text-align: left;
    position: relative;
    display: block;
    color: #268dd9;
    margin: 0 auto;
    text-decoration: underline;
}

.p-privacy-subtitle {
    font-size: 1.4rem;
    font-weight: normal;
    text-align: left;
    position: relative;
    display: block;
    color: #268dd9;
    margin: 0 auto;
}

.p-privacy-text-right {
    text-align: right;
    width: 100%;
}

.display-pc {
    display: block;
}


/*ISMS認証取得ページ追加CSS*/
.isms-desc table {
    width: 100%;
    border-spacing: 0px;
    border: solid 1px #ccc;
}

.isms-desc table th {
    background:#e8eaf0;
    text-align: center;
    vertical-align: middle;
    border: solid 1px #ccc;
    min-width: 100px;
}

.isms-desc table td {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: solid 1px #ccc;
}


@media screen and (max-width: 767px) {
    .display-pc {
        display: none;
    }

    .m_sectionTtl-privacy {
        display: block;
        width: 100%;
    }

    .m_subTtl-privacy {
        display: block;
        width: 200px;
    }

    .m_subTtl-privacy::after {
        top: 5px;
    }

    .p-privacy-title {
        font-size: 2rem;
    }

    .p-privacy-link,
    .p-privacy-subtitle,
    .p-privacy-lead {
        font-size: 1.4rem;
    }

    .p-privacy-lead span {
        font-size: 1.4rem;
    }

    .c-common-breadcrumb-wrap>.l_base {
        display: flex;
        overflow-x: auto;
    }

    .c-common-breadcrumb-list {
        flex-wrap: wrap;
        white-space: wrap;
        overflow-x: auto;
        font-size: 1.2rem;
    }

    .c-common-breadcrumb-list span {
        padding-right: 32px;
        font-size: 1.2rem;
    }

    .c-common-breadcrumb-list span::after {
        top: 2px;
        right: 10px;
        width: 12px;
        height: 12px;
        background-size: contain;
    }

}

/* ===========================================
 * sitemap
 * ======================================== */

.l-main--sitemap {
    padding-bottom: 0 !important;
}

.p-sitemap-wrap {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .p-sitemap-wrap {
        display: block;
    }
}


.p-sitemap-items {
    width: calc(33.3333% - 60px / 3);
    margin-bottom: 100px;
}



@media screen and (max-width: 767px) {
    .p-sitemap-items {
        width: 100%;
        margin-bottom: 50px;
    }
}

.p-sitemap-items-label {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    padding-left: 20px;
    border-bottom: 0.5px solid #dadada;
    padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .p-sitemap-items-label {
        font-size: 1.8rem;
    }
}

.p-sitemap-items-label::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 13.0px;
    border-color: transparent transparent transparent #268dd9;
}

.p-sitemap-items-list {
    padding-top: 10px;
}

.p-sitemap-items-list-second {
    padding-top: 70px;
}

@media screen and (max-width: 767px) {
    .p-sitemap-items-list-second {
        padding-top: 40px;
    }
}

.p-sitemap-items-list-link {
    font-size: 1.6rem;
    position: relative;
    padding-left: 40px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .p-sitemap-items-list-link {
        font-size: 1.5rem;
    }
}



.p-sitemap-items-list-link:hover {
    color: #268dd9;
}

.p-sitemap-items-list-link::before {
    position: absolute;
    content: '';
    top: 9px;
    left: 20px;

    display: inline-block;
    vertical-align: middle;
    color: #268dd9;
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
}


.p-sitemap-items-list-item {
    position: relative;
}

.p-sitemap-items-list-items {
    padding-left: 60px;
}

.p-sitemap-items-list-items-link {
    font-size: 1.5rem;
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-sitemap-items-list-items-link {
        font-size: 1.4rem;
    }
}



.p-sitemap-items-list-items-link::before {
    position: absolute;
    content: '';
    top: 11px;
    left: -18px;
    width: 6px;
    height: 2px;
    background-color: #268dd9;
}

.p-sitemap-items-list-items-link:hover {
    color: #268dd9;

}

/*404*/
.notCont {
    text-align: center;
    padding: 140px 0 100px;
}
.notCont__txt {
    font-size: 2.4rem;
}