@charset "UTF-8";
/*
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:where([hidden]:not([hidden="until-found"])) {
	display: none !important;
}

:where(html) {
	-webkit-text-size-adjust: none;
	color-scheme: dark light;
	tab-size: 2;
	scrollbar-gutter: stable;
	interpolate-size: allow-keywords;
	line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
	overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) {
		scroll-behavior: smooth;
	}
}

:where(body) {
	line-height: inherit;
	font-family: system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

:where(button) {
	all: unset;
}

:where(input, button, textarea, select) {
	font: inherit;
	color: inherit;
	letter-spacing: inherit;
	word-spacing: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
}

:where(textarea) {
	resize: vertical;
	resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
	cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + :disabled)) {
	cursor: not-allowed;
}

:where(a) {
	color: inherit;
	text-underline-offset: 0.2ex;
}

:where(ul, ol) {
	list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

:where(img, picture, svg, video) {
	max-inline-size: 100%;
	block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

:where(h1, h2, h3) {
	line-height: calc(1em + 0.5rem);
	text-wrap: balance;
}

:where(hr) {
	border: none;
	border-block-start: 1px solid;
	color: inherit;
	block-size: 0;
	overflow: visible;
}

:where(dialog, [popover]) {
	border: none;
	background: none;
	color: inherit;
	inset: unset;
	max-width: unset;
	max-height: unset;
	overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
	display: none !important;
}

:where(:focus-visible) {
	outline: 3px solid CanvasText;
	box-shadow: 0 0 0 5px Canvas;
	outline-offset: 1px;
}

:where(:focus-visible, :target) {
	scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
	clip-path: inset(50%) !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	white-space: nowrap !important;
	border: 0 !important;
	user-select: none !important;
}

*/
/******************************
mixin
******************************/
/******************************
バリアブル
******************************/
/******************************
ベース
******************************/
:root {
  /* layput vars */
  --aside-w: 0px;
  --gap-x: 0px; /* 列間ギャップが必要なら */
  /* header vars */
  --header-h: 74px;
  /* spacing vars */
  --inner-p: 15px; /* 既定 padding */
  --inner-m: 15; /* 既定 margin */
  --inner-max: 560px; /* sp画面幅大の時用 仮*/
}

@media screen and (min-width: 768px) {
  :root {
    /* layput vars */
    --aside-w: 0px;
    --gap-x: 0px;
    /* header vars */
    --header-h: 74px; /* 仮 */
    /* spacing vars */
    --inner-p: 32px; /* 既定 padding  仮*/
    --inner-max: 844px; /* 画面幅大の時用 仮*/
  }
}
@media screen and (min-width: 1024px) {
  :root {
    /* layput vars */
    --aside-w: 0px;
    --gap-x: 0px;
    /* header vars */
    --header-h: 98px;
    /* spacing vars */
    --inner-p: 57px; /* 既定 padding */
    --inner-max: 1166px; /* PC画面幅大の時用 仮*/
  }
}
html, body {
  overscroll-behavior: none;
}

html {
  font-size: 16;
  scroll-padding-top: var(--header-h);
}

