@charset "utf-8";

html {
  font-size: 62.5%;
}
body {
  color: #000;
  font-family: 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 2;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
a {
  color: #fff;
}

.hover:hover {
  opacity: .8!important;
  transition: .3s;  
}
.font-bold {
  font-weight: 700;
}
.font-red {
  color: #c00;
  font-weight: 700;
}
.font-white {
  color: #fff;
}
.small {
  font-size: 80%;
}
ul li {
  margin-left: 2.5rem;
}

@media (max-width: 577px) {
  body {
    font-size: 1.4em;
  }
  input.form-control,
  textarea.form-control {
    font-size: 16px!important;
  }
}

/* 見出し */

h2 {
  margin-bottom: 3rem;
  color: #0c3764;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.headline-small {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.headline-barleft {
  margin-bottom: 3rem;
  padding-left: 15px;
  border-left: 8px solid #cc1414;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 768px) {
  h2 {
    font-size: 3rem;
  }
  .headline-small {
    font-size: 2.6rem;
  }
}

@media (max-width: 577px) {
  h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .headline-small {
    font-size: 1.7rem;
  }
  .headline-barleft {
    padding-left: 10px;
    border-left: 5px solid #cc1414;
    font-size: 1.5rem;
  }
}

/* ボタン */

.btn-app {
  background-color: #cc1414;
  color: #fff;
}
.btn-sub {
  background-color: #0c3764;
  color: #fff;
}

.btn-width {
  max-width: 450px;
  position: relative;
  display: block;
  padding: 2.6rem 1rem; 
  border-radius: 100px;
  margin: auto;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.arrow-d::after {
  content: '';
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  display: inline-block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 45%;
  right: 23px;
  transform: translateY(-45%) rotate(135deg);
}
.arrow-r::after {
  content: '';
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  display: inline-block;
  width: 6px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-45%) rotate(45deg);
}

@media (max-width: 577px) {
  .btn-width {
    max-width: 92%;
    padding: 2rem .5rem; 
    font-size: 1.6rem;
  }
}

/* トップ */

#title {
  padding: 6rem 0;
  background-color: #0c3764;
  background-image: url(../images/back.jpg) ;
  background-position: center bottom;
  background-size: cover;
  text-align: center;
}

.title-logo {
  margin-bottom: 4rem;
}
.title-date {
  margin-bottom: 2rem;
}
.title-place {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4rem;
  line-height: 1.5;
}

#title br {
  display: none;
}

.announce-box {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 2.5rem 3.5rem 3.5rem;
  background-color: #fff;
  color: #000;
  border-radius: 15px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.4);
}
.announce-ttl {
  color: #143761;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.btn-announce {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 2.4rem 1rem; 
  border-radius: 100px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 991px) {
  .announce-ttl {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  #title br {
    display: inline-block;
  }
}

@media (max-width: 577px) {
  #title {
    padding: 4rem 0 4rem;
  }
  .title-logo {
    margin-bottom: 3rem;
  }
  .title-date {
    margin-bottom: 2rem;
  }
  .title-place {
    margin-bottom: 3rem;
    font-size: 1.5rem;
  }
  .announce-box {
    padding: 2rem;
    border-radius: 10px;
  }
  .announce-ttl {
    font-size: 1.6rem;
  }
  .btn-announce {
    padding: 1.8rem .5rem;
    font-size: 1.6rem;
  }
  .title-logo {
    width: 90%;
  }
  .title-date {
    width: 60%;
  }
}

/* リード

#lead {
  display: flex;
  align-items: stretch;
}

.lead-box {
  width: 50%;
  padding: 1.5rem 5rem 5rem;
  background-color: #cc1414;
  color: #fff;
}

#lead h2 {
  color: #fff;
  font-size: 6rem;
  line-height: 1.3;
  text-align: left;
}
#lead h2 span {
  color: #0c3764;
  font-size: 2.4rem;
}

.lead-photo {
  width: 50%;
  background-color: #0c3764;
  background-image: url(../images/photo_01.jpg);
  background-position: top center;
  background-size: cover;
}
#lead img.photo {
  display: none;
}

@media (max-width: 991px) {
  .lead-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #lead {
    display: block;
  }
  #lead h2 {
    font-size: 4.8rem;
    text-align: center;
  }
  .lead-photo {
    display: none;
  }
  #lead img.photo {
    display: block;
    margin-top: 2rem;
  }
}

@media (max-width: 577px) {
  .lead-box {
    padding: 1.5rem 1.5rem 3rem;
  }
  #lead h2 span {
    font-size: 1.6rem;
  }
  #lead h2 {
    font-size: 3rem;
  }
}
 */

/* イントロ */

#intro {
  padding: 4rem 0 1rem;
  background-color: #f0e9df;
}

#intro h2 {
  font-size: 6rem;
  line-height: 1.4;
}
#intro h2 span {
  font-size: 2.4rem;
  color: #cc1414;
}

#intro p {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  #intro p {
    text-align: left;
  }
  #intro p br {
    display: none;
  }
}

