body {
  font-family: 'Unna','Shippori Mincho', serif;
  color: #6c6e6d;
}

body.noscroll {
  overflow: hidden;
}

h2.section_title {
  font-size: 40px;
  font-family: 'Unna', serif;
  font-weight: bold;
  color: #6c6e6d;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  h2.section_title {
    font-size: 1.7rem;
    text-align: center;
  }
}

p {
  line-height: 2.2rem;
}

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

.btn {
  display: block;
  width: 300px;
  background-color: #ffffff;
  line-height: 80px;
  color: #6c6e6d;
  padding-left: 30px;
  position: relative;
  transition: all .5s;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  .btn {
    width: 250px;
    height: 50px;
    line-height: 50px;
  }
}

.btn::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #6c6e6d;
  position: absolute;
  top: 54%;
  right: 20px;
  transform: rotate(330deg);
}

@media screen and (max-width: 480px) {
  .btn::before {
    top: 57%;
  }
}

.btn::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #6c6e6d;
  position: absolute;
  top: 46%;
  right: 20px;
  transform: rotate(30deg);
}

@media screen and (max-width: 480px) {
  .btn::after {
    top: 45%;
  }
}

.btn:hover {
  background-color: #6c6e6d;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn:hover::before {
  background-color: #ffffff;
}

.btn:hover::after {
  background-color: #ffffff;
}

header .header_inner {
  display: flex;
  justify-content: space-between;
  margin: 17px 45px 13px;
}

@media screen and (max-width: 768px) {
  header .header_inner {
    margin: 10px;
  }
}

@media screen and (max-width: 480px) {
  header .header_inner {
    margin: 0;
    background-color: #ffffff;
  }
}

@media screen and (max-width: 480px) {
  header .header_inner .header_inner_left {
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 1000;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
  }
}

header .header_inner .header_inner_left .header_logo {
  width: 166px;
  height: 60px;
}

@media screen and (max-width: 480px) {
  header .header_inner .header_inner_left .header_logo {
    width: 96px;
    padding: 15px 0 0 15px;
  }
}

header .header_inner .header_inner_left .header_logo img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  header .header_inner .header_inner_left .header_logo img {
    width: 100%;
  }
}

header .header_inner .header_inner_left .burger_btn {
  width: 40px;
  height: 40px;
  margin: 19px 15px 0 0;
  display: none;
}

@media screen and (max-width: 480px) {
  header .header_inner .header_inner_left .burger_btn {
    display: block;
  }
}

header .header_inner .header_inner_left .burger_btn .line {
  width: 40px;
  height: 3px;
  display: block;
  background-color: #005840;
  margin-bottom: 9px;
}

header .header_inner .header_inner_left .burger_btn.close .line_top {
  transform: rotate(45deg) translate(8px, 8px);
  transition: transform .3s;
}

header .header_inner .header_inner_left .burger_btn.close .line_mid {
  opacity: 0;
  transition: opacity .3s;
}

header .header_inner .header_inner_left .burger_btn.close .line_bottom {
  transform: rotate(-45deg) translate(8px, -8px);
  transition: transform .3s;
}

header .header_inner .header_info {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
  header .header_inner .header_info {
    display: none;
  }
}

header .header_inner .header_info .header_info_tel {
  font-size: 2.1rem;
  margin-right: 40px;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  header .header_inner .header_info .header_info_tel {
    margin-right: 20px;
    margin-left: 30px;
  }
}

header .header_inner .header_info .header_info_tel:hover {
  opacity: 0.6;
}

header .header_inner .header_info .header_info_tel a {
  color: #005840;
  line-height: 60px;
}

header .header_inner .header_info .heaer_info_item {
  width: 180px;
  background-color: #005840;
  margin-right: 40px;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  header .header_inner .header_info .heaer_info_item {
    margin-right: 20px;
  }
}

header .header_inner .header_info .heaer_info_item:hover {
  opacity: 0.6;
}

header .header_inner .header_info .heaer_info_item:last-of-type {
  margin-right: 0;
}

header .header_inner .header_info .heaer_info_item p {
  color: #ffffff;
  text-align: center;
  line-height: 60px;
}

header .header_inner .header_info .heaer_info_item i {
  display: inline-block;
  margin-right: 13px;
}

.fv {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 100vh;
  background-image: url(img/Fv.jpg);
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 480px) {
  .fv {
    background-image: url(/img/Fv_sp.png);
    height: 90vh;
  }
}

