@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*================================================================
#   共通
=================================================================*/
body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  color: #333;
  background: #fff;
}

.inner {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  line-height: 1;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 27px;
  }
}

.section-title span {
  font-size: 16px;
  display: block;
  text-align: center;
  margin-top: 8px;
  font-family: "Lora", serif;
}

@media (max-width: 767px) {
  .section-title span {
    font-size: 14px;
  }
}

.section-title span::after {
  display: block;
  content: "";
  height: 1px;
  width: 64px;
  background: #b69b04;
  margin: 15px auto 0;
}

/*================================================================
#   header
=================================================================*/
.header {
  position: fixed;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
}

@media (max-width: 767px) {
  .header {
    height: 64px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__logo {
  font-size: 32px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .header__logo {
    font-size: 28px;
  }
}

.header__logo a {
  color: #97cdf3;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.header__nav a {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header__nav a:hover {
  color: #fff;
  background-color: #97cdf3;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav li {
  position: relative;
}

.header__nav li::before {
  content: "";
  width: 1px;
  height: 36px;
  position: absolute;
  background: #333;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__nav li a {
  display: block;
  padding: 22px 30px;
  font-size: 16px;
  line-height: 1;
  color: #333;
  text-align: center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header__nav li a a:hover {
  color: #fff;
  background-color: #97cdf3;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (min-width: 768px) and (max-width: 1039px) {
  .header__nav li a {
    font-size: 14px;
    padding: 23px 20px;
  }
}

.header__nav li a span {
  display: block;
  font-size: 12px;
  color: #b69b04;
  margin-top: 8px;
}

.header__contact {
  width: 168px;
  margin-left: auto;
}

@media (max-width: 767px) {
  .header__contact {
    display: none;
  }
}

.header__contact a {
  display: block;
  font-size: 16px;
  color: #fff;
  background: #7acbe1;
  height: 80px;
  text-align: center;
  padding-top: 24px;
  line-height: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__contact a:hover {
  opacity: .8;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__contact a span {
  font-family: "Lora", serif;
  font-size: 12px;
  color: #b69b04;
  display: block;
  line-height: 1;
  margin-top: 7px;
}

.hamburger {
  display: none;
}

@media (max-width: 767px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 10;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-content {
  padding-top: 100px;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 64px;
  right: 0;
  background: #fff;
  opacity: 0.9;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-content.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content_item {
  border-bottom: 1px dotted #707070;
}

.drawer-content_item:first-child {
  border-top: 1px dotted #707070;
}

.drawer-content_item a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}

/*================================================================
#   main-visual
=================================================================*/
.main-visual {
  width: 100%;
  height: 100vh;
  background: transparent url(../img2/top-page-l.jpeg) no-repeat center center/cover;
  position: relative;
}

.main-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background: rgba(0, 0, 0, 0.1);
}

.main-visual__inner {
  position: relative;
  height: inherit;
  z-index: 2;
}

.main-visual__text {
  font-size: 52px;
  font-weight: bold;
  color: #fff;
  padding-top: 230px;
  text-align: center;
  letter-spacing: .1em;
}

@media (max-width: 767px) {
  .main-visual__text {
    font-size: 42px;
  }
}

.main-visual__text2 {
  color: #fff;
  text-align: center;
  font-size: 32px;
}

@media (max-width: 767px) {
  .main-visual__text2 {
    font-size: 24px;
  }
}

@media screen and (min-width: 430px) {
  .main-visual__text2-sp {
    display: none;
  }
}

/*================================================================
#   about
=================================================================*/
.about {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .about {
    margin-top: 79px;
  }
}

.about__img {
  margin-top: -300px;
  margin-left: 50%;
}

@media (max-width: 767px) {
  .about__img {
    margin: 0;
    width: 100%;
  }
}

.about__img img {
  max-width: none;
  width: 100%;
  min-height: 300px;
}

@media (max-width: 767px) {
  .about__img img {
    min-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about-content {
  position: relative;
  z-index: 2;
  width: 70%;
  margin-top: 60px;
  padding: 60px 3.333vw;
  color: #fff;
  background-color: #7acbe1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .about-content {
    width: 100%;
    margin-top: 40px;
    padding: 55px 20px;
  }
}

@media screen and (max-width: 700px) {
  .about-content {
    display: block;
  }
}

.about__picture {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  width: 200px;
}

@media screen and (max-width: 700px) {
  .about__picture {
    margin: 0 auto;
  }
}

.about__picture img {
  width: 100%;
  border-radius: 50%;
}

.about-content__wrapper {
  padding-left: 20px;
  margin-top: 10px;
}

.about-content__title {
  font-size: 28px;
}

@media screen and (max-width: 500px) {
  .about-content__title {
    margin-top: 20px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1039px) {
  .about-content__title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .about-content__title {
    font-size: 20px;
  }
}

.about-content__text {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .about-content__text {
    line-height: 2;
  }
}

/*================================================================
#   works
=================================================================*/
.works {
  margin-top: 120px;
  position: relative;
}

@media (max-width: 767px) {
  .works {
    margin-top: 79px;
  }
}

.works::after {
  content: "";
  width: 68.4722%;
  height: 400px;
  background: #eeead0;
  position: absolute;
  right: 0;
  top: 150px;
  z-index: -1;
}

@media (max-width: 767px) {
  .works::after {
    width: 100%;
    height: 145vh;
    top: 245px;
  }
}

@media (min-width: 768px) and (max-width: 1039px) {
  .works__inner {
    padding: 0 10px;
  }
}

.works__list {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .works__list {
    margin-top: 0;
  }
}

.works-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.works-list__item {
  width: calc((100% - 80px) / 3);
}

.works-list__item:nth-child(n + 4) {
  margin-top: 65px;
}

@media (max-width: 767px) {
  .works-list__item {
    width: 100%;
    margin-top: 40px;
  }
  .works-list__item:not(:first-child) {
    margin-top: 60px;
  }
}

.works-list__item img.works_pic {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
  -webkit-box-shadow: 2px 2px 4px;
          box-shadow: 2px 2px 4px;
}

@media (max-width: 767px) {
  .works-list__item img.works_pic {
    height: auto;
  }
}

.works-list__item_text {
  margin-top: 5px;
}

.works-list-text {
  padding-left: 33px;
  position: relative;
}

@media (max-width: 767px) {
  .works-list-text {
    padding-left: 20px;
  }
}

.works-list-text::before {
  content: "";
  width: 1px;
  height: 144px;
  background: #333;
  position: absolute;
  left: 24px;
  bottom: 0;
}

@media (max-width: 767px) {
  .works-list-text::before {
    height: 96px;
    left: 11px;
  }
}

.works-list__item_ttl {
  font-size: 18px;
  margin-top: 15px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .works-list__item_ttl {
    font-size: 20px;
    margin-top: 17px;
  }
}

.works-list__item_link {
  display: inline-block;
  color: #333;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  padding: 5px 7px 7px 7px;
  border: 1px solid #333;
  margin-top: 10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.works-list__item_link:hover {
  color: #fff;
  background-color: #333;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (max-width: 767px) {
  .works-list__item_link {
    font-size: 16px;
  }
}

.works-list__item_link span {
  display: inline-block;
  padding: 3px 0 0 5px;
  vertical-align: bottom;
}

.works-list__item_link span img {
  width: 16px;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .works-list__item_link span img {
    width: 16px;
  }
}

.works-list__item_text {
  font-size: 14px;
}

.btn {
  width: 200px;
  margin: 80px auto 0;
}

@media (max-width: 767px) {
  .btn {
    width: 152px;
  }
}

.btn a {
  color: #7acbe1;
  display: block;
  text-align: center;
  border: 1px solid #7acbe1;
  padding: .7em;
  font-size: 16px;
}

/*================================================================
#   service
=================================================================*/
.service {
  margin-top: 150px;
}

@media (max-width: 767px) {
  .service {
    margin-top: 79px;
  }
}

.service-list {
  max-width: 1100px;
  width: 100%;
  margin: 50px auto;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .service-list {
    display: block;
  }
}

.service-item {
  width: calc(100% / 3 - 25px * 2 / 3);
  text-align: center;
}

@media (max-width: 767px) {
  .service-item {
    width: 100%;
  }
  .service-item:nth-child(n + 2) {
    margin-top: 41px;
  }
}

.service-item-icon img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .service-item-icon img {
    height: auto;
  }
}

.service-item-title {
  display: block;
  font-size: 20px;
  font-family: "Lora", serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 4px;
  margin-top: 23px;
}

.service-item-text {
  font-size: 14px;
  line-height: 1.71429;
  text-align: start;
  margin-top: 20px;
}

/*================================================================
#   contact
=================================================================*/
.contact {
  margin-top: 120px;
  background-color: #eeead0;
  padding: 100px 0 147px;
}

@media (max-width: 767px) {
  .contact {
    margin-top: 79px;
    padding: 40px 0;
  }
}

.contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-top: 35px;
}

@media (max-width: 767px) {
  .contact-list {
    display: block;
    padding-top: 24px;
  }
}

.contact-item {
  width: 285px;
  border-right: 1px solid #333;
  padding: 20px 0;
}

@media (max-width: 767px) {
  .contact-item {
    border-right: none;
    width: 100%;
    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;
  }
  .contact-item:nth-child(2) {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 24px 0;
  }
  .contact-item:first-child {
    padding-bottom: 24px;
  }
}

.contact-item:last-child {
  border-right: none;
}

.contact-item img {
  width: 32px;
  height: 32px;
}

.contact-item__title {
  font-size: 20px;
  margin-top: 18px;
}

@media (max-width: 767px) {
  .contact-item__title {
    font-size: 16px;
    margin-top: 0;
  }
}

.contact-btn {
  display: inline-block;
  color: #fff;
  padding: 12px;
  width: 160px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .contact-btn {
    margin-top: 0;
    margin-right: 10px;
  }
}

.contact-btn.ac-btn {
  background-color: #b69b04;
  border: 2px solid #b69b04;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-btn.ac-btn:hover {
  background-color: #eeead0;
  color: #b69b04;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-btn.ma-btn {
  background-color: #7acbe1;
  border: 2px solid #7acbe1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-btn.ma-btn:hover {
  background-color: #eeead0;
  color: #7acbe1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-tel {
  font-size: 24px;
  font-family: "Lora", serif;
  margin-top: 14px;
}

@media (max-width: 767px) {
  .contact-tel {
    display: none;
  }
}

.contact-open {
  font-size: 12px;
}

.is-sp {
  display: none;
}

@media (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .contact-item__text a {
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
  }
}

/*================================================================
#   contact
=================================================================*/
.footer {
  position: relative;
}

.footer-top {
  background-color: #7acbe1;
  text-align: center;
  padding: 80px 0 100px 0;
  color: #fff;
}

@media (max-width: 767px) {
  .footer-top {
    padding: 40px 0;
  }
}

.footer__contents {
  margin-top: 24px;
}

.company {
  font-size: 24px;
  letter-spacing: .2em;
}

.add {
  margin-top: 10px;
}

.tel,
.email {
  margin-top: 10px;
  font-family: "Lora", serif;
  cursor: pointer;
}

.tel a,
.email a {
  color: #fff;
}

@media (max-width: 767px) {
  .contact-atn {
    font-size: 10px;
  }
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 55px;
}

@media (max-width: 767px) {
  .footer-nav__list {
    display: block;
  }
}

.footer-nav__item {
  padding: 0 32px 0;
  border-right: 1px solid #fff;
}

.footer-nav__item:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .footer-nav__item {
    width: 100%;
    padding: 24px 0;
    border-top: 1px solid #fff;
  }
  .footer-nav__item:first-child {
    border-top: none;
    padding-top: 0;
  }
  .footer-nav__item:last-child {
    padding-bottom: 0;
  }
}

.footer-nav__item a {
  color: #fff;
}

.footer-nav__item a:hover {
  opacity: .7;
}

.footer-bottom {
  background: #333;
  border-top: 1px solid #fff;
  color: #fff;
  padding: 17px 0;
}

@media (max-width: 767px) {
  .footer-bottom {
    padding: 20px 0;
  }
}

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

.copyright {
  font-family: "Lora", serif;
  letter-spacing: .3em;
}

@media (max-width: 767px) {
  .copyright {
    text-align: center;
  }
}

.to_top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .to_top {
    bottom: 12px;
    right: 12px;
  }
}

.to_top.is-show {
  opacity: 1;
  visibility: visible;
}

.to_top a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.to_top a:hover {
  opacity: .7;
}

.to_top a img {
  width: 50px;
}

@media (max-width: 767px) {
  .to_top a img {
    width: 40px;
  }
}
