@charset "UTF-8";
:root {
  --color-text: #231815;
  --color-green: #00a273;
  --color-green-bg: #d9f1ea;
  --color-green-bg-dark: #80d1b9;
  --color-green-bg-light: #ccece3;
  --color-green-bg-lighter: #deeee3;
  --color-green-bg-title: #e5f6f1;
  --color-green-bg-title-service: #b2e3d5;
  --color-green-bg-title-hospital: #33b58f;
  --color-green-fig: #4cbe9d;
  --color-yellow: #ffff00;
  --color-orange: #eb6120;
  --color-orange-light: #f5b08f;
  --color-orange-bg: #fdefe9;
  --gradient-green-stripe: repeating-linear-gradient(127deg, #02a273 1% 2%, #21ae85 2% 3%);
  --gradient-green-stripe-light: repeating-linear-gradient(127deg, #ecf4e3 1% 2%, #f5f8ee 2% 3%);
  --gradient-orange-stripe: repeating-linear-gradient(127deg, #eb611f 1% 2%, #ee753d 2% 3%);
  --gradient-orange-bg: linear-gradient(to bottom, #fff, #fff6e9);
  --gradient-orange-bg-title: linear-gradient(to right, #fce7dd, #fff 20%, #fff 80%, #fce7dd);
  --font-oswald: "Oswald", sans-serif;
}

* {
  background: transparent;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: unset;
  list-style: none;
  border: none;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 0.679rem + 1.37vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 0;
}

body {
  background: #fff;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  color: ver(--color-text);
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-spacing-trim: trim-auto;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-feature-settings: "palt";
}

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

.body-width {
  margin-inline: auto;
  max-width: 960px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.sec {
  padding: 1rem;
}
@media screen and (min-width: 845px) {
  .sec {
    padding: 3.6rem;
  }
}

.layout-img-box .layout-img {
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .layout-img-box {
    height: 100%;
  }
  .layout-img-box::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    clear: both;
  }
  .layout-img-box .layout-key {
    float: right;
    height: 5rem;
    width: 0;
    display: block;
  }
  .layout-img-box .layout-key.middle {
    height: 7rem;
  }
  .layout-img-box .layout-key.semi-long {
    height: 11rem;
  }
  .layout-img-box .layout-key.long {
    height: 13rem;
  }
  .layout-img-box .layout-img {
    margin-bottom: 0;
    float: right;
    clear: both;
  }
  .layout-img-box .layout-img:not(.inherit) {
    width: 50%;
  }
  .layout-img-box .layout-img:not(.inherit) img {
    width: 100%;
  }
}

.title-pentagon {
  margin-bottom: 2rem;
  padding-block: 0.5rem 1rem;
  color: #fff;
  text-align: center;
  filter: drop-shadow(0 0.4rem 0 var(--color-green-bg-light));
  position: relative;
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  .title-pentagon {
    font-size: 1.5rem;
  }
}
.title-pentagon::before {
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
  background: var(--color-green);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  z-index: -1;
}

.title-borderbox {
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: var(--color-green-bg-title);
  border: 1px solid var(--color-green);
  border-radius: 0.5rem;
  color: var(--color-green);
  text-align: center;
  font-size: 1.3rem;
  position: relative;
}
@media screen and (min-width: 845px) {
  .title-borderbox {
    font-size: 1.66rem;
  }
}
.title-borderbox .baloon {
  padding: 0.4rem 0.5rem;
  background: var(--color-orange);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -75%;
}
@media screen and (min-width: 845px) {
  .title-borderbox .baloon {
    translate: -50% -50%;
  }
}
.title-borderbox .baloon::after {
  content: "";
  background: var(--color-orange);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 0.75rem;
  height: 0.75rem;
  display: block;
  position: absolute;
  bottom: -0.25rem;
  left: 70%;
  rotate: -30deg;
}

.title-borderbox-light {
  margin: 2rem 4px;
  padding: 0.5rem;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px var(--color-green-bg-title-service);
  background: var(--color-green-bg-title-service);
  border-radius: 0.25rem;
  text-align: center;
}

.title-full {
  margin: 0 -1rem 1rem;
  padding: 2rem 1rem;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 845px) {
  .title-full {
    margin: 0 -3.6rem 3.6rem;
  }
}
.title-full.green {
  background: var(--gradient-green-stripe);
}
.title-full.orange {
  background: var(--gradient-orange-stripe);
}

.grad-green-light {
  margin-block: 1rem;
  padding: 1rem;
  background: var(--gradient-green-stripe-light);
}
@media screen and (min-width: 845px) {
  .grad-green-light {
    margin-block: 2rem;
    padding: 1rem 2rem;
  }
}

.list-dia {
  padding-left: 1em;
}
.list-dia li {
  text-indent: -1em;
}
.list-dia li::before {
  content: "◆";
  font-family: monospace;
  color: var(--color-green);
}

.list-deduction .deduction {
  display: flex;
  gap: 0.5rem;
}
.list-deduction .deduction:not(:last-of-type) {
  margin-bottom: 2rem;
}
.list-deduction .deduction .number {
  box-shadow: 0 0 0 1px var(--color-green);
  background: linear-gradient(to bottom, #fff, #e5e5e4);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0.125rem;
}
.list-deduction .deduction .number::before {
  content: "";
  background: linear-gradient(to bottom, #e5e5e4, #fff);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
}
.list-deduction .deduction .number::after {
  content: attr(data-number);
  color: var(--color-green);
  z-index: 1;
  font-family: monospace;
  font-weight: 700;
}
.list-sq {
  padding-left: 1.25em;
}
.list-sq li {
  text-indent: -1.25em;
  font-weight: 700;
  font-size: 1.25rem;
}
.list-sq li::before {
  margin-right: 0.25em;
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  font-family: monospace;
  background: var(--color-orange);
}
.list-sq li .text {
  text-indent: 0;
  font-size: 0.8rem;
  font-weight: 400;
}

.list-check {
  margin-top: 0.5rem;
  padding-left: 1em;
}
.list-check li {
  text-indent: -1em;
}
.list-check li::before {
  margin-right: 0.1em;
  content: "";
  background: url("../img/checkbox.svg") center no-repeat;
  background-size: contain;
  width: 0.9em;
  height: 0.9em;
  display: inline-block;
}

.list-disc {
  padding-left: 1em;
}
.list-disc li {
  text-indent: -1em;
}
.list-disc li::before {
  content: "●";
  font-family: monospace;
}

.list-circle-number {
  counter-reset: my-counter;
}
.list-circle-number li {
  padding-left: 1.25rem;
  position: relative;
}
.list-circle-number li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  font-family: monospace;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1rem;
  width: 1rem;
  color: var(--color-text);
  font-size: 0.8rem;
  line-height: 1;
  position: absolute;
  top: 0.25rem;
  left: 0;
}

.notice {
  padding-left: 1em;
  font-size: 0.75em;
}
.notice li,
.notice dt {
  text-indent: -1em;
}
.notice li::before,
.notice dt::before {
  content: "※";
  font-family: monospace;
}
.notice dt {
  font-feature-settings: "palt";
}
.notice br {
  display: none;
}
@media screen and (min-width: 845px) {
  .notice br {
    display: block;
  }
}

ol.notice {
  counter-reset: listnum; /* カウンターをリセット */
  list-style: none; /* 標準のスタイルは消す */
}
ol.notice li::before {
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: "※" counter(listnum); /* カウントした数に応じて番号を表示 */
  font-family: monospace;
}

dd.notice {
  text-indent: -1em;
  font-feature-settings: "palt";
}
dd.notice::before {
  content: "※";
  font-family: monospace;
}

.btn-shadow {
  filter: drop-shadow(0.2rem 0.2rem 0 rgba(0, 0, 0, 0.2));
}

.trigon {
  margin: 2rem auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--color-green);
  width: 5.8rem;
  height: 2rem;
  display: block;
}

.acd {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-green-bg-lighter);
  border-radius: 2.5rem;
  transition: all 0.3s;
}
.acd:open, .acd:hover {
  border-radius: 0.5rem;
}
.acd .acd-title {
  padding: 0.5rem;
  text-align: center;
  background: var(--color-green);
  color: #fff;
  border-radius: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acd .acd-title:hover {
  opacity: 0.8;
}
.acd .acd-title::after {
  margin-left: 0.25rem;
  content: "＋";
  border: 2px solid #fff;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-box: trim-both;
  line-height: 1;
  font-family: monospace;
  font-size: 0.8rem;
}
.acd .acd-title + * {
  margin-top: 1rem;
}
.acd:open .acd-title::after {
  content: "ー";
}
.acd ul,
.acd ol {
  margin: 1rem 0;
}
.acd h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-green);
}
.acd p {
  margin-bottom: 1rem;
}

#header {
  padding-block: 2.5rem 2rem;
  background: url("../img/kv-bg.svg") no-repeat var(--color-green);
  background-size: cover;
  position: relative;
  text-align: center;
}
#header #logo-cospa {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20vw;
}
@media screen and (min-width: 845px) {
  #header #logo-cospa {
    width: inherit;
  }
}
#header #site-title {
  margin-bottom: 0.5rem;
}
#header .title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 845px) {
  #header .title {
    font-size: 1.75rem;
  }
}
#header .title strong {
  font-size: 1.3em;
  color: var(--color-yellow);
}