.fv p {
  color: #ffffff;
  font-size: 3.1rem;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 60px;
}

@media screen and (max-width: 480px) {
  .fv p {
    left: 20px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .nav {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 100px;
    z-index: 900;
  }
}

.nav .nav_wrapper {
  margin: 0 100px;
}

@media screen and (max-width: 768px) {
  .nav .nav_wrapper {
    margin: 0 50px;
  }
}

@media screen and (max-width: 480px) {
  .nav .nav_wrapper {
    width: 100vw;
    height: 100vh;
    margin: 0;
    z-index: 1000;
  }
}

.nav .nav_wrapper .nav_inner {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 480px) {
  .nav .nav_wrapper .nav_inner {
    display: block;
    text-align: center;
  }
}

.nav .nav_wrapper .nav_inner .nav_item {
  line-height: 80px;
  font-size: 1.1rem;
}

.nav .nav_wrapper .nav_inner .nav_item a {
  color: #6c6e6d;
}

@media screen and (max-width: 480px) {
  .nav .nav_wrapper .nav_inner .nav_item a {
    font-size: 1.5rem;
  }
}

.nav .nav_wrapper .nav_inner .nav_item a:hover {
  color: #554D49;
}

.event_wrapper {
  padding: 50px 0 80px;
}

@media screen and (max-width: 480px) {
  .event_wrapper {
    padding-bottom: 20px;
  }
}

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

.event_wrapper .event_inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 480px) {
  .event_wrapper .event_inner {
    display: block;
  }
}

.event_wrapper .event_inner .event_inner_item {
  width: 21%;
}

@media screen and (max-width: 480px) {
  .event_wrapper .event_inner .event_inner_item {
    width: 84%;
    height: 120px;
    margin: 0 auto 40px;
  }
}

.event_wrapper .event_inner .event_inner_item a {
  color: #6c6e6d;
}

@media screen and (max-width: 480px) {
  .event_wrapper .event_inner .event_inner_item a {
    display: flex;
  }
}

.event_wrapper .event_inner .event_inner_item a .event_img {
  width: 100%;
  height: 250px;
  margin-bottom: 18px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .event_wrapper .event_inner .event_inner_item a .event_img {
    margin-right: 20px;
    height: 100%;
  }
}

.event_wrapper .event_inner .event_inner_item a .event_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.event_wrapper .event_inner .event_inner_item a .event_img img:hover {
  transform: scale(1.2, 1.2);
  opacity: .5;
}

.event_wrapper .event_inner .event_inner_item a .event_guide .event_time {
  margin-bottom: 8px;
  font-size: .9rem;
}

.event_wrapper .event_inner .event_inner_item a .event_guide .event_time:hover {
  color: #554D49;
}

.event_wrapper .event_inner .event_inner_item a .event_guide .event_text {
  line-height: 1.5rem;
}

.event_wrapper .event_inner .event_inner_item a .event_guide .event_text:hover {
  color: #554D49;
}

.about_warapper {
  padding: 68px 0 100px;
  background-color: #6c6e6d;
}

.about_warapper .about_innder {
  width: 370px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .about_warapper .about_innder {
    width: 250px;
  }
}

.about_warapper .about_innder .section_title {
  color: #ffffff;
}

.about_warapper .about_innder p {
  color: #ffffff;
  margin-bottom: 30px;
}

.about_warapper .about_innder p .sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .about_warapper .about_innder p {
    font-size: .9rem;
    line-height: 1.8rem;
  }
  .about_warapper .about_innder p .pc {
    display: none;
  }
}

