@charset "UTF-8";
/* CSS Document */
.inner {
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 1399px) {
  .inner {
    width: 85%;
  }
}
@media screen and (max-width: 1199px) {
  .inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .inner {
    width: 95%;
  }
}

html {
  scroll-padding-top: 50px;
}

main {
  padding-top: 85px;
}

::-moz-selection {
  color: #fff;
  background-color: rgba(0, 163, 149, 0.5);
}

::selection {
  color: #fff;
  background-color: rgba(0, 163, 149, 0.5);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .site-header .header-inner {
    padding: 1.5rem 4rem 1.5rem 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  .site-header .header-inner {
    padding: 1rem;
    padding-right: 3rem;
  }
}
.site-header .header-inner .header-logo {
  display: flex;
  align-items: center;
  padding-left: 4rem;
}
@media screen and (max-width: 1199px) {
  .site-header .header-inner .header-logo {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .site-header .header-inner .header-logo {
    flex-wrap: wrap;
    padding-top: 0.5rem;
  }
}
@media screen and (max-width: 575px) {
  .site-header .header-inner .header-logo {
    padding: 0;
    padding-right: 3rem;
  }
}
.site-header .header-inner .header-logo h1 {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: normal;
  margin-left: 2rem;
}
@media screen and (max-width: 575px) {
  .site-header .header-inner .header-logo h1 {
    font-size: 9.5px;
    font-size: 0.95rem;
    margin: 0rem;
    padding-top: 0.5px;
  }
}
@media screen and (max-width: 1199px) {
  .site-header nav.pc-nav {
    display: none;
  }
}
.site-header nav.pc-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.site-header nav.pc-nav ul li a {
  color: #333333;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  padding: 3rem 1.5rem;
  transition: 0.3s;
}
.site-header nav.pc-nav ul li a:hover {
  color: #00a395;
}
.site-header nav.pc-nav ul li:nth-child(2) a {
  padding: 3rem;
}
.site-header nav.pc-nav ul li:nth-child(3) a {
  color: #fff;
  background: #d9383a;
  padding: 3rem 2rem;
}
.site-header nav.pc-nav ul li:nth-child(3) a:hover {
  background: #00a395;
}
.site-header nav.pc-nav ul li:nth-child(4) a {
  color: #fff;
  background: #333333;
  padding: 3rem 2rem;
}
.site-header nav.pc-nav ul li:nth-child(4) a:hover {
  background: #00a395;
}

.drawer__button {
  display: none;
}
@media screen and (max-width: 1199px) {
  .drawer__button {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
  }
}
.drawer__button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333333;
  transition: 0.3s;
}
.drawer__button span:nth-child(1) {
  top: 10px;
}
.drawer__button span:nth-child(2) {
  top: 19px;
}
.drawer__button span:nth-child(3) {
  top: 28px;
}
.drawer__button.active span:nth-child(1) {
  background: #fff;
  transform: rotate(45deg);
  top: 19px;
}
.drawer__button.active span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active span:nth-child(3) {
  background: #fff;
  transform: rotate(-45deg);
  top: 19px;
}

.drawer__nav {
  display: none;
}
@media screen and (max-width: 1199px) {
  .drawer__nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 200px;
    height: 100vh;
    background: #00a395;
    padding: 9rem 0;
    transition: 0.4s;
    z-index: 10000;
  }
}
.drawer__nav.active {
  right: 0;
}
.drawer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  padding: 2rem 3rem;
  display: block;
  transition: 0.3s;
}
.drawer__nav a:hover {
  color: #333333;
  background: #fff;
}

