@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;
}

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-size: inherit;
  font-weight: normal;
  line-height: inherit;
}

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 {
  --size-space: 3rem;
}
@media (min-width: 600px) {
  :root {
    --size-space: 4.5rem;
  }
}

main a[target=_blank]:after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-weight: normal;
  font-size: 0.8em;
  position: relative;
  top: -0.2em;
}

body {
  font-family: "A1 Gothic M";
  color: #333333;
  letter-spacing: 0.075em;
}

main a,
main a:visited,
main a:active,
main a:focus,
main a:hover {
  color: #ff9e00;
}

.hero {
  background-color: #00aaff;
}
.hero .inner {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .hero img {
    max-height: 80vh;
  }
}

.schedule {
  background-color: #ffdb00;
  font-family: "A1 Gothic B";
  padding: 2.5rem;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .schedule {
    font-size: 2.4rem;
    padding: 3rem;
  }
}
.schedule h2 {
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .schedule li {
    display: flex;
    flex-wrap: wrap;
  }
}
.schedule li:last-child, .schedule li:nth-last-child(2) {
  margin-top: 0.5em;
}
.schedule li:has(small) {
  line-height: 1.2;
}
.schedule span {
  display: block;
}
.schedule small {
  font-size: 0.7em;
}

.yodogawa {
  font-size: 1.5rem;
  color: #fff;
  background-color: #00aaff;
  line-height: 2;
}
.yodogawa .inner {
  padding: var(--size-space);
}
@media (min-width: 600px) {
  .yodogawa .inner {
    font-size: 1.8rem;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.yodogawa p + p {
  margin-top: 1.5em;
}

.contents {
  font-size: 1.3rem;
  line-height: 2;
}
@media (min-width: 600px) {
  .contents {
    font-size: 1.6rem;
  }
}
.contents .inner {
  padding: var(--size-space);
  max-width: 65rem;
  margin-right: auto;
  margin-left: auto;
}
.contents figcaption {
  font-size: 0.9em;
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0.5em;
}
.contents div:not(:has(figure)) {
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
}
.contents div + div {
  margin-top: 1.5em;
}
.contents p:has(small) {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contents small {
  display: block;
}

.apply {
  color: #fff;
  background-color: #00aaff;
  line-height: 1.6;
  font-size: 1.25rem;
}
@media (min-width: 600px) {
  .apply {
    font-size: 1.5rem;
  }
}
.apply .inner {
  padding: var(--size-space);
  max-width: 60rem;
  margin-right: auto;
  margin-left: auto;
}
.apply dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1em;
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.apply .applybox {
  text-align: center;
  line-height: 2;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.apply img {
  max-width: 30rem;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.apply ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.about {
  font-size: 1.3rem;
}
@media (min-width: 600px) {
  .about {
    font-size: 1.6rem;
  }
}
.about .inner {
  padding: var(--size-space) 0.5rem;
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
}
.about dt {
  font-family: "A1 Gothic B";
  text-align: center;
  font-size: 1.3em;
}
@media (min-width: 600px) {
  .about dd {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about .photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: var(--size-space);
  margin-bottom: var(--size-space);
}
@media (min-width: 600px) {
  .about .photo {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about .about-text {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
.about p {
  margin-bottom: 0.5em;
}
.about p + p {
  margin-top: 1.5em;
}
.about small {
  display: block;
  font-size: 0.85em;
  text-align: center;
}

.message {
  font-family: "A1 Gothic B";
  font-size: 1.5rem;
  color: #fff;
  background-color: #00aaff;
  line-height: 2.4;
}
@media (min-width: 600px) {
  .message {
    font-size: 1.8rem;
  }
}
.message .inner {
  padding: var(--size-space);
}
@media (min-width: 600px) {
  .message .inner {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-right: auto;
    margin-left: auto;
  }
}
.message h3 {
  text-align: center;
  margin-bottom: 3.2rem;
  width: 100%;
}
.message h3 * {
  display: block;
}
.message h3 small {
  font-family: "A1 Gothic M";
}
.message h3 span {
  font-size: 2.6rem;
}
.message p + p {
  margin-top: 2em;
}
.message br {
  display: block;
}
.message .message-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--size-space);
}
.message img {
  width: 8rem;
  border-radius: 8rem;
}
.message small {
  font-size: 1em;
}

.notice {
  font-size: 1.3rem;
  line-height: 2;
}
@media (min-width: 600px) {
  .notice {
    font-size: 1.6rem;
  }
}
.notice .inner {
  padding: var(--size-space);
}
@media (min-width: 600px) {
  .notice .inner {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.notice dt {
  font-family: "A1 Gothic B";
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 2.4rem;
}
.notice ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.notice ul li + li {
  margin-top: 1.5em;
}

.profile {
  font-size: 1.5rem;
  color: #fff;
  background-color: #00aaff;
  line-height: 2;
}
@media (min-width: 600px) {
  .profile {
    font-size: 1.6rem;
  }
}
.profile .inner {
  padding: var(--size-space);
}
@media (min-width: 600px) {
  .profile .inner {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.profile .title {
  font-family: "A1 Gothic B";
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 2rem;
}
.profile dt {
  font-family: "A1 Gothic B";
  margin-bottom: 1em;
}
.profile dt small {
  font-family: "A1 Gothic M";
  font-size: 0.9em;
}
.profile dd {
  font-size: 0.9em;
}
.profile div + div {
  margin-top: 1.5em;
}

.banner {
  line-height: 2;
}
.banner .inner {
  padding: var(--size-space);
}
.banner .title {
  font-family: "A1 Gothic B";
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: var(--size-space);
}
@media (min-width: 600px) {
  .banner .title {
    font-size: 2.1rem;
  }
}
.banner ul {
  display: grid;
  gap: var(--size-space);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .banner ul {
    grid-template-columns: repeat(2, 1fr);
    max-width: 88rem;
    gap: 2.4rem 1.5rem;
  }
}

footer {
  position: relative;
}
@media (min-width: 600px) {
  footer {
    margin-top: 4rem;
  }
}
footer .wrapper {
  border-top: 1px solid currentColor;
  width: calc(100% - 4rem);
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 4rem;
}
@media (min-width: 992px) {
  footer .wrapper {
    padding-top: 4rem;
  }
}
@media (min-width: 600px) {
  footer .wrapper {
    width: 90%;
  }
}
@media (min-width: 600px) {
  footer .wrapper {
    display: flex;
    justify-content: space-between;
  }
}
footer .footer-hobo {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 600px) {
  footer .footer-hobo {
    gap: 1.6em;
    flex-direction: row;
  }
}
footer .footer-hobo li {
  margin-top: 1.2em;
}
@media (min-width: 600px) {
  footer .footer-hobo li {
    margin-top: 0;
  }
}
footer .footer-hobo a {
  display: flex;
  gap: 0.4em;
  align-items: center;
}
footer .footer-hobo span {
  display: inline-block;
  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-hobo span.hb-hobo-logo::before {
  font-size: 4rem;
}
@media (min-width: 600px) {
  footer .footer-share {
    grid-column: 1/3;
  }
}
@media (min-width: 992px) {
  footer .footer-share {
    grid-column: initial;
  }
}
footer .footer-share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 0.8em;
}
@media (min-width: 600px) {
  footer .footer-share {
    margin-bottom: initial;
  }
}
@media (min-width: 992px) {
  footer .footer-share {
    gap: 1.6em;
  }
}
footer .footer-share img {
  width: 3.2em;
}
@media (min-width: 992px) {
  footer .footer-share img {
    width: 2.8em;
  }
}

#home_menu {
  fill: #333;
}

/**
・こちらの注意文はサーバーに上げる前に削除してください。
・_baseの変更は非推奨ですが、絶対ではありません。適宜ご調整ください。
・baseにて1rem10pxに設定しています。rem設定を推奨します。
・class名は_ではなく-で繋いでください。
・commonにはindex/他ページで共有のパーツを記入してください。
　ページ数が少ない場合すべてをcommonに記入いただいても問題ありません。
　その場合_commonの_を削除し、common.cssを反映させてください。

・おまけ フォント設定で悩んだら
  イラレの文字設定を以下に合わせるとデザインと同一になります
    letter-spacing: calc((文字のトラッキング / 1000) * 1em);
    ex) letter-spacing: calc((10 / 1000) * 1em);
    line-height: calc(行送り / フォントサイズ);
    ex) line-height: calc(21 / 13);
**//*# sourceMappingURL=index.css.map */