@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.45;
  font-family: "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.05em;
}

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

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

*:focus {
  outline: none;
}

p,
ul li,
ol li {
  text-align: justify;
  text-justify: inter-ideograph;
}

img,
picture {
  display: block;
}

b {
  font-weight: bold;
}

p + p {
  margin-top: 1.5em;
}

img {
  width: 100%;
}

main {
  margin-top: 6rem;
}

/*
* wrapper
*/
.l-base {
  width: min(100% - 40px, 550px);
  margin-right: auto;
  margin-left: auto;
}

.l-wide {
  width: min(100% - 40px, 800px);
  margin-right: auto;
  margin-left: auto;
}

/*
* header
*/
.l-hdr {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
}

/*
 * 見出し
 */
.c-heading-belt {
  position: relative;
  margin-bottom: 4rem;
  padding: 2rem 0;
  background: #eb6ea0;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.c-heading-belt:before {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-top: 2.5rem solid #eb6ea0;
  border-right: 2.5rem solid transparent;
  border-left: 2.5rem solid transparent;
  content: "";
}

.c-heading-kadomaru {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  background: #eb6ea0;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.c-heading-kadomaru.-small {
  padding: 1rem;
  font-size: 2rem;
}

/*
 * サムネイル
 */
.c-thumb {
  margin-top: 4rem;
}

/*
 * header
 */
.p-hdr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 6rem;
}
.p-hdr__h1 {
  width: 20rem;
}
.p-hdr__btn-tel, .p-hdr__btn-net, .p-hdr__btn-line {
  display: none;
}
.p-hdr__btn-tel {
  background: #eb6ea0;
  font-style: normal;
  font-size: 1.8rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0.1em;
}
.p-hdr__btn-tel img {
  width: 1rem;
}
.p-hdr__btn-net, .p-hdr__btn-line {
  font-weight: bold;
  font-size: 1.3rem;
}
.p-hdr__btn-net img, .p-hdr__btn-line img {
  width: 1.5rem;
}
.p-hdr__btn-net {
  background: #11A5FA;
}
.p-hdr__btn-line {
  background: #06C755;
}

/*
 * article
 */
.p-tv {
  padding: 6rem 0;
  background: url("../images/topview_sp.webp") no-repeat center/cover;
}
.p-tv__inner {
  position: relative;
  padding: 4rem 0;
}
.p-tv__inner:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.5);
  content: "";
}
.p-tv__txt {
  position: relative;
  margin: 0 2rem 2rem;
  padding: 0.5rem;
  background: #eb6ea0;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
.p-tv__h1 {
  position: relative;
  color: #eb6ea0;
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
}
.p-tv__h1 span {
  display: inline;
  background: linear-gradient(to bottom, transparent 60%, #FCEE2D 60%);
}

.p-nayami {
  padding-bottom: 6rem;
  background: #F8EDEC;
  text-align: center;
}
.p-nayami__list {
  display: inline-block;
  margin-bottom: 4rem;
  padding: 3rem;
  background: #fff;
}
.p-nayami__list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 0 1rem;
  font-weight: bold;
  font-size: 1.8rem;
}
.p-nayami__list li:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.5rem;
  background: url("../images/common/icon_check.svg") no-repeat center top/contain;
  content: "";
}
.p-nayami__list li + li {
  margin-top: 1em;
}

.p-cause {
  padding: 6rem 0;
  text-align: center;
}
.p-cause__list {
  display: inline-block;
  margin: 4rem 0;
  padding: 3rem;
  background: #F4F4F4;
}
.p-cause__list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 0 1rem;
  font-size: 1.8rem;
}
.p-cause__list li:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0.7rem;
  background: url("../images/common/icon_cross.svg") no-repeat center top/contain;
  content: "";
}
.p-cause__list li + li {
  margin-top: 0.7em;
}

