@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');
body {
    box-sizing: border-box;
    -webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
    -webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 2px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #222;
}
/* h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
} */
h1 {
    font-size: 1.3rem;
    margin-bottom: .5em;
}

h2 {
    position: relative;
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 70px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

h2:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #73B8E0;
}

section{
    margin-bottom: 80px;
    padding-bottom: 80px;
}

.container {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
}

.first-view{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.first-view img{
    width: 65%;

}


/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
    position:absolute;
    bottom: -80%;
    right:50%;
    /*マウスの動き1.6秒かけて動く永遠にループ*/
    animation:mousemove 1.6s ease-in-out infinite;
}



/*下からの距離が変化して上から下に動く*/
@keyframes mousemove{
    0%{bottom:10px;}
    50%{bottom:5px;}
    100%{bottom:10px;}
}

/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
    position: absolute;
    left: -13px;
    bottom: 120px;;
    /*テキストの形状*/
    color: #73B8E0;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/*マウスの中の線描写 */
.scrolldown span::after{
    content: "";
    /*描画位置*/
    position: absolute;
    top:10px;
    left:17px;
    /*線の形状*/
    width: 2px;
    height: 15px;
    background: #73B8E0;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: mousepathmove 1.4s linear infinite;
    opacity:0;
}

/*上からの距離・不透明度・高さが変化して上から下に流れる*/
@keyframes mousepathmove{
    0%{
        height:0;
        top:10px;
        opacity: 0;
    }
    50%{
        height:15px;
        opacity: 1;
    }
    100%{
        height:0;
        top:30px;
        opacity: 0;
    }
}

/*マウスの描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:70px;
    left:-10px;
    /*マウスの形状*/
    width:25px;
    height:37px;
    border-radius: 10px;
    border:2px solid #73B8E0;
}


/*マウスの中の丸の描写*/
.scrolldown:after{
    content:"";
    /*描画位置*/
    position: absolute;
    bottom: 85px;
    left:0;
    /*丸の形状*/
    width:5px;
    height: 5px;
    border-radius: 50%;
    border:2px solid #73B8E0;
}

.timeline > p{
    margin-bottom: 60px;
}

.timeline-item {
    padding: 3em 2em 2em;
    position: relative;
    color: rgba(0, 0, 0, 0.7);
    border-left: 2px solid #73B8E0;
}

.timeline-item p {
    font-size: 1rem;
}

.timeline-item::before {
    content: attr(date-is);
    position: absolute;
    left: 2em;
    font-weight: bold;
    top: 1em;
    display: block;
    font-weight: 700;
    font-size: .785rem;
    color: #73B8E0;
}

.timeline-item::after {
    width: 20px;
    height: 20px;
    display: block;
    top: 1em;
    position: absolute;
    left: -7px;
    border-radius: 10px;
    content: '';
    border: 2px solid #73B8E0;
    background: rgb(115, 184, 224);
}
.timeline-item:last-child {
    border-image: linear-gradient(to bottom, rgb(115 184 224) 60%, rgba(0, 0, 0, 0)) 1 100%;
}


.btn {
    text-align: center;
    padding-top: 25px;
  }

  /* ここから下がボタンのCSS　*/
  .btn-circle {
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    font-weight: 700;
    background-color: #73B8E0;
    letter-spacing: 1.5px;
    width: 220px;
    text-align: center;
    padding: 24px;
    position: relative;
    opacity: 1 !important;
    transition: all 0.4s;
    overflow: hidden;
    border: none;
  }
  .btn-circle:before {
    content: "";
    display: block;
    width: 240px;
    height: 240px;
    background-color: #73B8E0;
    border-radius: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-100%, 100%);
    transition: all 0.4s;
    pointer-events: none;
  }
  .btn-circle:after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FFF;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    transition: all 0.4s;
  }
  .btn-circle:hover {
    color: #FFF;
    background-color: #FFF;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  }
  .btn-circle:hover:after {
    width: 0;
    height: 0;
    border-radius: 0;
    background-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #73B8E0;
    right: 12px;
  }
  .btn-circle:hover:before {
    transform: translate(-12px, 90px);
  }
  .btn-circle span {
    position: relative;
    z-index: 99;
  }



.bnr{
    text-align: center;
    margin: 35px 0;
}

.company_column{
}

.company_column table{
    margin-bottom: 50px;
}



.company_column iframe{
    margin: 15px 0;
    width: 100%;
    height: 270px;
}

.table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.table tr {
    border-bottom: 1px solid #e5e5e5;
}

.table tr th,
.table tr td {
    padding: 10px 0;
    text-align: left;
    vertical-align: top;
}

.table tr th {
    width: 20%;
    font-weight: bold;
}

.table tr td {
    width: 65%;
}

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


.contact{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 80px auto;
    box-sizing: border-box;
}

.contact div{
    width: 48%;
}



.address{
    font-size: 16px;
    line-height: 2.0;
    text-align: left;
    padding-top: 25px;
}

footer{
    padding: 15px 15px;
    font-size: 10px;
    text-align: center;
    color: rgb(121, 121, 121);
}

small {
    font-size: 80%;
}




@media screen and (max-width: 767px){
    .first-view img {
        width: 85%;
    }

.table tr th,
.table tr td {
    display: block;
    width: 100%;
    padding: 0;
    margin: 20px 0;
}

.contact{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 100px auto;
    padding: 20px;
    box-sizing: border-box;
}

.contact div{
    width: 100%;
}


}

