@charset "UTF-8";

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/*------------------------------------------*/
/*              Common Style                */
/*------------------------------------------*/
body {
    position: relative;
    margin: 0;
    
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    
    /*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
    
    line-height: 1.6;
    letter-spacing: 1.6px;
    font-weight: normal;
    
    background: #fff;
    overflow-x: hidden;
}

/*--- ページの初期表示をフェードイン ---*/
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*--- padding border 依存を外す ---*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}


p,
td,
dl dt,
dl dd {
    color: #111;
    font-size: 16px;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 480px) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
p,
td,
dl dt,
dl dd {
    font-size: 15px;
}
}


.img-responsive {
  display: block;
  width: 100%;
  height: auto;
}



/*------------------------------------------*/
/*                    home                  */
/*------------------------------------------*/
#home {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 75vh;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    
    /*background-size: cover;
    background-position: center center;
    background-image: url(../images/home_01.jpg);*/
    
    z-index: 10;
}


#home img.home {
    position: absolute;
    left: 0;
    bottom: 0;
    
    width: 100%;
    height: auto;
    
    z-index: -1;
}

#home img.scroll {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform:         translateX(-50%);
    -ms-transform:     translateX(-50%);
    -moz-transform:    translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform:      translateX(-50%);
    
    z-index: 0;
}


#home h1 {
    display: block;
    width: 100%;
    /*display: inline-block;
    width: auto;*/
    margin: 0;
    
    position: fixed;
    
    /*top: 37%;*/
    /*bottom: -33px;*/
    top: 0;
    
    left: 0;
    /*left: 50%;
    transform:         translateX(-50%);
    -ms-transform:     translateX(-50%);
    -moz-transform:    translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform:      translateX(-50%);*/
    
    text-align: center;
    
    z-index: 99;
    
    line-height: 1;
    letter-spacing: 5px;
    font-weight: normal;
    font-size: 33px;
    
    color: rgba(25,47,96,1);
    color: #fff;
    
    padding: 5px 0 10px 0;
    background: rgba(0,0,0,0.8);
    background: rgba(255,255,255,1);
    background: rgba(25,47,96,0.9);
    background: rgba(0,63,142,0.93);
}

#home h1 span {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

#home p.title {
    display: inline-block;
    width: auto;
    /*display: inline-block;
    width: auto;*/
    margin: 0;
    
    position: absolute;
    
    /*top: 37%;*/
    bottom: 0;
    
    left: 50%;
    transform:         translateX(-50%);
    -ms-transform:     translateX(-50%);
    -moz-transform:    translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform:      translateX(-50%);
    
    text-align: center;
    
    z-index: 2;
    
    line-height: 1.6;
    letter-spacing: 2px;
    font-weight: normal;
    font-size: 31px;
    
    /*color: rgba(25,47,96,1);*/
    color: #000;
    
    background: #fff;
    padding: 15px 80px 0 80px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}







#home img.logo {
    margin: 0 7px 0 0;
    display: inline-block;
    width: 31px;
    height: auto;
    vertical-align: -0.13em;
}





#home p.p1 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: normal;
    color: #fff;
    font-size: 85px;
    
    -webkit-text-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    -moz-text-shadow:    5px 5px 5px rgba(0,0,0,0.5);
    -ms-text-shadow:     5px 5px 5px rgba(0,0,0,0.5);
    -o-text-shadow:      5px 5px 5px rgba(0,0,0,0.5);
    text-shadow:         5px 5px 5px rgba(0,0,0,0.5);
}

#home p.p2 {
    display: inline-block;
    margin: 0;
    text-align: center;
    font-weight: normal;
    background: orange;
    background: rgba(238,105,73,0.8);
    padding: 10px 20px;
    color: #fff;
    font-size: 30px;
    
    /*
    -webkit-text-shadow: 2px 2px 5px rgba(0,0,0,0.64);
    -moz-text-shadow:    2px 2px 5px rgba(0,0,0,0.64);
    -ms-text-shadow:     2px 2px 5px rgba(0,0,0,0.64);
    -o-text-shadow:      2px 2px 5px rgba(0,0,0,0.64);
    text-shadow:         2px 5px 5px rgba(0,0,0,0.64);*/
}
#home p.p2 span {
    display: block;
    margin-top: 10px;
    letter-spacing: 3px;
    font-weight: normal;
    font-size: 18px;
}

#home p.p3 {
    display: block;
    margin-top: 20px;
    text-align: center;
    letter-spacing: 4.0px;
    color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    
    -webkit-text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    -moz-text-shadow:    2px 2px 5px rgba(0,0,0,0.5);
    -ms-text-shadow:     2px 2px 5px rgba(0,0,0,0.5);
    -o-text-shadow:      2px 2px 5px rgba(0,0,0,0.5);
    text-shadow:         2px 5px 5px rgba(0,0,0,0.5);
}



