@charset "UTF-8";


/*-----header-----*/

#header .logo{
    width:200px;
}

.header-nav{
    display: -webkit-flex; /* Safari */
  display: flex;
    -webkit-justify-content: space-between; /* Safari */
  justify-content:         space-between;
}

@media screen and (max-width: 767px) {
    
    #header .logo{
    width:150px;
}
}

.header-wrapper {
    background: url("../img/header_img.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 800px;
    position: relative;
}

/* 透過した黒を重ねる指定 */
.header-wrapper::before {
    /* 透過した黒を重ねる */
    background-color: rgba(255, 255, 255, 0.5);
    /* どの範囲に重ねるかを指定 */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
    width:100%;
}

.header-wrapper .header-cont{
    position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
        margin:auto;
        text-align: center;
    display: -webkit-flex; /* Safari */
  display: flex;
    -webkit-justify-content: center; /* Safari */
  justify-content:         center;
   
}

.top-slide{
    width:550px;
    height:100%;
}

.headerbox {
	margin: 0 auto;
	padding: 10px;
	width: 305px;
	height: 95px;
	border: 0;
	background-color: #1e4f9e;
	position: relative;
}
.headerbox p {
	text-align:center;
	color: #fdf403;
	font-size: 28pt;
	font-weight: 700;
	line-height: 1.0;
	margin: 3px;
}
.headerbox div.addcomm {
	text-align:center;
	color: #ffffff;
	font-size: 12pt;
	font-weight: 500;
	line-height: 1.0;
}
.headerbox p.comm {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	font-size: 22pt;
	font-weight: 500;
	line-height: 1.1;
}
.headerbox div.notice {
	text-align:right;
	color: #fdf403;
	font-size: 10pt;
	font-weight: 500;
	line-height: 1.0;
	margin-right: 2em;
}

/*-----//header-----*/


/*-----title-----*/

#about h3{
    color:#ff8700;
    font-size: 2.5rem;
    font-weight: bold;
}

h2{
    font-size:3em !important;
}

/*-----//title-----*/



/*-----main-----*/


.bg-blue{
    background:#1c509e;
}
.bg-light-blue{
    background:#d2e4ff;
}


.bg-yellow{
    background:#fff000;
}

.border-bottom{
    border-bottom:1px solid #ddd;
}


.container-wrapper{
    padding:5em 0;
}

.bold{
    font-weight:bold;
}

.text-blue{
    color:#1c509e;
}

.pt-6{
    padding-top: 4.5em;
}

iframe{
    width:100%;
    height:650px; 
}

@media screen and (max-width: 767px) {
    
    .pt-6{
    padding-top: 2em;
}
    iframe{
    height:350px; 
}
}


/*-----//main-----*/



/*-----about-----*/



.about-content p{
    font-size:2em;
}


/*-----//about-----*/

/*-----experience-----*/


.experience-wrapper{
    border:5px solid #b3b3b3;
    background:#fff;
}


/*-----//experience-----*/

/*-----resolution-----*/

.resolution-bg{
    background:url(../img/resolution-bg.jpg) no-repeat;
    background-size: cover;
}


.resolution_img01{
    margin-top:-7em;
}

.resolution{
    padding-top:6em;
}

.border-blue{
    border:solid 5px #1c509e;
    background:#fff;
}

/*-----//resolution-----*/

/*-----price-----*/

.price-bg{
    background:url(../img/price.jpg) no-repeat;
    background-size: cover;
}

/*-----//price-----*/

/*-----possible-----*/

.possible-bg{
    background:url(../img/possible.jpg) no-repeat;
    background-size: cover;
}

/*-----//possible-----*/





    ul.travel li{
        border-bottom:1px solid $color-grey;
        padding-bottom:1em;
            margin-bottom: 1.0em;
    }






#triangle{
    position: relative
}

#triangle::before{
        width: 0;
    height: 0;
    border-top: 30px solid #1c509e;
    border-right: 80px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 80px solid transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    content: ""; 
}


#triangle-light-blue{
    position: relative
}

#triangle-light-blue::before{
        width: 0;
    height: 0;
    border-top: 30px solid #d2e4ff;
    border-right: 80px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 80px solid transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    content: ""; 
}



#triangle-yellow{
    position: relative
}

#triangle-yellow::before{
        width: 0;
    height: 0;
    border-top: 30px solid #fff000;
    border-right: 80px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 80px solid transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    content: ""; 
}





/*-----ボタン-----*/

.square_btn{
    display: inline-block;
    padding: .5em 0;
    text-decoration: none;
    background: #ff8700;/*ボタン色*/
    color: #FFF;
    width:100%;
    border-bottom: solid 6px #b66000;
    border-radius: 3px;
    font-size:2rem;
}
.square_btn:hover {/*ボタンを押したとき*/
    color: #fff;
    text-decoration: none
}
.square_btn:active {/*ボタンを押したとき*/
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}


/*-----//ボタン-----*/



/*-----footer-----*/

footer li a{
    text-decoration: underline;
}


/*-----//footer-----*/





@media screen and (max-width: 1200px) {
    
.header-wrapper {
    height: 1000px;
}
    
    .header-wrapper .header-cont{
    position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
        margin:auto;
        text-align: center;
    display: -webkit-inline; /* Safari */
  display: inline;
         padding:3em 0 ;
}
    
.top-slide{
    width:100%;
    height:100%;
}
    
    
h2{
    font-size:2em !important;
}
    
h3 span{
        font-size: 2rem;
}
    
.square_btn{
    display: inline-block;
    padding: .5em 0;
    text-decoration: none;
    background: #ff8700;/*ボタン色*/
    color: #FFF;
    width:95%;
    border-bottom: solid 6px #b66000;
    border-radius: 3px;
    font-size:1.5rem;
}

}
