:root {
  --sans: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
  --outfit: "Outfit", sans-serif;
}

* {
  font-family: var(--sans);
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.75;
}

a {
  transition: 0.4s;
}
a:hover {
  opacity: 0.6;
  transition: 0.4s;
}

img {
  vertical-align: bottom;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* ----- main ----- */
.secInner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

body.fixed,
body.fixed main {
  height: 100%;
  overflow: hidden;
}

.burgerBtn {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 100;
}
.burgerBtn span {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.burgerBtn span:nth-child(1) {
  top: 0;
}
.burgerBtn span:nth-child(2) {
  top: 10px;
}
.burgerBtn span:nth-child(3) {
  top: 20px;
}
.burgerBtn.active span:nth-child(1) {
  top: 10px;
  background: #fff;
  transform: translateX(-50%) rotate(-45deg);
}
.burgerBtn.active span:nth-child(2), .burgerBtn.active span:nth-child(3) {
  top: 10px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .burgerBtn {
    display: block;
  }
}

.burgerMenu {
  width: 70%;
  background-color: #fff;
  position: fixed;
  top: 61.7px;
  right: 0;
  z-index: 99;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
}
.burgerMenu .inner {
  padding: 30px 20px;
}
.burgerMenu .inner .link {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 10px 0;
  border-top: 1px solid #036eb5;
}
.burgerMenu .inner .link:last-of-type {
  border-bottom: 1px solid #036eb5;
}
.burgerMenu.active {
  visibility: visible;
  opacity: 1;
}

#header {
  background-color: #036eb5;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .headerInner {
  padding: 10px 20px;
  padding-left: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .headerInner .logo {
  max-width: 70px;
}
#header .headerInner .navWrap {
  display: flex;
  align-items: center;
}
#header .headerInner .navWrap .hAcd {
  margin-left: 25px;
  margin-right: 25px;
  position: relative;
}
#header .headerInner .navWrap .hAcd .hAcdTtl {
  color: #fff;
  cursor: pointer;
}
#header .headerInner .navWrap .hAcd .hAcdBox {
  opacity: 0;
  visibility: hidden;
  color: #036eb5;
  background-color: #fff;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: absolute;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: -15px;
  z-index: 30;
}
#header .headerInner .navWrap .hAcd .hAcdBox:before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #f1f0ee;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: -10px;
}
#header .headerInner .navWrap .hAcd .hAcdBox.show {
  opacity: 1;
  visibility: visible;
}
#header .headerInner .navWrap .hAcd .hAcdBox .acdInner {
  padding-top: 5px;
}
#header .headerInner .navWrap .hAcd .hAcdBox .acdInner .sub {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 25px;
  width: 170px;
  margin-left: 0;
  white-space: nowrap;
  display: block;
}
#header .headerInner .navWrap .hAcd .hAcdBox .acdInner .sub:nth-of-type(n+2) {
  border-top: 1px solid #cadbe5;
}
#header .headerInner .navWrap .nav {
  color: #fff;
}
#header .headerInner .navWrap .nav + .nav {
  margin-left: 25px;
}
#header .headerInner .navWrap .btn {
  font-weight: 600;
  text-align: center;
  display: block;
  padding: 5px 40px;
  border-radius: 9999px;
  color: #036eb5;
  background-color: #fff;
}
#header .headerInner .navWrap .btn.btn1 {
  margin-left: 30px;
}
#header .headerInner .navWrap .btn.btn2 {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  #header .headerInner {
    padding: 10px 20px;
  }
  #header .headerInner .logo {
    max-width: 60px;
  }
  #header .headerInner .navWrap .nav,
  #header .headerInner .navWrap .hAcd {
    display: none;
  }
  #header .headerInner .navWrap .btn {
    display: none;
  }
  #header .headerInner .navWrap .btn.btn2 {
    font-size: 1.4rem;
    padding: 5px 20px;
    margin-left: 0;
    margin-right: 10px;
    display: block;
  }
}

#footer {
  background-color: #efefef;
}
#footer .footerInner {
  max-width: 1100px;
  width: 100%;
  padding: 50px 20px 40px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#footer .footerInner .left {
  width: 40%;
}
#footer .footerInner .left .logo {
  max-width: 260px;
  width: 100%;
  margin-bottom: 40px;
  display: block;
}
#footer .footerInner .left .info p {
  font-size: 1.6rem;
  font-weight: 500;
}
#footer .footerInner .right {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#footer .footerInner .right .navWrap {
  max-width: 285px;
  width: 60%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .footerInner .right .navWrap li {
  width: 45%;
  margin-bottom: 15px;
}
#footer .footerInner .right .navWrap li a {
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  padding-bottom: 5px;
  position: relative;
}
#footer .footerInner .right .navWrap li a:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s;
}
#footer .footerInner .right .navWrap li a:hover {
  opacity: 1;
}
#footer .footerInner .right .navWrap li a:hover:after {
  width: 0;
}
#footer .footerInner .right .btnWrap {
  max-width: 160px;
  width: 100%;
}
#footer .footerInner .right .btnWrap .btn {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: block;
  color: #fff;
  background-color: #036eb5;
  border: 1px solid #036eb5;
  border-radius: 9999px;
  padding: 8px 0;
  margin-bottom: 20px;
}
#footer .footerInner .right .btnWrap .btn:hover {
  background-color: #fff;
  color: #036eb5;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #footer .footerInner {
    padding: 30px 20px 40px;
    flex-direction: column;
  }
  #footer .footerInner .left {
    width: 100%;
    margin-bottom: 20px;
  }
  #footer .footerInner .left .logo {
    max-width: 170px;
    margin-bottom: 0;
  }
  #footer .footerInner .left .info {
    display: none;
  }
  #footer .footerInner .right {
    width: 100%;
    margin-bottom: 0;
  }
  #footer .footerInner .right .navWrap {
    max-width: 285px;
    width: 60%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #footer .footerInner .right .navWrap li {
    width: 45%;
    margin-bottom: 15px;
  }
  #footer .footerInner .right .navWrap li a {
    font-size: 1.4rem;
  }
  #footer .footerInner .right .btnWrap {
    max-width: 110px;
  }
  #footer .footerInner .right .btnWrap .btn {
    font-size: 1.4rem;
    padding: 8px 0;
    margin-bottom: 10px;
  }
}