@charset "UTF-8";
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
}

.sp375 {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp375 {
    display: block;
  }
}

.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s ease-out;
}

/* ------------------- */
/* header */
/* ------------------- */
header {
  display: flex;
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 0px 1px 9px rgba(0, 0, 0, 0.3);
  left: 0px;
  z-index: 999;
  top: 0px;
}
@media screen and (max-width: 480px) {
  header {
    height: 60px;
  }
}
header .logo_brand {
  width: auto;
  height: 70px;
}
@media screen and (max-width: 480px) {
  header .logo_brand {
    height: 60px;
  }
}
header .content {
  display: flex;
  box-sizing: border-box;
  width: 1000px;
  height: 45px;
  margin: 0 auto;
  line-height: 45px;
  font-size: 12px;
  color: #42210B;
}
header .content .logo {
  flex: 1;
}
header .content nav.pc {
  display: flex;
}
header .content nav.pc .menu a {
  display: inline-block;
  padding: 0px 10px;
  line-height: 70px;
  height: 70px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}
header .content nav.pc .menu a:hover {
  background-color: #eee;
}
@media screen and (max-width: 480px) {
  header .content nav.pc {
    display: none;
  }
}
header .content nav.sp .header_menu_button {
  width: 60px;
  height: 60px;
  background-image: url(../image/header/menu.png);
  background-size: 100%;
  background-position: 0px 2px;
  cursor: pointer;
}
header .content nav.sp .header_menu_button.active {
  background-image: url(../image/header/menu_close.png);
  background-position: 0px 2px;
}
header .content nav.sp .header_menu_bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 60px;
  left: 0px;
  display: none;
}
header .content nav.sp .header_menu_bg.active {
  display: block;
  background: rgba(0, 0, 0, 0.6);
}
header .content nav.sp .menu_area {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  top: 60px;
  left: 0px;
  background: #E94838;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  display: none;
  cursor: pointer;
}
header .content nav.sp .menu_area.active {
  display: block;
  opacity: 1;
}
header .content nav.sp .menu_area ul {
  margin: 0px;
  padding: 15px 15px 10px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}
header .content nav.sp .menu_area ul li {
  list-style-type: none;
}
header .content nav.sp .menu_area ul li a {
  display: block;
  position: relative;
  background-color: #fff;
  list-style: none;
  margin: 0px 0px 6px;
  padding: 0px;
  padding-left: 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
header .content nav.sp .menu_area ul li a:hover {
  color: #a82013;
  background-color: #f8c7c2;
  border-style: none;
}
header .content nav.sp .menu_area ul li a:after {
  display: block;
  position: absolute;
  color: #E94838;
  content: ">";
  top: 0px;
  right: 12px;
  font-size: 18px;
}

/* ------------------- */
/* keyvisual */
/* ------------------- */
#top {
  position: absolute;
  top: 0px;
}

#keyvisual-image {
  height: 700px;
  margin: 60px auto 0;
  text-align: center;
  background-image: url("../image/keyvisual/top_pc.jpg");
  background-position: center 0px;
  background-size: auto 100%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #keyvisual-image.sp {
    display: block;
    width: 100%;
    height: auto;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 480px) and (max-width: 375px) {
  #keyvisual-image.sp {
    height: 460px;
  }
}
@media screen and (max-width: 480px) and (max-width: 320px) {
  #keyvisual-image.sp {
    height: 400px;
  }
}

