@charset "UTF-8";
/**** 共通カラー ****/
.section {
  background: #ffffff;
  padding: 140px 0 140px;
}

.section_about {
  background: #155966;
}

.section_works {
  background: #155966;
}

.w1200 {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .w1200 {
    padding: 0 15px;
  }
}

.display_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .display_pc {
    display: none;
  }
}

.display_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .display_sp {
    display: block;
  }
}

.section-top {
  margin-bottom: 120px;
  width: 100%;
  height: 50vh;
  background: url(../img/mv.webp) center/cover, no-repeat;
  border-radius: 0 0 50px 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-top {
    border-radius: 0 0 20px 20px;
    background: url(../img/mv_sp.webp) center/cover, no-repeat;
  }
}
.section-top h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 50%;
  max-width: 720px;
  padding: 5px 0;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: linear-gradient(90deg, #155966 0%, #155966 50%, #00434f 100%);
  color: #ded12a;
  font-size: clamp(2.4rem, 2.7vw, 3.2rem);
  font-family: "NotoSansJP-Bold";
}
@media screen and (max-width: 768px) {
  .section-top h1 {
    width: 90%;
  }
}
.section-top h1 .logo-area {
  display: block;
  margin-right: 30px;
  width: 31%;
}
@media screen and (max-width: 768px) {
  .section-top h1 .logo-area {
    margin-right: 6px;
    width: 45%;
  }
}
.section-top h1 .deco-area {
  display: block;
  margin-right: 40px;
  width: 3%;
}
@media screen and (max-width: 768px) {
  .section-top h1 .deco-area {
    margin-right: 6px;
    width: 7%;
  }
}

section .content-wrapper {
  padding: 60px 0;
  width: 91.6%;
  max-width: 1320px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  section .content-wrapper {
    padding: 40px 0;
    width: 100%;
  }
}
section h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 26.5px;
  margin-bottom: 30.5px;
  border-bottom: solid 1px #89abb2;
  font-size: clamp(2.4rem, 2.3vw, 2.8rem);
  color: #155966;
  font-family: "NotoSansJP-Bold";
}
@media screen and (max-width: 768px) {
  section h2 {
    font-size: clamp(1.4rem, 4.6vw, 1.75rem);
    padding-bottom: 20px;
    margin-bottom: 24px;
  }
}
section h2 .deco-area {
  width: 3%;
  min-width: 29px;
  margin-right: 13px;
}

