@import url("reserved.css");

main {
  max-width: 1300px;
  margin: auto;
}

/* =================== home ==================== */

.home {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  margin: auto;
  background: url(../img/home-bg.jpg) no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  z-index: 1;
}
.home .ctn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  padding: 0 20px;
  margin: auto;
  text-align: center;
}
.home .ctn-text .status {
  display: flex;
  align-items: center;
  color: rgb(0, 187, 0);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 20px;
  transition: var(--transition-default);
}
.home .ctn-text .status.close {
  color: rgb(255, 25, 0);
}
.home .ctn-text .status.soon {
  color: rgb(255, 187, 0);
}
.home .ctn-text .status:hover {
  background-color: rgba(255, 255, 255, 0.135);
}
.home .ctn-text .status span {
  display: block;
  width: 12px;
  height: 12px;
  background-color: rgb(0, 187, 0);
  border-radius: 50%;
  margin-right: 10px;
}
.home .ctn-text .status.close span {
  background-color: rgb(255, 25, 0);
}
.home .ctn-text .status.soon span {
  background-color: rgb(255, 187, 0);
}
.home .ctn-text .status p {
  margin: 0;
}
.home .ctn-text p {
  margin-top: 10px;
  margin-bottom: 30px;
}

/* ============================================= */

/* =================== about =================== */

.about {
  width: 800px;
  padding: 40px;
  margin-top: 100px;
}
.about p {
  font-size: 30px;
}
.about p img {
  width: 35px;
  margin-bottom: -5px;
}
.about span {
  font-size: 18px;
  font-style: italic;
  color: var(--c-gray);
}
@media screen and (max-width: 950px) {
  .about {
    width: calc(100% - 40px);
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about p {
    font-size: 24px;
  }
}

/* ============================================= */

/* =================== notice ================== */

.notice {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}
.notice .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notice .container > img {
  height: 40px;
  margin-bottom: 10px;
}
.notice .container .state img {
  width: 25px;
}
.notice .container p {
  margin-top: 3px;
  color: var(--c-gray);
}

@media screen and (max-width: 950px) {
  .notice {
    overflow-x: scroll;
    margin-top: 50px;
    padding: 20px;
  }
  .notice .container {
    min-width: 190px;
    margin: 0 20px;
  }
}

/* ============================================= */

/* ================== concept ================== */

.concept {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  margin-top: 50px;
}
.concept img {
  width: calc(50% - 40px);
  height: 400px;
  object-fit: cover;
  border-radius: var(--br-default);
}
.concept .ctn-text {
  width: 50%;
}
.concept .ctn-text h2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 950px) {
  .concept {
    padding: 20px;
  }
}
@media screen and (max-width: 850px) {
  .concept {
    flex-direction: column;
  }
  .concept img {
    width: 100%;
    height: calc((100vw - 40px) / 1.7);
    max-height: 400px;
    margin-bottom: 40px;
  }
  .concept .ctn-text {
    width: 100%;
  }
}

/* ============================================= */

/* ================== product ================== */

.product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  padding: 40px;
  margin-top: 50px;
}
.product .img {
  width: 50%;
  height: 400px;
  margin-left: 30px;
}
.product .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--br-default);
}
.product .ctn-text {
  width: 50%;
}
.product .ctn-text h2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 950px) {
  .product {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .product .img {
    width: 100%;
    height: calc((100vw - 40px) / 1.7);
    max-height: 400px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .product .ctn-text {
    width: 100%;
  }
}

/* ============================================= */

/* =================== menu ==================== */

.menu {
  display: flex;
  flex-direction: column;
  padding: 40px;
  margin-top: 80px;
}
.menu .container {
  margin-top: 30px;
}
.menu .container h3 {
  margin-bottom: 20px;
}
.menu .container h5 {
  margin: 15px 0;
  color: var(--c-default);
}
.menu .container .flex div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.menu .container .flex div span {
  flex-grow: 1;
  display: block;
  height: 2px;
  margin: 0 20px;
  margin-bottom: -5px;
  background-color: var(--c-gray);
}
.menu .container .flex div p {
  margin: 0;
}
.menu .container .flex div i {
  margin-left: auto;
}

@media screen and (max-width: 950px) {
  .menu {
    padding: 20px;
  }
}

/* ============================================= */

/* ================== contact ================== */

.contact {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  margin-top: 80px;
}
.contact h2 {
  margin-bottom: 10px;
}
.contact a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--c-default);
}
.contact a svg {
  margin-right: 10px;
}
.contact .hourly {
  margin-top: 50px;
}
.contact .hourly p {
  display: flex;
  align-items: normal;
  flex-direction: row;
  margin-bottom: 20px;
}
.contact .hourly .flex {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  font-style: italic;
}
.contact .map {
  width: 50%;
  height: 100%;
}
.contact iframe {
  width: 100%;
  border-radius: var(--br-default);
}

@media screen and (max-width: 950px) {
  .contact {
    padding: 20px;
  }
}
@media screen and (max-width: 850px) {
  .contact {
    flex-direction: column-reverse;
  }
  .contact .map {
    width: 100%;
    height: calc(100vw - 40px);
    margin-bottom: 50px;
  }
  .contact .map iframe {
    height: calc(100vw - 40px);
  }
  .contact .ctn-text {
    display: flex;
    flex-direction: row;
  }
  .contact .hourly {
    margin-top: 0;
    margin-left: 50px;
  }
}
@media screen and (max-width: 700px) {
  .contact .ctn-text {
    display: flex;
    flex-direction: column;
  }
  .contact .hourly {
    margin-top: 30px;
    margin-left: 0;
  }
}

/* ============================================= */