@media (max-width: 577px) {
  #intro {
    padding: 3rem 0 1rem;
  }
  #intro h2 {
    font-size: 3.2rem;
  }
  #intro h2 span {
    font-size: 1.7rem;
  }
  #intro p {
    font-size: 1.5rem;
  }
}

/* アワード */

#award {
  padding: 4rem 0 6rem;
  background-color: #f0e9df;
}

@media (max-width: 577px) {
  #award {
    padding: 2rem 0 3rem;
  }
  .award-logo {
    width: 80px;
  }
}

/* 参加登録 */

#attendee {
  padding: 5rem 0 6.5rem;
  background-color: #333;
  background-image: url(../images/back.jpg);
  background-position: center;
  background-size: cover;
}
.btn-mail,
#contact-mzd .btn.btn-primary {
  display: block;
  width: 450px;
  margin: auto;
  padding: 2rem 1rem; 
  border: none;
  background-color: #cc1414;
  color: #fff;
  border-radius: 100px;
  font-size: 2.2rem;
  font-weight: 600;
}
#contact-mzd .btn.btn-primary {
  background-color: #0c3764;
}

@media (max-width: 577px) {
  #attendee {
    padding: 3rem 0 4rem;
  }
  .btn-mail,
  #contact-mzd .btn.btn-primary {
    width: 100%;
    padding: 1.5rem .5rem;
    font-size: 1.6rem;
  }
}

/* スポンサー */

#sponsor {
  padding: 5rem 0 6rem;
  background-color: #f0e9df;
}
#sponsor p {
  text-align: center;
}

@media (max-width: 577px) {
  #sponsor {
    padding: 3.5rem 0 4rem;
  }
  #sponsor p {
    font-size: 1.4rem;
    text-align: left;
  }
  #sponsor p br {
    display: none;
  } 
}

/* 開催概要 */

#overview {
  padding: 6rem 0;
  background-color: #0c3764;
  color: #fff;
  font-size: 1.4rem;
}

#overview table {
  width: 800px;
  margin: auto;
  line-height: 1.7;
  font-size: 1.8rem;
  margin-bottom: 6rem;
}
#overview tr {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#overview th,
#overview td {
  padding: 2rem 0;
}
#overview th {
  width: 120px;
}
#overview ul {
  font-size: 1.5rem;
}

#overview p {
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  #overview table {
    width: 100%;
  } 
  #overview th {
    width: 75px;
  }
}
@media (max-width: 577px) {
  #overview {
    padding: 4rem 0rem 3rem;
    font-size: 1.2rem;
  }
  #overview table {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
  #overview th,
  #overview td {
    padding: 1.5rem 0;
  }
  #overview ul {
    font-size: 1.2rem;
  }
}

/* MarkeZine Dayについて */

#about {
  padding: 6rem 0;
  background-image: url(../images/photo_02.jpg) ;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.needs-box {
  width: 780px;
  margin: auto;
  border: 2px solid #fff;
}
.needs-ttl {
  padding: 2rem 1rem 0 4rem;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.6;
  vertical-align: middle;
}
.needs-txt {
  padding: 2rem;
  font-size: 1.8rem;
}

.check {
  padding-left: 2.8rem;
  background-image: url(../images/check.png);
  background-position: bottom left;
  background-repeat: no-repeat;
}

.about-end {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 991px) {
  #about h2 {
    font-size: 3.2rem;
  }
  .about-end {
    font-size: 2.2rem;
  }
  .needs-box {
    width: 100%;
  } 
  .needs-ttl {
    padding: 1rem 1rem 0 3rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  #about h2 {
    font-size: 2.8rem;
  }
  .about-end {
    font-size: 2rem;
  }
  .needs-ttl,
  .needs-txt {
    display: block;
  }
  .needs-ttl {
    padding: 1.5rem 1rem 0 1rem;
    text-align: center;
  }
  .needs-ttl br {
    display: none;
  }
  .needs-txt {
    padding: 1rem 2rem 2rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 577px) {
  #about {
    padding: 4rem 0rem;
  }
  #about h2 {
    margin-bottom: 3.5rem;
    font-size: 1.8rem;
  }
  #about h2 br {
    display: none;
  }
  .needs-ttl {
    font-size: 1.4rem;
  }
  .needs-txt {
    font-size: 1.2rem;
  }
  .about-end {
    font-size: 1.4rem;
  }
  .about-end br {
    display: none;
  }
}

/* お問い合わせ */

#contact-mzd {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

@media (max-width: 577px) {
  #contact-mzd {
    padding: 3rem 0;
  }
}

/*--------------------
      共通フッター
--------------------*/

footer {
  padding: 3rem 0;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
}
footer a {
  color: #fff;
}
.sns {
  text-align: center;
}
.sns img {
  display: inline-block;
}
.sns img.x {
  width: 35px;

}
.sns img.facebook {
  width: 40px;
}

@media (max-width: 577px) {
  footer {
    font-size: 1rem;
  }
}