#keyvisual-message {
  position: relative;
  margin: 0px auto 0;
  text-align: center;
  background-image: url("../image/keyvisual/bg_gradation.png");
  background-size: auto 400px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 480px) {
  #keyvisual-message {
    background-size: auto 220px;
  }
}
#keyvisual-message:after {
  top: 240px;
  left: calc(50% - 30px);
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background-image: url("../image/keyvisual/scroll_mark.svg");
  background-size: 100%;
}
@media screen and (max-width: 480px) {
  #keyvisual-message:after {
    left: calc(50% - 20px);
    top: 120px;
    width: 40px;
    height: 40px;
  }
}
#keyvisual-message .messageHeader {
  display: block;
  padding: 50px 0px;
  height: 350px;
}
@media screen and (max-width: 480px) {
  #keyvisual-message .messageHeader {
    padding: 30px 0px;
    height: 140px;
  }
}
#keyvisual-message .messageHeader h1 {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  #keyvisual-message .messageHeader h1 {
    font-size: 24px;
  }
}
#keyvisual-message .message {
  margin-bottom: 140px;
}
@media screen and (max-width: 480px) {
  #keyvisual-message .message {
    margin-bottom: 50px;
  }
}
#keyvisual-message .message .statement.pc {
  width: 700px;
}
#keyvisual-message .message .statement.sp {
  width: calc(100% - 40px);
  margin: 0 auto;
}
#keyvisual-message .message p {
  margin: 60px 0px 80px;
  line-height: 3;
  font-weight: 400;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  #keyvisual-message .message p {
    margin: 40px 0px 30px;
    line-height: 1.8;
    text-align: justify;
    padding: 0px 20px;
    font-size: 16px;
  }
}
#keyvisual-message .message .illust {
  display: block;
  background-repeat: no-repeat;
}
#keyvisual-message .message .illust.pc.logo-statement {
  width: 800px;
  height: 400px;
  margin: 0 auto;
  background-image: url("../image/statement/logo-statement.png");
  background-size: auto 400px;
}
@media screen and (max-width: 480px) {
  #keyvisual-message .message .illust.pc.logo-statement {
    display: none;
  }
}
#keyvisual-message .message .illust.sp.logo-statement-upper {
  width: 100%;
  height: 100px;
  background-image: url("../image/statement/logo-sp-upper.png");
  background-size: auto 100%;
  background-position: right;
  margin-bottom: 20px;
  display: none;
}
@media screen and (max-width: 480px) {
  #keyvisual-message .message .illust.sp.logo-statement-upper {
    display: block;
  }
}
#keyvisual-message .message .illust.sp.logo-statement-lower {
  width: 100%;
  height: 120px;
  background-image: url("../image/statement/logo-sp-lower.png");
  background-size: auto 100%;
  background-position: center;
  margin: 0 auto;
  display: none;
}
@media screen and (max-width: 480px) {
  #keyvisual-message .message .illust.sp.logo-statement-lower {
    display: block;
  }
}

#award-bestselection .content,
#award-challange .content {
  max-width: 1000px;
  margin: 0 auto 200px;
}
@media screen and (max-width: 480px) {
  #award-bestselection .content,
#award-challange .content {
    margin: 0 auto 100px;
  }
}
#award-bestselection h3.doubleLine,
#award-challange h3.doubleLine {
  z-index: 0;
  display: block;
  position: relative;
  width: 100%;
  color: #42210B;
  margin: 0 auto 60px;
  padding: 40px 0px;
  line-height: 1.6;
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #award-bestselection h3.doubleLine,
#award-challange h3.doubleLine {
    width: 90%;
    font-size: 18px;
    padding: 20px 0px;
    margin: 10px auto 0px;
  }
}
#award-bestselection h3.doubleLine:after,
#award-challange h3.doubleLine:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: calc(100% - 6px);
  border-top: 3px solid #42210B;
  border-bottom: 3px solid #42210B;
}
#award-bestselection h3.doubleLine.pickup:before,
#award-challange h3.doubleLine.pickup:before {
  z-index: -1;
  top: -100px;
  left: -240px;
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  display: block;
  background-image: url(../image/awards/logo-bg.svg);
  background-size: 100%;
}
@media screen and (max-width: 480px) {
  #award-bestselection h3.doubleLine.pickup:before,
#award-challange h3.doubleLine.pickup:before {
    top: -130px;
    left: -60px;
    width: 180px;
    height: 180px;
  }
}
#award-bestselection h4,
#award-challange h4 {
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  #award-bestselection h4,
#award-challange h4 {
    font-size: 16px;
    margin: 30px 0px 30px;
  }
}
#award-bestselection .layout-image-side,
#award-challange .layout-image-side {
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  #award-bestselection .layout-image-side,
#award-challange .layout-image-side {
    padding-top: 0px;
    margin-bottom: 45px;
  }
}
#award-bestselection .layout-image-side img,
#award-challange .layout-image-side img {
  width: calc(50% - 15px);
}
@media screen and (max-width: 480px) {
  #award-bestselection .layout-image-side img,
#award-challange .layout-image-side img {
    width: 100%;
    margin-bottom: 0px;
  }
}
#award-bestselection .layout-image-side img:first-child,
#award-challange .layout-image-side img:first-child {
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  #award-bestselection .layout-image-side img:first-child,
#award-challange .layout-image-side img:first-child {
    margin-right: 0px;
  }
}
#award-bestselection img.layout-single-center,
#award-challange img.layout-single-center {
  display: block;
  width: 500px;
  margin: 60px auto;
}
#award-bestselection img.layout-single-center.thin,
#award-challange img.layout-single-center.thin {
  width: 350px;
}
@media screen and (max-width: 480px) {
  #award-bestselection img.layout-single-center.thin,
#award-challange img.layout-single-center.thin {
    width: 220px;
  }
}
@media screen and (max-width: 480px) {
  #award-bestselection img.layout-single-center,
#award-challange img.layout-single-center {
    width: 90%;
    margin: 30px auto;
  }
}
#award-bestselection a.button,
#award-challange a.button {
  background-color: #E94838;
  color: #fff;
}
#award-bestselection span.button,
#award-challange span.button {
  background-color: #aaa;
  color: #fff;
}
#award-bestselection .button,
#award-challange .button {
  display: block;
  padding: 5px 20px;
  border-radius: 30px;
  margin: 0 auto;
  width: 150px;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  #award-bestselection .button,
