@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
*, *::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;
}

: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: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

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

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

:where(:disabled) {
  cursor: not-allowed;
}

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

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

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

.content :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) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([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;
}

:root {
  --fs-sp-body: 1.5rem;
  --fs-sp-section-title: 2.7rem;
  --fs-sp-em-text: 2.7rem;
  --fs-sp-block-title: 2.0rem;
  --fs-sp-icon-new-text: 1.1rem;
  --fs-sp-xxx-large: 1.8rem;
  --fs-sp-xx-large: 1.7rem;
  --fs-sp-x-large: 1.6rem;
  --fs-sp-base: 1.5rem;
  --fs-sp-x-small: 1.3rem;
  --fs-sp-xxx-small: 1.0rem;
  --mx-sp-contents: 15px;
  --lh-sp-base: 1.66;
  --fs-pc-em-text: 3.6rem;
  --fs-pc-section-title: 3.2rem;
  --fs-pc-em-positive-text: 3.2rem;
  --fs-pc-xxx-large: 2.6rem;
  --fs-pc-x-large: 2.0rem;
  --fs-pc-body: 1.6rem;
  --fs-pc-xxx-small: 1.2rem;
  --lh-pc-base: 1.25;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fs-sp-body);
  font-weight: normal;
  background-color: #fff;
  color: #303030;
  line-height: var(--lh-sp-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: var(--fs-pc-body);
    width: 1100px;
  }
}
@media screen and (min-width: 1101px) {
  body {
    width: 100%;
  }
}

a {
  text-decoration: none;
}

.notice-banner {
  background-color: #f9fddf;
  border: 5px solid #81c784;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  margin: 20px 0 0;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .notice-banner {
    margin: 20px 70px 0;
  }
}

.inline-block {
  display: inline-block;
}

.notice-banner h2 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
}

.notice-banner .small {
  font-size: 14px;
  font-weight: bold;
}

.ticket-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 20px;
  background-color: white;
  box-sizing: border-box;
}

.ticket-box {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  background-color: #fefefe;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.ticket-box p {
  margin: 10px 0;
  line-height: 1.5;
}

.ticket-box .note {
  font-size: 14px;
}

.blue {
  color: #007BFF;
  font-weight: bold;
}

.red {
  color: #ff0000;
  font-weight: bold;
}

.c-sectionTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../assets/img/sp/bg-section-title.png") center bottom/99px 12px no-repeat;
  font-size: var(--fs-sp-section-title);
  color: #195553;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle {
    background: url("../assets/img/pc/bg-section-title.png") center bottom/147px 17px no-repeat;
    font-size: var(--fs-pc-section-title);
    line-height: 1.5;
  }
}

.c-sectionInnerTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../assets/img/sp/bg-section-inner-title.png") center bottom/92px 10px no-repeat;
  font-size: var(--fs-sp-x-large);
  color: #195553;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-sectionInnerTitle {
    font-size: var(--fs-pc-x-large);
    line-height: 2.4;
    background: url("../assets/img/pc/bg-section-inner-title.png") center bottom/147px 17px no-repeat;
  }
}

.c-btnPrimary {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  min-height: 50px;
  color: #fff;
  font-weight: 500;
  background: #f67500 url("../assets/img/sp/icon-btn-arrow-right.png") 94% center/8px 13px no-repeat;
}
@media screen and (min-width: 768px) {
  .c-btnPrimary {
    border-radius: 39px;
    min-height: 78px;
    font-size: var(--fs-pc-x-large);
    background: #f67500 url("../assets/img/pc/icon-btn-arrow-right.png") 92% center/16px 26px no-repeat;
  }
}

.c-btnSecondary {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  min-height: 50px;
  color: #fff;
  font-weight: 500;
  background: #3b7675 url("../assets/img/sp/icon-btn-arrow-right.png") 92% center/8px 13px no-repeat;
}
@media screen and (min-width: 768px) {
  .c-btnSecondary {
    border-radius: 39px;
    min-height: 78px;
    font-size: var(--fs-pc-x-large);
    background: #3b7675 url("../assets/img/pc/icon-btn-arrow-right.png") 94% center/16px 26px no-repeat;
  }
}

