@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  font-weight: 500;
}

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

body * {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

#mainContent {
  max-width: 100%;
}

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

.wrapWidth {
  margin: 0 auto;
}

.inWidth {
  margin: 0 auto;
}

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

.commonBtnEntry {
  background: #f6ff7e;
  padding: 6px 10px;
  width: 125px;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: bold;
  font-size: 14px;
  border-radius: 9999px;
  border: 1px solid #000000;
  position: relative;
}
.commonBtnEntry::before {
  content: "";
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 12/8;
  position: absolute;
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  background: url(../../shared/images/arrow_black.svg) center/cover;
}

.vis-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .commonWidth {
    width: min(92.4vw, 390px);
  }
  .wrapWidth {
    width: min(96vw, 420px);
  }
  .commonWidthSp {
    width: min(92.4vw, 390px);
    margin: 0 auto;
  }
  .contentArea {
    padding-bottom: 52px;
  }
  .hide-sp {
    display: none;
  }
  .vis-sp {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .commonWidth {
    width: min(90vw, 1080px);
  }
  .wrapWidth {
    width: min(96vw, 1320px);
  }
  .commonWidthPc {
    width: min(90vw, 1080px);
    margin: 0 auto;
  }
  .contentArea {
    min-height: calc(100vh - 100px - 100px);
    padding-bottom: 92px;
  }
}
.secHeader {
  width: 100%;
  padding: 15px 40px;
  position: fixed;
  z-index: 100;
}
.secHeader.under {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}
.secHeader .secHeaderWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.secHeader .secHeaderNav {
  display: flex;
  align-items: center;
  gap: 50px;
}
.secHeader .secHeaderLogo a {
  display: block;
}
.secHeader .secHeaderLogo img {
  width: 66px;
  height: 67px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.secHeader .secHeaderLink {
  display: flex;
  align-items: center;
  gap: 35px;
}
.secHeader .secHeaderLink a {
  font-family: "Roboto", sans-serif;
  font-size: clamp(15px, 1.75vw, 18px);
  font-weight: 900;
  color: #000000;
  text-decoration: none;
}
@media only screen and (max-width: 1079px) {
  .secHeader {
    padding: 15px 20px;
  }
  .secHeader .secHeaderLink {
    display: none;
  }
  .secHeader .secHeaderEntry {
    display: none;
  }
}
.menuBtnWrap {
  position: fixed;
  z-index: 200;
  top: 8px;
  right: 13px;
}
.menuBtnWrap .menuBtn {
  width: 60px;
  height: 60px;
  background: transparent;
  position: relative;
  cursor: pointer;
  background: #000000;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0);
  transition: all 0.4s;
}
.menuBtnWrap .menuBtn span {
  position: absolute;
  display: block;
  width: 32px;
  height: 2px;
  right: 12px;
  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%;
}

body.navOn .menuBtnWrap .menuBtn {
  background-color: transparent;
  border-color: #ffffff;
}
body.navOn .menuBtnWrap .menuBtn span {
  background: #ffffff;
}
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: 1080px) {
  .menuBtnWrap {
    display: none;
  }
}
.globalNavWrap {
  pointer-events: none;
}
.globalNavWrap .globalNav {
  background: #000000;
  max-height: 100vh;
}
.globalNavWrap .globalNav .globalNavInner {
  display: flex;
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: clamp(40px, 10vh, 60px) 0 70px 0;
  flex-flow: column;
  gap: 20px;
}
.globalNavWrap .globalNav .globalNavInner .globalNavLink {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  text-align: start;
}
.globalNavWrap .globalNav .globalNavInner .globalNavLink .globalNavLinkEn {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.globalNavWrap .globalNav .globalNavInner .globalNavLink .globalNavLinkJp {
  font-size: 15px;
  letter-spacing: 0.04em;
}
.globalNavWrap .globalNav .globalNavInner .globalNavEntry {
  width: 161px;
  height: auto;
  position: absolute;
  right: 0px;
  bottom: 20px;
}

body.navOn .globalNavWrap {
  pointer-events: all;
}
body.navOn .globalNavWrap .globalNav {
  width: 100vw;
}

.commonTitleArea {
  position: relative;
  z-index: 1;
}
.commonTitleArea .pageTitle .titleEn {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  color: #ADADAD;
  line-height: 1.2;
}
.commonTitleArea .pageTitle .titleJp {
  font-weight: bold;
  line-height: 1.1;
}
.commonTitleArea .pnkzArea {
  text-align: right;
}
.commonTitleArea .pnkzArea a.pnkzList {
  color: #000000;
  font-weight: 500;
}
.commonTitleArea .pnkzArea span.pnkzList {
  color: #808080;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .commonTitleArea {
    display: flex;
    flex-direction: column-reverse;
    padding: 122px 0 44px 0;
  }
  .commonTitleArea .pnkzArea {
    font-size: 11px;
  }
  .commonTitleArea .pageTitle .titleEn {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .commonTitleArea .pageTitle .titleJp {
    font-size: clamp(21px, 8.97vw, 35px);
  }
}
@media print, screen and (min-width: 768px) {
  .commonTitleArea {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 118px 0 120px 0;
  }
  .commonTitleArea .pageTitle {
    width: 50%;
  }
  .commonTitleArea .pageTitle .titleEn {
    font-size: clamp(15px, 1.74vw, 25px);
  }
  .commonTitleArea .pageTitle .titleJp {
    font-size: clamp(27px, 3.13vw, 45px);
  }
  .commonTitleArea .pnkzArea {
    width: 50%;
  }
}
.secFooter {
  background-color: #f2f2f2;
  padding: 60px 0 40px;
  color: #000000;
}
.secFooter .footerTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 25px;
  border-bottom: 1px solid #000000;
  margin-bottom: 30px;
}
.secFooter .footerTop .footerLogoArea {
  display: flex;
  align-items: center;
  gap: 15px;
}
.secFooter .footerTop .footerLogoArea .logoMark img {
  width: 60px;
  height: auto;
  display: block;
}
.secFooter .footerTop .footerLogoArea .logoText .logoCatch {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
.secFooter .footerTop .footerLogoArea .logoText .logoName {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.secFooter .footerTop .footerSns {
  display: flex;
  gap: 15px;
}
.secFooter .footerTop .footerSns a {
  display: block;
}
.secFooter .footerMain {
  display: flex;
  justify-content: space-between;
}
.secFooter .footerMain .footerLeft {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.secFooter .footerMain .footerLeft .footerAddress {
  font-size: 14px;
  margin-bottom: 20px;
}
.secFooter .footerMain .footerLeft .footerEntryArea {
  margin-bottom: 20px;
}
.secFooter .footerMain .footerLeft .footerLinkArea {
  margin-bottom: 50px;
}
.secFooter .footerMain .footerLeft .footerLinkArea .linkExternal {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  gap: 6px;
}
.secFooter .footerMain .footerLeft .footerLinkArea .linkExternal .iconExt {
  display: flex;
}
.secFooter .footerMain .footerLeft .copyright {
  font-size: 12px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.secFooter .footerMain .footerRight {
  width: 50%;
  display: flex;
  gap: 60px;
  min-width: 400px;
}
.secFooter .footerMain .footerRight .navCol {
  width: 45%;
}
.secFooter .footerMain .footerRight .navCol .navTtl {
  font-size: 20px;
  margin-bottom: 30px;
}
.secFooter .footerMain .footerRight .navCol .navList {
  list-style: none;
}
.secFooter .footerMain .footerRight .navCol .navList li {
  margin-bottom: 12px;
}
.secFooter .footerMain .footerRight .navCol .navList li a {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
}
.secFooter .footerMain .footerRight .navCol .navList li a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #000000;
  margin-right: 12px;
}

@media only screen and (max-width: 767px) {
  .secFooter {
    padding: 40px 0 30px;
  }
  .secFooter .footerTop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 35px;
    margin-bottom: 36px;
  }
  .secFooter .footerTop .footerLogoArea {
    gap: 10px;
  }
  .secFooter .footerTop .footerLogoArea .logoMark img {
    width: 45px;
  }
  .secFooter .footerTop .footerLogoArea .logoText .logoCatch {
    font-size: 10px;
    margin-bottom: 2px;
  }
  .secFooter .footerTop .footerLogoArea .logoText .logoName {
    font-size: 16px;
  }
  .secFooter .footerTop .footerSns {
    gap: 10px;
  }
  .secFooter .footerTop .footerSns a img {
    width: 24px;
    height: 24px;
  }
  .secFooter .footerMain {
    display: flex;
    flex-direction: column;
  }
  .secFooter .footerMain .footerRight {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: unset;
  }
  .secFooter .footerMain .footerRight .navCol {
    width: 100%;
    margin-bottom: 30px;
  }
  .secFooter .footerMain .footerRight .navCol .navTtl {
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d1d1;
  }
  .secFooter .footerMain .footerRight .navCol .navList li {
    margin-bottom: 10px;
  }
  .secFooter .footerMain .footerRight .navCol .navList li a {
    font-size: 13px;
    line-height: 1;
  }
  .secFooter .footerMain .footerLeft {
    order: 2;
    width: 100%;
    margin-top: 10px;
  }
  .secFooter .footerMain .footerLeft .footerAddress {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .secFooter .footerMain .footerLeft .footerEntryArea {
    margin-bottom: 15px;
  }
  .secFooter .footerMain .footerLeft .footerLinkArea {
    margin-bottom: 25px;
  }
  .secFooter .footerMain .footerLeft .footerLinkArea .linkExternal {
    font-size: 14px;
  }
  .secFooter .footerMain .footerLeft .copyright {
    font-size: 12px;
    text-align: left;
    margin-top: 0;
  }
}
.commonNewsArea .newsItem {
  border-bottom: solid 1px #ADADAD;
}
.commonNewsArea .newsItem .newsLink {
  background: url(../images/arrow_black_right.svg) right center no-repeat;
}
.commonNewsArea .newsItem .newsLink .date {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  color: #adadad;
}
.commonNewsArea .newsItem .newsLink .title {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .commonNewsArea .newsItem .newsLink {
    background-position: right bottom 25px;
    display: block;
    background-size: 24px;
    padding: 18px 0;
  }
  .commonNewsArea .newsItem .newsLink .date {
    font-size: 13px;
    line-height: 1.1;
  }
  .commonNewsArea .newsItem .newsLink .title {
    font-size: clamp(14px, 4.62vw, 18px);
    padding-right: 36px;
  }
}
@media print, screen and (min-width: 768px) {
  .commonNewsArea .newsItem .newsLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-size: 30px;
    padding: 26px 0;
  }
  .commonNewsArea .newsItem .newsLink .date {
    font-size: 12px;
    width: 84px;
  }
  .commonNewsArea .newsItem .newsLink .title {
    font-size: clamp(14px, 1.25vw, 18px);
    width: calc(100% - 84px);
    padding-right: 50px;
  }
}
.secCommonEntry {
  position: relative;
  background: #000000;
  border-radius: 20px;
}
.secCommonEntry .bgLight {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  mix-blend-mode: darken;
  aspect-ratio: 370/528;
  transform-origin: top left;
  animation: swing-light 15s linear infinite;
}
.secCommonEntry .bgChara {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  aspect-ratio: 519/348;
}
.secCommonEntry .entryMain {
  position: relative;
  z-index: 0;
}
.secCommonEntry .entryMain .titleHead {
  color: #ffffff;
  font-weight: bold;
}
.secCommonEntry .entryMain .titleMain {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.4;
}
.secCommonEntry .entryMain .mainText {
  color: #ffffff;
  font-weight: 500;
}
.secCommonEntry .entryMain .btnEntry {
  background: #F6FF7E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
}
.secCommonEntry .entryMain .btnEntry.white {
  background: #ffffff;
}
.secCommonEntry .entryMain .btnEntry .text {
  font-weight: bold;
}
.secCommonEntry .entryMain .btnEntry .arrow {
  background: url(../../shared/images/btn_arrow_black_right.svg) center center no-repeat;
  background-size: contain;
  aspect-ratio: 20/10;
}

@keyframes swing-light {
  0% {
    transform: rotate(2deg) skewX(0deg);
    opacity: 1;
    filter: blur(1px);
  }
  15% {
    /* 素早くマイナス側へ振り、強めに歪ませる */
    transform: rotate(-5deg) skewX(12deg);
    opacity: 0.8;
    filter: blur(4px);
  }
  30% {
    /* 下限の -10deg 付近で細かく震える */
    transform: rotate(-10deg) skewX(-5deg);
    opacity: 1;
    filter: blur(0px);
  }
  45% {
    /* 急激にプラス側へ戻しつつ、逆方向に歪ませる */
    transform: rotate(1deg) skewX(0deg);
    opacity: 0.9;
    filter: blur(2px);
  }
  60% {
    /* 中間地点で一瞬止まるようなタメ */
    transform: rotate(-4deg) skewX(2deg);
    opacity: 1;
    filter: blur(1px);
  }
  80% {
    /* 再び下限近くまで素早く移動 */
    transform: rotate(-9deg) skewX(8deg);
    opacity: 0.85;
    filter: blur(0px);
  }
  100% {
    transform: rotate(2deg) skewX(0deg);
    opacity: 1;
    filter: blur(1px);
  }
}
@media only screen and (max-width: 767px) {
  .secCommonEntry {
    margin: 140px 0 0 0;
  }
  .secCommonEntry .bgLight {
    left: -180px;
    top: -240px;
    width: 300px;
  }
  .secCommonEntry .bgChara {
    right: 0px;
    top: -130px;
    width: 270px;
  }
  .secCommonEntry .entryMain {
    padding: 70px 24px 40px;
  }
  .secCommonEntry .entryMain .titleHead {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secCommonEntry .entryMain .titleMain {
    font-size: clamp(15px, 6.41vw, 25px);
  }
  .secCommonEntry .entryMain .mainText {
    font-size: 14px;
    line-height: 1.7;
    padding: 16px 0 10px 0;
  }
  .secCommonEntry .entryMain .btnEntry {
    margin: 16px 0 0 0;
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding: 12px 20px;
    width: min(100%, 272px);
  }
  .secCommonEntry .entryMain .btnEntry .text {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .secCommonEntry .entryMain .btnEntry .arrow {
    width: 18px;
  }
}
@media print, screen and (min-width: 768px) {
  .secCommonEntry {
    margin: 200px 0 0 0;
  }
  .secCommonEntry .bgLight {
    left: -190px;
    top: -325px;
    width: 370px;
  }
  .secCommonEntry .bgChara {
    right: 0px;
    top: -246px;
    width: 519px;
  }
  .secCommonEntry .entryMain {
    padding: 70px min(2.6%, 28px) 50px;
  }
  .secCommonEntry .entryMain .titleHead {
    font-size: clamp(14px, 1.39vw, 20px);
  }
  .secCommonEntry .entryMain .titleMain {
    font-size: clamp(21px, 2.43vw, 35px);
  }
  .secCommonEntry .entryMain .mainText {
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 2;
    padding: 24px 0 16px 0;
  }
  .secCommonEntry .entryMain .btnEntry {
    margin: 24px 0 0 0;
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding: 12px 20px;
    min-width: 300px;
  }
  .secCommonEntry .entryMain .btnEntry .text {
    font-size: 20px;
  }
  .secCommonEntry .entryMain .btnEntry .arrow {
    width: 20px;
  }
}
.noneDataArea {
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .noneDataArea {
    font-size: clamp(14px, 4.1vw, 16px);
    padding: 40px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .noneDataArea {
    font-size: clamp(14px, 1.39vw, 20px);
    padding: 80px 0;
  }
}/*# sourceMappingURL=common.css.map */