@charset "UTF-8";


 /* +++++++++++++++++++++++++　基本設定 */

 body {
	min-width:1000px;
	font-family:'Noto Sans JP', 'Roboto', 'Segoe UI', 'Helvetica Neue', 'HelveticaNeue', 'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Arial', sans-serif;
	font-size:16px;
	line-height:1.8em;
	letter-spacing:0.05em;
	color:#161616;
	text-align:left;
}   
.inner {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}


a.btn {
    position: relative;
    text-decoration: none;
    background: #000;
    color: #fff;
    padding: 12px 55px;
    font-weight: bold;
}
a.btn::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 14%;
    top: 21%;
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02{
	animation-delay: 0.2s;
}
.delay-time04{
	animation-delay: 0.4s;
}
.delay-time06{
	animation-delay: 0.6s;
}
.delay-time15{
	animation-delay: 1.5s;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/

.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.fadeUpTrigger{
	opacity: 0;
}


@media screen and (max-width: 768px) {
    
     body {
	min-width:auto;
    }  
}




/************ header */


#top-head {
    width: 100%;
    margin: 0 auto;
    padding: 12px 0;
}
#top-head .head-inner {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}
#top-head .logo {
    max-width: 90px;
}
#global-nav ul {
    list-style: none;
    font-size: 14px;
    display: flex;
    height: 100%;
    align-items: center;
}
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    background: #999;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    z-index: 100;
}



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

    #top-head .logo {
        max-width: 60px;
    }
    a.btn {
        padding: 12px 35px;
    }

}



#main {
    background: url(../img/header.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    animation: fadeIn 5s forwards;
    position: relative;
    padding: 100px 0 1000px;
}

  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
#main h2 {
    animation-delay: 2s;
}
#main img.ttl {
    max-width: 435px;
    filter: drop-shadow(0px 2px 13px rgb(50, 80, 100));
}
#main img.drone {
    position: absolute;
    top: 20%;
    width: 55%;
    right: 0%;
    --animate-duration: 4s;
}
.main_links {
    background: linear-gradient(180deg, rgba(239,239,239,1) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    animation: fadeIn 5s forwards;
}
.main_links h3 {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 80px;
}
.main_links ul {
    counter-reset: number 0;
    display: flex;
    justify-content: space-between;
}
.main_links li {
    width: 32%;
    border: 1px solid #707070;
    text-align: center;
    background-color: #fff;
}

.main_links li::before {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-size: contain;
    padding: 5px;
    font-size: 55px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}
.main_links li h4 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 30px;
}
.main_links li h4 small {
    display: block;
    font-size: 1.125rem;
}

.main_links a {
    position: relative;
    color: #000;
    text-decoration: none;
    padding: 90px 40px;
    display: block;
}
.main_links a:hover {
    opacity: 1;
}
.main_links a::before {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    transition: all .3s;
    z-index: 100;
    text-decoration: none;
    transform: translate(-50%,-50%);
    left: 50%;
    bottom: 10px;
    font-size: 2.5rem;
}
.main_links a:hover::before {
    bottom: -16px;
}
.main_links li:first-child a {
    background: url(../img/icon_links01.png) no-repeat;
    background-position: center 15%;
    background-size: 70%;
}
.main_links li:nth-child(2) a {
    background: url(../img/icon_links02.png) no-repeat;
    background-position: center 15%;
    background-size: 70%;
}
.main_links li:last-child a {
    background: url(../img/icon_links03.png) no-repeat;
    background-position: center 15%;
    background-size: 70%;
}


@media screen and (max-width: 768px) {
    #main {
        padding: 5rem 0 40rem;
        height: auto;
    }
#main img.ttl {
    max-width: 275px;
}
#main img.drone {
    top: 25%;
    width: 88%;
    right: 0%;
    max-width: 500px;
}
.main_links h3 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}
.main_links ul {
    display: block;
}
.main_links li {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 2rem;
}
}

#dommit {
    counter-reset: number2 0;
}

#dommit article {
    border-bottom: 1px solid #cccccc;
    padding: 100px 0;
}
#dommit article:last-child {
    border-bottom: none;
}
#dommit_head {
    text-align: center;
    padding: 100px 0 200px;
}
#dommit_head h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}


.dommit_box .dommit_ttlwrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.dommit_box .dommit_blue {
    background-color: #0086BE;
    width: 25%;
    position: relative;
    padding: 100px 30px 55px;
}
.dommit_box .dommit_blue h4 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.8;
    color: #fff;
    text-align: center;
}

