html {
    font-size: 62.5%;
    height: 100%;
    font-weight: 500;
}

body {
    height: 100%;
    line-height: 1.7;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    font-family: "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        "Yu Gothic UI", "MS PGothic", sans-serif;
    color: #212121;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a,
a:active,
a:hover {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    width: 100%;
}

#wrap {
    overflow: hidden;
}

/*インタラクション関連*/
.fadeIn {
    position: relative;
    bottom: -10px;
    opacity: 0;
    transition: bottom 2s, opacity 0.5s;
}

.fadeIn.show {
    bottom: 0;
    opacity: 1;
}

.fadeInUp {
    position: relative;
    bottom: -20px;
    opacity: 0;
    transition: bottom 3s, opacity 0.8s;
}

.fadeInUp.show {
    bottom: 0;
    opacity: 1;
}

.fadeInDown {
    position: relative;
    top: -80px;
    opacity: 0;
    transition: top 3s, opacity 0.5s;
}

.fadeInDown.show {
    top: 0;
    opacity: 1;
}

.fadeInLeft {
    position: relative;
    opacity: 0;
    left: -40px;
    transition: left 1s, opacity 0.2s;
}

.fadeInLeft.show {
    left: 0;
    opacity: 1;
}

.fadeInRight {
    position: relative;
    opacity: 0;
    right: -40px;
    transition: right 1s, opacity 0.2s;
}

.fadeInRight.show {
    right: 0;
    opacity: 1;
}

.rotate {
    animation: rotateY-anim 2s linear;
    opacity: 0;
}

@keyframes rotateY-anim {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.rotate.show {
    opacity: 1;
}

.fadeInRight {
    position: relative;
    opacity: 0;
    right: -220px;
    -webkit-transition: right 2s, opacity 1s;
    -o-transition: right 2s, opacity 1s;
    transition: right 2s, opacity 1s;
}

.fadeInRight.show {
    right: 0;
    opacity: 1;
}

.fadeIn {
    position: relative;
    opacity: 0;
    -webkit-transition: top 5s, opacity 2s;
    -o-transition: top 5s, opacity 2s;
    transition: top 5s, opacity 2s;
}

.fadeIn.show {
    opacity: 1;
}

#header {
    width: 100%;
    background-color: #fff;
}

#header-innar {
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: -0.8rem;
}

.header-logo a img {
    height: 40px;
}

.header-logo p {
    font-size: 1rem;
    color: #006cb8;
    margin-left: 1rem;
    font-weight: 500;
}

/*ハンバーガーボタン*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 0.8rem;
    top: 1rem;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    left: 6px;
    background: #07668d;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

#header.scroll-nav .hamburger span {
    background-color: #07668d;
}

/* ナビ開いてる時のボタン */
.hamburger.active span,
#header.scroll-nav .hamburger.active span {
    background-color: #07668d;
}

.hamburger.active {
    z-index: 10;
}

.hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    transform: translateY(6px);
}

.hamburger.active span:nth-child(2) {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    transform: translateY(-4px);
}

.hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-14px);
    -moz-transform: translateY(-14px);
    transform: translateY(-14px);
}

nav.globalMenuSp {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #e5f5f9;
    text-align: left;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 0;
    display: none;
}

nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    padding-top: 3rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
}

nav.globalMenuSp ul li a {
    display: inline-block;
    color: #2d2d2d;
    padding: 2rem 0rem 2rem 3.2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
    position: relative;
    font-weight: 600;
}

nav.globalMenuSp ul li:hover a {
    color: #006cb8;
    opacity: 1;
    font-weight: 500;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    display: block;
    opacity: 100;
    width: 100%;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    height: 100%;
    z-index: 3;
    overflow-y: scroll;
    padding-top: 2rem;
}

.fv {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    z-index: 1;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.fv::before {
    content: "";
    position: absolute;
    display: block;
    background-image: url(img/fv-top-sp.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    animation: zoom 4s 1;
    animation-fill-mode: forwards;
    z-index: -1;
}

@keyframes zoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.fv-copyarea {
    position: absolute;
    bottom: 26vh;
    left: 15px;
}

.fv-copyarea img {
    max-width: 340px;
}

main {
    z-index: 2;
}

.footer-end {
    padding: 2rem 15px;
    max-width: 960px;
    margin: auto;
}

.footer-end-text p {
    font-size: 1.3rem;
    color: #4d4d4d;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
}

.footer-end-text p span {
    font-weight: 700;
    color: #2d2d2d;
    margin-right: 1.3rem;
}

#page-top {
    margin-bottom: 0;
}

#page-top a {
    background-color: #f4f4f7;
    color: #3c5874;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s;
    font-weight: 500;
}

#page-top a:hover {
    color: #006cb8;
}

small {
    text-align: center;
    display: inherit;
    font-size: 0.8rem;
    padding: 0.9rem;
    color: #fff;
    background-color: #006cb8;
}

.entry a {
    font-family: "Sawarabi Mincho", serif;
    background-color: #006cb8;
    display: inline-block;
    height: 64px;
    line-height: 64px;
    padding-right: 40px;
    padding-left: 40px;
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    border-radius: 50px;
}

.entry.sp {
    margin-top: 2rem;
    text-align: center;
}

.entry.sp a {
    width: 65%;
    text-align: center;
}

