body {
  font-family: "Zen Maru Gothic", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  font-weight: 400;
}

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

body * {
  letter-spacing: 0.02em;
  line-height: 145%;
}

#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(88vw, 1050px);
  }
  .wrapWidth {
    width: min(96vw, 1246px);
  }
  .commonWidthPc {
    width: min(88vw, 1050px);
    margin: 0 auto;
  }
  .contentArea {
    padding-top: 200px;
  }
  .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: #4BB8CE;
  width: 100%;
}
.commonBtn .text {
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
}
.commonBtn .arrow {
  background: url(../images/btn_arrow.svg?001) 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%;
}
.secHeader.under {
  background: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 767px) {
  .secHeader {
    height: 74px;
    display: flex;
    align-items: center;
  }
  .secHeader .secHeaderIn {
    padding: 0 12px;
  }
  .secHeader .secHeaderIn .headerLogo {
    width: 100px;
  }
}
@media print, screen and (min-width: 768px) {
  .secHeader {
    height: 100px;
    display: flex;
    align-items: center;
  }
  .secHeader .secHeaderIn {
    padding: 0 30px;
  }
}
.menuBtnWrap {
  position: fixed;
  z-index: 200;
}
.menuBtnWrap .menuBtn {
  background: transparent;
  position: relative;
  cursor: pointer;
  background: #ffffff;
  border-radius: 100px;
}
.menuBtnWrap .menuBtn span {
  position: absolute;
  display: block;
  height: 3px;
  right: 17.5px;
  background: #97CDD8;
  transition: 0.4s;
}
.menuBtnWrap .menuBtn span:nth-of-type(1) {
  top: 37%;
}
.menuBtnWrap .menuBtn span:nth-of-type(2) {
  top: 50%;
}
.menuBtnWrap .menuBtn span:nth-of-type(3) {
  top: 64%;
}

@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(7px) rotate(-45deg);
  }
  body.navOn .menuBtnWrap .menuBtn span:nth-of-type(2) {
    opacity: 0;
  }
  body.navOn .menuBtnWrap .menuBtn span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
}
@media print, screen and (min-width: 768px) {
  .menuBtnWrap {
    top: 17px;
    right: 30px;
  }
  .menuBtnWrap .menuBtn {
    width: 65px;
    height: 65px;
  }
  .menuBtnWrap .menuBtn span {
    width: 30px;
    right: 17.5px;
  }
  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);
  }
}
.headInstaBtn {
  position: fixed;
  z-index: 200;
}

@media only screen and (max-width: 767px) {
  .headInstaBtn {
    top: 22px;
    right: 84px;
  }
}
@media print, screen and (min-width: 768px) {
  .headInstaBtn {
    top: 36px;
    right: 120px;
  }
}
.globalNavWrap {
  pointer-events: none;
}
.globalNavWrap .globalNav {
  background: #4BB8CE;
  max-height: 100vh;
}
.globalNavWrap .globalNav .globalNavInner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: clamp(40px, 10vh, 60px) 0 40px 0;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.globalNavWrap .globalNav .globalNavInner .naviListArea .naviList {
  padding: min(1.5vh, 14px) 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);
}

.commonTitleArea .titleEn {
  color: #97CDD8;
}
.commonTitleArea .titleJp {
  color: #000000;
}
.commonTitleArea .pnkzArea {
  border-top: solid 1px #EAEAEA;
  text-align: right;
}
.commonTitleArea .pnkzArea .pnkzList {
  color: #000000;
}
.commonTitleArea .pnkzArea a.pnkzList {
  color: #B9B9B9;
}
.commonTitleArea .pnkzArea .pnkzArrow {
  color: #B9B9B9;
}

