@charset "UTF-8";
div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

html {
  font-size: 62.5%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  position: relative;
  margin: 0;
}

p {
  font-size: 1.6rem;
  line-height: 1.6;
}

ul,
ol {
  padding: 0;
}
ul li,
ol li {
  list-style-type: none;
}

a {
  color: #DB3E29;
}

.red {
  color: #DB3E29;
}

.txt-s {
  font-size: 75% !important;
}

header {
  width: 100%;
  height: 100vh;
}
header .inner {
  position: relative;
}
header .inner .item-circle {
  position: absolute;
  width: 70vw;
  top: -34vh;
  left: -28vw;
}
header .inner .item-circle img {
  width: 100%;
  -webkit-animation: rotate 120s linear infinite;
          animation: rotate 120s linear infinite; /* 2秒で一周し、無限ループ */
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 回転の開始位置 */
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); /* 360度回転して一周 */
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 回転の開始位置 */
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); /* 360度回転して一周 */
  }
}
header .inner .main-item {
  position: absolute;
  top: -1vh;
  right: -13vw;
  width: 52vw;
}
header .inner .main-item img {
  width: 82%;
  position: relative; /* 移動させるためにrelativeを使用 */
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite; /* 3秒間で上下に浮かぶ */
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); /* 初期位置 */
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); /* 上に20px移動 */
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); /* 元の位置に戻る */
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); /* 初期位置 */
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); /* 上に20px移動 */
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); /* 元の位置に戻る */
  }
}
header .inner .item-11 {
  position: absolute;
  bottom: 25%;
  right: 18vw;
  width: 13%;
}
header .inner .item-11 img {
  width: 100%;
}
header .inner .item-12 {
  position: absolute;
  bottom: 52%;
  right: 11vw;
  width: 9%;
}
header .inner .item-12 img {
  width: 100%;
}
header .inner .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向に中央寄せ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向に中央寄せ */
  width: 100%;
  height: 100vh;
}
header .inner .main .main-logo {
  width: 16%;
}
header .inner .main .main-logo img {
  width: 100%;
}
header .inner .main .main-catch {
  position: absolute;
  top: 12vh;
  left: 72%;
  width: 6.25vw;
}
header .inner .main .main-catch img {
  width: 100%;
}
header .inner .main .main-day {
  position: absolute;
  bottom: 160px;
  left: 20px;
  height: 110px;
}
header .inner .main .main-day img {
  height: 100%;
}
header .inner .main .main-address {
  position: absolute;
  bottom: 10px;
  left: 20px;
  height: 120px;
}
header .inner .main .main-address img {
  height: 100%;
}
header .inner .main .main-application {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 13%;
}
header .inner .main .main-application img {
  width: 100%;
}
header .inner .main .worning {
  width: 100%;
  max-width: 400px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: 0;
}
header .inner .main .worning p {
  font-size: 1.8rem;
  color: #ff0000;
  background-color: #fff3f3;
  border: 2px solid #ff0000;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 0;
}

#contact {
  position: fixed;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#contact a {
  color: #A18210;
  border: 2px solid #A18210;
  background-color: #fff;
  background-image: url(../img/item/contact-icon.svg), url(../img/item/contact-icon.svg);
  background-position: left 14px center, right 14px center;
  background-repeat: no-repeat;
  background-size: 26px;
  padding: 14px 60px;
  font-size: 1.8rem;
  border-radius: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  letter-spacing: -0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#contact a:hover {
  background-color: #bfae55;
  color: #fff;
  border: 2px solid #A18210;
}

main {
  position: relative;
}
main #about {
  min-height: 1000px;
  position: relative;
}
main #about .item {
  position: absolute;
}
main #about .item img {
  width: 100%;
}
main #about .cloud-01 {
  z-index: -1;
  top: 0;
  right: -2vw;
  width: 40vw;
}
main #about .cloud-02 {
  z-index: -1;
  top: 9%;
  left: 0vw;
  width: 28vw;
}
main #about .cloud-03 {
  z-index: -1;
  top: 65vh;
  right: -3vw;
  width: 30vw;
}
main #about .cloud-04 {
  z-index: -1;
  top: 29vh;
  left: 36%;
  width: 13vw;
}
main #about .cloud-05 {
  z-index: -1;
  bottom: 1vh;
  left: -2vw;
  width: 40vw;
}
main #about .main-01 {
  z-index: -1;
  top: 63%;
  right: 10vw;
  width: 12vw;
}
main #about .main-02 {
  z-index: -1;
  top: 38%;
  left: 10vw;
  width: 10vw;
}
main #about .main-04 {
  z-index: -1;
  bottom: 200px;
  right: 20vw;
  width: 10vw;
}
main #about .main-08 {
  z-index: -1;
  bottom: 600px;
  left: 35vw;
  width: 10vw;
}
main #about .about-inner {
  width: 100%;
  padding: 200px 0;
  min-height: 100vh;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #about .about-inner .title {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}
