@charset "utf-8";

* {
    -webkit-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition-property: all;
    -webkit-transition-duration: .125s;
    -webkit-transition-timing-function: linear
}

* {
    -webkit-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;

}

html {
    font-size: 10px;
}

html::-webkit-scrollbar {
    overflow: hidden;
    width: 5px;
    background: #eee;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

html::-webkit-scrollbar:horizontal {
    height: 5px;
}

html::-webkit-scrollbar-button {
    display: none;
}

html::-webkit-scrollbar-piece {
    background: #eee;
}

html::-webkit-scrollbar-piece:start {
    background: #eee;
}

html::-webkit-scrollbar-thumb {
    overflow: hidden;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #333;
}

html::-webkit-scrollbar-corner {
    overflow: hidden;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #333;
}

body {
    background: #FFFFFF;
    font-size: 1.8rem;
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif, "YakuHanJP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Meiryo", sans-serif;
    color: #333333;
    letter-spacing: 2px;
    font-weight: 400
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

iframe {
    vertical-align: bottom
}

.txt-center {
    text-align: center
}

.txt-right {
    text-align: right
}

.left {
    float: left
}

.right {
    float: right
}

a,
a:hover {
    color: #333333
}

a:hover {
    text-decoration: underline
}

.clear {
    clear: both
}

.inner {
    max-width: 1280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.fade-out {
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}

.fade-in {
    opacity: 1;
}

#wrapper {
    width: 100%;
    overflow: hidden;
    position: relative
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

#header .headInner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#header h1 {
    line-height: 1;
}

#header h1 img {
    width: auto;
    height: 35px;
}

#header h1 a {
    display: inline-block;
    padding: 20px 25px;
    line-height: 1;
}

#header.fixed {
    background: rgba(0, 113, 188, 0.8);

}

#header.fixed h1 img {
    height: 25px;
}

#header.fixed h1 a {
    padding: 15px 25px;
}

#g_nav {
    display: flex;
    justify-content: right;
    flex-direction: column;
    max-width: 640px;
    width: 100%;
}

#g_nav ul {
    display: flex;
    flex-direction: row;
    line-height: 1;
}

#g_nav ul li {
    width: 25%;
    text-align: center;
}

#g_nav ul li a {
    padding: 28.5px 15px;
    display: block;
    color: #FFFFFF;
    text-decoration: none;
}


#g_nav ul li a span,
#footer .flex-box .f_nav ul li a span {
    position: relative;
}

#header.fixed #g_nav ul li a {
    padding: 18.5px 15px;
    display: block;
    color: #FFFFFF;
    text-decoration: none;
}

#g_nav ul li a span::after,
#footer .flex-box .f_nav ul li a span::after {
    /*アンダーラインのスタイル*/
    position: absolute;
    content: "";
    display: block;
    height: 0.5px;
    background-color: #fff;
    bottom: -15px;
    left: 0;
    /*幅を0に設定*/
    width: 0;
    /*アニメーションの速度設定*/
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#g_nav ul li a span:hover::after,
#footer .flex-box .f_nav ul li a span:hover::after {
    width: 100%;
}

#toggle {
    display: none;
}

/* メニューを閉じる時のスタイル

 display:none; を使用せず、opacityを使うとfadeっぽくなる */

.hide {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

/* アニメーションはメニューの開閉時のみでいいので

 .toggleWrapに書かず、別にclassを用意 */

.animation {
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

/* メニューオープン時のみ、メニューの後ろのコンテンツをスクロールさせない

 iOS safariには別途対応が必要（jQueryに記述）*/

.no-scroll {
    overflow: hidden;
}

#toggle {
    display: block;
    color: #fff;
    text-align: center;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.trigger,
.trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.trigger {
    position: relative;
    width: 28px;
    height: 19px;
}

.trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 4px;
}

.trigger span:nth-of-type(1) {
    top: 0;
}

.trigger span:nth-of-type(2) {
    top: 8px;
}

.trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.trigger span:nth-of-type(3) {
    bottom: 0;
}

.trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) scale(0);
    transform: translateY(8px) scale(0);
}