#intro {
  background: var(--color-green-bg);
}
#intro .movie {
  margin-bottom: 1rem;
}
@media screen and (min-width: 845px) {
  #intro .movie {
    margin-bottom: 2.6rem;
  }
}
#intro .movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#intro .sec-title {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (min-width: 845px) {
  #intro .sec-title {
    font-size: 2rem;
  }
}
#intro .sec-title span {
  font-size: 1.3em;
  color: var(--color-green);
}
#intro .title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: var(--color-green);
  font-weight: 700;
}
@media screen and (min-width: 845px) {
  #intro .title {
    font-size: 1.75rem;
  }
}
#intro .title span {
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  #intro .title span {
    font-size: 1.45rem;
  }
}
#intro p {
  font-size: 1.4rem;
  font-weight: 500;
}
#intro p strong {
  color: var(--color-orange);
}
#intro p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
#intro p:has(.btn) {
  text-align: center;
}

#about {
  background: var(--color-green-bg-dark);
}
#about.sec {
  padding: 1rem;
}
#about .inner {
  padding: 1rem 1rem 1.5rem;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 845px) {
  #about .inner {
    padding: 1.3rem 2.6rem 2.6rem;
  }
}
#about .inner::before, #about .inner::after {
  content: "";
  width: 0;
  height: 0;
  border: solid 1rem transparent;
  display: block;
  position: absolute;
}
#about .inner::before {
  border-top-color: var(--color-green-bg-dark);
  border-right-color: var(--color-green-bg-dark);
  top: 0;
  right: 0;
}
#about .inner::after {
  border-bottom-color: var(--color-green-bg-dark);
  border-left-color: var(--color-green-bg-dark);
  bottom: 0;
  left: 0;
}
#about .sec-title {
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-green);
  font-size: 2rem;
}
@media screen and (min-width: 845px) {
  #about .sec-title {
    font-size: 2.6rem;
  }
}
#about .sec-title span {
  color: var(--color-text);
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  #about .sec-title span {
    font-size: 2rem;
  }
}
#about p {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (min-width: 845px) {
  #about p {
    font-size: 1.42rem;
  }
}

