@charset "UTF-8";

/*
Theme Name : WEBSITE
Author: clovergraphic
Description: corporate website
Version: 1.0
*/

/*=======================================================
Common
=======================================================*/
:root {
  --color_1: #fff;
  --color_2: #444; /*テキスト*/
  --color_3: #F88115; /*オレンジ*/
  --color_4: #915900; /*ブラウン*/
  --color_5: #FDD000; /*イエロー*/
  --color_6: #FFFBE8; /*薄イエロー*/
  --color_7: #06C755; /*LINEグリーン*/
}

html {
  scroll-behavior: smooth;
  font-size: calc(0.69444 * var(--vw, 1vw));
}

@media screen and (min-width: 1920px) {
  html {/*
    font-size: 11.11px;*/
    font-size: 13.5px;
  }
}
@media screen and (max-width: 896px) {
  html {
    font-size: calc(1.11731 * var(--vw));
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

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


body {
  position: relative;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--color_2);
  overflow: clip;
}
/*
@media screen and (max-width: 600px) {
  body {
    font-size: 1.6rem;
  }
}*/

body p {
  text-align: justify;
  text-align: left;
}

.inner__1920 {
  width: 100%;
  max-width: 1920px;
  padding: 0 25px;
  margin: auto;/*
  border: 5px palevioletred dotted;*/
}

/*inner__1920内の幅90%制御*/
.content__wrap {
  width: 90%;
  margin: auto;/*
  border: 3px green dotted;*/
}

@media screen and (max-width: 896px) {
  .content__wrap {
    width: 96%;
  }
}
@media screen and (max-width: 600px) {
  .content__wrap {
    width: 100%;
  }
}


/*=======================================================
Header/head__top  (pc)
=======================================================*/
.site__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0 0.5rem;
  background-color: var(--color_1);
  border-top: var(--color_5) 1.5rem solid;
  z-index: 5000;
  transition: all 0.4s ease;
}
.head__top {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  overflow: hidden;
  opacity: 1;
}

/* --- スクロール時 --- */
.site__header.is-hide {
  padding: 0.5rem 0;
}
.site__header.is-hide .head__top {
  max-height: 0;
  margin-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

/*ロゴ*/
.top__inner.-logo {
  width: 36rem;
  transition: opacity 0.2s;
}
.top__inner.-logo:hover,
.top__inner.-logo:active,
.top__inner.-logo:focus {
  opacity: 0.5;
}

/*診療時間*/
.top__inner.-schedule {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1rem 1rem 1rem 3.4rem;
  color: var(--color_4);
  background-color: var(--color_6);
}

.schedule__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 100%;
  padding-right: 0.17em;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  background-color: var(--color_5);
}

.schedule__wrap {
  width: 15rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.schedule__wrap h3 {
  font-size: 1.4rem;
  text-align: center;
  background-color: var(--color_1);
  border: var(--color_4) 1px solid;
}

.schedule__wrap ul .time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.3rem auto 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.1;
}

.schedule__wrap ul .holiday {
  margin: 1rem auto 0;
  line-height: 1;
}

.schedule__wrap ul .time span,
.schedule__wrap ul .holiday span {
  font-size: 1.1rem;
}

/*連絡先*/
.top__inner.-tel {
  width: 45rem;
}

.tel__wrap a {
  padding: 0 2rem 0.5rem 2rem;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color_1);
  background-color: var(--color_5);
  border-radius: 50rem;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.tel__wrap a:hover,
.tel__wrap a:active,
.tel__wrap a:focus {
  opacity: 0.5;
}
.tel__wrap a::before {
  content: "";
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  transform: translateY(0.3rem);
  background: url('img/tel_icon.svg') no-repeat center / contain;
  margin-right: 0.8rem;
}

.tel__wrap p {
  margin: 1.8rem 0 0.2rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color_4);
}

.address__wrap {
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--color_4);
}

.address__wrap p {
  display: inline;
}

.address__wrap a {
  padding: 0 0.3em;
  font-size: 80%;
  border: var(--color_4) 1px solid;
  transition: opacity 0.2s;
}
.address__wrap a:hover,
.address__wrap a:active,
.address__wrap a:focus {
  opacity: 0.5;
}

/*翻訳*/
.gtranslate_wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 2rem;
  width: 20rem;
  margin-bottom: 2rem;  
}

.gtranslate_wrapper a {
  width: 20%;
  -webkit-filter: drop-shadow(#ccc 0 0 5px);
          filter: drop-shadow(#ccc 0 0 5px);
}

.line__wrap {
  transition: opacity 0.2s;
}
.line__wrap:hover,
.line__wrap:active,
.line__wrap:focus {
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  .address__wrap {
    white-space: nowrap;
  }
}

@media screen and (max-width: 896px) {
  .head__top {
    position: relative;
    gap: 2rem;
    margin-bottom: 1rem;
    padding: 0;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .top__inner.logo, .top__inner.schedule,
  .top__inner.tel, .top__inner.-translation {
    width: auto;
  }
  /*ロゴ*/
  .top__inner.-logo {
    width: 22%;
  }
  /*診療時間*/
  .top__inner.-schedule {/*
    gap: 1rem;*/
    width: 36%;
    padding: 1rem 1rem 1rem 3rem;
  }
  .schedule__title {
    width: 2rem;
    font-size: 1.2rem;
  }
  .schedule__wrap {
    width: 50%;
    letter-spacing: 0.01em;
  }
  .schedule__wrap h3 {
    font-size: 1.2rem;
  }
  .schedule__wrap ul .time {
    margin: 0.2rem auto 0;
    font-size: 1.6rem;
  }
  .schedule__wrap ul .holiday {
    margin: 0.2rem auto 0;
  }
  .schedule__wrap ul .time span,
  .schedule__wrap ul .holiday span {
    font-size: 0.9rem;
  }
  /*連絡先*/
  .top__inner.-tel {
    width: 33%;
    margin-top: 1rem;
  }
  .tel__wrap a {
    padding: 0 1.5rem 0.5rem 1.5rem;
    font-size: 2.8rem;
  }
  .tel__wrap a::before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .tel__wrap p {
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
  }
  .address__wrap {
    font-size: 1rem;
  }
  .line__wrap {
    display: none;
  }
  .top__inner.-translation {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .gtranslate_wrapper {
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0;
  }
  .address__wrap {
    white-space: inherit;
  }
}

@media screen and (max-width: 600px) {
  .site__header {
    height: 6rem;
    padding: 0;
    align-items: center;
    border-top: var(--color_5) 0.5rem solid;
  }
  .site__header .inner__1920 {
    padding: 0 1rem;
  }
  .head__top {
    align-items: center;
    margin-bottom: 0;
  }
  .site__header .inner__1920 > .head__top > *:not(.top__inner.-logo),
  .head__nav  {
    display: none;
  }
  .top__inner.-logo {
    width: 12rem;
    margin-top: 0.5rem;
  }
}

/*=======================================================
head__nav (pc)
=======================================================*/
.head__nav {
}

.head__nav ul {
  display: flex;
  gap: 0.5rem;
}

.nav__item {
  width: calc((100% - 1.5rem) / 4);
  color: var(--color_1);
  background-color: var(--color_4);
  transition: 0.3s;
}
.nav__item:hover {
  background-color: var(--color_3);
}

.nav__item a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 3;
}

/*=======================================================
Toggle (sp)
=======================================================*/
/* 600px以上では非表示 */
.sp-only, .toggle__wrap {
  display: none;
}

@media screen and (max-width: 600px) {
  .sp-only {
    display: block;
  }

  /* ボタンの配置設定 */
  #toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 4000;
  }

  #toggle__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: var(--color_5);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
  }

  body.toggle__open .menu { 
    display: none;
  }
  body.toggle__open .close { 
    display: block;
  }
  .close {
    display: none;
  }

  .toggle__wrap {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #fffffff2;
    z-index: 3000;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  body.toggle__open .toggle__wrap {
    opacity: 1;
    visibility: visible;
  }

  .tgl-translation {
    width: 80%;
  }

  .tgl-translation .gtranslate_wrapper {
    justify-content: flex-start;
    gap: 2rem;
    margin: 2rem 0 5rem auto;
  }
  .tgl-translation .gtranslate_wrapper a {
    width: 15%;
}

  .toggle-nav {
    width: 80%;
  }

  .tgl-nav__main li {
    margin-bottom: 1.6rem;
  }

  .tgl-nav__main li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem 0;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
  }

  .tgl-nav__sub {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 5rem;
  }

  .tgl-nav__sub a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2rem;
    font-size: 2rem;
    text-align: center;
    color: var(--color_1);
    background-color: var(--color_5);
    border-radius: 50rem;
  }
  .tgl-nav__sub a:nth-of-type(2) {
    background-color: var(--color_7);
  }
}