.design_wrapper {
  background-image: url(/img/design.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 700px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .design_wrapper {
    height: 280px;
  }
}

.design_wrapper::after {
  content: "";
  width: 600px;
  height: 400px;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 100px;
  transform: translateY(-50%);
  z-index: 10;
}

@media screen and (max-width: 480px) {
  .design_wrapper::after {
    width: 100%;
    height: 280px;
    left: 0;
  }
}

.design_wrapper .design_inner {
  width: 600px;
  height: 400px;
  padding: 60px 0 60px 100px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 100px;
  transform: translateY(-50%);
  box-sizing: border-box;
  z-index: 100;
}

@media screen and (max-width: 480px) {
  .design_wrapper .design_inner {
    width: 250px;
    height: 280px;
    padding: 20px 0 0 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
  }
}

.design_wrapper .design_inner h2, .design_wrapper .design_inner p {
  color: #ffffff;
}

@media screen and (max-width: 480px) {
  .design_wrapper .design_inner h2, .design_wrapper .design_inner p {
    margin-bottom: 20px;
  }
}

.design_wrapper .design_inner p {
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  .design_wrapper .design_inner p {
    font-size: .9rem;
  }
}

.quality_wrapper {
  background-image: url(/img/design.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 700px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .quality_wrapper {
    height: 280px;
  }
}

.quality_wrapper::after {
  content: "";
  width: 600px;
  height: 400px;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 100px;
  transform: translateY(-50%);
  z-index: 10;
}

@media screen and (max-width: 480px) {
  .quality_wrapper::after {
    width: 100%;
    height: 280px;
    left: 0;
  }
}

.quality_wrapper .quality_inner {
  width: 600px;
  height: 400px;
  padding: 60px 0 60px 100px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 100px;
  transform: translateY(-50%);
  box-sizing: border-box;
  z-index: 100;
}

@media screen and (max-width: 480px) {
  .quality_wrapper .quality_inner {
    width: 250px;
    height: 280px;
    padding: 20px 0 0 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
  }
}

.quality_wrapper .quality_inner h2, .quality_wrapper .quality_inner p {
  color: #ffffff;
}

@media screen and (max-width: 480px) {
  .quality_wrapper .quality_inner h2, .quality_wrapper .quality_inner p {
    margin-bottom: 20px;
  }
}

.quality_wrapper .quality_inner p {
  margin-bottom: 30px;
}

.quality_wrapper .quality_inner p .sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .quality_wrapper .quality_inner p .pc {
    display: none;
  }
}

.works_wrapper {
  padding: 100px 0 60px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .works_wrapper {
    padding-top: 50px;
  }
}

.works_wrapper .works_inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 480px) {
  .works_wrapper .works_inner {
    display: block;
  }
}

