.pc {
  display: none;
}

.pc1 {
  display: none !important;
}



@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block;
  }
}

@media screen and (min-width: 1100px) {
  .sp1 {
    display: none !important;
  }

  .pc1 {
    display: block;
  }
}

.header {
  background-color: #FFFFFF;
  height: 56px;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header__border {
  border-bottom: 1px solid #000000;
  margin-top: -1px;
}

.header__sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.header__logo {
  padding-left: 20px;
}

.header__logo-title {
  font-family: "Cormorant", serif;
  font-weight: normal;
  font-size: 22px;
  height: 100%;
  padding: 15px 0;
}

.header__logo-title a {
  /* color: #fff; */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.header__right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__login {
  width: 24px;
  margin-right: 12px;
  z-index: 101;
}

.header__login-icon {
  width: 100%;
  padding: 16px 0;
}

.header__hamburger {
  background-color: #000000;
  width: 56px;
  height: 56px;
  position: relative;
  top: 0;
  right: 0;
}

.header__hamburger>span {
  position: absolute;
  left: 11px;
  height: 1px;
  width: 30px;
  background-color: #FFFFFF;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header__hamburger>span:nth-child(1) {
  top: 19px;
}

.header__hamburger>span:nth-child(2) {
  top: 28px;
}

.header__hamburger>span:nth-child(3) {
  bottom: 18px;
}

.header-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 72.8%;
  min-width: 273px;
  height: 100vh;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  background-color: #000000;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header-nav__items {
  width: 100%;
}

.header-nav__list {
  height: 50px;
  border-bottom: 1px solid #FFFFFF;
  position: relative;
}

.header-nav__link {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: normal;
  display: block;
  width: 100%;
  padding: 14px 20px;
}

.header-nav__sub-items {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  display: none;
  z-index: 102;
  background-color: #1A1A1A;
}

.header-nav__sub-list {
  font-size: 14px;
  font-weight: normal;
  height: 50px;
  border-bottom: 0.3px solid #999999;
  padding: 14px 20px;
}

.header-nav__sub-list:hover {
  background-color: #004b64;
}

.header-nav__sub-link {
  text-decoration: none;
  color: #FFFFFF;
}

.header__hamburger.active {
  z-index: 101;
  height: 49px;
}

.header__hamburger.active>span:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  width: 30px;
}

.header__hamburger.active>span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active>span:nth-child(3) {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
}

.header-nav.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drop-down+.header-nav__list2 {
  top: 0;
}

.drop-down::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 22px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drop-down.active::before {
  content: "";
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-nav__list1.active+.header-nav__list2 {
  top: 300px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.header-nav__list1+.header-nav__list2 {
  top: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media screen and (min-width: 768px) {
  .header {
    background-color: #000000;
    height: 76px;
  }

  .header__inner {
    width: 100%;
    margin: 0 auto;
  }

  .header__pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__logo-title {
    color: #FFFFFF;
    font-size: 20px;
    padding: 26px 0;
  }

  .header__right-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }

  .header__login {
    padding-top: 4px;
    margin-right: 20px;
  }

  .header__login-icon {
    padding: 21px 0;
  }

  .header__hamburger {
    display: none;
  }

  .header-nav-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 76px;
  }

  .header-nav-pc__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-nav-pc__list {
    height: 100%;
    padding: 0 15px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
  }

  .header-nav-pc__link {
    display: block;
    height: 100%;
    padding: 26px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
  }

  .header-nav-pc__sub-items {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 25px 30px;
    position: absolute;
    top: 76px;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    width: 146px;
    display: none;
  }

  .header-nav-pc__sub-list {
    display: block;
    height: auto;
    padding-bottom: 24px;
  }

  .header-nav-pc__sub-list:last-child {
    padding-bottom: 0;
  }

  .header-nav-pc__sub-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
  }

  .header-nav-pc__list:hover .header-nav-pc__sub-items {
    display: block;
  }

  .header-nav-pc__list:hover .header-nav-pc__sub-list {
    display: block;
    width: 230px;
  }
}