@media only screen and (max-width: 767px) {
  .commonTitleArea .titleEn {
    font-size: 14px;
    padding: 0 0 4px 0;
  }
  .commonTitleArea .titleJp {
    font-size: clamp(14px, 5.64vw, 22px);
    padding: 0 0 24px 0;
  }
  .commonTitleArea .pnkzArea {
    font-size: 14px;
    padding: 16px 0 56px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .commonTitleArea .titleEn {
    font-size: clamp(14px, 1.11vw, 16px);
    padding: 0 0 0px 0;
  }
  .commonTitleArea .titleJp {
    font-size: clamp(24px, 2.78vw, 40px);
    padding: 0 0 36px 0;
  }
  .commonTitleArea .pnkzArea {
    font-size: 14px;
    padding: 16px 0 72px 0;
  }
}
.secFooter .secFooterIn {
  margin: 0 auto;
}
.secFooter .secFooterIn .copyright {
  border-top: solid 1px #000000;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .secFooter {
    padding-bottom: 90px;
  }
  .secFooter .secFooterIn {
    width: min(90vw, 390px);
  }
  .secFooter .secFooterIn .copyright {
    padding: 20px 0;
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .secFooter {
    padding-bottom: 70px;
  }
  .secFooter .secFooterIn {
    width: min(96vw, 1246px);
  }
  .secFooter .secFooterIn .copyright {
    padding: 28px 0;
    font-size: clamp(14px, 1.04vw, 15px);
  }
}
.footerFollowArea {
  position: fixed;
  z-index: 60;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #4BB8CE;
}
.footerFollowArea .areaIn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.footerFollowArea .areaIn .textCol {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerFollowArea .areaIn .textCol .text {
  line-height: 1.3;
  font-weight: bold;
  color: #ffffff;
}
.footerFollowArea .areaIn .textCol .arrow {
  background: url(../images/btn_arrow.svg?001) center center;
  background-size: contain;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 767px) {
  .footerFollowArea {
    height: 90px;
  }
  .footerFollowArea .areaIn .priceCol {
    margin: -14px auto 0 auto;
    text-align: center;
    width: 180px;
    padding: 0 0 4px 0;
  }
  .footerFollowArea .areaIn .textCol {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  .footerFollowArea .areaIn .textCol .text {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .footerFollowArea .areaIn .textCol .arrow {
    width: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .footerFollowArea {
    height: 70px;
  }
  .footerFollowArea .areaIn {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .footerFollowArea .areaIn .priceCol {
    margin-top: -14px;
  }
  .footerFollowArea .areaIn .textCol {
    -moz-column-gap: 27px;
         column-gap: 27px;
  }
  .footerFollowArea .areaIn .textCol .text {
    font-size: 22px;
  }
  .footerFollowArea .areaIn .textCol .arrow {
    width: 40px;
  }
}
.commonCtaArea {
  position: relative;
  background: url(../images/cta_bg.jpg?002) center center no-repeat;
  background-size: cover;
}
.commonCtaArea .topBalloon {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.commonCtaArea .bgText {
  position: absolute;
  z-index: 0;
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 900;
  color: #ffffff;
  opacity: 0.4;
  letter-spacing: -0.01em;
  line-height: 1;
}
.commonCtaArea .ctaMain {
  position: relative;
  z-index: 1;
}
.commonCtaArea .ctaMain .pointCol .pointList .listItem {
  background: #ffffff;
  border-radius: 10px;
}
.commonCtaArea .ctaMain .pointCol .btnWrap {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .commonCtaArea {
    border-radius: 20px;
  }
  .commonCtaArea .topBalloon {
    width: min(90%, 320px);
    top: -20px;
  }
  .commonCtaArea .bgText {
    font-size: clamp(36px, 15.38vw, 60px);
    left: -0.1em;
    top: 0.25em;
  }
  .commonCtaArea .ctaMain {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 auto;
    padding: 60px 0 32px 0;
    row-gap: 20px;
    width: min(94%, 320px);
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem {
    padding: 12px 16px;
    margin-bottom: 12px;
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem:last-of-type {
    margin-bottom: 20px;
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem .title {
    padding: 0 0 12px 0;
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem .content {
    text-align: center;
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem .content img {
    max-height: 80px;
  }
  .commonCtaArea .ctaMain .pointCol .btnWrap {
    padding: 10px 0 0 0;
    width: min(100%, 300px);
  }
  .commonCtaArea .ctaMain .imgCol {
    width: min(100%, 260px);
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 768px) {
  .commonCtaArea {
    border-radius: 40px;
  }
  .commonCtaArea .topBalloon {
    width: min(55%, 518px);
    top: -40px;
  }
  .commonCtaArea .bgText {
    font-size: min(14.62vw, 190px);
    left: -0.1em;
    top: -0.18em;
  }
  .commonCtaArea .ctaMain {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: min(94%, 1086px);
    margin: 0 auto;
    padding: min(5.5vw, 70px) 0 min(4vw, 50px) 0;
  }
  .commonCtaArea .ctaMain .pointCol {
    width: min(68%, 720px);
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: min(1.5vw, 20px) 6.6%;
    margin-bottom: 15px;
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem:last-of-type {
    margin-bottom: 10px;
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem .title {
    width: 48%;
    text-align: left;
  }
  .commonCtaArea .ctaMain .pointCol .pointList .listItem .content {
    width: 48%;
    text-align: right;
  }
  .commonCtaArea .ctaMain .pointCol .btnWrap {
    padding: 10px 0 0 0;
    width: min(90%, 360px);
  }
  .commonCtaArea .ctaMain .imgCol {
    width: min(30%, 310px);
  }
}/*# sourceMappingURL=common.css.map */