.head_foot{
    display: flex;
    flex-direction: column;
}
header {
    z-index: 900;
    width: 100%;
    padding: 5px 40px;
    background: #eee;
    box-sizing: border-box;
}
.head_logo{
    width: auto;
    height: 6rem;
}
header .inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.logo {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 25px;
    font-weight: bold;
}
  header .navi {
    margin: 0 0 0 auto;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    list-style: none;
}
header .navi li {
    margin: 5px 0 5px 40px;
}
header .navi li:first-child {
    margin-left: 0;
}
header .navi li a {
    display: block;
    box-sizing: border-box;
    text-decoration: none;
    color: #333;
}
header .navi li a:hover {
    text-decoration: underline;
}
.bread_map{
    text-align: left;
    font-size: 15px;
    padding: 10px 20px;
    border-top: 1px gray dotted;
    background: #e6e6e6;
    /* パンくずリスト */
}.bread_map a{
	text-decoration: none;
}
.top_btn{
    opacity: 0;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    /* background-color: rgba(255,255,255,0.9); */
}
.go_top{
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 3px black solid;
    background-color: rgba(255, 255, 255,0.5);
    border-radius: 50%;
}
.yazirushi {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 50%;
    height: 50%;
    border: 0.3rem solid black;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(-50%,-20%) rotate(-45deg);
}
.fead_in{
    animation: anime_fead_in 0.8s ease-in forwards;
}
@keyframes anime_fead_in {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
footer{
    /*footerの装飾*/
    width: 100%;
    background-image: url(home_pic/kosen.webp);
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    color: #000000;
    text-align: center;
    padding: 30px 0;
    z-index: 1;
    height: auto;
    font-size: 20px;
    display: flex;
    flex-direction: column;
}
.foot_pic_all{
    width: 20%;
    margin: 0px 60px;
}
.foot_pic{
    width: 100%;
    height: 80%;
}
.flex_foot_box{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.foot_box{
    width: 65%;
    border-color: blue;
    display: flex;
    justify-content: space-between;
    margin: 20px 90px;
}
.foot_list ul{
      list-style: none;
      padding: 0;
}
.one{
    margin-left: 1rem;
}
.two{
    margin-left: 2rem;
}
.buttom{
    width: 100%;
}
.foot_box a{
    text-decoration: underline;
}
.buttom a{
    text-decoration: underline;
}
.go_next img{
    width: 30%;
    transition: .5s;
}
.go_next:hover img{
    width: 35%;
}
.go_next{
    text-align: center;
}
.go_next div{
    margin: 0 auto;
    width: 35%;
    transition: .5s;
    color: rgba(0, 0, 0,0);
}
.go_next:hover div{
    color: rgba(0, 0, 0,1);
}
.link_page{
    width: 250px;
    height: auto;
    border: 1px #333 solid;
    display: flex;
    justify-content: center;
    padding: 1rem;
    transition: 0.5s;
    font-size: 24px;
    text-decoration: none;
    margin: 30px auto;;
}.link_page a{
  color: black;
  text-decoration: none;
}
.link_page:hover{
    background-color: #333;
    border: 1px #333 solid;
}.link_page:hover a{
  color: white;
}.phone{
    display: none;
}
@media screen and (max-width: 1300px){
    header {
        padding: 5px 40px;
    }.logo {
        font-size: 18px;
    }header .navi {
        font-size: 17px;
    }footer{
        font-size: 18px;
    }.foot_pic_all{
        margin: 0px 30px;
    }.foot_box{
      margin: 20px 30px;
    }
}
@media screen and (max-width: 600px){
    .phone{
        display: block;
    }
    .link_page{
        width: 130px;
        font-size: 20px;
        margin: 10px auto;
    }
    footer{
        display: none;
    }
    body {
        margin: 0;
        padding: 0;
    }
      
      /*ヘッダー*/
      header {
          position: relative;
          padding: 15px 0 10px 0px;
          background-color: #f4f4f4;
      }
      .logo {
          width: 70%;
          margin: 0 5px;
          font-size: 20px;
      }
      img {
          max-width: 100%;
          height: auto;
      }
      
      
      /*ハンバーガーアイコン*/
      .btn-burger {
          cursor: pointer;
          display: block;
          width: 56px;
          height: 60px;
          position: absolute;
          top: 5px;
          right: 10px;
      }
      
      /*ハンバーガーアイコンを作る三本線*/
      .icon, .icon:before, .icon:after {
          position: absolute;
          top: 0;
          right: 0;
          left: 0;
          bottom: 0;
          height: 2px; /*線の太さ*/
          width: 35px; /*線の長さ*/
          background-color: #444;
          border-radius: 2px;
          display: block;
          content: '';
          cursor: pointer;
          margin: auto;
      }
      
      /*三本線の間隔*/
      .icon:before {
        top: 16px;
      }
      .icon:after {
        top: -20px;
      }
      
      /*チェックボックス非表示*/
      .nav-toggle {
          display: none;
      }
      
      /*アイコンをクリックしたら*/
      .nav-toggle:checked ~ .btn-burger .icon {
          background: transparent;
      }
      .nav-toggle:checked ~ .btn-burger .icon:before {
          transform: rotate(-45deg);
          top: 0;
      }
      .nav-toggle:checked ~ .btn-burger .icon:after {
          transform: rotate(45deg);
          top: 0;
      }
      
      .icon,
      .icon:before,
      .icon:after {
          transition: all .8s;
      }
      
      
      /*中身*/
      .nav {
          background-color: #8438ff;
          
      }
      .nav-list a {
          display: block;
          text-decoration: none;
          color: #fff;
      }
      
      .nav-list {
          list-style: none;
          display: none;
          margin: 0;
          padding-left: 20px;
      }
      
      .nav-list li {
          margin: 0;
          padding: 10px;
      }
      
      .nav-toggle:checked ~ .nav .nav-list {
          display: block;
      }
      
      /*メインイメージ*/
      .top {
          height: 200px;
          margin-bottom: 50px;
          background-color: #f0f8ff;
      }
    .head_pasocon{
        display: none;
    }
    .bread_map{
      display: none;
    }
}