@media screen and (min-width: 1100px) {
  .header__inner {
    width: 80%;
    max-width: 1200px;
  }

  .header__logo-title {
    color: #FFFFFF;
    font-size: 30px;
    padding: 19px 0;
  }

  .header-nav-pc {
    height: 75px;
  }

  .header-nav-pc__list {
    padding: 0 20px;
  }

  .header-nav-pc__link {
    padding: 25px 0;
  }
}

.section-top-a {
  margin-top: 56px;
  width: 100%;
  position: relative;
}

.section-top-a__img {
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.section-top-a__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-weight: 500;
  font-size: 35px;
}

.section-top {
  margin-top: 56px;
  width: 100%;
}

.section-top__img {
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.section-title {
  padding: 20px 0 30px;
  text-align: center;
}

.section-title__title {
  font-size: 23px;
  line-height: 1.826;
  font-weight: 500;
  padding-bottom: 15px;
  position: relative;
}

.section-title__title::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 57px;
  border-bottom: 3px solid #56C6C3;
  display: inline-block;
}

.title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.68;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #56C6C3;
  position: relative;
}

.title::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: -30px;
  width: 85px;
  border-bottom: 2px solid #56C6C3;
  display: inline-block;
}

.text {
  font-size: 16px;
  line-height: 1.5625;
  word-wrap: break-word;
  font-weight: normal;
}

.view-more {
  height: 100%;
  width: 100%;
  background-color: #56C6C3;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 5px 0;
}

@media screen and (min-width: 768px) {
  .section-top-a {
    margin-top: 76px;
  }

  .section-top-a__img {
    max-height: 356px;
  }

  .section-top-a__title {
    font-size: 50px;
  }

  .section-top {
    margin-top: 76px;
    width: 100%;
  }

  .section-top__img {
    max-height: 356px;
  }

  .section-title {
    padding: 55px 0 45px;
  }

  .section-title__title {
    font-size: 35px;
    line-height: 1.2;
    padding-bottom: 30px;
  }

  .section-title__title::after {
    width: 98px;
  }

  .title {
    font-size: 28px;
    line-height: 1.5;
  }
}

@media screen and (min-width: 900px) {
  .view-more {
    background-color: #FFFFFF;
    color: #000000;
    text-align: right;
    position: relative;
    padding: 0;
  }

  .view-more::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 5px;
    width: 41px;
    border-bottom: 3px solid #56C6C3;
    display: inline-block;
  }

  .view-more::before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 5px;
    width: 103px;
    border-bottom: 1px solid #000000;
    display: inline-block;
  }
}

.section-info {
  background-color: #F2F2F2;
  text-align: center;
  padding: 50px 0;
}

.section-info__name {
  font-family: "Cormorant", serif;
  font-weight: normal;
  font-size: 25px;
}

.section-info__address {
  font-size: 14px;
  line-height: 1.5;
  padding-top: 10px;
}

.section-info__tel {
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .section-info {
    padding: 85px 0 65px;
  }

  .section-info__name {
    font-size: 30px;
  }

  .section-info__address {
    font-size: 16px;
    line-height: 1.3125;
  }

  .section-info__tel {
    font-size: 16px;
    line-height: 1.3125;
  }
}

.footer-nav {
  padding: 25px 0 35px;
}

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

.footer-nav__list {
  padding-top: 11px;
}

.footer-nav__list:first-child {
  padding-top: 0;
}

.footer-nav__link {
  font-size: 14px;
  text-decoration: none;
  color: #000000;
}

.footer-copyright {
  background-color: #000000;
  height: 26px;
  width: 100%;
}

.footer-copyright__text {
  color: #FFFFFF;
  display: block;
  font-size: 12px;
  text-align: center;
  height: 100%;
  padding: 5px;
}

@media screen and (min-width: 768px) {
  .footer-nav {
    padding: 0;
  }

  .footer-nav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
  }

  .footer-nav__list {
    padding-top: 0;
    padding-left: 30px;
  }

  .footer-nav__list:first-child {
    padding-left: 0;
  }

  .footer-copyright {
    height: 45px;
  }

  .footer-copyright__text {
    padding: 13px 0;
  }
}

/*# sourceMappingURL=style.css.map */