@charset "UTF-8";

html {
  font-size:62.5%;
}
body {
     font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
     sans-serif;

  font-size:1.4rem;

  background-color: #eaffff;
}
*, *::before, *::after {
  box-sizing:border-box;
}
.clearfix::after {
  content:'';
  display:block;
  clear:both;
}


.site-logo{
    display: flex;
    align-items: flex-end;
    padding-top: 10px;
}

.site-logo p{
    padding-left: 10px;
    padding-bottom: 5px;
}

.header-logo{
    margin-left: 15%;
    padding-top: 10px;
}

.header-logo img{
    width: 100px;
    object-fit: cover;
}

.header-photo {
    text-align: center;
}

form {
    margin: 50px auto;
    width: 800px;
    height: 400px;
    padding: 30px;
    text-align: center;
}

.upload-area {
    margin: auto;
    width: 85%;
    height: 300px;
    position: relative;
    border: 1px dotted rgba(0, 0, 0, .4);
}
.upload-area i {
    position: absolute;
    font-size: 120px;
    opacity: .1;
    width: 100%;
    left: 0;
    top: 80px;
}
.upload-area p {
    width: 100%;
    position: absolute;
    top: 200px;
    opacity: .8;
}

button {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

#submit-button {
	display: flex;
    justify-content: space-evenly;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 120px;
	margin: auto;
	padding: 1rem 4rem 1rem 3rem;
	font-weight: bold;
	background: #27acd9;
	color: #fff;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}
#submit-button::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
#submit-button:hover {
	background: #44c6f2;
	color: #fff;
}

#upload-space{
    position: relative;
}

#upload-space p{
    margin-top: 3px ;
}

#select-file-str{
    padding-bottom: 20px;
}

#input-files {
    top: 105%;
    left: 5%;
    position: absolute;
}

#submit-button{
    margin-top: 5px;

}

#submit-btn:hover {
    background-color: rgba(108, 168, 255, 1.0);
}
#submit-btn:active {
    position: relative;
    top: 5px;
    box-shadow: none;
}

    p:last-child {
        margin: 0;
    }
    p > span {
        color: #00b200;
    }
    /* プログレスバーを作成する */
    #prog {
        width: 100%;
        height: 6px;
        border-radius: 3px;
        border: 1px solid #CCC;
        background-color: #EEE;
        margin: 0.5em 0;
        overflow: hidden;
    }
    /* プログレスバーの中身を定義 */
    #prog > span
    {
        content: '';
        display:block;
        border-radius: 2px;
        height: 4px;
        position: relative;
        top: 0px;
        left: 0px;
        background-color: #0A0;
        box-sizing: border-box;
    }

    #insert-dlLink{
        margin-bottom: 30px;
    }

    #fin-msg{
        padding-top: 20px;
    }

   #download-section {
        margin-top: 20px;
	padding-top: 20px;
   }

    .download-area{
        text-align: center;
        font-size: 24px;
        padding: 40px;
    }
    
    .news-area{
        margin: 20% 15% 0 15%;
    }

    .news-box{
        border-style: solid;
        border-width: thin;
        border-color: #180614;
        margin-bottom: 20px;
    }

    dl{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;

    }

    .news-box dl{
        padding: 20px;
    }

    dl dt{
        width: 40%;
    }

    dl dd{
        width: 60%;
    }


    header #header-bg{
        border-bottom: solid;
        border-width: thin;
        border-color:#180614;
    }

    header ul{
        padding-left: 0;
        display: flex;
        justify-content: end;
        margin: 0 15% 0 0 ;
        padding: 10px 0;
    }

    header ul li{
        list-style: none;
        margin: 0 20px;
        padding-left: 10px;
        font-size: 16px;
    }

    footer{
        background-color: aqua;
        padding: 30px 0;
        margin: 0;
    }

    footer ul{
        margin-left: 10%;
        margin-right: 0;
        padding: 10px 0;
        display: flex;
    }

    footer ul li{
        list-style: none;
        margin: 0 10px;
        padding-left: 50px;
        font-size: 16px;

    }

    #kiyaku-article{
        margin: 0 30px;
        margin-bottom: 40px;
    }

    #description-area{
        margin: 0 15%;
    }

    #description-area p, li{
        font-size: 20px;
        margin: 35px 0;
    }

    #description-area h1{
        font-size: 40px;
    }

    #description-area h2{
        font-size: 32px;
        border-bottom-style: solid;
        border-bottom-color: #27acd9;
    }

    .pic-area{
        border-style: dashed;
        border-color: aqua;
    }

    #intro{
        margin-bottom: 35px;
    }

    #dd{
        margin-bottom: 48px;
    }

    #fs{
        margin-bottom: 48px;
    }


/* ページトップ移動ボタン用 */
    .pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: .3s;
  color: #00A6C4;
  background: #fff;
  
/*   デフォルトは非表示 */
  opacity: 0;
}
.pagetop:hover {
    box-shadow: 0 0 10px #00A6C4;
}
/* ページトップ移動ボタン用ここまで */

/*ローディング中表示*/

#lc04{
    position: absolute;
    left: 46%;
    margin: 70px 0;

}

.load-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid rgba(127, 255, 255, 0.5);
    border-top-color: rgba(255, 255, 255, 1);
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
/*ローディング中表示ここまで*/