.p-treat {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #F8EDEC, #fff);
}
.p-treat__2col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 4rem;
  gap: 2rem 0;
}
.p-treat__2col img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18rem;
}
.p-treat__list {
  margin: 3rem 0;
  padding-left: 4rem;
}
.p-treat__list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 0 1rem;
}
.p-treat__list li:before {
  content: "●";
  color: #eb6ea0;
}
.p-treat__list li + li {
  margin-top: 0.7em;
}
.p-treat__note {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  color: #6F6F6F;
  font-size: 1.2rem;
}
.p-treat__3col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 5rem 0;
  gap: 2rem 2rem;
}
.p-treat__3col img {
  width: calc((100% - 2rem) / 2);
}

.p-feat {
  padding-bottom: 6rem;
  background: #F8EDEC;
}
.p-feat__item h3 {
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.p-feat__item + .p-feat__item {
  margin-top: 6rem;
}
.p-feat__2col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 4rem;
  gap: 0 2rem;
}
.p-feat__2col img {
  width: calc((100% - 2rem) / 2);
}

.p-ex {
  padding: 6rem 0;
  background: #FFCACA;
}
.p-ex__item + .p-ex__item {
  margin-top: 4rem;
}
.p-ex__item dt {
  margin-bottom: 1rem;
  text-align: center;
}
.p-ex__item dd {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0 6rem;
}
.p-ex__item dd figure {
  position: relative;
  -ms-flex: 1;
      flex: 1;
}
.p-ex__item dd figure:first-of-type:after {
  position: absolute;
  top: 50%;
  right: -4rem;
  transform: translateY(-50%);
  border-top: 2.5rem solid transparent;
  border-bottom: 2.5rem solid transparent;
  border-left: 2rem solid #eb6ea0;
  content: "";
}
.p-ex__item dd figcaption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem 1.5rem;
  border-bottom-right-radius: 1rem;
  background: #fff;
  font-size: 1.4rem;
}