.wrapper01 {
    width: 92%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

footer {
    padding: 50px 0;
}

.footer-copy img {
    width: 92%;
    max-width: 348px;
    margin: 40px auto;
}

/*footer サイトマップ*/

.footer-sitemap li {
    border-bottom: 1px solid #f7f7f7;
}

.footer-sitemap li:nth-child(2n) {
    background-color: #f4f4f4;
}

.footer-sitemap li a {
    display: block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    color: #212121;
    font-weight: 500;
}

.footer-sitemap li a span {
    position: relative;
    display: block;
}

.footer-sitemap li ul {
    background: #f8f8f8;
    color: #006cd8;
}

.footer-sitemap li ul li a {
    color: #006cd8;
    font-weight: 500;
}

.footer-sitemap li ul li:last-child {
    border-bottom: none;
    margin-bottom: 10px;
}

.sitemap-sp li {
    border-bottom: none;
}

.footer-sitemap li a span {
    position: relative;
    display: block;
    width: 100%;
}

.footer-sitemap li a span::before {
    display: block;
    content: "";
    position: absolute;
    top: 12px;
    right: 5px;
    width: 15px;
    height: 2px;
    background: #006cb8;
    transition: 0.2s;
    transform: rotate(90deg);
}

.footer-sitemap li a span::after {
    display: block;
    content: "";
    position: absolute;
    top: 12px;
    right: 5px;
    width: 15px;
    height: 2px;
    background-color: #006cb8;
    transition: 0.3s;
}

.footer-sitemap li a#id-collapse[aria-expanded="true"] span::before {
    transform: rotate(0deg);
}

.footer-sitemap li a#id-collapse[aria-expanded="true"] span::after {
    background-color: transparent;
}

.footer-bottom-info {
    background: #232323;
    padding: 40px 15px;
}

.footer-company {
    width: 100%;
    color: #fff;
}

.footer-company p:first-child {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.footer-company p:nth-child(2) {
    color: #a0a0a0;
    font-size: 13px;
    position: relative;
}

.footer-company p span a {
    position: relative;
    padding-right: 14px;
    color: #a0a0a0;
}

.footer-company p span a:after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-image: url(img/icon_link.gif);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
}

/*エントリーボタン*/
.entry-b {
    background-color: #006cb8;
    margin-top: 40px;
}

.entry-b.rt {
    width: calc(100% - 50px);
}

.entry-b a {
    display: block;
    width: 100%;
    height: auto;
    padding: 40px 0 30px;
    position: relative;
}

.entry-b a::before {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #72c9f3;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    transition: all 0.3s;
}

.entry-b a::after {
    content: "";
    width: 1px;
    height: 24px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
}

.entry-b.rt a::before {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #72c9f3;
    position: absolute;
    top: 0;
    right: -50px;
    left: auto;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    transition: all 0.3s;
    margin-right: 0;
    margin-left: 0;
}

.entry-b.rt a::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
    margin-left: 0;
}

.entry-b.tp a::before {
    content: "";
    width: 1px;
    height: 24px;
    background-color: #72c9f3;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -24px;
    margin-right: auto;
    margin-left: auto;
    transition: all 0.3s;
}

.entry-b.tp a::after {
    content: "";
    width: 1px;
    height: 24px;
    background-color: #fff;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: auto;
    margin-left: auto;
}

.btn-more a::before {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #72c9f3;
    position: absolute;
    top: 0;
    right: -50px;
    left: auto;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    transition: all 0.3s;
    margin-right: 0;
    margin-left: 0;
}

.btn-more a::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
    margin-left: 0;
}

.btn-more a.job-btn {
    max-width: 320px;
}

.entry-b.tp {
    margin-top: 0;
}

.entry-b.tp:nth-child(2) {
    margin-top: 40px;
}

.entry-b.tp a {
    padding: 30px 0 40px;
}

.entry-b a p {
    color: #fff;
    text-align: center;
    line-height: 1;
}

.entry-b a p.m01 {
    font-family: "Sawarabi Mincho", serif;
    font-size: 1.3rem;
}

.entry-b a p.m02 {
    font-family: "Sawarabi Mincho", serif;
    font-size: 2.8rem;
    margin: 1.1rem 0 1.2rem;
    letter-spacing: 0.2rem;
}

.entry-b a p.m03 {
    font-size: 1.2rem;
    font-weight: 300;
}

.aside-footer {
    border-top: 1px solid #006cb8;
    padding: 4rem 1.5rem;
    color: #414141;
}

.aside-footer ul li a {
    display: inline-block;
    padding: 1.6rem 0 1.6rem 2rem;
    color: #414141;
    font-weight: 300;
    font-size: 1.3rem;
}

.aside-footer ul li.corporate a {
    padding-right: 13px;
    position: relative;
}

.aside-footer ul li.corporate a::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-image: url(img/icon_site.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    top: 14px;
    right: 0;
}

.aside-company {
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 1.6rem;
    padding-left: 2rem;
}

.frame-sec {
    padding: 5rem 0;
}

.frame-sec-page {
    margin-top: 7rem;
}

/*お知らせ*/
#information h4,
h2,
h4 {
    text-align: center;
    color: #006cb8;
    font-weight: 600;
    font-size: 1.6rem;
    margin-top: 1rem;
}

#page-tt h1 {
    font-size: 1.8rem;
    text-align: center;
    color: #006cb8;
    font-weight: 600;
}

#mins h2 {
    font-family: "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        "Yu Gothic UI", "MS PGothic", sans-serif;
}

#page-h2.tt {
    max-width: 360px;
    margin: auto;
}

#information .tt img {
    max-width: 180px;
    margin: 0 auto 0.1rem;
}