/*=======================================================
fixed nav (sp)
=======================================================*/
.fixed__sp-nav {
  display: none;
}

@media screen and (max-width: 600px) { 
  .fixed__sp-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    z-index: 2000;
  }
  .fixed__sp-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    font-size: 2rem;
    text-align: center;
    color: var(--color_1);
    background-color: var(--color_5);
  }
  .fixed__sp-nav a:nth-of-type(2) {
    background-color: var(--color_7);
  }
}


/* Main
=======================================================*/
body {
  margin-top: 24rem;
}

body:not(.home) main {
}

@media screen and (max-width: 896px) {
  body {
    margin-top: 21rem;
  }
}

@media screen and (max-width: 600px) {
  body {
    margin-top: 6.5rem;
  }
}

/*=======================================================
return up
=======================================================*/
/*
#return_up {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 13px;
  right: 1.5%;
  padding: 0.8% 0.5%;
  transform: rotate(90deg);
  transform-origin: right top;
  color: var(--color_2);
  background-color: var(--color_1);
  -webkit-filter: drop-shadow(#efefef 0 2px 5px);
  filter: drop-shadow(#efefef 0 2px 5px);
  z-index: 800;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: ease-out;
}

#return_up.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  bottom: 20px;
}

#return_up.on:hover {
  bottom: 15px;
  -webkit-filter: none;
  filter: none;
  transition: 0.3s;
}

@media screen and (max-width: 480px) {
  #return_up {
    right: 2px;
    bottom: 0;
    padding: 1% 2%;
  }
  #return_up.on {
    bottom: 5px;
  }

  #return_up.on:hover {
    bottom: 0;
  }
}
*/

/*=======================================================
Footer
=======================================================*/
footer {
  padding: 14rem 0 10rem;
  color: var(--color_1);
  background-color: var(--color_4);
  background-image: url(img/footer_bg_img.png);
  background-repeat: no-repeat;
  background-position: top 1rem left;
  background-size: 100% 6rem;
  border-bottom: var(--color_5) 1.5rem solid;
}

.footer__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/*左側*/
.sitemapWrap.-flex {
  display: flex;
  gap: 6rem;
}

.sitemap__inner h2 {
  margin-bottom: 0.5rem;
}

.menuWrap {
  width: 19rem;
  color: var(--color_3);
  background-color: var(--color_1);  
}
.menuWrap:first-of-type {
  margin-bottom: 2rem;  
}

.menuWrap h3 {
  padding: 0.3rem 0.5rem 0.5rem 1rem;
  color: var(--color_1);
  background-color: var(--color_3);
}

.menuWrap ul {
  padding: 1rem 0;
}

.menuWrap ul li {
  position: relative;
  padding: 0.8rem 0.8rem 0.81rem 2.5rem;
  font-weight: bold;
  line-height: 1.4;
}
.menuWrap ul li::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 1rem;
  height: 1.4rem;
  background-color: var(--color_3);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: opacity 0.2s, transform 0.2s;
}

.menuWrap ul li a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s;
}
.menuWrap ul li:hover::before,
.menuWrap ul li:active::before,
.menuWrap ul li:focus::before {
  transform: translateX(2px);
  opacity: 0.5;
}
.menuWrap ul li:hover a,
.menuWrap ul li:active a,
.menuWrap ul li:focus a {
  opacity: 0.5;
}

.sitemap__inner.-pageLinks ul li.sub {
  position: relative;
  padding: 0.8rem 0.8rem 0.8rem 0.8em;
  font-size: 85%;
}

.sitemap__inner.-pageLinks ul li.sub::before {
  content: "・";
  position: absolute;
  top: 0.8rem;
  left: 0;
}

.sitemap__inner.-pageLinks ul li:not(:first-of-type):not(.sub) {
  margin-top: 4rem;
}

.sitemap__inner.-pageLinks ul li a {
  transition: opacity 0.2s;
}
.sitemap__inner.-pageLinks ul li a:hover,
.sitemap__inner.-pageLinks ul li a:focus,
.sitemap__inner.-pageLinks ul li a:active {
  opacity: 0.5;
}

/*右側*/
.infoWrap {
  width: 40rem;
}

.infoWrap h2 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  text-align: right;
}

.info__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.info__list li {
  height: 8rem;
}

.info__list li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 5rem;
  font-size: 3.2rem;
  font-weight: bold;
  border-radius: 50rem 20rem 20rem 50rem;
  z-index: 1;
  transition: opacity 0.2s;
}

.info__list li a:hover,
.info__list li a:active,
.info__list li a:focus {
  opacity: 0.5;
}

.info__list li.tel a {
  font-size: 3.6rem;
  background-color: var(--color_3);
}

.info__list li.line a {
  background-color: var(--color_7);
}

.info__list li.mail a {
  background-color: var(--color_5);
}

.info__list li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  background-size: contain;
  background-position: top left;
  z-index: 2;
}
.info__list li.tel a::before {
  background: url(img/footer_icon_tel.svg) no-repeat;
}
.info__list li.line a::before {
  background: url(img/footer_icon_line.svg) no-repeat;
}
.info__list li.mail a::before {
  background: url(img/footer_icon_mail.svg) no-repeat;
}

p.address {
  font-size: 94%;
  text-align: right;
}

p.address span {
  display: inline-block;
}