#award-challange .button {
    width: 100px;
    font-size: 13px;
    margin: 0 auto;
    height: 20px;
    line-height: 20px;
  }
}
#award-bestselection .button.big,
#award-challange .button.big {
  width: 440px;
  font-size: 30px;
  text-align: center;
  height: 70px;
  line-height: 70px;
  border-radius: 70px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  #award-bestselection .button.big,
#award-challange .button.big {
    width: 280px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    font-size: 20px;
  }
}
#award-bestselection p,
#award-challange p {
  font-size: 20px;
  line-height: 2.4;
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 480px) {
  #award-bestselection p,
#award-challange p {
    font-size: 16px;
    padding: 0px 20px;
    line-height: 2;
  }
}

#award-bestselection {
  margin-bottom: -90px;
}
@media screen and (max-width: 480px) {
  #award-bestselection {
    margin-bottom: 0px;
  }
}
#award-bestselection h2.separate {
  background-color: #A98F52;
  color: #fff;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  #award-bestselection h2.separate {
    height: 70px;
    line-height: 70px;
    font-size: 24px;
  }
}
#award-bestselection img.logo-bestselection {
  display: block;
  width: 340px;
  margin: 50px auto 60px;
  background-size: 100% auto;
}
@media screen and (max-width: 480px) {
  #award-bestselection img.logo-bestselection {
    width: 200px;
    height: 242px;
    margin: 30px auto;
  }
}

