@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Noto+Sans+JP:wght@100..900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .tab {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .tab {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sp {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .tabsp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #1F2833;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  background: #1F2833;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}
@media only screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.5;
  }
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* wrapper */
.wrapper {
  overflow-x: hidden;
  height: 100svh;
  overscroll-behavior: none;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 375px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* lottie */
.lottie svg {
  display: block;
  width: 100% !important;
  height: auto !important;
}

.lottie-ufo-topfirst {
  aspect-ratio: 800/900;
}

.lottie-bigtako {
  aspect-ratio: 2000/609;
}

.lottie-ufo-page {
  aspect-ratio: 800/300;
}

.header {
  position: relative;
  margin-top: -54px; /* メニューボタンの高さ */
}
.header__logo {
  padding: 40px 40px 25px;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    padding: 35px 24px 23px;
  }
}
@media only screen and (min-width: 1025px) {
  .header__logo a:hover {
    opacity: 1;
  }
}
.header__logo img {
  width: 100%;
  max-width: 309px;
}
@media only screen and (max-width: 767px) {
  .header__logo img {
    max-width: 180px;
  }
}

.footer {
  overflow: hidden;
  position: relative;
  padding: 110px 0 48px;
  background-color: #303B49;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 90px;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(../images/common/bg_grade.webp);
  transform: scale(1.3);
  opacity: 0.05;
}
.footer > * {
  position: relative;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    gap: 32px;
  }
}
.footer__nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .footer__nav__list {
    gap: 24px;
  }
}
.footer__nav__list li {
  text-align: center;
}
.footer__nav__list li a {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer__nav__list li a {
    font-size: 13px;
  }
}
.footer__nav__list li a[target=_blank] {
  padding-right: 20px;
}
.footer__nav__list li a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  -webkit-mask-image: url(../images/common/icon_external-link.svg);
          mask-image: url(../images/common/icon_external-link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
}
.footer__copyright {
  display: block;
  margin-top: 64px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: #B7BCC4;
}
@media only screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 48px;
    font-size: 10px;
  }
}
.footer__logo {
  margin-top: 64px;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    margin-top: 48px;
  }
}
.footer__logo img {
  width: 100%;
  filter: invert(1) grayscale(1);
  opacity: 0.07;
}

/* opening */
.opening {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to bottom, #1F2833 0%, #1F2833 28%, #414E60 100%);
}
.opening__ufo {
  position: absolute;
  width: 590px;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .opening__ufo {
    width: 450px;
  }
}
.opening__txt {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .opening__txt {
    transform: scale(0.8);
  }
}
.opening__txt__title {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .opening__txt__title {
    margin: 0 auto;
  }
}
.opening__txt__desc {
  text-align: center;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .opening__txt__desc {
    margin-top: 40px;
  }
}
.opening__txt__desc p + p {
  margin-top: 30px;
}
.opening__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1216px;
  transform: translate(-50%, -50%);
}
.opening__antenna {
  position: absolute;
  right: calc(50% + 50px);
  bottom: -128px;
  width: 333px;
  z-index: 3;
}