@media screen and (max-width: 896px) {
  footer {
    padding: 10rem 0 5rem;
  }
  .sitemapWrap.-flex {
    gap: 2rem;
  }
  /*右側*/
  .infoWrap {
    width: 30rem;
  }
  .infoWrap h2 {
    font-size: 1.8rem;
  }
  .info__list {
    margin-bottom: 8rem;
  }
  .info__list li {
    height: 6rem;
  }
  .info__list li a {
    font-size: 2.4rem;
  }
  .info__list li.tel a {
    font-size: 2.8rem;
  }
  .info__list li a::before {
    width: 6rem;
    height: 6rem;
  }
}

@media screen and (max-width: 600px) {
  footer {
    margin-bottom: 5rem;
    padding: 5rem 0 2.5rem;
    background-position: top 0.5rem left;
    background-size: 100% 3rem;
  }
  .footer__flex {
    display: block;
  }
  .sitemapWrap.-flex {
    flex-direction: column;
    align-items: center;
  }
  .sitemap__inner {
    width: 100%;
  }
  .menuWrap {
    width: 100%;
  }
  .menuWrap:first-of-type {
    margin-bottom: 1rem;  
  }
  .sitemap__inner.-pageLinks ul li:not(:first-of-type):not(.sub) {
    margin-top: 2rem;
  }
  /*右側*/
  .infoWrap {
    width: 100%;
    margin-top: 4rem;
  }
  .infoWrap h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  .infoWrap h2 span {
    display: inline-block;
  }
  .info__list {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .info__list li {
    height: 5rem;
  }
  .info__list li a {
    padding-left: 3.5rem;
    font-size: 2rem;
  }
  .info__list li.tel a {
    font-size: 2.4rem;
  }
  .info__list li a::before {
    width: 5rem;
    height: 5rem;
  }
  p.address {
    font-size: 85%;
  }
}


/*=======================================================
fv ベース（tagsはトップページのみ）
=======================================================*/
.fv {
  padding: 3rem 0 0;
  font-weight: bold;
  color: var(--color_4);
}

.fv__inner {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.fv__img {
  position: absolute;
  top: 0;
  right: 4rem;
  width: 104rem;
  height: auto;
  aspect-ratio: 1000 / 535;
  margin-left: auto;
  border-radius: 3rem;
  overflow: hidden;
  z-index: -1;
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*左上*/
.fv__main-txt {
  padding-top: 1rem;
}

.fv__tags {
  width: 42rem;
  margin: 1rem 0;
  font-size: 2.4rem;
}

.fv__tags li {
  display: inline-block;
  margin: 0 1rem 1rem 0;
  padding: 0.1em 0.4em 0.2em;
  color: var(--color_1);
  background-color: var(--color_3);
}

.fv__tags p {
  display: inline-block;
  margin-left: -0.3em;
  color: var(--color_4);
}

.fv__head {
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  -webkit-text-stroke: 5px var(--color_1);
  paint-order: stroke fill;
}
.fv__head span {
  font-size: 175%;
}

.fv__ttl {
  font-size: 4.8rem;
  letter-spacing: 0.06em;
  -webkit-text-stroke: 5px var(--color_1);
  paint-order: stroke fill;
}

.fv__ttl span {
  font-size: 134%;
}

/*左下*/
.fv__infoWrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.6rem;
  padding: 2.5rem 3rem;
  font-size: 2.4rem;
  background-color: #FFFBE8E6;
  border-radius: 2rem;
}

.fv__infoWrap li {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.4em;
}
.fv__infoWrap li:last-of-type {
  margin-bottom: 0;
}
.fv__infoWrap li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 2.8rem;
  background: url(img/checkmark-y.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.fv__infoWrap li span {
  color: #E63E3D;
}

/*右上*/
.fv__message {
  position: absolute;
  top: 2.3rem;
  right: 0;
}

.message__txt {
  font-size: 3.2rem;
  color: var(--color_2);
}

.message__txt span.bg {
  display: inline-block;
  margin-bottom: 1.7rem;
  padding: 0 0.5em 0.1em;
  background-color: var(--color_1);
  -webkit-filter: drop-shadow(#9999994d 0 3px 6px);
          filter: drop-shadow(#9999994d 0 3px 6px);
}

.message__txt span.yellow {
  color: var(--color_5);
}

.message__txt span.orange-big {
  font-size: 125%;
  color: var(--color_3);
  letter-spacing: -0.01em;
}

/*右下*/
.fv__stats {
  position: absolute;
  bottom: 0;
  right: 0;
}

.fv__statItem-flex {
  display: flex;
  gap: 2.4rem;
}

.fv__statItem-flex img {
  width: 18rem;
}

.stats__foot {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color_2);
  text-align: right;
}
.stats__foot span:first-of-type {
  margin-right: 1em;
}

@media screen and (max-width: 896px) {
  .fv__img {
    right: 2rem;
    width: 75%;
    aspect-ratio: 1000 / 680;
  }
  .fv__tags {
    width: 30rem;
    font-size: 1.6rem;
  }
  .fv__head {
    font-size: 2.4rem;
  }
  .fv__ttl {
    font-size: 3.2rem;
  }
  .fv__infoWrap {
    padding: 1.5rem 2rem;
    font-size: 2rem;
  }
  .fv__infoWrap li::before {
    width: 2.5rem;
    height: 2.5rem;
  }
  .message__txt {
    font-size: 2.4rem;
  }
  .fv__statItem-flex {
    gap: 1.5rem;
  }
  .fv__statItem-flex img {
    width: 14rem;
  }
}

@media screen and (max-width: 600px) {
  .fv {
    padding: 0;
  }  
  .fv__img {
    top: 5%;
    right: 0;
    width: 100%;
    aspect-ratio: 1 / 1.4;
    border-radius: 1.5rem;
  }    
  .fv__tags {
    width: 100%;
    margin: 0 0 2rem;
    font-size: 1.4rem;
  }
  .fv__tags li {
    margin: 0 0.5rem 0.8rem 0;
  }
  .fv__head,   
  .fv__ttl {
    font-size: clamp(2rem, 7vw, 3.4rem);
  }
  .fv__infoWrap {
    margin: 85% auto 0;
    padding: 2rem 4rem;
    font-size: 1.7rem;
    border-radius: 1.5rem;
  }
  .fv__infoWrap li {
    margin-bottom: 1rem;
    padding-left: 1.2em;
  }
  .fv__infoWrap li::before {
      width: 2rem;
      height: 2rem;
  }
  .fv__message {
    position: relative;
    margin-bottom: 3rem;
  }
  .message__txt {
    font-size: 1.7rem;
    text-align: center;
  }
  .message__txt span.bg {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    -webkit-filter: none;
            filter: none;
  }
  .message__txt span.sp {
    display: inline-block;
  }
  .fv__stats {
    position: relative;
  }
  .fv__statItem-flex {
    justify-content: center;
  }
    .fv__statItem-flex img {
    width: 12rem;
  }
  .stats__foot {
    font-size: 0.8rem;
    text-align: center;
  }
}

@media screen and (max-width: 450px) {
  .fv__img {
    top: 10.5%;
  }
  .fv__infoWrap {
    margin: 75% auto 0;
    padding: 1.5rem;
  }
}


/*=======================================================
parts 8つの理由
=======================================================*/
#reasons {
  padding: 3rem 0;
  font-weight: bold;
  background: url(img/bg_flower.png) no-repeat;
  background-size: 70rem auto;
  background-position: top left calc(50% + 53rem);
}

.reasons__head {
  margin-bottom: 0.5em;
  font-size: 3.2rem;
  text-align: center;
}

.reasons__ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto -6rem;
  padding: 3rem 8rem;
  font-size: 4.8rem;
  text-align: center;
  color: var(--color_1);
  background-color: var(--color_3);
  z-index: 2;
}

.reasons__list {
  width: 92%;
  margin: auto;
  padding: 6rem 8rem 10rem;
  background-color: var(--color_6);
  border: var(--color_3) 0.5rem solid;
  counter-reset: reason-counter; /* カウンター初期化 */
}

.reasons__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 7rem;
}
.reasons__item:nth-of-type(even) {
  flex-direction: row-reverse;
}

/* 上部ライン */
.reasons__item::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: 1rem;
  background-color: var(--color_5);
}
/* 自動採番パーツ */
.reasons__item::after {
  counter-increment: reason-counter;
  content: "0" counter(reason-counter);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 7rem;
  height: 7rem;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 6.5rem;
  letter-spacing: -0.01em;
  background-color: var(--color_5);
  border-radius: 5rem;
}
.reasons__item:nth-of-type(even)::after {
  left: auto;
  right: 0;
}