.c-btnLink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  min-height: 50px;
  background-color: #3b7675;
  color: #fff;
  font-weight: 500;
  background: url("../assets/img/sp/bg-btn-link.png") center top/100% no-repeat;
  padding: 0 30px 0 22px;
  box-shadow: 1px 1px 2px 1px rgba(122, 122, 122, 0.54);
  color: #195553;
}
@media screen and (min-width: 768px) {
  .c-btnLink {
    padding: 0 52px;
    border-radius: 39px;
    width: 465px;
    min-height: 78px;
    font-size: var(--fs-pc-x-large);
    background: url("../assets/img/pc/bg-btn-link.png") center top/100% no-repeat;
  }
}
.c-btnLink::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 13px;
  transform: translateY(-50%);
  display: block;
  content: "";
  background: url("../assets/img/sp/icon-btn-arrow-dark-right.png") left top/8px 13px no-repeat;
}
@media screen and (min-width: 768px) {
  .c-btnLink::after {
    width: 16px;
    height: 26px;
    right: 30px;
    background: url("../assets/img/pc/icon-btn-arrow-dark-right.png") left top/16px 26px no-repeat;
  }
}

.c-icon-new {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1px;
  border: solid 1px #fd956c;
  border-radius: 3px;
  line-height: 1.2;
  font-size: var(--fs-sp-xxx-small);
  color: #fd956c;
}
@media screen and (min-width: 768px) {
  .c-icon-new {
    border: solid 2px #fd956c;
    font-size: var(--fs-pc-body);
  }
}

.c-btnToTop img {
  width: 50px;
  height: 50px;
}

.c-service-table {
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .c-service-table {
    overflow: hidden;
  }
}
.c-service-table table {
  border: #cfcfcf solid 1px;
  border-radius: 15px;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
@media screen and (min-width: 768px) {
  .c-service-table table {
    border-radius: 20px;
  }
}
.c-service-table table th,
.c-service-table table td {
  text-align: center;
  font-weight: 500;
}
.c-service-table table th:first-child {
  padding-left: 15px;
  border-right: #d0d0d0 dashed 2px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-service-table table th:first-child {
    padding-left: 42px;
  }
}
.c-service-table table thead th {
  width: 174px;
  height: 93px;
  text-align: center;
  vertical-align: middle;
  background-color: #f0f0f0;
}
@media screen and (min-width: 768px) {
  .c-service-table table thead th {
    width: 274px;
    height: 98px;
  }
}
.c-service-table table thead th:not(:first-child) {
  width: 260px;
  border-right: #d0d0d0 dashed 1px;
}
@media screen and (min-width: 768px) {
  .c-service-table table thead th:not(:first-child) {
    width: 274px;
  }
}
.c-service-table table thead th.service1 {
  background-color: #009b91;
  color: #fff;
  font-size: var(--fs-sp-xxx-large);
  font-weight: 700;
  line-height: 1.38;
}
@media screen and (min-width: 768px) {
  .c-service-table table thead th.service1 {
    font-size: var(--fs-pc-x-large);
  }
}
.c-service-table table thead th:last-child {
  border-right: none;
}
.c-service-table table tbody .service1 {
  background-color: #d8f2f0;
  color: #f67500;
  font-weight: 700;
  line-height: 1.2;
}
.c-service-table table tbody .service1 span {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-service-table table tbody .service1 span {
    font-size: 3.5rem;
  }
}
.c-service-table table tbody th {
  height: 113px;
  border-top: #d0d0d0 dashed 1px;
}
.c-service-table table tbody td {
  border-top: #d0d0d0 dashed 1px;
  border-right: #d0d0d0 dashed 1px;
}
.c-service-table table tbody td:last-child {
  border-right: none;
}