#recruit .tt img,
#info-session .tt img,
#internship .tt img,
#page-tt .tt img,
#team .tt img {
    width: 82%;
    max-width: 340px;
    margin: 0 auto 4rem;
}

#team .tt img {
    margin-bottom: 1rem;
}

#info-session .tt img,
#internship .tt img,
#team .tt img {
    width: 100%;
}

#info-session .tt img,
#team .tt img {
    margin-top: 3rem;
}

#recruit .tt img {
    margin: 0 auto 0.1rem;
}

#environment #page-tt .tt img {
    max-width: 460px;
}

#information dl,
#details dl,
#environment dl {
    padding: 4rem 0;
    font-size: 1.5rem;
    max-width: 816px;
    margin: auto;
}

#information dl {
    padding: 4rem 0 9rem;
}

#details dl,
#environment dl {
    max-width: 960px;
    margin: 0;
    padding-top: 0;
}

#environment dl {
    margin-top: 3rem;
}

#information dl dt,
#details dl dt,
#environment dl dt {
    width: 130px;
    padding: 1.4rem 0 0;
    font-weight: 300;
}

#internship #details dl dt {
    width: 220px;
}

#internship #details dl p {
    background-color: #97c5cc;
    color: #fff;
    font-weight: 600;
    margin: 2rem 0 0.8rem;
}

#information dl dd,
#details dl dd,
#environment dl dd {
    padding: 0.5rem 0 1.4rem;
    /*    border-bottom: 1px solid #006cb8; */
    font-weight: 300;
    width: calc(100% - 130px);
}

#details dl dt,
#environment dl dt {
    padding: 1.5rem 0 0;
    font-weight: 600;
}

#details dl dd,
#environment dl dd {
    padding: 0.6rem 0 1.5rem;
    border-color: #d7e0e2;
}

#details dl dt.dt01,
#environment dl dt.dt01 {
    padding-top: 0;
}

#internship #details dl dd dl dt {
    padding: 1.2rem 0 0;
    color: #69b3c4;
    width: 140px;
}

#internship #details dl dd dl dd {
    padding: 0 0 1.2rem;
    border: none;
}

#internship #details dl dd i {
    color: #006cb8;
}

.dt02 {
    border-bottom: 0 !important;
}

.min {
    font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝",
        "MS PMincho", serif;
}

/*採用情報*/

.cp-wrapper {
    padding: 4rem 0;
    text-align: center;
}

#info-session .cp-wrapper,
#internship .cp-wrapper,
#team .cp-wrapper {
    text-align: left;
}

.cp-wrapper-innar {
    padding: 4rem 0;
}

#team .cp-wrapper {
    padding-bottom: 0;
}

.cp-wrapper p.cp {
    font-size: 2rem;
    font-weight: 600;
}

.cp-wrapper p.cp-text {
    padding: 3rem 0;
    font-size: 1.5rem;
    line-height: 1.9;
}

#info-session .cp-wrapper p.cp-text {
    padding: 0;
}

#team .cp-wrapper p.cp-text {
    text-align: center;
}

#top h3 {
    font-size: 2.4rem;
    padding-left: 50px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
}

#top h3::after {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #006cb8;
    top: 1.2rem;
    left: 0;
    bottom: 0;
}

#details dd span {
    background-color: #006cb8;
    color: #fff;
    padding: 0.5rem 1.6rem;
    margin-right: 1.6rem;
    line-height: 2;
}

.pc-row img {
    max-width: 340px;
}

.slider {
    padding: 6rem 0 10rem;
}

nav.globalMenuSp ul li a.active {
    color: #006cb8 !important;
    border-bottom: 2px solid #006cb8;
}

nav.globalMenuSp ul li a span {
    color: #006cb8 !important;
    font-size: 1.3rem;
}

.fv-page {
    height: 80vh;
    margin-top: -82px;
    width: 95%;
    border-radius: 0 0 30px 0;
    position: relative;
    z-index: -1;
}

.fv-page::before {
    position: absolute;
    content: "";
    background-image: url(img/fv-about.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    width: 100%;
    height: 80vh;
    top: 0;
    left: 0;
    border-radius: 0 0 30px 0;
}

#notice .fv-page {
    height: 30vh;
}

#notice .fv-page::before {
    background-image: none;
}

#notice dl {
    display: flex;
    flex-wrap: wrap;
}

#notice dt {
    float: left;
    width: 30%;
}

#notice dd {
    float: left;
    width: 70%;
}

#people .fv-page::before {
    background-image: url(img/fv-people.png);
    background-position: top;
}

#services .fv-page::before {
    background-image: url(img/fv-service.png);
    background-position: top;
}

#environment .fv-page::before {
    background-image: url(img/fv-environment.png);
    background-position: top;
}

#faq .fv-page::before {
    background-image: url(img/fv-faq.jpg);
    background-position: center;
}

#page-tt {
    margin-top: -80px;
    z-index: 1;
    margin-bottom: 5rem;
}

.bread {
    margin-bottom: 5rem;
}

.bread li {
    display: inline-block;
    font-size: 1.3rem;
    position: relative;
    color: #cccccc;
    padding: 0.8rem 1.6rem 0.8rem;
}

.bread li:first-child {
    padding: 0.8rem 0.8rem 0.8rem 0;
}

.bread li a i {
    color: #006cb8;
}