.reasons__item-inner {
  margin-top: 1.5rem;
}

.reasons__item-ttl {
  margin: 0 0 1.5rem;
  font-size: 4rem;
}

.reasons__item-txt {
  width: 71rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2;
}

.reasons__item-img {
  width: 32rem;
  margin-top: 1.5rem;
}

/*締め*/
.arrow__wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;/*
  margin: 7rem auto;*/
  margin: -2.5rem auto 7rem;
}

.arrow__wrap span {
  width: 14rem;
  height: 7rem;
  background-color: var(--color_3);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);  
}

@media screen and (max-width: 896px) {
  #reasons {
    background-size: 50rem auto;
    background-position: top left calc(50% + 35rem);
  }
  .reasons__ttl {
    width: 80%;
    padding: 3rem 0;
    font-size: 4rem;
  }
  .reasons__list {
    width: 100%;
    padding: 6rem 4rem 8rem;
  }
  .reasons__item {
    display: block;
    padding-top: 6rem;
  }
  /* 上部ライン */
  .reasons__item::before {
    top: 2.5rem;
  }
  /* 自動採番パーツ */
  .reasons__item::after {
    width: 6rem;
    height: 6rem;
    font-size: 3.2rem;
    line-height: 5.8rem;
  }
  .reasons__item-inner {
    margin-top: 0;
  }
  .reasons__item-ttl {
    font-size: 3.2rem;
  }
  .reasons__item-txt {
    width: 100%;
  }
  .reasons__item-img {
    width: 100%;
    max-width: 40rem;
    margin: 1.5rem auto 0;
  }
  .arrow__wrap {
    margin: -2.5rem auto 5rem;
  }
}

@media screen and (max-width: 600px) {
  #reasons {
    padding: 2.5rem 0;
    background-size: 70% auto;
    background-position: top left calc(50% + 20rem);
  }
  .reasons__head {
    font-size: 2rem;
  }
  .reasons__head span {
    display: inline-block;
  }
  .reasons__ttl {
    width: 90%;
    max-width: 32rem;
    margin: 0 auto -3.2rem;
    padding: 1.2rem 0.5rem;
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .reasons__ttl span {
    display: inline-block;
  }
.reasons__list {
    padding: 3rem 1.5rem 4rem;
  }
  .reasons__item {
    padding-top: 4.5rem;
  }
  .reasons__item::before {
    top: 2rem;
    height: 0.5rem;
  }
  .reasons__item::after {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.4rem;
    line-height: 4.3rem;
  }
  .reasons__item:first-of-type {
    margin-top: 2rem;
  }
  .reasons__item-ttl {
    font-size: 2.4rem;
  }
  .reasons__item-txt {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .arrow__wrap {
    gap: 1rem;
    margin: -1.2rem auto 0;
  }
  .arrow__wrap span {
    width: 6rem;
    height: 3rem;
  }
}

/*=======================================================
parts アプローチ
=======================================================*/
#approach {
  padding: 3rem 0;
}

.approach__ttl {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}

.approach__ttl span.bg {
  display: inline-block;
  margin-top: 1em;
  padding: 0 0.2em 0.1em;
  color: var(--color_4);
  background-color: var(--color_6);
}

.approach__ttl br.sp {
  display: none;
}

.approach__steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.steps__img {
  width: 31rem;
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  font-size: 3.2rem;
}

.step__item {
  position: relative;
  padding-left: 3.6rem;
}
.step__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 100%;
  background: url(img/checkmark.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.step__item:nth-of-type(2) {
  margin-left: 1em;
}

.step__item br {
  display: none;
}

.steps__arrow {
  display: block;
  width: 20rem;
  height: 10rem;
  margin: 1rem auto 3.6rem;
  background-color: var(--color_3);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.approach__summary-txt {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}

.approach__summary-txt strong {
  font-size: 4.8rem;
  color: var(--color_3);
}

@media screen and (max-width: 896px) {
  .steps__img {
    width: 25rem;
  }
  .steps__list {
    font-size: 3rem;
  }
  .steps__arrow {
    width: 14rem;
    height: 7rem;
  }
  .approach__summary-txt {
    font-size: 3rem;
  }
  .approach__summary-txt strong {
    font-size: 4rem;
  }
}

@media screen and (max-width: 600px) {
  .approach__ttl {
    font-size: 2.4rem;
  }
  .approach__ttl span {
    display: inline-block;
  }
  .approach__ttl br.sp {
    display: block;
  }
  .approach__steps {
    flex-direction: column;
    gap: 1rem;
}
  .steps__img {
    width: 15rem;
    margin-left: 5rem;
  }
  .steps__list {
    align-items: center;
    width: 90%;
    gap: 2rem;
    font-size: 2rem;
  }
  .step__item {
    padding-left: 2.4rem;
  }
  .step__item:nth-of-type(2) {
    margin-left: 0;
  }
  .step__item::before {
    width: 2rem;
    background-position: top 0.3rem left;
  }
  .step__item br {
    display: block;
  }
  .steps__arrow {
    width: 8rem;
    height: 4rem;
    margin: 4rem auto 3.6rem;
  }
  .approach__summary-txt {
    font-size: 2rem;
    line-height: 1.8;
  }
  .approach__summary-txt span {
    display: inline-block;
  }
  .approach__summary-txt strong {
    font-size: 2.4rem;
  }
}

/*=======================================================
parts メニュー
=======================================================*/
#treatmentMenu {
  padding: 10rem 0 0;
  border-bottom: var(--color_5) 1rem solid;
}

.treatmentMenu__ttl {
  position: relative;
  width: 90%;
  max-width: 72rem;
  margin: 0 auto 5rem;
  padding: 0.25em 1em;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: var(--color_1);
  background-color: var(--color_3);
  border-radius: 50rem;
}
.treatmentMenu__ttl::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.25rem);
  left: -50vw;
  width: 150vw;
  height: 1px;
  border-top: var(--color_3) 0.5rem dashed;
  z-index: -1;
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.menu__item {
  width: 57rem;
  height: 17rem;
  color: var(--color_4);
  background-color: var(--color_1);
  border: var(--color_4) 0.3rem solid;
  border-radius: 50rem;
  transition: 0.2s;
}

