@media screen and (min-width: 750px) {
  .sp {
    display: none !important;
  }
}

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

.ie {
  display: none !important;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie {
    display: block !important;
  }
}

.noie {
  display: block !important;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .noie {
    display: none !important;
  }
}

.a_block {
  display: block;
  width: 100%;
  height: 100%;
}

.font, body {
  color: #000;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.87;
}
@media screen and (max-width: 749px) {
  .font, body {
    font-size: 1.4rem;
  }
}

* {
  border: 0;
  outline: none;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5% !important;
  font-family: "Noto Sans JP", sans-serif;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

body {
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

div,
main,
section {
  display: block;
  position: relative;
}

*:focus {
  outline: none;
}

p {
  line-height: 2;
}

sup {
  vertical-align: super;
  font-size: 50%;
}

b,
em {
  font-weight: 700;
}

a {
  cursor: pointer;
}
a.line {
  text-decoration: underline;
}

.opa {
  transition: 0.5s;
  opacity: 1;
}
.opa:hover {
  opacity: 0.5;
}

small {
  font-size: 1.2rem;
  display: block;
  line-height: 1.6;
}

.spaces {
  letter-spacing: 0.1em;
}

.dash {
  letter-spacing: 0;
}

.fw400 {
  font-weight: 400;
}

main {
  border-top: 1px solid transparent;
}

.center {
  text-align: center;
}

@media screen and (max-width: 749px) {
  .sp-center {
    margin: auto;
  }
}

.m-center {
  margin: auto;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

img.block {
  display: block;
}

.w100 {
  width: 100% !important;
  display: block;
}

.wrap800 {
  margin: auto;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .wrap800 {
    padding: 0 15px;
  }
}

.wrap1000 {
  margin: auto;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .wrap1000 {
    padding: 0 15px;
  }
}

.wrap1200 {
  margin: auto;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .wrap1200 {
    padding: 0 15px;
  }
}

@media screen and (max-width: 749px) {
  .wrap-sp {
    width: calc(100% - ($sp-margin*2));
  }
}

.bg_white {
  background: #FFF;
}
.bg_black {
  background: #000;
}
.bg_blue {
  background: #0067B8;
}
.bg_rblue {
  background: #05A6F1;
}
.bg_red {
  background: #F45326;
}
.bg_green {
  background: #82BC06;
}
.bg_orange {
  background: #FFBB08;
}

.text_white {
  color: #FFF;
}
.text_black {
  color: #000;
}
.text_blue {
  color: #0067B8;
}
.text_rblue {
  color: #05A6F1;
}
.text_red {
  color: #F45326;
}
.text_green {
  color: #82BC06;
}
.text_orange {
  color: #FFBB08;
}

.is-hide {
  max-height: 0;
  transition: 0.5s;
  overflow: hidden;
}
.is-hide.show {
  max-height: 100px;
}

.fadeTypeOpacity {
  opacity: 0;
}

.fadeOpacity {
  animation-name: fadeInOpacity;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
  visibility: visible !important;
}

@keyframes fadeInOpacity {
  to {
    opacity: 1;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
  visibility: visible !important;
}

@keyframes fadeInUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.mt3 {
  display: block;
  margin-top: 3px !important;
}

.mt10 {
  display: block;
  margin-top: 10px !important;
}
@media screen and (max-width: 749px) {
  .mt10 {
    margin-top: 5px !important;
  }
}

.mt15 {
  display: block;
  margin-top: 15px !important;
}
@media screen and (max-width: 749px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  display: block;
  margin-top: 20px !important;
}
@media screen and (max-width: 749px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt25 {
  display: block;
  margin-top: 25px !important;
}
@media screen and (max-width: 749px) {
  .mt25 {
    margin-top: 15px !important;
  }
}

.mt30 {
  display: block;
  margin-top: 30px !important;
}
@media screen and (max-width: 749px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  display: block;
  margin-top: 40px !important;
}
@media screen and (max-width: 749px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.mt50 {
  display: block;
  margin-top: 50px !important;
}
@media screen and (max-width: 749px) {
  .mt50 {
    margin-top: 25px !important;
  }
}

.mt55 {
  display: block;
  margin-top: 55px !important;
}
@media screen and (max-width: 749px) {
  .mt55 {
    margin-top: 25px !important;
  }
}

.mt60 {
  display: block;
  margin-top: 60px !important;
}
@media screen and (max-width: 749px) {
  .mt60 {
    margin-top: 30px !important;
  }
}

.mt70 {
  display: block;
  margin-top: 70px !important;
}
@media screen and (max-width: 749px) {
  .mt70 {
    margin-top: 35px !important;
  }
}

.mt80 {
  display: block;
  margin-top: 80px !important;
}
@media screen and (max-width: 749px) {
  .mt80 {
    margin-top: 40px !important;
  }
}

.mt90 {
  display: block;
  margin-top: 90px !important;
}
@media screen and (max-width: 749px) {
  .mt90 {
    margin-top: 45px !important;
  }
}

.mt100 {
  display: block;
  margin-top: 100px !important;
}
@media screen and (max-width: 749px) {
  .mt100 {
    margin-top: 50px !important;
  }
}

.ml {
  margin-left: auto;
}

.pt100 {
  padding: 100px 0 !important;
}
@media screen and (max-width: 749px) {
  .pt100 {
    padding: 50px 0 !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt20 {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt35 {
    margin-top: 35px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt50 {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt75 {
    margin-top: 75px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt100 {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt125 {
    margin-top: 125px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-p20 {
    padding: 20px;
  }
}

.loading {
  background: white;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
  height: 100%;
  width: 100%;
}

.modal {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
}
.modal_dialog {
  display: none;
  background: #FFF;
  width: 600px;
  height: 480px;
  padding: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 749px) {
  .modal_dialog {
    width: calc(100% - 30px);
    height: calc(100% - 120px);
  }
}
.modal_dialog_close {
  width: 40px;
  position: absolute;
  top: 0;
  right: -60px;
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .modal_dialog_close {
    width: 30px;
    top: -40px;
    right: 0;
  }
}
.modal_dialog_title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 749px) {
  .modal_dialog_title {
    font-size: 2.0rem;
  }
}
.modal_dialog_text {
  font-size: 1.2rem;
}
.modal_dialog_textWrap {
  height: 80%;
  overflow-y: scroll;
}

.follow {
  width: 100px;
  position: fixed;
  bottom: 30px;
  right: -10px;
  z-index: 50;
  opacity: 0;
  transition: 0.5s;
}
.follow_link {
  display: block;
}
@media screen and (max-width: 749px) {
  .follow {
    width: 100%;
    bottom: 0;
    right: 0;
  }
}
.follow.view {
  opacity: 1;
}

.fv {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 750px) {
  .fv {
    height: 600px;
  }
}
@media screen and (max-width: 749px) {
  .fv {
    height: 250px;
    display: block;
  }
}
.fv_frame {
  position: absolute;
  z-index: 10;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.fv_frame_img {
  height: 100%;
}
@media screen and (-ms-high-contrast: none) and (max-width: 1399px), screen and (-ms-high-contrast: active) and (max-width: 1399px) {
  .fv_frame_img {
    margin-left: calc(-1*((1400px - 100%)/2));
  }
}

.fv_frame_bg {
  background: #0067B8;
  height: 100%;
  width: calc((100% - 1400px)/2);
}
@media screen and (min-width: 750px) and (max-width: 1399px) {
  .fv_frame_bg {
    display: none;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .fv_frame_bg {
    background: #003FA3;
    opacity: 0.8;
  }
}
@supports (-ms-ime-align: auto) {
  .fv_frame_bg {
    background: #003FA3;
    opacity: 0.8;
  }
}
.fv_base {
  display: block;
  width: 100%;
  height: 100%;
}
.fv_base_img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  font-family: 'object-fit: cover; object-position: top center;';
  height: 100%;
}
.fv_titleWrap {
  opacity: 0;
  z-index: 10;
  transition: 0.5s;
  transition-delay: 0.7s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
}
@media screen and (max-width: 749px) {
  .fv_titleWrap {
    width: calc(100% - 30px);
  }
}
.fv_titleWrap.active {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.fv_title-01 {
  width: 902px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 749px) {
  .fv_title-01 {
    width: 100%;
  }
}
.fv_title-02 {
  width: 735px;
  margin: auto;
}
@media screen and (max-width: 749px) {
  .fv_title-02 {
    width: 81%;
  }
}

.intro {
  background: url("../img/intro_bg.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}
@media screen and (max-width: 749px) {
  .intro {
    background: url("../img/intro_bg_sp.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 221px 443px;
  }
}
.intro_title {
  width: 536px;
  margin: auto;
}
@media screen and (max-width: 749px) {
  .intro_title {
    width: 300px;
  }
}
.intro_inner {
  position: relative;
  z-index: 1;
}
.intro_lay {
  background: #0067B8;
  mix-blend-mode: multiply;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .intro_lay {
    opacity: 0.8;
    background: #003FA3;
  }
}
@supports (-ms-ime-align: auto) {
  .intro_lay {
    opacity: 0.8;
    background: #003FA3;
  }
}

.challenge {
  padding: 73px 0 131px;
}
.challenge_image {
  text-align: center;
}
.challenge_imageWrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .challenge_imageWrap {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .challenge_imageWrap > *:first-child {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 750px) {
  .challenge_imageWrap > *:first-child {
    margin-right: 135px;
  }
  .challenge_imageWrap > *:first-child::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    display: block;
    height: 300px;
    width: 2px;
    background: #000;
    transform: rotate(12deg) translateY(-50%);
  }
}
.challenge_image_title {
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.challenge_image_title-01 {
  font-size: 2.0rem;
}
.challenge_image_title-02 {
  font-size: 1.6rem;
  margin: 20px 0 25px;
}
.challenge_image_img {
  width: 250px;
}
@media screen and (max-width: 749px) {
  .challenge_image_img {
    width: 230px;
  }
}
.challenge_image_img-1 {
  margin-top: 25px;
}
.challenge_image_img-3 {
  width: 185px;
}
.challenge_image_img-4 {
  width: 240px;
}
.challenge_image_img-5 {
  width: 220px;
  margin-top: 36px;
}
.challenge_image_img-6 {
  width: 230px;
}
.challenge_image_img-7 {
  margin-top: 16px;
}

.outro {
  background: url("../img/outro_bg_01.jpg"), url("../img/outro_bg_02.jpg");
  background-repeat: no-repeat,no-repeat;
  background-position: right top 50px,left bottom 50px;
  background-size: 443px 886px;
}
@media screen and (max-width: 749px) {
  .outro {
    background-size: 221px 443px;
  }
}
.outro_title {
  margin: auto;
}
.outro_title-01 {
  width: 708px;
}
@media screen and (max-width: 749px) {
  .outro_title-01 {
    width: 300px;
  }
}
.outro_title-02 {
  width: 480px;
}
@media screen and (max-width: 749px) {
  .outro_title-02 {
    width: 300px;
  }
}
.outro_inner {
  position: relative;
  z-index: 1;
}
.outro_banner {
  width: 700px;
  margin: auto;
  display: block;
}
@media screen and (max-width: 749px) {
  .outro_banner {
    width: 100%;
  }
}
.outro_lay {
  background: #0067B8;
  mix-blend-mode: multiply;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .outro_lay {
    opacity: 0.8;
    background: #003FA3;
  }
}
@supports (-ms-ime-align: auto) {
  .outro_lay {
    opacity: 0.8;
    background: #003FA3;
  }
}

.header {
  height: 80px;
  width: 100%;
  position: absolute;
  z-index: 50;
}
@media screen and (max-width: 749px) {
  .header {
    height: 45px;
  }
}
.header_asahi {
  width: 100px;
  display: block;
  position: absolute;
  top: 18px;
  left: 25px;
}
@media screen and (max-width: 749px) {
  .header_asahi {
    width: 65px;
    left: 10px;
    top: 10px;
  }
}
.header_credit {
  font-size: 1.2rem;
  font-weight: 700;
  position: absolute;
  right: 18px;
  top: 14px;
  color: #FFF;
}
@media screen and (max-width: 749px) {
  .header_credit {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    right: 2px;
    top: 4px;
    text-align: right;
    transform: scale(0.9);
  }
}

.share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 130px;
  position: absolute;
  right: 17px;
  top: 48px;
}
@media screen and (min-width: 750px) {
  .share {
    height: 26px;
    margin-left: auto;
    max-width: 130px;
  }
}
@media screen and (max-width: 749px) {
  .share {
    justify-content: center;
    top: 33px;
    right: 0px;
    width: 110px;
  }
}
.share_text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
}
@media screen and (max-width: 749px) {
  .share_text {
    font-size: 0.9rem;
  }
}
.share_link {
  width: 30px;
  margin-left: 10px;
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .share_link {
    width: 25px;
    margin-left: 8px;
  }
}

.footer {
  padding: 100px 0 0;
}
.footer_logo {
  width: 100%;
  max-width: 200px;
  margin: auto;
  display: block;
}
@media screen and (max-width: 749px) {
  .footer_logo {
    width: 150px;
  }
}
.footer_copy {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .footer_copy {
    font-size: 1.0rem;
  }
}