#sec-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3rem 1rem;
  flex-direction: column;
}
@media screen and (min-width: 845px) {
  #sec-nav {
    flex-direction: row;
  }
}
#sec-nav li {
  text-align: center;
}
@media screen and (min-width: 845px) {
  #sec-nav li {
    width: calc((100% - 2rem) / 3);
  }
}
#sec-nav li a {
  padding: 0.5rem;
  color: var(--color-green);
  background: var(--color-green-bg-light);
  border-radius: 0.25rem;
  transition: all 0.3s;
  display: block;
  font-weight: 700;
}
#sec-nav li a:hover {
  color: #fff;
  background: var(--color-green);
}
#sec-nav li a br {
  display: none;
}
@media screen and (min-width: 845px) {
  #sec-nav li a br {
    display: block;
  }
}

#exercise-therapy-plan h4 {
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-plan h4 {
    font-size: 1.45rem;
  }
}
#exercise-therapy-plan p,
#exercise-therapy-plan li {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-plan p,
  #exercise-therapy-plan li {
    font-size: 1.45rem;
  }
}
#exercise-therapy-plan .notice li {
  font-size: 0.9rem;
}
#exercise-therapy-plan .plan {
  border-top: 2px solid var(--color-green);
  text-align: center;
}
#exercise-therapy-plan .plan:not(:last-of-type) {
  margin-bottom: 4rem;
}
#exercise-therapy-plan .plan .plan-number {
  text-align: center;
  padding-inline: 1rem;
  width: 80%;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-plan .plan .plan-number {
    width: unset;
  }
}
#exercise-therapy-plan .plan .plan-title {
  margin-block: 1rem;
  color: var(--color-green);
  font-size: 1.5rem;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-plan .plan .plan-title {
    font-size: 1.875rem;
  }
}
#exercise-therapy-plan .plan p {
  margin-bottom: 1.5rem;
  font-feature-settings: "palt";
}

