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

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

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

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

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

.inWidth {
  margin: 0 auto;
}

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

.fontBar {
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 767px) {
  .commonWidth {
    width: min(94vw, 420px);
  }
  .commonWidthSp {
    width: min(94vw, 420px);
    margin: 0 auto;
  }
  .inWidth {
    width: 86vw;
  }
  .contentArea {
    padding-bottom: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  .commonWidth {
    width: min(90vw, 1080px);
  }
  .commonWidthPc {
    width: min(90vw, 1080px);
    margin: 0 auto;
  }
  .inWidth {
    width: min(86vw, 1080px);
  }
  .contentArea {
    padding-top: 0px;
    min-height: calc(100vh - 110px - 100px);
    padding-bottom: 80px;
  }
}
.commonBtn {
  border: solid 1px #37826D;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s, color 0.5s;
  color: #37826D;
  background-color: #ffffff;
}
.commonBtn .text {
  font-weight: 600;
}
.commonBtn .icon {
  background: url(../images/arrow_green_right.svg) center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 10px;
  transition: filter 0.5s;
}
.commonBtn:hover {
  background-color: #37826D;
  color: #ffffff;
}
.commonBtn:hover .icon {
  filter: brightness(5);
}

.innerContentWrap {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  .commonBtn {
    width: 100%;
    height: 56px;
    padding: 0 24px;
  }
  .commonBtn .text {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .innerContentWrap {
    padding: 24px min(4.3%, 16px);
  }
}
@media print, screen and (min-width: 768px) {
  .commonBtn {
    width: 100%;
    height: 70px;
    padding: 0 30px;
  }
  .commonBtn .text {
    font-size: clamp(14px, 1.5vw, 18px);
  }
  .innerContentWrap {
    padding: 32px min(4.62%, 50px);
  }
}
.secHeader {
  background: #fffef9;
}
.secHeader .secHeaderIn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menuBtnWrap {
  position: fixed;
  z-index: 200;
  display: flex;
  align-items: center;
}
.menuBtnWrap .menuBtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  background: #1F2E2A;
}
@media only screen and (max-width: 767px) {
  .secHeader {
    padding: 0 16px;
  }
  .secHeader .secHeaderIn {
    height: 80px;
  }
  .secHeader .secHeaderIn .headerLogo {
    width: min(60%, 180px);
  }
  .menuBtnWrap {
    right: 8px;
    top: 8px;
  }
}
@media print, screen and (min-width: 768px) {
  .secHeader {
    padding: 0 min(3vw, 40px);
  }
  .secHeader .secHeaderIn {
    height: 110px;
  }
  .menuBtnWrap {
    right: 40px;
    top: 25px;
  }
}
#menuButton {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span {
  display: inline-block;
  transition: transform 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 17px;
  width: 26px;
  height: 1px;
  background-color: #ffffff;
}
#menuButton span:nth-of-type(1) {
  top: 34%;
}
#menuButton span:nth-of-type(2) {
  top: calc(50% - 1px);
}
#menuButton span:nth-of-type(3) {
  top: 64%;
}

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

