@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_rock {
  overflow: hidden;
}

/**  common  **/
:root {
  --color-bg: #d9eaf7;
  --color-blue: #0073c8;
  --color-white: #fff;
  --color-shadow: #666;
  --color-bubble: #898989;
  --border-radius: 1.6rem;
}

body {
  background-color: var(--color-bg);
  background-image: url("../images/bg.gif");
  background-size: 16vw;
  font-family: "A1 Gothic L";
}
@media (min-width: 992px) {
  body {
    background-size: 5rem;
  }
}

header,
main {
  width: calc(100% - 4rem);
  margin-right: auto;
  margin-left: auto;
  max-width: 70rem;
  font-size: 1.3rem;
  letter-spacing: 0.075em;
}
@media (min-width: 600px) {
  header,
  main {
    font-size: 1.6rem;
  }
}

header {
  position: relative;
  line-height: 1.6;
  font-family: "A1 Gothic R";
}
header::before {
  content: "";
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  width: 100%;
  height: calc(100% + 0.4rem);
  transform: translateX(0.4rem);
  top: 0;
  background-color: var(--color-shadow);
  position: absolute;
  display: block;
}
header dl {
  background-color: var(--color-blue);
  color: var(--color-white);
  position: relative;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding: 3.2rem 2.4rem 2rem;
}
header dl:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.7rem;
  background-image: url("../images/line.svg");
  background-repeat: repeat-x;
  background-size: contain;
}
@media (min-width: 600px) {
  header dl {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 4.8rem;
    padding: 4.4rem 3.2rem 4rem;
    font-size: 1.5rem;
  }
}
header img {
  margin-bottom: 1.6rem;
}
@media (min-width: 600px) {
  header img {
    margin-bottom: 0;
  }
}

.controller {
  font-family: "A1 Gothic M";
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 600px) {
  .controller {
    font-size: 1.7rem;
    margin-top: 4rem;
    margin-bottom: 3.2rem;
  }
}
.controller ul {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
.controller button {
  height: 3.6rem;
  aspect-ratio: 186/72;
  color: var(--color-blue);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  .controller button {
    height: 4.8rem;
  }
}
.controller button.prev {
  background-image: url("../images/nav-btn-prev.svg");
  padding-left: 1em;
}
.controller button.next {
  background-image: url("../images/nav-btn-next.svg");
  padding-right: 1em;
}
.controller button.disabled {
  opacity: 0.3;
  pointer-events: none;
}

main ul {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.card {
  font-feature-settings: "palt";
  border-radius: var(--border-radius);
  position: relative;
  padding: 1.6rem;
  padding-bottom: 2.4rem;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-shadow);
  gap: 1.6rem;
}
.card::before {
  content: "";
  border-radius: inherit;
  width: 100%;
  height: 100%;
  transform: translate(0.4rem, 0.4rem);
  top: 0;
  left: 0;
  background-color: var(--color-shadow);
  position: absolute;
  display: block;
  z-index: -1;
}
@media (min-width: 600px) {
  .card {
    padding: 4rem;
    gap: 2rem;
  }
}

.movie {
  position: relative;
  margin-top: 2.8rem;
}
.movie::before {
  content: "";
  position: absolute;
  left: 0;
  --height: 2.8rem;
  top: calc((var(--height) - 1px) * -1);
  height: var(--height);
  aspect-ratio: 174/52;
  border-radius: inherit;
  display: block;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: 0;
}
@media (min-width: 600px) {
  .movie::before {
    --height: 4rem;
  }
}
.youtube .movie::before {
  background-image: url("../images/label-youtube.svg");
}
.instagram .movie::before {
  background-image: url("../images/label-instagram.svg");
}
.dokonoko .movie::before {
  background-image: url("../images/label-dokonoko.svg");
}
.other .movie::before {
  background-image: url("../images/label-other.svg");
}
.movie img,
.movie iframe,
.movie video {
  position: relative;
  width: 100%;
  z-index: 1;
}
.youtube .movie img,
.youtube .movie iframe,
.youtube .movie video {
  aspect-ratio: 16/9;
  height: auto;
}
.dokonoko .movie img,
.dokonoko .movie iframe,
.dokonoko .movie video {
  cursor: pointer;
}
.instagram .movie img,
.instagram .movie iframe,
.instagram .movie video {
  min-width: initial !important;
  max-width: initial !important;
}
.dokonoko .movie .user {
  position: absolute;
  margin: 0.8rem;
  padding: 0.4rem;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.8rem;
  z-index: 10;
  font-family: "A1 Gothic M";
  line-height: 1.1;
  border-radius: 4rem;
  color: var(--color-white);
  transition: all 0.2s;
}
@media (min-width: 600px) {
  .dokonoko .movie .user {
    margin: 0.8rem;
    padding: 0.8rem;
    gap: 0.8rem;
    color: inherit;
  }
}
.dokonoko .movie .user:hover {
  opacity: 1;
  background-color: #ffeb32;
  color: inherit;
}
.dokonoko .movie .user:hover .name {
  opacity: 1;
}
.dokonoko .movie .icon,
.dokonoko .movie .name {
  position: relative;
  z-index: 10;
}
.dokonoko .movie .icon {
  aspect-ratio: 1/1;
  width: 4rem;
  border-radius: 4rem;
  overflow: hidden;
}
.dokonoko .movie .name {
  padding-right: 0.8rem;
}
@media (min-width: 600px) {
  .dokonoko .movie .name {
    opacity: 0;
  }
}
.dokonoko .movie .name span,
.dokonoko .movie .name small {
  display: block;
}
@media (min-width: 600px) {
  .dokonoko .movie .name span,
  .dokonoko .movie .name small {
    display: inline;
  }
}

.title {
  display: grid;
  grid-template-columns: 1fr max-content;
}
.title .bubble {
  --border-w: 1px;
  --font-size: 1.6rem;
  border: var(--border-w) solid var(--color-bubble);
  border-radius: calc(var(--border-radius) / 3);
  padding: calc(var(--font-size) * 0.7) var(--font-size);
  font-size: var(--font-size);
  position: relative;
  margin-right: calc(var(--font-size) * 0.6);
  font-family: "A1 Gothic M";
}
@media (min-width: 992px) {
  .title .bubble {
    --font-size: 2rem;
  }
}
.title .bubble::before, .title .bubble::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: transparent;
  top: calc(var(--font-size) * 0.8);
  top: var(--font-size);
}
.title .bubble::before {
  border-width: calc(var(--font-size) * 0.35);
  border-left: calc(var(--font-size) * 0.6) solid var(--color-bubble);
  right: calc(var(--font-size) * -1);
}
.title .bubble::after {
  border-width: calc(var(--font-size) * 0.35);
  border-left: calc(var(--font-size) * 0.6) solid var(--color-white);
  right: calc((var(--font-size) - var(--border-w) * 2) * -1);
}
.title .kao {
  max-width: 4.8rem;
}
@media (min-width: 992px) {
  .title .kao {
    max-width: 6.4rem;
  }
}

