@charset "UTF-8";
html {
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
em,
img,
q,
strong,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
fieldset,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
button,
figure {
  padding: 0;
  margin: 0;
  font-style: normal;
  font-weight: 500;
  outline: 0;
  border: none;
  background: none;
}

section,
nav,
article,
aside,
header,
footer {
  display: block;
}

body {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol li,
ul li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a,
img,
fieldset {
  border: 0;
}

img,
input {
  vertical-align: middle;
}

textarea:focus,
input:focus {
  outline: 0;
  /*safariの自動フォーカスを切る */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd,
pre,
caption,
address,
p input,
p select,
p textarea,
li p,
li li,
li dt,
li dd,
li input,
li select,
li textarea,
dd p,
dd li,
dd dt,
dd dd,
dd input,
dd select,
dd textarea,
th p,
th li,
th dt,
th dd,
th input,
th select,
th textarea,
td p,
td li,
td dt,
td dd,
td input,
td select,
td textarea {
  font-size: inherit;
}

input,
button,
select {
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 500;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

strong {
  font-weight: bold;
}

/* ------------------------------------------ sp pc 表示切り替え -- */
@media screen and (max-width: 767px) {
  .is-hide--sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-hide--pc {
    display: none !important;
  }
}

/*******************************************************************
*
* layout
*
*******************************************************************/
body {
  margin: 0 auto;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.5px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 0;
    font-size: 13px;
    line-height: 1.9;
    min-width: 0;
  }
}

.inner {
  max-width: 890px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding: 0 20px 20px;
  }
}

.iframeDiv {
  display: none;
}

@media screen and (max-width: 767px) {
  .iframeDiv iframe {
    width: 100%;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all .5s;
}

.modal.is-show {
  opacity: 1;
  pointer-events: visible;
}

.modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  width: 640px;
  height: 360px;
  z-index: 2;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .modal__inner {
    width: 320px;
    height: 180px;
  }
}

.modal__inner iframe {
  height: 100%;
  width: 100%;
}

.modal__close {
  position: absolute;
  top: -50px;
  right: 0;
}

.overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4D4D4D repeat 0 0;
  opacity: 0.59;
  filter: alpha(opacity=59);
  pointer-events: none;
}

.overlay.is-show {
  pointer-events: visible;
}

/*******************************************************************
*
* ヘッダー
*
*******************************************************************/
.header {
  max-width: 1220px;
  width: 100%;
  background-color: #fff;
  padding: 20px 30px;
}

@media screen and (max-width: 767px) {
  .header {
    min-width: inherit;
    padding: 0;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .header__inner {
    padding: 15px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
    background: #fff;
    position: relative;
    z-index: 11;
  }
}

.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 260px);
}

.header .nav__logo img {
  width: 200px;
}

.title {
  color: #0068B7;
  font-size: 30px;
  font-weight: bold;
  border: 1px solid #0068B7;
  padding: 6px 0;
  width: 400px;
  margin: 130px auto 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 25px;
    width: 100%;
    padding: 0;
  }
}

.row__ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .row__ul {
    margin: 0 -5px;
  }
}

.row__ul > li {
  box-shadow: 0px 0px 24px -5px rgba(0, 0, 0, 0.16);
  width: calc(33.33% - 70px);
  margin: 50px 35px 0;
}

@media screen and (max-width: 767px) {
  .row__ul > li {
    width: calc(50% - 10px);
    margin: 20px 5px 0;
  }
}

.row__ul > li a {
  display: flex;
  align-items: center;
  min-height: 230px;
  transition: all .5s;
}

@media screen and (max-width: 767px) {
  .row__ul > li a {
    min-height: 180px;
  }
}

.row__ul > li a img {
  width: 100%;
}

.row__ul > li a:hover {
  opacity: .7;
}

.campaign {
  padding: 10px;
}

.campaign p {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .campaign p {
    font-size: 14px;
  }
}

.campaign li {
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
}

.campaign li:before {
  content: "";
  display: inline-block;
  margin-right: 4px;
}

.campaign li:first-child:before {
  background: url(/images/img-icon-time.png) no-repeat;
  width: 12px;
  height: 12px;
}

.campaign li:last-child:before {
  background: url(/images/img-icon-ratio.png) no-repeat;
  width: 15px;
  height: 9px;
}

.iframe {
  position: relative;
}

.iframe::after {
  content: "";
  background: url(/images/img-modal-play.png) no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
}

.about {
  text-align: center;
  font-size: 16px;
}

.about .title {
  margin-bottom: 20px;
}

.about__img {
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .about__img {
    margin-top: 32px;
  }
}

.about + .inner .title {
  margin-top: 10px;
}

.mv {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.mv__img {
  max-width: 960px;
  width: 100%;
}

.mv__pc {
  position: absolute;
  right: 0;
  top: 100px;
  width: 70%;
  max-width: 590px;
}

@media screen and (max-width: 767px) {
  .mv__pc {
    right: auto;
    top: 115%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
  }
}

.notes {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .notes {
    margin-top: 40px;
    font-size: 12px;
  }
}

/*******************************************************************
*
* フッター
*
*******************************************************************/
.footer {
  line-height: 2;
  padding: 36px 0;
  box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
}

.footer__inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    width: 100%;
    text-align: center;
  }
}

.footer__logo {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 8px;
  }
}

.footer__copy {
  font-size: 12px;
}