.compensation {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .compensation .compensationContents {
    max-width: 1101px;
    margin: auto;
    overflow: hidden;
  }
}
@media screen and (min-width: 1101px) {
  .compensation .compensationContents {
    overflow: visible;
  }
}
.compensation .visualMain {
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .compensation .visualMain {
    display: flex;
    justify-content: center;
    margin-bottom: -15px;
  }
}
.compensation .visualMain__image {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .compensation .visualMain__image {
    width: 130%;
    max-inline-size: initial;
    height: auto;
  }
}
.compensation .anchor {
  margin: 0 var(--mx-sp-contents) 46px;
}
@media screen and (min-width: 768px) {
  .compensation .anchor {
    display: flex;
    justify-content: center;
    margin: 0 0 34px;
  }
}
@media screen and (min-width: 768px) {
  .compensation .anchor__list {
    display: flex;
    justify-content: center;
    width: 1101px;
  }
}
.compensation .anchor__list li {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .compensation .anchor__list li {
    display: flex;
    flex: 0 0 172px;
    margin-bottom: 0;
  }
  .compensation .anchor__list li:not(:last-child) {
    margin-right: 12px;
  }
}
.compensation .anchor__list li a {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff url("../assets/img/sp/bg-nav-anchor.png") left top/65px 50px no-repeat;
  border-radius: 10px;
  padding: 0 30px 0 12px;
  min-height: 50px;
  box-shadow: 1px 1px 2px 1px rgba(122, 122, 122, 0.54);
  color: #195553;
}
@media screen and (min-width: 768px) {
  .compensation .anchor__list li a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 172px;
    padding: 0 12px 0;
    min-height: 128px;
    line-height: var(--lh-pc-base);
    border-radius: 20px;
    background: #fff url("../assets/img/pc/bg-nav-anchor.png") left top/100% no-repeat;
  }
}
.compensation .anchor__list li a::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 17px;
  height: 12px;
  transform: translateY(-50%);
  display: block;
  content: "";
  background: url("../assets/img/sp/icon-arrow-bottom.png") left top/17px 12px no-repeat;
}
@media screen and (min-width: 768px) {
  .compensation .anchor__list li a::after {
    top: initial;
    right: initial;
    left: 50%;
    bottom: 6px;
    width: 26px;
    height: 17px;
    transform: translateX(-50%);
    background: url("../assets/img/pc/icon-arrow-bottom.png") left top/26px 17px no-repeat;
  }
}
.compensation .topInformation {
  position: relative;
  margin: 0 var(--mx-sp-contents) 44px;
  font-size: var(--fs-sp-xxx-large);
  font-weight: 700;
}
.compensation .topInformation::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -20px;
  display: block;
  content: "";
  width: 91px;
  height: 104px;
  background: url("../assets/img/sp/bg-information-left.png") left top/91px 104px no-repeat;
}
.compensation .topInformation::after {
  position: absolute;
  z-index: -1;
  top: 12px;
  right: -20px;
  display: block;
  content: "";
  width: 118px;
  height: 100px;
  background: url("../assets/img/sp/bg-information-right.png") right top/118px 100px no-repeat;
}
@media screen and (min-width: 768px) {
  .compensation .topInformation {
    position: relative;
    margin: 0 0 66px;
    padding-top: 24px;
    text-align: center;
    font-size: var(--fs-pc-xxx-large);
    line-height: 1.85;
  }
  .compensation .topInformation::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -90px;
    display: block;
    content: "";
    width: 260px;
    height: 207px;
    background: url("../assets/img/pc/bg-information-left.png") left top/260px 207px no-repeat;
  }
  .compensation .topInformation::after {
    position: absolute;
    z-index: -1;
    top: 12px;
    right: -78px;
    display: block;
    content: "";
    width: 262px;
    height: 200px;
    background: url("../assets/img/pc/bg-information-right.png") right top/262px 200px no-repeat;
  }
}
.compensation .navSubscription {
  display: flex;
  flex-direction: column;
  margin: 0 var(--mx-sp-contents) 44px;
  padding: 38px 26px 34px;
  background: url("../assets/img/sp/bg-nav-pattern.png") right top/12px repeat;
  background-color: #e0efcb;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .compensation .navSubscription {
    flex-direction: row;
    justify-content: center;
    background: url("../assets/img/pc/bg-nav-pattern.png") right top/24px repeat;
    margin: 0 0 100px;
    padding: 54px 50px 40px;
  }
}
@media screen and (min-width: 768px) {
  .compensation .navSubscription--end {
    margin: 0 0 56px;
  }
}
.compensation .navSubscription__block:first-child {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .compensation .navSubscription__block {
    flex: 1 0 auto;
  }
  .compensation .navSubscription__block:first-child {
    margin: 0 64px 0 0;
  }
}
.compensation .navSubscription__text {
  margin-top: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .compensation .navSubscription__text {
    margin-top: 28px;
  }
}
.compensation .navSubscription__text span {
  display: block;
}
.compensation .navSubscription__textMain {
  font-size: var(--fs-sp-base);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .compensation .navSubscription__textMain {
    font-size: var(--fs-pc-x-large);
  }
}
.compensation .navSubscription__textSub {
  font-size: var(--fs-sp-xxx-small);
}
@media screen and (min-width: 768px) {
  .compensation .navSubscription__textSub {
    font-size: var(--fs-pc-xxx-small);
  }
}
.compensation .navLink {
  margin: 0 0 48px;
  padding: 0 var(--mx-sp-contents);
}
@media screen and (min-width: 768px) {
  .compensation .navLink {
    display: flex;
    justify-content: center;
    margin: 0 0 60px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .compensation .navLink--end {
    margin: 0 0 68px;
  }
}
.compensation .navLink__list {
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .compensation .navLink__list {
    width: 1012px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.compensation .navLink__list li:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .compensation .navLink__list li:not(:last-child) {
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .compensation .navLink__list li {
    margin-bottom: 0 !important;
  }
}
.compensation .c-btnToTop {
  position: fixed;
  bottom: 50px;
  right: 30px;
}

.compensation .sectionInformation {
  padding: 0 var(--mx-sp-contents) 60px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionInformation {
    padding: 0 0 96px;
  }
}
.compensation .sectionInformation .c-sectionTitle {
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionInformation .c-sectionTitle {
    margin-bottom: 32px;
  }
}
.compensation .sectionInformation .informationList {
  border-top: solid 1px #174000;
  border-bottom: solid 1px #174000;
}
.compensation .sectionInformation .informationList__item {
  padding: 14px 15px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionInformation .informationList__item {
    display: flex;
    padding: 24px 0;
  }
}
.compensation .sectionInformation .informationList__item:not(:last-child) {
  border-bottom: solid 1px #174000;
}
.compensation .sectionInformation .informationList__itemDate {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
  color: #838383;
}
@media screen and (min-width: 768px) {
  .compensation .sectionInformation .informationList__itemDate {
    margin-right: 12px;
  }
}
.compensation .sectionInformation .informationList__itemDate .c-icon-new {
  margin-left: 12px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionInformation .informationList__itemDate .c-icon-new {
    margin-left: 28px;
  }
}

.compensation .sectionOverview {
  padding: 50px var(--mx-sp-contents) 50px;
  background-color: #f6f6f6;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview {
    padding: 70px 0 72px;
  }
}
.compensation .sectionOverview .c-sectionTitle {
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .c-sectionTitle {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .compensationContents {
    padding: 0 44px;
  }
}
.compensation .sectionOverview .overview {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overview {
    margin-bottom: 60px;
  }
}
.compensation .sectionOverview .overview__text {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overview__text {
    line-height: 1.875;
    margin-bottom: 24px;
  }
}
.compensation .sectionOverview .overview__notes {
  font-size: var(--fs-sp-xxx-small);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overview__notes {
    font-size: var(--fs-pc-xxx-small);
  }
}
.compensation .sectionOverview .overview__notesId {
  display: inline-block;
  margin-right: 8px;
}
.compensation .sectionOverview .overview__positive {
  background: url("../assets/img/sp/bg-em-text-decoration-left.png") left center/47px 120px no-repeat, url("../assets/img/sp/bg-em-text-decoration-right.png") right center/47px 120px no-repeat;
  min-height: 120px;
  width: 345px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overview__positive {
    background: url("../assets/img/sp/bg-em-text-decoration-left.png") left center/56px 110px no-repeat, url("../assets/img/pc/bg-em-text-decoration-right.png") right center/56px 110px no-repeat;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 856px;
  }
}
.compensation .sectionOverview .overview__positive p {
  color: #f67500;
  font-weight: 700;
  font-size: var(--fs-sp-em-text);
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overview__positive p {
    font-size: var(--fs-pc-em-text);
  }
}
.compensation .sectionOverview .sectionOverviewTitle {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 35px;
  padding-bottom: 40px;
  font-size: var(--fs-sp-block-title);
  font-weight: 700;
  text-align: center;
  background: url("../assets/img/sp/bg-overview-title.png") center bottom/339px 46px no-repeat;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .sectionOverviewTitle {
    padding-bottom: 44px;
    background: url("../assets/img/pc/bg-overview-title.png") center bottom/608px 80px no-repeat;
    font-size: var(--fs-pc-xxx-large);
  }
}
.compensation .sectionOverview .overviewSamples {
  display: flex;
  flex-direction: column;
  margin-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overviewSamples {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 64px;
  }
}
.compensation .sectionOverview .overviewSamples .typeMobile {
  width: 315px;
  height: 270px;
}
.compensation .sectionOverview .overviewSamples .typePC {
  width: 312px;
  height: 264px;
}
.compensation .sectionOverview .overviewSamples li:not(:last-child) {
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overviewSamples li {
    margin-bottom: 0 !important;
  }
}
.compensation .sectionOverview .overviewSamples__case {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 425px;
  background-color: #fff;
  border: solid 2px #c1dd99;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overviewSamples__case {
    width: 316px;
    height: 396px;
  }
}
.compensation .sectionOverview .overviewSamples__caseText {
  padding: 0 32px;
  font-size: var(--fs-sp-xx-large);
  font-weight: 700;
  line-height: 1.88;
}
@media screen and (min-width: 768px) {
  .compensation .sectionOverview .overviewSamples__caseText {
    margin-top: -18px;
  }
}
.compensation .sectionOverview .overviewSamples__caseText .textWeak {
  color: #009fd9;
}

.compensation .sectionServiceFlow {
  background: url("../assets/img/sp/bg-service-flow-intro.png") center 120px/100% no-repeat;
  padding: 50px var(--mx-sp-contents) 60px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow {
    position: relative;
    padding: 102px 44px 82px;
    background: none;
  }
  .compensation .sectionServiceFlow::before {
    position: absolute;
    z-index: -1;
    top: 214px;
    left: -90px;
    display: block;
    content: "";
    width: 260px;
    height: 207px;
    background: url("../assets/img/pc/bg-service-flow-intro-left.png") left top/260px 207px no-repeat;
  }
  .compensation .sectionServiceFlow::after {
    position: absolute;
    z-index: -1;
    top: 228px;
    right: -78px;
    display: block;
    content: "";
    width: 262px;
    height: 200px;
    background: url("../assets/img/pc/bg-service-flow-intro-right.png") right top/262px 200px no-repeat;
  }
}
.compensation .sectionServiceFlow .c-sectionTitle {
  margin-bottom: 26px;
}
.compensation .sectionServiceFlow .introText {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .introText {
    margin-bottom: 52px;
  }
}
.compensation .sectionServiceFlow .introText a {
  color: #00a292;
}
.compensation .sectionServiceFlow .introText__p {
  margin-bottom: 21px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .introText__p {
    margin-bottom: 28px;
    line-height: 1.875;
  }
}
.compensation .sectionServiceFlow .introText__em {
  margin-bottom: 0;
  padding: 36px 0 28px;
  font-size: var(--fs-sp-xxx-large);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .introText__em {
    font-size: var(--fs-pc-xxx-large);
  }
}
.compensation .sectionServiceFlow .introText__list li {
  text-indent: calc(var(--fs-sp-xxx-small) * -1);
  padding-left: var(--fs-sp-xxx-small);
  font-size: var(--fs-sp-xxx-small);
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .introText__list li {
    text-indent: calc(var(--fs-pc-xxx-small) * -1);
    padding-left: var(--fs-pc-xxx-small);
    font-size: var(--fs-pc-xxx-small);
  }
}
.compensation .sectionServiceFlow .introText__list .alert {
  color: #ff3845;
}
.compensation .sectionServiceFlow .serviceFlow {
  margin-bottom: 22px;
  padding: 35px 15px;
  border: solid 1px #c1dd99;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .serviceFlow {
    padding: 35px 54px 35px 74px;
    border-radius: 20px;
  }
}
.compensation .sectionServiceFlow .serviceFlow .c-sectionInnerTitle {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .serviceFlow .c-sectionInnerTitle {
    margin-bottom: 26px;
  }
}
.compensation .sectionServiceFlow .serviceFlow__list {
  counter-reset: id;
}
.compensation .sectionServiceFlow .serviceFlow__listItem {
  position: relative;
  margin-bottom: 16px;
  padding-left: 40px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .serviceFlow__listItem {
    margin-bottom: 50px;
    padding-left: 75px;
    line-height: 1.875;
  }
}
.compensation .sectionServiceFlow .serviceFlow__listItem::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 38px;
  display: flex;
  padding-left: 17px;
  align-items: center;
  counter-increment: id;
  content: counter(id);
  background: url("../assets/img/sp/bg-service-flow-list-id.png") center top/35px 38px no-repeat;
  color: #195553;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .serviceFlow__listItem::before {
    top: -14px;
    padding-left: 30px;
    width: 55px;
    height: 59px;
    background: url("../assets/img/pc/bg-service-flow-list-id.png") center top/55px 59px no-repeat;
    font-size: var(--fs-pc-x-large);
  }
}
.compensation .sectionServiceFlow .serviceFlow__listItem a {
  color: #00a292;
}
.compensation .sectionServiceFlow .serviceFlow__listItemNotes {
  margin-top: 6px;
}
.compensation .sectionServiceFlow .serviceFlow__listItemNotes li {
  text-indent: calc(var(--fs-sp-xxx-small) * -1);
  padding-left: var(--fs-sp-xxx-small);
  font-size: var(--fs-sp-xxx-small);
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .serviceFlow__listItemNotes li {
    font-size: var(--fs-pc-xxx-small);
  }
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .serviceFlow__image {
    margin-left: 12px;
  }
}
.compensation .sectionServiceFlow .serviceFlow__imageSamples {
  margin-bottom: 36px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .serviceFlow__imageSamples {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 0;
  }
}
.compensation .sectionServiceFlow .serviceFlow__imageSamples li {
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow .serviceFlow__imageSamples li {
    margin-bottom: 0;
  }
  .compensation .sectionServiceFlow .serviceFlow__imageSamples li:nth-child(1), .compensation .sectionServiceFlow .serviceFlow__imageSamples li:nth-child(2) {
    margin-bottom: 10px;
  }
}
.compensation .sectionServiceFlow__notes {
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow__notes {
    line-height: 1.66;
  }
}
.compensation .sectionServiceFlow__notesTitle {
  font-weight: 700;
  font-size: var(--fs-sp-xxx-small);
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow__notesTitle {
    font-size: var(--fs-pc-xxx-small);
  }
}
.compensation .sectionServiceFlow__notesText {
  margin-bottom: 16px;
  font-size: var(--fs-sp-xxx-small);
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceFlow__notesText {
    font-size: var(--fs-pc-xxx-small);
  }
}
.compensation .sectionServiceFlow__notesText .mailtoLink {
  color: #303030;
}