/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 1450px) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
#home p.title {
    font-size: 28px;
}
}
/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 1280px) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
#home p.title {
    width: 55%;
    line-height: 1.5;
    letter-spacing: 1.6px;
    font-weight: normal;
    font-size: 25px;
    padding: 15px 0 0 0;
}
}
/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (orientation: portrait) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
}
/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 991px) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
#home p.title {
    width: 75%;
    line-height: 1.5;
    letter-spacing: 1.6px;
    font-weight: normal;
    font-size: 25px;
    padding: 15px 0 0 0;
}
}
/* - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - - - */
#home {
    width: 100vw;
    height: 130vh;
}
                  
                  
#home h1 {
    letter-spacing: 3px;
    font-size: 25px;
}

#home h1 span {
    letter-spacing: 2px;
    font-size: 16px;
}
                  
#home img.logo {
    margin: 0 5px 0 0;
    width: 24px;
    vertical-align: -0.13em;
}
                  
                  
#home p.title {
    width: 70%;
    line-height: 1.8;
    letter-spacing: 1.6px;
    font-weight: normal;
    font-size: 20px;
    padding: 15px 0 0 0;
}
}
/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 767px) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
}
/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 480px) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
#home p.p1 {
    margin-top: 15%;
    margin-bottom: 5px;
    font-size: 60px;
}
#home p.p2 {
    padding: 10px 15px;
    font-size: 22px;
}
#home p.p2 span {
    font-size: 17px;
}
#home p.p3 {
    letter-spacing: 2px;
    font-size: 20px;
}
    
    
#home h1 {
    letter-spacing: 3px;
    font-size: 23px;
}

#home h1 span {
    letter-spacing: 2px;
    font-size: 14px;
}
    
    
    
#home p.title {
    width: 92%;
    line-height: 1.8;
    letter-spacing: 1.6px;
    font-weight: normal;
    font-size: 18px;
    padding: 15px 0 0 0;
}
    
    
#home img.logo {
    margin: 0 5px 0 0;
    width: 24px;
    vertical-align: -0.15em;
}
    
}




/*-----                           -------*/
/*----- IMAGE FADE IN-OUT <START> -------*/
/*-----                           -------*/
.bgslideshow {
    position: relative;
    width:  100%;
    height: 100%;
    overflow: hidden;
}

/*.bgslideshow img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}*/
.bgslideshow img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (min-width: 2700px) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1400px)
              and (min-height: 1024px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1180px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 920px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
}
/*-----                         ---------*/
/*----- IMAGE FADE IN-OUT <END> ---------*/
/*-----                         ---------*/
















/*------------------------------------------*/
/*                    home2                 */
/*------------------------------------------*/
#home2 {
    display: table;
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    
    background-size: cover;
    background-position: bottom center;
    background-image: url(../images/sora.jpg);
    
    z-index: 10;
}

#home2 .outer {
    display: table-cell;
    vertical-align: middle;
}

#home2 p {
    font-size: 20px;
}

#home2 iframe {
    max-width: 90%;
}


/* - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - - - */
#home2 {
    width: 100vw;
    height: 200vh;
}
}

/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 480px) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
#home2 iframe {
    height: 400px;
}
#home2 p {
    font-size: 18px;
}
}




/*------------------------------------------*/
/*                    home3                 */
/*------------------------------------------*/
#home3 {
    position: relative;
    width: 100vw;
    height: auto;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: center;
    
    /*background-size: cover;
    background-position: top center;
    background-image: url(../images/sora2.jpg);*/
}

/* iframe */
#home3 iframe {
    max-width: 90%;
}

/* p.map */
#home3 p.map {
    text-align: center;
    font-size: 20px;
}

/*--- recruit -----------------------------*/
#home3 .recruit {
    display: block;
    width: 1024px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    padding-top: 10px;
    border-top: 1px rgba(255,255,255,0.7) solid;
    text-align: center;
}

/* h2 */
#home3 h2 {
    display: block;
    /*margin-top: 90px;*/
    margin-bottom: 60px;
    text-align: center;
    font-weight: normal;
    font-size: 30px;
}
#home3 h2:last-of-type {
    margin-top: 90px;
    padding-top: 60px;
    border-top: 1px rgba(0,0,0,0.8) solid;
}
#home3 h2 span {
    display: block;
    text-transform: uppercase;
    font-size: 45px;
}

/* h3 */
#home3 h3 {
    display: inline-block;
    width: 97%;
    padding: 15px 0;
    text-align: center;
    background: #fff;
    background: rgba(238,105,73,0.8);
    color: #fff;
    font-size: 23px;
}