@media screen and (min-width: 845px) {
  #exercise-therapy-facility .inner {
    padding-inline: 2rem;
  }
}
#exercise-therapy-facility .title-borderbox:not(:first-of-type) {
  margin-top: 2rem;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility .title-borderbox:not(:first-of-type) {
    margin-top: 3rem;
  }
}
#exercise-therapy-facility p {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility p {
    font-size: 1.45rem;
  }
}
#exercise-therapy-facility p br {
  display: none;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility p br {
    display: block;
  }
}
#exercise-therapy-facility .btn {
  margin-block: 2rem 3rem;
  text-align: center;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility .btn {
    margin-block: 0;
  }
}
#exercise-therapy-facility .conditions p {
  font-size: 1.3rem;
}
#exercise-therapy-facility .conditions .conditions-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-green);
  text-align: center;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility .conditions .conditions-title {
    font-size: 1.54rem;
  }
}
#exercise-therapy-facility .conditions p {
  font-feature-settings: "palt";
}
#exercise-therapy-facility .conditions strong {
  color: var(--color-green);
}
#exercise-therapy-facility .conditions .to-notice {
  font-size: 0.75em;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility .conditions .to-notice {
    font-size: 0.5em;
  }
}
#exercise-therapy-facility .facility-list {
  margin-top: 2rem;
}
#exercise-therapy-facility .facility {
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-text);
  border-radius: 1rem;
}
#exercise-therapy-facility .facility .title {
  margin-block: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-green);
}
#exercise-therapy-facility .facility .title img {
  height: 1.5rem;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility .facility .title img {
    height: inherit;
  }
}
#exercise-therapy-facility .facility p {
  font-weight: 400;
}
#exercise-therapy-facility .facility .tips {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-green-bg-lighter);
  text-align: center;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility .facility .tips {
    padding: 2rem 1rem;
  }
}
#exercise-therapy-facility .facility .tips .tips-title {
  color: var(--color-green);
  font-size: 1.3rem;
  font-weight: 500;
}
#exercise-therapy-facility .facility .tips p {
  font-weight: 500;
  font-feature-settings: "palt";
  font-size: 1rem;
}
@media screen and (min-width: 845px) {
  #exercise-therapy-facility .facility .tips p {
    font-size: 1.3rem;
  }
}