/* アニメーション */
body:has(.js-opening) {
  /* UFO: 勢いよく降りてきてフワッと減速 */
}
body:has(.js-opening) .js-opening-ufo {
  opacity: 0;
  transform: translate(-50%, -100%);
  transition: transform 2.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease-out;
}
body:has(.js-opening) .js-opening-ufo.is-show {
  transform: translate(-50%, -60%);
  opacity: 0.4;
}
body:has(.js-opening) {
  /* タイトル: ふわっと浮かび上がる */
}
body:has(.js-opening) .js-opening-txt-title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0, 0, 0.2, 1), transform 0.8s cubic-bezier(0, 0, 0.2, 1);
}
body:has(.js-opening) .js-opening-txt-title.is-show {
  opacity: 1;
  transform: none;
}
body:has(.js-opening) {
  /* 説明文: 1行ずつ浮かび上がる */
}
body:has(.js-opening) .js-opening-txt-desc p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0, 0, 0.2, 1), transform 0.8s cubic-bezier(0, 0, 0.2, 1);
}
body:has(.js-opening) .js-opening-txt-desc p.is-show {
  opacity: 1;
  transform: none;
}
body:has(.js-opening) {
  /* アンテナ: にゅっと伸びて少しオーバーシュート */
}
body:has(.js-opening) .js-opening-antenna {
  transform: translateY(100%);
  transition: transform 2.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body:has(.js-opening) .js-opening-antenna.is-show {
  transform: translateY(0);
}
body:has(.js-opening) {
  /* Bigタコ: スムーズに浮上 */
}
body:has(.js-opening) .js-opening-bigtako {
  transform: translateY(100px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
body:has(.js-opening) .js-opening-bigtako.is-show {
  transform: translateY(0);
}

/* アンカー付き遷移時はトランジションを無効化 */
body.is-skip-opening:has(.js-opening) .js-opening-ufo,
body.is-skip-opening:has(.js-opening) .js-opening-antenna,
body.is-skip-opening:has(.js-opening) .js-opening-txt-title,
body.is-skip-opening:has(.js-opening) .js-opening-txt-desc p {
  transition: none !important;
}

/* .js-pagelayout までスクロールしたら body.is-fixed-pagelayout がつく */
body.is-fixed-pagelayout .pagelayout__center__takoashi__top {
  position: fixed;
}
body.is-fixed-pagelayout .pagelayout__center__takoashi__bottom {
  position: fixed;
}
body.is-fixed-pagelayout .pagelayout__center__ufo {
  opacity: 1;
  top: -20px;
}
body.is-fixed-pagelayout .menu-main-fix {
  opacity: 1;
}

/* .pagelayout */
.pagelayout {
  position: relative;
  z-index: 2;
}
.pagelayout__head {
  z-index: -1;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: #414E60;
  background-image: url(../images/common/bg_bigtako_pc.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .pagelayout__head {
    height: 110px;
    background-image: url(../images/common/bg_bigtako_tab.webp);
  }
}
@media only screen and (max-width: 767px) {
  .pagelayout__head {
    height: 60px;
    background-image: url(../images/common/bg_bigtako_sp.webp);
  }
}
.pagelayout__head__bigtako {
  position: absolute;
  left: 50%;
  width: 1544px;
  margin-top: -120px;
  transform: translateX(calc(-50% + 55px));
}
.pagelayout__side {
  position: sticky;
  top: 150px; /* headの高さ */
  left: 0;
  width: 100%;
  height: calc(100svh - 150px);
  display: flex;
  background-color: #DBDEE1;
}
.pagelayout__side:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg_pagelayout_side.png) lightgray no-repeat;
  background-size: 410px auto;
  background-repeat: repeat-x;
  background-position: bottom center;
  background-blend-mode: soft-light;
  opacity: 0.15;
}
.pagelayout__side:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg_pattern.webp);
  background-size: 48px;
  mix-blend-mode: color-dodge;
  opacity: 0.1;
}
.pagelayout__side__spacer {
  width: 620px;
}
.pagelayout__side__content {
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  padding: 40px clamp(0px, 9.75%, 40px);
}
.pagelayout__side__left, .pagelayout__side__right {
  position: relative;
  z-index: 1;
  width: calc((100% - 620px) / 2); /* spacerの幅を除いて半分 */
}
.pagelayout__side__left .pagelayout__side__content {
  padding-top: 24px;
  margin-left: auto;
}
.pagelayout__side__right .pagelayout__side__content {
  margin-right: auto;
}
.pagelayout__center {
  pointer-events: none;
  position: relative;
  margin-top: -100svh; /* head+sideの高さ */
}
@media only screen and (max-width: 1024px) {
  .pagelayout__center {
    margin-top: -110px; /* headの高さ */
  }
}
@media only screen and (max-width: 767px) {
  .pagelayout__center {
    margin-top: -60px; /* headの高さ */
  }
}
.pagelayout__center__outer {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding-top: 100px; /* 画面上部〜ビル上部までの距離 */
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .pagelayout__center__outer {
    max-width: none;
    padding-top: 85px; /* 画面上部〜ビル上部までの距離 */
  }
}
@media only screen and (max-width: 767px) {
  .pagelayout__center__outer {
    padding-top: 50px; /* 画面上部〜ビル上部までの距離 */
  }
}
.pagelayout__center__inner {
  position: relative;
  padding-top: 25px; /* ビル上面 */
  padding-right: 32px; /* ビル側面 */
}
@media only screen and (max-width: 767px) {
  .pagelayout__center__inner {
    padding-top: 10px; /* ビル上面 */
    padding-right: 16px; /* ビル側面 */
  }
}
.pagelayout__center__main {
  background-color: #fff;
}
.pagelayout__center__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 60px auto;
  background-image: url(../images/common/bg_pattern.webp);
  opacity: 0.03;
}
.pagelayout__center__main .main {
  position: relative;
}
.pagelayout__center__build {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.pagelayout__center__build__top {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 25px;
  display: block;
  background-image: url(../images/common/bg_pagelayout_build_top.png);
  background-color: #DBDEE1;
  background-position: center;
  background-size: 100% auto;
  clip-path: polygon(32px 0, 100% 0, calc(100% - 32px) 100%, 0 100%);
}
@media only screen and (max-width: 767px) {
  .pagelayout__center__build__top {
    height: 10px;
    clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  }
}
.pagelayout__center__build__side:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 100%;
  background: url(../images/common/bg_pagelayout_build_side01.png);
  background-size: 100% auto;
  background-position: top;
}
@media only screen and (max-width: 767px) {
  .pagelayout__center__build__side:before {
    width: 16px;
  }
}
.pagelayout__center__build__side:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: calc(100% - 1138px);
  background: url(../images/common/bg_pagelayout_build_side02.png);
  background-size: 100% auto;
  background-position: top;
}
@media only screen and (max-width: 767px) {
  .pagelayout__center__build__side:after {
    width: 16px;
    height: calc(100% - 565px);
  }
}
.pagelayout__center__ufo {
  position: fixed;
  top: -35px;
  left: 50%;
  width: 80%;
  max-width: 550px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  z-index: 3;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .pagelayout__center__ufo {
    max-width: 320px;
  }
}
.pagelayout__center__antenna {
  z-index: 2;
  position: absolute;
  top: -387px;
  left: -73px;
  width: 333px;
}
@media only screen and (max-width: 1024px) {
  .pagelayout__center__antenna {
    width: 264px;
    left: -30px;
    top: -296px;
  }
}
@media only screen and (max-width: 767px) {
  .pagelayout__center__antenna {
    width: 160px;
    left: -16px;
    top: -186px;
  }
}
.pagelayout__center__takoashi__top {
  z-index: 99;
  position: absolute;
  top: 125px;
  left: calc(50% + 241px);
  width: 112px;
  pointer-events: none;
}
.pagelayout__center__takoashi__bottom {
  z-index: 99;
  position: absolute;
  top: calc(100vh - 150px);
  right: calc(50% - 34px);
  width: 400px;
  pointer-events: none;
}

/* メニューを開いたら body.is-menu-main-open がつく */
body.is-open-menu-main {
  overflow: hidden;
}

