@charset "UTF-8";
*{
  box-sizing: border-box;
}
body{
  --header-height: 97px;
  --theme-color: #FFF793;
  width: 100%;
  color: #333;
  background: #fff;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
}
a{
  text-decoration: none;
}
img,svg{
  max-width: 100%;
  height: auto;
}
address{
  font-style: normal;
}
.jcc{
  display: flex;
  justify-content: center;
  width: 100%;
}
.jcr{
  display: flex;
  justify-content: right;
  width: 100%;
}

/*header*/
header{
  position: fixed;
  z-index: 100;

  display: flex;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 1.5%;

  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
header h1 img{
  display: block;
  width: min(248px,50vw);
}
main{
  padding-top: var(--header-height);
  padding-bottom: 96px;
}
footer{
  padding: 48px 1.5% 16px;

  line-height: 1.6;
  background: #DBEEFF;

  br.forsp{
    display: none;
  }
  #footer-logo{
    display: block;
    width: min(248px,50vw);
    margin-bottom: 16px;
  }
  address{
    margin-bottom: 24px;
  }
  .copyright{
    font-size: 14px;
  }
}

/*list-normal*/
.list-normal{
  width: min(920px,100%);
  margin-inline: auto;

  border-top: dotted 1px #8E8E8E;

  .item{
    /*大枠*/
    padding: 24px 50px;
    border-bottom: dotted 1px #8E8E8E;

    dl{
      /*定義*/
      display: flex;
    }

    dl dt{
      /*タイトル*/
      width: 160px;
      margin-right: 40px;
      
      font-weight: 600;
    }
  }
}

@media (min-width : 1200px){

}
@media (max-width : 1200px){

}
@media (max-width : 599px){
  footer{
    br.forsp{
      display: block;
    }
  }
  .list-normal{
    width: min(920px,100%);
    margin-inline: auto;
  
    .item{
      /*大枠*/
      padding: 24px 16px;
  
      dl{
        display: flex;
        flex-direction: column;
      }
  
      dl dt{
        width: auto;
        margin-right: 0;
        margin-bottom: 16px;
      }
    }
  }
}