<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  height: 100%;
}

/*行の高さをフォントサイズと同じにして余白をリセットしています
（※padding:0;は省略しても違いが見られなかったためmargin:0;のみ）*/
body {
  line-height: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  height: 100%;
}

/*HTML5での新規追加要素のデフォルトをブロック要素へ変更しています
（※Android2.1以前のブラウザではインライン要素となっているようでした）*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています
（※罫線の色を変える場合は#ccccccの部分を変更）*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*リスト要素のリストスタイルと余白をリセットする
（※margin:0;は省略しても違いが見られなかったためpadding:0;のみ）*/
ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  /*display: block;*/
  /*-webkit-tap-highlight-color:transparent;*/
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a:hover {
  filter: brightness(110%);
}

body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  font-weight: 400;
  text-align: left;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  display: block;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 1024px) {
  .hide_pc {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .hide_pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hide_pc {
    display: block !important;
  }
  .hide_sp {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .hide_pc {
    display: block !important;
  }
  .hide_sp {
    display: none !important;
  }
}
.wrapper {
  margin: auto;
  padding-top: 72px;
  width: 100%;
  max-width: 980px;
}
@media screen and (max-width: 1023px) {
  .wrapper {
    padding: 40px 24px 0;
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 48px 16px 0;
    max-width: 480px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    padding: 48px 16px 0;
    max-width: 375px;
  }
}

.header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  padding: 8px 0;
  z-index: 120;
  width: 100%;
}
.header.is-front {
  background: #000;
}
.header__content {
  margin: auto;
  padding: 0 24px;
  width: 100%;
  max-width: 980px;
}
@media screen and (max-width: 1023px) {
  .header__content {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  .header__content {
    max-width: 480px;
  }
}
.header__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.header__sns img {
  width: 33px;
  height: 33px;
  margin: 0 3px;
}
.header__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 1152px;
}
@media screen and (max-width: 1023px) {
  .header__title {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  .header__title {
    max-width: 480px;
  }
}
.header__title::before {
  content: "";
  aspect-ratio: 1152/414;
  background: url(../img/header-bg.png) top center no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1152px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .header__title::before {
    top: -40px;
    width: 980px;
  }
}
@media screen and (max-width: 768px) {
  .header__title::before {
    top: 0;
    width: 768px;
  }
}
@media screen and (max-width: 480px) {
  .header__title::before {
    top: 0;
    width: 375px;
  }
}
.header__title h1 {
  position: relative;
  left: 64px;
  top: 35px;
}
@media screen and (max-width: 1023px) {
  .header__title h1 {
    display: inline-block;
    left: 50%;
    transform: translateX(-50%) translateX(-170px);
  }
}
@media screen and (max-width: 768px) {
  .header__title h1 {
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
  }
}
.header__title h1 img {
  max-width: 547px;
}
@media screen and (max-width: 1023px) {
  .header__title h1 img {
    max-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .header__title h1 img {
    display: block;
    margin: auto;
    width: 80%;
  }
  .header__title h1 img:first-child {
    display: none;
  }
}
.header__title--gshock {
  display: inline-block;
  position: relative;
  top: 48px;
  left: 50%;
  transform: translateX(-50%) translateX(-200px);
}
.header__title--gshock a {
  display: block;
}
.header__title--gshock a img {
  max-width: 294px;
}
.header__title--gshock a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1023px) {
  .header__title--gshock {
    top: 64px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .header__title--gshock {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__title--gshock a img {
    max-width: 180px;
  }
}
@media screen and (max-width: 480px) {
  .header__title--gshock a img {
    max-width: 180px;
  }
}
.header__logo {
  width: 26%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 50%;
  }
}
.header__logo a, .header__logo span {
  display: inline-block;
  padding: 0 6px;
}

.about {
  background: url(../img/bg-top_pc.jpg) no-repeat;
  background-size: 100%;
  background-position: top center;
  border: solid 5px #000;
  color: #000;
  margin: 0;
  padding: 0;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 1010px;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .about {
    aspect-ratio: 976/1079;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .about {
    background: url(../img/bg-top_sp.jpg) no-repeat;
    background-size: 100%;
    background-position: left 40% top -30%;
    aspect-ratio: 350/600;
    border: solid 4px #000;
    margin-top: 0;
    z-index: 1;
  }
}
.about__lead {
  color: #ffffff;
  margin-top: 40px;
  padding-left: 24px;
  position: relative;
  top: 310px;
  width: 50%;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  .about__lead {
    top: 230px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__lead {
    padding-left: 40px;
    position: absolute;
    top: 280px;
  }
}
.about__text {
  font-size: 1.6rem;
  line-height: 1.4;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .about__text {
    font-size: 1.4rem;
  }
}
.about__text span {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .about__text span {
    font-size: 1.8rem;
  }
}
.about__text h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 50px 0 8px 0;
}
@media screen and (max-width: 1023px) {
  .about__text h2 {
    margin: 20px 0 8px 0;
  }
}
@media screen and (max-width: 1023px) {
  .about__text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.about__text--amazing {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .about__text--amazing {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 480px) {
  .about__text--amazing {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
.about__text--amazing span {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .about__text--amazing span {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

.surprise {
  margin-top: -396px;
  position: relative;
  z-index: 3;
}
.surprise a {
  display: block;
}
@media screen and (max-width: 768px) {
  .surprise a img:first-child {
    display: none;
  }
}
.surprise a img:last-child {
  display: none;
}
@media screen and (max-width: 768px) {
  .surprise a img:last-child {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .surprise {
    margin-top: -287px;
  }
}
@media screen and (max-width: 480px) {
  .surprise {
    margin-top: -227px;
  }
}

.archive {
  margin-top: -178px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .archive {
    margin-top: -128px;
  }
}
@media screen and (max-width: 768px) {
  .archive {
    margin-top: -70px;
  }
}
@media screen and (max-width: 480px) {
  .archive {
    margin-top: -49px;
  }
}
.archive::before {
  content: "";
  aspect-ratio: 980/393;
  background-color: #ffe564;
  border: 5px solid #000;
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: skewY(-21.5deg);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .archive::before {
    aspect-ratio: 350/1146;
  }
}
@media screen and (max-width: 480px) {
  .archive::before {
    aspect-ratio: 350/1408;
  }
}
@media screen and (max-width: 1023px) {
  .archive::after {
    aspect-ratio: 980/34;
    content: "";
    background-color: #fff;
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: -17px;
    left: 0;
    aspect-ratio: 980/24;
    width: 100%;
    z-index: 3;
    transform: skewY(-21.5deg);
  }
}
@media screen and (max-width: 768px) {
  .archive::after {
    aspect-ratio: 980/35;
  }
}
@media screen and (max-width: 480px) {
  .archive::after {
    aspect-ratio: 980/42;
  }
}
.archive__inner {
  aspect-ratio: 980/393;
  display: block;
  position: relative;
  height: 100%;
  z-index: 6;
}
@media screen and (max-width: 768px) {
  .archive__inner {
    aspect-ratio: 350/1073;
  }
}
@media screen and (max-width: 480px) {
  .archive__inner {
    aspect-ratio: 350/1408;
  }
}
.archive__heading {
  position: absolute;
  top: -105px;
  left: 350px;
  width: 421px;
}
.archive__heading img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .archive__heading {
    top: -65px;
    left: 210px;
    width: 328px;
  }
}
@media screen and (max-width: 768px) {
  .archive__heading {
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
    width: 375px;
  }
}
@media screen and (max-width: 480px) {
  .archive__heading {
    top: 370px;
  }
}
.archive__link {
  position: relative;
  width: 100%;
}
.archive__link01, .archive__link02 {
  display: block;
  font-size: 18px;
  position: absolute;
  text-align: center;
}
.archive__link01:hover, .archive__link02:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media screen and (max-width: 1023px) {
  .archive__link01, .archive__link02 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .archive__link01, .archive__link02 {
    font-size: 18px;
  }
}
.archive__hina {
  display: inline-block;
  position: absolute;
  top: 142px;
  left: 12px;
  width: 246px;
}
.archive__hina .archive__link {
  aspect-ratio: 246/195;
}
.archive__hina .archive__link01 {
  color: #fff;
  top: 48px;
  right: 30px;
}
@media screen and (max-width: 1023px) {
  .archive__hina {
    top: 114px;
    left: -18px;
    width: 197px;
  }
  .archive__hina .archive__link01 {
    top: 40px;
    right: 24px;
  }
}
@media screen and (max-width: 768px) {
  .archive__hina {
    top: 15px;
    left: 77px;
    width: 246px;
  }
  .archive__hina .archive__link01 {
    top: 48px;
    right: 30px;
  }
}
@media screen and (max-width: 480px) {
  .archive__hina {
    top: 20px;
    left: 32px;
  }
}
.archive__arisa {
  display: inline-block;
  position: absolute;
  top: 254px;
  left: 164px;
  width: 247px;
}
.archive__arisa .archive__link {
  aspect-ratio: 247/230;
}
.archive__arisa .archive__link01 {
  color: #000;
  bottom: 48px;
  left: 60px;
}
@media screen and (max-width: 1023px) {
  .archive__arisa {
    top: 181px;
    left: 108px;
    width: 198px;
  }
  .archive__arisa .archive__link01 {
    bottom: 38px;
    left: 45px;
  }
}
@media screen and (max-width: 768px) {
  .archive__arisa {
    top: 186px;
    left: 164px;
    width: 247px;
  }
  .archive__arisa .archive__link01 {
    bottom: 48px;
    left: 60px;
  }
}
@media screen and (max-width: 480px) {
  .archive__arisa {
    top: 173px;
    left: 108px;
  }
}
.archive__tasuku {
  display: inline-block;
  position: absolute;
  top: 106px;
  left: 350px;
  width: 251px;
}
.archive__tasuku .archive__link {
  aspect-ratio: 251/218;
}
.archive__tasuku .archive__link01 {
  color: #000;
  top: 55px;
  left: 31px;
}
.archive__tasuku .archive__link02 {
  color: #fff;
  top: 128px;
  left: 51px;
}
@media screen and (max-width: 1023px) {
  .archive__tasuku {
    top: 104px;
    left: 274px;
    width: 201px;
  }
  .archive__tasuku .archive__link01 {
    top: 45px;
    left: 24px;
  }
  .archive__tasuku .archive__link02 {
    top: 105px;
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .archive__tasuku {
    top: 586px;
    left: 180px;
    width: 251px;
  }
  .archive__tasuku .archive__link01 {
    top: 55px;
    left: 31px;
  }
  .archive__tasuku .archive__link02 {
    top: 128px;
    left: 51px;
  }
}
@media screen and (max-width: 480px) {
  .archive__tasuku {
    top: 552px;
    left: 74px;
  }
}
.archive__uno {
  display: inline-block;
  position: absolute;
  top: 107px;
  left: 611px;
  width: 269px;
}
.archive__uno .archive__link {
  aspect-ratio: 269/195;
}
.archive__uno .archive__link01 {
  color: #fff;
  top: 40px;
  right: 59px;
}
@media screen and (max-width: 1023px) {
  .archive__uno {
    top: 65px;
    left: 471px;
    width: 215px;
  }
  .archive__uno .archive__link01 {
    top: 36px;
    right: 43px;
  }
}
@media screen and (max-width: 768px) {
  .archive__uno {
    top: 801px;
    left: 33px;
    width: 269px;
  }
  .archive__uno .archive__link01 {
    top: 40px;
    right: 59px;
  }
}
@media screen and (max-width: 480px) {
  .archive__uno {
    top: 797px;
    left: -6px;
  }
}
.archive__ichiyu {
  display: inline-block;
  position: absolute;
  top: -80px;
  left: 743px;
  width: 243px;
}
.archive__ichiyu .archive__link {
  aspect-ratio: 243/234;
}
.archive__ichiyu .archive__link01 {
  color: #000;
  top: 81px;
  left: 29px;
}
.archive__ichiyu .archive__link02 {
  color: #fff;
  top: 144px;
  left: 53px;
}
@media screen and (max-width: 1023px) {
  .archive__ichiyu {
    top: -92px;
    left: 545px;
    width: 194px;
  }
  .archive__ichiyu .archive__link01 {
    top: 65px;
    left: 19px;
  }
  .archive__ichiyu .archive__link02 {
    top: 117px;
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .archive__ichiyu {
    top: 975px;
    left: 140px;
    width: 243px;
  }
  .archive__ichiyu .archive__link01 {
    top: 81px;
    left: 29px;
  }
  .archive__ichiyu .archive__link02 {
    top: 144px;
    left: 53px;
  }
}
@media screen and (max-width: 480px) {
  .archive__ichiyu {
    top: 944px;
    left: 111px;
  }
}

.line-text01 {
  position: absolute;
  left: -24px;
  bottom: 114px;
}
@media screen and (max-width: 1023px) {
  .line-text01 {
    bottom: 56px;
  }
}
@media screen and (max-width: 768px) {
  .line-text01 {
    bottom: 116px;
  }
}
@media screen and (max-width: 480px) {
  .line-text01 {
    display: none;
  }
}

.line-text02 {
  position: absolute;
  right: -24px;
  top: 214px;
}
@media screen and (max-width: 1023px) {
  .line-text02 {
    top: 134px;
  }
}
@media screen and (max-width: 480px) {
  .line-text02 {
    display: none;
  }
}

.container {
  position: relative;
  margin-top: -200px;
}
@media screen and (max-width: 1023px) {
  .container {
    margin-top: -142px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    margin-top: 0;
  }
}

.wanted {
  color: #000;
  font-size: 1.6rem;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 3;
}
.wanted__button {
  background: #000;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 24px;
  margin-top: 24px;
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  width: 164px;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  .wanted__button {
    padding: 12px 16px;
  }
}
.wanted__button a {
  color: #ffffff;
}
.wanted__movie--movie img {
  width: 100%;
}
.wanted__movie--wanted {
  position: absolute;
  bottom: 47%;
  left: -6%;
}
.wanted__movie--wanted img {
  width: 46%;
}
@media screen and (max-width: 1023px) {
  .wanted__movie--wanted img {
    width: 41%;
  }
}
.wanted__movie--sp {
  position: relative;
}
.wanted__movie--sp::before {
  aspect-ratio: 631/258;
  background: url(../img/img-text-sample.png) top center no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: -64px;
  left: 16px;
  width: 300px;
  z-index: 4;
}
.wanted__text {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  top: 570px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .wanted__text {
    margin-bottom: -166px;
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 480px) {
  .wanted__text {
    margin-bottom: -330px;
    top: -200px;
  }
}
.wanted__text--innerbox {
  background: #ffe564;
  border: 4px solid #000;
  border-top: none;
  border-bottom: none;
  padding: 0 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wanted__text--innerbox {
    border: 5px solid #000;
    border-top: none;
    border-bottom: none;
  }
  .wanted__text--innerbox::before {
    aspect-ratio: 285/336;
    background: url(../img/img-moko.png) top right;
    background-size: 100%;
    content: "";
    display: block;
    position: absolute;
    top: -240px;
    right: 45px;
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .wanted__text--innerbox {
    border: 4px solid #000;
    border-top: none;
    border-bottom: none;
  }
  .wanted__text--innerbox::before {
    top: -180px;
    right: 24px;
  }
}
.wanted__text::before {
  background: url(../img/wanted-bg01_sp.png) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  height: 220px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .wanted__text::before {
    height: 170px;
  }
}
.wanted__text--button {
  background: #000;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 16px auto 0;
  padding: 16px 18px;
  position: static;
  text-decoration: none;
  width: 140px;
  z-index: 3;
}
.wanted__text--button a {
  color: #ffffff;
}
.wanted__text span {
  font-size: 1.8rem;
  font-weight: bold;
}
.wanted__text p {
  font-size: 1.6rem;
  width: 100%;
}
.wanted__text h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 50px 0 8px 0;
}
@media screen and (max-width: 1023px) {
  .wanted__text h2 {
    margin: 20px 0 8px 0;
  }
}
@media screen and (max-width: 1023px) {
  .wanted__text h2 {
    margin: -2px 0 16px;
  }
}
@media screen and (max-width: 480px) {
  .wanted__text h2 {
    margin: -2px 0 16px;
  }
}
.wanted__text--amazing {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 8px 0;
}
@media screen and (max-width: 480px) {
  .wanted__text--amazing {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.wanted__text--amazing span {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .wanted__text--amazing span {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
.wanted__text02 {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.wanted__text02--innerbox {
  background: #FF869D;
  border: 5px solid #000;
  border-top: none;
  margin-top: -1px;
  padding: 0 32px 48px;
}
@media screen and (max-width: 480px) {
  .wanted__text02--innerbox {
    border: 4px solid #000;
    border-top: none;
    padding: 0 16px 48px;
  }
}
.wanted__text02::before {
  background: url(../img/wanted-bg02_sp.png) top left no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  width: 100%;
  height: 273px;
  z-index: -4;
}
@media screen and (max-width: 480px) {
  .wanted__text02::before {
    height: 208px;
  }
}
.wanted__text02--title {
  width: 100%;
}
.wanted__text02--title img {
  width: 90%;
  margin: 0 auto;
}
.wanted__text02 p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
}
.wanted__movie01 {
  position: absolute;
  top: 55%;
  left: 40%;
}
.wanted__movie01:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
@media screen and (max-width: 480px) {
  .wanted__movie01 {
    margin-top: 12px;
    position: relative;
    width: 100%;
    left: 0;
  }
  .wanted__movie01 a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
  }
  .wanted__movie01 a img {
    width: 100%;
  }
}
.wanted__movie02 a {
  position: absolute;
  top: 24%;
  right: 6%;
  width: 18%;
}
.wanted__movie02:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .wanted__movie02 {
    margin-top: 18px;
    position: relative;
    width: 100%;
    left: 0;
  }
  .wanted__movie02 a {
    position: relative;
    width: 60%;
    top: auto;
    right: auto;
  }
  .wanted__movie02 a img {
    width: 100%;
  }
  .wanted__movie02:first-child::before {
    aspect-ratio: 120/137;
    background: url(../img/form-point.png) top center no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    position: absolute;
    bottom: -88px;
    left: -8px;
    width: 30%;
    z-index: 4;
  }
}
@media screen and (max-width: 480px) {
  .wanted__movie02:first-child::before {
    bottom: -64px;
  }
}
.wanted__movie03 a {
  position: absolute;
  top: 67%;
  right: 3%;
  width: 18%;
}
.wanted__movie03:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}

.wanted202211 {
  aspect-ratio: 1960/722;
  background: url(../img/movie_pc_02.png) top center no-repeat;
  background-size: 100%;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}
.wanted202211::after {
  content: "";
  aspect-ratio: 170/157;
  background: url(../img/img-new.png) top left no-repeat;
  background-size: 100%;
  display: inline-block;
  position: absolute;
  top: -50px;
  left: 200px;
  width: 170px;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  .wanted202211 {
    margin-top: 16px;
  }
  .wanted202211::after {
    top: -24px;
    left: 160px;
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .wanted202211 {
    aspect-ratio: auto;
    background: none;
    margin-bottom: -150px;
  }
  .wanted202211::after {
    top: 0;
    left: auto;
    right: 30px;
    width: 180px;
  }
}
@media screen and (max-width: 480px) {
  .wanted202211 {
    margin-bottom: -110px;
  }
  .wanted202211::after {
    right: 8px;
    width: 150px;
  }
}
.wanted202211__movie04, .wanted202211__movie05, .wanted202211__movie06 {
  position: absolute;
  top: 32%;
  left: 50%;
}
.wanted202211__movie04 a, .wanted202211__movie05 a, .wanted202211__movie06 a {
  display: block;
}
.wanted202211__movie04 a:hover, .wanted202211__movie05 a:hover, .wanted202211__movie06 a:hover {
  opacity: 0.6;
}
.wanted202211__movie04 a img:first-child, .wanted202211__movie05 a img:first-child, .wanted202211__movie06 a img:first-child {
  display: block;
}
.wanted202211__movie04 a img:last-child, .wanted202211__movie05 a img:last-child, .wanted202211__movie06 a img:last-child {
  display: none;
}
@media screen and (max-width: 768px) {
  .wanted202211__movie04, .wanted202211__movie05, .wanted202211__movie06 {
    position: relative;
    top: auto;
    left: auto;
  }
  .wanted202211__movie04 a img:first-child, .wanted202211__movie05 a img:first-child, .wanted202211__movie06 a img:first-child {
    display: none;
  }
  .wanted202211__movie04 a img:last-child, .wanted202211__movie05 a img:last-child, .wanted202211__movie06 a img:last-child {
    display: block;
  }
}
.wanted202211__movie04 {
  transform: translateX(-475px);
}
.wanted202211__movie04 a img {
  aspect-ratio: 306/134;
}
@media screen and (max-width: 1023px) {
  .wanted202211__movie04 {
    transform: translateX(-333px);
  }
  .wanted202211__movie04 a img {
    width: 188px;
  }
}
@media screen and (max-width: 768px) {
  .wanted202211__movie04 {
    transform: none;
  }
  .wanted202211__movie04 a img {
    aspect-ratio: auto;
    width: 100%;
  }
}
.wanted202211__movie05 {
  transform: translateX(-108px);
}
.wanted202211__movie05 a img {
  aspect-ratio: 261/162;
}
@media screen and (max-width: 1023px) {
  .wanted202211__movie05 {
    transform: translateX(-60px);
  }
  .wanted202211__movie05 a img {
    width: 162px;
  }
}
@media screen and (max-width: 768px) {
  .wanted202211__movie05 {
    margin: 20px 0;
    transform: none;
  }
  .wanted202211__movie05 a img {
    aspect-ratio: auto;
    width: 100%;
  }
}
.wanted202211__movie06 {
  transform: translateX(210px);
}
.wanted202211__movie06 a img {
  aspect-ratio: 268/161;
}
@media screen and (max-width: 1023px) {
  .wanted202211__movie06 {
    transform: translateX(168px);
  }
  .wanted202211__movie06 a img {
    width: 170px;
  }
}
@media screen and (max-width: 768px) {
  .wanted202211__movie06 {
    transform: none;
  }
  .wanted202211__movie06 a img {
    aspect-ratio: auto;
    width: 100%;
  }
}

.present {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .present {
    margin-top: 0;
  }
}
.present .content {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .present .content::before {
    background: url(../img/present-title_sp.png) no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    width: 100%;
    height: 172px;
  }
}
@media screen and (max-width: 480px) {
  .present .content::before {
    height: 139px;
  }
}
.present__item {
  position: relative;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1035px;
}
.present__item img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .present__item {
    width: 890px;
  }
}
@media screen and (max-width: 768px) {
  .present__item02 {
    position: absolute;
    top: -128px;
  }
}
@media screen and (max-width: 480px) {
  .present__item02 {
    position: absolute;
    top: -64px;
  }
}
.present__lead {
  height: 460px;
  position: relative;
  top: 0;
}
@media screen and (max-width: 768px) {
  .present__lead {
    height: 413px;
    position: relative;
  }
}
.present__lead p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  width: 60%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .present__lead p {
    margin: 0;
    padding: 196px 0 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
  }
}
.present__lead p span {
  font-size: 2rem;
}

.text-small {
  font-weight: normal;
  font-size: 1.4rem;
}

.formarea {
  background: #ffe564;
  border: solid 5px #000;
  margin: 0;
  padding: 0 60px 60px 60px;
  position: relative;
  z-index: 4;
  font-size: 1.6rem;
}
.formarea__explanation {
  padding: 40px 0 56px;
}
.formarea__explanation p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .formarea__explanation p {
    font-size: 16px;
  }
}
.formarea.is-thanks {
  margin-top: 240px;
  padding-top: 340px;
}
@media screen and (max-width: 1023px) {
  .formarea.is-thanks {
    margin-top: 130px;
    padding-top: 240px;
  }
}
@media screen and (max-width: 768px) {
  .formarea.is-thanks {
    border-top: solid 5px #000;
    margin-top: 72px;
    padding-top: 160px;
  }
}
@media screen and (max-width: 480px) {
  .formarea.is-thanks {
    border-top: solid 4px #000;
    padding-top: 100px;
  }
}
.formarea.is-thanks h1 {
  display: inline-block;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}
.formarea.is-thanks h1 span {
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .formarea.is-thanks h1 {
    top: -60px;
  }
}
@media screen and (max-width: 1023px) {
  .formarea {
    border: solid 4px #000;
    padding: 0 32px;
  }
}
@media screen and (max-width: 768px) {
  .formarea {
    border: solid 5px #000;
    border-top: none;
  }
}
@media screen and (max-width: 480px) {
  .formarea {
    border: solid 4px #000;
    border-top: none;
    margin-top: -1px;
    padding: 0 16px;
  }
}
.formarea #fo {
  color: #000;
  padding: 40px 0;
  max-width: 760px;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .formarea #fo {
    padding: 40px 0;
  }
}
.formarea #fo .caution dt {
  font-size: 1.4rem;
  color: #000;
  font-weight: bold;
}
.formarea #fo .caution dd {
  display: flex;
  align-items: top;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 8px;
  position: relative;
}
.formarea #fo .caution dd a {
  color: #000;
  text-decoration: underline;
}
.formarea #fo .caution dd a:hover {
  text-decoration: none;
}
.formarea #fo .caution dd::before {
  background: #882DFE;
  border-radius: 3px;
  content: "";
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 6px;
  width: 6px;
  min-width: 6px;
  height: 6px;
}
@media screen and (max-width: 480px) {
  .formarea #fo .caution dt, .formarea #fo .caution dd {
    font-size: 12px;
  }
}
.formarea form ul li span {
  line-height: 1.4;
}
.formarea form ul li span.formarea__question {
  color: #000;
  display: block;
  margin: 2em 0 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .formarea form ul li span.formarea__question {
    margin: 1.5em 0 8px;
  }
}
.formarea form ul li span.formarea__point {
  color: #000;
  display: block;
  margin: 2em 0 16px;
  font-size: 1.6rem;
}
.formarea form ul li span.formarea__point::before {
  background: url(../img/form-point.png) top left no-repeat;
  background-size: 68px;
  content: "";
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  width: 68px;
  height: 77px;
}
@media screen and (max-width: 480px) {
  .formarea form ul li span.formarea__point::before::before {
    background-size: 37px;
    width: 40px;
    height: 43.2px;
  }
}
@media screen and (max-width: 480px) {
  .formarea form ul li span.formarea__point.formarea__question {
    font-size: 1.5rem;
  }
}
.formarea__prev {
  display: inline-block;
}
.formarea__prev a {
  background: #ffb43c;
  border-radius: 24px;
  color: #000;
  display: block;
  font-weight: bold;
  padding: 10px 24px;
  text-decoration: none;
}

.footer {
  margin: 0 auto;
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  background: #000;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
}
.footer::after {
  background-repeat: no-repeat;
  background-size: 1152px;
  content: "";
  display: block;
  aspect-ratio: 1152/295;
  background: url(../img/footer-bg.png) bottom center no-repeat;
  background-size: 100%;
  position: absolute;
  width: 1152px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .footer::after {
    width: 980px;
  }
}
@media screen and (max-width: 1023px) {
  .footer::after {
    width: 768px;
  }
}
@media screen and (max-width: 480px) {
  .footer::after {
    width: 375px;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 0 16px;
  }
}
.footer .content {
  max-width: 1024px;
  line-height: 1;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.footer__pagetop {
  position: absolute;
  top: -32px;
  right: 56%;
  transform: translateX(480px);
  z-index: 99;
}
@media screen and (max-width: 1023px) {
  .footer__pagetop {
    top: -32px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateX(300px);
  }
}
@media screen and (max-width: 768px) {
  .footer__pagetop {
    transform: translateX(-50%) translateX(180px);
  }
}
@media screen and (max-width: 480px) {
  .footer__pagetop {
    transform: translateX(-50%) translateX(140px);
  }
}
.footer__pagetop button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  transition: all 0.2s linear;
}
.footer__pagetop button:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.footer__banner {
  max-width: 750px;
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
}
.footer__banner img {
  width: 90%;
}
@media screen and (max-width: 480px) {
  .footer__banner img {
    width: 100%;
  }
}
.footer__logo {
  margin-top: 80px;
  width: 100%;
  display: block;
  text-align: center;
}
.footer__logo img {
  width: 120px;
  height: auto;
}
@media screen and (max-width: 480px) {
  .footer__logo {
    margin-top: 0;
  }
}
.footer__copyright {
  margin-top: 160px;
  padding-bottom: 16px;
  display: block;
  z-index: 2;
}
.footer__copyright img {
  width: 361px;
}
@media screen and (max-width: 480px) {
  .footer__copyright {
    margin-top: 64px;
  }
}

.clng .modaal-container {
  background: transparent;
  text-align: center;
  width: auto;
}
.clng .modaal-container .twitter-tweet {
  border: 4px solid #000;
  border-radius: 16px;
  margin: auto;
  max-width: 375px !important;
}
.clng .modaal-container .tiktok-embed {
  border: 4px solid #000;
  background: #fff;
  border-radius: 16px;
  margin: auto;
  padding: 16px;
}
.clng .modaal-container .insta-embed {
  border: 4px solid #000;
  background: #fff;
  border-radius: 16px;
  box-sizing: border-box;
  margin: auto;
  padding: 16px;
  max-width: 325px !important;
}
.clng .modaal-container .insta-embed iframe {
  min-width: 286px !important;
}
.clng .modaal-container .youtube-embed {
  aspect-ratio: 16/9;
}
@media screen and (min-width: 1024px) {
  .clng .modaal-container .youtube-embed {
    width: 980px;
  }
}
@media screen and (max-width: 1023px) {
  .clng .modaal-container .youtube-embed {
    width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .clng .modaal-container .youtube-embed {
    width: 448px;
  }
}
@media screen and (max-width: 480px) {
  .clng .modaal-container .youtube-embed {
    width: 325px;
  }
}
.clng .modaal-container .youtube-embed iframe {
  width: 100%;
  height: 100%;
}
.clng .modaal-content-container {
  padding: 0;
}
.clng .modaal-close {
  position: absolute;
  top: -32px;
  right: 0;
  width: 32px;
  height: 32px;
}
.clng .modaal-close:hover {
  background: none;
}
.clng .modaal-close:hover::before, .clng .modaal-close:hover::after {
  background: #ffe564;
}
/*# sourceMappingURL=style.css.map */</pre></body></html>