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

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

body * {
  letter-spacing: 0.1em;
  line-height: 160%;
}

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

a {
  color: #393939;
}
.commonWidth {
  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(88vw, 390px);
  }
  .commonWidthSp {
    width: min(88vw, 390px);
    margin: 0 auto;
  }
  .contentArea {
    padding-bottom: 60px;
  }
  .fMedium {
    font-size: clamp(14px, 3.85vw, 15px);
  }
}
@media print, screen and (min-width: 768px) {
  .commonWidth {
    width: min(92vw, 1160px);
  }
  .commonWidthPc {
    width: min(92vw, 1160px);
    margin: 0 auto;
  }
  .contentArea {
    min-height: calc(100vh - 100px - 100px);
  }
  .fMedium {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}
.commonCvBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  -moz-column-gap: 12px;
       column-gap: 12px;
  box-shadow: 0 0 5px 0 rgba(15, 74, 46, 0.8);
  border-radius: 100px;
  background: #0F4A2E;
  padding: 0 min(1.67vw, 24px);
  transition: background-color 0.4s;
}
.commonCvBtn.anim {
  animation-name: btnShadow;
  animation-iteration-count: infinite;
  animation-duration: 4s;
  animation-timeline: cubic-bezier(0.8, 0.06, 0.55, 0.99);
}
.commonCvBtn .text {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
}
.commonCvBtn:hover {
  background-color: #4EAB88;
}
@keyframes btnShadow {
  30% {
    box-shadow: 0 0 10px 0 rgb(15, 74, 46);
  }
  50% {
    box-shadow: 0 0 15px 0 rgb(255, 255, 255);
  }
}
@media only screen and (max-width: 767px) {
  .headerLogo {
    padding: 15px 0 18px 15px;
  }
  .headerLogo img {
    width: min(65%, 202px);
  }
}
@media print, screen and (min-width: 768px) {
  .headerLogo {
    padding: 24px 0 0 24px;
  }
}
.secHeader {
  position: fixed;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  height: 70px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  top: 25px;
  right: min(3.47vw, 50px);
  display: flex;
  align-items: center;
}
.secHeader .secHeaderIn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 min(2.1vw, 30px);
  -moz-column-gap: min(1.04vw, 15px);
       column-gap: min(1.04vw, 15px);
}
.secHeader .secHeaderIn .linkList {
  font-weight: bold;
}
@media only screen and (max-width: 1179px) {
  .secHeader {
    display: none;
  }
}
@media print, screen and (min-width: 1180px) {
  .secHeader .secHeaderIn .linkList .link {
    font-size: clamp(14px, 1.17vw, 15px);
  }
}
.menuBtnWrap {
  position: fixed;
  z-index: 200;
  top: 15px;
  right: 15px;
}
.menuBtnWrap .menuBtn {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: #393939;
  position: relative;
  cursor: pointer;
}
.menuBtnWrap .menuBtn span {
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  left: 12px;
  background: #ffffff;
  transition: 0.4s;
}
.menuBtnWrap .menuBtn span:nth-of-type(1) {
  top: 30%;
}
.menuBtnWrap .menuBtn span:nth-of-type(2) {
  top: 50%;
}
.menuBtnWrap .menuBtn span:nth-of-type(3) {
  top: 70%;
}

body.navOn .menuBtnWrap .menuBtn {
  background-color: transparent;
}
body.navOn .menuBtnWrap .menuBtn span {
  background: #393939;
}
body.navOn .menuBtnWrap .menuBtn span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
body.navOn .menuBtnWrap .menuBtn span:nth-of-type(2) {
  opacity: 0;
}
body.navOn .menuBtnWrap .menuBtn span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