#medical-expense-deduction {
  background: var(--color-green-bg);
}
#medical-expense-deduction .sec-title {
  padding: 1rem;
  text-align: center;
  border: 3px solid var(--color-orange);
  background: var(--gradient-orange-bg-title);
  position: relative;
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction .sec-title {
    font-size: 1.375rem;
  }
}
#medical-expense-deduction .sec-title::before, #medical-expense-deduction .sec-title::after {
  content: "";
  display: block;
  background: var(--color-orange-light);
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
}
#medical-expense-deduction .sec-title::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0.3rem;
  left: 0.3rem;
}
#medical-expense-deduction .sec-title::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0.3rem;
  right: 0.3rem;
}
#medical-expense-deduction .sec-title span {
  color: var(--color-orange);
  font-size: 1.5rem;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction .sec-title span {
    font-size: 1.75rem;
  }
}
#medical-expense-deduction p {
  font-size: 0.875rem;
}
#medical-expense-deduction .bracket {
  margin: 2rem auto;
  padding-inline: 2rem;
  font-weight: 700;
  background: url("../img/brackets-start.svg") left center no-repeat, url("../img/brackets-end.svg") right center no-repeat, url("../img/illust-karte.svg") right 2rem center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction .bracket {
    width: 70%;
  }
}
#medical-expense-deduction .bracket .check {
  font-size: 1.2rem;
}
#medical-expense-deduction .bracket .check::before {
  content: "";
  background: url("../img/checkbox-red.svg") center no-repeat;
  background-size: 100% auto;
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25em;
}
#medical-expense-deduction .bracket .or {
  text-indent: 1.45em;
}
#medical-expense-deduction .bracket dt {
  font-size: 1.2375rem;
}
#medical-expense-deduction .intro {
  margin-inline: 1rem;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction .intro {
    margin-inline: 4.4rem;
  }
}
#medical-expense-deduction #flow-chart {
  margin-top: 2rem;
}
#medical-expense-deduction #flow-chart .flow {
  position: relative;
}
#medical-expense-deduction #flow-chart .flow:not(:last-of-type) {
  margin-bottom: 2rem;
}
#medical-expense-deduction #flow-chart .flow:not(:last-of-type)::after {
  content: "";
  background: var(--color-orange-light);
  width: 5px;
  height: 100%;
  display: block;
  position: absolute;
  top: 3.4rem;
  left: calc(1.7rem - 2px);
}
#medical-expense-deduction #flow-chart .flow .flow-title {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  background: linear-gradient(to right, var(--color-green-bg) 1.7rem, #fff 1.7rem);
}
#medical-expense-deduction #flow-chart .flow .flow-title span {
  color: var(--color-orange);
}
#medical-expense-deduction #flow-chart .flow .flow-title br {
  display: none;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction #flow-chart .flow .flow-title br {
    display: block;
  }
}
#medical-expense-deduction #flow-chart .flow .flow-title .step {
  border: 5px solid var(--color-orange-light);
  background: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  text-align: center;
  line-height: 1;
  width: 3.4rem;
  height: 3.4rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--font-oswald);
  color: var(--color-orange);
  z-index: 1;
}
#medical-expense-deduction #flow-chart .flow .flow-title .step span {
  font-size: 1.7rem;
  display: block;
}
#medical-expense-deduction #flow-chart .flow .flow-content {
  margin-left: 4.4rem;
}
#medical-expense-deduction #flow-chart .flow .flow-content .procedure {
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction #flow-chart .flow .flow-content .procedure {
    flex-direction: row;
  }
}
#medical-expense-deduction #flow-chart .flow .flow-content .procedure .procedure-title {
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--color-orange);
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction #flow-chart .flow .flow-content .procedure .procedure-title {
    font-size: 1.08rem;
  }
}
#medical-expense-deduction #flow-chart .flow .flow-content p {
  font-size: 1.2rem;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction #flow-chart .flow .flow-content p {
    font-size: 1rem;
  }
}
#medical-expense-deduction #flow-chart .flow .notice {
  margin-top: 1rem;
}
#medical-expense-deduction #flow-chart .flow .fig1 {
  position: absolute;
  top: -1rem;
  right: 2rem;
}
#medical-expense-deduction #flow-chart .flow .fig1 img {
  width: 3rem;
}
@media screen and (min-width: 845px) {
  #medical-expense-deduction #flow-chart .flow .fig1 img {
    width: inherit;
  }
}
#medical-expense-deduction #flow-chart .btn {
  text-align: center;
}
#medical-expense-deduction #flow-chart .points-to-note {
  margin-top: 2rem;
}
#medical-expense-deduction #flow-chart .points-to-note .schedule {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--color-orange);
  border-radius: 0.25rem;
  background: var(--color-orange-bg);
  font-size: 1.06rem;
  display: inline-block;
}
#medical-expense-deduction #flow-chart .points-to-note strong {
  color: var(--color-orange);
  font-size: 1.18rem;
}

#service .content {
  position: relative;
}
#service .content p {
  margin-bottom: 1rem;
  color: var(--color-green);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 845px) {
  #service .content p {
    font-size: 1.75rem;
  }
}
#service .content p span {
  font-size: 1rem;
}
#service .content p sup {
  font-size: 0.75rem;
  color: var(--color-text);
}
#service .content .example {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}
#service .content .example dt {
  white-space: nowrap;
}
#service .content .example dt::after {
  content: ")";
}
#service .content .example dd br {
  display: none;
}
@media screen and (min-width: 845px) {
  #service .content .example dd br {
    display: block;
  }
}
#service .content .fig-box {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 845px) {
  #service .content .fig-box {
    margin-top: 0;
    display: inherit;
  }
}
#service .content .fig-box .fig1 {
  text-align: center;
}
@media screen and (min-width: 845px) {
  #service .content .fig-box .fig1 {
    position: absolute;
    top: 0;
    right: 4rem;
  }
}
#service .content .fig-box .fig2 {
  text-align: center;
}
@media screen and (min-width: 845px) {
  #service .content .fig-box .fig2 {
    position: absolute;
    top: 4rem;
    right: 0;
  }
}