.section-step {
  margin-bottom: 117px;
}
@media screen and (max-width: 768px) {
  .section-step {
    margin-bottom: 80px;
  }
}
.section-step .content-wrapper {
  margin-bottom: 34px;
}
.section-step ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-step ul {
    flex-direction: column;
  }
}
.section-step ul li {
  width: 45%;
  padding: 0 20px 20px;
  background-color: #e7eeef;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .section-step ul li {
    width: 100%;
  }
}
.section-step ul li h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "NotoSansJP-Medium";
  margin-bottom: 20px;
}
.section-step ul li h3 .step-area {
  display: block;
  padding: 15px 20px 15px;
  background-color: #155966;
  border-radius: 0 0 10px 10px;
  color: #ffffff;
  text-align: center;
}
.section-step ul li h3 .step-area .font-small {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.section-step ul li h3 .step-area .number {
  display: block;
  margin-top: 5px;
  font-size: clamp(2.4rem, 2.3vw, 2.8rem);
}
.section-step ul li h3 .text-area {
  display: block;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  margin-left: 18px;
  color: #155966;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .section-step ul li h3 .text-area {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
}
.section-step ul li h3 .text-area .font-small {
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .section-step ul li h3 .text-area .font-small {
    font-size: 1rem;
  }
}
.section-step ul li .image-area {
  background-color: #ffffff;
  border-radius: 10px;
}
.section-step ul li .image-area .image {
  border-radius: 10px;
  overflow: hidden;
}
.section-step ul li:first-of-type .text-area {
  margin-left: 6px;
}
.section-step ul li:first-of-type {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-step ul li:first-of-type {
    margin-bottom: 65px;
  }
}
.section-step ul li:first-of-type .image-area {
  padding: 20px;
}
.section-step ul li:first-of-type::before {
  content: "";
  position: absolute;
  right: -16.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24.3px;
  height: 28.59px;
  background: url(../img/arrow.svg) center/contain, no-repeat;
}
@media screen and (max-width: 768px) {
  .section-step ul li:first-of-type::before {
    transform: rotate(90deg);
    right: 0;
    left: 0;
    margin: auto;
    top: inherit;
    bottom: -52px;
    width: 36.3px;
    height: 39.59px;
  }
}
.section-step ul li:first-of-type::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -80px;
  transform: rotate(135deg) translate(35%, 35%);
  width: 24.3px;
  height: 28.59px;
  background: url(../img/arrow.svg) center/contain, no-repeat;
}
@media screen and (max-width: 768px) {
  .section-step ul li:first-of-type::after {
    display: none;
  }
}
.section-step ul li:nth-of-type(2) {
  margin-bottom: 120px;
}
.section-step ul li:nth-of-type(2) .image-area {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(2) {
    position: relative;
    margin-bottom: 65px;
  }
  .section-step ul li:nth-of-type(2) .text-area {
    font-size: clamp(1rem, 3.4vw, 1.3rem);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .section-step ul li:nth-of-type(2) .text-area:last-child {
    transform: translateY(3px);
  }
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(2)::before {
    content: "";
    position: absolute;
    background: url(../img/arrow.svg) center/contain, no-repeat;
    transform: rotate(90deg);
    right: 0;
    left: 0;
    margin: auto;
    top: inherit;
    bottom: -52px;
    width: 36.3px;
    height: 39.59px;
  }
}
.section-step ul li:nth-of-type(3) {
  margin-bottom: 120px;
  position: relative;
}
.section-step ul li:nth-of-type(3) .image-area {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(3) {
    margin-bottom: 65px;
  }
}
.section-step ul li:nth-of-type(3)::before {
  content: "";
  position: absolute;
  right: -16.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24.3px;
  height: 28.59px;
  background: url(../img/arrow.svg) center/contain, no-repeat;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(3)::before {
    content: "";
    position: absolute;
    background: url(../img/arrow.svg) center/contain, no-repeat;
    transform: rotate(90deg);
    right: 0;
    left: 0;
    margin: auto;
    top: inherit;
    bottom: -52px;
    width: 36.3px;
    height: 39.59px;
  }
}
.section-step ul li:nth-of-type(3)::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -80px;
  transform: rotate(135deg) translate(35%, 35%);
  width: 24.3px;
  height: 28.59px;
  background: url(../img/arrow.svg) center/contain, no-repeat;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(3)::after {
    display: none;
  }
}
.section-step ul li:nth-of-type(4) {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(4) {
    margin-bottom: 65px;
  }
  .section-step ul li:nth-of-type(4) .text-area {
    font-size: clamp(1rem, 3.4vw, 1.2rem);
  }
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(4)::before {
    content: "";
    position: absolute;
    background: url(../img/arrow.svg) center/contain, no-repeat;
    transform: rotate(90deg);
    right: 0;
    left: 0;
    margin: auto;
    top: inherit;
    bottom: -52px;
    width: 36.3px;
    height: 39.59px;
  }
}
.section-step ul li:nth-of-type(5) {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(5) {
    margin-bottom: 65px;
  }
}
.section-step ul li:nth-of-type(5)::before {
  content: "";
  position: absolute;
  right: -16.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24.3px;
  height: 28.59px;
  background: url(../img/arrow.svg) center/contain, no-repeat;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(5)::before {
    content: "";
    position: absolute;
    background: url(../img/arrow.svg) center/contain, no-repeat;
    transform: rotate(90deg);
    right: 0;
    left: 0;
    margin: auto;
    top: inherit;
    bottom: -52px;
    width: 36.3px;
    height: 39.59px;
  }
}
.section-step ul li:nth-of-type(5)::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -80px;
  transform: rotate(135deg) translate(35%, 35%);
  width: 24.3px;
  height: 28.59px;
  background: url(../img/arrow.svg) center/contain, no-repeat;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(5)::after {
    display: none;
  }
}
.section-step ul li:nth-of-type(6) {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(6) {
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(6)::before {
    content: "";
    position: absolute;
    background: url(../img/arrow.svg) center/contain, no-repeat;
    transform: rotate(90deg);
    right: 0;
    left: 0;
    margin: auto;
    top: inherit;
    bottom: -52px;
    width: 36.3px;
    height: 39.59px;
  }
}
.section-step ul li:nth-of-type(7) {
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(7) {
    margin-bottom: 65px;
  }
}
.section-step ul li:nth-of-type(7)::before {
  content: "";
  position: absolute;
  right: -16.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24.3px;
  height: 28.59px;
  background: url(../img/arrow.svg) center/contain, no-repeat;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(7)::before {
    content: "";
    position: absolute;
    background: url(../img/arrow.svg) center/contain, no-repeat;
    transform: rotate(90deg);
    right: 0;
    left: 0;
    margin: auto;
    top: inherit;
    bottom: -52px;
    width: 36.3px;
    height: 39.59px;
  }
}
.section-step ul li:nth-of-type(8) {
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-step ul li:nth-of-type(8) {
    margin-bottom: 65px;
  }
}
.section-step .description {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #155966;
  margin-bottom: 31px;
  line-height: 1.8;
}
.section-step .description-note {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #155966;
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}

.ticket-btn {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .ticket-btn {
    margin-bottom: 80px;
  }
}
.ticket-btn .btn-area {
  width: 85%;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ticket-btn .btn-area {
    width: 100%;
  }
}
.ticket-btn .btn-area a {
  display: block;
  width: 100%;
  padding: 55px 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2.4rem, 2.3vw, 2.8rem);
  color: #ffffff;
  font-family: "NotoSansJP-Medium";
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.ticket-btn .btn-area a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/mc-ticket_bg.webp) center/cover, no-repeat;
  z-index: -1;
  transition: all 0.3s;
}
.ticket-btn .btn-area a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/mc-ticket_bg.webp) center/130%, no-repeat;
  z-index: -2;
  transition: all 0.3s;
}
.ticket-btn .btn-area a:hover::before {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .ticket-btn .btn-area a {
    padding: 16px;
  }
}
.ticket-btn .btn-area a .deco-area {
  width: 3%;
  min-width: 29px;
  margin-right: 13px;
}
@media screen and (max-width: 768px) {
  .ticket-btn .btn-area a .text-area {
    font-size: clamp(1.8rem, 2vw, 2rem);
  }
}

