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

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@500;600;700&family=Noto+Sans+JP:wght@400;500;600&display=swap');
html {
    font-size: 62.5%;
}
a[href^="tel:"] {
    cursor: default;
}
a:link {
    color: #88b929;
    text-decoration: underline;
}
a:visited {
    color: #88b929;
    text-decoration: underline;
}
a:hover {
    color: #42bfec;
    text-decoration: none;
}
.center{
  text-align: center;
}
.text_center{
  text-align: center;
}
.large{
  font-size: 2rem;
}
picture{
  display: block;
}
.maB50{
    margin-bottom: 50px !important;
}
/* ローディングアニメーション
------------------------------------------------- */

.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #42bfec;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

/* ここまで
------------------------------------------------- */





body {
    font-size: 1.7rem;
    color: #3a3a3a;
    color: #000;
    line-height: 1.6;
    font-family: 'Comfortaa', "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif, "メイリオ", "Meiryo", "verdana";
    font-weight: 400;
    padding-top: 86px;
}

.pc_none{
    display: none;
}
/* header
------------------------------------------------- */
header {
    background-color: #ffffff;
}
/* 固定用 */
#fix_header {
    position: fixed;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
    top: 0;
    left: 0;
    transition: .3s;
}
#header_in {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1.logo {
    margin-left: 40px;
}
.logo img {
    display: block;
}
ul.menu {
    list-style: none;
    display: flex;
    font-size: 1.7rem;
    font-weight: 700;
}
ul.menu li{
    text-align: center;
}
ul.menu li a {
    color: #3a3a3a;
    text-decoration: none;
    display: block;
    padding: 20px 30px;
    transition: 0.3s;
}
ul.menu li a:hover{
    background-color: #eeeeee;
}
ul.menu li a span {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: #999;
}
ul.menu li.active a {
    color: #FFF;
    background-color: #9ac742;
}
ul.menu li.active a span {
    color: #FFF;
}
ul.menu li.mail a {
    background-color: #42bfec;
}
ul.menu li.mail a span {
    color: #FFF;
}
.contents {
    max-width: 1280px;
    margin: auto;
}
.btn_more a {
    margin-top: 50px;
    display: inline-block;
    background-color: #666;
    color: #FFF;
    border-radius: 50px;
    padding: 10px 50px;
    text-decoration: none;
    font-size: 1.4rem;
      -webkit-transition: all .3s;
    transition: all .3s;
    background-image: linear-gradient(to right, #333333 0%, #666666 51%, #333333 100%);
      background-size: 200% auto;
}

.btn_more a:hover {
    background-color: #998bfa;
    background-position: right center;
}


/* footer
------------------------------------------------- */
footer {
    background-color: #f8f8f8;
    font-size: 1.5rem;
    text-align: center;
}
.footer_in {
    padding: 4%;
    max-width: 1280px;
    margin: auto;
}
.contact{
    margin: 50px auto 20px;
    max-width: 500px;    
}
.contact a{
    display: block;
    padding: 20px;
    border-radius: 50px;
    background-color: #42bfec;
    color: #FFF;
    text-decoration: none;
    font-size: 2rem;
    transition: 0.3s;
}
.contact a:hover{
    background-color: #6dcdef;
}
dl.tel{
    display: flex;
    flex-wrap: wrap;
    max-width: 450px;
    margin: auto;
    text-align: left;
    font-size: 2rem;
    justify-content: center;
    margin-bottom: 50px;
}
dl.tel dt{
    margin-right: 10px;
    color: #999;
}

dl.tel dd{
    margin-right: 50px;
}
dl.tel dd:last-child{
    margin-right: 0;
}


footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    border-top: #ddd 1px solid;
    font-size: 1.4rem;
    padding: 20px 0 20px;
}
footer ul li a:link {
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}
footer ul li a:visited {
    color: #666;
}
footer ul li a:hover {
    color: #999;
}
address {
    font-style: normal;
    margin-bottom: 50px;
}
address img{
    display: block;
    margin: 0 auto 15px;
}
#page-top {
    position: fixed;
    bottom: 30px;
    right: 4%;
}
#page-top a {
    background-color: #42bfec;
    color: #FFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    text-decoration: none;
    position: relative;
}
#page-top a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    top: 40%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#page-top a:hover {
    background-color: #76d8fb;
}
.copy{
    color: #999;
}
ul.att{
    list-style: none;
}
ul.att li{
    text-indent: -1em;
    margin-left: 1em;
    margin-bottom: 5px;
    font-size: 1.5rem;
}




/* 画像用マスクアニメーション
------------------------------------------------- */
.overlay, .animate-elm.-max-width:before, .animate-elm.-transform:before {
    background-color: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.overlay-max-width, .animate-elm.-max-width:before {
    max-width: 100%;
}
.overlay-transform, .animate-elm.-transform:before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.animate-elm {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.animate-elm.-max-width:before, .animate-elm.-transform:before {
    content: "";
}
.animate-elm.show.-max-width:before, .animate-elm.show .overlay-max-width {
    max-width: 0;
}
.animate-elm.show.-transform:before, .animate-elm.show .overlay-transform {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
}

span.marker{
    background:linear-gradient(transparent 60%, #d6ff87 60%);
 
}



/* 1260px以下
-------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1260px) {

#header_in {
    margin: auto;
    display: flex;
    flex-direction: column;
}
h1.logo {
    margin: 20px 0;
}
.fat-nav{
    width: 100%;
}
ul.menu {
    justify-content: space-between;
}
ul.menu li{
    width: 100%;
}
ul.menu li a {
    padding: 20px 0;
}
body {
    padding-top: 161px;
}








}



/* タブレット
-------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 980px) {
    .br {
        display: none;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    
    .large{
  font-size: 1.5rem;
}

    body {
        font-size: 1.4rem;
        padding-top: 60px;
    }
    header{
        height: 60px;
    }
    #header_in {
    margin-left: 4%;
    display: block;
}
 
    
    /* ヘッダー
------------------------------------------------- */
    .logo img {
        width: 100px;
    }
    .btn_more a {
        margin-top: 20px;
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
    /* footer
------------------------------------------------- */
    footer {
        font-size: 1.3rem;
        flex-direction: column;
        padding: 20px 4%;
        text-align: center;
    }
    footer ul {
        list-style: none;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    footer ul li a:link {
        margin-right: 0;
        padding: 0 20px;
    }
    #page-top {
    bottom: 50px;
}
#page-top a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}
#page-top a:before {
    width: 6px;
    height: 6px;
}

.contact{
    margin: 50px auto 20px;
    max-width: 300px;    
}
.contact a{
    display: block;
    padding: 20px;
    border-radius: 50px;
    background-color: #42bfec;
    color: #FFF;
    text-decoration: none;
    font-size: 1.8rem;
    transition: 0.3s;
}
.contact a:hover{
    background-color: #6dcdef;
}
ul.att li{
    font-size: 1.4rem;
}


}





/* スマホ
-------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {

.pc_none{
    display: block;
}
.text_center{
    text-align: left;
}
    footer p{
    line-height: 1.8;
    }
    .contact {
    margin: 30px auto 20px;
}
    .contact a {
    padding: 15px;
    font-size: 1.6rem;
}
dl.tel {
    font-size: 1.6rem;
}
dl.tel dt{
    font-size: 1.4rem;
}
dl.tel dd {
    margin-right: 30px;
}

address img {
    width: 150px;
}

}