/* p.msg */
#home3 p.msg {
    margin-bottom: 40px;
    text-align: center;
    line-height: 2;
    font-size: 20px;
}

/* p.msg-2 */
#home3 p.msg-2 {
    margin-top: 40px;
    margin-bottom: 60px;
    text-align: center;
    line-height: 2;
    font-size: 20px;
    
    padding-bottom: 90px;
    border-bottom: 1px rgba(0,0,0,0.25) solid;
}

/* table */
#home3 table {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
#home3 td {
    width: 33.33333%;
    padding: 15px;
}
#home3 td .outer {
    padding: 10px;
    background: #fff;
}
#home3 td .inner {
    padding: 20px 10px;
    border: 1px rgba(0,0,0,0.4) solid;
}
#home3 td span {
    display: block;
    font-style: italic;
    text-align: center;
    margin-bottom: 15px;
    color: rgba(0,0,0,0.4);
    font-size: 40px;
}


/* dl dt dd */
#home3 dl {
    display: block;
    width: 97%;
    margin: 0 auto;
    margin-top: 30px;
    background: #fff;
    border-bottom: 2px rgba(0,0,0,0.2) dotted;
}
#home3 dl dt {
    display: inline-block;
    margin: 0;
    float: left;
    text-align: left;
    line-height: 1.8;
    padding: 15px 10px 15px 15px;
    border-top: 2px rgba(0,0,0,0.2) dotted;
    
    width: 30%;
}
#home3 dl dd {
    display: inline-block;
    margin: 0;
    text-align: left;
    line-height: 1.8;
    padding: 15px 10px 15px 15px;
    border-top: 2px rgba(0,0,0,0.2) dotted;
    
    width: 70%;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
/*#home3 dl dt:first-of-type,
#home3 dl dd:first-of-type {
    border: none;
}*/
#home3 dl dd strong {
    display: block;
    margin-top: 8px;
    color: #ff0000;
    font-weight: normal;
}



#home3 ul {
    display: block;
    width: 100%;
    padding: 0;
}
#home3 ul li {
    display: inline-block;
    width: 45%;
    padding: 2%;
}

#home3 ul li img {
    border-radius: 10px;
    margin: 0 auto;
}



/* .price */
#home3 a.price {
    display: inline-block;
    margin: 0 auto;
    margin-top: 30px;
    
    width: 100%;
    max-width: 580px;
    height: auto;
    padding: 20px 0;
    
    border: 6px rgba(0,63,142,0.6) double;
    border-radius: 100px;
    
    text-decoration: none;
    text-align: center;
    
    font-size: 23px;
}



/* .line */
#home3 a.line {
    text-decoration: none;
}
#home3 a.line img {
    display: inline-block;
    margin-top: 40px;
    width: 100%;
    max-width: 580px;
}
#home3 a.line p {
    text-align: center;
    line-height: 1;
    margin-bottom: 15px;
}



/* copy right */
#home3 p.copy {
    display: block;
    margin-top: 100px;
    text-align: center;
    font-weight: normal;
    font-size: 14px;
}
#home3 p.copy span {
    padding-right: 2px;
    font-family:'Times New Roman', 'Times';
}



/* - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - - - */
}
/*- - - - - - - - - - - - - - - - - - - - - -*/
@media screen and (max-width: 480px) {
/*- - - - - - - - - - - - - - - - - - - - - -*/
#home3 iframe {
    height: 350px;
}
#home3 p.map {
    font-size: 18px;
}
#home3 .recruit {
    padding-left: 15px;
    padding-right: 15px;
}
#home3 h2 {
    font-size: 18px;
}
#home3 h2 span {
    font-size: 27px;
}
#home3 h3 {
    font-size: 18px;
}
#home3 p.msg {
    padding: 0 10px;
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
    font-size: 14px;
}
    
   
#home3 p.msg-2 {
    font-size: 16px;
} 
#home3 p.msg-2 span {
    display: block;
}
    
    
#home3 table {
    display: block;
    width: 100%;
    padding: 0 15px;
}
#home3 td {
    display: block;
    width: 100%;
    padding: 5px 0;
}
#home3 td {
    display: block;
    width: 100%;
    padding: 5px 0;
}
#home3 td .inner {
    padding: 5px 0;
}
#home3 td span {
    margin-bottom: 0;
    font-size: 30px;
}
    
    #home3 ul li {
        display: block;
        width: 100%;
        padding: 15px 0;
    }
    
    
#home3 dl dt {
    padding: 15px 10px 15px 0;
}
#home3 dl dd {
    padding: 15px 0 15px 0;
}
    
    
#home3 a.price {
    padding: 12px 0;
    border-radius: 100px;
    font-size: 20px;
}
    
#home3 p.copy {
    font-size: 13px;
}
}