.trigger.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.trigger.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) scale(0);
    transform: translateY(-8px) scale(0);
}

/*--------------- TOPスライド部分 ---------------*/

#MainVisual {
    /*padding: 195px 0 120px;*/
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100svh;
    background-color: #5ba0e6;
}

#MainVisual .inner {
    padding: 0;
}

#MainVisual.top .inner {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    margin-top: -228.5px;
}

/*---------- Swiper ----------*/
#MainVisual .swiper-wrapper {
    position: relative;
}

#MainVisual .slide {
    position: relative;
    max-width: inherit;
    background-size: cover !important;
    padding: 0 !important;
    height: 100svh;
    background-repeat: no-repeat;
    background-size: cover;
}

#MainVisual .slide1 {
    background-image: url(../images/top/MainVisual/mainvisual1.webp);
    background-position: center center;
}

#MainVisual .slide2 {
    background-image: url(../images/top/MainVisual/mainvisual2.webp);
    background-position: center center;
}

#MainVisual .slide3 {
    background-image: url(../images/top/MainVisual/mainvisual3.webp);
    background-position: center center;
}

#MainVisual .slide4 {
    background-image: url(../images/top/MainVisual/mainvisual4.webp);
    background-position: center center;
}

/*---------- Swiper / ----------*/

/* --- 背景の指定 ------------------------------------------- */
#MainVisual .main-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    animation: bgAnime 15s infinite;
    /* 3画像 × 各5s = 15s */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
#MainVisual .main-image:nth-of-type(1) {
    background-image: url(../images/top/MainVisual/mainvisual1.jpg);
}

#MainVisual .main-image:nth-of-type(2) {
    background-image: url(../images/top/MainVisual/mainvisual2.jpg);
    animation-delay: 5s;
}

#MainVisual .main-image:nth-of-type(3) {
    background-image: url(../images/top/MainVisual/mainvisual3.jpg);
    animation-delay: 10s;
}


@keyframes bgAnime {
    50% {
        opacity: 1;
    }
}


#MainVisual .catch {
    color: #fff;
    position: absolute;
    z-index: 9000;
    padding: 0 80px;
}

#MainVisual .catch dl dt {
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
}

#MainVisual .catch dl dd {
    color: #fef252;
    margin: 20px 0 0;
}

#MainVisual .catch p {
    max-width: 640px;
}

/*-------------------------------------------------*/
/* Contents
/*-------------------------------------------------*/
#contents h2 {
    font-size: 23rem;
    text-align: center;
    letter-spacing: 2px;
    color: rgba(0, 127, 255, 0.2);
    font-weight: 900;
    position: absolute;
    top: -180px;
    margin: 50px 0 0;
    white-space: nowrap;
}

#contents h2 span.en {
    font-size: 1.8rem;
    display: block;
}

#contents a.anchor {
    display: block;
    padding: 145px 0 0;
    margin: -145px 0 0;
}

#contents .section-area {
    padding: 200px 0;
    position: relative;
    margin: 150px 0;
}

#contents .section-area:last-child {
    margin: 0;
}

.section-area .section-body {}

.section-area .section-body table {
    margin: 0 auto;
    width: auto;
}

.section-area .section-body table tbody th,
.section-area .section-body table tbody td {
    border-bottom: 0.5px solid #dcdcdc;
    padding: 30px 60px;
}

.section-area .section-body table tbody th {
    text-align: left;
    width: 250px;
}

#contents .article-foot a {
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    padding-right: 7px;
}

#contents .article-foot a::after {
    content: '';
    background: #0071bc;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transition: transform .3s;
    transform-origin: right top;
    transform: scale(0, 1);
}

#contents .article-foot a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}

