@charset "UTF-8";
/* CSS Document */


#header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
/*------------------------------------------------------------------------------------detail*/
#maintitle{
    position: relative;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 51%, #eff8fe 52%);
}
#maintitle:before{
    content: "";
    display: block;
    position: absolute;
    background-image: url("../img/page_cloud_t.png");
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
#maintitle h2{
    font-weight: 500;
    text-align: left;
    padding: 15em 0 3em 0;
}
#maintitle h2 span{
    font-size: 5rem;
    font-weight: 600;
}

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

#f_contact{
    width: 60em;
    background-position: 95% 40%;
    margin-top: 8em;
}

#f_contact ul{
    display: flex;
    justify-content: space-between;
    padding-right: 1em;
}
#f_contact li{
    text-align: center;
}
#f_contact li.title{
    width: 13em;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 3em;
    background-color: #fff;
    color: #6fa7d3;
    padding-top: 3.3%;
    margin-right: 1em;
    cursor: pointer;
}
#f_contact li:not(.title) {
  position: relative;
  left: -50px; /* 横方向に隠す */
  opacity: 0;
}
#f_contact li a{
    display: block;
    width: 5em;
    aspect-ratio: 1 / 1;
    background-color: #f1e5bf;
    color: #d7842c;
    font-size: 1.8rem;
    font-weight: 600;
    padding-top: 29.4%;
    border-radius: 50%;
}
#f_contact a:hover{
    background-color: #d7842c;
    color: #fff;
}


@media only screen and (max-width: 768px) {
    
/*------------------------------------------------------------------------------------detail*/
#maintitle{
    background-position: 50% 0;
    background-size: 200% auto;
}
#maintitle:before{
    padding-top: 10em;
}
#maintitle h2{
    padding:10em 0 3em 0;
}
#maintitle h2 span{
    font-size: 3.5rem;
    display: block;
    line-height: 1.3;
}

#f_contact{
    width: 88%;
    background-position: 95% 9.5em;
}
#f_contact .txt{
    padding: 1.5em 0 0 0;
}

#f_contact ul{
    flex-wrap: wrap;
    padding-right: 0;
}
#f_contact li{
    margin-top: 1em;
    width: 31%;
}
#f_contact li.title{
    width: 100%;
    border-radius: 3em;
    padding: 0.5em;
    margin-right: 0;
}
#f_contact li:not(.title) {
  position: relative;
  left: auto;
  opacity: 1;
    display: none;
}
#f_contact li a{
    width: 100%;
    aspect-ratio: 1 / 1;
    padding-top: 29.4%;
}
}