.menu__item a {
  position: relative;
  display: flex;/*
  justify-content: center;*/
  
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 35%;
  border-radius: 50rem;
}
.menu__item a::after {
  content: "▶";
  position: absolute;
  top: calc(50% - 1.2rem);
  right: 4rem;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color_4);
  transition: transform 0.3s;
}
.menu__imgWrap {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: auto;
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  border-radius: 50%;
  overflow: hidden;
}

.menu__imgWrap img {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  -o-object-fit: cover;
     object-fit: cover;
     transition: 0.3s;
}

.menu__ttl {
  max-width: 25.5rem;/*
  margin-left: 4rem;*/
  font-size: 3.2rem;
  font-weight: bold;
}
.menu__ttl.-inner {/*
  margin-left: 4rem;*/
  font-size: 2.8rem;
}
.menu__ttl.-inner span {
  display: inline-block;
}

/* menuホバー時 */
.menu__item:hover {
  color: var(--color_1);
  background-color: var(--color_4);
}
.menu__item a:hover::after {
  color: var(--color_1);
  transform: translateX(1rem);
}
.menu__item a:hover .menu__imgWrap img {
  transform: scale(1.02);
}

.menu__foot {
  margin: 5.6rem auto 5.5rem;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  color: var(--color_3);  
}

.menu__foot span {
  display: inline-block;  
}

/*予約セクション*/
#reservation {
  font-weight: bold;
}

.reserve__ttl {
  font-size: 4rem;
  text-align: center;
  color: var(--color_4);
}

.reserve__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 2rem;
  width: 91rem;
  margin: 4rem auto 6rem;
}

.reserve__item {
  position: relative;
  width: calc((100% - 2rem) / 2);
  height: 16.7rem;
  border-radius: 2rem;
  transition: opacity 0.2s;
}

.reserve__item.-tel {
  background-color: var(--color_3);
}
.reserve__item.-line {
  background-color: var(--color_7);
}
.reserve__item.-mail {
  width: 100%;
  background-color: var(--color_5);
}

/*丸*/
.reserve__item::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;  
  width: 7.6rem;
  height: 7.6rem;
}
.reserve__item.-tel::before {
  background: url(img/footer_icon_tel.svg) no-repeat;
  background-position: center;
}
.reserve__item.-line::before {
  background: url(img/footer_icon_line.svg) no-repeat;
  background-position: center;
}
.reserve__item.-mail::before {
  background: url(img/footer_icon_mail.svg) no-repeat;
  background-position: center;
}

/*ホバー時*/
.reserve__item:hover,
.reserve__item:active,
.reserve__item:focus {
  opacity: 0.5;
}

.reserve__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2.4rem 3rem 3.4rem;
  border-radius: 2rem;
}

.r-item__ttl {
  position: relative;
  padding-bottom: 1.2rem;
  font-size: 2.4rem;
  text-align: center;
}

.r-item__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2.5rem);
  width: 5rem;
  height: 0.3rem;
}
.reserve__item.-tel .r-item__ttl::after {
  background-color: #DD6B03;
}
.reserve__item.-line .r-item__ttl::after {
  background-color: #01923D;
}
.reserve__item.-mail .r-item__ttl::after {
  background-color: #E4BB00;
}

.r-item__desc {
  margin-top: 1.2rem;
  font-size: 4rem;
  text-align: center;
  color: var(--color_1);
}
.reserve__item.-tel .r-item__desc {
  margin-top: 0.3rem;
  font-size: 5rem;
}

/*診療時間*/
.reserve__tableWrap {
  width: 91rem;
  margin: 0 auto 2rem;
}

.reserve__table-head {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  font-size: 2.4rem;
  color: var(--color_4);
}
.reserve__table-head::before {
  content: "▼";
  position: absolute;
  top: 0;
  left: 0;
}

.reserve__table {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 600;
}

.reserve__table > thead {
  background-color: var(--color_5);
}

.reserve__table th,
.reserve__table td {
  text-align: center;
  border: var(--color_3) 0.3rem solid;
  line-height: 1;
}

/*セル幅*/
.reserve__table th:first-of-type,
.reserve__table th:last-of-type {
  width: 25rem;
}

/*セル高さ*/
.reserve__table thead th {
  height: 6.4rem;
}
.reserve__table tbody td {
  height: 9rem;
}

span.time {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.reserve__table-foot {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1.2em;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color_4);
}
.reserve__table-foot::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.reservation__foot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
  width: 91rem;
  margin: auto;
}

.reservation__foot p {
  font-size: 3.2rem;
  color: var(--color_4);
}

.foot__img {
  width: 42rem;
}