#contents .article-foot a::before {
    content: '';
    display: inline-block;
    background-image: url(../images/top/about/arrow.svg);
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background-size: contain;
    margin: 0 10px 0 0;
    background-repeat: no-repeat;
}

#contents .article-foot {
    margin: 50px 0 0;
}

#contents h3 {
    font-size: 2.3rem;
    font-weight: 600;
}

#contents {
    background: url(../images/top/about/background.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0px 300px;
}

/*about*/
.about .article-body,
.works .article-body,
.recruit .article-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about .article-body,
.works .article-body {
    flex-direction: row;
}

.recruit .article-body {
    flex-direction: row-reverse;
}

.about .article-body p,
.works .article-body p,
.recruit .article-body p {
    max-width: 500px;
    margin: 50px 0 0;
}

.about .image,
.works .image {
    margin: 0 calc(50% - 50vw);
}

.recruit .image {
    /* margin: 0; */
    width: 100px;
    flex-shrink: 0;
}

.about .image img,
.works .image img,
.recruit .image img {
    max-width: 640px;
}

/*sustain*/
.sustain,
.recruit {
    background: #0071bc;
    padding: 100px 0 !important;
}

.sustain {
    right: calc(25%);
}

.recruit {
    left: calc(25%);
}

.sustain .inner,
.recruit .inner {
    color: #fff;
}

.sustain ul {
    display: flex;
    flex-wrap: wrap;
}

.sustain ul li:nth-child(2) {
    margin: 0 10px;
}

.sustain .section-body h3,
.sustain .section-body p {
    margin: 50px;
}

.sustain .inner .article-area,
.sustain .section-head {
    width: 100vw;
}

.sustain .inner .article-area {
    margin: 0 calc(100% - 50vw);
}

.sustain .section-head {
    margin: 0 calc(50% - 15vw);
}

.sustain .photo-list ul li {
    width: 25%;
}

.sustain h3 span {
    display: block;
    font-size: 2.0rem;
    margin: 10px 0 0;
}

/*recruit*/
.recruit a {
    color: #fff;
}

.recruit .article-foot a::after {
    background: #fff !important;
}

/*.recruit .article-text {
    width: 100%;
    margin: 0 0 0 -420px;
    padding: 0 0 0 500px;
}*/

.recruit .article-foot a::before {
    background-image: url(../images/top/recruit/arrow-white.svg) !important;
}

.recruit .article-area {
    width: 75vw;
    margin: 0 calc(50% - 75vw);
}

.recruit .section-head {
    margin: 0 calc(50% - 35vw);
    width: 100vw;
}

#contents .sustain h2,
#contents .recruit h2 {
    padding: 50px 0 0;
}

/*contact*/
.contact h2 {
    font-size: 3rem !important;
    color: #fff !important;
    position: initial !important;
    margin: auto !important;
    text-align: center !important;
}

.contact .inner {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    max-width: 960px !important;
}

.contact .section-head,
.contact .section-body {
    padding: 30px 70px !important;
    color: #fff !important;
    text-align: center !important;
}

.contact .section-head {
    width: 300px;
    background-color: #004298 !important;
    border-radius: 20px 0 0 20px !important;
    position: relative;
    z-index: 100;
    text-align: center;
}

.contact .section-body {
    width: 100%;
    margin: 0 0 0 -300px !important;
    padding: 0 25px 0 325px !important;
    background-color: #0071bc !important;
    border-radius: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact .section-body dl dt {
    font-size: 2rem !important;
}

.contact .section-body dl dd {
    font-size: 4rem !important;
    font-weight: 600 !important;
}

.contact .section-body dl dd::before {
    content: '';
    display: inline-block;
    background-image: url(../images/common/contact/tel.svg);
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background-size: contain;
    margin: 0 10px 0 0;
}

.contact h2 span.en {
    font-size: 1.6rem !important;
    color: #fff !important;
}

.contact {
    background: url(../images/common/footer/background-triangle.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0px 300px;
}

.contact .section-body dl dd span a {
    color: #fff;
    text-decoration: none;
}

/**/
.ggmap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 500px;
    overflow: hidden;
}

.ggmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#footer {
    padding: 100px 0 0px;
    text-align: center;
    background: #0071bc;
    color: #fff;
}