.note {
  margin-right: 0.4rem;
  margin-left: 0.4rem;
}
@media (min-width: 600px) {
  .note {
    max-width: 42rem;
    margin-right: initial;
    margin-left: initial;
  }
}
.note a {
  color: var(--color-blue);
}
.note a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}
.note a[target=_blank]::after {
  font-family: "Hobonichi-Icons";
  font-size: 87.5%;
  font-weight: normal;
  line-height: 1;
  position: relative;
  top: -0.25em;
  display: inline-block;
  margin-left: 0.25em;
  content: "\e914";
}

.date {
  font-size: 1.2rem;
  color: #898989;
  margin-right: 0.4rem;
  margin-left: 0.4rem;
}
@media (min-width: 600px) {
  .date {
    margin-right: initial;
    margin-left: initial;
  }
}

footer {
  margin-top: 4.8rem;
  background-color: var(--color-white);
  position: relative;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
@media (min-width: 600px) {
  footer {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
footer .wrapper {
  width: 76%;
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  footer .wrapper {
    width: 88%;
  }
}
@media (min-width: 600px) {
  footer .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
footer .footer-hobo {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 1.6em;
}
@media (min-width: 600px) {
  footer .footer-hobo {
    width: 48%;
  }
}
footer .footer-hobo li {
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
footer .footer-hobo a {
  display: flex;
  gap: 0.8em;
  align-items: center;
}
footer .footer-hobo span {
  display: inline-block;
  width: 1.6em;
  text-align: center;
}
footer .footer-hobo span:before {
  font-size: 1.6em;
}
footer .footer-hobo span.hb-hobo::before {
  font-size: 1.2em;
}
footer .footer-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 2.4rem;
}
@media (min-width: 600px) {
  footer .footer-share {
    grid-column: 1/3;
    gap: 2rem;
    margin-bottom: initial;
  }
}
@media (min-width: 992px) {
  footer .footer-share {
    gap: 4rem;
    grid-column: initial;
  }
}
footer .footer-share img {
  width: 4.4rem;
}
@media (min-width: 600px) {
  footer .footer-share img {
    width: 4.8rem;
  }
}
footer .footer-share li:first-child img {
  width: 5.6rem;
}
footer .footer-sns {
  position: relative;
  font-size: 0.88em;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 40rem;
  padding-top: 1.6em;
  padding-bottom: 1.6em;
  padding-right: 0.8em;
}
footer .footer-sns::before, footer .footer-sns::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: currentColor;
}
footer .footer-sns::before {
  top: 0;
}
footer .footer-sns::after {
  bottom: 0;
}
footer .footer-sns a::before {
  font-size: 2.8em;
}

.home_menu {
  border-top: 1px solid var(--color-white);
  background-color: var(--color-white);
}
.home_menu svg {
  fill: var(--color-blue);
}
.home_menu #home_menu {
  margin-top: 0;
}
.home_menu .home_menu_item {
  font-size: 0.9em;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .home_menu .sp {
    display: none;
  }
}
.home_menu .pc {
  display: none;
}
@media (min-width: 600px) {
  .home_menu .pc {
    display: block;
  }
}
.home_menu .copyright {
  text-align: center;
  padding: 3.2rem;
}/*# sourceMappingURL=index.css.map */