@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP',
    sans-serif;
}

#wrap {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

ul {
  list-style-type: none;
}

ul li {
  list-style-type: none;
}

p.center {
  display: block;
  text-align: center;
}

span.small {
  display: inline-block;
  font-size: 28px;
  vertical-align: middle;
}

span.small:before {
  content: "" !important;
  display: none !important;
}

span.small:after {
  content: "" !important;
  display: none !important;
}

.mt1em {
  margin-top: 1em !important;
}


h1#access_title {
  display: block;
  font-size: 45px;
  font-weight: normal;
  margin-bottom: 70px;
  text-align: center;
  position: relative;
}

h1#access_title:after {
  content: url("/images/access_h1.svg");
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  /* Safari用 */
  transform: translateX(-50%);
}

h1 span {
  background-color: #f0454e;
  padding: 0 10px;
  color: #FFFFFF;
  margin: 0 20px;
}

h2 {
  display: block;
  font-size: 38px;
  font-weight: normal;
  color: #f0454e;
  text-align: center;
  position: relative;
  font-family: 'Roboto',
    sans-serif;
}

#news_h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

#news_h2:after {
  content: url("/images/border.svg");
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  /* Safari用 */
  transform: translateX(-50%);
  line-height: 1;
}

#news_h2 span.news_h2_img01 {
  display: inline-block;
  padding-right: 5px;
  vertical-align: middle;
  line-height: 1;
}

#news_h2 span.news_h2_img02 {
  content: url("/images/news_icon_right.svg");
  display: inline-block;
  padding-left: 5px;
  vertical-align: middle;
  line-height: 1;
}

#link_h2 {
  display: block;
  text-align: center;
}

#link_h2 span.link_h2_img01 {
  display: inline-block;
  padding-right: 10px;
  vertical-align: 10px;
  line-height: 1;
}

#link_h2 span.link_h2_img02 {
  display: inline-block;
  padding-left: 10px;
  vertical-align: 10px;
  line-height: 1;
}

h2.concept_title {
  position: relative;
  font-size: 24px;
  color: #000;
  padding: 5px;
  text-align: center;
  line-height: 1;
}

h2.concept_title:after {
  content: url("/images/concept_h2.svg");
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  /* Safari用 */
  transform: translateX(-50%);
}

p.h2_copy {
  display: block;
  margin-top: 30px;
  font-size: 18px;
  font-weight: normal;
  color: #000;
  line-height: 1.8;
  text-align: center;
}

h3 {
  /*[1]線の太さと地の色を指定*/
  position: relative;
  text-align: center;
}

h3:before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #008ac8;
  bottom: 10px;
  left: 0;
  width: 50%;
}

h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #f0454e;
  bottom: 10px;
  width: 50%;
  right: 0;
}

h3 span {
  background-color: #fff;
  padding: 5px 10px;
  font-size: 21px;
  position: relative;
  z-index: 9;
}


@media screen and (max-width: 640px) {

  .link_section {
    margin-top: -75px;
    padding-top: 75px;
  }

  h2 {
    font-size: 27px;
    align-items: center;
    justify-content: center;
  }

  #link_h2 {
    display: flex;
    align-items: center;
  }

  #link_h2 span.link_h2_img01 {
    padding-right: 10px;
    line-height: 1;
    vertical-align: middle;
    display: inherit;
  }

  #link_h2 span.link_h2_img02 {
    padding-left: 10px;
    line-height: 1;
    vertical-align: middle;
    display: inherit;
  }


}