@charset "utf-8";
body{
  color: #000;
  font-family: "M PLUS 1", sans-serif;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #FF6363;
}

a:hover {
  text-decoration: none;
  color: unset;
}

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

p
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

u {
  text-decoration: none;
  display: inline-block;
}
strong {
  font-weight: unset;
  display: inline-block;
}


/* 共通パーツ */
.inner {
  max-width: 1920px;
  margin: 0 auto;
}

/* パンくずリスト */
.pg-breadcrumb {
      display: flex;
    column-gap: 0.5em;
    align-items: center;
  padding-left: clamp(1.25rem, 0.083rem + 2.43vw, 3rem);
}
.breadcrumb__text {
      font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #FF9191;
}

/* pg-fv */
.pg-fv {
  padding-top: 120px;
  position: relative;
}
.pg-fv__container {
  margin-top: 8px;
}
.pg-fv__title {
      margin: auto;
    margin-top: clamp(2rem, 1.417rem + 1.22vw, 2.875rem);
    position: relative;
    width: clamp(15.25rem, 6rem + 19.27vw, 29.125rem);
    height: clamp(3.688rem, 1.521rem + 4.51vw, 6.938rem);
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pg-fv-deco1 {
      position: absolute;
    width: clamp(2.563rem, 0.979rem + 3.3vw, 4.938rem);
    bottom: 0;
    left: -10%;
}
.pg-fv-deco2 {
      position: absolute;
    width: clamp(2.563rem, 0.979rem + 3.3vw, 4.938rem);
    bottom: 0;
    right: -10%;
}
.pg-fv__sub {
      font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
    font-weight: 400;
}
.pg-fv__main {
    margin-top: 8px;
      font-size: clamp(1.125rem, 0.542rem + 1.22vw, 2rem);
    font-weight: 500;
    color: #FF9191;
}
@media (max-width: 767px) {
  .pg-fv {
    padding-top: 77px;
  }
  .pg-deco1 {
    display: none;
  }
  .pg-deco2 {
    width: 275px;
  }
}

/* btn__pink */
.btn__pink {
      display: flex;
    position: relative;
    padding: clamp(0.688rem, 0.563rem + 0.26vw, 0.875rem) clamp(1.25rem, 1.167rem + 0.17vw, 1.375rem);
    border: 2px solid #FF6363;
    border-radius: 28px;
    background-color: #fff;
    column-gap: clamp(1.313rem, 1.146rem + 0.35vw, 1.563rem);
    align-items: center;
  color: #FF6363;
  width: fit-content;
  transition: all 0.5s;
}
.btn__deco {
      position: absolute;
    width: clamp(2.25rem, 1.792rem + 0.95vw, 2.938rem);
    top: -24%;
    left: -14%;
    z-index: -1;
}
.btn__text {
      font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
    font-weight: 700;
    color: #FF6363;
    line-height: 1;
  transition: all 0.5s;
}
.btn__icon {
      background-image: url(https://higasahoukan.jp/system_panel/uploads/images/btn-arrow.png);
    width: clamp(0.688rem, 0.479rem + 0.43vw, 1rem);
    height: clamp(0.563rem, 0.396rem + 0.35vw, 0.813rem);
    background-size: contain;
    background-repeat: no-repeat;
  transition: all 0.5s;
}
.btn__pink:hover {
  background-color: #FF6363;
  color: #fff;
}
.btn__pink:hover .btn__text {
  color: #fff;
}
.btn__pink:hover .btn__icon {
  background-image: url(https://higasahoukan.jp/system_panel/uploads/images/btn-arrow--white.png);
}

/* section__title */
.section__title {
      width: fit-content;
    text-align: center;
    padding: 0 20px;
    padding-bottom: 4px;
    border-bottom: 2px dashed #000;
    margin: auto;
}
.section-title__sub {
      font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
    color: #87C74A;
    font-weight: 700;
}
.section-title__main {
      font-size: clamp(0.875rem, 0.458rem + 0.87vw, 1.5rem);
    font-weight: 500;
}

/* title-bg-white */
.title-bg-white {
      width: fit-content;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    padding: 8px clamp(1rem, 2.08vw, 2.5rem);
    font-size: clamp(1.125rem, 0.542rem + 1.22vw, 2rem);
    font-weight: 500;
    text-align: center;
}