.works_wrapper .works_inner .works_inner_item {
  width: 46%;
  margin-bottom: 80px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .works_wrapper .works_inner .works_inner_item {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .works_wrapper .works_inner .works_inner_item .works_inner_img {
    width: 90%;
  }
}

.works_wrapper .works_inner .works_inner_item .works_inner_img img {
  width: 100%;
}

.works_wrapper .works_inner .works_inner_item .works_inner_img p {
  width: 210px;
  height: 80px;
  text-align: left;
  padding: 11px 0 0 17px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 480px) {
  .works_wrapper .works_inner .works_inner_item .works_inner_img p {
    width: 155px;
    height: 60px;
    line-height: 1.5rem;
    font-size: .9rem;
  }
}

.works_wrapper .slick-dots {
  display: flex;
  justify-content: center;
}

.works_wrapper .slick-dots button {
  width: 10px;
  height: 13px;
  margin: 10px 10px 25px 10px;
  background-color: #6c6e6d;
  border: 1px solid #6c6e6d;
  border-radius: 50%;
  color: #6c6e6d;
  font-size: 0;
}

.works_wrapper a {
  margin: 0 auto;
  border: 1px solid #6c6e6d;
  text-align: left;
}

.info_wrapper {
  width: 100%;
  height: 550px;
  padding: 80px 0 90px 0;
  box-sizing: border-box;
  background-image: url(/img/Fv.jpg);
  background-position: center center;
  position: relative;
}

@media screen and (max-width: 480px) {
  .info_wrapper {
    height: 450px;
    padding: 50px 0;
  }
}

.info_wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.info_wrapper .section_title {
  width: 100%;
  text-align: center;
  color: #ffffff;
  margin: 0 auto 90px;
  z-index: 100;
  position: absolute;
}

@media screen and (max-width: 480px) {
  .info_wrapper .section_title {
    top: 50px;
  }
}

.info_wrapper .info_inner {
  width: 680px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 217px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

@media screen and (max-width: 480px) {
  .info_wrapper .info_inner {
    width: 100%;
    justify-content: center;
    top: 120px;
  }
}

.info_wrapper .info_inner .info_inner_item {
  width: 200px;
  height: 100px;
  background-color: #ffffff;
  margin: 0 40px 40px 0;
  text-align: center;
  vertical-align: middle;
  transition: all .5s;
}

@media screen and (max-width: 480px) {
  .info_wrapper .info_inner .info_inner_item {
    width: 150px;
    height: 60px;
    margin: 0 30px 30px 0;
  }
  .info_wrapper .info_inner .info_inner_item:nth-of-type(2n + n) {
    margin-right: 0;
  }
}

.info_wrapper .info_inner .info_inner_item:hover {
  opacity: .9;
}

.info_wrapper .info_inner .info_inner_item:hover a {
  color: #554D49;
}

.info_wrapper .info_inner .info_inner_item:nth-of-type(3n) {
  margin-right: 0;
}

@media screen and (max-width: 480px) {
  .info_wrapper .info_inner .info_inner_item:nth-of-type(3n) {
    margin-right: 30px;
  }
}

.info_wrapper .info_inner .info_inner_item a {
  display: block;
  color: #6c6e6d;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_wrapper .info_inner .info_inner_item a p {
  line-height: 1.5rem;
}

.footer .footer_inner {
  display: flex;
  justify-content: space-between;
  padding: 17px 45px 13px;
}

@media screen and (max-width: 768px) {
  .footer .footer_inner {
    margin: 17px;
    padding: 0;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .footer .footer_inner {
    margin: 13px 5px;
    align-items: flex-end;
  }
}

.footer .footer_inner .footer_logo {
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .footer .footer_inner .footer_logo {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .footer .footer_inner .footer_logo {
    margin: 0 15px 80px;
    justify-content: space-between;
  }
}

.footer .footer_inner .footer_logo .logo_img {
  width: 166px;
}

@media screen and (max-width: 480px) {
  .footer .footer_inner .footer_logo .logo_img {
    width: 80px;
  }
}

.footer .footer_inner .footer_logo .logo_img img {
  width: 100%;
}

.footer .footer_inner .footer_logo p {
  margin-left: 30px;
  line-height: 1.5rem;
  vertical-align: sub;
}

@media screen and (max-width: 768px) {
  .footer .footer_inner .footer_logo p {
    margin-left: 20px;
  }
}

@media screen and (max-width: 480px) {
  .footer .footer_inner .footer_logo p {
    font-size: .9rem;
  }
}

.footer .footer_inner .footer_info {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .footer .footer_inner .footer_info {
    display: none;
  }
}

.footer .footer_inner .footer_info .footer_info_tel {
  font-size: 2.1rem;
  margin-right: 40px;
  color: #005840;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .footer .footer_inner .footer_info .footer_info_tel {
    margin: 0 20px 0 20px;
  }
}

.footer .footer_inner .footer_info .footer_info_tel:hover {
  opacity: 0.6;
}

.footer .footer_inner .footer_info .footer_info_tel a {
  color: #005840;
}

@media screen and (max-width: 768px) {
  .footer .footer_inner .footer_info .footer_info_tel a p {
    font-size: 1.8rem;
  }
}

.footer .footer_inner .footer_info .footer_info_item {
  width: 180px;
  background-color: #005840;
  margin-right: 40px;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .footer .footer_inner .footer_info .footer_info_item {
    width: 190px;
    margin-right: 20px;
  }
}

.footer .footer_inner .footer_info .footer_info_item:hover {
  opacity: 0.6;
}

.footer .footer_inner .footer_info .footer_info_item:last-of-type {
  margin-right: 0;
}

.footer .footer_inner .footer_info .footer_info_item p {
  color: #ffffff;
  text-align: center;
  line-height: 60px;
}

.footer .footer_inner .footer_info .footer_info_item i {
  margin-right: 13px;
}

.footer .footer_end {
  width: 100%;
  background-color: #005840;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .footer .footer_end {
    display: none;
  }
}

.footer .footer_end small {
  line-height: 80px;
  color: #ffffff;
  font-size: .9rem;
}

.footer .sp_footer {
  width: 100%;
  height: 80px;
  background-color: #005840;
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 1000;
}

@media screen and (max-width: 480px) {
  .footer .sp_footer {
    display: block;
  }
}

.footer .sp_footer .sp_footer_inner {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 5px;
}

.footer .sp_footer .sp_footer_inner a {
  color: #ffffff;
  width: 33%;
  border-right: 1px solid #ffffff;
}

.footer .sp_footer .sp_footer_inner a:last-of-type {
  border-right: none;
}

.footer .sp_footer .sp_footer_inner a i {
  font-size: 1.4rem;
  padding: 0;
}
/*# sourceMappingURL=style.css.map */