.bread li::before {
    position: absolute;
    content: "";
    background-image: url(img/chevron-right-solid.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 1rem;
    height: 1rem;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.bread li:first-child::before {
    display: none;
}

.page-nav ul li a {
    display: block;
    background-color: #fff;
    padding: 1rem 6rem 1rem 2.2rem;
    border-radius: 50px;
    border: 0.03rem solid #2b2b2b;
    color: #212121;
    position: relative;
    font-size: 1.3rem;
}

.page-nav ul li a::after {
    position: absolute;
    content: "";
    background-image: url(img/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 18px;
    height: 18px;
    top: 0;
    bottom: 0;
    right: 2.2rem;
    margin: auto;
}

.page-nav ul li {
    margin: 0.8rem;
}

.page-nav ul li:last-child {
    margin-bottom: 0;
}

#message .message-content p {
    text-align: justify;
    line-height: 1.9;
    padding: 4rem 0;
}

.ceo {
    margin: 2rem 0;
    text-align: right !important;
}

.ceo-img {
    width: 160px;
    margin-left: auto;
    margin-top: 1rem;
    border-radius: 30px;
}

.btn-more a {
    display: block;
    width: calc(100% -50px);
    padding: 1.6rem 6rem;
    color: #fff;
    background-color: #006cb8;
    position: relative;
}

.btn-more p {
    font-size: 1.2rem;
    color: #717171;
    font-family: "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        "Yu Gothic UI", "MS PGothic", sans-serif;
    font-weight: 300;
    margin-top: 0.4rem;
}

/*services*/
.job-list-wrapper,
.environment-wrapper {
    margin-top: 7rem;
}

.job-list-item {
    margin-bottom: 5rem;
}

.job-list-item h3 {
    color: #006cb8;
    font-weight: 600;
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.job-list-item h3::before {
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #006cb8;
    bottom: 0;
}

.job-list-item p.jt {
    font-weight: 300;
    font-size: 1.5rem;
    text-align: justify;
    margin: 1.2rem 0 2.4rem;
}

.aside-article-wrapper {
    padding: 7rem 0;
    background-color: #e5f5f9;
    position: relative;
    border-radius: 0 60px 60px 0;
    margin-right: 5%;
}

.aside-article-wrapper::before {
    position: absolute;
    content: "";
    display: block;
    width: 95vw;
    background-color: #e5f5f9;
    top: 0;
    left: 0;
}

.aside-article-wrapper aside {
    margin: 0 0.8rem;
}

.aside-article-wrapper aside h4 {
    margin-bottom: 3rem;
}

.article-innar article {
    margin-bottom: 2rem;
}

.article-innar article img {
    width: 70px;
    margin-right: 0.8rem;
}

.article-innar .ta {
    display: block;
    font-size: 1.3rem;
    font-weight: 300;
    color: #212121;
}

.cat {
    font-size: 1rem;
    color: #fff;
    background-color: #006cb8;
    padding: 0.1rem 0.4rem;
    display: inline-block;
    margin-bottom: 0.2rem;
    font-weight: 300;
}

.article-innar .ta::after {
    display: inline-block;
    content: url(img/icon_site.svg);
    width: 1rem;
    position: relative;
    right: -0.6rem;
}

.team-article-wrapper article {
    margin-bottom: 3rem;
    border-radius: 13px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 8px -6px #000000;
}

.team-article-wrapper article a {
    padding: 1.2rem 0.8rem;
}

.team-article-wrapper article img {
    width: 120px;
    margin-right: 1rem;
}

.team-article-wrapper article .ta {
    color: #006cb8;
    font-weight: 600;
}

.team-article-wrapper article .site {
    display: block;
    width: 12px;
    margin-left: auto;
}

.team-cat {
    font-weight: 300;
    color: #212121;
    font-size: 1.2rem;
}

/*environment*/
#environment h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    background-color: #97c5cc;
    padding: 0.8rem;
}

#environment .ev-t {
    font-size: 1.5rem;
    font-weight: 300;
}

.rt-img {
    margin-top: 2rem;
}

.h3s {
    color: #006cb8;
    margin: 2rem 0 1.2rem;
    font-weight: 500;
    border-left: 3px solid #006cb8;
    padding-left: 1rem;
    font-size: 1.6rem;
}

#environment .environment-wrapper ol {
    list-style-type: decimal-leading-zero;
}

#environment .environment-wrapper ol li,
#environment .environment-wrapper ul li {
    line-height: 2.2;
}

#environment .environment-wrapper ul {
    list-style-type: disc;
    margin-left: 1.8rem;
}

#environment .environment-wrapper ul li ul {
    list-style-type: circle;
    margin-left: 2rem;
}

/*FAQ*/

.faq-wrapper dl {
    margin-bottom: 5rem;
}

.faq-wrapper dl dt,
.faq-wrapper dl dd {
    position: relative;
    padding: 1.2rem 0 1.2rem 4.5rem;
    border-bottom: 2px solid #d7e0e2;
}

.faq-wrapper dl dd {
    border-bottom: none;
    margin-top: 2rem;
    font-weight: 300;
    font-size: 1.4rem;
}

.faq-wrapper dl dt::before,
.faq-wrapper dl dd::before {
    content: "";
    position: absolute;
    background-image: url(img/q.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 33px;
    height: 33px;
    top: 0;
    left: 0;
}

.faq-wrapper dl dd::before {
    background-image: url(img/a.svg);
}

/*背景*/
#recruit {
    position: relative;
}

#recruit::before {
    content: "";
    background-image: url(img/deco01.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    display: block;
    width: 100px;
    height: calc(100px * 0.91);
    top: 10rem;
    right: 0;
}

#recruit #details {
    position: relative;
}