.section-ticket-site {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .section-ticket-site {
    margin-bottom: 60px;
  }
}
.section-ticket-site ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .section-ticket-site ul {
    flex-direction: column;
  }
}
.section-ticket-site ul li {
  padding: 20px;
  width: 45%;
  background-color: #e7eeef;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .section-ticket-site ul li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section-ticket-site ul li:first-child {
    margin-bottom: 40px;
  }
}
.section-ticket-site ul li .wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px 0 60px;
  text-align: center;
}
.section-ticket-site ul li .wrapper .logo-area {
  width: 72%;
  margin: 0 auto 20px;
}
.section-ticket-site ul li .wrapper .btn-area a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72%;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #e7eeef;
  font-size: clamp(1.4rem, 1.8vw, 2.2rem);
  font-family: "NotoSansJP-Medium";
  color: #155966;
  padding: 14px 10px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .section-ticket-site ul li .wrapper .btn-area a {
    font-size: clamp(1.4rem, 4.8vw, 1.8rem);
  }
}
@media screen and (max-width: 576px) {
  .section-ticket-site ul li .wrapper .btn-area a {
    font-size: clamp(1.2rem, 3.7vw, 1.4rem);
  }
}
.section-ticket-site ul li .wrapper .btn-area a:hover {
  color: #ffffff;
  background-color: #155966;
}
.section-ticket-site ul li .wrapper .btn-area a .arrow {
  display: block;
  margin-left: 8%;
  background-color: #155966;
  width: 11%;
  max-width: 40px;
  aspect-ratio: 1;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s;
}
.section-ticket-site ul li .wrapper .btn-area a .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: rotate(45deg) translate(-15%, -55%);
  width: 30%;
  aspect-ratio: 1;
  border-right: solid 2px #ffffff;
  border-top: solid 2px #ffffff;
  transition: all 0.3s;
}
.section-ticket-site ul li .wrapper .btn-area a:hover .arrow {
  background-color: #ded12a;
  transform: translateX(5px);
}
.section-ticket-site ul li .wrapper .btn-area a:hover .arrow::before {
  border-right: solid 2px #155966;
  border-top: solid 2px #155966;
}

.section-note {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .section-note {
    padding-bottom: 80px;
  }
}
.section-note .note_box {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #155966;
  padding: 32px 40px;
  background-color: #e7eeef;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .section-note .note_box {
    padding: 20px;
  }
}
.section-note .note_box li {
  padding-left: 2.6rem;
  line-height: 2;
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-note .note_box li {
    padding-left: 2rem;
  }
}
.section-note .note_box li::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 1.2rem;
  left: 0;
  background: #ded12a;
}
@media screen and (max-width: 768px) {
  .section-note .note_box li::before {
    top: 0.9rem;
  }
}/*# sourceMappingURL=page.css.map */