@charset "UTF-8";
#header {
  all: unset;
  font-family: "Noto Serif JP", serif;
  position: fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  display: block;
  height: 60px;
  width: 100vw;
  transition: 0.6s;
}
#header * {
  all: unset;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 781px) {
  #header {
    height: 150px;
  }
}
#header.out {
  background-color: rgba(38, 18, 3, 0.6);
}
#header h1 {
  position: absolute;
  z-index: 20001;
  top: 14px;
  left: 14px;
}
@media screen and (min-width: 781px) {
  #header h1 {
    top: 26px;
    left: 32px;
  }
}
#header h1 a {
  height: 32px;
  width: auto;
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 781px) {
  #header h1 a {
    height: 58px;
  }
}
#header h1 img {
  height: 100%;
  width: auto;
}
#header .spMenuButton {
  border: 1px solid #fff;
  border-radius: 100px;
  display: inline-flex;
  width: 90px;
  height: 31px;
  align-items: center;
  justify-content: center;
  position: absolute;
  gap: 8px;
  z-index: 20001;
  right: 14px;
  top: 14.5px;
}
@media screen and (min-width: 781px) {
  #header .spMenuButton {
    display: none;
  }
}
#header .spMenuButton:after {
  display: block;
  content: "MENU";
  font-size: 12px;
  color: #fff;
}
#header .spMenuButton > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: end;
}
#header .spMenuButton > span > span {
  width: 10px;
  height: 1px;
  background-color: #fff;
  display: block;
}
#header .spMenuButton > span:before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
  display: block;
}
#header .spMenuButton > span:after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #fff;
  display: block;
}
#header .spMenuButton.open:after {
  content: "CLOSE";
}
#header .spMenuButton.open > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: end;
}
#header .spMenuButton.open > span > span {
  display: none;
}
#header .spMenuButton.open > span:before {
  width: 14px;
  transform: rotate(45deg);
}
#header .spMenuButton.open > span:after {
  width: 14px;
  transform: rotate(-45deg);
  margin-top: -4px;
}
#header .spMenuWrap {
  background-color: #211206;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  padding: 60px 0;
  width: 100vw;
  height: 100vh;
  transition: all 0.6s cubic-bezier(0, 0.64, 0.3, 1);
  transform: translate(0, -120vh);
  overflow: scroll;
  box-sizing: border-box;
}
@media screen and (min-width: 781px) {
  #header .spMenuWrap {
    display: none;
  }
}
#header .spMenuWrap nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  transition-delay: 0.4s;
}
#header .spMenuWrap nav ul {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  margin-bottom: 32px;
}
#header .spMenuWrap nav ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#header .spMenuWrap nav ul li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#header .spMenuWrap nav ul li a {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  line-height: 1;
  height: 50px;
}
#header .spMenuWrap nav ul li a span {
  font-size: 10px;
  display: block;
  margin-left: 10px;
}
#header .spMenuWrap nav ul li a:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 1px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  margin-right: 16px;
}
#header .spMenuWrap nav address {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  gap: 14px;
  margin-bottom: 40px;
}
#header .spMenuWrap nav address h3 {
  font-size: 14px;
  font-weight: bold;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#header .spMenuWrap nav address p {
  margin-top: -8px;
  line-height: 1.3;
  font-size: 12px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#header .spMenuWrap .forDoctor {
  background-color: #C19A35;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
}
#header .spMenuWrap .forDoctor span {
  font-size: 12px;
}
#header .spMenuWrap.open {
  transform: translate(0, 0);
}
#header .spMenuWrap.open nav {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
  transition-delay: 0.6s;
}
#header .pcMenu {
  display: none;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
@media screen and (min-width: 781px) {
  #header .pcMenu {
    display: block;
  }
}
#header .pcMenu ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}
#header .pcMenu ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .pcMenu ul li:after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#header .pcMenu ul li a {
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
#header .pcMenu ul li a span {
  font-size: 10px;
}
#header .pcMenu ul li a:before {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 12px;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
#header .pcMenu ul li a:hover:before {
  transform-origin: center top;
  transform: scale(1, 1);
}
#header .pcMenu ul li:last-child:after {
  display: none;
}
#header .pcAddress {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (min-width: 781px) {
  #header .pcAddress {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
}
#header .pcAddress a {
  cursor: pointer;
}
#header .pcAddress .pcTel .hover {
  display: none;
}
#header .pcAddress .pcTel:hover .default {
  display: none;
}
#header .pcAddress .pcTel:hover .hover {
  display: block;
}
#header .pcAddress .forDoctor {
  background-color: #C19A35;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  cursor: pointer;
  line-height: 1.3;
  transition: 0.3s;
}
#header .pcAddress .forDoctor span {
  font-size: 12px;
}
#header .pcAddress .forDoctor:hover {
  background-color: #765e21;
}