main #about .about-inner .title h3 {
  font-size: 4rem;
  text-align: center;
}
main #about .about-inner .title p {
  line-height: 2.6;
  font-size: 2rem;
  padding-top: 0;
  text-align: center;
}
main #about .about-inner .info {
  display: inline-block;
  border: 8px solid #f1de7d;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 40px;
}
main #about .about-inner .info ul + ul {
  margin-top: 20px;
}
main #about .about-inner .info ul li {
  font-size: 2rem;
  line-height: 2;
}
main #about .about-inner .info ul li strong::after {
  content: "：";
  padding: 0 6px;
}
main #about .about-inner .info ul li strong.no-icon::after {
  content: "　";
  padding: 0 6px;
}
main #program {
  position: relative;
  background-color: #fcfaf7;
  padding: 100px 0 60px;
}
main #program .custom-shape-divider-top-1728333441 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
main #program .custom-shape-divider-top-1728333441 svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 100px;
}
main #program .custom-shape-divider-top-1728333441 .shape-fill {
  fill: #ffffff;
}
main #program .inner {
  max-width: 1200px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: auto;
}
main #program .inner .title {
  margin-bottom: 100px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
main #program .inner .title h2 {
  font-size: 4.4rem;
}
main #program .inner .title .catch {
  font-size: 2.4rem;
}
main #program .inner .info h3 {
  font-size: 3.4rem;
  margin-bottom: 20px;
  color: #DB3E29;
}
main #program .inner .info h4 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
main #program .inner .info ul {
  max-width: 500px;
  padding: 20px 40px;
  background-color: #fff;
  margin: 0 auto 20px;
  text-align: left;
  border-radius: 10px;
  border: 2px solid #bfab86s;
}
main #program .inner .info ul li {
  font-size: 1.8rem;
  margin-bottom: 10px;
  list-style-type: disc;
}
main #program .inner .info ul + p {
  margin: auto;
  max-width: 540px;
  text-align: right;
}
main #program .inner .card {
  padding: 10px 30px 24px;
  margin-bottom: 50px;
  background-color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  border-radius: 20px;
}
main #program .inner .card h3 {
  font-size: 3.8rem;
  margin-top: 26px;
}
main #program .inner .card h3 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #DB3E29;
  font-size: 1.8rem;
}
main #program .inner .card p {
  font-size: 1.8rem;
}
main #program .inner .card img {
  width: 100%;
  border-radius: 4px;
}
main #program .inner .card .icon {
  position: absolute;
  top: -30px;
  right: -14px;
  width: auto;
  height: 80px;
}
main #program .inner .card .kameoka {
  position: absolute;
  top: -24px;
  left: -22px;
  width: auto;
  height: 64px;
}
main #program .inner .list01 {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main #program .inner .list01 .card {
  border: 3px dotted #DB3E29;
}
main #program .inner .list01 .right {
  width: 49%;
  margin-top: 60px;
}
main #program .inner .list01 .left {
  width: 49%;
}
main #program .inner .list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main #program .inner .list02 .card {
  border: 3px solid #bfab86;
}
main #program .inner .list02 .right {
  width: 49%;
  margin-top: 60px;
}
main #program .inner .list02 .left {
  width: 49%;
}
main #application {
  position: relative;
  background-color: #fff;
  padding-top: 100px;
}
main #application .custom-shape-divider-top-1728333441 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
main #application .custom-shape-divider-top-1728333441 svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 100px;
}
main #application .shape-fill2 {
  fill: #fcfaf7;
}
main #application .item {
  position: absolute;
}
main #application .item img {
  width: 100%;
}
main #application .main-03 {
  z-index: 0;
  top: 63%;
  right: 2%;
  width: 12vw;
}
main #application .main-05 {
  z-index: 0;
  top: 38%;
  left: 2%;
  width: 10vw;
}
main #application .main-06 {
  z-index: 0;
  top: 9%;
  right: 2vw;
  width: 10vw;
}
main #application .main-07 {
  z-index: 0;
  top: 78%;
  left: 7vw;
  width: 10vw;
}
main #application .inner {
  max-width: 1200px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: auto;
}
main #application .inner .title {
  margin-bottom: 100px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
