@charset "UTF-8";
:root {
  /* font-size: clamp(最小, 推奨値, 最大);
     推奨値は (375px〜1300px) の間で滑らかに変化するように計算しています。
  */
  /* font-small: 12px → 14px */
  --font-small: clamp(0.75rem, 0.709rem + 0.216vw, 0.875rem);
  /* font-base: 14px → 16px */
  --font-base: clamp(0.875rem, 0.824rem + 0.216vw, 1rem);
  /* font-big: 18px → 22px */
  --font-big: clamp(1.125rem, 1.024rem + 0.432vw, 1.375rem);
  /* font-h3: 20px → 28px */
  --font-h3: clamp(1.25rem, 1.047rem + 0.865vw, 1.75rem);
  /* font-h2: 24px → 36px */
  --font-h2: clamp(1.5rem, 1.196rem + 1.297vw, 2.25rem);
  /* font-h1: 30px → 48px */
  --font-h1: clamp(1.875rem, 1.495rem + 1.946vw, 3rem);
}

/*----------------

common

-----------------*/
[data-size=inner] {
  padding: 0 20px;
}

[data-size=w870] {
  max-width: 870px;
  width: 90%;
  margin: 0 auto;
}

[data-size=w1100] {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

[data-size=w1400] {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

[data-fontfamily=notosan] {
  font-family: "Noto Sans JP", sans-serif;
}

[data-color=green] {
  color: #009140;
}

[data-color=lightgreen] {
  color: #A4D068;
}

[data-color=orange] {
  color: #E27536;
}

[data-layout=full] {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.annotation {
  font-size: clamp(0.688rem, 0.651rem + 0.15vww, 0.75rem);
  margin-top: 3%;
  letter-spacing: 0;
  line-height: 18px;
  font-family: "Noto Sans JP", sans-serif;
}

sup {
  font-size: 10px;
  vertical-align: 6px;
}

.btn a:hover {
  transform: scale(0.95, 0.95);
}

span.line_spacing {
  letter-spacing: -0.2em;
}

.flexbox {
  display: flex;
}

.flex_center {
  justify-content: center;
  align-items: center;
}

.li_disc {
  list-style: disc;
  padding-left: 20px;
}

.taCenter {
  text-align: center;
}

.taRight {
  text-align: right;
}

.taLeft {
  text-align: left;
}

.dIBlock {
  display: inline-block;
}

.marker {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.text-smal {
  font-size: var(--font-small);
}

.text-big {
  font-size: var(--font-big);
}

/*----------------

layout調整

-----------------*/
main #mainV {
  margin-bottom: 0;
}

/*----------------

main

-----------------*/
p.head {
  font-size: clamp(1.063rem, 1.016rem + 0.23vw, 1.25rem);
  line-height: 2.2;
  margin-bottom: 50px;
}

main h2 {
  color: #009140;
  font-size: clamp(1.375rem, 1.08rem + 1.48vw, 2.188rem);
  line-height: 1.4;
  font-weight: 700;
  position: relative;
}

.contents {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.contents__heading {
  font-size: 1.7rem;
  color: #009140;
  font-weight: bold;
  font-weight: 800;
  text-align: center;
  font-style: italic;
  margin: 2.5rem 0 1.25rem;
}
.contents__heading.bar {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contents__heading.bar::before, .contents__heading.bar::after {
  content: "";
  border-top: 1px solid #009140;
  display: inline;
  flex: 1 0 5%;
}
.contents__text {
  padding: 2.5rem 1.875rem 3.75rem;
}
@media screen and (max-width: 480px) {
  .contents__heading {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.point .fukidashi-01-03 {
  position: relative;
  padding: 12px 16px;
  text-align: center;
}
.point .fukidashi-01-03::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #009140;
  /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}
.point .fukidashi-01-03::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  z-index: -1;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid;
  background-color: #ffffff;
  rotate: 135deg;
  translate: -50%;
}
.point__wrap {
  border: 2px solid #009140;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.point__heading01 {
  font-size: var(--font-h2);
}
.point__heading02 {
  background-color: #009140;
  color: #fff;
  font-size: var(--font-h2);
}
.point__flex {
  justify-content: space-between;
  gap: 0;
  margin: 2em auto;
  width: 90%;
  flex-direction: column;
}
.point__flex .item {
  flex: 1 1 auto;
  background: #fff;
  text-align: center;
  padding: 0.9375rem 1.25rem;
  box-sizing: border-box;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  line-height: 1.5;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.point__flex .item::before {
  flex: 0 0 0.9375rem;
  content: "";
  background: url(../images/tennis_recovery/arrow.svg) no-repeat;
  background-size: 1.875rem;
  width: 0.9375rem;
  height: 0.9375rem;
}
.point__flex .item span {
  display: block;
  width: 25px;
  height: 27px;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .point__flex {
    margin: 0.5em auto;
    width: 95%;
  }
  .point__flex .item {
    justify-content: flex-start;
    text-align: left;
    line-height: 1.4;
  }
  .point__wrap {
    margin: 0 3vw;
  }
}

.about__heading {
  font-size: var(--font-h2);
}
.about p {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__text {
    padding: 1.875rem 1.875rem 0;
  }
}

.program {
  background-color: #A4D068;
  padding: 0.3125rem 0 0;
  border-radius: 20px;
}
.program__heading {
  font-size: var(--font-h2);
  margin-bottom: 0;
  text-shadow: 1px 1px #fff;
}
.program__text {
  padding-top: 1.875rem;
}
.program__heading02 {
  display: flex;
  gap: 0.2em;
}
.program__heading02::before {
  content: " ";
  background-image: url(../images/tennis_recovery/arrow_down.svg);
  background-repeat: no-repeat;
  flex: 0 0 1.25rem;
}
.program__flex {
  width: 100%;
  gap: 2vw;
}
.program__flex li {
  flex: 1 1 25%;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  line-height: 1.5;
  font-weight: 700;
  justify-content: center;
  align-items: stretch;
}
.program__flex a {
  text-decoration: none;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.625rem;
  padding: 1.25rem 0.625rem;
  border-radius: 5px 5px;
  background: #fff;
  width: 100%;
  align-items: center;
}
.program__flex a:hover {
  opacity: 0.8;
}
.program__flex p {
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-feature-settings: "palt";
}
.program__flex p::before {
  content: "";
  flex: 0 0 15px;
  background: url("../images/tennis_recovery/check.svg") no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 900px) {
  .program__flex {
    flex-wrap: wrap;
  }
  .program__flex li {
    flex: 1 1 48%;
  }
  .program__flex p {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .program {
    margin: 0 3vw;
    padding-top: 2em;
  }
  .program__heading02 {
    justify-content: center;
  }
}
@media screen and (max-width: 425px) {
  .program__flex {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .program__flex li {
    flex: 1 1 auto;
  }
}

.box_pattern1 {
  padding: 5rem 0;
}
.box_pattern1 .heading02 {
  margin-bottom: 3.75rem;
}

.box_pattern2 {
  padding: 3.75rem 0;
}
.box_pattern2 .heading02 {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .box_pattern2 {
    margin: 0 3vw;
  }
}

.c_check {
  background: #cce2d7;
  border-radius: 20px;
}
.c_check__flex {
  width: 75%;
  margin: 3.75rem auto 0;
  gap: 2%;
}
.c_check__flex li {
  flex: 1 1 50%;
}

.r_stretch {
  border: 2px solid #A4D068;
  border-radius: 20px;
}
.r_stretch__img {
  margin-bottom: 1.25rem;
}

.kinmaku {
  background-color: #fcf4cf;
  border-radius: 20px;
}
.kinmaku__image {
  text-align: right;
  margin: 20px 60px 0 0;
}
.kinmaku__image img {
  width: 30%;
}

.cooldown {
  border-radius: 20px;
  border: 2px solid #A4D068;
}
.cooldown__img {
  margin-top: 1.25rem;
}

/*----------------

footer

-----------------*/
footer small {
  background: #141414;
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 10px 0;
}

.floating_banner {
  display: none !important;
}

/*----------------

Contents

-----------------*/

/*# sourceMappingURL=tennis_recovery.css.map */