body {
  min-width: 320px;
  width: 100%;
  margin: 0;
  background: #fff;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-autospace: no-autospace;
  text-spacing-trim: space-all;
}
body.is-scrollLock {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6, p, figure {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 400;
}

ul, ol {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

*:focus {
  scroll-margin-top: var(--header-h);
}

/******************************
インナー
******************************/
.l-inner {
  width: 100%;
  padding-inline: var(--inner-p);
  max-width: calc(var(--inner-max) + var(--inner-p) * 2);
  margin-inline: auto;
}

.l-inner--voices {
  width: 100%;
  padding-inline: var(--inner-p);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .l-inner--voices {
    max-width: calc(57rem + var(--inner-p) * 2);
  }
}

.l-inner--flow {
  width: 100%;
  padding-inline: 0.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner--flow {
    padding-inline: var(--inner-p);
  }
}
@media screen and (min-width: 1024px) {
  .l-inner--flow {
    max-width: calc(61.5rem + var(--inner-p) * 2);
  }
}

.l-inner--cta {
  width: 100%;
  max-width: 36.875rem;
  padding-inline: var(--inner-p);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner--cta {
    max-width: calc(61.5rem + var(--inner-p) * 2);
  }
}

/******************************
ボタン
******************************/
.c-logo {
  font-family: Orbitron;
  font-size: clamp(1.5rem, 1.2928176796rem + 0.8839779006vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

/******************************
ナビゲーションメニュー
******************************/
.c-nav-menu {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .c-nav-menu {
    flex-direction: row;
    justify-content: space-between;
    gap: clamp(1.25rem, -23rem + 37.890625vw, 7.3125rem);
  }
}
.c-nav-menu__lead {
  color: #fff;
  margin-bottom: 2.21875rem;
}
@media screen and (min-width: 1024px) {
  .c-nav-menu__lead {
    display: none;
  }
}
.c-nav-menu__list {
  margin-bottom: 2.40625rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  line-height: 1;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 1024px) {
  .c-nav-menu__list {
    margin-bottom: 0;
    flex-direction: row;
    gap: clamp(0.75rem, -5.25rem + 9.375vw, 2.25rem);
    font-weight: 700;
    border: none;
  }
}
.c-nav-menu__item {
  flex-shrink: 0;
}
.c-nav-menu__link {
  display: block;
  width: 100%;
  padding-block: 1.15625rem;
  padding-inline: 0.625rem;
  color: inherit;
  border-bottom: 1px solid #fff;
  transition: opacity 0.2s;
}
@media screen and (min-width: 1024px) {
  .c-nav-menu__link {
    padding-block: 0;
    padding-inline: 0;
    border: none;
  }
}
.c-nav-menu__link:hover {
  opacity: 0.7;
}
.c-nav-menu__action {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .c-nav-menu__action {
    display: none;
  }
}

/******************************
ボタン
******************************/
.c-button {
  display: inline-block;
  padding: clamp(1rem, 0.9741022099rem + 0.1104972376vw, 1.0625rem) clamp(1.5rem, 1.1115331492rem + 1.6574585635vw, 2.4375rem);
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 1.5625rem;
  transition: all 0.3s ease;
  border-radius: 999px;
  box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.25);
}
.c-button:hover {
  transform: translateY(-0.25rem);
}

.c-button--white {
  color: #075735;
  background: #fff;
}

.c-button--orange {
  color: #fff;
  background: linear-gradient(90deg, #FF8A00 0%, #E9A012 100%);
}

.c-button--green {
  color: #fff;
  background: linear-gradient(270deg, #075735 0%, #00BA6B 100%);
}

/******************************
ハンガーガーメニュー
******************************/
.c-hamburger {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 1200;
}
.c-hamburger__bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.75rem;
  height: 0.125rem;
  background-color: #fff;
  transition: transform 0.3s ease, top 0.3s ease;
}
.c-hamburger__bar:nth-child(1) {
  top: 0.3125rem;
}
.c-hamburger__bar:nth-child(2) {
  top: 0.9375rem;
}
.c-hamburger__text {
  position: absolute;
  bottom: 0.4375rem;
  left: 0;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1;
  transition: opacity 0.3s ease;
}

/* メニューオープン時 */
.p-header.is-menu-open .c-hamburger__bar {
  top: 0.9375rem;
}
.p-header.is-menu-open .c-hamburger__bar:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
}
.p-header.is-menu-open .c-hamburger__bar:nth-child(2) {
  transform: translateX(-50%) rotate(-45deg);
}
.p-header.is-menu-open .c-hamburger__text {
  opacity: 0;
}

/******************************
トップ セクションタイトル
******************************/
.c-section-ttl {
  padding-block: 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.c-section-ttl__head {
  color: #00331d;
  font-family: "Roboto Condensed";
  font-size: clamp(0.75rem, 0.46875rem + 0.5859375vw, 0.9375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .c-section-ttl__head {
    margin-bottom: 0.5625rem;
  }
}
.c-section-ttl__body {
  font-size: clamp(1.5rem, 0.375rem + 2.34375vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-section-ttl__body {
    line-height: 1;
    margin-bottom: 1.125rem;
  }
}
.c-section-ttl::after {
  display: block;
  content: "";
  width: 3.125rem;
  height: 0.125rem;
  border-bottom: 2px solid #00331d;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-section-ttl::after {
    width: 4.375rem;
  }
}

/******************************
こんなお悩みはありませんか カード
******************************/
.c-questionnaire-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-questionnaire-card__ttl {
  display: inline-block;
  padding: 0.4375rem 0.5625rem;
  margin-bottom: 0.4375rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  background-color: #333;
}
.c-questionnaire-card__img {
  width: 100%;
  height: auto;
  margin-bottom: 1.1875rem;
}
.c-questionnaire-card__lead {
  font-size: clamp(1.125rem, 1.0732044199rem + 0.2209944751vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.6875rem;
}
.c-questionnaire-card__text {
  font-size: 0.875rem;
}

/******************************
TENSAKUが誇る5つの特徴 アイテム
******************************/
.c-features-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 64rem;
}
@media screen and (min-width: 768px) {
  .c-features-item {
    flex-direction: row;
  }
}
.c-features-item__body {
  position: relative;
  padding-block: 3rem 2rem;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-features-item__body {
    flex-basis: 55%;
    padding-block: clamp(1.25rem, -6.15625rem + 15.4296875vw, 6.1875rem) 1.3125rem;
    padding-left: clamp(3rem, 2.15625rem + 1.7578125vw, 3.5625rem);
  }
}
@media screen and (min-width: 1024px) {
  .c-features-item__body {
    flex-basis: 43.26%;
  }
}
.c-features-item__num {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  color: #CBF7E6;
  font-weight: 700;
  font-size: clamp(3.75rem, 2.817679558rem + 3.9779005525vw, 6rem);
}
@media screen and (min-width: 768px) {
  .c-features-item__num {
    top: clamp(-2.5rem, -7.84375rem + 11.1328125vw, 1.0625rem);
  }
}
.c-features-item__text {
  position: relative;
  z-index: 10;
}
.c-features-item__ttl {
  display: block;
  font-size: clamp(1.25rem, 1.0428176796rem + 0.8839779006vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.875rem;
}
.c-features-item__img {
  flex-basis: 45%;
}
@media screen and (min-width: 1024px) {
  .c-features-item__img {
    flex-basis: 56.74%;
  }
}
.c-features-item__img > img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-features-item__img > img {
    padding-left: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-features-item:nth-child(odd) {
    flex-direction: row-reverse;
  }
}

/******************************
導入実績・利用者の声 カード
******************************/
.c-voice-card {
  width: 16.375rem;
  padding: 1.375rem 1.375rem 2.625rem;
  background-color: #fff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.c-voice-card__head {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}
.c-voice-card__icon {
  width: 3.5625rem;
  height: 3.5625rem;
  background-color: #F5F0C5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-voice-card__ttl {
  color: #00331d;
  font-weight: 700;
  line-height: 1.2;
  width: 9.375rem;
}
.c-voice-card__position {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.1875rem 0.3125rem;
  background-color: #FF8A00;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-voice-card__text {
  font-size: 0.875rem;
}

/******************************
ご利用の流れ　リスト
******************************/
.c-flow-list {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .c-flow-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-flow-list__item {
  display: flex;
  flex-direction: row;
  padding: 1.5rem 1.25rem 1.25rem 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-flow-list__item {
    flex-direction: column;
    padding: 1.6875rem 0.375rem 1.8125rem 1.25rem;
  }
}
.c-flow-list__item::after {
  position: absolute;
  bottom: -14px;
  left: 1.5625rem;
  z-index: 1;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: var(--sp-triangle-hlef, 27px) solid transparent;
  border-left: var(--sp-triangle-hlef, 27px) solid transparent;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-flow-list__item::after {
    bottom: auto;
    left: auto;
    top: 0;
    right: -14px;
    border-bottom: var(--pc-triangle-height, 107px) solid transparent;
    border-right: 0;
  }
}
.c-flow-list__item:first-child {
  background-color: #DAFFF1;
}
.c-flow-list__item:first-child::after {
  border-top: 14px solid #DAFFF1;
}
@media screen and (min-width: 768px) {
  .c-flow-list__item:first-child::after {
    border-top: var(--pc-triangle-height, 107px) solid transparent;
    border-left: 14px solid #DAFFF1;
  }
}
.c-flow-list__item:nth-child(2) {
  background-color: #A4FAD8;
}
.c-flow-list__item:nth-child(2)::after {
  border-top: 14px solid #A4FAD8;
}
@media screen and (min-width: 768px) {
  .c-flow-list__item:nth-child(2)::after {
    border-top: var(--pc-triangle-height, 107px) solid transparent;
    border-left: 14px solid #A4FAD8;
  }
}
.c-flow-list__item:nth-child(3) {
  background-color: #76F6C5;
}
.c-flow-list__item:nth-child(3)::after {
  border-top: 14px solid #76F6C5;
}
@media screen and (min-width: 768px) {
  .c-flow-list__item:nth-child(3)::after {
    border-top: var(--pc-triangle-height, 107px) solid transparent;
    border-left: 14px solid #76F6C5;
  }
}
.c-flow-list__item:last-child {
  background-color: #3AEFA2;
}
.c-flow-list__item:last-child::after {
  display: none;
}
.c-flow-list__step {
  text-transform: uppercase;
  color: #bbb;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.1875rem;
  padding-right: 1.4375rem;
}
.c-flow-list__ttl {
  color: #00331d;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-flow-list__ttl {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
  }
}
.c-flow-list__text {
  font-size: 0.875rem;
}
.c-flow-list__right {
  width: 12.5625rem;
}
@media screen and (min-width: 768px) {
  .c-flow-list__right {
    width: auto;
  }
}
.c-flow-list__br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-flow-list__br {
    display: inline;
  }
}

/******************************
料金プラン　リスト
******************************/
.c-price-card {
  width: 100%;
}
.c-price-card__head {
  padding-block: 2.625rem 2rem;
  background-color: #075735;
  border-radius: 20px 20px 0 0;
}
.c-price-card__body {
  padding-block: 2.1875rem 2.875rem;
  background-color: #F1F1F1;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-price-card__body {
    padding-inline: clamp(1.25rem, -2.1056231003rem + 6.990881459vw, 2.6875rem);
  }
}
.c-price-card__name {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  font-family: "Roboto Condensed";
  line-height: 1;
  margin-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .c-price-card__name {
    font-size: clamp(1.5rem, 1.1892265193rem + 1.3259668508vw, 2.25rem);
  }
}
.c-price-card__scope {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-price-card__scope {
    font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  }
}
.c-price-card__price {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 0.7;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .c-price-card__price {
    font-size: clamp(2.5rem, 0.625rem + 3.90625vw, 3.75rem);
  }
}
.c-price-card__price > span {
  font-size: 1.25rem;
}
.c-price-card__unit {
  line-height: 1;
  margin-bottom: 2.75rem;
}
.c-price-card__contents {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.8125rem;
}
.c-price-card__content {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.2px;
  text-align: center;
  padding-block: 0.84375rem;
  border-bottom: 2px solid #D9D9D9;
}
.c-price-card__content:last-child {
  border-bottom: none;
}
.c-price-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  background-color: #FF8A00;
  border-radius: 5px;
  width: 9.75rem;
  height: 2.875rem;
}

.c-price-card:nth-child(2) .c-price-card__head {
  background-color: #00BA6B;
  position: relative;
  overflow: hidden;
}
.c-price-card:nth-child(2) .c-price-card__ribbon {
  position: absolute;
  width: 172px;
  top: 32px;
  top: 32px;
  right: -54px;
  transform: rotate(45deg);
  transform-origin: top center;
  padding: 6px 42.166px 6px 39.338px;
  box-sizing: border-box;
  background-color: #FF8A00;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

/******************************
よくある質問　各アイテム
******************************/
.c-accordion {
  /* --------アコーディオンの中身のスタイル-------- */
}
.c-accordion__summary {
  padding: 0.75rem clamp(1rem, 0.6892265193rem + 1.3259668508vw, 1.75rem) 0.75rem clamp(1.25rem, 0.4730662983rem + 3.3149171271vw, 3.125rem);
  display: grid;
  grid-template-columns: 2.25rem 1fr 1.875rem;
  align-items: center;
  gap: clamp(1rem, 0.5856353591rem + 1.7679558011vw, 2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  background-color: #FF8A00;
}
.c-accordion__icon-q, .c-accordion__icon-a {
  align-self: start;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Condensed";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.c-accordion__icon-q {
  color: #FF8A00;
  background-color: #fff;
}
.c-accordion__icon-a {
  color: #fff;
  background-color: #FF8A00;
}
.c-accordion__icon-open-close {
  width: 1.875rem;
  height: 1.875rem;
  background-image: url(/img/icon_plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-accordion__content {
  overflow: hidden;
}
.c-accordion__content-inner {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  gap: clamp(1rem, 0.5856353591rem + 1.7679558011vw, 2rem);
  padding-block: 1.25rem 1.1875rem;
  padding-inline: clamp(1.25rem, 0.4989640884rem + 3.2044198895vw, 3.0625rem) clamp(2.875rem, 2.5901243094rem + 1.2154696133vw, 3.5625rem);
  background-color: #fff;
  border-color: #FF8A00;
  border-style: solid;
  border-width: 0 1px 1px 1px;
}

/* --------オープン時のアイコン変更-------- */
.c-accordion.is-opened .c-accordion__icon-open-close {
  background-image: url(/img/icon_minus.svg);
}

/******************************
Topへ戻るボタン
******************************/
.c-scroll-page-top {
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 12px;
  bottom: 12px;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  padding: 0;
}
.c-scroll-page-top.is-fadein {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-scroll-page-top {
    width: 5.5rem;
    height: 5.5rem;
  }
}
.c-scroll-page-top:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.25);
}
.c-scroll-page-top:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 3px;
}

/******************************
下層ページheroのスタイル
******************************/
.c-lower-hero {
  margin-top: 74px;
  padding-block: 4.25rem 4.25rem;
  background: linear-gradient(95deg, #00BA6B -0.71%, #075735 100%);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-lower-hero {
    margin-top: 98px;
    padding-block: 4.25rem 5.4375rem;
  }
}
.c-lower-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6875rem;
}
.c-lower-hero__ttl {
  padding: 0.625rem 0.9375rem;
  background-color: #fff;
  color: #075735;
  font-size: clamp(1.75rem, 1.4392265193rem + 1.3259668508vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}
.c-lower-hero__discription {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  max-width: 43.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-lower-hero__discription {
    width: 80%;
  }
}

.c-lower-hero--terms {
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .c-lower-hero--terms {
    padding-block: 7.1875rem;
  }
}

/******************************
下層のメインコンテンツ
******************************/
.c-lower-inner {
  background-color: #F7FFFC;
}

/******************************
ヘッダー
******************************/
.p-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-inline: var(--inner-p);
  /*メニューオープン時*/
}
.p-header__inner {
  padding-block: 1.0625rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .p-header__inner {
    max-width: var(--inner-max);
    padding-block: 1.5rem;
    gap: clamp(1.5rem, -4rem + 8.59375vw, 2.875rem);
  }
}
.p-header__logo {
  color: #fff;
  flex-shrink: 0;
}
.p-header__nav {
  flex-grow: 1;
  position: fixed;
  z-index: 900;
  background: linear-gradient(180deg, #00BA6B 0%, #075735 100%);
  padding: 1.4375rem 0.8125rem 3.3125rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: var(--header-h);
  right: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .p-header__nav {
    position: static;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform: none;
  }
}
.p-header__action {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-header__action {
    flex-shrink: 0;
    display: flex;
    gap: 0.625rem;
  }
}
.p-header__button {
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .p-header__button {
    display: none;
  }
}
.p-header.is-menu-open .p-header__nav {
  transform: translateX(0);
}
@media screen and (min-width: 1024px) {
  .p-header.is-menu-open .p-header__nav {
    transform: none;
  }
}

/*ヒーローを過ぎた時*/
.p-header.p-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: slideDown 0.3s ease-in-out;
          animation: slideDown 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.25);
}
.p-header.p-header--sticky .p-header__logo {
  color: #075735;
}
@media screen and (min-width: 1024px) {
  .p-header.p-header--sticky .c-nav-menu__link {
    color: #333;
  }
}
.p-header.p-header--sticky .c-hamburger__bar {
  background-color: #333;
}
.p-header.p-header--sticky .c-hamburger__text {
  color: #333;
}

/******************************
ヘッダー
******************************/
.p-footer {
  background: #F1F1F1;
}
.p-footer__inner {
  padding-block: 4.25rem 4.8125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4.0625rem;
    padding-inline: 7.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__logo {
    margin-bottom: 1.625rem;
  }
}
.p-footer__logo > a {
  color: #075735;
}
.p-footer__copyright--pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-footer__copyright--pc {
    display: block;
    font-size: 0.75rem;
    line-height: 1;
    width: 16.3125rem;
  }
}
.p-footer__menu {
  width: 100%;
  max-width: 17.6875rem;
}
@media screen and (min-width: 1024px) {
  .p-footer__menu {
    max-width: none;
  }
}
.p-footer__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-footer__list {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.125rem 2.25rem;
  }
}
.p-footer__item {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-footer__item {
    width: auto;
  }
}
.p-footer__link {
  display: block;
  width: 100%;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 700;
  line-height: 1;
  padding-block: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-footer__link {
    padding-block: 0;
    width: auto;
  }
}
.p-footer__buttons {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 17.6875rem;
  gap: 1.1875rem;
}
@media screen and (min-width: 1024px) {
  .p-footer__buttons {
    width: auto;
  }
}
.p-footer__copyright--sp {
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-footer__copyright--sp {
    display: none;
  }
}

/******************************
ヒーロー
******************************/
.p-hero {
  position: relative;
  padding-block: var(--header-h) 1.25rem;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-hero {
    padding-block: var(--header-h) 1.9375rem;
  }
}
.p-hero__inner {
  width: 100%;
  margin-inline: auto;
}
.p-hero__bg {
  position: absolute;
  top: calc(-1 * clamp(8.75rem, -0.6394453005rem + 40.061633282vw, 25rem));
  left: calc(-1 * clamp(11.25rem, 10.5277349769rem + 3.0816640986vw, 12.5rem));
  z-index: -1;
  display: block;
  width: clamp(28.9375rem, 9.5446841294rem + 82.7426810478vw, 62.5rem);
  height: clamp(60rem, 33.2761941448rem + 114.0215716487vw, 106.25rem);
  transform: rotate(33.854deg);
  background: linear-gradient(180deg, #00BA6B 0%, #075735 100%);
}
@media screen and (min-width: 1024px) {
  .p-hero__bg {
    top: 0;
    left: 0;
    width: 66.3%;
    height: auto;
    aspect-ratio: 85/130;
    transform: none;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
            clip-path: polygon(0 0, 0% 100%, 100% 0);
  }
}
.p-hero__main {
  padding-inline: var(--inner-p);
  margin-top: 0.875rem;
  max-width: var(--inner-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-hero__main {
    max-width: 35rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero__main {
    max-width: 72.6875rem;
    margin-top: 2.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}
.p-hero__text {
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-hero__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: none;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.p-hero__img--pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-hero__img--pc {
    flex-shrink: 0;
    display: block;
    width: clamp(31.25rem, -18.5rem + 77.734375vw, 43.6875rem);
    height: auto;
  }
}
.p-hero__catchcopy {
  position: relative;
  display: block;
  color: #075735;
  font-size: clamp(0.875rem, 0.7196132597rem + 0.6629834254vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: clamp(0.75rem, 0.5333204931rem + 0.9244992296vw, 1.125rem) clamp(0.9375rem, 0.1430084746rem + 3.3898305085vw, 2.3125rem) clamp(0.75rem, 0.4972072419rem + 1.0785824345vw, 1.1875rem);
  background-color: #fff;
  border-radius: 25px;
}
.p-hero__catchcopy::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url(/img/img_triangle01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-40%) translateY(60%) rotate(60deg);
}
@media screen and (min-width: 1024px) {
  .p-hero__catchcopy::after {
    transform: translateX(-45%) translateY(58%) rotate(60deg);
  }
}
.p-hero__catchcopy > span {
  letter-spacing: -2px;
}
.p-hero__title {
  margin-top: clamp(1.4375rem, 1.1785220994rem + 1.1049723757vw, 2.0625rem);
  color: #fff;
  font-size: clamp(1.5rem, 1.0856353591rem + 1.7679558011vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-hero__title {
    margin-left: 0.1875rem;
  }
}
.p-hero__discription {
  margin-top: clamp(0.9375rem, 0.8857044199rem + 0.2209944751vw, 1.0625rem);
  color: #fff;
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-hero__discription {
    flex-grow: 1;
    margin-left: 0.1875rem;
  }
}
.p-hero__img--sp {
  margin-top: 0.6875rem;
  margin-inline: auto;
  width: 100%;
  max-width: 26.25rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__img--sp {
    display: none;
  }
}
.p-hero__action {
  margin-top: 1.8125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1875rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__action {
    margin-top: 4.8125rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.625rem;
  }
}
.p-hero__button {
  padding: 1.0625rem 5.875rem;
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__button {
    padding: 1.0625rem 2.4375rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero__button:first-child {
    color: #075735;
    background: #fff;
  }
}
.p-hero__slide {
  margin-top: 2.625rem;
}
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

/******************************
スライダー
******************************/
.p-slider {
  overflow: hidden;
}
.p-slider__viewport {
  overflow: hidden;
}
.p-slider__track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: slider-marquee 40s linear infinite;
          animation: slider-marquee 40s linear infinite;
}
.p-slider__slide {
  flex: 0 0 auto;
  margin-right: 24px;
}
@media (min-width: 1024px) {
  .p-slider__slide {
    margin-right: 44px;
  }
}
.p-slider__item {
  width: clamp(17.5rem, 15.9110169492rem + 6.7796610169vw, 20.25rem);
}
.p-slider__item > img {
  border-radius: 25px;
}
.p-slider > img {
  display: block;
  width: 100%;
  height: auto;
}

@-webkit-keyframes slider-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slider-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/******************************
こんなお悩みはありませんか
******************************/
.p-questionnaire {
  padding-bottom: 5.1875rem;
  background-color: #F7FFFC;
}
.p-questionnaire__ttl {
  margin-bottom: 2.4375rem;
}
.p-questionnaire__body {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.75rem 2.8125rem;
}
.p-questionnaire__card {
  flex-basis: 28.3%;
  max-width: 18.125rem;
  min-width: 15rem;
}

/******************************
コンセプト
******************************/
.p-consept {
  position: relative;
  background: linear-gradient(95deg, #00BA6B -0.71%, #075735 100%);
  padding-block: 5.375rem 1.5rem;
}
.p-consept::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: clamp(3.75rem, 3.0277349769rem + 3.0816640986vw, 5rem) solid transparent;
  border-left: clamp(3.75rem, 3.0277349769rem + 3.0816640986vw, 5rem) solid transparent;
  border-top: clamp(3rem, 2.530527735rem + 2.0030816641vw, 3.8125rem) solid #F7FFFC;
  border-bottom: 0;
}
.p-consept__ttl {
  color: #075735;
  text-align: center;
  font-size: clamp(1.5rem, 1.2943770673rem + 0.8820286659vw, 2rem);
  font-weight: 700;
  line-height: 1;
  display: grid;
  row-gap: 0.8125rem;
  justify-items: center;
}
.p-consept__ttl-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-consept__ttl-line {
    flex-direction: row;
  }
}
.p-consept__ttl1, .p-consept__ttl2, .p-consept__ttl3 {
  background-color: #fff;
  padding: clamp(0.375rem, 0.2721885336rem + 0.441014333vw, 0.625rem) clamp(0.625rem, 0.496485667rem + 0.5512679162vw, 0.9375rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-consept__ttl2 {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-consept__ttl3 {
    padding-left: 0;
  }
}
.p-consept__text {
  margin-top: 0.9375rem;
  color: #fff;
  text-align: center;
}
.p-consept__text > span {
  display: inline-block;
}

/******************************
TENSAKUが誇る5つの特徴
******************************/
.p-features {
  padding-bottom: 7.5625rem;
  background-color: #F7FFFC;
}
.p-features__ttl {
  margin-bottom: 3rem;
}
.p-features__body {
  max-width: 64rem;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-features__body {
    padding-right: 1.875rem;
  }
}
.p-features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3.75rem, 1.5470916795rem + 9.3990755008vw, 7.5625rem);
}

/******************************
導入実績・利用者の声
******************************/
.p-voices {
  padding-bottom: 10.6875rem;
  background-color: #E6F8F1;
  /* ページネーション色とサイズ */
  /* ページネーションがアクティブ時の色 */
  /* ページネーション間隔 */
}
.p-voices__ttl {
  margin-bottom: 5.4375rem;
}
.p-voices__body {
  position: relative;
  max-width: 21rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-voices__body {
    max-width: 39rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-voices__body {
    max-width: 57rem;
  }
}
.p-voices__body .swiper-button-prev,
.p-voices__body .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 2.75rem;
  height: 2.75rem;
}
.p-voices__body .swiper-button-prev {
  left: 0;
}
.p-voices__body .swiper-button-next {
  right: 0;
}
.p-voices__body .swiper-button-prev::after,
.p-voices__body .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 2.75rem;
  height: 2.75rem;
  margin: auto;
}
.p-voices__body .swiper-button-prev::after {
  background-image: url(/img/icon_arrowq_left.svg);
}
.p-voices__body .swiper-button-next::after {
  background-image: url(/img/icon_arrow_right.svg);
}
.p-voices .swiper-pagination {
  bottom: -4rem;
}
.p-voices .swiper-pagination > .swiper-pagination-bullet {
  background-color: rgba(0, 51, 29, 0.2);
  height: 0.5rem;
  width: 0.5rem;
}
.p-voices .swiper-pagination > .swiper-pagination-bullet-active {
  background-color: rgb(0, 51, 29);
}
.p-voices .swiper-pagination .swiper-pagination-bullet {
  margin-inline: 0.5rem;
}

/******************************
Swiper
******************************/
.p-voices-swiper {
  position: relative;
  overflow: hidden;
  max-width: 19.625rem;
}
@media screen and (min-width: 768px) {
  .p-voices-swiper {
    max-width: 34.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-voices-swiper {
    max-width: 52.375rem;
  }
}
.p-voices-swiper .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/******************************
ご利用の流れ
******************************/
.p-flow {
  padding-bottom: 5.625rem;
}
.p-flow__ttl {
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-flow__ttl {
    margin-bottom: 0.875rem;
  }
}
.p-flow__discription {
  max-width: 30rem;
  margin-inline: auto;
  margin-bottom: 5.0625rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-flow__discription {
    margin-inline: auto;
    margin-bottom: 5.375rem;
  }
}
.p-flow__discription > span {
  display: inline-block;
}
.p-flow__list {
  width: 100%;
  max-width: 20.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    max-width: none;
    max-width: 61.5rem;
  }
}

/******************************
料金プラン
******************************/
.p-price {
  background-color: #F7FFFC;
  padding-bottom: 4.125rem;
}
.p-price__ttl {
  margin-bottom: 0.875rem;
}
.p-price__discription {
  text-align: center;
  font-size: clamp(1.125rem, 1.0732044199rem + 0.2209944751vw, 1.25rem);
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 5.0625rem;
}
.p-price__list {
  width: 100%;
  max-width: 19.3125rem;
  margin-inline: auto;
  border-radius: 20px;
  margin-bottom: 2.8125rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-price__list {
    max-width: 61.4375rem;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, -0.125rem + 2.34375vw, 1.75rem);
  }
}
.p-price__notes {
  font-size: 0.875rem;
  max-width: 61.4375rem;
  margin-inline: auto;
}
.p-price__note {
  margin-left: 1em;
  text-indent: -1em;
}
.p-price__note::before {
  content: "・";
}

/******************************
よくある質問
******************************/
.p-question {
  background-color: #E6F8F1;
  padding-bottom: 5.3125rem;
}
.p-question__ttl {
  margin-bottom: 1.1875rem;
}
.p-question__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.0625rem;
}
.p-question__menus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.p-question__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18.125rem;
  height: 2.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #999;
  background-color: #F1F1F1;
  border: 2px solid #999;
  border-radius: 1.1875rem;
}
.p-question__menu.is-active {
  color: #fff;
  background-color: #FF8A00;
  border-color: #FF8A00;
}
.p-question__contents {
  width: 100%;
  max-width: 61.5rem;
}
.p-question__content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1875rem;
}

