@charset "utf-8";


/*==========================================
 トップページ
===========================================*/


/*==========================================
 メインビジュアル
===========================================*/

#mainVisual {
  width: 100%;
}

#mainVisual .topSection {
  padding: 0;
}

#mainVisual .slider {
  position: relative;
}

#mainVisual .slider img{
  width: 100%;
  height: auto;
}

@media print, screen and (min-width: 601px) {

  #mainVisual {
  }

  #mainVisual .slider {
    width: 1400px;
    margin: 0 auto;
  }

  #mainVisual .slider img{
    height: 600px;
    object-fit: cover;
  }

}

/*==========================================
 お知らせ
===========================================*/

#news {
  width: 100%;
  background: var(--bg4-color);
}

.newsBlock {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 8px -6px rgba(0, 0, 0, .3);
  transform: translateY(-30px);
}

.newsHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.newsHead .newsHeadTitle {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sub-color);
}

.newsList {
}

.newsList li {
	padding: 1px;
	border-bottom: solid 1px var(--line-color);
}

.newsList li:first-child {
	border-top: solid 1px var(--line-color);
}

.newsList li a {
  display: block;
  padding: 4px;
  text-decoration: none;
}

.newsList li .newsDate {
}

.newsList li .newsDate time {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.3rem;
  color: var(--main-color);
}

.newsList li .newsTitle {
	font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  transition: all .5s;
}

.newsList li a:hover .newsTitle {
  color: var(--main-color);
}

@media print, screen and (min-width: 601px) {

  .newsBlock {
    width: 800px;
    margin: 0 auto;
    padding: 40px;
    transform: translateY(-50px);
    display: flex;
    justify-content: space-between;
  }

  .newsHead {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
  }

  .newsHead .newsHeadTitle {
    font-size: 1.8rem;
  }

  .newsList {
    width: calc(100% - 160px);
    margin-bottom: 0;
  }

  .newsList li a {
    display: flex;
    align-items: center;
    padding: 10px 4px;
  }

  .newsList li .newsDate {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .newsList li .newsDate time {
    font-size: 1.4rem;
  }

  .newsList li .newsTitle {
    font-size: 1.5rem;
  }

}

/*==========================================
 イントロ
===========================================*/

#intro {
  width: 100%;
  background: var(--bg4-color);
}

.introBlock {
  width: 100%;
  padding: 0 10px;
}

.intro1 {
  width: 100%;
  margin-bottom: 20px;
}