#recruit #details::after {
    content: "";
    background-image: url(img/deco03.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    display: block;
    width: 140px;
    height: calc(140px * 0.88);
    bottom: -7rem;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

#info-session #details {
    position: relative;
}

#info-session #details::after {
    content: "";
    background-image: url(img/deco05.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    display: block;
    width: 280px;
    height: calc(280px * 1.02);
    bottom: -7rem;
    left: 10rem;
    opacity: 0.5;
    z-index: -1;
}

#internship {
    position: relative;
}

#internship::after {
    content: "";
    background-image: url(img/deco04.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    display: block;
    width: 60px;
    height: calc(60px * 1.04);
    top: 8rem;
    right: 3%;
    z-index: -1;
}

.ft-faq-wrapper {
    width: 100%;
    height: 320px;
}

.ft-faq-wrapper a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff;
}

.ft-faq-wrapper a::after {
    content: "";
    position: absolute;
    background-image: url(img/ft-faq.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    display: block;
    width: 100%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: -1;
}

.ft-faq-wrapper a .ft-faq-innar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.ft-faq-wrapper a img {
    width: 120px;
    margin: 0 auto 2rem;
}

.ft-faq-wrapper a p {
    position: relative;
    padding-right: 100px;
    text-align: right;
    margin-right: 15px;
}

.ft-faq-wrapper a p::after {
    content: "";
    position: absolute;
    right: 0;
    top: 1rem;
    width: 77px;
    height: 1px;
    background-color: #fff;
}

.edu {
    margin: 4rem auto 0;
}

.logo-link {
    display: inline-block;
}

.entry-logo {
    width: 600px;
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
}

.entry-logo a {
    width: 300px;
    margin: 10px;

}

.entry-h {
    font-weight: bold;
    font-size: 1.6rem;
}

@media screen and (min-width: 0px) and (max-width: 400px) {
    body {
        font-size: 1.5rem;
    }

    #header {
        padding-right: 0.8rem;
        padding-left: 0.8rem;
    }

    .header-logo a img {
        height: 34px;
    }

    .fv-copyarea img {
        max-width: 290px;
    }

    .cp-wrapper p.cp {
        font-size: 1.8rem;
    }

    #top h3 {
        font-size: 2.2rem;
    }

    #information dl,
    .cp-wrapper p.cp-text,
    #details dl,
    #message .message-content p,
    .job-list-item p.jt,
    #environment .ev-t,
    #environment dl,
    .faq-wrapper dl dd {
        font-size: 1.4rem;
        font-weight: 300;
    }

    #page-h2.tt {
        max-width: 280px;
        margin: auto;
    }

    .faq-wrapper dl dt {
        font-size: 1.4rem;
    }

    .faq-wrapper dl dd {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 576px) {
    .fv-copyarea img {
        max-width: 400px;
    }
}