main #application .inner .title h2 {
  font-size: 4.4rem;
}
main #application .inner .title .catch {
  font-size: 2.4rem;
}
main #application .inner .application-box {
  background-color: #fcfaf7;
  border: 8px solid #bfab86;
  padding: 30px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #application .inner .application-box h3 {
  text-align: center;
  font-size: 3.4rem;
}
main #application .inner .application-box h4 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: normal;
  padding-bottom: 30px;
}
main #application .inner .application-box h5 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: normal;
  padding-bottom: 30px;
}
main #application .inner .application-box p {
  text-align: center;
}
main #application .inner .application-box img {
  text-align: center;
  max-width: 100%;
}
main #application .inner .application-box .noticelist {
  margin-top: 40px;
  padding: 40px 30px 30px;
  border-top: 1px solid #bfab86;
}
main #application .inner .application-box .noticelist ul {
  margin-left: 30px;
}
main #application .inner .application-box .noticelist ul li {
  font-size: 1.6rem;
  list-style-type: disc;
}
main #application .inner .application-box a {
  color: #A18210;
  border: 2px solid #A18210;
  background-color: #fff;
  background-image: url(../img/item/contact-icon.svg), url(../img/item/contact-icon.svg);
  background-position: left 14px center, right 14px center;
  background-repeat: no-repeat;
  background-size: 26px;
  padding: 14px 60px;
  font-size: 1.8rem;
  border-radius: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  letter-spacing: -0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main #application .inner .application-box a:hover {
  background-color: #bfae55;
  color: #fff;
  border: 2px solid #A18210;
}
main #application .inner .application-box h2 {
  font-size: 4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  text-align: center;
}
main #schedule {
  position: relative;
  background-color: #fff;
  padding-top: 100px;
}
main #schedule .inner {
  max-width: 1200px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: auto;
}
main #schedule .inner .title {
  margin-bottom: 100px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
main #schedule .inner .title h2 {
  font-size: 4.4rem;
}
main #schedule .inner .title .catch {
  font-size: 2.4rem;
}
main #schedule .inner .schedule-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main #schedule .inner .schedule-list ul li {
  margin: 10px 0;
}
main #schedule .inner .schedule-list ul li span {
  font-size: 2rem;
  background-color: #bfab86;
  color: #fff;
  border-radius: 4px;
  padding: 6px 10px;
  margin-right: 10px;
}
main #schedule .inner .schedule-list ul li::after {
  content: "▶︎";
  margin-right: 10px;
  font-size: 2rem;
}
main #schedule .inner .schedule-list ul li:last-child::after {
  display: none;
}
main #access {
  position: relative;
  background-color: #fcfaf7;
  padding: 100px 0 60px;
  margin-top: 100px;
}
main #access .custom-shape-divider-top-1728333441 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
main #access .custom-shape-divider-top-1728333441 svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 100px;
}
main #access .shape-fill3 {
  fill: #ffffff;
}
main #access .inner {
  max-width: 1200px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: auto;
  text-align: center;
}
main #access .inner .title {
  margin-bottom: 100px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
main #access .inner .title h2 {
  font-size: 4.4rem;
}
main #access .inner .title .catch {
  font-size: 2.4rem;
}
main #access .inner iframe {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
}
main #access .inner h3 {
  font-size: 2.4rem;
}
main #access .inner .attention {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 30px 0;
}
main #attention {
  position: relative;
  background-color: #fff;
  padding: 100px 0;
}
main #attention .custom-shape-divider-top-1728333441 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
main #attention .custom-shape-divider-top-1728333441 svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 100px;
}
main #attention .shape-fill4 {
  fill: #fcfaf7;
}
main #attention .item {
  position: absolute;
}
main #attention .item img {
  width: 100%;
}
main #attention .main-09 {
  z-index: 1;
  top: 83%;
  right: 4%;
  width: 9vw;
}
main #attention .main-10 {
  z-index: 1;
  top: 38%;
  left: 4%;
  width: 9vw;
}
main #attention .inner {
  max-width: 1200px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: auto;
  text-align: center;
}
main #attention .inner .title {
  margin-bottom: 60px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
main #attention .inner .title h2 {
  font-size: 4.4rem;
}
main #attention .inner .title .catch {
  font-size: 2.4rem;
}
main #attention .inner .title2 {
  margin-bottom: 60px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