.compensation .sectionServiceApply {
  background-color: #e8f5f5;
  padding: 50px var(--mx-sp-contents) 60px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceApply {
    padding: 96px 44px 110px;
  }
}
.compensation .sectionServiceApply .c-sectionTitle {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceApply .c-sectionTitle {
    margin-bottom: 56px;
  }
}
.compensation .sectionServiceApply .serviceApplyList {
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceApply .serviceApplyList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 66px;
  }
}
.compensation .sectionServiceApply .serviceApplyList li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 75px;
  margin-left: 25px;
  padding: 10px 34px 10px 44px;
  border-radius: 5px;
  background: #fff url("../assets/img/sp/bg-service-apply-list.png") 99% 80%/26px 34px no-repeat;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceApply .serviceApplyList li {
    flex: 0 0 42.8%;
    margin-left: 50px;
    padding: 10px 66px 10px;
    border-radius: 10px;
    min-height: 100px;
    background: #fff url("../assets/img/pc/bg-service-apply-list.png") 99% 78%/53px 68px no-repeat;
  }
}
.compensation .sectionServiceApply .serviceApplyList li p {
  font-weight: 500;
  vertical-align: middle;
}
.compensation .sectionServiceApply .serviceApplyList li:not(:last-child) {
  margin-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceApply .serviceApplyList li:not(:last-child) {
    margin-bottom: 22px;
  }
}
.compensation .sectionServiceApply .serviceApplyList__notesId {
  display: inline-block;
  padding-bottom: 4px;
  font-size: var(--fs-sp-xxx-small);
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceApply .serviceApplyList__notesId {
    font-size: var(--fs-pc-xxx-small);
  }
}
.compensation .sectionServiceApply .serviceApplyList__icon {
  position: absolute;
  left: -26px;
  top: -10px;
  width: 65px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceApply .serviceApplyList__icon {
    left: -50px;
    top: -12px;
    width: 100px;
    height: 76px;
  }
}
.compensation .sectionServiceApply .serviceApplyNoticeList li {
  text-indent: -1.8rem;
  padding-left: 2rem;
  font-size: var(--fs-sp-xxx-small);
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceApply .serviceApplyNoticeList li {
    text-indent: -2rem;
    padding-left: 2.4rem;
    font-size: var(--fs-pc-xxx-small);
  }
}

