@charset "UTF-8";
/*======================
/*設定項目
/*====================*/
/* ----------------------------------------------
default
------------------------------------------------- */
body {
  color: #000;
  font-size: 15px;
  line-height: 1.4;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #008767;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

#contact .heading h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #00a6dc;
  font-family: 'Noto Sans JP', system-ui,  sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.66667;
  letter-spacing: 0.1em;
}

#contact .heading h2 small {
  position: relative;
  display: block;
  padding-right: 80px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

#contact .heading h2 small::after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  z-index: 0;
  width: 60px;
  height: 1px;
  background: #00a6dc;
}

@media (max-width: 767px) {
  #contact .heading h2 {
    font-size: 24px;
  }
  #contact .heading h2 small {
    font-size: 14px;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header .top {
  background: #f1f1f1;
}

#header .top h1 {
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.5;
}

#header .contents {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 200px;
  background: #fff;
}

#header .contents .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 65px;
}

#header .logo a {
  transition: all 0.5s ease-out;
}

#header .logo a:hover {
  opacity: 0.6;
}

#header .contact {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 200px;
  font-family: 'Noto Sans JP', system-ui,  sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
}

#header .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
  background: #008767;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

#header .contact a:hover {
  opacity: 0.6;
}

#header .contact a img {
  margin-right: 11px;
}

@media (max-width: 1399px) {
  #header .contents {
    margin: 0;
    padding-left: 10px;
    padding-right: 130px;
  }
  #header .contact {
    width: 130px;
  }
}

@media (max-width: 999px) {
  #header .top h1 {
    padding-right: 150px;
  }
  #header .contents {
    padding-left: 5px;
    padding-right: 0;
  }
  #header .contact {
    top: auto;
    bottom: 100%;
  }
  #header .contact a {
    height: 30px;
  }
}

@media (max-width: 767px) {
  #header .top {
    display: none;
  }
  #header .contact {
    display: none;
  }
  #header .logo {
    padding-right: 60px;
  }
}

#gnav {
  font-family: 'Noto Sans JP', system-ui,  sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
}

#gnav > ul {
  display: flex;
}

#gnav > ul > li {
  position: relative;
  padding: 0 20px;
}

#gnav > ul > li > a {
  display: flex;
  height: 65px;
  align-items: center;
  color: #000;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

#gnav > ul > li > a:hover {
  opacity: 0.6;
}

#gnav > ul > li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 15px;
  background: rgba(0, 135, 103, 0.8);
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  transition: all 0.5s ease-out;
}

#gnav > ul > li ul li:not(:first-child) {
  margin-top: 10px;
}

#gnav > ul > li ul a {
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

#gnav > ul > li ul a:hover {
  opacity: 0.6;
}

#gnav > ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1399px) {
  #gnav > ul > li {
    padding: 0 15px;
  }
}

@media (max-width: 999px) {
  #gnav {
    font-size: 11px;
  }
  #gnav > ul > li {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  #gnav > ul {
    display: block;
    font-size: 13px;
  }
  #gnav > ul > li {
    padding: 0;
  }
  #gnav > ul > li > a {
    display: block;
    height: auto;
  }
  #gnav > ul > li ul {
    position: relative;
    top: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }
  #gnav > ul > li ul li {
    border: 0;
    border-top: 1px dashed #000;
  }
  #gnav > ul > li ul li:not(:first-child) {
    margin-top: 0;
  }
  #gnav > ul > li ul li a {
    font-size: 12px;
    line-height: 35px;
  }
}

/* ----------------------------------------------
main
------------------------------------------------- */
#main {
  overflow: hidden;
}

/* ----------------------------------------------
contact
------------------------------------------------- */
#contact {
  position: relative;
  margin-top: 120px;
  margin-bottom: 0;
  padding: 0 10px 90px;
  background: url(../images/contact-bg.jpg) no-repeat center/cover;
}

#contact .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

#contact .heading {
  width: 52.38095%;
  border: 1px solid #008767;
  margin: -40px 0 0 auto;
  padding: 100px 3.7037%;
  background: #fff;
}

#contact .heading h2 {
  margin-bottom: 30px;
}

#contact .heading .lead {
  font-family: 'Noto Sans JP', system-ui,  sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.5em;
  letter-spacing: 0.1em;
}

#contact .contents {
  flex: 1;
  padding: 105px 3.7037% 0;
}

#contact .contents .block + .block {
  margin-top: 60px;
}

#contact .contents .block.block-tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 90px;
  border: 1px solid #008767;
  padding: 5px;
  color: #000;
  font-family: 'Noto Sans JP', system-ui,  sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

#contact .contents .block.block-tel a:hover {
  opacity: 0.6;
}

#contact .contents .block.block-tel a span {
  display: inline-block;
}

#contact .contents .block.block-tel a small {
  display: block;
  font-size: 16px;
}

#contact .contents .block.block-mail a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 90px;
  border: 1px solid #008767;
  padding: 5px;
  background: #008767;
  color: #fff;
  font-family: 'Noto Sans JP', system-ui,  sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

#contact .contents .block.block-mail a:hover {
  opacity: 0.6;
}

#contact .contents .block.block-mail a img {
  margin-right: 20px;
}

@media (max-width: 999px) {
  #contact .contents .block.block-mail a {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  #contact .inner {
    display: block;
    max-width: 550px;
    margin: 0 auto;
  }
  #contact .heading {
    transform: translateY(-30px);
    width: 100%;
    margin: 0 auto;
    padding: 30px 10px;
  }
  #contact .heading .lead {
    font-size: 15px;
  }
  #contact .contents {
    padding: 0;
  }
  #contact .contents .block.block-tel a {
    font-size: 24px;
  }
  #contact .contents .block.block-tel a small {
    font-size: 14px;
  }
  #contact .contents .block.btn-mail a {
    font-size: 16px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  position: relative;
  padding: 60px 10px 70px;
  background: #f1f1f1;
  text-align: center;
}

#footer .logo {
  margin-bottom: 30px;
}

#footer .logo a {
  transition: all 0.5s ease-out;
}

#footer .logo a:hover {
  opacity: 0.6;
}

#footer .text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  #footer .text {
    font-size: 14px;
  }
}

#pagetop {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: right;
}

#pagetop a {
  transition: all 0.5s ease-out;
}

#pagetop a:hover {
  opacity: 0.6;
}

#fnav {
  margin-bottom: 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, system-ui, sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.03em;
}

#fnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#fnav li {
  margin: 0 1em;
}

#fnav a {
  color: #000;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

#fnav a:hover {
  opacity: 0.6;
}

#copyright {
  font-size: 12px;
  line-height: 2.5;
  letter-spacing: 0.03em;
}
/*# sourceMappingURL=style.css.map */