@media screen and (min-width: 768px) {
    #header-innar {
        height: 74px;
    }

    .header-logo a img {
        height: 46px;
    }

    .header-logo p {
        font-size: 1.2rem;
    }

    .entry a {
        height: 74px;
        line-height: 74px;
    }

    .footer-end-text p {
        margin-top: 0;
        text-align: left;
    }

    .aside-footer {
        padding: 1.6rem 1.5rem;
    }

    .aside-company {
        margin-bottom: 0;
        width: 400px;
    }

    .frame-sec {
        padding: 9rem 0;
    }

    footer.frame-sec {
        padding-top: 5rem;
    }

    #information .tt img {
        max-width: 240px;
    }

    #information dl dt {
        /*        border-bottom: 1px solid #006cb8; */
        padding-bottom: 1.4rem 0 0.8rem;
        margin-right: 18px;
    }

    .dt01 {
        border-top: 1px solid #006cb8;
    }

    #information dl dd {
        padding: 1.4rem 0;
    }

    #details dl dt,
    #details dl dd,
    #details dl dt.dt01,
    #environment dl dt,
    #environment dl dd,
    #environment dl dt.dt01 {
        padding: 1.5rem 0;
    }

    #details dl dt,
    #environment dl dt {
        border-bottom: 1px solid #229fcc;
    }

    #details dl dt.dt01,
    #details dl dd.dt01,
    #environment dl dt.dt01,
    #environment dl dd.dt01 {
        border-top: none;
    }

    #environment dl dt.dt03 {
        border-bottom: none;
    }

    #details dl dd,
    #environment dl dd {
        width: calc(100% - 160px);
        margin-left: 30px;
        border-bottom: 1px solid #bfe2e1;
    }

    .entry-b.tp {
        margin-top: 0;
        width: 45%;
    }

    .entry-b.tp:nth-child(2) {
        margin-top: 0;
    }

    .fv-page {
        width: 80%;
    }

    .page-nav ul li {
        margin-right: 10px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .page-nav ul li:last-child {
        margin-right: 0;
    }

    #page-tt {
        margin-top: -190px;
    }

    #mins #page-h2.tt {
        width: 100%;
    }

    #page-tt .tt img {
        margin: 0;
        max-width: 480px;
    }

    #faq #page-tt .tt img {
        max-width: 320px;
    }

    #page-tt h1 {
        text-align: left;
        margin-left: 100px;
    }

    #page-tt h1 {
        font-size: 2rem;
    }

    h2,
    h4 {
        margin-top: 1.6rem;
    }

    .job-list-item-info {
        width: 45%;
    }

    .job-list-item {
        margin-bottom: 7rem;
    }

    .job-list-item h3 {
        color: #006cb8;
        font-size: 2.2rem;
        position: relative;
        padding-bottom: 0;
        margin-top: 1.6rem;
    }

    .job-list-item h3::before {
        display: none;
    }

    .job-list-item p.jt {
        margin: 1.6rem 0 3rem;
    }

    .job-list-item img {
        width: 50%;
    }

    .aside-article-wrapper {
        padding-left: calc((100% - 1200px) / 2);
        margin-right: 5%;
    }

    .aside-article-wrapper aside {
        margin: auto;
    }

    .aside-article-wrapper aside h4 {
        width: 20%;
        text-align: left;
        margin-top: 0;
    }

    .article-innar article {
        margin-bottom: 5rem;
    }

    .article-innar article img {
        width: 120px;
        margin-right: 1.6rem;
    }

    .cat {
        font-size: 1.4rem;
    }

    .article-innar .ta {
        font-size: 1.6rem;
        margin-top: 0.8rem;
        font-weight: 400;
    }

    .team-article-wrapper article {
        width: 49%;
    }

    .entry-b.tp a {
        font-size: 1.8rem;
        padding: 50px;
    }

    #environment h3 {
        font-size: 2rem;
        padding: 1rem;
    }

    .h3s {
        font-size: 1.8rem;
        padding-left: 1.4rem;
        margin-top: 2.5rem;
    }

    .it,
    .ev-t {
        width: 47%;
    }

    .rt-img {
        margin-top: 0;
        width: 47%;
    }

    .ev-t.on {
        width: 60%;
    }

    .bread {
        margin-bottom: 0;
    }

    .page-nav ul li a {
        padding: 1rem 3.3rem 1rem 2rem;
    }

    .hamburger {
        top: 1.5rem;
    }

    .entry.sp {
        margin-top: 5rem;
    }

    .entry.sp a {
        width: 320px;
    }

    nav.globalMenuSp ul {
        padding-top: 8rem;
    }

    nav.globalMenuSp ul li a,
    nav.globalMenuSp ul li {
        text-align: center;
    }

    nav.globalMenuSp ul li a {
        padding-right: 5rem;
    }

    #recruit::before {
        width: 240px;
        height: calc(240px * 0.91);
        top: 16rem;
    }

    #recruit #details::after {
        width: 280px;
        height: calc(280px * 0.88);
        bottom: -10rem;
        right: 0;
    }

    #info-session #details::after {
        width: 280px;
        height: calc(280px * 1.02);
        bottom: -24rem;
        left: 10rem;
    }

    #internship::after {
        width: 130px;
        height: calc(130px * 1.04);
    }

    a:hover {
        opacity: 0.6;
        transition: 0.3s;
    }

    .ft-faq-wrapper {
        height: 150px;
    }

    .ft-faq-wrapper a::after {
        height: 150px;
    }

    .ft-faq-wrapper a .ft-faq-innar {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        margin-bottom: 2rem;
    }

    .ft-faq-wrapper a img {
        margin: 0;
    }

    .page-nav ul li a::after {
        width: 13px;
        height: 13px;
        right: 1.2rem;
    }

    #environment #page-tt .tt img {
        margin-bottom: 1.6rem;
    }
}