/* menu-main-button */
.menu-main-button {
  position: relative;
  top: 50px;
  width: 100%;
  height: 100%;
  display: block;
  width: 54px;
  height: 54px;
  margin-left: auto;
  background-image: url(../images/common/bg_menu_main.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-main-button {
    transform: scale(1.4);
  }
}
@media only screen and (max-width: 767px) {
  .menu-main-button {
    top: 35px;
  }
}
.menu-main-button span {
  display: block;
  position: absolute;
  top: calc(50% - 1.5px);
  left: calc(50% - 10px);
  width: 20px;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
}
.menu-main-button span:first-child {
  margin-top: -5px;
}
.menu-main-button span:last-child {
  margin-top: 5px;
}
.menu-main-button.is-open span:first-child {
  margin: 0;
  transform: rotate(45deg);
}
.menu-main-button.is-open span:last-child {
  margin: 0;
  transform: rotate(-45deg);
}

/* menu-main-buttonwrap */
.menu-main-buttonwrap {
  z-index: 99;
  position: sticky;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
}
@media only screen and (max-width: 1024px) {
  .menu-main-buttonwrap {
    z-index: 98;
  }
}
@media only screen and (max-width: 767px) {
  .menu-main-buttonwrap {
    padding-right: 20px;
  }
}

/* menu-main-fix */
.menu-main-fix {
  z-index: 98;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.menu-main-fix__tako {
  width: 186px;
}
@media only screen and (max-width: 767px) {
  .menu-main-fix__tako {
    width: 96px;
  }
}
.menu-main-fix__button {
  overflow: hidden;
  position: relative;
  flex: 1;
  max-width: 370px;
  margin-bottom: 17px;
  padding: 14px 40px 14px 20px;
  background-color: #FF3F98;
  border-radius: 50px 0 0 50px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  white-space: nowrap;
  pointer-events: auto;
}
.menu-main-fix__button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 7px;
  width: 26px;
  height: 26px;
  display: block;
  background-image: url(../images/common/tako_suckers.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .menu-main-fix__button {
    max-width: 260px;
    padding-right: 30px;
    font-size: 13px;
  }
  .menu-main-fix__button::after {
    right: -5px;
    top: 5px;
    width: 21px;
    height: 21px;
  }
}

/* menu-main */
.menu-main {
  z-index: 98;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media only screen and (min-width: 1025px) {
  .menu-main.is-menu-main-open {
    opacity: 1;
  }
  .menu-main.is-menu-main-open .menu-main__content {
    pointer-events: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .menu-main.is-menu-main-open {
    opacity: 1;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .menu-main__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(67, 67, 67, 0.5);
  }
}
.menu-main__content {
  z-index: 2;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 1025px) {
  .menu-main__content {
    top: 0;
    left: -16px;
    height: 100svh;
    max-width: 588px; /* ビル側面32pxをマイナス */
  }
}
@media only screen and (max-width: 1024px) {
  .menu-main__content {
    top: 16px !important;
    width: calc(100% - 32px); /* 左右余白16pxずつマイナス */
    height: calc(100svh - 32px) !important;
    border-radius: 24px;
  }
}
.menu-main__top {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .menu-main__top {
    padding: 28px;
  }
}
.menu-main__top > * {
  position: relative;
}
.menu-main__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 60px auto;
  background-image: url(../images/common/bg_pattern.webp);
  opacity: 0.03;
  pointer-events: none;
}
.menu-main__bottom {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  padding: 16px 40px 40px;
  background-color: #F2F4F6;
}
@media only screen and (max-width: 767px) {
  .menu-main__bottom {
    gap: 32px 0;
    padding: 16px 28px 0;
  }
}
@media only screen and (min-width: 1025px) {
  .menu-main__logo a:hover {
    opacity: 1;
  }
}
.menu-main__logo img {
  width: 164px;
}
.menu-main__close {
  position: fixed;
  z-index: 99;
  top: 50px;
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-main__close {
    right: 72px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-main__close {
    top: 35px;
    right: 36px;
  }
}

/* menu-gnav */
.menu-gnav__list__item {
  border-bottom: 1px dashed #B7BCC4;
}
.menu-gnav__list__item > a {
  position: relative;
  display: block;
  padding: 28px 8px;
  font-family: "Mulish", "Noto Sans JP", "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (min-width: 1025px) {
  .menu-gnav__list__item > a:hover {
    opacity: 0.6;
  }
}
.menu-gnav__list__item:has(.menu-gnav__sublist) > a::before, .menu-gnav__list__item:has(.menu-gnav__sublist) > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -1.5px;
  width: 11px;
  height: 3px;
  background-color: #6E7989;
  transition: 0.3s ease;
}
.menu-gnav__list__item:has(.menu-gnav__sublist) > a::after {
  transform: rotate(-90deg);
}
.menu-gnav__list__item:has(.menu-gnav__sublist) > a.is-open::after {
  transform: rotate(0);
}
.menu-gnav__list__item:has(.menu-gnav__sublist) > a.is-open + .menu-gnav__sublist {
  max-height: 520px;
  padding-bottom: 28px;
}
.menu-gnav__sublist {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  max-height: 0;
  padding: 0 0 0 8px;
  overflow: hidden;
  transition: 0.3s ease;
}
.menu-gnav__sublist__item > a {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #4A586B;
}
.menu-gnav__sublist__item > a span {
  transition: opacity 0.3s ease;
}
.menu-gnav__sublist__item > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 100%;
  background-color: #929BA6;
  transition: background-color 0.3s ease;
}
@media only screen and (min-width: 1025px) {
  .menu-gnav__sublist__item > a:hover {
    opacity: 1;
  }
  .menu-gnav__sublist__item > a:hover span {
    opacity: 0.6;
  }
  .menu-gnav__sublist__item > a:hover::before {
    background-color: #FF3F98;
  }
}

/* menu-ctvbanner */
.menu-ctvbanner a {
  display: block;
  min-height: 87px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 4px;
}
@media only screen and (min-width: 1025px) {
  .menu-ctvbanner a:hover {
    opacity: 0.8;
  }
}
.menu-ctvbanner img {
  max-width: 120px;
}

/* menu-sns */
.menu-sns__list {
  display: flex;
  gap: 8px;
}
.menu-sns__list__item {
  flex: 1;
}
.menu-sns__list__item a {
  min-height: 43px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 8px 20px;
  background-color: #fff;
  border: 1px solid #DBDEE1;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}
@media only screen and (min-width: 1025px) {
  .menu-sns__list__item a:hover {
    opacity: 0.8;
  }
}
.menu-sns__list__item a::after {
  content: "";
  width: 15px;
  height: 15px;
  transform: rotate(-45deg);
  -webkit-mask-image: url(../images/common/icon_arrow_right.svg);
          mask-image: url(../images/common/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #FF3F98;
}

/* menu-buttons */
.menu-buttons__title .c-title-withimg__title {
  font-size: 13px;
}
.menu-buttons__title .c-title-withimg__img {
  margin-top: 16px;
}
.menu-buttons__list {
  display: flex;
  flex-direction: column;
  margin: 24px auto 0;
  gap: 16px 0;
}
.menu-buttons__list__item a {
  padding: 20px 24px;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .menu-buttons__list__item a {
    padding: 16px 24px;
  }
}

/* menu-entry */
.menu-entry__title .c-title-withimg__img {
  max-width: 156px;
  width: 52%;
}
@media only screen and (max-width: 767px) {
  .menu-entry__title .c-title-withimg__img {
    max-width: 139px;
    width: 46.02%;
  }
}

/* menu-mypage */
.menu-mypage__title .c-title-withimg__img {
  max-width: 197px;
  width: 65.66%;
}
@media only screen and (max-width: 767px) {
  .menu-mypage__title .c-title-withimg__img {
    max-width: 176px;
    width: 58.27%;
  }
}

/* menu-chara */
@keyframes menu-chara-serif-loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes menu-chara-serif-loop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.menu-chara__serif {
  position: relative;
  background-color: #A5DA00;
  max-width: 181px;
  height: 32px;
  border-radius: 100px;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .menu-chara__serif {
    width: 65.23%;
    max-width: 197px;
    height: 36px;
    margin-left: 0;
  }
}
.menu-chara__serif::before {
  content: "";
  position: absolute;
  right: 65px;
  bottom: -8px;
  display: block;
  width: 11px;
  height: 9px;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2211%22%20height%3D%229%22%20viewBox%3D%220%200%2011%209%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%200L8.88219%208.6439C9.66356%209.40431%2011%208.86633%2011%207.79036V0H0Z%22%20fill%3D%22%23A5DA00%22%2F%3E%3C%2Fsvg%3E");
}
@media only screen and (max-width: 767px) {
  .menu-chara__serif::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%229%22%20viewBox%3D%220%200%2016%209%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%207.45557L13.5972%208.96644C14.7933%209.09935%2015.5931%207.72484%2014.8638%206.7874L9.58373%206.94153e-05L0%207.45557Z%22%20fill%3D%22%23A5DA00%22%2F%3E%3C%2Fsvg%3E");
    background-position: right bottom;
    right: -2px;
    bottom: 2px;
  }
}
.menu-chara__serif__loop {
  display: flex;
  height: 100%;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.menu-chara__serif__loop span {
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  padding-left: 10px;
}
.menu-chara__serif__loop span:nth-child(odd) {
  animation: menu-chara-serif-loop 30s -15s linear infinite;
}
.menu-chara__serif__loop span:nth-child(even) {
  animation: menu-chara-serif-loop2 30s linear infinite;
}
@media only screen and (max-width: 1024px) {
  .menu-chara__serif__loop span {
    font-size: 12px;
  }
}
.menu-chara__img {
  margin-top: 10px;
  max-width: 80px;
  margin-left: auto;
  margin-right: 16px;
  aspect-ratio: 89/103;
}
@media only screen and (max-width: 1024px) {
  .menu-chara__img {
    max-width: 89px;
    margin-top: -30px;
    margin-right: 0;
    aspect-ratio: 89/75;
  }
}
.menu-chara__img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .menu-chara__img img {
    -o-object-position: top center;
       object-position: top center;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-button-arrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 16px;
  min-height: 57px;
  padding: 16px 32px;
  background-color: #fff;
  border: 2px solid #DBDEE1;
  border-radius: 100px;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .c-button-arrow {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.c-button-arrow span {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #1F2833;
}
.c-button-arrow::after {
  content: "";
  width: 15px;
  height: 15px;
  -webkit-mask-image: url(../images/common/icon_arrow_right.svg);
          mask-image: url(../images/common/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #6B7EFC;
}
@media only screen and (min-width: 1025px) {
  .c-button-arrow:hover {
    opacity: 1;
    border-color: #6B7EFC;
  }
}
.c-button-arrow {
  /* 矢印 */
}
.c-button-arrow[target=_blank]::after {
  transform: rotate(-45deg);
}
.c-button-arrow {
  /* カラバリ */
}
.c-button-arrow.--green::after {
  background-color: #92C000;
}
@media only screen and (min-width: 1025px) {
  .c-button-arrow.--green:hover {
    border-color: #A5DA00;
  }
}
.c-button-arrow.--pink::after {
  background-color: #FF72B3;
}
@media only screen and (min-width: 1025px) {
  .c-button-arrow.--pink:hover {
    border-color: #FF72B3;
  }
}
.c-button-arrow.--orange::after {
  background-color: #FFAB05;
}
@media only screen and (min-width: 1025px) {
  .c-button-arrow.--orange:hover {
    border-color: #FFAB05;
  }
}
.c-button-arrow.--blue::after {
  background-color: #1CD4B0;
}
@media only screen and (min-width: 1025px) {
  .c-button-arrow.--blue:hover {
    border-color: #1CD4B0;
  }
}
.c-button-arrow.--purple::after {
  background-color: #6B7EFC;
}
@media only screen and (min-width: 1025px) {
  .c-button-arrow.--purple:hover {
    border-color: #6B7EFC;
  }
}

.c-title-withimg {
  text-align: center;
}
.c-title-withimg__title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .c-title-withimg__title {
    font-size: 15px;
  }
}
.c-title-withimg__title::before {
  content: "\\";
}
.c-title-withimg__title::after {
  content: "/";
}
.c-title-withimg__img {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .c-title-withimg__img {
    margin-top: 16px;
  }
}
.c-title-withimg {
  /* カラバリ */
}
.c-title-withimg.--pink .c-title-withimg__title {
  color: #FF72B3;
}
.c-title-withimg.--orange .c-title-withimg__title {
  color: #FFAB05;
}
.c-title-withimg.--blue .c-title-withimg__title {
  color: #1CD4B0;
}
.c-title-withimg.--purple .c-title-withimg__title {
  color: #6B7EFC;
}

.s-breadcrumb {
  padding: 15px 0 24px;
}
@media only screen and (max-width: 767px) {
  .s-breadcrumb {
    padding-top: 0;
  }
}
.s-breadcrumb__list {
  display: flex;
}
.s-breadcrumb__list > li {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  font-family: "Mulish", "Noto Sans JP", "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .s-breadcrumb__list > li {
    font-size: 11px;
  }
}
.s-breadcrumb__list > li:not(:first-child) {
  padding-left: 20px;
}
.s-breadcrumb__list > li:not(:first-child)::before {
  content: "/";
  position: absolute;
  left: 0;
  margin: 0 8px;
}
.s-breadcrumb__list > li a {
  text-decoration: underline;
}
.s-breadcrumb__list > li span {
  opacity: 0.3;
}

.s-entry-cta {
  overflow: hidden;
  position: relative;
  padding: 64px 0 0;
  background-color: #fff;
  border-top: 1px dashed #B7BCC4;
}
@media only screen and (max-width: 767px) {
  .s-entry-cta {
    padding-top: 56px;
  }
}
.s-entry-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(../images/common/bg_grade.webp);
  filter: invert(1);
  transform: scale(1.4);
  opacity: 0.05;
}
.s-entry-cta > * {
  position: relative;
}
.s-entry-cta__title .c-title-withimg__img {
  max-width: 212px;
  width: 41.73%;
}
@media only screen and (max-width: 767px) {
  .s-entry-cta__title .c-title-withimg__img {
    max-width: 164px;
    width: 48.95%;
  }
}
.s-entry-cta__button {
  max-width: 218px;
  margin: 32px auto 0;
}
@media only screen and (max-width: 767px) {
  .s-entry-cta__button {
    max-width: 192px;
    margin-top: 24px;
  }
}
.s-entry-cta__illust {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 298px;
  margin-top: 32px;
  border-radius: 8px 8px 0 0;
  background-color: #394555;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .s-entry-cta__illust {
    min-height: 353px;
  }
}
@media only screen and (max-width: 767px) {
  .s-entry-cta__illust {
    min-height: 200px;
    margin-top: 24px;
  }
}
.s-entry-cta__illust__door__left, .s-entry-cta__illust__door__right {
  z-index: 1;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(183, 219, 255, 0.8);
  transition: 0.5s ease;
}
.s-entry-cta__illust__door__left:first-child, .s-entry-cta__illust__door__right:first-child {
  left: 0;
  border-radius: 0px 8px 0 0;
  border-right: 1px solid #394555;
}
.s-entry-cta__illust__door__left:last-child, .s-entry-cta__illust__door__right:last-child {
  right: 0;
  border-radius: 8px 0 0 0;
  border-left: 1px solid #394555;
}
.s-entry-cta__illust__tako {
  width: 90%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .s-entry-cta__illust__tako {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .s-entry-cta__illust__tako {
    width: 80%;
  }
}
.s-entry-cta__illust.is-visible .s-entry-cta__illust__door__left {
  left: -30%;
  border-color: transparent;
}
.s-entry-cta__illust.is-visible .s-entry-cta__illust__door__right {
  right: -30%;
  border-color: transparent;
}

.s-news-postlist__item {
  border-top: 1px dashed #B7BCC4;
}
.s-news-postlist__item > a,
.s-news-postlist__item > div {
  display: block;
  padding: 24px 16px;
}
@media only screen and (max-width: 767px) {
  .s-news-postlist__item > a,
  .s-news-postlist__item > div {
    padding: 24px 8px;
  }
}
@media only screen and (min-width: 1025px) {
  .s-news-postlist__item > a:hover {
    opacity: 1;
  }
  .s-news-postlist__item > a:hover .s-news-postlist__title {
    opacity: 0.5;
    text-decoration: underline;
  }
}
.s-news-postlist__info {
  display: flex;
  gap: 8px;
}
.s-news-postlist__info span {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-family: "Mulish", "Noto Sans JP", "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  border-radius: 50px;
}
.s-news-postlist__date {
  background-color: #F2F4F6;
  border: 1px solid #DBDEE1;
  color: #303B49;
}
.s-news-postlist__new {
  background-color: #FF3F98;
  color: #fff;
}
.s-news-postlist__title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .s-news-postlist__title {
    margin-top: 8px;
    font-size: 15px;
  }
}

body.top .pagelayout__center__main::before {
  display: none;
}

/* movie */
.top-movie {
  padding-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .top-movie {
    padding-bottom: 32px;
  }
}
.top-movie__player {
  overflow: hidden;
  margin-top: 28px;
  aspect-ratio: 560/320;
  border-radius: 24px;
  border: 5px solid #DBDEE1;
  background-color: #ccc;
}
@media only screen and (max-width: 767px) {
  .top-movie__player {
    margin-top: 20px;
    border-width: 3px;
    border-radius: 16px;
  }
}
.top-movie__player iframe {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

/* news */
.top-news {
  position: relative;
  padding: 72px 0;
  border-top: 1px dashed #B7BCC4;
  border-bottom: 1px dashed #B7BCC4;
}
@media only screen and (max-width: 767px) {
  .top-news {
    padding: 48px 0 56px;
  }
}
.top-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 60px auto;
  background-image: url(../images/common/bg_pattern.webp);
  opacity: 0.03;
}
.top-news > * {
  position: relative;
}
.top-news__title .c-title-withimg__img {
  max-width: 186px;
  width: 36.61%;
}
@media only screen and (max-width: 767px) {
  .top-news__title .c-title-withimg__img {
    max-width: 143px;
    width: 42.68%;
  }
}
.top-news__postlist {
  margin-top: 32px;
}
.top-news__more {
  max-width: 218px;
  margin: 32px auto 0;
}
@media only screen and (max-width: 767px) {
  .top-news__more {
    max-width: 192px;
    margin-top: 16px;
  }
}

/* interview */
.top-interview {
  padding: 56px 0 0;
}
@media only screen and (max-width: 767px) {
  .top-interview {
    padding-top: 48px;
  }
}
.top-interview__title .c-title-withimg__img {
  max-width: 357px;
  width: 70.27%;
}
@media only screen and (max-width: 767px) {
  .top-interview__title .c-title-withimg__img {
    max-width: 247px;
    width: 73.73%;
  }
}
.top-interview__cardlist {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist {
    margin-top: 32px;
  }
}
.top-interview__cardlist__item {
  border-top: 1px solid #B7BCC4;
}
.top-interview__cardlist__item a {
  display: block;
  margin: 0 40px;
  padding: 32px 32px 56px;
  border-left: 1px solid #B7BCC4;
  border-right: 1px solid #B7BCC4;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item a {
    margin: 0 16px;
    padding: 24px 24px 32px;
  }
}
@media (max-width: 375px) {
  .top-interview__cardlist__item a {
    padding: 16px 16px 24px;
  }
}
@media only screen and (min-width: 1025px) {
  .top-interview__cardlist__item a:hover {
    opacity: 1;
  }
  .top-interview__cardlist__item a:hover .top-interview__cardlist__image__photo img {
    transform: scale(1.1);
  }
}
.top-interview__cardlist__image {
  position: relative;
}
.top-interview__cardlist__image__photo {
  z-index: 1;
  position: relative;
  width: 86.88%;
  max-width: 384px;
  aspect-ratio: 384/420;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__image__photo {
    width: 73.97%;
    aspect-ratio: 1/1;
  }
}
.top-interview__cardlist__image__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__image__photo img {
    -o-object-position: top center;
       object-position: top center;
  }
}
.top-interview__cardlist__image__job {
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
  width: 100%;
  transform: rotate(90deg);
  transform-origin: top left;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__image__job {
    right: -100%;
  }
}
.top-interview__cardlist__image__job img {
  filter: invert(1);
  max-width: none;
  opacity: 0.15;
}
.top-interview__cardlist__image__tako {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
}
.top-interview__cardlist__name {
  margin-top: 16px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__name {
    margin-top: 12px;
    font-size: 22px;
  }
}
.top-interview__cardlist__info {
  margin-top: 12px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  border-top: 1px solid #B7BCC4;
  border-bottom: 1px solid #B7BCC4;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__info {
    font-size: 12px;
  }
}
.top-interview__cardlist__info > div {
  padding: 16px 40px 16px 24px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__info > div {
    padding: 12px 10px;
  }
}
.top-interview__cardlist__info > div:not(:first-child) {
  border-left: 1px solid #B7BCC4;
}
.top-interview__cardlist__info dt::after {
  content: "：";
}
.top-interview__cardlist__desc {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__desc {
    margin-top: 16px;
  }
}
.top-interview__cardlist {
  /* アイテムごとの調整 */
}
.top-interview__cardlist__item.--announcer .top-interview__cardlist__image__job img {
  width: 460px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--announcer .top-interview__cardlist__image__job img {
    width: 250px;
  }
}
.top-interview__cardlist__item.--announcer .top-interview__cardlist__image__tako {
  right: -25px;
  bottom: -55px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--announcer .top-interview__cardlist__image__tako {
    right: 10px;
    bottom: -40px;
  }
}
.top-interview__cardlist__item.--announcer .top-interview__cardlist__image__tako img {
  width: 187px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--announcer .top-interview__cardlist__image__tako img {
    width: 130px;
  }
}
.top-interview__cardlist__item.--sales .top-interview__cardlist__image__job img {
  width: 440px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--sales .top-interview__cardlist__image__job img {
    width: 240px;
  }
}
.top-interview__cardlist__item.--sales .top-interview__cardlist__image__tako {
  right: -15px;
  bottom: -45px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--sales .top-interview__cardlist__image__tako {
    right: 20px;
    bottom: -30px;
  }
}
.top-interview__cardlist__item.--sales .top-interview__cardlist__image__tako img {
  width: 165px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--sales .top-interview__cardlist__image__tako img {
    width: 117px;
  }
}
.top-interview__cardlist__item.--journalist .top-interview__cardlist__image__job img {
  width: 460px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--journalist .top-interview__cardlist__image__job img {
    width: 250px;
  }
}
.top-interview__cardlist__item.--journalist .top-interview__cardlist__image__tako {
  right: -10px;
  bottom: -45px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--journalist .top-interview__cardlist__image__tako {
    right: 10px;
    bottom: -40px;
  }
}
.top-interview__cardlist__item.--journalist .top-interview__cardlist__image__tako img {
  width: 164px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--journalist .top-interview__cardlist__image__tako img {
    width: 121px;
  }
}
.top-interview__cardlist__item.--director .top-interview__cardlist__image__job img {
  width: 390px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--director .top-interview__cardlist__image__job img {
    width: 230px;
  }
}
.top-interview__cardlist__item.--director .top-interview__cardlist__image__tako {
  right: -15px;
  bottom: -65px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--director .top-interview__cardlist__image__tako {
    right: 3px;
    bottom: -45px;
  }
}
.top-interview__cardlist__item.--director .top-interview__cardlist__image__tako img {
  width: 171px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--director .top-interview__cardlist__image__tako img {
    width: 125px;
  }
}
.top-interview__cardlist__item.--event .top-interview__cardlist__image__job img {
  width: 440px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--event .top-interview__cardlist__image__job img {
    width: 260px;
  }
}
.top-interview__cardlist__item.--event .top-interview__cardlist__image__tako {
  right: -35px;
  bottom: -40px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--event .top-interview__cardlist__image__tako {
    right: -15px;
    bottom: -30px;
  }
}
.top-interview__cardlist__item.--event .top-interview__cardlist__image__tako img {
  width: 175px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--event .top-interview__cardlist__image__tako img {
    width: 139px;
  }
}
.top-interview__cardlist__item.--museum .top-interview__cardlist__image__job img {
  width: 395px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--museum .top-interview__cardlist__image__job img {
    width: 240px;
  }
}
.top-interview__cardlist__item.--museum .top-interview__cardlist__image__tako {
  right: -15px;
  bottom: -30px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--museum .top-interview__cardlist__image__tako {
    right: -8px;
    bottom: -25px;
  }
}
.top-interview__cardlist__item.--museum .top-interview__cardlist__image__tako img {
  width: 148px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--museum .top-interview__cardlist__image__tako img {
    width: 117px;
  }
}
.top-interview__cardlist__item.--audio .top-interview__cardlist__image__job img {
  width: 430px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--audio .top-interview__cardlist__image__job img {
    width: 235px;
  }
}
.top-interview__cardlist__item.--audio .top-interview__cardlist__image__tako {
  right: -15px;
  bottom: -15px;
}
@media only screen and (max-width: 767px) {
  .top-interview__cardlist__item.--audio .top-interview__cardlist__image__tako {
    right: -10px;
    bottom: -20px;
  }
}
.top-interview__cardlist__item.--audio .top-interview__cardlist__image__tako img {
  width: 126px;
}

