@charset "utf-8";
/* レイアウトのためのCSS */

body {
    background: #fff;
    font-family: YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', sans-serif;
    color: #000;
    font-size: 1.6em;
    line-height: 1.85;
    /* font-weight: bold; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
    letter-spacing: 0;
}

* {
    box-sizing: border-box;
}

.pc,
.pc-in {
    display: none;
}

.sp {
    display: block;
}

.mb10 {
    margin-bottom: 10px;
}

.mb30 {
    margin-bottom: 30px;
}

.center {
    text-align: center;
}

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

    .pc {
        display: block;
    }

    .pc-in {
        display: inline-block;
    }

    .sp {
        display: none;
    }
}

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

a {
    color: #000;
    text-decoration: none;
    outline: none;
    transition: all .2s;
}

.hover-op a:hover{
    opacity: 0.7;
}

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

img.wide-img {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.container1400 {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

section {
    margin: 50px auto;
}

.hr-btn {
    font-size: 1.25em;
    padding: .2em 1em .2em .5em;
    border: 1px solid #000;
    display: inline-block;
    position: relative;
    margin-bottom: .5em;
}

.hr-btn::after {
    position: absolute;
    content: "";
    background-image: url(../img/link_arrow.png);
    width: 30px;
    height: 12px;
    background-size: 100%;
    top: 50%;
    right: -20px;
    transform: translate(0, -50%);
    transition: all .5s;
}

.hr-btn:hover:after {
    transform: translate(3px, -50%);
}

@media screen and (max-width:1053px) {
    .hr-btn {
        font-size: 1.9vw;
    }
}

@media screen and (max-width:767px) {
    .hr-btn {
        font-size: 1em;
    }
}

/* font-family */


.blue-txt {
    color: #144b7d;
}


#container {
    overflow-x: hidden;
}

.f-min {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
}

.y-shadow {
    color: #EBE597;
    text-shadow: #000 1px 1px 5px;
}

.w-shadow {
    color: #fff;
    text-shadow: #000 1px 1px 5px;
}

/* header */

#header {
    background: rgba(0, 0, 0, 0.4);
}

#header h1 {
    /* width: 18.57%; */
    width: 260px;
}

#header h1 a {
    display: flex;
    align-items: center;

}

#g-nav ul {
    display: flex;
}

#g-nav ul li {
    white-space: nowrap;
    margin-left: .4em;
    margin-right: .4em;
}

#g-nav ul li a {
    display: block;
    padding: 6px 5px;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 0;
    transition: all .3s;
}

@media screen and (max-width:899px) {
    #g-nav ul li a:hover {
        color: lightgrey;
    }
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/

#g-nav ul li.has-child {
    position: relative;
    padding-right: 2rem;
}

#g-nav ul li.has-child::before {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 15px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
#g-nav li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 0;
    top: 62px;
    z-index: 4;
    /*形状を指定*/
    background: rgba(0, 0, 0, 0.4);
    width: 250px;
    padding-bottom: .5rem;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
}

/*hoverしたら表示*/
#g-nav li.has-child:hover>ul,
#g-nav li.has-child ul li:hover>ul,
#g-nav li.has-child:active>ul,
#g-nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}

#g-nav li.has-child ul {
    display: flex;
    flex-direction: column;
}


@media screen and (max-width:1200px) {
    #g-nav li.has-child ul {
        /*絶対配置で位置を指定*/
        top: 45px;
    }
}


@media screen and (max-width:900px) {
    #g-nav ul {
        display: block;
        padding: 0;
        font-size: 1.6em;
    }

    #g-nav ul li a {
        padding: 6px 15px;
        text-align: left;
    }

    #g-nav ul li.has-child>a {
        padding-right: 0;
    }

    #g-nav ul li.has-child ul {
        position: static;
        visibility: visible;
        /*JSで制御するため一旦表示*/
        opacity: 1;
        /*JSで制御するため一旦表示*/
        display: none;
        /*JSのslidetoggleで表示させるため非表示に*/
        display: block;
        transition: none;
        /*JSで制御するためCSSのアニメーションを切る*/
        padding-left: 1.5rem;
    }

    #g-nav ul li.has-child::before {
        display: none;
    }

}

@media screen and (max-width:767px) {
    #header h1 {
        width: 200px;
    }
}


/* top topイメージ */

#lead .top-img-area {
    /* position: relative;
    height: 100vh; */
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
    /* background: url("../img/top/main_pc.jpg") no-repeat;
    background-size: cover; */
}