.globalNavWrap {
  pointer-events: none;
}
.globalNavWrap .globalNav {
  background: #1F2E2A;
}
.globalNavWrap .globalNav .globalNavInner {
  position: relative;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea {
  padding-top: 100px;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea .naviList {
  padding: 12px 0;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea .naviList .naviLink {
  color: #ffffff;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .globalNavWrap .globalNav .globalNavInner .naviListArea {
    padding: 100px 0 40px 0;
  }
  .globalNavWrap .globalNav .globalNavInner .naviListArea .naviList {
    padding: 12px 0 12px 0px;
  }
}
body.navOn .globalNavWrap {
  pointer-events: all;
}
body.navOn .globalNavWrap .globalNav {
  width: min(90vw, 320px);
}

.secFooter {
  background: #1F2E2A;
  text-align: center;
}
.secFooter .secFooterIn .footerTop {
  color: #ffffff;
  font-weight: 600;
  line-height: 180%;
}
.secFooter .secFooterIn .telHead {
  color: #ffffff;
  font-weight: 600;
}
.secFooter .secFooterIn .telNum {
  display: flex;
  justify-content: center;
  align-items: center;
}
.secFooter .secFooterIn .telNum .icon {
  color: #ffffff;
}
.secFooter .secFooterIn .telNum .num {
  color: #ffffff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 110%;
}
.secFooter .secFooterIn .timeRow {
  color: #ffffff;
}
.secFooter .secFooterIn .timeRow .text01 {
  font-weight: bold;
}
.secFooter .secFooterIn .timeRow .text02 {
  font-weight: bold;
}
.secFooter .secFooterIn .note {
  color: #ffffff;
  font-weight: bold;
}
.secFooter .secFooterIn .btnWrap {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.secFooter .secFooterIn .btnWrap .btnContact {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #ffffff;
}
.secFooter .secFooterIn .btnWrap .btnContact .text {
  color: #1F2E2A;
  font-weight: bold;
}
.secFooter .secFooterIn .btnWrap .btnContact .icon {
  background: url(../images/arrow_deepgreen_right.svg) center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 10px;
}
.secFooter .secFooterIn .operate {
  color: #ffffff;
}
.secFooter .policy {
  border-top: solid 1px #ffffff;
}
.secFooter .policy .policyText {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .secFooter {
    padding: 40px 0 14px 0;
  }
  .secFooter .secFooterIn .footerTop {
    font-size: clamp(14px, 3.85vw, 15px);
    padding: 0 0 24px 0;
  }
  .secFooter .secFooterIn .telHead {
    font-size: clamp(14px, 4.36vw, 17px);
    padding: 0 0 4px 0;
  }
  .secFooter .secFooterIn .telNum {
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding-bottom: 10px;
  }
  .secFooter .secFooterIn .telNum .num {
    font-size: clamp(17px, 7.18vw, 28px);
  }
  .secFooter .secFooterIn .timeRow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    font-size: 14px;
    padding: 0 0 4px 0;
  }
  .secFooter .secFooterIn .note {
    font-size: 14px;
  }
  .secFooter .secFooterIn .btnWrap {
    padding: 40px 0 0px 0;
  }
  .secFooter .secFooterIn .btnWrap .btnContact {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding: 24px 16px;
  }
  .secFooter .secFooterIn .btnWrap .btnContact .text {
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .secFooter .secFooterIn .operate {
    padding: 56px 0 16px 0;
  }
  .secFooter .secFooterIn .operate .text01 {
    padding: 0 0 10px 0;
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .secFooter .secFooterIn .operate .text02 {
    font-size: 13px;
  }
  .secFooter .policy {
    padding: 14px 0 0 0;
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .secFooter {
    padding: 52px 0 14px 0;
  }
  .secFooter .secFooterIn .footerTop {
    font-size: clamp(14px, 1.5vw, 18px);
    padding: 0 0 24px 0;
  }
  .secFooter .secFooterIn .telHead {
    font-size: clamp(14px, 1.67vw, 20px);
    padding: 0 0 12px 0;
  }
  .secFooter .secFooterIn .telNum {
    -moz-column-gap: 14px;
         column-gap: 14px;
    padding-bottom: 2px;
  }
  .secFooter .secFooterIn .telNum .num {
    font-size: clamp(22px, 3vw, 36px);
  }
  .secFooter .secFooterIn .timeRow {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
    font-size: clamp(14px, 1.25vw, 15px);
    padding: 10px 0 4px 0;
  }
  .secFooter .secFooterIn .note {
    font-size: clamp(14px, 1.25vw, 15px);
  }
  .secFooter .secFooterIn .btnWrap {
    padding: 56px 0 0px 0;
  }
  .secFooter .secFooterIn .btnWrap .btnContact {
    -moz-column-gap: 18px;
         column-gap: 18px;
    padding: 24px 30px;
  }
  .secFooter .secFooterIn .btnWrap .btnContact .text {
    font-size: clamp(14px, 1.5vw, 18px);
  }
  .secFooter .secFooterIn .operate {
    padding: 60px 0 16px 0;
  }
  .secFooter .secFooterIn .operate .text01 {
    padding: 0 0 6px 0;
    font-size: clamp(14px, 1.33vw, 16px);
  }
  .secFooter .secFooterIn .operate .text02 {
    font-size: clamp(14px, 1.17vw, 14px);
  }
  .secFooter .policy {
    padding: 14px 0 0 0;
  }
}
.commonTitleArea .pageTitle .titleJp {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.commonTitleArea .pageTitle .titleEn {
  color: #37826D;
  font-weight: 500;
}
.commonTitleArea .pnkzArea {
  font-weight: 500;
  text-align: right;
}
.commonTitleArea .pnkzArea .pnkzList {
  color: #969696;
}
.commonTitleArea .pnkzArea a.pnkzList {
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .commonTitleArea {
    padding: 72px 0 24px 0;
  }
  .commonTitleArea .pageTitle .titleJp {
    font-size: clamp(14px, 6.15vw, 24px);
  }
  .commonTitleArea .pageTitle .titleEn {
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .commonTitleArea .pnkzArea {
    padding: 12px 0 0px 0;
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  .commonTitleArea {
    padding: 124px 0 24px 0;
  }
  .commonTitleArea .pageTitle .titleJp {
    font-size: clamp(19px, 2.67vw, 32px);
    padding: 0 0 8px 0;
  }
  .commonTitleArea .pageTitle .titleEn {
    font-size: clamp(14px, 1.25vw, 15px);
  }
  .commonTitleArea .pnkzArea {
    padding: 24px 0 0px 0;
    font-size: 12px;
  }
}
/*---------------------------------------------
エラー系テキスト
---------------------------------------------*/
.commonErrorText {
  line-height: 200%;
  text-align: justify;
}
.commonErrorText a {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .commonErrorText {
    font-size: clamp(14px, 4.62vw, 18px);
  }
}
@media only screen and (min-width: 768px) {
  .commonErrorText {
    font-size: clamp(14px, 1.83vw, 22px);
  }
}
.commonNewsListWrap .newsList {
  border-bottom: solid 1px #969696;
  background: url(../images/arrow_green_right.svg) right bottom no-repeat;
  background-size: 15px;
}
.commonNewsListWrap .newsList .topRow .date {
  color: #969696;
  font-weight: bold;
}
.commonNewsListWrap .newsList .topRow .title .titleLink {
  color: #37826D;
  line-height: 120%;
  text-decoration: underline;
  font-weight: 600;
}
.commonNewsListWrap .newsList .detailRow {
  line-height: 170%;
}
.commonNewsListWrap .newsList .detailRow * {
  line-height: 170%;
}

@media only screen and (max-width: 767px) {
  .commonNewsListWrap .newsList {
    padding: 16px clamp(36px, 4.9%, 48px) 16px 0;
    background-position: right bottom 22px;
  }
  .commonNewsListWrap .newsList .topRow {
    padding: 0 0 8px 0;
  }
  .commonNewsListWrap .newsList .topRow .date {
    font-size: 13px;
  }
  .commonNewsListWrap .newsList .topRow .title .titleLink {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .commonNewsListWrap .newsList .detailRow {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .commonNewsListWrap .newsList {
    padding: 24px clamp(36px, 4.9%, 48px) 24px 0;
    background-position: right bottom 31px;
  }
  .commonNewsListWrap .newsList .topRow {
    display: flex;
    align-items: center;
    padding: 0 0 24px 0;
  }
  .commonNewsListWrap .newsList .topRow .date {
    width: 90px;
    font-size: 13px;
  }
  .commonNewsListWrap .newsList .topRow .title {
    width: calc(100% - 90px);
  }
  .commonNewsListWrap .newsList .topRow .title .titleLink {
    font-size: clamp(14px, 1.5vw, 18px);
  }
  .commonNewsListWrap .newsList .detailRow {
    font-size: clamp(14px, 1.25vw, 15px);
  }
}
.commonListNone {
  background-color: #F0F7FB;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .commonListNone {
    padding: 24px 0;
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
@media print, screen and (min-width: 768px) {
  .commonListNone {
    padding: 32px 0;
    font-size: clamp(14px, 1.5vw, 18px);
  }
}/*# sourceMappingURL=common.css.map */