/* news */
.entry-news {
  padding: 32px 0 72px;
  border-bottom: 1px dashed #B7BCC4;
}
@media only screen and (max-width: 767px) {
  .entry-news {
    padding: 32px 0 56px;
  }
}
.entry-news__title .c-title-withimg__img {
  max-width: 188px;
  width: 37%;
}
@media only screen and (max-width: 767px) {
  .entry-news__title .c-title-withimg__img {
    max-width: 144px;
    width: 42.98%;
  }
}
.entry-news__lead {
  margin-top: 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .entry-news__lead {
    margin-top: 40px;
    font-size: 15px;
  }
}
.entry-news__postlist {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .entry-news__postlist {
    margin-top: 40px;
  }
}
.entry-news__more {
  max-width: 188px;
  margin: 32px auto 0;
}
@media only screen and (max-width: 767px) {
  .entry-news__more {
    max-width: 160px;
    margin-top: 24px;
  }
}
.entry-news__more button {
  width: 100%;
}
.entry-news__more button::after {
  transform: rotate(90deg);
}
.entry-news__more.is-hide {
  display: none;
}
.entry-news__more.is-open button::after {
  transform: rotate(-90deg);
}

/* recruitment */
.entry-recruitment__title {
  text-align: center;
}
.entry-recruitment__title__en {
  font-family: "Mulish", "Noto Sans JP", "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #FF72B3;
}
.entry-recruitment__title__ja {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__title__ja {
    font-size: 20px;
  }
}
.entry-recruitment__sec {
  padding: 64px 30px;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__sec {
    padding: 48px 8px;
  }
}
.entry-recruitment__sec:not(:first-child) {
  border-top: 1px dashed #B7BCC4;
}
.entry-recruitment__body {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body {
    margin-top: 16px;
  }
}
.entry-recruitment__body p {
  font-size: 16px;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body p {
    font-size: 14px;
    line-height: 1.85;
  }
}
.entry-recruitment__body p + p {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body p + p {
    margin-top: 16px;
  }
}
.entry-recruitment__body h3 {
  margin: 64px 0 24px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #FF3F98;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body h3 {
    font-size: 20px;
  }
}
.entry-recruitment__body h4 {
  position: relative;
  padding-left: 30px;
  margin: 64px 0 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body h4 {
    font-size: 18px;
  }
}
.entry-recruitment__body h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 23px;
  height: 23px;
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2223%22%20height%3D%2223%22%20viewBox%3D%220%200%2023%2023%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_2471_29404)%22%3E%3Cpath%20d%3D%22M22.9993%2011.4998C22.9993%2012.3266%2021.0262%2012.9158%2020.8546%2013.6872C20.6767%2014.4847%2022.2018%2015.8908%2021.8618%2016.6135C21.5155%2017.3458%2019.4916%2016.9976%2018.9991%2017.629C18.5067%2018.2605%2019.2851%2020.207%2018.6687%2020.7115C18.0555%2021.2128%2016.3747%2020.0052%2015.6599%2020.3567C14.9577%2020.705%2014.837%2022.8045%2014.0554%2022.9868C13.2992%2023.1626%2012.3047%2021.3267%2011.4977%2021.3267C10.6907%2021.3267%209.69301%2023.1626%208.94001%2022.9868C8.16159%2022.8045%208.04085%2020.705%207.33551%2020.3567C6.62063%2020.0019%204.94305%2021.2128%204.32666%2020.7115C3.71028%2020.207%204.4887%2018.2605%203.99623%2017.629C3.50694%2017.0008%201.47986%2017.3458%201.13354%2016.6135C0.79358%2015.8941%202.31865%2014.4879%202.14073%2013.6872C1.96916%2012.9125%20-0.00390625%2012.3266%20-0.00390625%2011.4998C-0.00390625%2010.673%201.96916%2010.0839%202.14073%209.31244C2.31865%208.51496%200.79358%207.10879%201.13354%206.38618C1.47986%205.65379%203.50376%206.00208%203.99623%205.37061C4.4887%204.73913%203.71028%202.79263%204.32666%202.2881C4.93987%201.78683%206.62063%202.99444%207.33551%202.6429C8.04085%202.29461%208.16159%200.191865%208.94001%200.0128384C9.69619%20-0.162933%2010.6907%201.6729%2011.4977%201.6729C12.3047%201.6729%2013.3024%20-0.162933%2014.0585%200.0128384C14.837%200.19512%2014.9609%202.29461%2015.663%202.6429C16.3779%202.9977%2018.0555%201.78683%2018.6719%202.2881C19.2883%202.79263%2018.5098%204.73913%2019.0023%205.37061C19.4916%205.99883%2021.5187%205.65379%2021.865%206.38618C22.205%207.10554%2020.6799%208.51171%2020.8578%209.31244C21.0294%2010.0871%2023.0024%2010.673%2023.0024%2011.4998H22.9993Z%22%20fill%3D%22%23A5DA00%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_2471_29404%22%3E%3Crect%20width%3D%2223%22%20height%3D%2223%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body h4::before {
    width: 20px;
    height: 20px;
  }
}
.entry-recruitment__body table {
  margin-top: 16px;
  border: 1px solid #B7BCC4;
}
.entry-recruitment__body table th,
.entry-recruitment__body table td {
  border-top: 1px solid #B7BCC4;
  font-size: 16px;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body table th,
  .entry-recruitment__body table td {
    display: block;
    font-size: 15px;
  }
}
.entry-recruitment__body table th {
  width: 30%;
  padding: 24px;
  background-color: #DBDEE1;
  font-weight: 700;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body table th {
    width: 100%;
    padding: 15px 20px;
  }
}
.entry-recruitment__body table td {
  padding: 24px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .entry-recruitment__body table td {
    width: 100%;
    padding: 20px;
    border-top: none;
  }
}
.entry-recruitment__body table td p + p {
  margin-top: 8px;
}
.entry-recruitment__body table td a {
  font-weight: 700;
  color: #FF3F98;
  text-decoration: underline;
}
.entry-recruitment__body table td a[target=_blank]::after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  transform: rotate(-45deg);
  -webkit-mask-image: url(../images/common/icon_arrow_right.svg);
          mask-image: url(../images/common/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #FF3F98;
}
.entry-recruitment__body table td small {
  font-size: 13px;
  color: #6E7989;
}
.entry-recruitment__body .c-button-arrow {
  max-width: 173px;
  margin-left: auto;
  margin-right: auto;
}