/*header設定*/
#header-top{
	position: relative;/*ローディング画像などを表示す際の基点とするため指定*/
    height: 100vh;/*高さを全画面にあわせる*/
    text-align: center;
    color: #fff;
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
    background: url("../img/top/main_pc.jpg") no-repeat;
    background-size: cover;
}

/* ローディングアイコン設定 */

#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear{
    display: none;   
}

/* youtube設定 */

#youtube-area {
    position: fixed;
    z-index: 1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
 	opacity: 0;    
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
	animation-name:PageAnimeAppear;
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

#youtube {
/*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask{
    position: absolute;
    z-index: 2;/*下から2番目に表示*/
    top:0;
    width:100%;
    height: 100%;
}


.scroll-area {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50px;
    z-index: 2;
}

@media screen and (max-width:767px) {
    #header-top{
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 30vh;
        min-height: 350px;
        background-image: url(../img/top/main_sp.jpg);
    }
}

#main-area {
    position: relative;/*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
    z-index: 3;/*一番上に表示*/
    padding-top: 1px;
    background-color: #fff;
}

/* top-background */

#top-background .container {
    background-image: url(../img/top-background-txt.png);
    background-size: 79%;
    background-repeat: no-repeat;
    background-position: left 0, top 0;
    padding-top: 2%;
}

.h2-top {
    font-size: 3.1em;
    line-height: 1.3;
    margin-bottom: .5em;
}

.top-flex-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-flex-1-l {
    width: 40%;
}

.top-flex-1-r {
    width: 57%;
}

.top-flex-1-l p {
    margin-bottom: 50px;
}

@media screen and (max-width:1500px) {
    .h2-top {
        font-size: 3.1vw;
    }

    .top-flex-1 {
        align-items: center;
    }
}

@media screen and (max-width:1053px){
    .top-flex-1-l p {
        margin-bottom: 2vw;
        font-size: 1.5vw;
    }
}

@media screen and (max-width:767px) {
    .top-flex-1 {
        justify-content: flex-end;
    }

    .top-flex-1-l {
        width: 100%;
    }

    .top-flex-1-l p {
        margin-bottom: 30px;
        font-size: 1em;
    }

    .h2-top {
        font-size: 6vw;
    }

    .top-flex-1-r {
        padding-top: 20px;
        width: 80%;
        text-align: right;
    }
}

/* top-facility */

#top-facility .container {
    background-image: url(../img/top-facility-txt.png);
    background-size: 46.77%;
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 2%;
}

/* top-explanatin */

#top-explanation .container {
    background-image: url(../img/top-explanation-txt.png);
    background-size: 73.49%;
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 4%;
}

.top-flex-2 {
    display: flex;
    justify-content: space-between;
    height: auto;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.top-flex-2-rev {
    flex-direction: row-reverse;
}

.top-flex-2-l {
    width: 72%;
    height: auto;
}

.top-flex-2-l img {
    width: 100%;
}

.top-flex-2-r {
    width: 27%;
    background-color: #01388D;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
}

.top-flex-2-r .hr-btn a {
    color: #fff;
}

.top-flex-2-r .hr-btn {
    border: 1px solid #fff;
}

.top-flex-2-r .hr-btn::after {
    background-image: url(../img/link_arrow_white.png)
}

#top-explanation .h2-top {
    font-size: 2.8em;
}

.top-flex-2-r p {
    margin-bottom: 50px;
}

@media screen and (max-width:1500px) {
    #top-explanation .h2-top {
        font-size: 2.5vw;
    }

    .top-flex-2-r p {
        margin-bottom: 10%;
        font-size: 1.4vw;
    }
}

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

@media screen and (max-width:767px) {
    .top-flex-2-l {
        width: 100%;
    }

    .top-flex-2-r {
        width: 100%;
        margin-top: 1%;
        padding: 5% 2%;
    }    

    .top-flex-2-r .fadeLeftTrigger {
        width: 100%;
        max-width: 600px;
        display: flex;
    }

    #top-explanation .h2-top {
        width: 40%;
        margin-right: 20px;
    }

    .top-flex-2-r p {
        font-size: 1em;
        margin-bottom: 20px;
    }


    .top-flex-2-r .fadeLeftTrigger {
        flex-direction: column;
    }

    #top-explanation .h2-top {
        width: 100%;
        font-size: 6vw;
    }
}


/* news */

#news .container {
    background-image: url(../img/top-news-txt.png);
    background-size: 30.47%;
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 3%;
}