@media screen and (max-width: 896px) {
  .menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .menu__item {
    width: calc((100% - 1rem) / 2);
    height: auto;
    aspect-ratio: 57 / 17;
  }
  .menu__item a {
    padding-left: 33%;
  }
  .menu__item a::after {
    right: 2rem;
    font-size: 2rem;
  }
  .menu__imgWrap {
    left: 1rem;
  }
  .menu__ttl {
    max-width: 18rem;
    font-size: 2.2rem;
  }
  .menu__ttl.-inner {
    font-size: 2rem;
  }
  .reserve__ttl {
    font-size: 3.2rem;
  }
  .reserve__list {
    gap: 2rem;
    width: 100%;
  }
  .reserve__item {
    height: auto;
  }
  .reserve__item a {
    padding: 1.5rem 1rem 2rem;
  }
  .r-item__ttl {
    font-size: 2rem;
  }
  .r-item__desc {
    font-size: 3.2rem;
  }
  .reserve__item.-tel .r-item__desc {
    font-size: 4.2rem;
  }
  .reserve__tableWrap {
    width: 100%;
  }
  .reserve__table th:first-of-type, .reserve__table th:last-of-type {
    width: 25%;
  }
  .reservation__foot {
    gap: 2rem;
    width: 100%;
  }
  .reservation__foot p {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 600px) {
  #treatmentMenu {
    padding: 5rem 0 0;
    border-bottom: var(--color_5) 0.5rem solid;
  }
  .treatmentMenu__ttl {
    width: 70%;
    margin: 0 auto 2.5rem;
    padding: 0.5em 1em;
    font-size: 2.4rem;
  }
  .menu__list {
    flex-direction: column;
  }
  .menu__item {
    width: 100%;
    border: var(--color_4) 0.2rem solid;
  }
  .menu__item a {
    padding-left: 30%;
  }
  .menu__item a::after {
    top: calc(50% - 1rem);
    right: 1rem;
    font-size: 1.8rem;
  }
  .menu__imgWrap {
    left: 0.5rem;
  }
  .menu__ttl {
    max-width: 25rem;
    font-size: 1.8rem;
    font-size: clamp(1.4rem, 5.5vw, 3.4rem);
  }
  .menu__ttl.-inner {
    max-width: 78%;
    font-size: clamp(1.2rem, 5vw, 2.8rem);
  }
  .menu__foot {
    font-size: 2.2rem;
  }
  .reserve__ttl {
    margin-top: 5rem;
    font-size: 2rem;
  }
  .reserve__ttl span {
    display: inline-block;
  }
  .reserve__list {
    flex-direction: column;
    margin: 2rem auto 4rem;
  }
  .reserve__item {
    width: 100%;
    border-radius: 1.5rem;
  }
  .reserve__item::before {
    top: -0.5rem;
    left: -0.5rem;
    width: 20%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .r-item__ttl {
    font-size: 1.6rem;
  }    
  .r-item__desc {
    font-size: 2.4rem;
  }    
  .reserve__item.-tel .r-item__desc {
    margin-top: 0.5rem;
    font-size: 3.2rem;
  }
  .reserve__table-head {
    font-size: 1.8rem;
  }
  .reserve__tableWrap {
    margin: 0 auto 4rem;
  }
  .reserve__table {
    font-size: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }
  .reserve__table th,
  .reserve__table td {
    border: var(--color_3) 0.2rem solid;
  }
  .reserve__table thead th {
    height: 2rem;
  }
  .reserve__table tbody td {
    height: 4rem;
  }
  .reserve__table tbody th span {
    display: inline-block;
  }
  span.time {
    font-size: 75%;
  }
  .reserve__table-foot {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .reservation__foot {
    flex-direction: column;
    gap: 1rem;
  }
  .reservation__foot p {
    font-size: 2rem;
  }
  .foot__img {
    width: 100%;
    max-width: 30rem;
  }
}
/*=======================================================
parts アスリート
=======================================================*/
#athlete {
  padding: 3rem 0 12rem;
}

.athlete__head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem auto 8rem;
  font-size: 5.6rem;
  font-weight: bold;
  color: var(--color_4);
  transform: rotate(-5deg);
}

.athlete__ttl {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
}

.athlete__ttl span.big {
  position: relative;
  display: inline-block;
  font-size: 5.6rem;
  color: var(--color_3);
}
.athlete__ttl span::before {
  content: "";
  position: absolute;
  bottom: 0.16em;
  left: 0;
  width: 100%;
  height: 0.18em;
  background-color: var(--color_5);
  z-index: -1;
}

.athlete__voiceList {}

.voice__item {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-top: 8rem;
}
.voice__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.voice__item:first-of-type {
  margin-top: 5rem;
}

.voice__img {
  width: 32rem;
  aspect-ratio: 1.3 / 1;
  border-radius: 5px;
  overflow: hidden;
}

.voice__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice__txt {
  width: 74rem;  
  padding: 2.5rem 3.5rem;
  line-height: 2;
  background-color: var(--color_1);
  border-radius: 2rem;
  -webkit-filter: drop-shadow(#cccccc80 0 0 10px);
          filter: drop-shadow(#cccccc80 0 0 10px);
}

.voice__name-wrap {
  margin-top: 1rem;
}

.voice__profile {
  font-size: 2rem;
  font-weight: bold;
}

.voice__name {
  font-size: 2.4rem;
  font-weight: bold;
}

.voice__item:nth-of-type(even) .voice__profile,
.voice__item:nth-of-type(even) .voice__name {
  text-align: right;
}

.voice__footer {
  width: 75%;
  margin: 8rem auto 15rem;
}

/**Googleレビュー**/
.g__review {  
}

.review__ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
.review__ttl::before,
.review__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0.8rem;
  height: 8rem;
  background-color: var(--color_3);
  transform-origin: bottom center;
}
.review__ttl::before {
  left: -1.5em;
  transform: rotate(-30deg);
}
.review__ttl::after {
  right: -1.5em;
  transform: rotate(30deg);
}

.r-comment__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem 1.5rem;
  width: 77rem;
  margin: 4rem auto 2rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color_4);
  z-index: auto;
}

.r-comment__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem;
  margin-bottom: 3rem;
  padding: 0 1.5em;
  background-color: var(--color_5);
  border-radius: 5rem;
  z-index: 1;
}

.r-comment__item:nth-of-type(2) {
  height: 6.5rem;
}

.r-comment__item::before {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.6rem;
  background-color: var(--color_5);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
}

.g-link__wrap {
  width: 60rem;
  height: 15rem;
  margin: auto;
}

.g-link__wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url(img/google-img.png) no-repeat;
  background-position: top left;
  background-size: 13rem;
  background-color: var(--color_6);
  border: var(--color_5) 0.6rem solid;
  transition: opacity 0.2s;
}
.g-link__wrap a:hover {
  opacity: 0.5;
}

.g-link__wrap a p {
  position: relative;
  display: inline;
  margin-left: 1em;
  font-size: 4.8rem;
  font-weight: bold;
}
.g-link__wrap a p::after {
  content: '→';
  font-size: 4.8rem;
  font-weight: bold;
  margin-left: 0.3em;
}

@media screen and (max-width: 896px) {
  .athlete__head {
    font-size: 4.8rem;
  }
  .athlete__ttl {
    font-size: 4rem;
  }
  .athlete__ttl span.big {
    font-size: 4.8rem;
  }
  .voice__item {
    gap: 2rem;
    margin-top: 6rem;
  }
  .voice__item-inner {
    width: 30%;
  }
  .voice__img {
    width: 100%;
  }
  .voice__profile {
    font-size: 1.6rem;
  }
  .voice__profile span {
    display: inline-block;
  }
  .voice__footer {
    width: 100%;
    margin: 6rem auto 15rem;
  }
  .review__ttl {
    font-size: 3.2rem;
  }
  .review__ttl::before, .review__ttl::after {
    width: 0.6rem;
    height: 6rem;
  }
  .g-link__wrap a p {
    font-size: 4rem;
  }
}