@media print, screen and (min-width: 1180px) {
  .menuBtnWrap {
    display: none;
  }
}
.globalNavWrap {
  pointer-events: none;
}
.globalNavWrap .globalNav {
  background: #ffffff;
  max-height: 100vh;
}
.globalNavWrap .globalNav .globalNavInner {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 180px;
  margin: 0 auto;
}
.globalNavWrap .globalNav .globalNavInner .navLogo {
  padding: 80px 0 50px 0;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea .naviList {
  padding: 8px 0;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea .naviList .naviLink {
  color: #393939;
  font-weight: bold;
  font-size: clamp(14px, 4.62vw, 18px);
}
.globalNavWrap .globalNav .globalNavInner .navContact {
  padding: 40px 0 100px 0;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

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

.commonTitleArea .pageTitle {
  color: #0F4A2E;
}
.commonTitleArea .pageTitle .titleCp {
  font-weight: bold;
  line-height: 120%;
}
.commonTitleArea .pageTitle .titleJp {
  font-weight: bold;
  line-height: 140%;
}
.commonTitleArea .pnkzArea {
  text-align: right;
}
.commonTitleArea .pnkzArea * {
  letter-spacing: 0.03em;
}
.commonTitleArea .pnkzArea a.pnkzList {
  color: #0F4A2E;
}
.commonTitleArea .pnkzArea span.pnkzList {
  color: #B3B3B3;
}

@media only screen and (max-width: 767px) {
  .commonTitleArea {
    padding: 48px 0 40px 0;
  }
  .commonTitleArea .pageTitle {
    padding: 0 0 12px 0;
  }
  .commonTitleArea .pageTitle .titleCp {
    font-size: 14px;
  }
  .commonTitleArea .pageTitle .titleJp {
    font-size: clamp(16px, 6.67vw, 26px);
  }
  .commonTitleArea .pnkzArea {
    font-size: 13px;
  }
}
@media print, screen and (min-width: 768px) {
  .commonTitleArea {
    padding: 80px 0 40px 0;
  }
  .commonTitleArea .pageTitle {
    padding: 0 0 12px 0;
  }
  .commonTitleArea .pageTitle .titleCp {
    font-size: clamp(14px, 1.25vw, 16px);
  }
  .commonTitleArea .pageTitle .titleJp {
    font-size: clamp(19px, 2.5vw, 32px);
  }
  .commonTitleArea .pnkzArea {
    font-size: 14px;
  }
}
.supportSection {
  background: #0F4A2E;
  color: #ffffff;
}
.supportSection .sectionInner .supportContent .statusBadge {
  background: #EEE136;
  color: #0F4A2E;
  border-radius: 2px;
  font-weight: 600;
  padding: 1px 6px;
}
.supportSection .sectionInner .supportContent .mainHeading {
  font-weight: bold;
}
.supportSection .sectionInner .supportContent .mainHeading .headingHighlight {
  background: linear-gradient(to bottom, transparent 80%, #EEE136 80%, #EEE136 95%, transparent 95%);
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaLabel {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaLabel .labelLeft {
  background: url(../images/cta_line_left.svg) center center no-repeat;
  background-size: contain;
  width: 8px;
  height: 22px;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaLabel .labelText {
  letter-spacing: 0;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaLabel .labelRight {
  background: url(../images/cta_line_right.svg) center center no-repeat;
  background-size: contain;
  width: 8px;
  height: 22px;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaButton {
  border: solid 1px #ffffff;
  box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  transition: background-color 0.3s;
  color: #ffffff;
  animation-name: btnShadow;
  animation-iteration-count: infinite;
  animation-duration: 4s;
  animation-timeline: cubic-bezier(0.8, 0.06, 0.55, 0.99);
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaButton:hover {
  background: #4EAB88;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaButton .buttonText {
  font-weight: bold;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea .iconCol {
  width: 40px;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea .textCol {
  width: calc(100% - 40px - 12px);
  color: #ffffff;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea .textCol .textNum {
  font-weight: bold;
  letter-spacing: 0.03em;
}
.supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea .textCol .textTime {
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 130%;
  display: block;
}
@media only screen and (max-width: 767px) {
  .supportSection .sectionInner {
    padding: 40px 0 0 0;
  }
  .supportSection .sectionInner .supportContent {
    padding: 0 0 20px 0;
    width: min(100%, 286px);
    margin: 0 auto;
  }
  .supportSection .sectionInner .supportContent .statusBadge {
    font-size: 14px;
  }
  .supportSection .sectionInner .supportContent .mainHeading {
    font-size: clamp(14px, 6.15vw, 24px);
    padding: 4px 0 16px 0;
    line-height: 150%;
    letter-spacing: 0em;
  }
  .supportSection .sectionInner .supportContent .descriptionText {
    padding: 10px 0 30px 0;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup {
    width: 260px;
    padding: 0 0 30px 0;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaLabel {
    padding: 0 0px 8px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaLabel .labelText {
    font-size: 14px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaButton {
    padding: 18px 0;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaButton .buttonText {
    font-size: 18px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea .textCol .textNum {
    font-size: 26px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea .textCol .textTime {
    font-size: 13px;
  }
  .supportSection .sectionInner .imageArea {
    width: 120px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 768px) {
  .supportSection .sectionInner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .supportSection .sectionInner .supportContent {
    padding: 58px 0;
  }
  .supportSection .sectionInner .supportContent .statusBadge {
    font-size: 14px;
  }
  .supportSection .sectionInner .supportContent .mainHeading {
    font-size: clamp(24px, 3.13vw, 40px);
    padding: 4px 0 16px 0;
  }
  .supportSection .sectionInner .supportContent .descriptionText {
    padding: 16px 0 36px 0;
  }
  .supportSection .sectionInner .supportContent .ctaContainer {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 20px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup {
    width: 260px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaLabel {
    padding: 0 0px 12px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaLabel .labelText {
    font-size: 14px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaButton {
    padding: 18px 0;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .ctaButton .buttonText {
    font-size: 18px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea .textCol .textNum {
    font-size: 26px;
  }
  .supportSection .sectionInner .supportContent .ctaContainer .ctaGroup .telArea .textCol .textTime {
    font-size: 13px;
  }
}
.secFooter .footerLogo {
  text-align: center;
}
.secFooter .copyright {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .secFooter {
    padding: 40px 0 24px 0;
  }
  .secFooter .footerLogo {
    padding: 0 0 40px 0;
  }
  .secFooter .copyright {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}
@media print, screen and (min-width: 768px) {
  .secFooter {
    padding: 68px 0 24px 0;
  }
  .secFooter .footerLogo {
    padding: 0 0 72px 0;
  }
  .secFooter .copyright {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
}
.commonNewsArea .newsItem .newsLink .imageWrapper {
  position: relative;
}
.commonNewsArea .newsItem .newsLink .imageWrapper img {
  position: relative;
  z-index: 0;
  box-shadow: 0 0 8px 0 rgba(15, 74, 46, 0.8);
  border-radius: 5px;
}
.commonNewsArea .newsItem .newsLink .imageWrapper .newIcon {
  position: absolute;
  z-index: 1;
  background: #EEE136;
  border-radius: 2px;
  color: #0F4A2E;
  font-size: 12px;
  padding: 0 6px;
  left: -6px;
  bottom: -6px;
  font-weight: 600;
}
.commonNewsArea .newsItem .newsLink .metaData .newsDate {
  color: #B3B3B3;
  font-size: 12px;
  font-weight: 500;
}
.commonNewsArea .newsItem .newsLink .metaData .categoryTag {
  color: #0F4A2E;
  font-weight: 500;
  font-size: 13px;
}
.commonNewsArea .newsItem .newsLink .newsTitle {
  color: #393939;
  font-weight: bold;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .commonNewsArea {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 6%;
         column-gap: 6%;
    row-gap: 40px;
  }
  .commonNewsArea .newsItem {
    width: 47%;
  }
  .commonNewsArea .newsItem .newsLink .metaData {
    padding: 12px 0 4px 0;
  }
  .commonNewsArea .newsItem .newsLink .newsTitle {
    font-size: clamp(14px, 3.85vw, 15px);
    line-height: 140%;
  }
}
@media print, screen and (min-width: 768px) {
  .commonNewsArea {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    -moz-column-gap: 3%;
         column-gap: 3%;
    row-gap: 60px;
  }
  .commonNewsArea .newsItem {
    width: 31.33%;
  }
  .commonNewsArea .newsItem .newsLink .metaData {
    display: flex;
    -moz-column-gap: 12px;
         column-gap: 12px;
    padding: 12px 0;
  }
  .commonNewsArea .newsItem .newsLink .newsTitle {
    font-size: clamp(14px, 1.41vw, 18px);
  }
}/*# sourceMappingURL=common.css.map */