section#news {
    margin-bottom: 0;
}

#news .container1400 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#news h2 {
    text-align: left;
    line-height: 1.2;
    margin-bottom: 0.5em;
    width: 15%;
    padding-left: .5em;
    border-left: 8px solid #151398;
}

#news .news-area {
    width: 78%;
    margin-bottom: 50px;
    width: 83%;
}

@media screen and (max-width:1053px) {
    #news h2 {
        font-size: 1.4em;
    }
}

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

    #service header p br {
        display: block;
    }

    #news h2 {
        width: 100%;
    }

    #news .news-area {
        width: 100%;
    }

    #news {
        margin-bottom: 100px;
    }

} 



/* footer */

footer {
    background-color: #fff;
    position: relative;
    z-index: 3;
}

section#footer-banner {
    margin-top: 0;
    padding-top: 50px;
}

#footer-banner .container1400 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-banner-in {
    width: 30%;
    text-align: center;
}

#footer {
    position: relative;
    background: #E5E5E5;
}

#footer .footer {
    padding: 20px 0;
}


#footer .footer .foot-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_logo {
    max-width: 480px;
    width: 90%;
    margin: 0 0 20px;
}


#footer .footer .foot-address {
    width: 35%;
}

#footer .footer .foot-map-block {
    width: 60%;
}

ul.foot-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.foot-nav>li {
    width: 30%;
    margin-bottom: 1.5em;
}

.foot-nav-child {
    margin-top: 1em;
    font-size: 0.8em;
}

.foot-out-link {
    font-size: 0.8em;
}

.foot-nav-child li::before {
    content: ">";
    padding-right: 0.2em;
}

#footer #page-top {
    position: fixed;
    bottom: 10%;
    right: 5%;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .17);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#footer #page-top span {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-top: 3px solid #707070;
    border-left: 3px solid #707070;
    transform: rotate(45deg);
}

.copyright {
    background-color: #01388D;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    font-size: 0.8em;
}

@media screen and (max-width:1200px) {
    #footer .footer .foot-address {
        text-align: center;
    }

    .footer_logo {
        margin: 0 auto 20px;
    }

    #footer .footer .foot-address {
        width: 100%;
        margin-bottom: 50px;
    }

    #footer .footer .foot-map-block {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .footer-banner-in {
        width: 80%;
    }

    #footer-banner .container1400 {
        flex-direction: column;
    }

    section#footer-banner {
        margin-bottom: 30px;
    }

    ul.foot-nav>li {
        width: 48%;
        margin-bottom: 2em;
    }

    footer{
        font-size: 0.95em;
    }

    footer ul.foot-nav-child{
        font-size: 0.9em;
    }

}


/* 下層ページ */
#sub-ttl {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    padding-top: 23.07%;
    position: relative;
}



h1.sub-ttl-area {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    line-height: 1.2;
    width: 100%;
    font-size: 4.4em;
}


h1.sub-ttl-area .sub-ttl-area-sub {
    display: block;
    font-size: 0.4em;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    padding-top: 0.8em;
    letter-spacing: 0.1em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1.sub-ttl-area .sub-ttl-area-sub::before {
    content: "";
    width: 2em;
    height: 1px;
    background: #fff;
}

h1.sub-ttl-area .sub-ttl-area-sub::after {
    content: "";
    width: 2em;
    height: 1px;
    background: #fff;
}

#sub-footer-banner a {
    width: 100%;
}

.business-banner{
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#sub-footer-banner .business-banner a, .business-banner div{
    width: 40%;
    text-align: center;
}

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

    #sub-ttl {
        padding-top: 400px;
    }
}

@media screen and (max-width:1053px) {
    h1.sub-ttl-area {
            font-size: 3em;
        }
    }
    

@media screen and (max-width:767px) {
    #main-application h1.sub-ttl-area {
        font-size: 1.5em;
    }

    h1.sub-ttl-area {
        font-size: 1.5em;
    }

    #sub-ttl {
        padding-top: 300px;
    }

    #sub-footer-banner .business-banner a{
        width: 100%;
        margin-bottom: 2%;
    }

    .business-banner div{
        width: 80%;
        margin-bottom: 30px;
    }

    .business-banner div:last-child{
        margin-bottom: 0;
    }
}

/* about backgroundページ */

#main-background #sub-ttl {
    background-image: url(../img/about/background/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#top-01 {
    background-image: url(../img/about/background/01.png);
    background-size: 16.67%;
    background-position: left top;
}

