.ch {
  position: relative;
}

.ch-img {
  position: absolute;
  width: 100%;
  height: 350px;
  background-color: #000;
  z-index: -1;
}

.ch-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

.ch-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  max-width: 1100px;
  margin: 0 auto;
}

.ch-board {
  position: relative;
  top: 25%;
  left: 0;
  width: 350px;
  background-color: #fff;
  text-align: center;
  padding: 40px 0 45px 0;
}

@media screen and (max-width: 600px) {
  .ch-board {
    left: calc((100% - 300px) / 2);
    width: 280px;
  }
}
.ch-board::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: #1bb3e0;
  z-index: -1;
}

.ch-tit {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  background-image: linear-gradient(to left, #1bb3e0 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .ch-tit {
    font-size: 20px;
  }
}
.ch-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .ch-tit p {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.ch-img img {
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
}

.contents {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 85px 0;
}

@media screen and (max-width: 600px) {
  .contents {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .contents {
    margin: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .contents {
    padding: 60px 0;
  }
}
.contents-tit {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  padding-bottom: 50px;
}

@media screen and (max-width: 600px) {
  .contents-tit {
    font-size: 18px;
  }
}
.contents-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .contents-tit p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.contents-tit::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
}

.contents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 70px;
}

@media screen and (max-width: 600px) {
  .contents-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }
}
.contents-txt {
  margin: 30px 0;
}

@media screen and (max-width: 600px) {
  .contents-txt {
    margin: 20px 0;
  }
}
.contents-txt h3 {
  position: relative;
  color: #1bb3e0;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .contents-txt h3 {
    font-size: 16px;
  }
}
.contents-txt h3::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
}

.contents-txt a {
  text-decoration: underline;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.contents-txt a:hover {
  color: #1bb3e0;
}

.contents-img {
  width: 100%;
  aspect-ratio: 3/2;
}

.contents-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.option {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  background-color: #f8f8f8;
  padding: 60px 70px 50px;
}

@media screen and (max-width: 600px) {
  .option {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .option {
    margin: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .option {
    padding: 20px 20px 30px;
  }
}
.option-tit {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #1bb3e0;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 5px 50px;
}

@media screen and (max-width: 600px) {
  .option-tit {
    white-space: nowrap;
  }
}
.option-item {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
}

@media screen and (max-width: 600px) {
  .option-item {
    grid-template-columns: 1fr;
  }
}
.option-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#000 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 100%;
}

.option-item:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#000 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .option-item:first-child::before {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .option-item:last-child::after {
    display: none;
  }
}
.option-item label {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .option-item label {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .option-note {
    font-size: 10px;
  }
}
.movie {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0 100px;
}

@media screen and (max-width: 600px) {
  .movie {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .movie {
    margin: 0 20px;
  }
}
.movie-txt {
  font-weight: 500;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .movie-txt {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .movie iframe {
    width: 100%;
    height: 225px;
  }
}
.notes {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  background-image: linear-gradient(to right, #000, #000 1px, transparent 1px, transparent 4px), linear-gradient(to bottom, #000, #000 1px, transparent 1px, transparent 4px), linear-gradient(to left, #000, #000 1px, transparent 1px, transparent 4px), linear-gradient(to top, #000, #000 1px, transparent 1px, transparent 4px);
  background-size: 4px 1px, 1px 4px, 4px 1px, 1px 4px;
  background-position: left top, right top, right bottom, left bottom;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  padding: 60px 70px 50px;
}

@media screen and (max-width: 600px) {
  .notes {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .notes {
    margin: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .notes {
    padding: 40px 20px 30px;
  }
}
.notes-tit {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 50px;
}

@media screen and (max-width: 600px) {
  .notes-tit {
    white-space: nowrap;
  }
}
.notes-tit::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 20px solid #000;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.notes-txt span {
  color: #fa1b1b;
}

.visit {
  margin: 0 auto;
  background-color: #f8f8f8;
  text-align: center;
  padding: 70px 0 80px;
  margin-top: 70px;
}

@media screen and (max-width: 600px) {
  .visit {
    padding: 40px 20px 50px;
    margin-top: 60px;
  }
}
.visit-tit {
  position: relative;
  color: #1bb3e0;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .visit-tit {
    font-size: 16px;
  }
}
.visit-tit::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
}

.visit-contact {
  margin-top: 10px;
}

.visit-contact p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}

.visit-btn {
  display: block;
  width: 350px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 2px;
  background-color: #07c655;
  text-align: center;
  border: 1px solid #07c655;
  padding: 15px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 auto;
}

.visit-btn:hover {
  background-color: #fff;
  color: #07c655;
}

@media screen and (max-width: 600px) {
  .visit-btn {
    width: 100%;
  }
}
.visit-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .visit-wrap {
    max-width: 425px;
  }
}
.visit-img img {
  width: 100%;
}

.link {
  display: block;
  max-width: 1100px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 80px auto 120px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .link {
    margin: 60px 20px 80px;
  }
}
.link-wrap {
  position: relative;
  background-color: #000;
  height: 200px;
  overflow: hidden;
}
.link-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  opacity: 0.5;
}
.link-flex {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .link-flex {
    width: calc(100% - 20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.link-tit {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .link-tit {
    font-size: 18px;
  }
}
.link-list {
  width: 100%;
  padding-left: 15px;
}
@media screen and (max-width: 600px) {
  .link-list {
    padding-left: 40px;
  }
}
.link-item {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0;
}
.link-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  background-color: #1bb3e0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  .link-item {
    font-size: 14px;
    padding: 0;
  }
}
.link-txt {
  color: #1bb3e0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
}
@media screen and (max-width: 600px) {
  .link-txt {
    font-size: 14px;
  }
}
.link-txt span {
  position: relative;
  margin-left: -35px;
}
.link-txt span::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 9px;
  width: 20px;
  height: 4px;
  border-right: 1px solid #1bb3e0;
  border-bottom: 1px solid #1bb3e0;
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
}