.topSlider {
  position: relative;
}
.topSlider:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 18, 3, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.topSlider swiper-slide {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.topSlider swiper-slide:first-child {
  background-image: url(../../images/top-slide/slide01-sp.jpg);
}
@media screen and (min-width: 781px) {
  .topSlider swiper-slide:first-child {
    background-image: url(../../images/top-slide/slide01.jpg);
  }
}
.topSlider swiper-slide:nth-child(2) {
  background-image: url(../../images/top-slide/slide02-sp.jpg);
}
@media screen and (min-width: 781px) {
  .topSlider swiper-slide:nth-child(2) {
    background-image: url(../../images/top-slide/slide02.jpg);
  }
}
.topSlider swiper-slide:nth-child(3) {
  background-image: url(../../images/top-slide/slide03-sp.jpg);
}
@media screen and (min-width: 781px) {
  .topSlider swiper-slide:nth-child(3) {
    background-image: url(../../images/top-slide/slide03.jpg);
  }
}
.topSlider .topTitle {
  position: absolute;
  bottom: 175px;
  left: 16px;
  z-index: 10;
}
@media screen and (min-width: 781px) {
  .topSlider .topTitle {
    left: 60px;
    bottom: 135px;
  }
}
.topSlider .topTitle h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (min-width: 781px) {
  .topSlider .topTitle h2 {
    font-size: 48px;
    line-height: 1.3;
  }
}
.topSlider .topTitle h3 {
  all: unset;
  font-size: 54px !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  line-height: 1.1;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 781px) {
  .topSlider .topTitle h3 {
    font-size: 100px !important;
  }
}
.topSlider .topNews {
  border-radius: 100px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 100%;
  width: 100%;
  display: flex;
  z-index: 10;
}
.topSlider .topNews dl {
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  padding: 4px 16px;
  border-radius: 100px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  display: flex;
  align-items: center;
  max-width: 100%;
}
@media screen and (min-width: 781px) {
  .topSlider .topNews dl {
    font-size: 14px;
    padding: 10px 24px;
  }
}
.topSlider .topNews dl dt {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #696969;
  line-height: 1;
}
.topSlider .topNews dl dd {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topSlider .topNews dl dd a {
  text-decoration: underline;
}

.youtube-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  clear: both;
}
@media screen and (min-width: 781px) {
  .youtube-section {
    padding: 120px 40px;
  }
}

#youtube-channel {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 781px) {
  #youtube-channel {
    margin-bottom: 54px;
  }
}
#youtube-channel h2 {
  position: relative;
  text-align: center !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
@media screen and (min-width: 781px) {
  #youtube-channel h2 {
    font-size: 16px;
  }
}
#youtube-channel h2 .youtube-logo {
  width: 200px;
  height: auto;
}
@media screen and (min-width: 781px) {
  #youtube-channel h2 .youtube-logo {
    width: 330px;
  }
}
#youtube-channel h2:before {
  display: none;
}

.youtube-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 781px) {
  .youtube-videos {
    margin-bottom: 64px;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.snsLinks {
  position: fixed;
  bottom: 170px;
  right: 16px;
  z-index: 9999;
}
@media screen and (min-width: 781px) {
  .snsLinks {
    right: 200px;
    bottom: 80px;
  }
}
.snsLinks ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 781px) {
  .snsLinks ul {
    flex-direction: row;
    gap: 16px;
  }
}
.snsLinks ul li a {
  width: 48px;
  height: 48px;
  display: block;
}
@media screen and (min-width: 781px) {
  .snsLinks ul li a {
    width: 60px;
    height: 60px;
  }
}
.snsLinks ul li a img {
  width: 100%;
  height: auto;
  transition: 0.3s;
  border-radius: 100px !important;
}
.snsLinks ul li a img:hover {
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.footerPartnerList {
  clear: both;
  padding: 20px 20px 60px 20px;
}
@media screen and (min-width: 781px) {
  .footerPartnerList {
    padding: 40px 40px 40px 40px;
  }
  .footerPartnerList h3 {
    margin-bottom: 1em !important;
  }
}
.footerPartnerList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