/******************************
トップCTA
******************************/
.p-cta {
  padding-block: 2.1875rem;
  background: linear-gradient(95deg, #00BA6B -0.71%, #075735 100%);
}
.p-cta__body {
  margin-inline: auto;
  background-color: #fff;
  border-radius: 20px;
  padding-block: 2.25rem;
  padding-inline: clamp(0.9375rem, -0.3180803571rem + 5.3571428571vw, 2.25rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-cta__body {
    padding-block: 4.375rem 6.25rem;
    padding-inline: 0 clamp(1.5rem, -1.6875rem + 6.640625vw, 3.625rem);
    grid-template-columns: clamp(23.25rem, 18rem + 10.9375vw, 26.75rem);
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__img {
    position: absolute;
    top: 50%;
    right: calc(1.3125rem + clamp(23.25rem, 18rem + 10.9375vw, 26.75rem) + clamp(1.5rem, -1.6875rem + 6.640625vw, 3.625rem));
    transform: translateY(-50%);
    width: clamp(26.25rem, -14.625rem + 85.15625vw, 39.875rem);
    height: auto;
    aspect-ratio: 638/374;
    aspect-ratio: 1398/804;
  }
}
.p-cta__catch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-cta__catch {
    justify-content: flex-start;
  }
}
.p-cta__catch > span {
  display: inline-block;
  font-size: clamp(1.25rem, 1.1464088398rem + 0.4419889503vw, 1.5rem);
  line-height: 1.333;
  font-weight: 700;
  background: linear-gradient(transparent 75%, #00BA6B 25%);
}
.p-cta__text {
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}
.p-cta__text:last-of-type {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-cta__text:last-of-type {
    margin-bottom: 4.0625rem;
  }
}
.p-cta__actions {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-cta__actions {
    justify-content: flex-start;
  }
}

/******************************
ポップアップバナー
******************************/
.p-popup {
  position: fixed;
  bottom: 0;
  left: 0.5rem;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-popup {
    left: 1.25rem;
  }
}
.p-popup__inner {
  position: relative;
  width: 12.5rem;
  height: auto;
  padding: 0.625rem 0.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-popup__inner {
    width: 18.75rem;
  }
}
.p-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
}
.p-popup.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/******************************
資料ダウンロードページ・資料ダウンロード完了ページメインコンテンツ
******************************/
.p-whitepaper-contents {
  display: flex;
  flex-direction: column;
  padding-block: 4.875rem 7.8125rem;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents__info {
    margin-top: 1.1875rem;
    flex-basis: 52.41%;
    max-width: 32.5rem;
  }
}
.p-whitepaper-contents__discription {
  margin-bottom: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents__discription {
    margin-left: 0.25rem;
  }
}
.p-whitepaper-contents__images {
  width: 100%;
  height: auto;
  margin-bottom: 3.625rem;
}
.p-whitepaper-contents__text {
  max-width: 26rem;
  margin-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents__text {
    margin-left: 0.25rem;
  }
}
.p-whitepaper-contents__tel-text {
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents__tel-text {
    margin-left: 0.25rem;
  }
}
.p-whitepaper-contents__tel-link, .p-whitepaper-contents__tel-number {
  color: #075735;
  font-size: clamp(2rem, 1.25rem + 1.5625vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents__tel-link, .p-whitepaper-contents__tel-number {
    margin-left: 0.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents__tel-link {
    display: none;
  }
}
.p-whitepaper-contents__tel-number {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents__tel-number {
    display: inline-block;
  }
}
.p-whitepaper-contents__form {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.25);
  padding: 1.875rem 1.875rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-whitepaper-contents__form {
    flex-basis: 44.76%;
    max-width: 27.5rem;
    margin-right: 0.25rem;
  }
}
.p-whitepaper-contents__tanks-message {
  font-size: clamp(1.125rem, 0rem + 2.34375vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1.40625rem;
}
.p-whitepaper-contents__download-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.p-whitepaper-contents__download-link {
  display: inline-block;
  color: #023E78;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/******************************
資料ダウンロードページ フォーム
******************************/
.p-whitepaper-form {
  display: flex;
  flex-direction: column;
}
.p-whitepaper-form__text {
  font-size: 0.875rem;
  margin-bottom: 2.3125rem;
}
.p-whitepaper-form__input, .p-whitepaper-form__select {
  border-radius: 5px;
  border: 1px solid #BCBCBC;
  background: #fff;
  color: #333;
  padding: 0.5625rem 0.625rem 0.5625rem 0.75rem;
}
.p-whitepaper-form__input {
  margin-bottom: 0.625rem;
}
.p-whitepaper-form__input::-moz-placeholder {
  color: #999;
}
.p-whitepaper-form__input::placeholder {
  color: #999;
}
.p-whitepaper-form__select {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/icon_arrow_down.svg") no-repeat right 0.625rem center/0.875rem;
  padding-right: 1.875rem;
}
.p-whitepaper-form__select:required:invalid {
  color: #999;
}
.p-whitepaper-form__notes {
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.p-whitepaper-form__link {
  color: #023E78;
  text-decoration: underline;
}
.p-whitepaper-form__button {
  width: 100%;
  padding: 0.625rem;
  background-color: #075735;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

/******************************
利用申し込みページ
******************************/
.p-contact__inner {
  position: relative;
}
.p-contact__form {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--inner-p) * 2);
  max-width: 50rem;
  margin-inline: auto;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.25);
  padding: 3.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    padding: 3.75rem 3.125rem;
  }
}

/******************************
利用申し込み　フォーム
******************************/
.p-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.p-contact-form__item {
  background-color: #F7FFFC;
  padding: 0.75rem 0.8125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.p-contact-form__item--url {
  padding: 0.8125rem;
  gap: 0.75rem;
}
.p-contact-form__label, .p-contact-form__legend {
  font-weight: 700;
  line-height: 1;
}
.p-contact-form__label--group {
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.p-contact-form__label--policy {
  font-weight: 700;
}
.p-contact-form__required {
  display: inline-block;
  flex-shrink: 0;
  color: #fff;
  padding: 0.1875rem 0.4375rem;
  background-color: #FF8A00;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.1875rem;
}
.p-contact-form__input {
  border: 1px solid #BCBCBC;
  border-radius: 5px;
  padding: 0.6875rem 0.8125rem;
}
.p-contact-form__input::-moz-placeholder {
  color: #999;
}
.p-contact-form__input::placeholder {
  color: #999;
}
.p-contact-form__input--name {
  width: 100%;
  max-width: 22.4375rem;
}
.p-contact-form__group {
  background-color: #F7FFFC;
  padding: 0.6875rem 0.8125rem 0.75rem;
  display: flex;
  flex-direction: column;
}
.p-contact-form__group:last-of-type {
  padding-bottom: 0.5rem;
}
.p-contact-form__legend {
  display: contents;
}
.p-contact-form__legend > span {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.p-contact-form__item--checkbox, .p-contact-form__item--radio {
  margin-bottom: -0.0625rem;
}
.p-contact-form__checkbox {
  flex-shrink: 0;
  margin-top: 0.25rem;
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 5px;
  border: 1px solid #BCBCBC;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-contact-form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
}
.p-contact-form__radio {
  flex-shrink: 0;
  margin-top: 0.25rem;
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 1px solid #BCBCBC;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-contact-form__radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #999;
}
.p-contact-form__policy-text {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.25rem;
  margin-left: 1.875rem;
}
.p-contact-form__policy-link {
  color: #023E78;
  text-decoration: underline;
}
.p-contact-form__button {
  display: flex;
  justify-content: center;
  margin-top: 3.4375rem;
}
.p-contact-form__button > button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80%;
  max-width: 31.25rem;
  padding-block: 1.5625rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  background-color: #FF8A00;
  border-radius: 20px;
}

/******************************
利用申し込み完了ページ
******************************/
.p-contact-thanks__inner {
  position: relative;
}
.p-contact-thanks__message {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--inner-p) * 2);
  max-width: 50rem;
  margin-inline: auto;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.25);
  padding: 3.75rem 1.25rem 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__message {
    padding: 3.75rem 3.125rem 3.4375rem;
  }
}
.p-contact-thanks__tel {
  color: #023E78;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__tel {
    display: none;
  }
}

/******************************
利用規約・サイトポリシーページのスタイル
******************************/
.p-terms-policy__inner {
  padding-block: 5.625rem 6.0625rem;
}
.p-terms-policy__body {
  width: 100%;
  padding-inline: var(--inner-p);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-terms-policy__body {
    max-width: calc(61.5rem + var(--inner-p) * 2);
  }
}
.p-terms-policy__discription {
  margin-bottom: 3.625rem;
}
.p-terms-policy__unit {
  margin-bottom: 2.375rem;
}
.p-terms-policy__unit:last-child {
  margin-bottom: 0;
}
.p-terms-policy__unit-ttl {
  font-size: clamp(1.125rem, 0.9083204931rem + 0.9244992296vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 2.375rem;
  text-autospace: no-autospace;
}
.p-terms-policy__list {
  margin-left: 23px;
}
.p-terms-policy__list > li {
  list-style: decimal;
}

/******************************
非適用
******************************/
.u-none--sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-none--sp {
    display: initial;
  }
}

@media screen and (min-width: 768px) {
  .u-none--tab {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .u-none--pc {
    display: none;
  }
}

/*fuundation*/
/*layout*/
/*objects*/
/*component*/
/*project*/
/*utility*/
/*# sourceMappingURL=style.css.map */