@media screen and (min-width: 992px) {
    header {
        position: fixed;
        z-index: 10;
        margin-top: 8px;
        padding-right: 15px;
        padding-left: 15px;
    }

    #header {
        background-color: transparent;
    }

    #header-innar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding-right: 22px;
        padding-left: 22px;
        border-radius: 50px;
        box-shadow: 0px 0px 8px -6px #000000;
        margin: inherit;
        width: auto;
        background-color: #fff;
    }

    .hamburger {
        display: none;
    }

    .header-menu {
        margin-left: 40px;
    }

    nav.globalMenuSp {
        display: block;
        background-color: transparent;
        position: inherit;
        text-align: left;
    }

    nav.globalMenuSp ul {
        margin: 0;
        padding-top: 0;
    }

    nav.globalMenuSp ul li {
        display: inline;
    }

    nav.globalMenuSp ul li a {
        display: inline-block;
        padding: 0 15px 0 0;
        font-size: 1.4rem;
    }

    nav.globalMenuSp {
        opacity: 100;
    }

    nav.globalMenuSp.active {
        margin: 0;
    }

    .entry {
        margin-left: 45px;
    }

    .entry a {
        font-size: 1.8rem;
    }

    footer {
        padding: 50px 0;
    }

    .footer-sitemap li {
        border-bottom: 0;
    }

    .footer-sitemap li a {
        padding: 1.2rem 0;
        font-size: 1.5rem;
    }

    .footer-sitemap li a.link-none {
        margin-bottom: 20px;
        padding: 0;
    }

    .footer-sitemap li a.id-collapse {
        pointer-events: none;
    }

    .footer-sitemap li a:before {
        top: 15px;
        left: 2px;
    }

    .footer-sitemap li a:hover {
        transition: 0.3s;
        color: #006cb8 !important;
    }

    .link-none {
        pointer-events: none;
    }

    .footer-sitemap li ul.collapse:not(.show) {
        display: block;
        background: transparent;
        margin-left: 4px;
    }

    .footer-sitemap li ul.collapse:not(.show) li a {
        padding: 4px 0;
        color: #212121;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .footer-sitemap li:nth-child(2n) {
        background-color: transparent;
    }

    .sitemap-sp li a {
        padding: 0;
    }

    .footer-sitemap li ul.collapse:not(.show) li a:before {
        top: 4px;
        left: 8px;
    }

    .footer-sitemap li a span::before,
    .footer-sitemap li a span::after {
        display: none;
    }

    .footer-copy img {
        margin: 60px auto;
    }

    .entry-b {
        margin-top: 50px;
    }

    .entry-b.tp {
        margin-top: 0;
    }

    .entry-b a::before {
        height: 50px;
        top: -50px;
    }

    .entry-b a::after {
        height: 30px;
    }

    .entry-b a p.m02 {
        font-family: "Sawarabi Mincho", serif;
        font-size: 3.2rem;
        margin: 1.8rem 0 1.9rem;
        letter-spacing: 0.2rem;
    }

    .aside-footer ul li a:hover {
        transition: 0.3s;
        color: #006cb8;
    }

    .top-menu-sec {
        height: 768px;
        background-color: #404040;
        position: relative;
    }

    .top-menu-sec::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 768px;
        background-image: url(img/bg-top01.png);
        background-position: center bottom;
        background-size: cover;
        z-index: 1;
    }

    .top-menu-sec-innar {
        position: absolute;
        content: "";
        width: 100%;
        height: 630px;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        z-index: 2;
    }

    .top-menu-sec-innar img.cp {
        width: 400px;
        margin: 0 auto;
        margin-bottom: -60px;
    }

    .top-menu-item {
        width: 370px;
        position: relative;
        z-index: 5;
    }

    .top-menu-item img {
        width: 135px;
    }

    .top-menu-b {
        position: absolute;
        display: block;
        bottom: 0;
        width: 100%;
    }

    .top-menu-m {
        position: absolute;
        display: block;
        width: 250px;
        height: 294px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }

    .menu01,
    .menu02 {
        padding: 30px 0;
    }

    .menu01::before,
    .menu02::before,
    .menu03::before,
    .menu04::before,
    .menu05::before {
        content: "";
        position: absolute;
        background-image: url(img/menu01-bg.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: right;
        display: block;
        width: 100%;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        z-index: -1;
    }

    .menu02::before {
        background-image: url(img/menu02-bg.svg);
    }

    .menu03::before {
        background-image: url(img/menu03-bg.svg);
    }

    .menu04::before {
        background-image: url(img/menu04-bg.svg);
        width: 80%;
    }

    .menu05::before {
        background-image: url(img/menu05-bg.svg);
    }

    .menu03,
    .menu04 {
        padding: 53px 0;
    }

    .top-menu-item-innar {
        padding: 2rem 0 2rem 2rem;
    }

    .top-menu-m-item-innar {
        padding: 50px 0;
        text-align: center;
        color: #fff;
    }

    .top-menu-item-innar p {
        color: #74949e;
        font-weight: 600;
        font-size: 1.6rem;
    }

    .top-menu-item-innar nav ul li,
    .top-menu-m-item-innar nav ul li {
        display: inline-block;
        margin: 0.5rem 0;
    }

    .top-menu-item-innar nav,
    .top-menu-m-item-innar nav {
        padding: 2rem 0;
    }

    .top-menu-item-innar nav ul li a,
    .top-menu-m-item-innar nav ul li a {
        position: relative;
        color: #006cb8;
        font-weight: 600;
        padding: 0.8rem 0;
        padding-right: 40px;
    }

    .top-menu-item-innar nav ul li a::after,
    .top-menu-m-item-innar nav ul li a::after {
        position: absolute;
        content: "";
        background-image: url(img/icon-arrow.svg);
        background-repeat: no-repeat;
        background-size: contain;
        display: block;
        width: 26px;
        height: 26px;
        top: 10px;
        right: 0;
        bottom: 0;
        margin-bottom: 0;
        margin-right: 0;
    }

    .top-menu-m-item-innar nav ul li a::after {
        background-image: url(img/icon-arrow-w.svg);
    }

    .top-menu-m-item-innar nav ul li a {
        color: #fff;
    }

    #recruit h2 {
        text-align: right;
    }

    #recruit .tt {
        max-width: 380px;
    }

    #recruit .tt img {
        /*  width: 100%;
  max-width: 100%;*/
        margin-right: auto;
        margin: 0 0 1.6rem 0;
    }

    .cp-wrapper {
        text-align: left;
    }

    .cp-wrapper p.cp {
        font-size: 2.2rem;
        position: relative;
        display: inline-block;
    }

    .cp-wrapper p.cp::after {
        position: absolute;
        content: "";
        display: block;
        width: 190px;
        height: 1px;
        background-color: #2b2b2b;
        right: 0;
        top: 0;
        bottom: 0;
        margin-top: auto;
        margin-bottom: auto;
        right: -240px;
    }

    .cp-wrapper img {
        max-width: 560px;
    }

    #info-session .tt img,
    #internship .tt img {
        margin-right: auto;
        margin-left: 0;
        max-width: 480px;
    }

    .img-wrapper {
        width: 53%;
    }

    #top h3 {
        padding-left: 70px;
        font-size: 3.6rem;
    }

    #top h3::after {
        width: 50px;
        top: 20px;
    }

    #internship #details dl dd dl dt {
        border: none;
        padding-top: 0;
        width: 130px;
    }

    .pc-row {
        position: relative;
        width: 355px;
        max-width: 355px;
    }

    .pc-row img {
        width: 355px;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    #info-session .tt img {
        margin-top: 0;
    }

    #message .message-content p {
        padding: 0;
    }

    #page-h2.tt {
        width: 34%;
        margin: 0;
        margin-right: 80px;
    }

    .team-innar #page-h2.tt {
        width: 100%;
    }

    #message .message-content {
        max-width: 680px;
    }

    h2 {
        text-align: left;
        margin-left: 80px;
    }

    .team-innar {
        margin-left: 5%;
    }

    #team .cp-wrapper img {
        max-width: 690px;
    }

    .team-article-wrapper {
        margin-top: 3rem;
    }

    .team-article-wrapper article img {
        width: 156px;
    }

    .team-article-wrapper {
        margin-top: 5rem;
    }

    .fv::before {
        background-image: url(img/fv-top.png);
    }

    .fv-copyarea {
        bottom: 10vh;
    }

    .fv-copyarea img {
        max-width: 360px;
    }

    #blog .article-innar article {
        width: 49%;
    }

    .page-nav ul li a {
        padding: 1rem 6rem 1rem 2.2rem;
    }

    .faq-wrapper dl {
        margin-bottom: 7rem;
    }

    .faq-wrapper dl dt,
    .faq-wrapper dl dd {
        padding: 1.7rem 0 1.7rem 6rem;
        font-size: 1.7rem;
    }

    .faq-wrapper dl dd {
        font-size: 1.6rem;
    }

    .faq-wrapper dl dt::before,
    .faq-wrapper dl dd::before {
        width: 42px;
        height: 42px;
    }

    #recruit::before {
        width: 320px;
        height: calc(320px * 0.91);
        top: 17rem;
    }

    #recruit #details::before {
        content: "";
        background-image: url(img/deco02.svg);
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        display: block;
        width: 560px;
        height: calc(560px * 0.93);
        top: 20%;
        right: 5%;
        z-index: -1;
        opacity: 0.5;
    }

    #info-session #details::after {
        width: 320px;
        height: calc(320px * 1.02);
        bottom: -27rem;
        left: 34rem;
    }

    #internship::after {
        width: 170px;
        height: calc(170px * 1.04);
        top: 10rem;
        right: 3%;
        z-index: -1;
    }

    .bg-full {
        position: relative;
    }

    .bg-full::after {
        content: "";
        position: absolute;
        background-color: #e4f4f8;
        display: block;
        width: 84%;
        max-width: 784px;
        height: 100%;
        z-index: -99;
        top: 0;
        right: calc(((100% - 1200px) / 2) / 2);
        border-radius: 48px;
        opacity: 0.4;
    }

    .header-logo {
        margin-left: 0;
    }

    #environment #page-tt .tt img {
        margin-bottom: 2rem;
    }
}