.compensation .sectionServiceNotApply {
  background-color: #e8f5f5;
  padding: 14px var(--mx-sp-contents) 60px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceNotApply {
    padding: 0 44px 100px;
  }
}
.compensation .sectionServiceNotApply .c-sectionTitle {
  margin-bottom: 44px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceNotApply .c-sectionTitle {
    margin-bottom: 50px;
  }
}
.compensation .sectionServiceNotApply p {
  font-weight: 500;
}
.compensation .sectionServiceNotApply a {
  color: #00a292;
}

.compensation .sectionServiceCompare {
  padding: 52px 0 60px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare {
    padding: 100px 0 86px;
  }
}
.compensation .sectionServiceCompare .c-sectionTitle {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare .c-sectionTitle {
    margin-bottom: 60px;
  }
}
.compensation .sectionServiceCompare .c-service-table {
  padding: 0 var(--mx-sp-contents) 16px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare .c-service-table {
    padding: 0 0 28px;
  }
}
.compensation .sectionServiceCompare__positive {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding-top: 30px;
  border-top: solid 2px #22918a;
  min-height: 140px;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare__positive {
    padding-top: 70px;
    border-top: solid 4px #22918a;
  }
}
.compensation .sectionServiceCompare__positive::before {
  content: "";
  display: block;
  position: absolute;
  top: -11px;
  left: 50%;
  height: 20px;
  width: 14px;
  transform: translateX(-50%);
  background: url("../assets/img/sp/img-arrow-top-balloon.png") center top/20px 14px no-repeat;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare__positive::before {
    top: -22px;
    height: 44px;
    width: 30px;
    background: url("../assets/img/sp/img-arrow-top-balloon.png") center top/44px 30px no-repeat;
  }
}
.compensation .sectionServiceCompare__positiveInner {
  position: relative;
  width: 100%;
}
.compensation .sectionServiceCompare__positiveInner::before {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: 0;
  display: block;
  content: "";
  width: 91px;
  height: 140px;
  background: url("../assets/img/sp/bg-service-compare-left.png") left top/91px 140px no-repeat;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare__positiveInner::before {
    top: -48px;
    left: -42px;
    width: 316px;
    height: 192px;
    background: url("../assets/img/pc/bg-service-compare-left.png") left top/316px 192px no-repeat;
  }
}
.compensation .sectionServiceCompare__positiveInner::after {
  position: absolute;
  z-index: -1;
  top: -20px;
  right: 0;
  display: block;
  content: "";
  width: 66px;
  height: 116px;
  background: url("../assets/img/sp/bg-service-compare-right.png") left top/66px 116px no-repeat;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare__positiveInner::after {
    top: -46px;
    right: -58px;
    width: 258px;
    height: 183px;
    background: url("../assets/img/pc/bg-service-compare-right.png") right top/258px 183px no-repeat;
  }
}
.compensation .sectionServiceCompare__positiveText {
  font-size: var(--fs-sp-x-small);
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare__positiveText {
    font-size: var(--fs-pc-xxx-large);
    letter-spacing: 0.35rem;
  }
}
.compensation .sectionServiceCompare__positiveText .emText {
  font-size: var(--fs-sp-x-large);
  color: #009b91;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare__positiveText .emText {
    font-size: var(--fs-pc-em-positive-text);
  }
}
.compensation .sectionServiceCompare__positiveText .emText1 {
  background: url("../assets/img/sp/bg-em-text1.png") center 120%/214px 12px no-repeat;
  font-size: var(--fs-sp-x-large);
  color: #f67500;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare__positiveText .emText1 {
    background: url("../assets/img/pc/bg-em-text1.png") left 120%/408px 22px no-repeat;
    font-size: var(--fs-pc-em-positive-text);
  }
}
.compensation .sectionServiceCompare__positiveText .emText2 {
  background: url("../assets/img/sp/bg-em-text2.png") center 120%/134px 10px no-repeat;
  font-size: var(--fs-sp-x-large);
  color: #f67500;
}
@media screen and (min-width: 768px) {
  .compensation .sectionServiceCompare__positiveText .emText2 {
    background: url("../assets/img/pc/bg-em-text2.png") left 120%/151px 18px no-repeat;
    font-size: var(--fs-pc-em-positive-text);
  }
}

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

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

