html{
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}


body{
    padding: 0px;
    margin: 0px;
    font-family:"Arial", "メイリオ";
}


a{
    text-decoration: none;
    border: 0px;
}
.head{
    width: 100%;
    border-bottom: 5px #d6ecea solid;
    height: 91px;
    position: fixed;
    z-index:10000;
    background: rgba(255, 255, 255, 0.8);
}
header{
    margin: auto;
    width: 1200px;
    height: 71px;
    padding-top: 19px;
    display: flex;
}
/* h1アニメーションの定義 */
@keyframes h1pyonpyon {
  0%, 50%, 100% {
    transform: translateY(0);
  }
  30%, 80% {
    transform: translateY(-10px); /* 上に10px跳ねる */
  }
}

h1 {
    width: 450px;
    height: 52px;
    margin: 0px;
    padding: 0px;
  display: inline-block;
  transition: all 0.3s;
}
h1:hover{
    animation: h1pyonpyon 0.5s ease;
}
h1 a {
    border: 0;
}

.head_center{
    width: 590px;
    height: 52px;
    position: relative;
}
.head_center_top{
    position: absolute;
    top: 0px;
    right: 0px;
    transition : 1s;
}
.head_center_top a{
    color: #072cd3;
    display: block;
    text-decoration: none;
}
.head_center_top:hover {
    opacity: 0.5;
    transition : 1s;
}
nav{
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.nav-list {
    display: flex;
    padding: 0px;
    margin: 0px;
}
.nav-list-item {
    position:relative;
    padding-left:20px;
    background-image: url(../img/menu_icon.gif);
    background-repeat: no-repeat;
    background-position-y:3px ;
  display: inline-block;
  margin-left: 30px;
  transition : 1s;
}
.nav-list-item a{
    color: #10af45;
    display: block;
}
.nav-list-item-a:hover {
    color: #3dd2ff;
    transition : 1s;
}
.nav-list-item:hover {
    background-image: url(../img/menu_icon2.gif);
    transition : 1s;
}

.head_howto{
    width: 170px;
    height: 52px;
    background-color: #4ab360;
    border-radius:10px;
    color: #ffffff;
    margin-left: 20px;
    font-size: 14px;
    position: relative;
}
.head_howto a {
    text-decoration: none;
    display: block;
    color: #ffffff;
}
.head_howto p{
    margin: 0px;
    padding: 0px;
}
.head_ichi{
    text-align: center;
    width: 170px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.head_mitumiri{
    width: 150px;
    height: 52px;
    background-color: #f18d2b;
    border-radius:10px;
    color: #ffffff;
    margin-left: 10px;
    font-size: 14px;
    position: relative;
    transition : 1s;
}
.head_mitumiri a {
    display: block;
    color: #ffffff;
    padding: 10px 0;
}
.head_mitumiri:hover{
    background-color: #fffc31;
    border-radius:10px;
    transition : 1s;
}
.head_mitumiri a:hover{
    color: #ff5410;
    transition : 1s;
}
.head_mitumiri p{
    margin: 0px;
    padding: 0px;
}
.head_ichi{
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.top_img {
    width: 100%;
    height: 600px;
    background-color: #d6ecea;
    position: relative;
    top:120px;
}

.top_img_box{
    position: relative;
    width: 1200px;
    height: 600px;
    margin: auto;
    background:url(../img/topimg.jpg) left top no-repeat;
}

.areaMap{
    position: absolute; 
    z-index:800;
}
.ezorisu_genki{
    position: absolute;
    z-index: 801;
    right: 0px;
    bottom: 0px;
    animation: ezorisu_genki 4s forwards;

}
@keyframes ezorisu_genki {
  0% {
    transform: translateX(0) translateY(0); /* 右端、バウンドなし */
    opacity:0;
  }
  25% {
    transform: translateX(-80px) translateY(-30px); /* 左へ移動しつつ、跳ねる */
    opacity:1;
  }
  45%, 55% {
    transform: translateX(-160px) translateY(0); /* バウンドして地面に着く */
  }
  75% {
    transform: translateX(-240px) translateY(-30px); /* 左へ移動しつつ、跳ねる */
  }
  100% {
    transform: translateX(-315px) translateY(0); /* 左端に移動して停止 */
  }
}
.ezomomo{
    position: absolute;
    z-index: 801;
    right: 0px;
    top: 0px;
    animation: ezomomo 2s forwards;
    animation-delay: 1s; /*--1秒後に開始--*/
    opacity:0;

}
@keyframes ezomomo {
  0% {
    transform: translateX(0) translateY(0); /* 右端、バウンドなし */
    opacity:0;
  }

  100% {
    transform: translateX(-195px) translateY(220px); /* 左端に移動して停止 */
    opacity:100;
  }
}

.welcome{
    position: absolute;
    z-index: 801;
    right: 270px;
    top: 240px;
    animation: welcome 2s forwards;
    animation-delay: 3s; /*--3秒後に開始--*/
    opacity:0;

}
@keyframes welcome {
  0% {
    opacity:0;
  }

  100% {
    opacity:100;
  }
}


.ezorisu_nekketsu{
    position: absolute;
    z-index: 801;
    left: 30px;
    bottom: 0px;
    animation: ezorisu_nekketsu 4s infinite;

}
@keyframes ezorisu_nekketsu {
  0%, 20% {
    transform: translateY(0); /* 右端、バウンドなし */

  }
  50% {
    transform:translateY(-50px); /* 左へ移動しつつ、跳ねる */

  }
  100% {
    transform:translateY(0px); /* 左へ移動しつつ、跳ねる */

  }

}

h2 {
    position: absolute; 
    z-index:900;
    top:42px;
    left: 348px;
    margin: 0px;
    padding: 0px;
    font-size: 32px;
}
h3 {
    position: absolute; 
    z-index:901;
    top:97px;
    left: 400px;
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    color: #ffffff;
}

.gaiyou{
    z-index:1000;
    padding-top: 140px;
    width: 1200px;
    margin: 0 auto;
}
h4{
    width: 1200px;
    margin: 0;
    padding: 0;
    font-size: 36px;
    background-repeat: no-repeat;
    color: #df4710;
    text-align: center;
    animation: fadeIn 3s ease 0s 1 normal backwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
h5{
    width: 1200px;
    margin: 0;
    padding: 10px 0;
    font-size: 21px;
    font-weight: normal;
    text-align: center;
    border-top: solid 1px #df4710;
}

.lineup1{
    width: 100%;
    padding: 10px 0px 10px 0px;
    margin-top: 20px;
    background-color: rgb(214, 247, 215);
}
.lineup1_txt{
    width: 1200px;
    margin: 0 auto 20px auto;
    border-bottom: #006329 solid 1px;
    color: #006329;
    font-size: 45px;
    font-weight: bold;
}

.lineup2{
    width: 100%;
    padding: 10px 0px 10px 0px;
    margin-top: 20px;
    background-color: rgb(254, 255, 209);
}
.lineup2_txt{
    width: 1200px;
    margin: 0 auto 20px auto;
    border-bottom: #ca7a02 solid 1px;
    color: #ca7a02;
    font-size: 45px;
    font-weight: bold;
}

.lineup3{
    width: 100%;
    padding: 10px 0px 10px 0px;
    margin-top: 20px;
    background-color: rgb(255, 209, 211);
}
.lineup3_txt{
    width: 1200px;
    margin: 0 auto 20px auto;
    border-bottom: #e63434 solid 1px;
    color: #e63434;
    font-size: 45px;
    font-weight: bold;
}

section{
    width: 1160px;
    height: 340px;
    padding: 20px;
    border-radius: 20px;
    background-color: #ffffff;
    display: flex;
    margin: 0 auto 20px auto;
}
.section_l{
    width: 500px;
    height: 340px;
}
.section_r{
    width: 660px;
    height: 340px;
    margin-left: 20px;
    font-size: 16px;
}
.section_r ul{
    margin: 10px 0 0 30px;
    padding: 0;
}
.section_r_youtorei {
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}

.section_r_title{
    color: #ffa410;
    border-bottom: #ffa410 solid 1px;
    font-size: 24px;
    font-weight: bold;
    width: 640px;
    margin-bottom: 5px;
}
.section_r_txt p{
    font-size: 16px;
    color: #303030;
    margin: 0px;
    padding: 0px;
}


.otoiawase{
    width: 100%;
    padding: 20px 0px 20px 0px;
    margin-top: 20px;
    background-color: rgb(227, 217, 202);
}
.otoiawase_title{
    width: 100%;
    height: 62px;
    background-color:#ffffff ;
    margin: 0;
}
.otoiawase_title_in{
    margin: auto;
    width: 1200px;
    height: 60px;
    background-image: url(../img/mailform_icon.gif);
    background-position-y: 12px;
    background-repeat: no-repeat;
    color: #de0000;
    font-weight: bold;
    font-size:30px ;
    position: relative;
}
.otoiawase_title_in p{
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 50%;
    left: 95px;
    transform: translate(0, -50%);
}

.otoiawase_txt{
    width: 1200px;
    margin: auto;
}
.otoiawase_txt p{
    margin: 15px 0;
    padding: 0px;
    font-size: 22px;
}

.otoiawase_telfax{
    display: flex;
    width: 1168px;
    height: 180px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 0 auto;
    padding: 16px;

}
.otoiawase_telfax p{
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 20px;
}
.otoiawase_tel{
    width: 583px;
    border-right: #303030 solid 1px;
}
.otoiawase_fax{
    width: 568px;
    padding-left: 16px;
}
.otoiawase_form{
    width: 1200px;
    height: 1200px;
    margin: 20px auto 0 auto;
}
.otoiawase iframe{
    width: 1200px;
    height: 1200px;
    border: 0;
}





footer{
    background-color: #2431b3;
    width: 100%;
    height: 450px;
    margin-top: 20px;
}
.foot{
    width:1200px;
    margin: 0 auto 5px auto;
    height: 390px;
    display: flex;
    justify-content: space-between;
}
.foot_l{
    color: #ffffff;
    font-size: 16px;
    width: 298px;
    margin-right: 42px;
    margin-top: 30px;
}
.foot_l h6{
    color: #ffffff;
    font-size: 20px;
    font-weight:  bold;
    margin: 10px 0 0 0;
    padding: 0;
}
.foot_l p{
    margin: 0;
    padding: 0;
}

.foot_r{
    width: 820px;
    height: 310px;
    background-color: #ffffff;
    border-radius: 20px;
    margin-top: 30px;
    padding: 20px;
}
.foot_r p{
    margin: 0;
    padding: 0;
}

.foot_r_innar{
    width: 820px;
    display: flex;
}
.foot_r_retsu{
    width: 262px;
    margin-right: 17px;

}

.foot_r ul {
    margin: 0;
    padding: 0;
}

.foot_r li {
    list-style: none;
    margin: 0 0 5px 0;
    font-size: 16px;
}
.foot_r li a {
    text-decoration: none;
    color: #303030;
    transition : 1s;
}
.foot_r li a:hover {
    text-decoration: none;
    color: #437ce4;
    transition : 1s;
}

.list_title {
    padding: 3px 0;
    margin-bottom: 10px;
    width: 262px;
    color: #ff8010;
    border-bottom:#ff8010 solid 1px;
    font-size: 20px;
    font-weight: bold;
}
.list_title a{
    color: #ff8010;
    text-decoration: none;
    transition : 1s;
}
.list_title a:hover{
    color: #74ce0e;
    text-decoration: none;
    transition : 1s;
}

.sitemap{
    color: #2431b3;
    font-weight: bold;
    font-size: 24px;
    width: 820px;
    text-align: center;
    margin-bottom: 5px;
    border-bottom:#2431b3 solid 1px;
}

.foot_omitumori{
    font-weight: bold;
    margin: 40px 0;
    font-size: 20px;
    padding-left: 55px;
    background-image: url(../img/hoot_mail.png);
    background-repeat: no-repeat;
    background-position-y: 3px;
    display: block;
    transition : 1s;
}
.foot_omitumori a{
    color: #028a24;
    display: block;
}
.foot_omitumori:hover{
    opacity: 0.5;
    transition : 1s;
    
}

.top_modoru_bt{
    position: fixed;
    bottom: 30px;
    right: 0px;
    width: 184px;
    height: 79px;
    display: block;
    background-image: url(../img/top_modoru.png);
    transition : 1s;
    z-index: 900;
}
.top_modoru_bt:hover{
    background-image: url(../img/top_modoru2.png);
    transition : 1s;
}

/*ドロップダウンメニュー*/
.dropdoun_menu{
    width: 200px;
    display: none;
    position:absolute;
    padding: 0px;
    margin: 0px;
    top:50px;
    left: -50px;
}
.dropdoun_menu ul{
    padding: 0px;
}
.dropdoun_menu li{
    background-color: #002397da;
    border-radius:10px;
    list-style: none;
    width: 200px;
    height: 50px;
    margin-bottom: 3px;
    transition : 1s;
}
.dropdoun_menu li:hover{
    background-color: #0b91ff;
    transition : 1s;
}

.dropdoun_menu a{
    color: #ffffff;
    display: block;
    width: 200px;
    height: 50px;
    border-radius:10px;
    text-align: center;
    line-height: 50px;
}
.dropdoun_menu a:hover{
    color: #fcff4f;
    transition : 1s;
}