.dommit_box .dommit_blue::before {
    counter-increment: number2 1;
    content: counter(number2, decimal-leading-zero);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-size: contain;
    padding: 5px;
    font-size: 55px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    letter-spacing: 1px;
}
.dommit_box .dommit_blue h4 small {
    display: block;
    font-size: 1.125rem;
}
.dommit_box .dommit_ttl {
    width: 70%;
    align-self: center;
}
.dommit_box .dommit_ttl h5 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #0086BE;
}

.dommit_contentwrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.dommit_contentwrap:last-child {
    margin-bottom: 0;
}
.dommit_contentwrap.rev {
    flex-direction: row-reverse;
}
.dommit_contentwrap > * {
    width: 47%;
}
.dommit_contentwrap .flextxt {
    align-self: center;
}
.dommit_contentwrap .flextxt h6 {
    font-size: 1.5rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
#dommit article {
    padding: 4rem 0;
}
#dommit_head h3 {
    font-size: 1.5rem;
}
.dommit_box .dommit_ttlwrap {
    display: block;
}
.dommit_box .dommit_blue {
    width: 100%;
    padding: 5rem 0 2rem;
}
.dommit_box .dommit_ttl {
    width: 100%;
}
.dommit_box .dommit_ttl h5 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}
.dommit_contentwrap {
    display: block;
}
.dommit_contentwrap > * {
    width: 100%;
    margin-bottom: 1rem;
}
.dommit_contentwrap .flextxt h6 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
}

#movie {
    background-color: #d4e3f0;
    padding: 200px 0;
    margin-top: 100px;
}
#movie h3 {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 80px;
}
#movie .video{
    position:relative;
    width: 100%;
    padding-top:56.25%;
    height: 0;
}
#movie .video iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
#movie .video video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

@media screen and (max-width: 768px) {
#movie {
    padding: 6rem 0;
    margin-top: 3rem;
}
#movie h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
}

#caution {
    padding: 200px 0;
}
#caution h3 {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 80px;
}
#caution ul {
    max-width: 900px;
    margin: 0 auto;
}
#caution li {
    list-style: disc;
    margin-bottom: .5rem;
}

@media screen and (max-width: 768px) {
#caution {
    padding: 6rem 0;
}
#caution h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
#caution ul {
    width: 83%;
}
}

#contact {
    text-align: center;
    background: #ECECEC;
    padding: 120px 0;
}
#contact h3 img {
    max-width: 650px;
}
#contact h4 {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 40px 0;
}
#contact p {
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    #contact {
        padding: 4rem 0;
    }
    #contact h4 {
        font-size: 1.2rem;
        padding: 2rem 0;
    }
}


/* +++++++++++++++++++++++++ ページTOPに戻る */
.floating.fixed .btn-pagetop {
    position: fixed;
    right: 70px;
    bottom: 0;
    width: 75px;
    z-index: 99;
    margin-bottom: 5vw;
}
.floating.fixed .btn-pagetop img {
    width: 100%;
    display: block;
}

@media screen and (max-width: 768px) {
    /* ページTOPに戻る */
    .floating.fixed .btn-pagetop {
        right: 12vw;
        bottom: 135px;
        width: 50px;
    }
}


    

/* footer */

footer {
    background: #666666;
    color: #fff;
    text-decoration: none;
}
footer a {
    text-decoration: none;
    color: #fff;
}
.foot_content {
    display: flex;
    padding: 70px 0 100px;
}
.foot_content .corporate {
    width: 30%;
}
.foot_content .corporate h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.foot_content .corporate p {
    font-size: 0.875rem;
}
.foot_content .foot_link {
    width: 70%;
}
.foot_content .foot_link ul {
    display: flex;
    justify-content: space-around;
}
.foot_content .foot_link li {
    position: relative;
}
.foot_content .foot_link li::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: -15px;
    top: 2px;
}
footer address {
    text-align: center;
    font-size: 0.9rem;
    padding: 15px 0;
    font-style: normal;
}

@media screen and (max-width: 768px) {
.foot_content {
    display: block;
    padding: 5rem 0;
}
.foot_content .corporate {
    width: 100%;
}
.foot_content .foot_link {
    width: 100%;
    margin-top: 3rem;
}
.foot_content .foot_link ul {
    display: block;
}
.foot_content .foot_link li {
    padding-left: 3rem;
    margin-bottom: 1rem;
}
.foot_content .foot_link li::before {
    left: 2rem;
}
}