.inlineSp {
  display: inline;
}
.inlineSp.addCircleSeparator::after {
  content: "・";
  display: inline-block;
  margin: 0 2px;
}
@media screen and (min-width: 768px) {
  .inlineSp.addCircleSeparator::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .inlineSp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .blockPc {
    display: block;
  }
}

.blockSp {
  display: block;
}
@media screen and (min-width: 768px) {
  .blockSp {
    display: inline;
  }
}

.em {
  color: #f67500;
}

/*.agreement
***************************************/

#agreement{
margin:40px 0 0 0;
border-radius:5px;
font-weight:400;
background-color:#FFFFFF;
}

#agreement .inner{
padding:60px 80px 50px 80px;
}

#agreement p.enactment{
padding:0 0 40px 0;
text-align:right;
font-weight:500;
}

#agreement dl{
font-size:1.5rem;
padding:0 0 40px 0;
}
#agreement dt{
padding:0 0 10px 0;
}
#agreement dd{
font-weight:400;
padding:0 0 0 20px;
}
#agreement ol{
font-size:1.5rem;
padding:30px 0 0 20px;
}
#agreement ol li{
padding:5px 0 5px 0px;
list-style-type: decimal;
}
#agreement ol ol{
padding:0px 0 0px 0px;
}
#agreement ol li li{
padding:5px 0  5px 0px;
font-size:1.3rem;
list-style-type: none
}