#top-02 {
    background-image: url(../img/about/background/02.png);
    background-size: 16.67%;
    background-position: right top;
}

#top-03 {
    background-image: url(../img/about/background/03.png);
    background-size: 16.67%;
    background-position: left top;
}

#top-04 {
    background-image: url(../img/about/background/04.png);
    background-size: 16.67%;
    background-position: right top;
}

#main-background .top-flex-1 {
    align-items: center;
}

#main-background .top-flex-1-l {
    width: 48%;
}

#main-background .top-flex-1-r {
    width: 48%;
}

#main-background .top-flex-1-r p {
    text-align: center;
}

#main-background .top-flex-1-r small {
    font-size: 0.7em;
}

@media screen and (max-width:1500px) {
    #top-01,
    #top-03 {
        background-position: left center;
        background-size: 25%;
    }

    #top-02,
    #top-04 {
        background-position: right center;
        background-size: 25%;
    }

}

@media screen and (max-width:767px) {
    #main-background .top-flex-1-l {
        width: 100%;
    }

    #main-background .top-flex-1-r {
        width: 100%;
    }

    #top-01,
    #top-03 {
        background-position: left top;
    }

    #top-02,
    #top-04 {
        background-position: right top;
    }

    #top-01,
    #top-02,
    #top-03,
    #top-04 {
        background-size: 150px;
        padding-top: 100px;
    }
}


/* about facilityページ */

#main-facility #sub-ttl {
    background-image: url(../img/about/facility/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

section#fac-01{
    margin-top: 0;
}

section#fac-00{
    margin-bottom: 0;
}

#fac-00 h2 {
    background-image: url(../img/about/facility/explanation-txt.png);
    background-repeat: no-repeat;
    background-position: center left;
    padding: .5em 0 20px 1em;
    font-size: 3.1em;
    background-size: 50%;
}

.fac-exp-back {
    position: relative;
    display: inline-block;
}

.fac-exp-txt-area {
    position: absolute;
    width: 44%;
    text-align: left;
    right: 0;
    top: 2%;
}

.fac-exp-ttl {
    font-size: 5rem;
    line-height: 1.2;
    padding-bottom: .2em;
    border-bottom: #fff solid 5px;
    margin-bottom: .2em;
}

.fac-exp-txt {
    width: 98%;
}

.fac-exp-link-area {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}

.fac-exp-link-area ul {
    display: flex;
    justify-content: space-between;
}

.fac-exp-link-area ul li {
    width: 30%;
}

.fac-exp-link-area a:hover{
    opacity: 0.7;
}

@media screen and (max-width:1500px) {
    
    .fac-exp-ttl {
        font-size: 3vw;
        border-bottom: #fff solid 0.4vw;
    }

    .fac-exp-txt {
        font-size: 1.1vw;
    }

    .fac-exp-link-area {
        padding-right: 3%;
        padding-bottom: 0;
        width:45%;
    }
}

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

    .fac-exp-back picture img {
        width: 70%;
    }
    #fac-00 h2 {
        background-size: 100%;
        font-size: 1.9em;
    }

    .fac-exp-back {
        text-align: center;
    }

    .fac-exp-txt-area {
        background-color: #01388D;
        position: static;
        width: 95%;
        margin: 1em auto;
        padding:2%
    }

    .fac-exp-link-area {
        position: static;
        width: 90%;
        margin: 2% auto;
    }
    
}

#fac-02 .top-flex-2-l {
    width: 49%;
}

#fac-02 .top-flex-2-r {
    width: 49%;
    background-color: #707070;
    background: linear-gradient(to right, #4E4E4E, #858585);
    justify-content: flex-end;
    padding-right: 0;
}

#fac-02 .top-flex-2-r p {
    margin-bottom: 0;
}

#fac-02 .fac-exp-txt-area {
    position: static;
    width: 95%;
    padding: 0;
    background-color: rgba(0, 0, 0, 0)
}



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

    #fac-02 .top-flex-2-r {
        width: 100%;
        margin-top: 0;
        padding-left: 0;
        justify-content:center
    }

    #fac-02 .top-flex-2-l {
        width: 100%;
    }

}


.fac-flex-6 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fac-flex-6-in {
    width: 33%;
    margin-bottom: 1%;
}

#sub-footer-banner h3 {
    font-size: 50px;
    text-align: center;
}

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


    .fac-flex-6-in {
        width: 49%;
        margin-bottom: 2%;
    }

    #sub-footer-banner h3 {
        font-size: 30px;
    }

}

/* business共通ページ */

.business-ttl-box {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.business-ttl-txt {
    position: absolute;
    right: 0;
    bottom: 0;
    bottom: 7%;
    width: 54.57%;
}

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

    .business-ttl-txt {
        bottom: 5%;
        width: 100%;
    }
}


/* business classページ */

#main-class #sub-ttl {
    background-image: url(../img/business/class/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#main-class .business-ttl-box {
    background-image: url(../img/business/class/sub-top-pc.jpg);
    background-position: center;
    width: 100%;
    padding-top: 38.07%;
}

.class-pic-box{
    background-color: #01388D;
    padding: 2%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.class-pic-box-in{
    width: 31%;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width:767px) {
    #main-class .business-ttl-box {
        background-image: url(../img/business/class/sub-top-sp.jpg);
        padding-top: 146.16%;
    }

    .class-pic-box{
        justify-content: center;
    }

    .class-pic-box-in{
        width: 90%;
        margin: 5% auto;
    }
}



/* business testingページ */

#main-testing #sub-ttl {
    background-image: url(../img/business/testing/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#main-testing .business-ttl-box {
    background-image: url(../img/business/testing/sub-top-pc.jpg);
    background-position: center;
    width: 100%;
    padding-top: 38.07%;
}

#main-testing .business-ttl-txt {
    top: 5%;
    width: 54.57%;
}

@media screen and (max-width:767px) {
    #main-testing .business-ttl-box {
        background-image: url(../img/business/testing/sub-top-sp.jpg);
        padding-top: 146.16%;
    }

    #main-testing .business-ttl-txt {
        top: 50%;
        width: 100%;
    }
}

#testing-02 h2 {
    background-image: url(../img/business/testing/extruduction-ttl.png);
    background-repeat: no-repeat;
    background-position: center left;
    padding: .5em 0 .5em 1em;
    font-size: 3.1em;
    background-size: 50%;
}

.testing-setsubi-box{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 5%;
}

.testing-setsubi-box-l{
    width: 60%;
}

.testing-setsubi-box-l p{
    width: 90%;
    margin: 2% auto 0;
}

.testing-setsubi-box-r{
    width: 27%;
}


.testing-setsubi-pic1{
    margin-bottom: 3%;
}

@media screen and (max-width:1053px) {
    #testing-02 h2 {
        font-size: 3.4vw;
    }

    .testing-setsubi-box-l p{
       font-size: 1.5vw;
    }

    .testing-setsubi-box-r{
        width: 35%;
    }
}


@media screen and (max-width:767px) {
    #testing-02 h2 {
        background-size: 100%;
        font-size: 1.9em;
    }

    .testing-setsubi-box-l{
        width: 100%;
    }

    .testing-setsubi-box-r{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 50px;
        flex-wrap: wrap;
        text-align: center;
    }

    .testing-setsubi-pic1{
        margin-bottom: 0;
        margin-right: 3%;
        width: 45%;
    }

    .testing-setsubi-pic2{
        width: 45%;
    }

    .testing-setsubi-pic1{
        margin-bottom: 3%;
        margin-right: 0;
        width: 90%;
    }

    .testing-setsubi-pic2{
        width: 90%;
    }

    .testing-setsubi-box-l p{
        font-size: 1em;
     }
}

/* business trainingページ */

#main-training #sub-ttl {
    background-image: url(../img/business/training/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#main-training .business-ttl-box {
    background-image: url(../img/business/training/sub-top-pc.jpg);
    background-position: center;
    width: 100%;
    padding-top: 38.07%;
}

@media screen and (max-width:767px) {
    #main-training .business-ttl-box {
        background-image: url(../img/business/training/sub-top-sp.jpg);
        padding-top: 146.16%;
    }

    section#training-02{
        margin-bottom: 0;
    }

    section#training-03{
        margin-bottom: 0;
    }

    section#training-04{
        margin-top: 0;
    }
}

#training-02 h2 {
    background-image: url(../img/business/training/caricuram-ttl.png);
    background-repeat: no-repeat;
    background-position: center left;
    padding: .5em 0 .5em 1em;
    font-size: 3.1em;
    background-size: 50%;
}

.training-calc-box{
    background-image: url(../img/business/training/training-back.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 45%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.training-calc-box-l{
    width: 60%;
}

.training-calc-box-r{
    width: 35%;
    text-align: center;
}

.training-calc-box-r-in{
    margin-bottom: 2%;
}

.training-calc-box-r-in:last-child{
    margin-bottom: 0;
}

@media screen and (max-width:1053px) {
    #training-02 h2 {
        font-size: 3.4vw;
    }
}

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

    .training-calc-box{
        background: none;
    }

    #training-02 h2 {
        background-size: 100%;
        font-size: 1.5em;
    }

    .training-calc-box-l{
        width: 100%;
        background-image: url(../img/business/training/training-back.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 70%;
    }
    
    .training-calc-box-r{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .training-calc-box-r-in{
        width: 49%;
    }

    #training-03 .business-banner{
        padding-top: 0;
    }

}

.attention-box{
    font-size: 1rem;
}

.attention-box .attention-big{
    font-size: 1.4rem;
    font-weight: bold;
}

.attention-box p{
    margin-bottom: 5px;
}


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

    #contact-form p{
        font-size: 0.95em;
    }
}

/* contact ページ */

#alert-txt{
    text-align: center;
    color: red;
    margin-bottom: 1em;
}

#main-contact #sub-ttl {
    background-image: url(../img/contact/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#footer-banner .container1400.contact-banner{
    /* justify-content: center; */
    max-width: 1000px;
}

.contact-banner .footer-banner-in {
    width: 40%;
}


@media screen and (max-width:767px) {
    .contact-banner .footer-banner-in {
        width: 80%;
    }
}

/* application ページ */

#main-application #sub-ttl {
    background-image: url(../img/application/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#main-application .mt40{
    margin-top: 40px;
}

/* download ページ */

#main-download #sub-ttl {
    background-image: url(../img/download/top-img-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#main-download-input #sub-ttl {
    background-image: url(../img/download/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#main-download-input h3{
    font-weight: normal;
    width: calc(30% + 1.5em);
}

.dl-radio-ttl{
    display: flex;
}


.download-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.download-flex-in {
    width: 40%;
    /* text-align: center; */
}

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

    .download-flex-in {
        width: 45%;
    }

    #main-download-input h3{
        width: 100%;
    }
    
    .dl-radio-ttl{
        flex-direction: column;
    }

    .dl-radio{
        padding-left: 2.2em;
    }
}


/* フォーム
–––––––––––––––––––––––––––––––––––––––––––––––––– */

label {
    display: block;
}


.form-container {
    max-width: 800px;
    margin: 0 auto;
}

table.formTable {
    width: 100%;
    margin-bottom: 20px;
}

table.formTable th {
    width: 30%;
    text-align: left;
    vertical-align: top;
    font-weight: normal;
}

table.formTable th,
table.formTable td {
    padding: 0.2em 0;
    vertical-align: top;
}

table.formTable td.hissu {
    /* padding: 0.2em 1em 0.2em 0; */
    width: 1.5em;
}

table.formTable td.form-ttl {
    font-size: 1.5em;
}



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

    table.formTable th,
    table.formTable td {
        display: block;
        width: 100%;
    }

    table.formTable td {
        display: block;
        width: 100%;
    }

    table.formTable td.hissu {
        display: table-cell;
        width: 2em;
    }

}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid #000;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 16px;
    width: 100%;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 150px;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #0FA0CE;
    outline: 0;
}

input[type="checkbox"] {
    transform: scale(2);
    margin-right: 0.7em;
    margin-left: 0.4em;
}

label,
legend {
    margin-bottom: .5rem;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

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

label>.label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}

table.formTable .yu-num input[type="number"] {
    display: inline-block;
    width: 5em;
}

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

    input[type="email"],
    input[type="number"],
    input[type="search"],
    input[type="text"],
    input[type="tel"],
    input[type="url"],
    input[type="password"],
    textarea {
        width: 100%;
    }
}

/* フォームボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* .button,
button, */
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    padding: 0.3em 30px;
    color: #000;
    text-align: center;
    font-size: 1.5em;
    font-weight: normal;
    line-height: 38px;
    /* letter-spacing: .2rem; */
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    width: 50%;
    max-width: 300px;
    border: 1px solid #000;
    transition: all .2s;
}

/* .button:hover,
button:hover, */
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
/* .button:focus,
button:focus, */
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    /* color: #333; */
    /* border-color: #; */
    outline: 0;
    background-color: #858585;
}

.form-btn {
    margin-bottom: 50px;
    margin-top: 50px;
}

.next-btn input[type="submit"] {
    background-color: gray;
    color: #fff;
    border-radius: 15px;
    border: none;
    transition: all .2s;
}

.next-btn input[type="submit"]:hover {
    opacity: 0.7;
}

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

    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        width: 80%;
        display: block;
    }
}