.p-voice {
  padding: 6rem 0;
}
.p-voice__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8rem 0;
}
.p-voice__list li {
  position: relative;
}
.p-voice__list li + li:before {
  position: absolute;
  top: -4.1rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: #eb6ea0;
  content: "";
}
.p-voice__list img {
  width: min(100%, 40rem);
  margin: 0 auto 2rem;
}
.p-voice__list h3 {
  margin: 2rem 0 3rem;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.p-voice__name {
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.p-price {
  padding: 6rem 0;
  background: #F8EDEC;
}
.p-price__table {
  width: 100%;
}
.p-price__table th {
  padding: 1.5rem;
  background: #eb6ea0;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}
.p-price__table th:not(:first-of-type) {
  border-left: 1px solid #E0E0E0;
}
.p-price__table td {
  padding: 1rem;
  background: #fff;
  text-align: center;
  vertical-align: middle;
}
.p-price__table td:not(:first-of-type) {
  border-left: 1px solid #E0E0E0;
}
.p-price__table tr {
  border-top: 1px solid #E0E0E0;
}
.p-price__img {
  width: min(100%, 30rem);
  margin: 2rem auto 0;
}
.p-price__note {
  margin-top: 1rem;
  color: #6F6F6F;
  font-size: 1.6rem;
}

.p-intro {
  padding-bottom: 6rem;
}
.p-intro__2col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-bottom: 4rem;
  gap: 3rem 0;
}
.p-intro__2col img {
  width: 25rem;
  margin: 0 auto;
}
.p-intro__h2 {
  margin-top: 4rem;
  margin-bottom: 0.5rem;
  color: #eb6ea0;
  font-weight: bold;
}
.p-intro__list {
  font-size: 1.6rem;
  line-height: 1.7;
}
.p-intro__frame {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid #E0E0E0;
}

/*
 * article
 */
.p-aside {
  padding-bottom: 6rem;
}
.p-aside__h-em {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.p-aside__h-em:before, .p-aside__h-em:after {
  width: 3rem;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  content: "";
}
.p-aside__h-em:before {
  transform: rotate(55deg);
}
.p-aside__h-em:after {
  transform: rotate(-55deg);
}
.p-aside__txt {
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.p-aside__btn-net, .p-aside__btn-line {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 8rem;
  margin: 2rem 0;
  gap: 0 1rem;
  border-radius: 1rem;
  color: #fff;
  font-weight: bold;
  transition: opacity 0.3s;
}
.p-aside__btn-net:hover, .p-aside__btn-line:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
.p-aside__btn-net:after, .p-aside__btn-line:after {
  position: absolute;
  top: 0;
  right: 2rem;
  width: 1rem;
  height: 100%;
  background: url("../images/common/icon_arrow_white.svg") no-repeat center/contain;
  content: "";
}
.p-aside__btn-net img, .p-aside__btn-line img {
  width: 3rem;
}
.p-aside__btn-net {
  background: #11A5FA;
}
.p-aside__btn-line {
  background: #06C755;
}
.p-aside__note {
  font-size: 1.4rem;
  text-align: center;
}
.p-aside__2col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 4rem;
  gap: 0 2rem;
}
.p-aside__2col .large {
  width: calc(60% - 1rem);
}
.p-aside__2col .small {
  width: calc(40% - 1rem);
}

.p-sp-links {
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
}
.p-sp-links__tel, .p-sp-links__line, .p-sp-links__net {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 0.5rem 0;
  color: #fff;
  font-weight: bold;
}
.p-sp-links__tel img, .p-sp-links__line img, .p-sp-links__net img {
  height: 2rem;
}
.p-sp-links__tel {
  border-right: 1px solid #fff;
  background: #eb6ea0;
}
.p-sp-links__net {
  border-right: 1px solid #fff;
  background: #11A5FA;
}
.p-sp-links__line {
  background: #06C755;
}

/*
 * footer
 */
.p-ftr {
  border-top: 2px solid #eb6ea0;
}
.p-ftr__inner {
  padding: 2rem 0 0;
}
.p-ftr__right {
  margin-top: 3rem;
}
.p-ftr__left {
  text-align: center;
}
.p-ftr__h1 {
  display: inline-block;
  width: 25rem;
  margin-bottom: 3rem;
}
.p-ftr__table {
  width: 100%;
  margin-bottom: 3rem;
}
.p-ftr__table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.p-ftr__table th {
  width: 10rem;
  vertical-align: middle;
}
.p-ftr__table th,
.p-ftr__table td {
  padding: 0.8rem 0;
  text-align: left;
}
.p-ftr__days {
  display: inline-block;
}
.p-ftr__cr {
  padding: 3rem 0 10rem;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}
.p-ftr__map {
  position: relative;
  aspect-ratio: 335/232;
}
.p-ftr__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-ftr__gallery {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 3rem;
  gap: 2rem 2rem;
}
.p-ftr__gallery img {
  width: calc((100% - 2rem) / 2);
}
.p-ftr__logo {
  display: block;
  width: 32rem;
  margin: 5rem auto 0;
  transition: opacity 0.3s;
}
.p-ftr__logo:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.p-days table {
  width: 100%;
  color: #000;
  font-size: 1.2rem;
}
.p-days th,
.p-days td {
  padding: 0.5rem 0.7rem;
  border: 1px solid #6F6F6F;
  font-weight: bold;
  vertical-align: middle;
}
.p-days td {
  text-align: center;
}
.p-days__note {
  margin-top: 0.5rem;
  text-align: right;
}

/*
 * block
 */
.u-sp {
  display: block;
}

.u-tb {
  display: block;
}

.u-pc {
  display: none;
}

.u-hidden {
  display: none;
}

/*
 * color
 */
.u-red {
  color: #F83838;
}

.u-white {
  color: #fff;
}

.u-blue {
  color: #11A5FA;
}

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

	Reset

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

	Foundation

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

	Layout

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

	Object

-------------------------------*/
/*---------- Component ----------*/
/*---------- Project ----------*/
/*---------- Utility ----------*/
@media only screen and (min-width: 768px){

  /* tablet-size */
  body{
    font-size: 2.1rem;
  }
  main{
    margin-top: 8rem;
  }
  .c-heading-belt{
    font-size: 3.2rem;
  }
  .c-heading-kadomaru{
    font-size: 3.2rem;
  }
  .c-heading-kadomaru{
    margin-bottom: 4rem;
  }
  .c-heading-kadomaru.-small{
    font-size: 2.6rem;
  }
  .c-thumb{
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .p-hdr{
    height: auto;
    height: 8rem;
    gap: 1rem 1rem;
  }
  .p-hdr__h1{
    width: 18rem;
  }
  .p-hdr__right{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 0 1rem;
  }
  .p-hdr__btn-tel, .p-hdr__btn-net, .p-hdr__btn-line{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    height: 4rem;
    padding: 0 2rem;
    gap: 0 0.5rem;
    border-radius: 2.5rem;
    color: #fff;
    transition: opacity 0.3s;
  }
  .p-hdr__btn-tel:hover, .p-hdr__btn-net:hover, .p-hdr__btn-line:hover{
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  }
  .p-tv{
    background-image: url("../images/topview_pc.webp");
  }
  .p-tv__inner{
    padding: 6rem 0;
  }
  .p-tv__inner:before{
    right: -5rem;
    left: -5rem;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
  .p-tv__txt{
    margin: 0 0 2rem;
  }
  .p-tv__h1{
    font-size: 3.7rem;
  }
  .p-nayami__list li{
    font-size: 2.4rem;
  }
  .p-nayami__list li:before{
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-cause__list li{
    font-size: 2rem;
  }
  .p-cause__list li:before{
    width: 2rem;
    height: 2rem;
    margin-top: 0.5rem;
  }
  .p-treat__2col{
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 0 4rem;
  }
  .p-treat__note{
    font-size: 1.4rem;
  }
  .p-treat__3col img{
    width: calc((100% - 4rem) / 3);
  }
  .p-feat__item h3{
    font-size: 3.2rem;
  }
  .p-ex__item + .p-ex__item{
    margin-top: 6rem;
  }
  .p-voice__list h3{
    font-size: 2.4rem;
  }
  .p-price__note{
    font-size: 1.8rem;
  }
  .p-intro__2col{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 0 4rem;
  }
  .p-intro__2col img{
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 30%;
    margin: 0;
  }
  .p-intro__list{
    font-size: 1.8rem;
  }
  .p-aside__h-em:before, .p-aside__h-em:after{
    width: 4rem;
    height: 4px;
  }
  .p-aside__txt{
    font-size: 2.8rem;
  }
  .p-aside__note{
    font-size: 1.6rem;
  }
  .p-sp-links{
    display: none;
  }
  .p-ftr__inner{
    padding-top: 5rem;
  }
  .p-ftr__h1{
    margin-bottom: 2rem;
  }
  .p-ftr__table{
    width: auto;
    margin-right: auto;
    margin-left: auto;
  }
  .p-ftr__table th{
    width: 12rem;
  }
  .p-ftr__cr{
    font-size: 1.1rem;
  }
  .p-ftr__cr{
    padding: 7.5rem 0 2.5rem;
  }
  .p-days th,
.p-days td{
    padding: 1rem 1.5rem;
  }
  .u-sp{
    display: none;
  }
}
@media only screen and (min-width: 1000px){

  /* middle-size */
  .p-hdr__h1{
    width: 25rem;
  }
  .p-hdr__right{
    gap: 0 1.5rem;
  }
  .p-hdr__btn-tel, .p-hdr__btn-net, .p-hdr__btn-line{
    gap: 0 1rem;
  }
  .p-hdr__btn-tel img{
    width: 1.5rem;
  }
  .u-tb{
    display: none;
  }
  .u-pc{
    display: block;
  }
}
@media only screen and (min-width: 1280px){

  /* pc-size */
  .p-hdr{
    gap: 1rem 5rem;
  }
  .p-hdr__btn-tel, .p-hdr__btn-net, .p-hdr__btn-line{
    height: 5rem;
    padding: 0 4rem;
  }
  .p-hdr__btn-tel{
    font-size: 2.6rem;
  }
  .p-hdr__btn-net, .p-hdr__btn-line{
    font-size: 1.8rem;
  }
  .p-hdr__btn-net img, .p-hdr__btn-line img{
    width: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */