@charset "UTF-8";
/*---------------------------------------
  リセット
/*---------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  width: 100%;
  line-height: 1.6;
  font-family: YakuHanJP_Noto, "Noto Sans JP", sans-serif;
  font-weight: 400;
  /* safari hover対策 */
  font-variant-numeric: tabular-nums;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

mark {
  color: #000;
  font-weight: bold;
  font-style: italic;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

li {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select {
  vertical-align: middle;
}

img {
  line-height: 1;
  vertical-align: bottom;
}

button {
  padding: 0;
  border: none;
  outline: none;
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  z-index: 1;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

.sp {
  display: none !important;
}

.sp_inline {
  display: none;
}

.pc_inline {
  display: inline;
}

/*---------------------------------------
  common
/*---------------------------------------*/
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
  img {
    width: 100%;
    height: auto;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc_inline {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    overflow: hidden;
    max-width: 100vw;
  }
}
@font-face {
  font-family: "Terass Sans Japanese";
  src: url("./font/TerassSansJapanese-Medium.woff") format("woff");
}
@font-face {
  font-family: "Terass Sans Japanese bold";
  src: url("./font/TerassSansJapanese-Bold.woff") format("woff");
}
@font-face {
  font-family: "Terass Sans Japanese light";
  src: url("./font/TerassSansJapanese-Light.woff") format("woff");
}
img {
  width: 100%;
}

/*---------------------------------------
LP
/*---------------------------------------*/
body {
  background: var(--background-semiLightGray, #f1f1f1);
}

.page_wrap {
  width: 375px;
  margin: 0 auto;
  color: var(--TextBlack, #213544);
}
@media screen and (max-width: 768px) {
  .page_wrap {
    width: 100vw;
  }
}

.page_wrap .cv_btn {
  display: flex;
  width: 343px;
  margin: 0 auto;
  padding: 12px 16px 12px 16px;
  gap: 4px;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  line-height: normal;
  font-family: "Terass Sans Japanese";
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  background: var(--Yellow-60, #20bbba);
  align-self: stretch;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.6s;
}

.page_wrap .cv_btn a {
  position: relative;
  top: -3px;
}

.page_wrap .cv_btn:hover {
  opacity: 0.6 !important;
}

.page_wrap .cv_btn small {
  color: var(--White, #fff);
  line-height: 14px;
  font-size: 16px;
  font-style: normal;
  position: relative;
  top: -3px;
}

@media screen and (max-width: 768px) {
  .page_wrap .cv_btn {
    height: 19.4666666667vw;
    width: 91.4666666667vw;
    gap: 1.0666666667vw;
    border-radius: 2.1333333333vw;
    box-shadow: 0px 0.5333333333vw 1.6vw 0px rgba(0, 0, 0, 0.2);
    font-size: 6.6vw;
  }

  .page_wrap .cv_btn small {
    font-size: 4.3vw;
  }

  .page_wrap .cv_btn a {
    top: -8px;
  }
}

.page_wrap .top_btn {
  position: relative;
  top: -20px;
}

.page_wrap .fixed_btn {
  visibility: visible;
  position: fixed;
  bottom: 16px;
  left: 50%;
  opacity: 1;
  transition: 0.4s;
  transform: translateX(-50%);
  z-index: 1000;
}

.page_wrap .fixed_btn.is-hidden {
  visibility: hidden;
  bottom: 4vw;
  opacity: 0;
}

.page_wrap header {
  display: flex;
  padding: 18px 16px;
  border-bottom: 1px solid var(--Terass-UI-Border-Gray, #e2e8f0);
  background: var(--White, #fff);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

@media screen and (max-width: 768px) {
  .page_wrap header {
    padding: 4.8vw 4.2666666667vw;
  }
}

/*---------------------------------------
  point-title-banner
/*---------------------------------------*/

.point-section {
  background-color: #e4ded2;
}

.point-title-banner {
  background-color: #2d3748;
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-radius: 16px 16px 0 0;
  text-align: center;
  align-items: center;
  gap: 8px;
  top: -10px;
}

.point-number {
  font-family: "Terass Sans Japanese";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-flex;
  line-height: 150%;
  letter-spacing: -3%;
  text-align: center;
  vertical-align: middle;
}

.main-banner-title {
  font-family: "Terass Sans Japanese";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.point-content-area {
  background-color: #e4ded2;
  padding: 24px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.point-subheading {
  font-family: "Terass Sans Japanese";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  text-align: center;
  vertical-align: middle;
  margin: 0 4px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .main-banner-title {
    font-size: 7vw;
  }
  
  .point-subheading {
    font-size: 5.4vw;
  }

  .point-number {
    font-size: 4.6vw;
  }
}

/*---------------------------------------
  about-terass-section
/*---------------------------------------*/
.about-terass-section {
  background-color: #fff;
  text-align: center;
  padding: 48px 16px;
  gap: 10px;
  border-radius: 8px;
  border-width: 1px;
}

.media-image {
  margin-top: 36px;
}

.consultation-promo-container {
  gap: 24px;
  margin-top: 36px;
  background-color: #f1f6fb;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.promo-title-cps {
  font-family: "Terass Sans Japanese";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #333;
  gap: 16px;
  margin-bottom: 24px;
  white-space: nowrap;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.consultation-service-link-cps {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #333;
  border-radius: 36px;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
  margin: 24px 0 8px;
  line-height: 150%;
  vertical-align: middle;
}

.consultation-service-link-cps:hover {
  background-color: #333;
  color: #fff;
}

.promo-box {
  background-color: #fff;
  margin-bottom: 16px;
}

.promo-box a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  border: 1px solid #333;
  border-radius: 36px;
  padding: 6px 12px 8px 12px;
  margin: 16px;
  white-space: nowrap;
  line-height: 150%;
}

.promo-box a:hover {
  background-color: #333;
  color: #fff;
}

.promo-text {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .promo-title-cps {
    font-size: 4.2vw;
  }

  .consultation-service-link-cps {
    font-size: 3.8vw;
  }

  .promo-text {
    font-size: 3.6vw;
  }

  .youtube-channel-link-cps {
    font-size: 3.4vw;
  }
}

/*---------------------------------------
  final-cta-section
/*---------------------------------------*/
.final-cta-section {
  background-color: #e7ecec;
  padding: 24px 16px;
  text-align: center;
}

.main-catchphrase-fcs {
  font-family: "Terass Sans Japanese";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  gap: 8px;
  margin-bottom: 36px;
}

.paper_image {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .main-catchphrase-fcs {
    font-size: 8.2vw;
    line-height: 10vw;
  }
}

/*---------------------------------------
  footer
/*---------------------------------------*/
footer {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 3vw 6.4vw;
  }
}
footer .footer_linkWrap {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer_linkWrap {
    margin-bottom: 2.6666666667vw;
  }
}
footer .footer_linkWrap a {
  padding: 0 5px;
  color: #2d3748;
  line-height: 150%;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  footer .footer_linkWrap a {
    padding: 0 1.3333333333vw;
    font-size: 3.2vw;
  }
}
footer .copyright {
  color: #2d3748;
  line-height: 150%;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 3.2vw;
  }
}