@media screen and (max-width: 600px) {
  #athlete {
    padding: 3rem 0 8rem;
  }
  .athlete__head {
    margin: 3rem auto 5rem;
    font-size: 4rem;
  }
  .athlete__ttl {
    font-size: 2.4rem;
  }
  .athlete__ttl span {
    display: inline-block;
  }
  .athlete__ttl span.big {
    font-size: 3rem;
  }
  .voice__item {
    display: block;
  }
  .voice__item:first-of-type {
    margin-top: 2.5rem;
  }
  .voice__item-inner {
    width: 100%;
  }
  .voice__txt {
    width: 100%;
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    line-height: 1.7;
  }  
  .voice__footer {
    margin: 3rem auto 10rem;
  }
  .review__ttl {
    font-size: 2rem;
  }
  .review__ttl::before, .review__ttl::after {
    width: 0.4rem;
    height: 3rem;
  }
  .review__ttl::before {
    left: -5%;
  }
  .review__ttl::after {
    right: -5%;
  }
  .review__ttl span {
    display: inline-block;
  }
  .r-comment__flex {
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 1.6rem;
  }
  .r-comment__item,.r-comment__item:nth-of-type(2) {
    height: auto;
    margin-bottom: 1rem;
    padding: 0.5em 1.5em;
  }
  .r-comment__item::before {
    top: 50%;
    left: -1.5rem;
    width: 2rem;
    transform: translateY(-50%) rotate(90deg);
  }
  .r-comment__item:nth-of-type(even)::before {
    left: auto;
    right: -1.5rem;
    transform: translateY(-50%) rotate(-90deg);
  }
  .g-link__wrap {
    width: 100%;
    max-width: 30rem;
    height: auto;
    aspect-ratio: 16 / 6;
  }
  .g-link__wrap a {
    background-size: 30%;
    border: var(--color_5) 0.4rem solid;
  }
  .g-link__wrap a p {
    font-size: 2.4rem;
    margin-left: 0.5em;
  }
  .g-link__wrap a p::after {
    margin-left: 0.15em;
    font-size: 2rem;
  }
}

@media screen and (max-width: 362px) {
  .review__ttl::before {
    left: 0;
  }
  .review__ttl::after {
    right: 0;
  }
}

/*=======================================================
parts 当院について
=======================================================*/
#about {
  padding: 5rem 0 0;
  background: url(img/bg_flower.png) no-repeat;
  background-size: 50% auto;
  background-position: top -35rem right calc(50% + 75rem);
  background-color: var(--color_5);
}

.about__ttl {
  position: relative;
  width: 90%;
  max-width: 72rem;
  margin: 0 auto 8rem;
  padding: 0.25em 1em;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: var(--color_4);
  background-color: var(--color_1);
  border-radius: 50rem;
  isolation: isolate;
}
.about__ttl::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.25rem);
  left: -50vw;
  width: 150vw;
  height: 1px;
  border-top: var(--color_1) 0.5rem dashed;
  z-index: -1;
}

.about__head-flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about__head-inner {
  width: 54rem;
  font-weight: bold;
  color: var(--color_4);
}

.shop__img {/*
  margin-bottom: 1.5rem;*/
  margin-bottom: 8.5rem;
  border-radius: 3rem;
  overflow: hidden;
}

.shop__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop__info address {
  font-size: 2rem;
  font-style: normal;
  letter-spacing: -0.01em;
}

.shop__info p {
  display: inline;
}
.shop__info p.route {
  font-size: 2.4rem;
}
.shop__info p.route span {
  font-size: 4.8rem;
}
.shop__info p.parking {
  margin-left: 1.5rem;
  padding: 0 0.3em 0.1em;
  font-size: 3.2rem;
  line-height: 1;
  border: var(--color_4) 0.4rem solid;
}

.about__head-txt {
  width: 64rem;
  margin-left: -1rem;
  padding: 2rem 4rem 1.5rem;
  background-color: var(--color_1);
  border-radius: 3rem;
}

.about__head-txt h3 {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color_3);
}

.about__head-txt p {
  line-height: 2;
}

.about__head-txt p span.line {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: var(--color_5);
  text-decoration-thickness: 0.2em;
  text-underline-offset: 3px;    
}

.about__head-txt p.name {
  margin-top: 1em;
  text-align: right;
}

/*キッズスペース・通いやすい*/
.about__merit {
  margin: 6rem 0 8rem;
}

.a-merit__list {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.a-merit__item {
  position: relative;
  width: 56rem;
  padding: 2.5rem 2.5rem 3rem;
  background-color: var(--color_1);
  border: var(--color_4) 0.4rem solid;
  border-radius: 5rem;
}

.a-merit__item h3 {
  margin-bottom: 1em;
  padding-bottom: 0.8em;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: var(--color_4);
  border-bottom: var(--color_4) 2px dashed;
}

.a-merit__item p {
  line-height: 2;
}

.a-merit__img {
  width: 60%;
  margin: 3rem auto 0;
}

/*キッズスペース用*/
.a-merit__item:first-of-type::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16.5rem;
  height: auto;
  aspect-ratio: 165 / 157;
  background: url(img/a-merit_toys_img.png) no-repeat;
  background-size: contain;
  background-position: center;
}
/*通いやすい用*/
.sub-merit__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 6rem auto;
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--color_4);
}

.sub-merit__list li {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.2em;
}
.sub-merit__list li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.sub-merit__list li:last-of-type {
  margin-bottom: 0;
}

#access {
  margin-top: -18rem;
  padding-top: 18rem;
}

.g-map {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 380;
}

.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 896px) {
  .about__ttl {
    margin: 0 auto 5rem;
  }
  .about__head-flex {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2rem;
  }
  .about__head-txt {
    width: 100%;
    margin-left: 0;
  }
  .about__head-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .shop__img {
    width: 42%;
  }
  .shop__info {
    width: 54%;
    margin-top: 2rem;
  }
  .shop__info address span {
    display: inline-block;
  }
  .shop__info p {
    display: inline-block;
  }
  .shop__info p.route {
    margin-top: 2rem;
    font-size: 2rem;
  }
  .shop__info p.route span {
    font-size: 3.2rem;
  }
  .shop__info p.parking {
    font-size: 2.4rem;
    padding: 0.2em 0.3em 0.25em;
  }
  .a-merit__list {
    gap: 2rem;
  }
  .sub-merit__list {
    margin: 4rem auto;
    font-size: 2.4rem;
  }
  .a-merit__item:first-of-type::before {
    width: 12rem;
  }
  .g-map {
    aspect-ratio: 1440 / 500;
  }
}

@media screen and (max-width: 600px) {
  .about__ttl {
    width: 70%;
    margin: 0 auto 2.5rem;
    padding: 0.5em 1em;
    font-size: 2.4rem;
  }
  .about__head-txt {
    padding: 2rem 2rem 1.5rem;
    border-radius: 1.5rem;
  }
  .about__head-txt h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .about__head-txt h3 span {
    display: inline-block;
  }
  .about__head-txt p {
    line-height: 1.7;
  }
  .about__head-txt p.name span {
    display: inline-block;
  }
  .about__head-inner {
    display: block;
  }
  .shop__img, .shop__info {
    width: 100%;
    margin-top: 0;
  }
  .shop__img {
    margin-bottom: 1.5rem;
  }
  .shop__info address {
    font-size: 1.6rem;
  }    
  .shop__info p.route {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 1.6rem;
  }
  .shop__info p.parking {
    display: block;
    width: 7em;
    margin: 0.5rem auto 0;
    font-size: 2.2rem;
    text-align: center;
    border: var(--color_4) 0.25rem solid;
  }
  .about__merit {
    margin: 5rem 0 4rem;
  }
  .a-merit__list {
    flex-direction: column;
    gap: 2rem;
  }
  .a-merit__item {
    width: 100%;
    padding: 2rem 1.5rem 3rem;
    border: var(--color_4) 0.3rem solid;
    border-radius: 3rem;
  }
  .a-merit__item h3 {
    margin-bottom: 0.6em;
    font-size: 2rem;
  }
  .a-merit__item p {
    line-height: 1.7;
  }
  .a-merit__img {
    width: 80%;
    margin: 1.5rem auto 0;
  }
  .a-merit__item:first-of-type::before {
    width: 30%;
  }
  .sub-merit__list {
    margin: 3rem auto;
    font-size: 1.8rem;
  }
  .sub-merit__list li {
    margin-bottom: 2rem;
  }
  .g-map {
    aspect-ratio: 1 / 0.8;
  }
}