#medical-expense-simulation {
  margin-block: 2rem 1rem;
  padding: 2rem 1rem;
  border: 4px solid var(--color-green);
  border-radius: 1rem;
}
#medical-expense-simulation .form-title {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: var(--color-green-bg-title-service);
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 845px) {
  #medical-expense-simulation .form-title {
    font-size: 1.5rem;
  }
}
#medical-expense-simulation .form-group {
  margin-top: 1rem;
  display: grid;
  align-items: start;
  grid-template: "icon" auto "enter" auto "notice" auto/auto;
}
@media screen and (min-width: 845px) {
  #medical-expense-simulation .form-group {
    grid-template: "icon enter" auto "icon notice" auto/auto 1fr;
  }
}
#medical-expense-simulation .form-group label {
  color: var(--color-green);
  font-weight: 700;
  font-feature-settings: "palt";
}
#medical-expense-simulation .form-group input,
#medical-expense-simulation .form-group select {
  margin-top: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 162, 115, 0.5) inset;
  border: 2px solid var(--color-green);
  border-radius: 0.25rem;
  width: 82%;
  color: var(--color-text);
  font-size: 1rem;
  background: var(--color-green-bg-title);
}
#medical-expense-simulation .form-group input {
  text-align: right;
}
#medical-expense-simulation .enter-group {
  grid-area: enter;
  display: flex;
  align-items: end;
  gap: 0.25rem;
}
#medical-expense-simulation .enter-group span {
  font-size: 0.75rem;
}
#medical-expense-simulation .form-result {
  margin-block: 2rem 1rem;
  padding: 1rem;
  background: var(--color-orange-bg);
  border-radius: 0.25rem;
}
#medical-expense-simulation .form-result .result-group {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
#medical-expense-simulation .form-result .result-group .result {
  margin-inline: 0.25rem;
  color: var(--color-orange);
  font-size: 1.5rem;
  font-weight: 700;
}
#medical-expense-simulation .required,
#medical-expense-simulation .any {
  grid-area: icon;
  margin: 0.2rem 0.5rem 0.2rem 0;
  padding: 0.125rem 0.75rem;
  background: var(--color-orange);
  color: #fff;
  border-radius: 1rem;
  font-size: 0.6rem;
  font-weight: 500;
  text-spacing-trim: trim-auto;
  max-width: 2.75rem;
  text-align: center;
}
#medical-expense-simulation .any {
  background: var(--color-green);
}
#medical-expense-simulation .notice {
  grid-area: notice;
  margin-top: 0.5rem;
  font-size: 0.6rem;
}

