@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]) {
  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;
    filter: blur(0);
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre,
hr {
  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;
  appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}
a:not([class])[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";
}

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

*:focus {
  outline: none;
}

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

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

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    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  **/
header {
  position: relative;
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.header_bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E7F3E2;
  height: 6rem;
  box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.08);
  z-index: 1001;
}
@media (min-width: 600px) {
  .header_bar {
    height: 8rem;
  }
}
.header_bar img {
  padding: 1.2rem 2.4rem;
  max-height: 100%;
}
.header_bar .btn_header_menu {
  height: 100%;
  background-color: transparent;
  transition: all 0.1s ease-in-out;
}
.header_bar .btn_header_menu img {
  width: 8rem;
}
.header_bar .btn_header_menu:hover {
  background-color: #fff;
}

.header_menu {
  position: absolute;
  top: 6rem;
  right: 0;
  width: 60%;
  background-color: #E7F3E2;
  z-index: 1000;
  font-size: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.header_menu.is-open {
  transform: translateX(0);
}
@media (min-width: 600px) {
  .header_menu {
    top: 8rem;
    width: calc(17em + 4.8rem);
  }
}
.header_menu li:not(:last-child) {
  border-bottom: 1px solid #001230;
}
.header_menu a {
  display: block;
  padding: 0.8rem 2.6rem;
}
@media (min-width: 600px) {
  .header_menu a {
    padding: 2rem 2.4rem;
  }
}
.header_menu a:hover {
  opacity: 1;
  background-color: #fff;
}
.header_menu br {
  display: block;
}
@media (min-width: 600px) {
  .header_menu br {
    display: none;
  }
}

/* footer */
footer {
  font-family: "Midashi Go MB1", sans-serif;
  color: #001230;
  background-color: #E7F3E2;
}

footer .wrapper {
  max-width: 1272px;
  width: 74.666vw;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-areas: "share" "hobo" "store" "copy";
}

footer .footer-share {
  grid-area: share;
  display: flex;
  gap: 25px;
}

footer .footer-share .title {
  margin-right: 5px;
}

footer .footer-hobo {
  grid-area: hobo;
  font-size: 1.6rem;
  line-height: 28px; /* 175% */
  letter-spacing: 0.16px;
  margin-top: 30px;
}

footer .footer-store {
  grid-area: store;
  font-size: 1.2rem;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.12px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

footer .footer-store li::after {
  content: "/";
  display: inline-block;
  padding: 0 0.5em 0 0.2em;
}

footer .footer-store li:last-of-type:after {
  display: none;
}

footer .footer-copy {
  grid-area: copy;
  font-size: 1.4rem;
  line-height: 28px; /* 200% */
  letter-spacing: 0.14px;
  margin-top: 16px;
}

@media (min-width: 601px) {
  footer .wrapper {
    width: 96%;
    padding: 75px 0 100px;
    grid-template-areas: "share hobo ." "store hobo copy";
    grid-template-columns: 1fr auto auto;
  }
  footer .footer-share {
    gap: 20px;
  }
  footer .footer-share .title {
    margin-right: 20px;
  }
  footer .footer-store {
    margin-top: 24px;
    font-size: 1.4rem;
    line-height: 28px; /* 200% */
    letter-spacing: 0.14px;
  }
  footer .footer-hobo {
    margin-top: 0;
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
    display: flex;
    flex-wrap: wrap;
    align-self: end;
    width: 10.5em;
    margin-right: 5vw;
  }
  footer .footer-copy {
    margin-top: 0;
    align-self: end;
  }
}
@media (min-width: 1200px) {
  footer .footer-hobo {
    margin-right: 64px;
  }
}
/**  index  **/
header {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}
:has(.intro-section.isAnim) header {
  transform: translateY(-100%);
}

@keyframes kumo {
  50% {
    scale: 1.2;
    top: 0;
  }
}
body {
  background-color: #FFF2EC;
  font-family: "Midashi Go MB1", sans-serif;
  color: #001230;
  line-height: 162.5%;
}
@media (min-width: 600px) {
  body {
    line-height: 175%;
  }
}

main {
  overflow: hidden;
}

/** hero **/
.hero {
  position: relative;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 1.6rem;
  margin-left: 1.6rem;
}
@media (min-width: 600px) {
  .hero {
    height: auto;
    max-width: 160rem;
    aspect-ratio: 1512/982;
    margin-right: auto;
    margin-left: auto;
  }
}
.hero .title {
  position: relative;
  width: 28%;
}
@media (min-width: 600px) {
  .hero .title {
    position: absolute;
    top: 10%;
    right: 16%;
    width: 10%;
  }
}

.catchcopy_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  animation: fadeOut 1s 2.5s forwards;
}

.catchcopy {
  clip-path: inset(0 0 100% 0);
  animation: clipPath 2s forwards;
}

.logo {
  opacity: 0;
  animation: fadeIn 2s 3.5s forwards;
  position: absolute;
  top: 20%;
  width: 100%;
}
@media (min-width: 600px) {
  .logo {
    top: 0;
    left: 60%;
  }
}

@media (min-width: 600px) {
  .catchcopy {
    width: 20%;
  }
}

.kumo_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
@media (min-width: 600px) {
  .kumo_wrapper {
    gap: 60%;
  }
}

.kumo {
  position: relative;
  width: 50%;
}
@media (min-width: 600px) {
  .kumo {
    width: 40%;
  }
}

.kumo_l {
  top: 0.8rem;
  scale: 1;
  animation: kumo 4s infinite reverse ease-in-out;
}

.kumo_r {
  scale: 1.1;
  top: -0.8rem;
  animation: kumo 4s infinite reverse ease-in-out;
}

.image {
  background-image: url("../images/hero_1_sp.png");
  background-size: cover;
  background-position: center;
}
@media (min-width: 600px) {
  .image {
    background-image: url("../images/hero_1_pc.png");
    position: absolute;
    bottom: 12%;
    left: 8%;
    width: 64%;
  }
}

.image_hero {
  width: 100%;
  opacity: 0;
  animation: fadeIn 1s 4.5s forwards;
}

/** contents **/
.txt,
.why {
  opacity: 0;
  filter: blur(0.5rem);
}
.txt.active,
.why.active {
  animation: fadeIn 1s forwards;
}

.txt {
  max-width: 62rem;
  margin-right: auto;
  margin-left: auto;
}
.txt .inner {
  max-width: 32em;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 600px) {
  .txt .inner {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
.txt p {
  margin-bottom: 1em;
  margin-top: 1em;
}

.yodogawa {
  margin-bottom: 5.6rem;
}
@media (min-width: 600px) {
  .yodogawa {
    margin-top: 4rem;
  }
}

hr {
  max-width: 67rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-right: auto;
  margin-left: auto;
  border: 0;
  border-top: 1.5px solid currentColor;
}

.why,
.banner {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  padding-right: 3.2rem;
  padding-left: 3.2rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .why,
  .banner {
    font-size: 2rem;
  }
}
.why br,
.banner br {
  display: block;
}
@media (min-width: 600px) {
  .why br,
  .banner br {
    display: none;
  }
}
.why p,
.banner p {
  text-indent: -1em;
}
@media (min-width: 600px) {
  .why p,
  .banner p {
    text-indent: 0;
  }
}
.why a,
.banner a {
  max-width: 50rem;
  display: inline-block;
  width: 100%;
}

.why ul {
  display: grid;
  gap: 1.6rem;
  line-height: 1;
}
@media (min-width: 600px) {
  .why ul {
    margin-bottom: 6rem;
  }
}
.why-x {
  display: flex;
  align-items: start;
  max-width: 50rem;
  text-align: left;
  gap: 2.4rem;
  font-size: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .why-x {
    font-size: 1.6rem;
    gap: 1.6rem;
    align-items: center;
  }
}
.why-x img {
  width: 3.2rem;
  height: auto;
  margin-top: 0.5rem;
}
@media (min-width: 600px) {
  .why-x img {
    margin-top: 0;
  }
}
.why-x a {
  color: #A22E00;
  line-height: 1.3;
}
.why-x br {
  display: block;
}
@media (min-width: 600px) {
  .why-x br {
    display: none;
  }
}
.why-x div {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 600px) {
  .why-x div {
    gap: 0;
  }
}

.kamoshika {
  position: relative;
  left: -3.2rem;
  width: 8rem;
  transform: translateX(-100%);
  transition: all 0.5s 1s;
}
.why.isAnim .kamoshika {
  transform: translateX(0%);
}
@media (min-width: 600px) {
  .kamoshika {
    position: absolute;
    bottom: 4rem;
    left: 0;
    width: 12rem;
  }
}

.section1 .title {
  display: flex;
  justify-content: end;
  margin-right: 1.6rem;
  margin-bottom: 3.2rem;
  margin-top: 3.2rem;
}
@media (min-width: 600px) {
  .section1 .title {
    margin-right: initial;
    margin-bottom: 4.8rem;
    margin-top: 4.8rem;
  }
}
.section1 img {
  width: 50%;
}

.kotoba {
  position: relative;
  font-family: "Shuei MaruGo L", sans-serif;
  background-color: rgba(255, 255, 255, 0.8);
  width: min(100%, 74rem);
  line-height: 2;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
  margin-bottom: 2.8rem;
  padding-top: 1.6rem;
}
@media (min-width: 600px) {
  .kotoba {
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding-top: 8rem;
  }
}
.kotoba::before, .kotoba::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.kotoba::before {
  position: absolute;
  top: 2rem;
  left: 8%;
  width: 20%;
  aspect-ratio: 108/102;
  background-image: url("../images/kotoba_tonbo.png");
}
@media (min-width: 600px) {
  .kotoba::before {
    top: 3.2rem;
    left: auto;
    right: 8%;
    width: 14%;
  }
}
.kotoba::after {
  position: relative;
  display: block;
  bottom: 4rem;
  right: 4rem;
  margin-left: auto;
  width: 30%;
  aspect-ratio: 222/193;
  background-image: url("../images/kotoba_plants.png");
}
@media (min-width: 600px) {
  .kotoba::after {
    margin-left: initial;
    bottom: 6rem;
    right: -8rem;
  }
}
.kotoba .kotoba_photo {
  display: block;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 4rem;
}
@media (min-width: 600px) {
  .kotoba .kotoba_photo {
    width: 68%;
  }
}
@media (min-width: 600px) {
  .kotoba dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: start;
    gap: 1em;
  }
}
.kotoba dt {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 0.8rem;
  margin-bottom: 1em;
}
@media (min-width: 600px) {
  .kotoba dt {
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 0.5em;
  }
}
.kotoba dt img {
  width: 3.2em;
  aspect-ratio: 1/1;
}
.kotoba dd {
  margin-bottom: 3em;
}
.kotoba dd p {
  margin-bottom: 1em;
}
@media (min-width: 600px) {
  .kotoba dd p {
    margin-bottom: 2em;
  }
}
@media (min-width: 600px) {
  .kotoba dd:last-child {
    margin-bottom: 2em;
  }
}
.kotoba .inner {
  width: min(100%, 33em);
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-top: 4rem;
}
.kotoba .inner::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  width: calc(100% - 3.2rem);
  height: calc(100% - 3.2rem);
  border: 1px dashed currentColor;
}
@media (min-width: 600px) {
  .kotoba .inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.photo_slide {
  background-color: #E7F3E2;
  background-image: url("../images/pattern_kumo.gif");
  background-size: 42rem;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 600px) {
  .photo_slide {
    background-size: 48rem;
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
.photo_slide iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
}

.kao_icon::after {
  content: "";
  position: relative;
  top: 0.5em;
  width: 2.4em;
  aspect-ratio: 1/1;
  display: inline-block;
  background-size: cover;
  background-position: center;
}
@media (min-width: 600px) {
  .kao_icon {
    flex-direction: row-reverse;
  }
}

.name_ayaya::after {
  background-image: url("../images/kaoicon/ayaya.png");
}

.name_nagata::after {
  background-image: url("../images/kaoicon/nagata.png");
}

.name_yasuna::after {
  background-image: url("../images/kaoicon/yasuna_sato.png");
}

.name_ishizawa::after {
  background-image: url("../images/kaoicon/hideaki_ishizawa.png");
}

.name_marisa::after {
  background-image: url("../images/kaoicon/marisa.png");
}

.name_sanami::after {
  background-image: url("../images/kaoicon/sanami_yoshino.png");
}

.photo_slide .swiper-wrapper {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
.photo_slide .swiper-slide {
  height: auto;
}
@media (min-width: 600px) {
  .photo_slide .swiper-slide {
    width: min(80vw, 45.2rem);
    height: auto;
  }
}
.photo_slide .card {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid #001230;
  border-radius: 2.6rem;
  padding: 1.6rem;
  margin-right: 1.6rem;
  margin-left: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0.8rem;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .photo_slide .card {
    border-radius: 1.6rem;
    line-height: inherit;
    gap: 1.2rem;
  }
}
.photo_slide .card .comment {
  font-size: 1.5rem;
  font-family: "Shuei MaruGo L", sans-serif;
}
.photo_slide .card .name {
  margin-top: auto;
}
.photo_slide .card .kao_icon {
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
  width: fit-content;
  font-size: 1.4rem;
}
.photo_slide .card .kao_icon::after {
  top: 0;
  margin-right: 0.4rem;
}
@media (min-width: 600px) {
  .photo_slide .card .kao_icon {
    flex-direction: row;
    margin-left: auto;
    align-items: end;
  }
  .photo_slide .card .kao_icon::after {
    width: 4em;
    margin-right: initial;
    margin-left: 0.8rem;
  }
}
.photo_slide .photo_slide_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 3.2rem, 42rem);
  margin-bottom: 3.2rem;
  margin-right: auto;
  margin-left: auto;
}
.photo_slide .photo_slide_nav button {
  padding: 1em;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.photo_slide .photo_slide_nav button:hover {
  opacity: 0.5;
}
.photo_slide .photo_slide_nav button:focus {
  outline: none;
}
.photo_slide .photo_slide_nav .btn-next {
  transform: scale(-1, 1);
}

@keyframes title_kumo {
  50% {
    scale: 1.05;
    top: 0;
    opacity: 0.8;
  }
}
.title_ozenokai {
  position: relative;
  display: block;
  margin-top: 4rem;
  margin-bottom: 4rem;
  opacity: 0;
  filter: blur(0.5rem);
}
.active .title_ozenokai {
  animation: fadeIn 1s forwards;
}
.title_ozenokai::before, .title_ozenokai::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: title_kumo 4s infinite reverse ease-in-out;
  backface-visibility: hidden;
  will-change: transform;
}
.title_ozenokai::before {
  left: 10%;
  top: 0.8rem;
  width: 16%;
  aspect-ratio: 84/50;
  background-image: url("../images/kumo_l.gif");
}
@media (min-width: 600px) {
  .title_ozenokai::before {
    left: 8%;
  }
}
.title_ozenokai::after {
  right: 0;
  top: -0.8rem;
  width: 22%;
  aspect-ratio: 94/60;
  background-image: url("../images/kumo_r.gif");
}
@media (min-width: 600px) {
  .title_ozenokai::after {
    right: 8%;
    width: 20%;
  }
}

.ozenokai_image {
  width: min(100% - 4rem, 62rem);
  margin-right: auto;
  margin-left: auto;
}

a.btn_info {
  position: relative;
  display: block;
  transition: all 0.2s;
  margin-top: 1em;
  margin-bottom: 3em;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  a.btn_info {
    margin-top: 2em;
    margin-bottom: 4em;
  }
}
a.btn_info::after {
  content: "";
  position: absolute;
  bottom: -22%;
  right: -6%;
  width: 16%;
  aspect-ratio: 56/50;
  background-image: url("../images/btn_info_tonbo.png");
  background-size: cover;
  background-position: center;
}
a.btn_info:hover {
  scale: 1.02;
}

.credits {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 600px) {
  .credits {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}/*# sourceMappingURL=index_banner.css.map */