#footer .description {
    margin: 0 0 80px;
}

#footer .description dl dt {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: 0;
}

#footer .description dl dd {
    color: #fef252;
    font-weight: 500;
    font-size: 1.8rem;
}

#footer .flex-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

#footer .flex-box .address {
    width: 350px;
    font-size: 1.5rem;
    letter-spacing: 0;
    text-align: left;
}

#footer .flex-box .address h1 {
    margin: 0 0 15px;
    width: 240px;
}

#footer .flex-box .address dl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

#footer .flex-box .address dl dt {
    width: 30px;
    position: relative;
}

#footer .flex-box .address dl dd {
    width: 135px;
    margin: 0 15px 0 -30px;
    padding: 0 0 0 40px;
}

#footer .flex-box .address dl dt:before {
    position: absolute;
    content: ":";
    right: -6px;
    top: 5px;
    line-height: 1;
}

#footer .flex-box .address dl dd:last-child {
    margin: 0 0 0 -30px;
}

#footer .flex-box a {
    color: #fff;
    text-decoration: none;
}

#footer .flex-box .f_nav {
    width: 640px;
}

#footer .flex-box .f_nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;

}

#footer .flex-box .f_nav ul li {
    text-align: center;
    width: 25%;
}

#footer .flex-box .f_nav ul li a {
    display: block;
    padding: 20px 5px;
    line-height: 1;
}

#footer .copyright {
    letter-spacing: 0;
    font-size: 1.5rem;
    padding: 80px 25px 40px;
}

@media screen and (max-width:1536px) {

    .sustain .section-body h3,
    .sustain .section-body p {
        margin: 40px;
    }

    .sustain .inner .article-area {
        margin: 0 calc(100% - 60vw);
    }

    /* .recruit .article-text {
        margin: 0 0 0 -320px;
        padding: 0 0 0 450px;
    }*/

    .about .image img,
    .works .image img,
    .recruit .image img {
        max-width: 580px;
    }

    .recruit .article-text {
        width: 100%;
        margin: 0 0 0 -560px;
        padding: 0 0 0 700px;
    }

    .recruit .article-area {
        width: 80vw;
    }
}

@media screen and (max-width:1366px) {
    .sustain .inner .article-area {
        margin: 0 calc(100% - 65vw);
    }

    .sustain .photo-list ul li img {
        width: 380px;
    }

    /*.recruit .article-text {
        margin: 0 0 0 -280px;
        padding: 0 0 0 380px;
    }*/

}

@media screen and (max-width:1280px) {
    #MainVisual .catch dl dt {
        font-size: 6rem;
    }

    #contents h2 {
        font-size: 20rem;
    }

    .about .image img,
    .works .image img,
    .recruit .image img {
        max-width: 550px;
    }

    #contents a.anchor {
        padding: 105px 0 0;
        margin: -105px 0 0;
    }

    #contents .section-area {
        padding: 160px 0 !important;
    }

    #contents {
        background-position: 0px 500px;
    }

    #contents .about .article-text,
    #contents .works .article-text {
        max-width: 450px;
    }

    #contents .section-area.contact {
        /*margin: 100px 0 0 !important;*/
        margin: 0 !important;
    }

    .recruit .image {
        margin: auto;
        flex-shrink: initial;
        width: auto;
    }

    .recruit .article-area {
        margin: auto;
        width: 100%;
    }

    .recruit .article-text {
        margin: 0 0 50px 0;
        padding: 0;
        width: 100%;
    }

    .recruit {
        left: 0;
    }

    .recruit .article-body p {
        max-width: 100%;
    }

    #contents .recruit .article-foot {
        text-align: right;
    }
}