main #attention .inner .title2 h2 {
  font-size: 3.4rem;
}
main #attention .inner .title2 .catch {
  font-size: 2.4rem;
}
main #attention .inner .contact {
  margin-bottom: 100px;
}
main #attention .inner .contact a.botton {
  color: #A18210;
  border: 2px solid #A18210;
  background-color: #fff;
  background-position: left 14px center, right 14px center;
  background-repeat: no-repeat;
  background-size: 26px;
  padding: 14px 60px;
  font-size: 1.8rem;
  border-radius: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  letter-spacing: -0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 20px;
  display: inline-block;
}
main #attention .inner .contact a.botton:hover {
  background-color: #bfae55;
  color: #fff;
  border: 2px solid #A18210;
}
main #attention .inner .noticelist {
  background-color: #fcfaf7;
  border: 4px solid #bfab86;
  padding: 30px 60px;
  margin-bottom: 40px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
main #attention .inner .noticelist ul {
  text-align: left;
  font-size: 2.2rem;
}
main #attention .inner .noticelist ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}
main #attention .inner .noticelist + p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #attention .inner .noticelist + p + p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #attention .inner .noticelist + p + p + p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #attention .inner .noticelist + p + p + p + p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer {
  padding-bottom: 100px;
}
footer .copy {
  text-align: center;
  color: #999;
}

