html {
  scroll-behavior: smooth;

}
body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2rem;
}
p {
  font-size: 20px;
  color: #fff;
}
li {
  list-style: none;
}
a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* ------------------

-----------------*/
.l-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  background-color: #fff;
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 104px;
}
.h-logo {
  position: relative;
  width: 132px;
  padding-left: 132px;
}
.l-nav {
  position: relative;
}
.l-nav ul {
  display: flex;
  justify-content: space-around;
  position: relative;
}
.l-nav ul::before {
  content: "";
  background: url(../img/header_bg.png) no-repeat;
  background-size: cover;
  width: 62.5vw;
  height: 113px;
  display: block;
  position: absolute;
  top: -40px;
  right: 0;
}

.l-nav ul li {
  position: relative;
  width: 7.8vw;
}
.l-nav ul li::before {
  position: absolute;
  top: 8px;
  left: 0px;
  content: "/";
  color: #fff;
}
.l-nav ul li:first-of-type::before {
  content: unset;
}
.l-nav ul li:last-of-type {
  padding-right: 7.8vw;
}
.l-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 16px;
}
.l-nav span {
  font-size: 20px;
}

/* ----------------------

---------------------*/
.sp {
  display: none;
}
.pc {
  display: block;
}
.c-wrapper {
  padding-top: 151px;
}
.ttl {
  text-align: center;
  color: #fff;
}
.ttl h1 {
  font-size: 50px;
  margin-bottom: 20px;
}
.ttl p {
}
.mv {
  background: url(../img/u_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  height: 307px;
  position: relative;
}

.mv_ttl {
  display: inline-block;
  padding: 50px 70px 50px 80px;
  position: absolute;
  bottom: -27%;
  left: 16.6%;
  background: #232c3d;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
}
.mv_ttl h3 {
  font-size: 40px;
}
.mv_ttl p {
  font-size: 20px;
}
.page_width {
  max-width: 1280px;
  margin: 15px auto 0;
}
.breadcrumb {
  position: relative;
  padding-left: 0;
  font-size: 16px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.breadcrumb li {
  color: #232c3d;
  font-weight: 400;
}
.breadcrumb li .home:before {
  background: url(../img/home.png) no-repeat;
  background-size: contain;
  content: "";
  font-weight: 900;
  width: 18px;
  height: 14px;
  display: block;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
/* -----------------

------------------*/

.c-contact {
  background-color: #3c3f48;
  padding: 56px 0 106px;
}
.c-contact_inner {
  max-width: 1290px;
  margin: 0 auto;
}
.c-contact_contents {
  text-align: center;
  margin: 40px 0;
}
.contact_btn {
  display: flex;
  justify-content: center;
  text-align: center;
}
.contact_btn li {
  width: 40%;
  margin: 0 2%;
}
.contact_btn li a {
  background: #ffffff;
  color: #3c3f48;
  text-align: center;
  position: relative;
  padding: 14px 0;
}
.contact_btn li .tel_btn {
  font-size: 32px;
}
.contact_btn li .tel_btn:before {
  content: "";
  background: url(../img/tel.png) no-repeat;
  width: 24px;
  height: 24px;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 20%;
}
.mail_btn {
  font-size: 24px;
}
.mail_btn::before {
  content: "";
  background: url(../img/mail.png) no-repeat;
  width: 24px;
  height: 24px;
  background-size: contain;
  display: block;
  position: absolute;
  top: 58%;
  transform: translate(0, -50%);
  left: 14%;
}
.l-footer {
  padding: 64px 0 24px;
}
.f-logo {
  width: 161px;
  margin: 0 auto;
}
.f-nav ul {
  display: flex;
  text-align: center;
  margin: 48px 0 60px;
  justify-content: center;
  gap: 71px;
}
.f-nav ul li {
  position: relative;
}
.f-nav ul li:first-of-type::before {
  content: unset;
}

.f-nav ul li::before {
  position: absolute;
  top: 8px;
  left: -40px;
  content: "/";
  color: #232c3d;
}

.f-nav li a {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;

  font-size: 16px;
  color: #232c3d;
}
.f-nav li span {
  font-size: 20px;
}

.copyright {
  text-align: center;
  color: #232c3d;
}
.pageTop {
  background-color: #111111;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 30px;
  right: 60px;
}
.pageTop a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pageTop img {
  width: 23px;
  height: 12px;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  p {
    font-size: 16px;
  }
  .ttl h1 {
    font-size: 32px;
    margin-bottom: 3px;
  }
  .c-wrapper {
    padding-top: 95px;
  }
  .mv {
    height: 159px;
    background-position: right;
  }
  .mv_ttl {
    padding: 15px 20px 25px 20px;
    bottom: -30%;
    left: 4%;
  }
  .mv_ttl h1 {
    font-size: 20px;
  }
  .mv_ttl p {
    font-size: 13px;
  }
  .breadcrumb {
    font-size: 13px;
    margin-right: 15px;
  }
.pageTop {
  width: 48px;
  height: 48px;
  bottom: 55px;
  right: 15px;
}
  /* -------
  
  -----------*/
  .l-header_inner {
    height: 95px;
  }
  .h-logo {
    padding-left: 31px;
    width: 107px;
  }
  .menu-btn {
    display: block;
    pointer-events: all;
    position: absolute;
    top: 21px;
    right: 19px;
    width: 46px;
    height: 46px;
    text-align: center;
    cursor: pointer;
    z-index: 1001;
    background-color: #232c3d;
    border: unset;
  }
  .menu-btn .bar {
    display: block;
    position: absolute;
    width: 22px;
    height: 2px;
    left: 12px;
    background: #fff;
  }
  .menu-btn .bar:nth-of-type(1) {
    top: 15px;
    transition: 0.3s;
  }
  .menu-btn .bar:nth-of-type(2) {
    top: 22px;
  }
  .menu-btn .bar:nth-of-type(3) {
    top: 29px;
    transition: 0.3s;
  }
  .menu-btn.active .bar:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .menu-btn.active .bar:nth-child(2) {
    top: 22px;
    opacity: 0;
  }
  .menu-btn.active .bar:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
    transition: 0.3s;
  }
  .l-nav {
    background-color: #232c3d;
    display: none;
    position: absolute;
    top: 0px;
    height: 100vh;
    width: 100%;
  }
  .l-nav ul {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-nav ul li:last-of-type {
    padding: 0;
  }
  .l-nav ul li {
    width: auto;
    padding-bottom: 70px;
  }
  .l-nav ul::before {
    content: unset;
  }
  .l-nav ul li::before {
    content: unset;
  }
  .l-nav span {
    font-weight: 600;
  }
  /* --------------
  
  ---------------*/
  .l-footer {
    padding: 32px 0 22px;
  }
  .f-logo {
    width: 110px;
  }
  .f-nav ul {
    flex-wrap: wrap;
    gap: 16px 48px;
    margin: 40px 0 57px;
  }

  .f-nav li a {
    flex-direction: column;
    font-size: 10px;
    letter-spacing: 0;
  }
  .f-nav ul li::before {
    font-size: 8px;
    left: -30px;
  }
  .f-nav li span {
    font-size: 13px;
  }
  .c-contact {
    padding: 47px 8% 63px;
  }
  .c-contact_contents p {
    line-height: 1.6;
  }
  .contact_btn {
    display: block;
  }
  .contact_btn li {
    width: auto;
    margin-bottom: 24px;
  }
  .contact_btn li .tel_btn {
    font-size: 20px;
  }
  .contact_btn li .tel_btn:before {
    width: 19px;
    height: 17px;
    left: 9%;
  }
  .mail_btn {
    font-size: 14px;
  }
  .mail_btn::before {
    top: 57%;
    width: 20px;
    height: 19px;
    left: 8%;
  }
  .copyright {
    letter-spacing: 0;
  }
}
