@charset "utf-8";
body {
  --color-odekake-primary: #57a0b4;
  --color-odekake-secondary: #e8eff2;
  --color-odekake-text-primary: #000;
  --color-odekake-text-secondaly: #333;
  --color-odekake-text-tertiary: #666;
  --color-odekake-text-quaternary: #999;
  --color-odekake-text-quinary: #707070;
}
.odekake-main-ttl--sm {
  vertical-align: 0.4em;
}
#mainContents p,
#mainContents ul {
  padding-top: 0;
  color: var(--color-odekake-text-secondaly);
}
#mainContents sup {
  vertical-align: 0.3em;
}
#mainContents .odekake-ttl {
  font-weight: 700;
  color: var(--color-odekake-text-primary);
}
#mainContents .odekake-btn {
  padding: 14px;
  border-radius: 5px;
  background-color: var(--color-brand-primary);
  color: var(--color-txt-inverse);
  text-align: center;
  display: block;
  font-weight: 500;
  line-height: 1.539;
}
#mainContents .odekake-btn:hover {
  text-decoration: none;
}
#mainContents .odekake-list-disc > li {
  margin-left: 1em;
  text-indent: -1em;
}
#mainContents .annotationSymbol,
#mainContents .annotationKome {
  color: var(--color-odekake-text-tertiary);
}