#award-challange {
  text-align: center;
}
#award-challange h2.separate {
  background-color: #FF9706;
  color: #fff;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  #award-challange h2.separate {
    height: 70px;
    line-height: 70px;
    font-size: 24px;
  }
}
#award-challange > .content {
  padding-top: 120px;
}
@media screen and (max-width: 480px) {
  #award-challange > .content {
    padding-top: 10px;
  }
}
#award-challange > .content .content-feature {
  margin-bottom: 240px;
}
@media screen and (max-width: 480px) {
  #award-challange > .content .content-feature {
    margin-bottom: 100px;
  }
}
#award-challange > .content .content-gallery {
  margin-bottom: 160px;
}
@media screen and (max-width: 480px) {
  #award-challange > .content .content-gallery {
    margin-bottom: 40px;
  }
}
#award-challange > .content .content-pickup {
  margin-bottom: 140px;
}
@media screen and (max-width: 480px) {
  #award-challange > .content .content-pickup {
    margin-bottom: -70px;
  }
}
#award-challange > .content .content-pickup .head {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  #award-challange > .content .content-pickup .head {
    margin-bottom: 60px;
  }
}
#award-challange > .content .content-pickup .head h2.pickup {
  color: #E94838;
  font-size: 60px;
  letter-spacing: 2px;
  margin: 0;
}
@media screen and (max-width: 480px) {
  #award-challange > .content .content-pickup .head h2.pickup {
    font-size: 30px;
    line-height: 60px;
  }
}
#award-challange > .content .content-pickup .head p {
  margin: 0;
  font-size: 32px;
  line-height: 100px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #award-challange > .content .content-pickup .head p {
    font-size: 13px;
    line-height: 24px;
  }
}
@media screen and (max-width: 480px) {
  #award-challange > .content .content-pickup > .content.no3 {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  #award-challange > .content .content-pickup > .content {
    padding-bottom: 60px;
  }
}
#award-challange .items {
  display: flex;
  flex-wrap: wrap;
  width: 1020px;
  margin-left: -10px;
}
@media screen and (max-width: 480px) {
  #award-challange .items {
    width: 95%;
    margin: 30px auto 0px;
    column-count: 2;
  }
}
#award-challange .items .item {
  width: 25%;
  padding: 0px 10px;
  margin-bottom: 50px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #award-challange .items .item {
    width: 50%;
    padding: 0px 10px;
    margin-bottom: 40px;
  }
}
#award-challange .items .item .visual {
  display: block;
  width: 100%;
  background-color: #ddd;
}
@media screen and (max-width: 480px) {
  #award-challange .items .item .visual {
    height: auto;
    margin: 0 auto 0px;
  }
}
#award-challange .items .item p.head {
  width: 100%;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
  margin: 0px auto 30px;
  line-height: 1.6;
  text-align: center;
  padding-top: 15px;
}
@media screen and (max-width: 480px) {
  #award-challange .items .item p.head {
    width: 100%;
    height: 36px;
    font-size: 11px;
    line-height: 1.6;
    padding: 15px 0px 0px;
    margin: 0px auto 10px;
  }
}
#award-challange .items .item p.head.thin {
  margin-top: -5px;
  height: 35px;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  #award-challange .items .item p.head.thin {
    margin-top: -3px;
    height: 40px;
  }
}

#contact {
  position: relative;
  text-align: center;
  max-width: 1000px;
  height: 500px;
  padding: 180px 0 0px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 480px) {
  #contact {
    position: relative;
    margin-bottom: 40px;
    padding: 180px 0 0px;
    overflow: hidden;
    width: 100%;
  }
}
#contact:before {
  position: absolute;
  z-index: -1;
  top: -110px;
  right: -180px;
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  display: block;
  background-image: url(../image/awards/logo-bg.svg);
  background-size: 100%;
}
@media screen and (max-width: 480px) {
  #contact:before {
    width: 200px;
    height: 200px;
    top: 0px;
    right: -80px;
  }
}
#contact:after {
  position: absolute;
  top: 100px;
  left: 5%;
  width: 90%;
  height: 2px;
  content: "";
  border-top: 2px solid #000;
  display: block;
}
#contact p {
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  #contact p {
    font-size: 18px;
  }
}
#contact .address {
  font-size: 24px;
  margin: 30px auto 70px;
}
@media screen and (max-width: 480px) {
  #contact .address {
    font-size: 18px;
  }
}
#contact .address a.link {
  cursor: pointer;
  line-height: 1.4;
  border-bottom: 1px solid #000;
  font-weight: bold;
}
#contact .tel {
  color: #fff;
  background-color: #E94838;
  font-weight: bold;
  font-family: "Lato";
  border-radius: 90px;
  padding: 20px 60px;
  font-size: 34px;
  transition: all 0.3s ease-out;
  letter-spacing: 2px;
}
#contact .tel:hover {
  transform: scale(1.02, 1.02);
  text-decoration: none;
}
#contact .tel:active {
  transform: scale(0.98, 0.98);
}
@media screen and (max-width: 480px) {
  #contact .tel {
    font-size: 20px;
    padding: 15px 30px;
  }
}

footer {
  display: block;
  width: 100%;
  position: relative;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  margin-top: -220px;
  font-size: 0;
}
footer .logo_footer {
  display: block;
  width: 240px;
  margin: 0 auto 0px;
}
@media screen and (max-width: 480px) {
  footer .logo_footer {
    width: 140px;
  }
}
footer .copyright {
  background-color: #E94838;
  width: 100%;
  padding-top: 80px;
  line-height: 60px;
  font-size: 12px;
  background-image: url(../image/footer/bg.png);
}