#affiliated-medical-institutions #ami-list {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions #ami-list {
    margin-bottom: 3rem;
    flex-direction: row;
    align-items: center;
  }
}
#affiliated-medical-institutions #ami-list li {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 0.8rem;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions #ami-list li {
    width: calc((100% - 0.5rem) / 2);
  }
}
#affiliated-medical-institutions #ami-list li .name {
  font-size: 1rem;
  display: block;
}
#affiliated-medical-institutions #ami-list li .name.long {
  letter-spacing: -0.1em;
}
#affiliated-medical-institutions #ami-nav {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions #ami-nav {
    margin-bottom: 3.6rem;
    gap: 0.5rem;
    flex-direction: row;
  }
}
#affiliated-medical-institutions #ami-nav input {
  display: none;
}
#affiliated-medical-institutions #ami-nav input:checked + label {
  background: var(--color-green);
  color: #fff;
}
#affiliated-medical-institutions #ami-nav label {
  padding: 0.5rem 1rem;
  background: var(--color-green-bg-lighter);
  border-radius: 0.25rem;
  transition: all 0.3s;
  color: var(--color-green);
  font-weight: 700;
  display: block;
  text-align: center;
  cursor: pointer;
}
#affiliated-medical-institutions #ami-nav label::after {
  margin-left: 0.25rem;
  content: "▼";
}
#affiliated-medical-institutions #ami-nav label:hover {
  background: var(--color-green);
  color: #fff;
}
#affiliated-medical-institutions .local {
  display: none;
}
#affiliated-medical-institutions #ami-nav:has(#all-toggle:checked) ~ .local {
  display: block;
}
#affiliated-medical-institutions #ami-nav:has(#kyoto-toggle:checked) ~ #kyoto {
  display: block;
}
#affiliated-medical-institutions #ami-nav:has(#muko-nagaokakyo-toggle:checked) ~ #muko-nagaokakyo {
  display: block;
}
#affiliated-medical-institutions #ami-nav:has(#kyotanabe-toggle:checked) ~ #kyotanabe {
  display: block;
}
#affiliated-medical-institutions .ami {
  padding: 0 1rem 1rem;
  background: var(--color-green-bg);
  border-radius: 0.5rem;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami {
    padding: 0 1.5rem 1.5rem;
  }
}
#affiliated-medical-institutions .ami {
  margin-bottom: 3rem;
}
#affiliated-medical-institutions .ami .ami-title {
  margin: 0 -1rem 1rem;
  padding: 0.25rem 1rem;
  background: var(--color-green-bg-title-hospital);
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 5rem;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami .ami-title {
    margin: 0 -1.5rem 1.5rem;
    font-size: 1.41rem;
  }
}
#affiliated-medical-institutions .ami .ami-title .name {
  font-size: 1.4rem;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami .ami-title .name {
    font-size: 2.24rem;
  }
}
#affiliated-medical-institutions .ami .ami-title .name.long {
  letter-spacing: -0.1em;
}
#affiliated-medical-institutions .ami p {
  font-size: 1.25rem;
  text-align: justify;
}
#affiliated-medical-institutions .ami .catchphrase {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  font-feature-settings: "palt";
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami .catchphrase {
    font-size: 1.625rem;
  }
}
#affiliated-medical-institutions .ami .ami-aside {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-green);
}
#affiliated-medical-institutions .ami .ami-aside p,
#affiliated-medical-institutions .ami .ami-aside li {
  font-size: 1.16rem;
}
#affiliated-medical-institutions .ami .ami-aside .tel {
  font-size: 1.64rem;
  font-weight: 700;
}
#affiliated-medical-institutions .ami .ami-aside .links {
  margin-top: 1rem;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami .ami-aside .links {
    flex-direction: row;
    gap: 1.5rem;
  }
}
#affiliated-medical-institutions .ami .ami-aside .links li {
  width: 100%;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami .ami-aside .links li {
    width: unset;
  }
}
#affiliated-medical-institutions .ami .ami-aside .links a {
  padding: 0.25rem 0.25rem 0.25rem 0.75rem;
  background: #fff;
  border: 1px solid var(--color-green);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: space-between;
  color: var(--color-green);
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami .ami-aside .links a {
    padding: 0 0.25rem 0 0.75rem;
  }
}
#affiliated-medical-institutions .ami .ami-aside .links a::after {
  content: "";
  background: url("../img/arrow.svg") center center no-repeat var(--color-green-bg-title-hospital);
  border-radius: 50%;
  background-size: 50% auto;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami .ami-aside .links a::after {
    width: 1em;
    height: 1em;
  }
}
@media screen and (min-width: 845px) {
  #affiliated-medical-institutions .ami .layout-img {
    margin-left: 1rem;
  }
}

#faq .faq {
  padding: 1rem;
  border: 1px solid var(--color-orange);
  border-radius: 0.5rem;
  background: var(--gradient-orange-bg);
}
#faq .faq:not(:last-of-type) {
  margin-bottom: 2rem;
}
#faq .faq .q {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 845px) {
  #faq .faq .q {
    font-size: 1.625rem;
    gap: 1rem;
  }
}
#faq .faq .q::before {
  content: "";
  background: url("../img/icn-q.svg") center no-repeat;
  background-size: contain;
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  display: block;
}
@media screen and (min-width: 845px) {
  #faq .faq .q::before {
    width: 3.45rem;
    height: 3.45rem;
    min-width: 80px;
  }
}
#faq .faq .q br {
  display: none;
}
@media screen and (min-width: 845px) {
  #faq .faq .q br {
    display: block;
  }
}
#faq .faq .a {
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  #faq .faq .a {
    font-size: 1.375rem;
  }
}