.intro1List {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intro1List li {
  width: 25%;
  padding: 5px;
}

.intro1List li img {
  width: 100%;
  height: auto;
}

.intro2 {
}

.introList {
	list-style: none;
  padding-left: 1em;
}

.introList li {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

.introList li::before {
  content: '\f14a';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.4em;
  font-size: 1.5em;
}

.intro2 .introText {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.intro2 .introText .line {
  font-size: 1em;
  background: linear-gradient(transparent 30%, #ff6 30%);
}

.intro2 .introText .name {
  font-size: 1.4em;
  color: var(--sub-color);
}

@media print, screen and (min-width: 601px) {

  .introBlock {
    width: 700px;
    margin: 0 auto;
    padding: 0;
  }

  .intro1 {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .introList {
  }

  .introList li {
    font-size: 1.8rem;
  }

  .introList li::before {
    margin-right: 0.4em;
  }

  .intro2 .introText {
    font-size: 2.0rem;
    margin-top: 60px;
    margin-bottom: 60px;
  }

}


/*==========================================
 院長挨拶
===========================================*/

#greeting {
  width: 100%;
}

.greetingBlock {
  width: 100%;
}

.greetingBox {
  display: flex;
  flex-direction: column-reverse;
}

.greetingBox .imageBlock {
  margin-bottom: 20px;
}

.greetingBox .imageBlock .image {
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.greetingBox .imageBlock .image img {
  width: 100%;
  height: auto;
}

.greetingBox .textBlock {
  padding: 0 10px;
}

.greetingBox .textBlock .heading {
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  color: var(--sub-color);
}

.greetingBox .textBlock .message {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
}

.greetingBox .textBlock .sign {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: right;
}
 
@media print, screen and (min-width: 601px) {

  .greetingBlock {
    width: 800px;
    margin: 0 auto;
  }

  .greetingBox {
    display: flex;
    flex-direction: row;
  }

  .greetingBox .imageBlock {
    width: 240px;
    margin-bottom: 0;
  }

  .greetingBox .imageBlock .image {
    width: 100%;
  }

  .greetingBox .textBlock {
    width: 560px;
    padding: 0;
    padding-right: 40px;
  }

  .greetingBox .textBlock .heading {
    font-size: 2.2rem;
    text-align: justify;
    margin-bottom: 30px;
  }


}

/*==========================================
 当院の特徴
===========================================*/

#feature {
  width: 100%;
  background: var(--bg5-color);
}

.featureBlock {
  width: 100%;
  margin-bottom: 40px;
}

.featureBox {
  width: 100%;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
}

.featureBox:last-of-type {
  margin-bottom: 0;
}

.featureBox .featureTitle {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  color: var(--sub-color);
  text-align: center;
  position: relative;
  z-index: 0;
  margin-bottom: 10px;
}

.featureBox .featureTitle::before {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  z-index: -1;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.0em;
  line-height: 1;
  color: var(--main-color);
  text-shadow: none;
  content: "Feature " attr(data-number);
  pointer-events: none;
}

.featureBox .imageBlock {
}

.featureBox .imageBlock .image {
	width: 100%;
}

.featureBox .imageBlock .image img {
	width: 100%;
  height: auto;
}

.featureBox .textBlock {
  padding: 10px 4px 0;
}

.featureBox .textBlock .featureDesc {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
}

.bannerBlock {
  width: 100%;
}

.bannerBlock .banner {
	width: 100%;
  margin-bottom: 20px;
}

.bannerBlock .banner:last-child {
  margin-bottom: 0;
}

.bannerBlock .banner img {
	width: 100%;
  height: auto;
}

@media print, screen and (min-width: 601px) {

  .featureBlock {
    width: 940px;
    margin: 0 auto 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .featureBox {
    width: calc((100% - 60px) / 3);
  }
  
  .featureBox:nth-last-child(1),
  .featureBox:nth-last-child(2),
  .featureBox:nth-last-child(3) {
    margin-bottom: 0;
  }
  
  .bannerBlock {
    width: 800px;
    margin: 0 auto;
  }
  
  .bannerBlock .banner {
    margin-bottom: 40px;
  }


}

@media print, screen and (min-width: 1201px) {

  

}

/*==========================================
 診療の流れ
===========================================*/

#flow {
  width: 100%;
}

.flowBlock {
  width: 100%;
}

.flowBox {
  width: 100%;
  padding: 10px;
  background: #fff;
  position: relative;
  border-bottom: 4px solid var(--main-color);
  margin-bottom: 40px;
}

.flowBox:last-of-type {
  margin-bottom: 0;
}
  
.flowBox:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 28px solid transparent;
  width: 0;
  height: 0;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: var(--main-color);
  z-index: 1;
}

.flowBox .textBlock {
  padding: 8px 4px 0;
}

.flowBox .textBlock .flowTitle {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .4em;
  text-indent: .4em;
  font-feature-settings: "palt" 1;
  color: var(--sub-color);
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
  position: relative;
  z-index: 0;
  margin-bottom: 10px;
}

.flowBox .textBlock .flowTitle::before {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  z-index: -1;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 3.0em;
  line-height: 1;
  letter-spacing: .04em;
  text-indent: .04em;
  color: var(--main-color);
  text-shadow: none;
  content: attr(data-number);
  pointer-events: none;
}

.flowBox .textBlock .flowDesc {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
}

.flowBox .imageBlock {
}

.flowBox .imageBlock .image {
	width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.flowBox .imageBlock .image img {
	width: 100%;
  height: auto;
}

@media print, screen and (min-width: 601px) {

  .flowBlock {
    width: 940px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .flowBox {
    width: calc((100% - 42px) / 4);
    margin-bottom: 0;
    border-right: 2px solid var(--main-color);
    border-bottom: 4px solid var(--main-color);
  }
  
  .flowBox:last-child {
    padding-right: 14px;
  }
  
  .flowBox:not(:last-child)::after {
    border: 14px solid transparent;
    right: -28px;
    bottom: auto;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    border-left-color: var(--main-color);
    border-top-color: transparent;
}


}

@media print, screen and (min-width: 1201px) {

  

}

/*==========================================
 ブログ
===========================================*/

#blog {
  width: 100%;
}

.blogBlock {
  width: 100%;
}

.blogMain {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.blogBox {
  width: calc((100% - 10px) / 2);
  margin-bottom: 40px;
  transition: all 0.5s ease;
}

.blogBox:nth-last-child(1),
.blogBox:nth-last-child(2) {
  margin-bottom: 0;
}

.blogBox a {
  display: block;
  text-decoration: none;
}

.blogBox .imageBlock {
  margin-bottom: 10px;
}

.blogBox .imageBlock .image {
	width: 100%;
}

.blogBox .imageBlock .image img {
	width: 100%;
  aspect-ratio: 3 / 2;
  /* object-fit: cover; */
}

.blogBox .textBlock {
}

.blogBox .textBlock .blogHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: .4em;
}

.blogBox .textBlock .blogHeader .blogCategory {
  width: 6em;
  padding: .2em 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  color: #fff;
  text-align: center;
  background: var(--main-color);
  border-radius: 4px 4px 0 0;
}

.blogBox .textBlock .blogHeader .blogDate {
}

.blogBox .textBlock .blogHeader .blogDate time {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
}

.blogBox .textBlock .blogTitle {
	font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
}

@media print, screen and (min-width: 601px) {

  .blogBlock {
    width: 940px;
    margin: 0 auto;
  }

  .blogMain {
  }

  .blogBox {
    width: calc((100% - 60px) / 4);
    margin-bottom: 0;
  }

  .blogBox .imageBlock .image img {
    width: 100%;
  }

  .blogBox .textBlock {
  }

  .blogBox .textBlock .blogHeader {
  }

  .blogBox .textBlock .blogHeader .blogCategory {
    font-size: 1.3rem;
  }

  .blogBox .textBlock .blogHeader .blogDate time {
    font-size: 1.3rem;
  }

  .blogBox .textBlock .blogTitle {
    font-size: 1.5rem;
  }


}

@media print, screen and (min-width: 1201px) {

  

}

/*==========================================
 共通
===========================================*/


.topSection_wrap {
	width: 100%;
	position: relative;
  z-index: 0;
}

.topSection {
  width: 100%;
	padding: 80px 0;
	position: relative;
}

.topSectionBox {
	width: 100%;
	padding: 0 10px;
  position: relative;
}

.topSectionBox .topSectionHead {
  text-align: center;
  margin-bottom: 40px;
  /* opacity: 0; */
}

.topSectionBox .topSectionHead .topSectionTitle {
	font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  color: var(--sub-color);
}

.topSectionBox .topSectionHead .topSectionSubTitle {
	font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.topSectionBox .topSectionHead .topSectionSubTitle::before,
.topSectionBox .topSectionHead .topSectionSubTitle::after {
    width: 2px;
    height: 20px;
    background: var(--main-color);
    content: '';
}

.topSectionBox .topSectionHead .topSectionSubTitle::before {
    transform: rotate(-35deg);
    margin-right: 20px;
}

.topSectionBox .topSectionHead .topSectionSubTitle::after {
    transform: rotate(35deg);
    margin-left: 20px;
}

@media print, screen and (min-width: 601px) {

  .topSection {
    padding: 120px 0;
  }

  .topSectionBox {
    width: 1200px;
    margin: 0 auto;
	  padding: 0;
  }

  .topSectionBox .topSectionHead .topSectionTitle {
    font-size: 2.8rem;
  }

  .topSectionBox .topSectionHead .topSectionSubTitle {
    font-size: 2.2rem;
  }

  .topSectionBox .topSectionHead .topSectionSubTitle::before,
  .topSectionBox .topSectionHead .topSectionSubTitle::after {
      width: 2px;
      height: 30px;
  }

  .topSectionBox .topSectionHead .topSectionSubTitle::before {
      margin-right: 20px;
  }

  .topSectionBox .topSectionHead .topSectionSubTitle::after {
      margin-left: 20px;
  }
	
}

/* 印刷 */

@media print{
/*
  #mainVisual {
    height: 600px;
  }

  #mainVisual .mv-wrap {
    height: 600px;
  }

  #mainVisual .slider {
    height: 600px;
  }

  #mainVisual .slider img{
    height: 600px;
  }
  */
}

