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

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

body * {
  letter-spacing: 0.05em;
  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-top: 68px;
  }
  .fMedium {
    font-size: clamp(14px, 3.85vw, 15px);
  }
}
@media print, screen and (min-width: 768px) {
  .commonWidth {
    width: min(92vw, 1080px);
  }
  .commonWidthPc {
    width: min(92vw, 1080px);
    margin: 0 auto;
  }
  .contentArea {
    padding-top: 68px;
    min-height: calc(100vh - 68px - 100px);
  }
}
.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);
  }
}
.menuBtn {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 200;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  row-gap: 6px;
}
.menuBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

@media only screen and (max-width: 1279px) {
  .menuBtn {
    display: flex;
  }
}
.secHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: background-color 0.3s;
  background: transparent;
}
.secHeader .hdrInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  height: 100%;
}
.secHeader .hdrInner .hdrLeft {
  display: flex;
  align-items: center;
  height: 100%;
}
.secHeader .hdrInner .hdrLeft .hdrLogo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}
.secHeader .hdrInner .hdrLeft .hdrInfo {
  border-left: 1px solid #ffffff;
}
.secHeader .hdrInner .hdrLeft .hdrInfo .infoRow {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.secHeader .hdrInner .hdrLeft .hdrInfo .infoRow .infoLbl.holiday {
  letter-spacing: 0.6em;
}
.secHeader .hdrInner .hdrRight {
  display: flex;
  align-items: center;
}
.secHeader .hdrInner .hdrRight .hdrNav .navList {
  display: flex;
  align-items: center;
}
.secHeader .hdrInner .hdrRight .hdrNav .navList .navItem {
  display: flex;
  align-items: center;
}
.secHeader .hdrInner .hdrRight .hdrNav .navList .navItem .dot {
  display: inline-block;
  border-radius: 50%;
  background: #4F8CBA;
  flex-shrink: 0;
}
.secHeader .hdrInner .hdrRight .hdrNav .navList .navItem .navLink {
  font-weight: 500;
  color: #ffffff;
}
.secHeader .hdrInner .hdrRight .hdrTel {
  display: flex;
  align-items: center;
}
.secHeader .hdrInner .hdrRight .hdrTel .telNum {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.secHeader.under {
  background: #1B71B4;
  border-bottom: solid 1px #ffffff;
}
.secHeader.under .hdrInner {
  border-bottom: none;
}

body.navOn .menuBtn span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
body.navOn .menuBtn span:nth-of-type(2) {
  opacity: 0;
}
body.navOn .menuBtn span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

@media only screen and (max-width: 1279px) {
  .secHeader {
    height: 68px;
  }
  .secHeader .hdrInner {
    padding: 0 20px;
  }
  .secHeader .hdrInner .hdrLeft .hdrLogo {
    padding: 0 16px 0 0;
  }
  .secHeader .hdrInner .hdrLeft .hdrLogo img {
    width: min(55vw, 180px);
    height: auto;
  }
  .secHeader .hdrInner .hdrLeft .hdrInfo {
    display: none;
  }
  .secHeader .hdrInner .hdrRight {
    display: none;
  }
}
@media print, screen and (min-width: 1280px) {
  .secHeader {
    height: 68px;
  }
  .secHeader .hdrInner {
    margin: 0 min(2.47vw, 50px);
  }
  .secHeader .hdrInner .hdrLeft {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .secHeader .hdrInner .hdrLeft .hdrLogo {
    padding: 0 min(1.6vw, 28px) 0 0;
  }
  .secHeader .hdrInner .hdrLeft .hdrInfo {
    padding: 0 0 0 min(1.6vw, 28px);
    row-gap: 4px;
  }
  .secHeader .hdrInner .hdrLeft .hdrInfo .infoRow {
    font-size: 13px;
  }
  .secHeader .hdrInner .hdrLeft .hdrInfo .infoRow .infoLbl {
    width: 66px;
  }
  .secHeader .hdrInner .hdrLeft .hdrInfo .infoRow .infoDtl {
    width: calc(100% - 66px);
  }
  .secHeader .hdrInner .hdrRight {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .secHeader .hdrInner .hdrRight .hdrNav .navList {
    -moz-column-gap: min(1.5vw, 20px);
         column-gap: min(1.5vw, 20px);
  }
  .secHeader .hdrInner .hdrRight .hdrNav .navList .navItem {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .secHeader .hdrInner .hdrRight .hdrNav .navList .navItem .dot {
    width: 6px;
    height: 6px;
  }
  .secHeader .hdrInner .hdrRight .hdrNav .navList .navItem .navLink {
    font-size: clamp(12px, 1vw, 15px);
  }
  .secHeader .hdrInner .hdrRight .hdrTel {
    padding: 0 0 0 min(2vw, 24px);
    margin: 0 0 0 min(2vw, 24px);
  }
  .secHeader .hdrInner .hdrRight .hdrTel .telNum {
    font-size: clamp(14px, 1.41vw, 18px);
    margin-left: 4px;
  }
}
.globalNavWrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  pointer-events: none;
}
.globalNavWrap .globalNavBg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.globalNavWrap .globalNav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100vw, 430px);
  background: #1B71B4;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.globalNavWrap .globalNav .navInner {
  padding: 48px 32px 60px;
}
.globalNavWrap .globalNav .navInner .navLogo {
  padding: 0 0 40px;
}
.globalNavWrap .globalNav .navInner .navLogo img {
  width: min(80%, 180px);
  height: auto;
}
.globalNavWrap .globalNav .navInner .naviList {
  border-top: 1px solid #9DBBD1;
  padding: 0 0 32px;
}
.globalNavWrap .globalNav .navInner .naviList .naviItem {
  border-bottom: 1px solid #9DBBD1;
}
.globalNavWrap .globalNav .navInner .naviList .naviItem .naviLink {
  display: block;
  padding: 14px 0;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(14px, 4.1vw, 16px);
}
.globalNavWrap .globalNav .navInner .navTel {
  display: flex;
  align-items: baseline;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.globalNavWrap .globalNav .navInner .navTel .telLabel {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}
.globalNavWrap .globalNav .navInner .navTel .telNum {
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(14px, 5.13vw, 20px);
}

body.navOn {
  overflow: hidden;
  width: 100%;
}
body.navOn .globalNavWrap {
  pointer-events: all;
}
body.navOn .globalNavWrap .globalNavBg {
  opacity: 1;
}
body.navOn .globalNavWrap .globalNav {
  transform: translateX(0);
}

.commonTitleArea .pageTitle {
  border-bottom: solid 1px #9DBBD1;
}
.commonTitleArea .pageTitle .titleEn {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.commonTitleArea .pageTitle .titleEn .dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 10px;
  background: #1B71B4;
}
.commonTitleArea .pageTitle .titleEn .text {
  font-family: "Roboto Condensed", sans-serif;
  font-style: italic;
  color: #1B71B4;
  color: #1B71B4;
}
.commonTitleArea .pageTitle .titleJp {
  line-height: 1.2;
  font-weight: 300;
}
.commonTitleArea .pnkzArea {
  text-align: right;
}
.commonTitleArea .pnkzArea * {
  letter-spacing: 0.03em;
}
.commonTitleArea .pnkzArea a.pnkzList {
  color: #1B71B4;
  font-weight: 500;
}
.commonTitleArea .pnkzArea span.pnkzList {
  color: #262626;
}

@media only screen and (max-width: 767px) {
  .commonTitleArea {
    padding: 48px 0 40px 0;
  }
  .commonTitleArea .pageTitle {
    padding: 0 0 12px 0;
  }
  .commonTitleArea .pageTitle .titleJp {
    font-size: clamp(16px, 6.67vw, 26px);
  }
  .commonTitleArea .pnkzArea {
    padding: 10px 0 0px 0;
    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 .titleEn {
    font-size: clamp(14px, 1.41vw, 18px);
  }
  .commonTitleArea .pageTitle .titleJp {
    font-size: clamp(25px, 3.28vw, 42px);
  }
  .commonTitleArea .pnkzArea {
    padding: 12px 0 40px 0;
    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 {
  background: #ffffff;
}
.secFooter .ftrContent .ftrLeft .ftrAddr .addrTel {
  display: flex;
  align-items: baseline;
}
.secFooter .ftrContent .ftrLeft .ftrAddr .addrTel .telLabel {
  font-weight: bold;
  flex-shrink: 0;
}
.secFooter .ftrContent .ftrLeft .ftrAddr .addrTel .telNum {
  font-weight: bold;
  letter-spacing: 0.05em;
}
.secFooter .ftrContent .ftrLeft .ftrAddr .addrHours .hoursRow {
  display: flex;
  align-items: flex-start;
}
.secFooter .ftrContent .ftrLeft .ftrAddr .addrHours .hoursRow dt.holiday {
  letter-spacing: 0.6em;
}
.secFooter .ftrContent .ftrNav .navList {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.secFooter .ftrContent .ftrNav .navList .navItem {
  display: flex;
  align-items: center;
}
.secFooter .ftrContent .ftrNav .navList .navItem .dot {
  display: inline-block;
  border-radius: 50%;
  background: #1B71B4;
  flex-shrink: 0;
}
.secFooter .copyright {
  background: #363636;
  text-align: center;
  color: #ffffff;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .secFooter .ftrContent {
    padding: 40px 0 36px;
  }
  .secFooter .ftrContent .ftrLeft {
    padding: 0 0 32px;
  }
  .secFooter .ftrContent .ftrLeft .ftrLogo {
    padding: 0 0 20px;
  }
  .secFooter .ftrContent .ftrLeft .ftrLogo img {
    width: min(80%, 200px);
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrZip {
    font-size: clamp(14px, 4.1vw, 16px);
    padding: 0 0 16px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrTel {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding: 0 0 6px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrTel .telLabel {
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrTel .telNum {
    font-size: clamp(16px, 6.67vw, 26px);
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrHours {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrHours .hoursRow {
    font-size: 14px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrHours .hoursRow dt {
    width: 76px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrHours .hoursRow dd {
    width: calc(100% - 76px);
  }
  .secFooter .ftrContent .ftrNav .navList {
    gap: 12px 30px;
    width: min(100%, 260px);
    margin: 0 auto;
  }
  .secFooter .ftrContent .ftrNav .navList .navItem {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .secFooter .ftrContent .ftrNav .navList .navItem .dot {
    width: 8px;
    height: 8px;
    min-width: 6px;
  }
  .secFooter .ftrContent .ftrNav .navList .navItem .navLink {
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .secFooter .copyright {
    padding: 14px 0;
    font-size: 13px;
  }
}
@media print, screen and (min-width: 768px) {
  .secFooter .ftrContent {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 120px 0 160px;
  }
  .secFooter .ftrContent .ftrLeft {
    width: 50%;
  }
  .secFooter .ftrContent .ftrLeft .ftrLogo {
    padding: 0 0 22px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrZip {
    font-size: clamp(14px, 1.25vw, 16px);
    padding: 0 0 14px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrTel {
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding: 0 0 16px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrTel .telLabel {
    font-size: 17px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrTel .telNum {
    font-size: 26px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrHours {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    font-size: 15px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrHours .hoursRow dt {
    width: 86px;
  }
  .secFooter .ftrContent .ftrLeft .ftrAddr .addrHours .hoursRow dd {
    width: calc(100% - 86px);
  }
  .secFooter .ftrContent .ftrNav {
    padding-top: 4px;
  }
  .secFooter .ftrContent .ftrNav .navList {
    gap: 24px 45px;
  }
  .secFooter .ftrContent .ftrNav .navList .navItem {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .secFooter .ftrContent .ftrNav .navList .navItem .dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
  }
  .secFooter .ftrContent .ftrNav .navList .navItem .navLink {
    font-size: 16px;
  }
  .secFooter .copyright {
    padding: 16px 0;
    font-size: 14px;
  }
}
.commonNewsArea .newsItem {
  border-bottom: solid 1px #9DBBD1;
}
.commonNewsArea .newsItem:first-of-type {
  border-top: solid 1px #9DBBD1;
}
.commonNewsArea .newsItem .itemLink .date {
  font-family: "Roboto Condensed", sans-serif;
  color: #777777;
}
.commonNewsArea .newsItem .itemLink .ttl {
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .commonNewsArea .newsItem {
    padding: 20px 0 16px 0;
  }
  .commonNewsArea .newsItem .itemLink .date {
    font-size: 14px;
    line-height: 1.2;
  }
  .commonNewsArea .newsItem .itemLink .ttl {
    font-size: clamp(14px, 4.1vw, 16px);
    line-height: 1.3;
  }
}
@media print, screen and (min-width: 768px) {
  .commonNewsArea .newsItem {
    padding: 30px 0;
  }
  .commonNewsArea .newsItem .itemLink {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .commonNewsArea .newsItem .itemLink .date {
    font-size: clamp(14px, 1.25vw, 16px);
    width: 100px;
  }
  .commonNewsArea .newsItem .itemLink .ttl {
    width: calc(100% - 100px);
    font-size: clamp(14px, 1.41vw, 18px);
  }
}/*# sourceMappingURL=common.css.map */