@media screen and (max-width:1024px) {
    .inner {
        padding: 0 30px;
    }

    body {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }


    #header h1 img {
        height: 30px;
    }

    #header h1 a {
        padding: 17.5px 25px;
    }

    #header.fixed h1 img {
        height: 20px;
    }

    #header.fixed h1 a {
        padding: 12.5px 25px;
    }

    #g_nav {
        max-width: 400px;
    }

    #g_nav ul li a {
        padding: 24px 12.5px;
    }

    #header.fixed #g_nav ul li a {
        padding: 14.5px 12.5px;
        display: block;
        color: #FFFFFF;
        text-decoration: none;
    }

    #MainVisual .catch dl dt {
        font-size: 5rem;
    }

    #MainVisual.top .catch {
        padding: 0 60px;
    }

    #MainVisual .catch dl dd,
    #MainVisual .catch p {
        font-size: 1.6rem;
    }

    #contents h2 {
        font-size: 16rem;
        top: -100px;
    }

    #contents a.anchor {
        padding: 105px 0 0;
        margin: -105px 0 0;
    }

    .section-area .section-body table tbody th,
    .section-area .section-body table tbody td {
        padding: 25px 50px;
    }

    .section-area .section-body table tbody th {
        width: 200px;
    }

    .sustain .inner .article-area {
        margin: auto;
        width: 100%;
    }

    .sustain ul {
        justify-content: center;
    }

    .sustain {
        right: 0;
    }

    .contact .inner {
        max-width: 835px !important;
    }

    #footer {
        padding: 80px 0 0px;
    }

    #footer .description {
        margin: 0 0 60px;
    }

    #footer .description dl dt {
        font-size: 2.5rem;
    }

    #footer .description dl dd {
        font-size: 1.7rem;
    }

    #footer .flex-box .address {
        width: 330px;
    }

    #footer .flex-box .address h1 {
        width: 220px;
    }

    #footer .flex-box .f_nav {
        width: 440px;
    }

    #footer .flex-box .f_nav ul li a {
        padding: 17.5px 5px;
    }

    #footer .copyright {
        padding: 60px 25px 30px;
    }


    .ggmap {
        padding-bottom: 450px;
    }

    .sustain .photo-list ul li {
        width: 30%;
    }

    .sustain .section-head {
        margin: auto;
    }

    #contents .section-area {
        padding: 120px 0 !important;
    }

    .about .image img,
    .works .image img {
        max-width: 450px;
    }

    /*
    #contents .section-area {
        padding: 200px 0;
    }*/
}

@media screen and (max-width:960px) {

    .contact {
        background-position: 0px 400px;
    }

    .about .image img,
    .works .image img {
        max-width: 350px;
    }
}