#mainContents .odekake-txt-color-primary {
  color: var(--color-odekake-text-primary);
}
#mainContents .odekake-txt-color-secondary {
  color: var(--color-odekake-text-secondary);
}
#mainContents .odekake-txt-color-tertiary {
  color: var(--color-odekake-text-tertiary);
}
#mainContents .odekake-txt-color-quaternary {
  color: var(--color-odekake-text-quaternary);
}
#mainContents .odekake-txt-color-quinary {
  color: var(--color-odekake-text-quinary);
}
#mainContents .hero {
  text-align: center;
}
#mainContents .hero-ttl {
  font-weight: 500;
  color: var(--color-odekake-primary);
}
#mainContents .hero-lead {
  color: var(--color-odekake-text-tertiary);
}
#mainContents .odekake-features-idx > div {
  background-color: var(--color-odekake-primary);
  color: var(--color-txt-inverse);
  font-weight: 700;
  border-radius: 5px;
  text-align: center;
  align-content: center;
}
#mainContents .odekake-feature-block {
  display: inline-block;
  white-space: nowrap;
}
#mainContents .odekake-feature {
  overflow: hidden;
  border-radius: 10px;
  border: solid 2px var(--color-odekake-primary);
}
#mainContents .odekake-feature-ttl {
  background-color: var(--color-odekake-primary);
  color: var(--color-txt-inverse);
  font-weight: 700;
  text-align: center;
}
#mainContents .odekake-price-container {
  background-color: var(--color-odekake-secondary);
  border-radius: 5px;
  color: var(--color-odekake-text-primary);
}
#mainContents .odekake-price-txt {
  font-weight: 700;
}
#mainContents .odekake-price {
  display: inline-block;
  text-align: right;
}
#mainContents .odekake-price-label {
  background-color: var(--color-odekake-primary);
  color: var(--color-txt-inverse);
  text-align: center;
  font-weight: 500;
}
.odekake-price-time {
  border: solid 1px var(--color-odekake-text-primary);
  font-weight: 400;
  border-radius: 3px;
}
#mainContents .odekake-price-consultation {
  text-align: center;
}
#mainContents .odekake-price-consultation span {
  display: inline-block;
  position: relative;
  line-height: 1;
  font-weight: 500;
}
#mainContents .odekake-price-consultation > span::before,
#mainContents .odekake-price-consultation > span::after {
  content: "";
  width: 2px;
  height: 22px;
  background-color: var(--color-odekake-text-primary);
  position: absolute;
  bottom: 0;
}
#mainContents .odekake-price-consultation > span::before {
  transform: rotate(-30deg);
}
#mainContents .odekake-price-consultation > span::after {
  transform: rotate(30deg);
}
#mainContents .odekake-serch {
  display: inline-block;
  background-image: url(/welfare/home/img/icon_shop.png);
  background-position: left center;
  background-repeat: no-repeat;
}
#mainContents .odekake-qa {
  display: grid;
}
#mainContents .odekake-qa-q {
  background-color: var(--color-odekake-secondary);
  font-weight: 500;
  position: relative;
  display: flex;
}
#mainContents .odekake-qa-q-inner {
  flex: 1;
}
#mainContents .odekake-qa-show-more-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
}
/* show more */
.odekake-show-more-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out;
}
.odekake-show-more-body-inner {
  overflow: hidden;
  min-height: var(--default-height); /* jsから変数に代入 */
}
.odekake-show-more.js-open .odekake-show-more-body {
  grid-template-rows: 1fr;
}
.odekake-qa-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  z-index: 0;
  background-color: var(--color-odekake-secondary);
}
.odekake-qa-toggle::before,
.odekake-qa-toggle::after {
  content: "";
  width: 12px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-1px);
  background-color: var(--color-odekake-text-primary);
  transition: all var(--transitions-short-time);
}
.odekake-qa-toggle::before {
  transform: translateY(-1px) rotate(-90deg);
  opacity: 1;
}
.odekake-show-more.js-open .odekake-qa-toggle::before {
  transform: rotate(0deg);
  opacity: 0;
}
#mainContents .odekake-inquery-list > li {
  margin-left: 2.5em;
  text-indent: -2.5em;
}
#mainContents .odekake-input-img {
  display: inline-block;
  border: solid 1px;
  border-radius: 3px;
  vertical-align: -0.1em;
  margin: 0 2px;
}
@media print, screen and (min-width: 751px) {
  .odekake-main-ttl--sm {
    font-size: 0.5em;
  }
  #mainContents .odekake-grid-2_pc,
  #mainContents .odekake-grid-3_pc,
  #mainContents .odekake-grid-4_pc,
  #mainContents .odekake-grid-5_pc,
  #mainContents .odekake-grid-6_pc {
    display: grid !important;
    gap: 20px !important;
  }
  #mainContents .odekake-grid-2_pc {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  #mainContents .odekake-grid-3_pc {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  #mainContents .odekake-grid-4_pc {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  #mainContents .odekake-grid-5_pc {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  #mainContents .odekake-grid-6_pc {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  #mainContents .odekake-contents_pc {
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
  #mainContents .odekake-ttl--lg {
    font-family: "UD Shin Go NT Pro", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 3rem;
  }
  #mainContents .odekake-ttl--md {
    font-size: 2.6rem;
    line-height: 1.231;
  }
  #mainContents p,
  #mainContents li {
    font-size: 2rem;
    line-height: 1.6;
  }
  #mainContents sup {
    font-size: 0.5em;
  }
  #mainContents .odekake-btn {
    padding: 14px;
    line-height: 1.539;
    font-size: 2.079rem;
  }
  #mainContents .odekake-txt-sm {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  #mainContents .odekake-txt-color-primary,
  #mainContents .odekake-txt-color-primary_pc {
    color: var(--color-odekake-text-primary);
  }
  #mainContents .odekake-txt-color-secondary,
  #mainContents .odekake-txt-color-secondary_pc {
    color: var(--color-odekake-text-secondary);
  }
  #mainContents .odekake-txt-color-tertiary,
  #mainContents .odekake-txt-color-tertiary_pc {
    color: var(--color-odekake-text-tertiary);
  }
  #mainContents .odekake-txt-color-quaternary,
  #mainContents .odekake-txt-color-quaternary_pc {
    color: var(--color-odekake-text-quaternary);
  }
  #mainContents .odekake-txt-color-quinary,
  #mainContents .odekake-txt-color-quinary_pc {
    color: var(--color-odekake-text-quinary);
  }
  #mainContents .hero-ttl {
    font-size: 4rem;
  }
  #mainContents .hero-lead {
    font-size: 2rem;
    line-height: 2;
  }
  #mainContents .odekake-features-idx > div {
    padding: 25px 5px;
    font-size: 2.6rem;
    line-height: 1.231;
  }
  #mainContents .odekake-features-idx > div.odekake-feature-txt--sm {
    font-size: 2.4rem;
    line-height: 1.333;
  }
  #mainContents .odekake-feature-ttl {
    font-size: 2.6rem;
    padding: 3px;
  }
  #mainContents .odekake-feature-contents {
    padding: 20px;
  }
  #mainContents p.odekake-feature-txt {
    font-size: 2rem;
    line-height: 1.6;
    margin-top: 10px;
  }
  #mainContents .odekake-price-container {
    padding: 20px;
  }
  #mainContents .odekake-price-container3 {
    display: flex;
    flex-wrap: wrap;
  }
  #mainContents .odekake-price-container1 {
    width: 51.0638%;
    margin-right: 20px;
    min-width: 460px;
  }
  #mainContents .odekake-price-container2 {
    flex: 1;
  }
  #mainContents .odekake-price-item {
    display: flex;
    align-items: flex-end;
    align-items: end;
    justify-content: start;
  }
  #mainContents .odekake-price-label {
    font-size: 1.8rem;
    line-height: 1.667;
    width: 5.722em;
    margin-right: 10px;
  }
  #mainContents .odekake-price-txt {
    font-size: 2.8rem;
    line-height: 1;
  }
  #mainContents .odekake-price {
    width: 3.5em;
  }
  #mainContents .odekake-price-currency {
    margin-left: 5px;
  }
  #mainContents .odekake-price-currency,
  #mainContents .odekake-price-tax {
    font-size: 1.6rem;
    display: inline-block;
  }
  #mainContents .odekake-price-time {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 0 10px;
    margin-left: 5px;
  }
  #mainContents .odekake-price-consultation {
    margin-bottom: 3px;
  }
  #mainContents .odekake-price-consultation > span::before,
  #mainContents .odekake-price-consultation > span::after {
    height: 22px;
  }
  #mainContents .odekake-price-consultation > span::before {
    left: -20px;
  }
  #mainContents .odekake-price-consultation > span::after {
    right: -20px;
  }
  #mainContents .odekake-serch {
    padding-left: 45px;
    background-size: 30px 31px;
  }
  #mainContents .odekake-qa {
    gap: 20px;
  }
  #mainContents .odekake-qa-q {
    padding: 18px;
    font-size: 2rem;
    line-height: 1.2;
  }
  #mainContents .odekake-qa-a {
    margin-top: 10px;
    font-size: 2rem;
    line-height: 1.6;
  }
  #mainContents .odekake-input-img {
    border-color: var(--color-odekake-text-quaternary);
    width: 30px;
    height: 11px;
  }
}
@media only screen and (max-width: 870px) and (min-width: 819px) {
  #mainContents .odekake-price-consultation {
    font-size: 1.6rem;
  }
  #mainContents .odekake-price-consultation > span::before,
  #mainContents .odekake-price-consultation > span::after {
    height: 18px;
  }
  #mainContents .odekake-price-container2 .odekake-serch {
    transform: scale(0.9);
  }
}
@media only screen and (max-width: 820px) and (min-width: 751px) {
  #mainContents .odekake-price-container3 {
    display: block;
  }
  #mainContents .odekake-price-container2 {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 750px) {
  .odekake-main-ttl--sm {
    font-size: 0.5em;
    letter-spacing: -0.05em;
  }
  #mainContents .odekake-grid-2_sp,
  .odekake-grid-3_sp,
  .odekake-grid-4_sp {
    display: grid !important;
    gap: 2.133vw !important;
  }
  #mainContents .odekake-grid-2_sp {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  #mainContents .odekake-grid-3_sp {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  #mainContents .odekake-grid-4_sp {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  #mainContents .odekake-ttl--lg {
    font-size: 2rem;
  }
  #mainContents .odekake-ttl--md {
    font-size: 1.8rem;
    line-height: 1.111;
  }
  #mainContents sup {
    font-size: 0.6em;
  }
  #mainContents .odekake-btn {
    padding: 16px;
    font-size: 1.2rem;
  }
  #mainContents ul.annotationKome li,
  #mainContents ul.annotationSymbol li,
  #mainContents p.annotation {
    font-size: 1.031rem;
    line-height: 1.667;
  }
  #mainContents .odekake-txt-color-primary,
  #mainContents .odekake-txt-color-primary_sp {
    color: var(--color-odekake-text-primary);
  }
  #mainContents .odekake-txt-color-secondary,
  #mainContents .odekake-txt-color-secondary_sp {
    color: var(--color-odekake-text-secondary);
  }
  #mainContents .odekake-txt-color-tertiary,
  #mainContents .odekake-txt-color-tertiary_sp {
    color: var(--color-odekake-text-tertiary);
  }
  #mainContents .odekake-txt-color-quaternary,
  #mainContents .odekake-txt-color-quaternary_sp {
    color: var(--color-odekake-text-quaternary);
  }
  #mainContents .odekake-txt-color-quinary,
  #mainContents .odekake-txt-color-quinary_sp {
    color: var(--color-odekake-text-quinary);
  }
  #mainContents .hero-ttl {
    font-size: 2.2rem;
  }
  #mainContents .hero-lead {
    font-size: 1.2rem;
    line-height: 1.667;
  }
  #mainContents .odekake-features-idx > div {
    padding: 20px 2px;
    font-size: 2rem;
    line-height: 1.2;
  }
  #mainContents .odekake-features-idx > div.odekake-feature-txt--sm {
    font-size: 1.8rem;
  }
  #mainContents .odekake-features {
    display: grid;
    gap: 18px;
    margin-top: 35px;
  }
  #mainContents .odekake-feature-ttl {
    font-size: 2rem;
    padding: 1px 5px;
  }
  #mainContents .odekake-feature-contents {
    padding: 15px;
  }
  #mainContents p.odekake-feature-txt {
    font-size: 1.2rem;
    line-height: 1.667;
    margin-top: 10px;
  }
  #mainContents .odekake-price-item {
    display: flex;
    align-items: start;
  }
  #mainContents .odekake-price-container {
    padding: 15px;
  }
  #mainContents .odekake-price-label {
    font-size: 1.4rem;
    line-height: 30px;
    width: 6.071em;
    margin-right: 10px;
    display: block;
    margin-top: 7px;
  }
  #mainContents .odekake-price-txt {
    display: block;
    margin-top: 7px;
    font-size: 2.6rem;
    line-height: 1.0769;
    letter-spacing: 0.05em;
  }
  #mainContents .odekake-price {
    width: 4em;
  }
  #mainContents .odekake-price-currency {
    display: inline-block;
    font-size: 1.8rem;
    margin-left: 0.3em;
  }
  #mainContents .odekake-price-tax {
    font-size: 1.8rem;
    display: block;
    margin-top: 10px;
    letter-spacing: 0.02em;
  }
  #mainContents .odekake-price-tax-inner {
    display: inline-block;
    width: 4.7em;
    text-align: right;
  }
  #mainContents .odekake-price-time {
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1;
    padding: 0.05em 5px;
    margin-top: 10px;
  }
  #mainContents .odekake-price-consultation {
    margin-bottom: 5px;
    margin-top: 15px;
  }
  #mainContents .odekake-price-consultation > span::before,
  #mainContents .odekake-price-consultation > span::after {
    height: 11px;
  }
  #mainContents .odekake-price-consultation > span::before {
    left: -12px;
  }
  #mainContents .odekake-price-consultation > span::after {
    right: -12px;
  }
  #mainContents .odekake-serch {
    padding-left: 22px;
    background-size: 17px 18px;
  }
  #mainContents .odekake-qa {
    gap: 15px;
  }
  #mainContents .odekake-qa-q {
    padding: 15px;
    line-height: 2;
  }
  #mainContents .odekake-qa-a {
    margin-top: 5px;
  }
  #mainContents .odekake-input-img {
    border-color: var(--color-odekake-text-quinary);
    width: 27px;
    height: 9px;
  }
}

@media only screen and (max-width: 750px) and (min-width: 580px) {
  #mainContents .odekake-price-txt {
    margin-top: 5px;
    display: flex;
    flex: 1;
    align-items: end;
    flex-wrap: wrap;
  }
  #mainContents .odekake-price-time {
    margin-left: 0.5em;
  }
}
