html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1.5;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body{
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    font-size: 14px;
}
a{
    color: #555;
    text-decoration: none;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
img{
    max-width: 100%;
}
ul{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.flex{
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items:center;
    justify-content: center;
}
.flex-between2{
  justify-content: space-between !important;
}
.flex-between{
  justify-content: space-between !important;
  align-items: center !important;
}
.at-top{
  align-items: flex-start !important;
}
.container{
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
}
/* ヘッダーコンテンツ */
.logo-area{
  width: 360px;
  display: flex;
}
.logo-area p{
  margin-right: 16px;
}
.link-img-area{
  width: calc(100% - 360px);
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items:center;
    justify-content: flex-end;
}
.top-head{
  padding: 16px 0;
}
.head-menu li{
  box-sizing: border-box;
  /* これ入れたらwidthにカウントされない */
  width: calc(100% / 8);
  border-right: 1px solid #E6E6E6;
  border-top: 1px solid #E6E6E6;
  border-bottom: 2px solid #FF4A4A;
  text-align: center;
  padding: 12px 0;
}
.head-menu li:first-child{
  border-left: 1px solid #E6E6E6;
}
.head-menu li.active{
  border: 2px solid #FF4A4A;
  border-bottom: 1px solid #E6E6E6;
}
/* ヘッダーコンテンツ */
.main-box{
  width: 665px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
      border: 1px solid #f5f5f5;
}
.main-box > div{
  padding: 5%;
}
#main-content{
  margin: 64px auto;
}
.ttl-h1{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.discription{
  border-top: 1px solid #787878;
  border-bottom: 1px solid #787878;
  padding: 8px;
  color: #777777;
  margin-bottom: 24px;
}
.text-area p{
  font-weight: 500;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 24px;
}
.text-area img{
  margin-bottom: 16px;
}
.text-area p strong{
  color: #FF4A4A;
  font-weight: 600;
  text-decoration: underline;
}
.btn-contents{
  text-align: center;
}
.btn-contents a{
  position: relative;
  max-width: 537px;
  background: #4CC764;
  border-radius: 120px;
  padding: 16px 48px;
  display: inline-block;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 8px 0 rgb(48 165 71);
}
.btn-contents a:hover{
  transform: translateY(8px);
  opacity: 1;
  box-shadow: 0px 0px 0px;
  transition: .5s;
}
.btn-text{
  display: block;
  margin-left: 80px;
  position: relative;
}
.btn-text span{
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 18px;
  line-height: 1.2;
}
.btn-date{
  font-size: 32px;
  color: #FAFF86;
  font-weight: 700;
}
.btn-contents a:before{
  content: '';
  background: url(../images/btn-line.svg);
  width: 76px;
  height: 72.41px;
  position: absolute;
  left: 32px;
  margin: auto;
  top: 0;
  bottom: 0;
}
.side-bar{
  width: 265px;
}
.side-bar img{
  margin-bottom: 12px;
}
.pr{
    font-size: 14px;
    color: #555;
}

/*フッターコンテンツ*/
#main-footer{
  background: #EDEDED;
  text-align: center;
  padding: 48px 0;
  color: #555;
}
#main-footer h2{
  margin-bottom: 24px;
}
/*フッターコンテンツ*/
@media screen and ( max-width: 812px ){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}
/*スマホ用の電話ボタンの位置調整*/
@media screen and ( max-width: 599px ){
  .logo-area{
    width: 150px;
    display: block;
    font-size: 12px;
  }
  .link-img-area{
    width: calc(100% - 150px);
  }
  .top-head{
    padding: 16px 2%;
  }
  .head-menu li{
    font-size: 10px;
  }
  #main-content {
      margin: 16px auto;
  }
  .btn-text {
      display: block;
      margin-left: 54px;
      position: relative;
  }
  .btn-text span{
    font-size: 14px;
  }
  .btn-contents a:before {
      content: '';
      background: url(../images/btn-line.svg);
      width: 54px;
      height: 57.41px;
      position: absolute;
      left: 16px;
      margin: auto;
      top: 0;
      bottom: 0;
      background-size: 100%;
      background-repeat: no-repeat;
  }
  .btn-date {
      font-size: 22px;
      color: #FAFF86;
      font-weight: 700;
  }
  .btn-contents a{
    padding: 16px 28px;
  }
  .side-bar {
      width: 240px;
      margin: 48px auto;
  }
  #main-footer p{
    padding: 0 5%;
    line-height: 2;
  }
}