@media screen and (max-width:835px) {
    .inner {
        padding: 0 25px;
    }

    body {
        font-size: 1.6rem;
    }

    #MainVisual.top .catch {
        padding: 0 50px;
    }

    #contents a.anchor {
        padding: 95px 0 0;
        margin: -95px 0 0;
    }

    .section-area .section-body table tbody th,
    .section-area .section-body table tbody td {
        padding: 20px 40px;
    }

    .section-area .section-body table tbody th {
        width: 180px;
    }

    #footer {
        padding: 60px 0 0px;
    }

    #footer .description {
        margin: 0 0 50px;
    }

    #footer .description dl dt {
        font-size: 2.25rem;
    }

    #footer .description dl dd {
        font-size: 1.6rem;
    }

    #footer .flex-box {
        flex-direction: column-reverse;
        align-items: center;
    }

    #footer .flex-box .address {
        width: 100%;
        text-align: center;
    }

    #footer .flex-box .address dl {
        justify-content: center;
    }

    #footer .flex-box .address h1 {
        width: 200px;
        text-align: center;
        margin: 0 auto 15px;
    }

    #footer .flex-box .f_nav {
        width: 100%;
        margin: 0 0 50px;
    }

    #footer .flex-box .f_nav ul li a {
        padding: 15px 5px;
    }

    #footer .copyright {
        padding: 50px 25px 25px;
    }

    .ggmap {
        padding-bottom: 400px;
    }

    .recruit .article-body {
        display: block;
    }

    .sub .recruit .article-body {
        display: flex;
    }

    #contents .sustain h2,
    #contents .recruit h2 {
        padding: 0;
    }

    .about .image,
    .works .image {
        margin: 30px auto 0;
        width: 100%;
    }

    .about .image img,
    .works .image img,
    .recruit .image img {
        max-width: 100%;
    }

    .sustain .section-body h3,
    .sustain .section-body p {
        margin: 30px 0;
    }

    #MainVisual .catch dl dt {
        font-size: 4rem;
    }

    #MainVisual.top .inner {
        margin-top: -150px;
    }

    .about .article-body,
    .works .article-body {
        flex-direction: column-reverse;
    }

    #contents .article-text {
        max-width: 100% !important;
    }

    .about .article-body p,
    .works .article-body p {
        max-width: 100%;
    }

    #contents .article-foot {
        text-align: right;
    }

    #contents {
        background-position: 0px 800px;
        background-size: 200% auto;
    }

    #contents .section-area {
        padding: 100px 0 !important;
        margin: 60px 0 !important;
    }

    #contents .section-area.about,
    #contents .section-area.works {
        /*margin: 60px 0 0 !important;*/
        margin: 0 !important;
    }

    #contents .section-area.sustain {
        margin: 0 !important;
    }

    #contents .section-area.recruit {
        margin: 0 !important;
    }

    #contents .section-area.contact {
        /*margin: 60px 0 0 !important;*/
        margin: 0 !important;
    }

    #contents h3 {
        margin: 0 0 30px;
    }
}

@media screen and (min-width: 751px) {}

