: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;
}

.linkbtn {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #036eb5;
  border: 2px solid #036eb5;
  max-width: 290px;
  display: block;
  width: 100%;
  padding: 15px 0;
  border-radius: 9999px;
  position: relative;
}
.linkbtn:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #036eb5;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 30px;
  transition: 0.4s;
}
.linkbtn:hover {
  color: #fff;
  background-color: #036eb5;
  opacity: 1;
}
.linkbtn:hover:after {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .linkbtn {
    font-size: 1.6rem;
    max-width: 200px;
    padding: 10px 0;
  }
  .linkbtn:after {
    right: 20px;
  }
}

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

.burgerBtn {
  display: block;
  width: 50px;
  height: 50px;
  background: #333;
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: 0.3s;
  z-index: 100;
}
.burgerBtn:after {
  content: "MENU";
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
  position: absolute;
  transform: translateX(-50%);
  bottom: 3px;
  left: 50%;
}
.burgerBtn span {
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  transform: translateX(-50%);
  left: 50%;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.burgerBtn span:nth-child(1) {
  top: 12px;
}
.burgerBtn span:nth-child(2) {
  top: 19px;
}
.burgerBtn span:nth-child(3) {
  top: 26px;
}
.burgerBtn.active:after {
  opacity: 0;
}
.burgerBtn.active span:nth-child(1) {
  width: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.burgerBtn.active span:nth-child(2), .burgerBtn.active span:nth-child(3) {
  width: 25px;
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.burgerMenu {
  width: 55%;
  font-weight: 900;
  color: #fff;
  background: #036eb5;
  transition: 0.6s;
  padding-top: 0;
  height: auto;
  overflow: scroll;
  position: fixed;
  z-index: 99;
  top: 90px;
  right: 0;
  opacity: 0;
  transform: translateX(100%);
}
.burgerMenu ul {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.burgerMenu ul li {
  text-align: center;
  width: 100%;
  padding: 0;
  list-style-type: none;
  transition: 0.4s all;
  cursor: pointer;
  border-bottom: 1px solid #fff;
}
.burgerMenu ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.burgerMenu ul li a {
  text-align: center;
  display: block;
  padding: 1.5em 0;
}
.burgerMenu ul li a img {
  height: 30px;
}
.burgerMenu.active {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .burgerMenu {
    top: 50px;
  }
}

.btnTop {
  width: 60px;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 99;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
.btnTop.active {
  opacity: 1;
  pointer-events: auto;
}
.btnTop.active:hover {
  opacity: 0.6;
}

#header {
  width: 100%;
  background-color: #fff;
  border-bottom: 2px solid #EFF5FE;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .headerInner {
  padding: 20px;
  padding-left: 40px;
  display: flex;
  justify-content: space-between;
}
#header .headerInner .headerLogo {
  max-width: 240px;
}
#header .headerInner .navWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .headerInner .navWrap a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #036eb5;
  margin-left: 45px;
}
#header .headerInner .navWrap .navContact {
  color: #fff;
  background-color: #036eb5;
  padding: 8px 30px;
  margin-left: 30px;
  border-radius: 9999px;
}
#header .headerInner .navWrap .hAcd {
  position: relative;
  margin-left: 45px;
}
#header .headerInner .navWrap .hAcd .hAcdTtl {
  font-size: 1.6rem;
  font-weight: 600;
  color: #036eb5;
  cursor: pointer;
}
#header .headerInner .navWrap .hAcd .hAcdBox {
  opacity: 0;
  visibility: hidden;
  background-color: #F0F0F0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: absolute;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: -15px;
}
#header .headerInner .navWrap .hAcd .hAcdBox:before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #036eb5;
  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 .burgerWrap {
  display: none;
}
@media screen and (max-width: 920px) {
  #header .headerInner {
    padding: 20px;
    padding-left: 20px;
  }
  #header .headerInner .headerLogo {
    max-width: 110px;
  }
  #header .headerInner .navWrap {
    display: none;
  }
  #header .headerInner .burgerWrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #header .headerInner {
    padding: 0;
    padding-left: 20px;
    align-items: center;
  }
  #header .headerInner .headerLogo {
    max-width: 100px;
  }
}

#footer {
  background-color: #EFF5FE;
}
#footer .footerInner {
  max-width: 1100px;
  width: 100%;
  padding: 60px 20px 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#footer .footerInner .left {
  max-width: 290px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#footer .footerInner .left .logo {
  max-width: 240px;
  width: 100%;
}
#footer .footerInner .left .info {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 20px;
}
#footer .footerInner .right {
  max-width: 500px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 50px;
}
#footer .footerInner .right a {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #3e3a39;
}
#footer .footerInner .right a .en {
  font-size: 1.2rem;
  font-weight: 800;
  color: #036eb5;
  display: block;
}
@media screen and (max-width: 920px) {
  #footer .footerInner .left .info {
    font-size: 1.4rem;
  }
  #footer .footerInner .right a {
    font-size: 2.2rem;
  }
  #footer .footerInner .right a .en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  #footer .footerInner {
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }
  #footer .footerInner .left {
    max-width: 100%;
    align-items: center;
    margin-bottom: 60px;
    display: none;
  }
  #footer .footerInner .left .logo {
    margin-bottom: 20px;
  }
  #footer .footerInner .left .info {
    font-size: 1.6rem;
    text-align: center;
  }
  #footer .footerInner .right {
    gap: 15px 30px;
  }
  #footer .footerInner .right a {
    font-size: 1.4rem;
  }
  #footer .footerInner .right a .en {
    font-size: 1.4rem;
  }
}
#footer .copyright {
  text-align: center;
  color: #fff;
  background-color: #036eb5;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  #footer .copyright {
    font-size: 1.4rem;
  }
}