@media screen and (min-width: 1200px) {
    #header-innar {
        padding-right: 38px;
        padding-left: 38px;
    }

    .header-menu {
        margin-left: 60px;
    }

    .frame-sec {
        padding: 14rem 0;
    }

    .slider {
        padding: 6rem 0 10rem;
    }

    footer {
        padding: 60px 0;
    }

    .aside-footer ul li a {
        padding: 1.6rem;
    }

    .top-menu-m {
        width: 300px;
    }

    .top-menu-item img {
        width: 160px;
    }

    .top-menu-item {
        width: 400px;
    }

    .cp-wrapper img {
        max-width: 640px;
    }

    .img-wrapper {
        width: 52%;
    }

    #info-session .img-wrapper {
        width: 60%;
    }

    #internship .img-wrapper {
        width: 60%;
    }

    .cp-wrapper p.cp::after {
        width: 240px;
        right: -270px;
    }

    .cp-wrapper p.cp-text {
        font-size: 1.8rem;
    }

    .cp-wrapper-innar {
        position: relative;
        left: -40px;
    }

    .internship-innar {
        position: relative;
        width: 60%;
    }

    nav.globalMenuSp ul li a {
        font-size: 1.5rem;
    }

    #page-tt {
        margin-bottom: 8rem;
    }

    #environment #page-tt .tt img {
        max-width: 560px;
    }

    #page-tt h1 {
        font-size: 2.2rem;
    }

    .page-nav ul li a {
        padding: 1.5rem 8rem 1.5rem 3.2rem;
    }

    .page-nav ul li a::after {
        width: 22px;
        height: 22px;
        right: 3.2rem;
    }

    .page-nav ul li {
        margin: 1rem;
    }

    .frame-sec-page {
        margin-top: 12rem;
    }

    .job-list-item-info {
        width: auto;
    }

    .job-list-item img {
        width: 720px;
        margin-left: 80px;
    }

    .job-list-wrapper,
    .aside-article-wrapper,
    .environment-wrapper {
        margin-top: 10rem;
    }

    .job-list-item {
        margin-bottom: 10rem;
    }

    h2,
    h4 {
        font-size: 1.8rem;
    }

    .aside-article-wrapper aside h4 {
        width: 260px;
        font-size: 1.8rem;
    }

    .article-innar article img {
        width: 160px;
    }

    .team-article-wrapper {
        margin-top: 7rem;
    }

    .entry-b.tp a {
        font-size: 2rem;
        padding: 50px;
    }

    .fv-copyarea img {
        max-width: 480px;
    }

    #recruit::before {
        top: 20rem;
    }

    #internship::after {
        top: 13rem;
    }

    .ft-faq-wrapper {
        height: 180px;
    }

    .ft-faq-wrapper a::after {
        height: 180px;
    }
}

@media screen and (min-width: 1345px) {
    .aside-article-wrapper {
        margin-right: calc((100% - 1200px) / 2);
    }
}

@media screen and (min-width: 1400px) {
    nav.globalMenuSp ul li a {
        padding: 0 2rem 0 1.6rem;
    }
}