@media screen and (max-width:750px) {
    #header .headInner {
        display: block;
    }

    #header h1 {
        width: 100%;
    }

    #header h1 img {
        height: 20px;
    }

    #MainVisual.top .catch {
        padding: 0 25px;
    }

    #contents h2 {
        font-size: 13rem;
        top: -60px;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        /*display: block;*/
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 0;
        right: 0;
        cursor: pointer;
        width: 70px;
        height: 70px;
        background: #0071bc;
        transition: all 0.4s !important;
    }

    .openbtn.fadeDown,
    .openbtn.active {
        display: flex;
        position: fixed;
    }

    /*×に変化*/
    .openbtn .btnInner {
        width: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*position: absolute;
left: 14px;*/
        height: 1px;
        border-radius: 0.5px;
        background-color: #FFFFFF;
        ;
        width: 100%;
        margin: 0 0 7px;
    }

    .openbtn span:nth-of-type(3) {
        margin: 0;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(4px) rotate(-45deg);
        width: 100%;
        margin: 0;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-5px) rotate(45deg);
        width: 100%;
        margin: 0;
    }

    /*アクティブクラスがついたら透過なしにして最前面へ*/
    #g_nav.panelactive,
    .panelactive {
        -ms-writing-mode: inherit;
        writing-mode: inherit;
        display: block !important;
        max-width: inherit;
        position: fixed;
        top: 0;
        left: 0;
        height: 100svh;
        width: 100%;
        max-width: inherit !important;
        /*ナビの高さ*/
        /*background: rgba(255, 255, 255, 0.85);*/
        /*動き*/
        z-index: 999;
        background: rgba(0, 113, 188, 0.8);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        -webkit-transition-property: opacity, visibility;
        transition-property: opacity, visibility;
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    /*ナビゲーションの縦スクロール*/
    #g_nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g_nav ul {
        display: none;
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 750px;
    }

    #g_nav.panelactive ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .openbtn {
        width: 65px;
        height: 65px;
    }

    #header.fixed .openbtn {
        width: 45px;
        height: 45px;
    }

    #header.fixed .openbtn .btnInner {
        width: 30px;
    }

    .section-area .section-body table tbody th,
    .section-area .section-body table tbody td {
        padding: 15px 30px;
    }

    .section-area .section-body table tbody th {
        width: 150px;
    }

    .contact .inner {
        max-width: 750px !important;
    }

    .contact .section-head {
        width: 250px;
        padding: 25px 15px !important;
    }

    .contact .section-body {
        margin: 0 0 0 -250px !important;
        padding: 0 25px 0 275px !important;
    }

    .contact .section-body dl dt {
        font-size: 1.6rem !important;
    }

    .contact .section-body dl dd {
        font-size: 3rem !important;
    }

    .contact .section-body dl dd::before {
        width: 30px;
        height: 30px;
    }

    #footer .description {
        margin: 0 0 40px;
    }

    #footer .description dl dt {
        font-size: 2rem;
    }

    #footer .description dl dd {
        font-size: 1.5rem;
    }

    #footer .flex-box .address {
        font-size: 1.4rem;
        margin: 0;
    }

    #footer .flex-box .address dl dt {
        width: 25px;
    }

    #footer .flex-box .address dl dt:before {
        right: -7px;
        top: 4px;
    }

    #footer .flex-box .address dl dd {
        width: 125px;
        margin: 0 10px 0 -25px;
        padding: 0 0 0 35px;
        text-align: left;
    }

    #footer .flex-box .address dl dd:last-child {
        margin: 0 0 0 -25px;
    }

    #footer .flex-box .f_nav {
        margin: 0 0 40px;
    }

    #footer .flex-box .f_nav ul li {
        font-size: 1.4rem;
        letter-spacing: 0;
    }

    .ggmap {
        padding-bottom: 350px;
    }

    #MainVisual .slide1 {
        background-image: url(../images/top/MainVisual/mainvisual_sp1.webp);
        background-position: center center;
    }

    #MainVisual .slide2 {
        background-image: url(../images/top/MainVisual/mainvisual_sp2.webp);
        background-position: center center;
    }

    #MainVisual .slide3 {
        background-image: url(../images/top/MainVisual/mainvisual_sp3.webp);
        background-position: center center;
    }

    #MainVisual .slide4 {
        background-image: url(../images/top/MainVisual/mainvisual_sp4.webp);
        background-position: center center;
    }

    /*
    #MainVisual .main-image:nth-of-type(1) {
        background-image: url(../images/top/MainVisual/mainvisual_sp1.jpg);
    }

    #MainVisual .main-image:nth-of-type(2) {
        background-image: url(../images/top/MainVisual/mainvisual_sp2.jpg);
    }

    #MainVisual .main-image:nth-of-type(3) {
        background-image: url(../images/top/MainVisual/mainvisual_sp3.jpg);
    }
    */
    #g_nav ul li {
        width: 100%;
    }

    #g_nav ul li a {
        padding: 35px 12.5px !important;
        display: block !important;
        width: 100%;
    }
}