#agreement li span{
font-size:1.2rem;
}

#agreement .documents h3{
font-size:1.6rem;
padding:0 0 20px 0;
font-weight:bold;
}
#agreement .documents table{
border: solid 1px #D6D6D6;
font-size:1.5rem;
width:100%;
}
#agreement .documents table td{
padding:6px 6px;
text-align:center;
border: solid 1px #D6D6D6;
}
#agreement .documents table td:first-child{
text-align:left;
}
#agreement .documents ul{
font-size:1.2rem;
padding:10px 0;
}
#agreement .documents ul li{
padding:5px 0 0 0;
}

@media screen and (max-width:768px) {
	#agreement{
	margin:20px 10px 0 10px;
	}
	#agreement h2{
	font-size:1.8rem;
	}
	#agreement .inner{
	padding:20px 20px 20px 20px;
	}
	#agreement p.enactment{
	padding:0 0 30px 0;
	font-size:1.4rem;
	}
	#agreement dl{
	font-size:1.4rem;
	padding:0 0 20px 0;
	}
	#agreement ol{
	font-size:1.4rem;
	padding:15px 0 0 20px;
	}
	#agreement ol li{
	font-size:1.4rem;
	}

	#agreement .documents h3{
	font-size:1.4rem;
	}
	#agreement .documents table{
	font-size:1.2rem;
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	}
	#agreement .documents p{
	font-size:1.3rem;
	}
}