/* mv */
.interview-mv__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 6.3%;
}
@media only screen and (max-width: 767px) {
  .interview-mv__row {
    gap: 0 8%;
  }
}
.interview-mv__image {
  position: relative;
  overflow: hidden;
  width: 75.6%;
  aspect-ratio: 384/466;
  border-radius: 24px;
  border: 4px solid #DBDEE1;
}
@media only screen and (max-width: 767px) {
  .interview-mv__image {
    width: 71.34%;
    aspect-ratio: 239/300;
    border-radius: 16px;
  }
}
.interview-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview-mv__image__text {
  position: absolute;
  left: 32px;
  bottom: 32px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .interview-mv__image__text {
    left: 25px;
    bottom: 25px;
  }
}
.interview-mv__image__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .interview-mv__image__name {
    font-size: 17px;
  }
}
.interview-mv__image__job {
  margin-top: 5px;
  font-family: "Mulish", "Noto Sans JP", "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 10px;
  font-weight: 700;
}
.interview-mv__copy {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .interview-mv__copy {
    padding-right: 6%;
  }
}

/* detail */
.interview-detail {
  margin-top: 40px;
  padding: 64px 0;
  border-top: 1px dashed #B7BCC4;
}
@media only screen and (max-width: 767px) {
  .interview-detail {
    margin-top: 32px;
    padding: 56px 0;
  }
}
.interview-detail__tako {
  z-index: 97;
  position: fixed;
  transition: transform 1s ease;
  pointer-events: none;
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako {
    left: calc(50% + 100px);
    width: 300px;
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako {
    right: -80px;
    width: 224px;
    bottom: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako.is-hide {
    transform: translateY(100%);
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako.is-hide {
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako.--announcer {
    width: 300px;
    left: calc(50% + 100px);
    bottom: -100px;
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako.--announcer {
    width: 224px;
    right: -80px;
  }
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako.--sales {
    width: 264px;
    left: calc(50% + 110px);
    bottom: -110px;
  }
  .interview-detail__tako.--sales img {
    transform: rotate(-15deg);
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako.--sales {
    width: 187px;
    right: -40px;
  }
  .interview-detail__tako.--sales img {
    transform: rotate(-15deg);
  }
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako.--journalist {
    width: 272px;
    left: calc(50% + 100px);
    bottom: -110px;
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako.--journalist {
    right: -60px;
    width: 211px;
  }
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako.--director {
    width: 376px;
    left: calc(50% + 70px);
    bottom: -70px;
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako.--director {
    right: -110px;
    width: 272px;
  }
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako.--event {
    width: 266px;
    left: calc(50% + 120px);
    bottom: -90px;
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako.--event {
    right: -35px;
    width: 180px;
  }
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako.--museum {
    width: 272px;
    left: calc(50% + 100px);
    bottom: -80px;
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako.--museum {
    right: -35px;
    width: 192px;
  }
}
@media only screen and (min-width: 1025px) {
  .interview-detail__tako.--audio {
    width: 329px;
    left: calc(50% + 50px);
    bottom: -120px;
  }
  .interview-detail__tako.--audio img {
    transform: rotate(10deg);
  }
}
@media only screen and (max-width: 1024px) {
  .interview-detail__tako.--audio {
    right: -80px;
    width: 247px;
  }
  .interview-detail__tako.--audio img {
    transform: rotate(5deg);
  }
}
.interview-detail__sec:not(:first-child) {
  margin-top: 64px;
}
.interview-detail__title {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid #DBDEE1;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .interview-detail__title {
    font-size: 21px;
  }
}
.interview-detail__title em {
  color: #FF3F98;
}
.interview-detail__title small {
  font-size: 18px;
  color: #6E7989;
}
@media only screen and (max-width: 767px) {
  .interview-detail__title small {
    font-size: 15px;
  }
}
.interview-detail__title::before, .interview-detail__title::after {
  content: "";
  position: absolute;
  left: 43px;
  width: 8px;
  height: 12px;
  display: block;
  background-color: #DBDEE1;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media only screen and (max-width: 767px) {
  .interview-detail__title::before, .interview-detail__title::after {
    left: 24px;
  }
}
.interview-detail__title::before {
  bottom: -12px;
}
.interview-detail__title::after {
  bottom: -9px;
  background-color: #fff;
}
.interview-detail__content {
  margin-top: 32px;
}
.interview-detail__content p {
  font-size: 16px;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .interview-detail__content p {
    font-size: 15px;
  }
}
.interview-detail__content p + p {
  margin-top: 16px;
}
.interview-detail__image {
  margin-top: 32px;
}
.interview-detail__image img {
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .interview-detail__image img {
    border-radius: 8px;
  }
}
.interview-detail__image + .interview-detail__image {
  margin-top: 8px;
}
.interview-detail__image.--half {
  width: 50%;
}

/* index */
.interview-index {
  padding-top: 64px;
  background-color: #fff;
  border-top: 1px dashed #B7BCC4;
}
@media only screen and (max-width: 767px) {
  .interview-index {
    padding-top: 56px;
  }
}
.interview-index__title .c-title-withimg__img {
  max-width: 346px;
  width: 58.84%;
}
@media only screen and (max-width: 767px) {
  .interview-index__title .c-title-withimg__img {
    max-width: 274px;
    width: 73.26%;
  }
}
.interview-index__cardlist {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.interview-index__cardlist__item {
  overflow: hidden;
  position: relative;
  width: 50%;
  border-top: 1px dashed #B7BCC4;
  border-right: 1px dashed #B7BCC4;
}
.interview-index__cardlist__item:nth-child(even) {
  border-right: none;
}
.interview-index__cardlist__item a {
  display: block;
  padding: 24px;
}
@media only screen and (min-width: 1025px) {
  .interview-index__cardlist__item a:hover {
    opacity: 1;
  }
  .interview-index__cardlist__item a:hover .interview-index__cardlist__image img {
    transform: scale(1.05);
  }
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__item a {
    padding: 16px;
  }
}
.interview-index__cardlist__image {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__image {
    border-radius: 8px;
    aspect-ratio: 155/160;
  }
}
.interview-index__cardlist__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.interview-index__cardlist__name {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__name {
    margin-top: 12px;
    font-size: 16px;
  }
}
.interview-index__cardlist__job {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__job {
    font-size: 10px;
  }
}
.interview-index__cardlist__job {
  /* カラバリ */
}
.interview-index__cardlist__job.--green {
  color: #92C000;
}
.interview-index__cardlist__job.--pink {
  color: #FF72B3;
}
.interview-index__cardlist__job.--orange {
  color: #FFAB05;
}
.interview-index__cardlist__job.--blue {
  color: #1CD4B0;
}
.interview-index__cardlist__job.--purple {
  color: #6B7EFC;
}
.interview-index__cardlist__tako {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 100px;
}
.interview-index__cardlist {
  /* アイテムごとの調整 */
}
.interview-index__cardlist__item.--announcer .interview-index__cardlist__tako {
  width: 65px;
  bottom: -8px;
  right: 35px;
  transform: rotate(5deg);
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__item.--announcer .interview-index__cardlist__tako {
    width: 50px;
    bottom: -10px;
    right: 20px;
    transform: none;
  }
}
.interview-index__cardlist__item.--sales .interview-index__cardlist__tako {
  width: 58px;
  bottom: -2px;
  right: 35px;
  transform: rotate(-3deg);
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__item.--sales .interview-index__cardlist__tako {
    width: 42px;
    bottom: -8px;
    right: 8px;
  }
}
.interview-index__cardlist__item.--journalist .interview-index__cardlist__tako {
  width: 60px;
  bottom: -10px;
  right: 45px;
  transform: rotate(10deg);
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__item.--journalist .interview-index__cardlist__tako {
    width: 42px;
    bottom: -5px;
    right: 18px;
  }
}
.interview-index__cardlist__item.--director .interview-index__cardlist__tako {
  width: 85px;
  bottom: -10px;
  right: 26px;
  transform: rotate(15deg);
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__item.--director .interview-index__cardlist__tako {
    width: 60px;
    bottom: -10px;
    right: 12px;
  }
}
.interview-index__cardlist__item.--event .interview-index__cardlist__tako {
  width: 55px;
  bottom: -10px;
  right: 39px;
  transform: rotate(5deg);
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__item.--event .interview-index__cardlist__tako {
    width: 35px;
    bottom: -10px;
    right: 19px;
  }
}
.interview-index__cardlist__item.--museum .interview-index__cardlist__tako {
  width: 50px;
  bottom: -2px;
  right: 27px;
  transform: rotate(10deg);
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__item.--museum .interview-index__cardlist__tako {
    width: 28px;
    bottom: -2px;
    right: 20px;
  }
}
.interview-index__cardlist__item.--audio .interview-index__cardlist__tako {
  width: 70px;
  bottom: 3px;
  right: 32px;
  transform: rotate(10deg);
}
@media only screen and (max-width: 767px) {
  .interview-index__cardlist__item.--audio .interview-index__cardlist__tako {
    width: 45px;
    bottom: 3px;
    right: 15px;
  }
}