@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-size: 16px;
  color: #333333;
}

/*** フェードインアニメーションを作って ***/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*** bodyやメインコンテンツの要素に反映させる ***/
body {
  animation: fadeIn 4s forwards;
}

html, body {
  margin: 0;
  height: 100%;
}

li {
  list-style: none;
}

a {
  color: #a82d00;
  text-decoration: none;
}
a:hover {
  transition: 0.4s;
}
a:hover img {
  transition: 0.4s;
  opacity: 0.5;
}
a.link {
  padding-bottom: 0.2rem;
  border-bottom: 1px dotted #a82d00;
}

.wf-notosansjapanese {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

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

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.1rem;
}

h5 {
  font-size: 1.8rem;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
  font-weight: 700;
}

.h1 {
  font-size: 4.2rem;
}

.h2 {
  font-size: 3.6rem;
}

.h3 {
  font-size: 3rem;
}

.h4 {
  font-size: 2.1rem;
}

.h5 {
  font-size: 1.8rem;
}

.f42 {
  font-size: 4.2rem;
}

.f36 {
  font-size: 3.6rem;
}

.f30 {
  font-size: 3rem;
}

.f24 {
  font-size: 2.4rem;
}

.f21 {
  font-size: 2.1rem;
}

.f18 {
  font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
  .f42 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 480px) {
  .f30, .f24, .f21, .f18 {
    font-size: 1.8rem;
  }
}

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

.text-large {
  font-size: 1.8rem;
  line-height: 1.8;
}

.text-xlarge {
  font-size: 2.4rem;
  line-height: 2;
}

.text-small {
  font-size: 1.4rem;
}