#Closing-remarks p {
  text-align: center;
  color: #fff;
  background-color: #ff7171;
  padding: 10px 40px;
  display: block;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
  h1 {
    margin-bottom: 0;
  }
  h1 img {
    width: 100%;
  }
  header {
    width: 100%;
    height: 126vh;
  }
  header .inner {
    position: relative;
  }
  header .inner .item-circle {
    position: absolute;
    width: 200vw;
    top: -48vh;
    left: -140vw;
  }
  header .inner .main-item {
    position: absolute;
    top: 2vh;
    left: 66vw;
    width: 76vw;
  }
  header .inner .item-11 {
    position: absolute;
    bottom: 20%;
    left: 9vw;
    width: 20%;
  }
  header .inner .item-11 img {
    width: 100%;
  }
  header .inner .item-12 {
    position: absolute;
    bottom: 28%;
    right: 6vw;
    width: 16%;
  }
  header .inner .item-12 img {
    width: 100%;
  }
  header .inner .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* 水平方向に中央寄せ */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 垂直方向に中央寄せ */
    width: 100%;
    height: 126svh;
  }
  header .inner .main .main-logo {
    width: 36%;
  }
  header .inner .main .main-logo img {
    width: 100%;
    padding-bottom: 150px;
  }
  header .inner .main .main-catch {
    position: absolute;
    top: 16vh;
    left: 76%;
    width: 14vw;
  }
  header .inner .main .main-catch img {
    width: 100%;
  }
  header .inner .main .main-day {
    position: absolute;
    bottom: 150px;
    width: 74%;
    left: unset;
  }
  header .inner .main .main-day img {
    width: 100%;
  }
  header .inner .main .main-address {
    position: absolute;
    bottom: 48px;
    left: unset;
    width: 74%;
  }
  header .inner .main .main-address img {
    width: 100%;
  }
  header .inner .main .main-application {
    position: absolute;
    top: 6px;
    right: 20px;
    width: 32%;
  }
  header .inner .main .main-application img {
    width: 100%;
  }
  header .inner .main .worning {
    width: 90%;
    max-width: unset;
    right: unset;
  }
  header .inner .main .worning p {
    font-size: 1.4rem;
    line-height: 1.6;
    background-color: #fff3f3;
    border: 2px solid #ff9999;
    padding: 10px;
    border-radius: 6px;
  }
  #contact {
    position: fixed;
    width: 100%;
    margin: auto;
    left: auto;
    bottom: 10px;
    -webkit-transform: none;
            transform: none;
    text-align: center;
    z-index: 999;
  }
  #contact a {
    width: 90%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: auto;
    display: block;
  }
  main #about {
    min-height: 900px;
    position: relative;
  }
  main #about .item {
    position: absolute;
  }
  main #about .item img {
    width: 100%;
  }
  main #about .cloud-01 {
    z-index: -1;
    top: 0;
    right: -2vw;
    width: 44vw;
  }
  main #about .cloud-02 {
    z-index: -1;
    top: 9%;
    left: 0vw;
    width: 32vw;
  }
  main #about .cloud-03 {
    z-index: -1;
    top: 65vh;
    right: -3vw;
    width: 34vw;
  }
  main #about .cloud-04 {
    z-index: -1;
    top: 29vh;
    left: 36%;
    width: 17vw;
  }
  main #about .cloud-05 {
    z-index: -1;
    bottom: 1vh;
    left: -2vw;
    width: 44vw;
  }
  main #about .main-01 {
    z-index: -1;
    top: 63%;
    right: 10vw;
    width: 16vw;
  }
  main #about .main-02 {
    z-index: -1;
    top: 38%;
    left: 10vw;
    width: 14vw;
  }
  main #about .main-04 {
    z-index: -1;
    bottom: 200px;
    right: 20vw;
    width: 14vw;
  }
  main #about .main-08 {
    z-index: -1;
    bottom: 600px;
    left: 35vw;
    width: 14vw;
  }
  main #about .about-inner {
    width: 100%;
    padding: 60px 0;
    min-height: 100vh;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    position: relative;
  }
  main #about .about-inner .title {
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl; /* 縦書き（右から左） */
    text-orientation: upright; /* 文字の向きを正しく表示 */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
  main #about .about-inner .title h3 {
    font-size: 2.4rem;
    padding-right: 0;
  }
  main #about .about-inner .title p {
    line-height: 2;
    font-size: 1.8rem;
    padding-top: 60px;
    margin-right: 0;
  }
  main #about .about-inner .info {
    display: inline-block;
    border: 8px solid #f1de7d;
    background-color: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 100px 20px;
  }
  main #about .about-inner .info ul + ul {
    margin-top: 20px;
  }
  main #about .about-inner .info ul li {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  main #about .about-inner .info ul li strong {
    display: block;
  }
  main #about .about-inner .info ul li strong::after {
    content: "：";
    padding: 0 6px;
  }
  main #program {
    position: relative;
    background-color: #fcfaf7;
    padding: 80px 0 40px;
  }
  main #program .inner {
    padding: 20px;
  }
  main #program .inner .title {
    margin-bottom: 60px;
  }
  main #program .inner .title h2 {
    font-size: 2.8rem;
  }
  main #program .inner .title .catch {
    font-size: 1.6rem;
  }
  main #program .inner .card {
    padding: 10px 20px 20px;
    margin-bottom: 50px;
    border-radius: 4px;
  }
  main #program .inner .card h3 {
    font-size: 3.2rem;
  }
  main #program .inner .card h3 span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main #program .inner .card p {
    font-size: 1.6rem;
  }
  main #program .inner .card img {
    width: 100%;
    border-radius: 4px;
  }
  main #program .inner .card .icon {
    position: absolute;
    top: -30px;
    right: -4px;
    height: 70px;
  }
  main #program .inner .card .kameoka {
    position: absolute;
    top: -33px;
    left: -22px;
    width: auto;
    height: 64px;
  }
  main #program .inner .list01,
  main #program .inner .list02 {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main #program .inner .list01 .right,
  main #program .inner .list02 .right {
    width: 100%;
    margin-top: 0;
  }
  main #program .inner .list01 .left,
  main #program .inner .list02 .left {
    width: 100%;
  }
  main #application {
    position: relative;
    padding: 80px 0 40px;
  }
  main #application .inner {
    padding: 20px;
  }
  main #application .inner .title {
    margin-bottom: 60px;
  }
  main #application .inner .title h2 {
    font-size: 3.2rem;
  }
  main #application .inner .title .catch {
    font-size: 1.8rem;
  }
  main #application .inner .application-box {
    background-color: #fcfaf7;
    border: 3px solid #bfab86;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  main #application .inner .application-box h3 {
    text-align: left;
    font-size: 2rem;
    font-weight: normal;
    padding-bottom: 30px;
  }
  main #application .inner .application-box h4 {
    text-align: left;
    font-size: 2rem;
    font-weight: normal;
    padding-bottom: 30px;
  }
  main #application .inner .application-box h5 {
    text-align: center;
    font-size: 2rem;
    font-weight: normal;
    padding-bottom: 0;
  }
  main #application .inner .application-box p {
    text-align: center;
  }
  main #application .inner .application-box img {
    text-align: center;
    max-width: 100%;
  }
  main #application .inner .application-box .noticelist {
    margin-top: 40px;
    padding: 20px 0px 10px;
    border-top: 1px solid #bfab86;
  }
  main #application .inner .application-box .noticelist ul {
    margin-left: 20px;
  }
  main #application .inner .application-box .noticelist ul li {
    font-size: 1.6rem;
    list-style-type: disc;
    margin-bottom: 10px;
  }
  main #application .inner .application-box h2 {
    font-size: 2.8rem;
  }
  main #application .inner .application-box a {
    font-size: 1.4rem;
  }
  main #schedule {
    position: relative;
    padding: 0 0 40px;
  }
  main #schedule .inner {
    padding: 20px;
  }
  main #schedule .inner .title {
    margin-bottom: 60px;
  }
  main #schedule .inner .title h2 {
    font-size: 3.2rem;
  }
  main #schedule .inner .title .catch {
    font-size: 1.8rem;
  }
  main #schedule .inner .schedule-list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main #schedule .inner .schedule-list ul span {
    display: block;
  }
  main #schedule .inner .schedule-list ul li {
    margin-bottom: 0;
  }
  main #schedule .inner .schedule-list ul li::after {
    content: "▼";
    margin-right: 0;
    font-size: 2rem;
  }
  main #access {
    position: relative;
    padding: 80px 0 40px;
    margin-top: 10px;
  }
  main #access .inner {
    padding: 20px;
  }
  main #access .inner .title {
    margin-bottom: 60px;
  }
  main #access .inner .title h2 {
    font-size: 3.2rem;
  }
  main #access .inner .title .catch {
    font-size: 1.8rem;
  }
  main #access .inner h3 {
    font-size: 2.2rem;
  }
  main #access .inner .attention {
    font-weight: bold;
    font-size: 1.6rem;
    margin-top: 30px;
  }
  main #attention {
    position: relative;
    padding: 80px 0 40px;
    margin-top: 0;
  }
  main #attention .inner {
    padding: 20px;
  }
  main #attention .inner .title {
    margin-bottom: 60px;
  }
  main #attention .inner .title h2 {
    font-size: 3.2rem;
  }
  main #attention .inner .title .catch {
    font-size: 1.8rem;
  }
  main #attention .inner .noticelist {
    padding: 20px 20px 20px 40px;
  }
  main #attention .inner .noticelist ul {
    font-size: 1.6rem;
  }
  main #attention .inner .noticelist ul li {
    margin-bottom: 10px;
    text-align: left;
  }
  main #attention .inner .noticelist ul li:last-child {
    margin-bottom: 0;
  }
  main #attention .inner .noticelist + p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main #attention .inner .noticelist + p img {
    margin-bottom: 10px;
  }
  main #attention .inner .noticelist + p + p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main #attention .inner .noticelist + p + p img {
    margin-bottom: 10px;
  }
  main #attention .inner .noticelist + p + p + p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main #attention .inner .noticelist + p + p + p img {
    margin-bottom: 10px;
  }
  main #attention .inner .noticelist + p + p + p + p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main #attention .inner .noticelist + p + p + p + p img {
    margin-bottom: 10px;
  }
  footer {
    padding-bottom: 80px;
  }
  footer .copy {
    text-align: center;
    color: #999;
  }
  footer .copy p {
    font-size: 1.2rem;
  }
}
/*----- フェードイン -----*/
.inviewfadeIn {
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
}

.fadeIn {
  opacity: 1;
}

/*----- フェードインしながら上へスライド -----*/
.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  -webkit-transition: 1.2s;
  transition: 1.2s;
}

.inviewfadeInUp-slow {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  -webkit-transition: 2.4s;
  transition: 2.4s;
}

.inviewfadeInUp-slow2 {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  -webkit-transition: 3.4s;
  transition: 3.4s;
}

.fadeInUp {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*----- フェードインしながら左からスライド -----*/
.inviewfadeInleft {
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  -webkit-transition: 1.2s;
  transition: 1.2s;
}

.inviewfadeInleft-slow {
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  -webkit-transition: 2.4s;
  transition: 2.4s;
}

.inviewfadeInleft-slow2 {
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  -webkit-transition: 3.4s;
  transition: 3.4s;
}

.fadeInleft {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*----- フェードインしながら右からスライド -----*/
.inviewfadeInright {
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  -webkit-transition: 1.2s;
  transition: 1.2s;
}

.inviewfadeInright-slow {
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  -webkit-transition: 2.4s;
  transition: 2.4s;
}

.inviewfadeInright-slow2 {
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  -webkit-transition: 3.4s;
  transition: 3.4s;
}

.fadeInright {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}/*# sourceMappingURL=style.css.map */