@media screen and (max-width:640px) {

    body {
        font-size: 1.5rem;
    }

    #contents h2 {
        font-size: 10rem;
        top: -50px;
    }

    #footer .description,
    #footer .flex-box .f_nav {
        margin: 0 0 25px;
    }

    #footer .flex-box .f_nav ul li a {
        padding: 15px 2.5px;
    }

    /*table*/
    .section-area .section-body table tbody th,
    .section-area .section-body table tbody td {
        display: block;
        width: 100%;
        border-bottom: none;
        text-align: center;
    }

    .section-area .section-body table tbody th {
        padding: 10px 0;
        background: #0071bc;
        line-height: 1;
        color: #fff;
    }

    .section-area .section-body table tbody td {
        padding: 20px 10px;
    }

    .contact .section-head {
        border-radius: 20px 20px 0 0 !important;
        padding: 5px 15px 15px !important;
    }

    .contact .section-body {
        border-radius: 0 0 20px 20px !important;
    }

    .contact .section-head,
    .contact .section-body {
        width: 100%;
    }

    .sub #contents .section-head {
        padding: 0 !important;
    }

    .sub #contents .contact .section-head {
        padding: 15px 0 !important;
    }

    .sub #contents .section-head h2 {
        text-align: center !important;
    }

    .sub #contents .section-head h2 span {
        line-height: 1;
    }


    .contact .section-body {
        margin: 0 !important;
        padding: 15px !important;
    }


    .ggmap {
        padding-bottom: 320px;
    }

    #contents .article-foot {
        margin: 30px 0 0;
    }

    #contents h3 {
        font-size: 2.0rem;
        margin: 30px 0;
    }

    #MainVisual .catch dl dd,
    #MainVisual .catch p {
        font-size: 1.3rem;
    }

    #contents .section-area {
        margin: 20px 0 !important;
    }

    #contents .section-area {
        /*padding: 180px 0;*/
        padding: 80px 0 !important;
    }

    .sustain,
    .recruit {
        padding: 60px 0 !important;
    }

    #contents {
        background-position: 0px 700px;
    }

    .sustain ul {
        display: block;
    }

    .sustain .photo-list ul li {
        width: 80%;
        margin: auto;
    }

    .sustain ul li:nth-child(2) {
        margin: 10px auto;
    }

    .sustain .photo-list ul li img {
        width: 100%;
    }

    .sustain h3 span {
        font-size: 1.8rem;
    }
}

@media screen and (max-width:480px) {
    #footer .description dl dt {
        font-size: 1.8rem;
    }

    #footer .description dl dd {
        font-size: 1.4rem;
        letter-spacing: 0;
    }

    #footer .flex-box .address {
        font-size: 1.3rem;
    }

    #footer .flex-box .address h1 {
        width: 170px;
    }

    #footer .flex-box .address dl dt {
        width: 20px;
    }

    #footer .flex-box .address dl dt:before {
        right: -7px;
        top: 4px;
    }

    #footer .flex-box .address dl dd {
        width: 115px;
        margin: 0 10px 0 -20px;
        padding: 0 0 0 30px;
    }

    #footer .flex-box .address dl dd:last-child {
        margin: 0 0 0 -20px;
    }

    #footer .copyright {
        font-size: 1.3rem;
        padding: 50px 0 25px;
    }

    .ggmap {
        padding-bottom: 300px;
    }

    #MainVisual .catch dl dt {
        font-size: 3.5rem;
    }

    #contents .section-area {
        /*padding: 150px 0;*/
        padding: 60px 0 !important;
    }

    #contents h3 {
        margin: 60px 0 30px;
    }

    .contact .section-body dl dd,
    .contact h2 {
        font-size: 2.5rem !important;
    }

    .contact .section-body dl dt,
    .contact h2 span.en {
        font-size: 1.3rem !important;
    }

    .sustain,
    .recruit {
        padding: 20px 0 60px !important;
    }

    #contents h2 {
        font-size: 7rem;
        top: 0;
    }

    #MainVisual .catch {
        padding: 0 60px;
    }

    #contents {
        background-position: 0px 600px;
    }

    #contents .sustain h3,
    #contents .recruit h3,
    #contents .sustain h2,
    #contents .recruit h2 {
        margin: 0;
    }

    .sustain h3 span {
        font-size: 1.6rem;
    }
}

@media screen and (max-width:350px) {}


/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 下から */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* 上から */

.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左から */

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右から */

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*==================================================
ボンッ
===================================*/

/* 拡大 */
.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
    from {
        transform: scale(0.6);
    }

    to {
        transform: scale(1);
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
    opacity: 0;
}