body {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  font-weight: 400;
  background: #FAF7EB;
  color: #000000;
}

body.navOn {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

body * {
  letter-spacing: 0em;
  line-height: 130%;
}

#mainContent {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: #393939;
}
.commonWidth {
  margin: 0 auto;
}

.wrapWidth {
  margin: 0 auto;
}

.inWidth {
  margin: 0 auto;
}

.noLink {
  opacity: 0.5;
  pointer-events: none;
  cursor: inherit;
}

.fMedium {
  line-height: 180%;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 767px) {
  .commonWidth {
    width: min(90vw, 390px);
  }
  .wrapWidth {
    width: min(94vw, 390px);
  }
  .commonWidthSp {
    width: min(90vw, 390px);
    margin: 0 auto;
  }
  .contentArea {
    padding-top: 134px;
    padding-bottom: 60px;
  }
  .fMedium {
    font-size: clamp(14px, 3.85vw, 15px);
  }
}
@media print, screen and (min-width: 768px) {
  .commonWidth {
    width: min(92vw, 1200px);
  }
  .wrapWidth {
    width: min(96vw, 1200px);
  }
  .commonWidthPc {
    width: min(92vw, 1200px);
    margin: 0 auto;
  }
  .contentArea {
    padding-top: 180px;
  }
  .fMedium {
    font-size: clamp(14px, 1.11vw, 16px);
  }
}
@media print, screen and (min-width: 768px) {
  .contentArea {
    padding-bottom: 80px;
  }
}
.commonBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  background: #EED368;
  width: 100%;
}
.commonBtn .text {
  line-height: 1;
  letter-spacing: 0;
}
.commonBtn .arrow {
  background: url(../images/btn_arrow.svg) center center no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 767px) {
  .commonBtn {
    height: 60px;
    padding: 0 12px 0 10%;
  }
  .commonBtn .text {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .commonBtn .arrow {
    width: 34px;
  }
}
@media print, screen and (min-width: 768px) {
  .commonBtn {
    height: 70px;
    padding: 0 15px 0 11.1%;
  }
  .commonBtn .text {
    font-size: 24px;
  }
  .commonBtn .arrow {
    width: 40px;
  }
}
.secHeader {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s;
}
.secHeader .secHeaderIn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.secHeader .secHeaderIn .headerNav {
  display: flex;
  align-items: center;
}
.secHeader .secHeaderIn .headerNav .navLink {
  color: #1B67B2;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: solid 1px transparent;
  padding: 0 0 4px 0;
}
.secHeader .secHeaderIn .headerNav .navLink:hover {
  border-bottom: solid 1px #1B67B2;
}
.secHeader .secHeaderIn .headerResBtn {
  display: flex;
  align-items: center;
  background: #D0A010;
  text-decoration: none;
  flex-shrink: 0;
  border-radius: 30px;
  cursor: pointer;
}
.secHeader .secHeaderIn .headerResBtn .text {
  color: #ffffff;
  white-space: nowrap;
}
.secHeader .secHeaderIn .headerResBtn .arrow {
  display: block;
  background: url(../images/arrow_white_down.svg) center center no-repeat;
  background-size: contain;
  aspect-ratio: 2/1;
}

@media only screen and (max-width: 767px) {
  .secHeader {
    height: 74px;
    display: flex;
    align-items: center;
  }
  .secHeader.under {
    background: rgba(27, 103, 178, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .secHeader .secHeaderIn {
    padding: 0 12px;
    justify-content: flex-start;
  }
  .secHeader .secHeaderIn .headerNav {
    display: none;
  }
  .secHeader .secHeaderIn .headerResBtn {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .secHeader {
    height: 80px;
    display: flex;
    align-items: center;
  }
  .secHeader.under {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .secHeader .secHeaderIn {
    padding: 0 20px 0 24px;
    justify-content: center;
  }
  .secHeader .secHeaderIn .headerLogo {
    display: none;
    height: 56px;
    flex-shrink: 0;
  }
  .secHeader .secHeaderIn .headerNav {
    -moz-column-gap: min(3.5vw, 50px);
         column-gap: min(3.5vw, 50px);
    justify-content: center;
  }
  .secHeader .secHeaderIn .headerNav .navLink {
    font-size: clamp(13px, 1.2vw, 16px);
  }
  .secHeader .secHeaderIn .headerResBtn {
    padding: 6px 14px 6px 18px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .secHeader .secHeaderIn .headerResBtn .text {
    font-size: clamp(13px, 1.2vw, 15px);
  }
  .secHeader .secHeaderIn .headerResBtn .arrow {
    width: 12px;
  }
}
.menuBtnWrap {
  position: fixed;
  z-index: 200;
}
.menuBtnWrap .menuBtn {
  background: transparent;
  position: relative;
  cursor: pointer;
  border-radius: 100px;
}
.menuBtnWrap .menuBtn span {
  position: absolute;
  display: block;
  height: 3px;
  right: 17.5px;
  background: #ffffff;
  transition: 0.4s;
}
.menuBtnWrap .menuBtn span:nth-of-type(1) {
  top: 32%;
}
.menuBtnWrap .menuBtn span:nth-of-type(2) {
  top: 50%;
}
.menuBtnWrap .menuBtn span:nth-of-type(3) {
  top: 68%;
}

@media only screen and (max-width: 767px) {
  .menuBtnWrap {
    top: 10px;
    right: 16px;
  }
  .menuBtnWrap .menuBtn {
    width: 50px;
    height: 50px;
  }
  .menuBtnWrap .menuBtn span {
    width: 30px;
    height: 3px;
    right: 10px;
  }
  body.navOn .menuBtnWrap .menuBtn {
    background-color: transparent;
  }
  body.navOn .menuBtnWrap .menuBtn span {
    background: #ffffff;
  }
  body.navOn .menuBtnWrap .menuBtn span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  body.navOn .menuBtnWrap .menuBtn span:nth-of-type(2) {
    opacity: 0;
  }
  body.navOn .menuBtnWrap .menuBtn span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
}
@media print, screen and (min-width: 768px) {
  .menuBtnWrap {
    display: none;
  }
}
.globalNavWrap {
  pointer-events: none;
}
.globalNavWrap .globalNav {
  background: #1B67B2;
  max-height: 100vh;
}
.globalNavWrap .globalNav .globalNavInner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: clamp(60px, 12vh, 100px) 0 40px 0;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea .naviList {
  padding: 12px 0;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea .naviList .link {
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(14px, 4.1vw, 16px);
}
.globalNavWrap .globalNav .globalNavInner .navContact {
  padding: min(3vh, 24px) 0 0 0;
}
.globalNavWrap .globalNav .globalNavInner .navContact .btnContact .telTop {
  background: #279DC3;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}
.globalNavWrap .globalNav .globalNavInner .navContact .btnContact .telBottom {
  background: #F5E24A;
  display: flex;
  align-items: center;
  padding: 10px min(4.8%, 16px);
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.globalNavWrap .globalNav .globalNavInner .navContact .btnContact .telBottom .iconCol {
  width: 20%;
}
.globalNavWrap .globalNav .globalNavInner .navContact .btnContact .telBottom .textCol {
  width: calc(80% - 6px);
  font-weight: bold;
  text-align: left;
}
.globalNavWrap .globalNav .globalNavInner .navContact .btnContact .telBottom .textCol .caption {
  font-size: clamp(14px, 4.1vw, 16px);
}
.globalNavWrap .globalNav .globalNavInner .navContact .btnContact .telBottom .textCol .time {
  font-size: 13px;
}

body.navOn .globalNavWrap {
  pointer-events: all;
}
body.navOn .globalNavWrap .globalNav {
  width: min(100vw, 400px);
}

.secFooter {
  background: #1B67B2;
}
.secFooter .secFooterIn {
  display: flex;
}
.secFooter .secFooterIn .footerInfo .footerOrgName {
  color: #ffffff;
  font-weight: 700;
}
.secFooter .secFooterIn .footerInfo .footerDl .footerDlRow {
  display: flex;
  border-bottom: solid 1px #ffffff;
}
.secFooter .secFooterIn .footerInfo .footerDl .footerDlRow:first-of-type {
  border-top: solid 1px #ffffff;
}
.secFooter .secFooterIn .footerInfo .footerDl .footerDlRow dt {
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
}
.secFooter .secFooterIn .footerInfo .footerDl .footerDlRow dd {
  color: #ffffff;
}
.secFooter .secFooterIn .footerInfo .footerDl .footerDlRow dd a {
  color: #ffffff;
  text-decoration: none;
}

.copyright {
  background: #ffffff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .secFooter .secFooterIn {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 32px;
    row-gap: 24px;
  }
  .secFooter .secFooterIn .footerLogo {
    width: 140px;
    margin: 0 auto;
  }
  .secFooter .secFooterIn .footerInfo .footerOrgName {
    font-size: clamp(14px, 4.62vw, 18px);
    margin-bottom: 12px;
    text-align: center;
  }
  .secFooter .secFooterIn .footerInfo .footerDl .footerDlRow {
    flex-direction: column;
    padding: 8px 0;
  }
  .secFooter .secFooterIn .footerInfo .footerDl .footerDlRow dt {
    font-size: clamp(14px, 4.1vw, 16px);
    padding: 0 0 2px 0;
  }
  .secFooter .secFooterIn .footerInfo .footerDl .footerDlRow dd {
    font-size: 14px;
  }
  .copyright {
    padding: 16px 0;
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .secFooter {
    padding: 48px 0 54px;
  }
  .secFooter .secFooterIn {
    width: min(92vw, 1200px);
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: min(12%, 120px);
         column-gap: min(12%, 120px);
  }
  .secFooter .secFooterIn .footerLogo {
    width: 214px;
  }
  .secFooter .secFooterIn .footerInfo {
    width: 400px;
  }
  .secFooter .secFooterIn .footerInfo .footerOrgName {
    font-size: clamp(14px, 1.39vw, 20px);
    margin-bottom: 8px;
  }
  .secFooter .secFooterIn .footerInfo .footerDl .footerDlRow {
    -moz-column-gap: 0;
         column-gap: 0;
    padding: 10px 0;
    align-items: center;
  }
  .secFooter .secFooterIn .footerInfo .footerDl .footerDlRow dt {
    font-size: clamp(14px, 1.11vw, 16px);
    width: 100px;
  }
  .secFooter .secFooterIn .footerInfo .footerDl .footerDlRow dd {
    font-size: clamp(14px, 1.11vw, 16px);
    width: calc(100% - 100px);
    padding-left: 20px;
  }
  .copyright {
    padding: 6px 0;
    font-size: clamp(14px, 1.11vw, 16px);
  }
}/*# sourceMappingURL=common.css.map */