.text-xsmall {
  font-size: 1.2rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.color-main {
  color: #d9272e;
}

.color-white {
  color: #ffffff;
}

.color-beige {
  color: #a82d00;
}

.color-green {
  color: #e75300;
}

.color-blue {
  color: #333333;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.mt-02 {
  margin-top: 2px;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-02 {
  margin-bottom: 2px;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.indent-1 {
  margin: 0 0 0 1em;
  padding: 0;
  text-indent: -1em;
}

.indent1 {
  text-indent: 1em;
}

.lineheight1 {
  line-height: 1;
}

.border-pink-1 {
  border: 1px solid #d9272e;
}

.border-pink-2 {
  border: 2px solid #d9272e;
}

.border-pink-3 {
  border: 3px solid #d9272e;
}

.border-radius-1 {
  border-radius: 1rem;
}

.border-radius-2 {
  border-radius: 2rem;
}

.border-radius-3 {
  border-radius: 3rem;
}

/* images */
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* SP改行削除 */
.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

/* ページ内リンクで上マージン */
.header-fixed {
  display: block;
  padding-top: 140px;
  margin-top: -140px;
}

hr {
  margin: 1rem 0;
}

/* ------- header ------- */
.header {
  width: 100%;
  padding: 0;
  z-index: 10;
  background-color: #d9272e;
}
.header a {
  color: #ffffff;
}
.header a:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.header-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1025px) {
  .header-inner {
    padding: 2.4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 1.8rem 0;
  }
}

.header-title {
  width: 130px;
}
@media screen and (max-width: 1025px) {
  .header-title {
    width: 120px;
    margin: 1rem auto;
  }
}
@media screen and (max-width: 767px) {
  .header-title {
    width: 100px;
    margin: 1rem auto;
  }
}

.header-nav {
  /* width: 100%;
  max-width: 600px; */
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}
.header-nav-list {
  display: flex;
  justify-content: flex-end;
}
.header-nav-item {
  margin-right: 6rem;
}
@media screen and (max-width: 1025px) {
  .header-nav-item {
    margin-right: 3rem;
  }
}
.header-nav-item:last-of-type {
  margin-right: 0;
}

/* ハンバーガーメニュー */
.hamburger-nav {
  position: fixed;
  left: 0;
  top: -120%;
  width: 100%;
  height: 50rem;
  padding-top: 8rem;
  background-color: #333333;
  transition: all 0.3s;
  z-index: 20;
  overflow-y: auto;
}
.hamburger-nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .hamburger-nav-list {
    flex-direction: column;
  }
}
.hamburger-nav-list_child {
  padding: 0 0 0.2rem 0.2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  .hamburger-nav-list_child {
    display: none;
  }
}
.hamburger-nav-item {
  padding: 1rem 0;
  width: 22%;
}
@media screen and (max-width: 480px) {
  .hamburger-nav-item {
    width: 100%;
  }
}
.hamburger-nav-item a {
  display: block;
  color: #ffffff;
  width: 100%;
}

.hamburger {
  position: absolute;
  right: 3rem;
  top: 1rem;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 30;
  background-color: #d9272e;
  border-radius: 1rem;
}
@media screen and (max-width: 480px) {
  .hamburger {
    right: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger_line {
  position: absolute;
  left: 8px;
  width: 30px;
  height: 4px;
  background-color: #ffffff;
  transition: all 0.6s;
  border-radius: 50vh;
}
.hamburger_line_1 {
  top: 1.1rem;
}
.hamburger_line_2 {
  top: 2.1rem;
}
.hamburger_line_3 {
  top: 3.1rem;
}

.hamburger-bg {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #010001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  cursor: pointer;
}

.nav-open .hamburger-nav {
  top: 0;
}

.nav-open .hamburger-bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger_line_1 {
  transform: rotate(45deg);
  top: 20px;
}

.nav-open .hamburger_line_2 {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_line_3 {
  transform: rotate(-45deg);
  top: 20px;
}

.nav-open .hamburger_title {
  font-size: 0;
}

.nav-open .hamburger_title::before {
  font-size: 1.2rem;
  content: "CLOSE";
  left: 0.1rem;
}

/*** main ***/
main {
  width: 100%;
  margin: 0;
}

.btn-side {
  display: block;
  position: fixed;
  top: 600px;
  right: 40px;
  z-index: 100;
  width: 8px;
  height: 8px;
  border: 2px solid #666666;
  border-radius: 50vh;
}
.btn-side-text {
  font-size: 1.2rem;
  color: #666666;
  opacity: 0;
}
.btn-side-text:hover {
  transition: 0.4s;
  opacity: 1;
}

.side-nav {
  width: 260px;
  position: fixed;
  top: 200px;
  right: 40px;
  z-index: 100;
  text-align: right;
}
.side-nav-list {
  width: 240px;
  padding-bottom: 40px;
  display: block;
}
.side-nav-title {
  font-size: 1.2rem;
  color: #666666;
  opacity: 0;
  vertical-align: 9px;
}
.side-nav-title:hover {
  transition: 0.4s;
  opacity: 1;
}
.side-nav-btn {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid #666666;
  border-radius: 50vh;
  opacity: 1;
}
.side-nav-btn:hover {
  background-color: #e5e5e5;
  transition: 0.4s;
}

.hero {
  width: 100%;
  height: 800px;
  margin: 0;
  background-color: #010001;
  overflow: hidden;
  /* & img{
      width: auto;
      height: 100%;
      object-fit: cover;
  } */
}
.hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1025px) {
  .hero {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .hero {
    height: 200px;
  }
}
.hero-detail {
  position: absolute;
  width: 90%;
  top: 600px;
  left: 50%;
  transform: translate(-50%, 0%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1025px) {
  .hero-detail {
    top: 500px;
  }
}
@media screen and (max-width: 767px) {
  .hero-detail {
    display: block;
    top: 200px;
  }
}
@media screen and (max-width: 480px) {
  .hero-detail {
    top: 140px;
  }
}
.hero-detail-badge {
  width: 18%;
}
.hero-detail-badge img {
  width: 100%;
  height: auto;
}
.hero-detail-text {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .hero-detail-text {
    width: 100%;
  }
}
.hero-detail-text img {
  width: 100%;
  height: auto;
}

.main-title {
  width: 100%;
}
.main-title-inner {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto;
}
@media screen and (max-width: 1025px) {
  .main-title-inner {
    width: calc(100% - 2rem);
    padding: 1rem;
  }
}
.main-title-btn {
  width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .main-title-btn {
    width: 220px;
  }
}

.details-mikawa {
  width: 100%;
  margin: 0;
  background-color: #d9272e;
  border-top: 50px solid #010001;
}
.details-mikawa-inner {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
  color: #ffffff;
}
@media screen and (max-width: 1025px) {
  .details-mikawa-inner {
    width: calc(100% - 2rem);
    padding: 1rem;
  }
}
.details-mikawa-point {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .details-mikawa-point {
    flex-direction: column;
    justify-content: center;
  }
}
.details-mikawa_time {
  width: 46%;
  border-right: 1px solid #ffffff;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .details-mikawa_time {
    width: 100%;
    border-right: none;
  }
}
.details-mikawa-count {
  width: 46%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .details-mikawa-count {
    width: 100%;
  }
}

.details-yagoya {
  width: 100%;
  margin: 0;
  background-color: #e75300;
  border-top: 50px solid #010001;
}
.details-yagoya-inner {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
  color: #ffffff;
}
@media screen and (max-width: 1025px) {
  .details-yagoya-inner {
    width: calc(100% - 2rem);
    padding: 1rem;
  }
}

.details-title {
  display: block;
  font-size: 2.4rem;
  width: 100px;
  border: 1px solid #ffffff;
  border-radius: 1rem;
  margin: 0 auto;
}

.details-time {
  font-size: 4.6rem;
  font-weight: bold;
  margin: 1.3rem 0 0.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  .details-time {
    font-size: 3.8rem;
  }
}

.details-start {
  font-size: 2.4rem;
  margin-top: 0.1rem;
}

.maps {
  width: 100%;
  height: 500px;
  margin: 0;
}

.introduction {
  width: 100%;
}
.introduction-inner {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
}
@media screen and (max-width: 1025px) {
  .introduction-inner {
    width: calc(100% - 2rem);
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .introduction-inner {
    text-align: center;
  }
}
.introduction-tip {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d9272e;
  padding-bottom: 10px;
  background-image: radial-gradient(circle, #d9272e 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14px 4px;
}

ruby {
  ruby-position: over;
  ruby-align: center;
}

.apply {
  background-color: #e5e5e5;
}
.apply-inner {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 3rem 1rem;
}
@media screen and (max-width: 1025px) {
  .apply-inner {
    width: calc(100% - 2rem);
  }
}
.apply-btn {
  width: 240px;
  margin: 0 auto;
}

.section-title {
  display: block;
  width: 180px;
  margin: 0 auto;
  padding: 8px 0;
  background-color: #ffffff;
  color: #010001;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 1.2rem;
}

.section-date {
  font-size: 6rem;
  font-weight: bold;
  margin: 2px;
}
@media screen and (max-width: 1025px) {
  .section-date {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .section-date {
    font-size: 3rem;
  }
}
.section-date span {
  font-size: 8rem;
}
@media screen and (max-width: 1025px) {
  .section-date span {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .section-date span {
    font-size: 2.4rem;
  }
}

.section-deadline {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 4px;
  padding-bottom: 4px;
  border-bottom: 3px solid #ffffff;
}
@media screen and (max-width: 1025px) {
  .section-deadline {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .section-deadline {
    font-size: 2rem;
  }
}
.section-deadline span {
  font-size: 5rem;
}
@media screen and (max-width: 1025px) {
  .section-deadline span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .section-deadline span {
    font-size: 2.2rem;
  }
}

.footer {
  width: 100%;
  overflow: hidden;
}
.footer-img {
  width: 180px;
  margin: 3rem auto;
}/*# sourceMappingURL=style.css.map */