/*=======================================================
parts スタッフ紹介
=======================================================*/
#staff {
  position: relative;
  padding: 15rem 0;
  background-color: var(--color_3);
}

.loop__inner {
  position: absolute;
  left: 0;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 5.5rem;
}
.loop__inner.-top {
  top: 1rem;
  -webkit-animation: scroll-left 45s linear infinite;
          animation: scroll-left 45s linear infinite;
}
@-webkit-keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.loop__inner.-bottom {
  bottom: 1rem;
  -webkit-animation: scroll-right 45s linear infinite;
          animation: scroll-right 45s linear infinite;
}
@-webkit-keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.loop__inner img {
  margin-right: 10rem;
}

.staff__ttl {
  position: relative;
  width: 90%;
  max-width: 72rem;
  margin: 0 auto 8rem;
  padding: 0.25em 1em;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: var(--color_4);
  background-color: var(--color_1);
  border-radius: 50rem;
  isolation: isolate;
}
.staff__ttl::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.25rem);
  left: -50vw;
  width: 150vw;
  height: 1px;
  border-top: var(--color_1) 0.5rem dashed;
  z-index: -1;
}

.staff__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 10rem;
}

.staff__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.staff__item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.staff__imgWrap {
  width: 30rem;
  border-radius: 50%;
  overflow: hidden;
}
.staff__imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff__txtWrap {
  position: relative;
  width: 56rem;
  padding: 2.5rem 3rem;
  padding: 3rem;
  background-color: var(--color_6);
  border-radius: 3rem;
}

.staff__txtWrap h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.staff__txtWrap h3 p {
  display: inline-block;
}

span.owner {
  margin-right: 1.4rem;
  padding: 0.2em 0.8em 0.25em;
  line-height: 1;
  color: var(--color_1);
  background-color: var(--color_3);
}
.staff__name {
  font-size: 2.4rem;
}

.staff__name span.en {
  position: relative;
  font-size: 2rem;
  margin-left: 1em;
  padding-left: 1.2em;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.staff__name span.en::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 0;
}

.message {
  line-height: 1.7;
}

/*owner以外*/
.staff__item:not(.-owner) {
  gap: 4rem;
}

.staff__item:not(.-owner) .staff__imgWrap {
  width: 28rem;
}

.staff__item:not(.-owner) .staff__txtWrap::before {
  content: "";
  position: absolute;
  top: 25%;
  right: -2.8rem;
  width: 3rem;
  height: 2.8rem;
  background-color: var(--color_6);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.staff__item:not(.-owner):nth-of-type(odd) .staff__txtWrap::before {
  right: auto;
  left: -2.8rem;
  transform: rotate(180deg);
}
.staff__txtWrap.-fukuyama  {
  margin: 5rem 0;
}

/*owner専用*/
.staff__item.-owner .staff__imgWrap {
  width: 35rem;
}

.qualification__list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
}

.qualification__item {
  color: var(--color_1);
}

.qualification__item h4 {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  color: var(--color_3);
  background-color: var(--color_1);
}

.qualification__item p {
  padding: 0.5em 0 0;
  font-size: 2rem;
}

.qualification__item p span {
  margin-right: 1em;
}

/*地域貢献活動*/
.community__ttl {
  position: relative;
  width: 90%;
  max-width: 72rem;
  margin: 0 auto 5rem;
  padding: 0.25em 1em;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: var(--color_4);
  background-color: var(--color_1);
  border-radius: 50rem;
  isolation: isolate;
}
.community__ttl::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.25rem);
  left: -50vw;
  width: 150vw;
  height: 1px;
  border-top: var(--color_1) 0.5rem dashed;
  z-index: -1;
}

.community__mainCopy {
  font-size: 4rem;
  font-weight: bold;
  color: var(--color_1);
  text-align: center;
}

.community__desc {
  width: 100%;
  max-width: 80rem;
  margin: 3rem auto;
  font-size: 1.8rem;
  line-height: 2;
  color: var(--color_1);
}

.community__imgWrap {
  width: 100%;
  max-width: 100rem;
  margin: auto;
}

@media screen and (max-width: 896px) {
  /*ttl*/
  .staff__ttl, .community__ttl {
    margin: 0 auto 5rem;
  }

  .staff__txtWrap.-fukuyama {
    margin: 3rem 0;
  }
}

@media screen and (max-width: 600px) {
  #staff {
    padding: 7rem 0;
  }
  .loop__inner {
    height: 3rem;
  }
  .loop__inner.-top {
    top: 0.2rem;
  }
  .loop__inner.-bottom {
    bottom: 0.2rem;
  }
  .loop__inner img {
    margin-right: 4rem;
  }
  /*ttl*/
  .staff__ttl, .community__ttl {
    width: 70%;
    margin: 0 auto 2.5rem;
    padding: 0.5em 1em;
    font-size: 2.4rem;
  }
  .staff__list {
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .staff__item, .staff__item:nth-of-type(even) {
    flex-direction: column;
    gap: 1rem;
  }
  .staff__item:not(.-owner) {
    gap: 1rem;
  }

  .staff__item.-owner .staff__imgWrap, .staff__item:not(.-owner) .staff__imgWrap {
    width: 50%;
  }
  .staff__txtWrap {
    width: 100%;
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  .staff__txtWrap.-fukuyama {
    margin: 0;
  }
  .staff__item:not(.-owner) .staff__txtWrap::before {
    display: none;
  }
  .staff__txtWrap h3 {
    display: block;
    margin-bottom: 1.5rem;
  }
  .staff__txtWrap h3 p {
    display: block;
  }
  span.owner {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 0.5rem;
    padding: 0.1em 0.5em 0.2em;
  }
  .staff__name {
    font-size: 2rem;
    text-align: center;
  }
  .staff__name span.en {
    display: block;
    margin-left: 0;
    padding-left: 0;
    font-size: 1.6rem;
    text-align: center;
  }
  .staff__name span.en::before {
    display: none;
  }
  .community__mainCopy {
    font-size: 2.4rem;
  }
  .community__mainCopy span {
    display: inline-block;
  }
  .community__desc {
    margin: 2rem auto 3rem;
    font-size: 1.6rem;
  }
  /*owner専用*/
  .qualification__list {/*
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;*/
    flex-direction: column;
  }
  .qualification__item p span {
    display: block;
  }
}