.site-footer {
  background-image: url("../img/footer-bg.jpg");
  background-size: cover;
  padding: 5rem 0 2rem;
  position: relative;
  cursor: none;
}
.site-footer a,
.site-footer button {
  cursor: pointer;
}
.site-footer .custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  background: url("../img/top-page.png") center center/contain no-repeat;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.3s ease,
    transform 0.03s linear;
  will-change: transform;
}
.site-footer .custom-cursor.is-active {
  opacity: 1;
}
.site-footer .custom-cursor.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}
.site-footer div.d-flex {
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .site-footer div.d-flex {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.site-footer div.d-flex div p {
  margin-top: 2rem;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .site-footer div.d-flex div p {
    text-align: center;
  }
}
.site-footer div.d-flex div p a {
  color: #fff;
}
.site-footer div.d-flex + p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin: 6rem 0 0;
}
@media screen and (max-width: 575px) {
  .site-footer div.d-flex + p {
    margin: 3rem 0 0;
  }
}
.site-footer nav ul {
  list-style: none;
  padding: 0;
}
.site-footer nav ul li {
  text-align: right;
}
@media screen and (max-width: 575px) {
  .site-footer nav ul li {
    text-align: center;
  }
}
.site-footer nav ul li a {
  color: #fff;
  transition: 0.3s;
}
.site-footer nav ul li a:hover {
  color: #00a395;
}
.site-footer nav ul li a i {
  font-size: 33px;
  font-size: 3.3rem;
  margin-top: 2rem;
}

#footer-contact h2 {
  text-align: center;
}
#footer-contact h2 + p {
  text-align: center;
  margin: 3rem 0;
}
@media screen and (max-width: 575px) {
  #footer-contact h2 + p {
    text-align: justify;
  }
}
#footer-contact .tel-text {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0 0;
  line-height: normal;
}
@media screen and (max-width: 575px) {
  #footer-contact .tel-text {
    margin: 3rem 0 0;
  }
}
#footer-contact .tel-text span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-right: 1rem;
}
#footer-contact .tel-text a {
  color: #333333;
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
#footer-contact .tel-text + p {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}

#ul-header {
  padding-top: 6rem;
}
#ul-header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  font-size: 7rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}
#ul-header h1::first-letter {
  color: #00a395;
}
#ul-header h1 span {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 575px) {
  #ul-header h1 span {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  #ul-header h1 {
    font-size: 73px;
    font-size: 7.3rem;
  }
}
@media screen and (max-width: 767px) {
  #ul-header h1 {
    font-size: 63px;
    font-size: 6.3rem;
  }
}
@media screen and (max-width: 575px) {
  #ul-header h1 {
    font-size: 55px;
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
  }
}
#ul-header .ul-img {
  width: 96%;
  height: 300px;
  overflow: hidden;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 991px) {
  #ul-header .ul-img {
    width: 95%;
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  #ul-header .ul-img {
    height: 220px;
  }
}
@media screen and (max-width: 575px) {
  #ul-header .ul-img {
    width: 100%;
    height: 180px;
  }
}
#ul-header .ul-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

/* 見出し */
h2.title-black {
  font-size: 52px;
  font-size: 5.2rem;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  line-height: normal;
  font-weight: bold;
}
@media screen and (max-width: 575px) {
  h2.title-black {
    font-size: 45px;
    font-size: 4.5rem;
  }
}
h2.title-black span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

h2.title-white {
  font-size: 52px;
  font-size: 5.2rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  line-height: normal;
  font-weight: bold;
}
@media screen and (max-width: 575px) {
  h2.title-white {
    font-size: 45px;
    font-size: 4.5rem;
  }
}
h2.title-white span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

/* 余白 */
section {
  padding: 7rem 0;
}
@media screen and (max-width: 575px) {
  section {
    padding: 4rem 0;
  }
}

/* リンクボタン */
.link-button {
  display: flex;
  justify-content: center;
}
.link-button a {
  font-size: 1.6rem;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  width: 220px;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  overflow: hidden;
  color: #fff;
  background: #333333;
  position: relative;
}
.link-button a span {
  position: relative;
}
.link-button a::after {
  content: "";
  display: block;
  width: 20px;
  height: 17px;
  background-image: url("../img/link-arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  transition: all 0.2s ease-out;
}
.link-button a:hover::after {
  right: 15px;
}
.link-button a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.2s ease-out;
  transform: translateX(-100%);
  background: #00a395;
}
.link-button a:hover::before {
  transform: translateX(0%);
} /*# sourceMappingURL=common.css.map */