#need .title {
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (min-width: 845px) {
  #need .title {
    font-size: 2rem;
  }
}
#need .title-underline {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-text);
  font-weight: 700;
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  #need .title-underline {
    font-size: 1.66rem;
  }
}
#need .title-sq {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  #need .title-sq {
    font-size: 1.66rem;
  }
}
#need .title-sq::before {
  content: "◼︎";
}
#need .title-sq.space {
  margin-block: 2rem 1rem;
}

#shops .shop {
  margin-bottom: 1rem;
}
@media screen and (min-width: 845px) {
  #shops .shop {
    margin-bottom: 2rem;
  }
}
#shops .shop .shop-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-orange);
}
@media screen and (min-width: 845px) {
  #shops .shop .shop-name {
    font-size: 1.66rem;
  }
}
#shops .shop .tel {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (min-width: 845px) {
  #shops .shop .tel {
    font-size: 1.66rem;
  }
}
#shops .experience {
  margin-top: 3.6rem;
  padding: 1rem 1rem 2rem;
  background: var(--color-orange-bg);
  color: var(--color-orange);
  text-align: center;
}
#shops .experience .experience-title {
  font-size: 1.3rem;
}
@media screen and (min-width: 845px) {
  #shops .experience .experience-title {
    font-size: 2rem;
  }
}
#shops .experience .experience-title span {
  font-size: 2rem;
}
@media screen and (min-width: 845px) {
  #shops .experience .experience-title span {
    font-size: 2.45rem;
  }
}
#shops .experience p {
  margin-top: 1rem;
}

#footer .sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (min-width: 845px) {
  #footer .sns {
    gap: 3.6rem;
  }
}
#footer .sns img {
  width: 15vw;
}
@media screen and (min-width: 845px) {
  #footer .sns img {
    width: inherit;
  }
}
#footer .footer-nav {
  margin-block: 3.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#footer .footer-nav li:nth-of-type(1)::after, #footer .footer-nav li:nth-of-type(2)::after {
  content: "";
  margin-inline: 0.5rem;
  width: 1px;
  height: 1rem;
  display: inline-block;
  background: var(--color-text);
  vertical-align: middle;
}
#footer #copyright {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}

#fixed-bnr {
  text-transform: uppercase;
  text-align: center;
  position: sticky;
  bottom: 0;
  z-index: 50;
}
@media screen and (min-width: 1024px) {
  #fixed-bnr {
    position: fixed;
    top: 15vh;
    right: 0;
    bottom: unset;
    writing-mode: vertical-rl;
    right: unset;
    left: calc(50% + 480px);
    translate: -100% 0;
  }
}
#fixed-bnr a {
  padding: 1rem 0.25rem;
  background: var(--color-orange);
  color: #fff;
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 1024px) {
  #fixed-bnr a {
    border-radius: 4px 0 0 4px;
  }
}

.swiper {
  position: relative;
}
.swiper .button-next,
.swiper .button-prev {
  cursor: pointer;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
}
@media screen and (min-width: 845px) {
  .swiper .button-next,
  .swiper .button-prev {
    width: 40px;
    height: 40px;
  }
}
.swiper .button-next::before,
.swiper .button-prev::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 15px;
}
@media screen and (min-width: 845px) {
  .swiper .button-next::before,
  .swiper .button-prev::before {
    width: 12px;
    height: 12px;
    top: 20px;
  }
}
.swiper .button-next {
  right: -15px;
}
@media screen and (min-width: 845px) {
  .swiper .button-next {
    right: -20px;
  }
}
.swiper .button-next::before {
  left: 2px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 845px) {
  .swiper .button-next::before {
    left: 0;
  }
}
.swiper .button-prev {
  left: -15px;
}
@media screen and (min-width: 845px) {
  .swiper .button-prev {
    left: -20px;
  }
}
.swiper .button-prev::before {
  right: 2px;
  transform: translateY(-50%) rotate(-135deg);
}
@media screen and (min-width: 845px) {
  .swiper .button-prev::before {
    right: 0;
  }
}
.swiper .pagination {
  margin: 0 2rem 0.5rem;
  display: flex;
  justify-content: center;
  z-index: 1;
  width: unset;
}
@media screen and (min-width: 845px) {
  .swiper .pagination {
    margin: 1rem 2rem;
  }
}
.swiper .pagination span {
  width: 10px;
  height: 10px;
  background: #cfcfcf;
  opacity: 1;
}
.swiper .pagination .swiper-pagination-bullet-active {
  background: #1e4729;
}/*# sourceMappingURL=style.css.map */