header, .l-gNavBtn-wrap {
  opacity: 1;
}

.sv_first_time {
  background-image: url(../image/first_time/pgttl.jpg);
  background-position: center;
  background-size: cover;
}

/* ===============================================
イントロ
=============================================== */
.intro {
  width: min(90%, 1200px);
  margin: 90px auto;
}


.intro_wrap01, .intro_wrap02 {
  display: flex;
  gap: 50px;
}

.intro_wrap01 p, .intro_wrap02 p {
  text-align: justify;
  width: 65%;
}

.intro_wrap01 p span {
  font-weight: 700;
}

.intro_wrap02 {
  flex-direction: row-reverse;
  margin-top: 50px;
}

.intro_wrap02 img {
  padding-right: 10px;
}

@media screen and (max-width:1029px) {
  .intro_wrap01, .intro_wrap02 {
    flex-direction: column;
  }

  .intro_wrap01 p, .intro_wrap02 p {
    width: 100%;
  }
}

/* ===============================================
通院をお考えのみなさまへ
=============================================== */
.commute {
  padding: 90px 0;
  position: relative;
  background: #41a8d110;
}

.commute_wrap {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.commute .sub_ttl {
  margin-bottom: 45px;
}

.commute .sub_ttl::after {
  content: "To everyone";
  color: var(--cl_main);
  font-size: clamp(12px, 1.8vw, 15px);
  font-family: var(--ff-en);
  font-weight: 400;
}

.commute ul {}

.commute ul li {
  list-style: none;
  text-align: left;
  margin-bottom: 35px;
}

.commute ul li h2 {
  font-size: clamp(17px, 2.4vw, 24px);
  margin-bottom: 10px;
}

.commute ul li h2 span {
  display: inline-block;
  height: 100%;
  background: #41a8d195;
  padding: 0 10px;
  margin-right: 10px;
  font-family: var(--ff-en);
  color: #fff;
  border-radius: 5px;
}

.commute ul li p {
  text-align: justify;
}

/* スライダー */
.swiper_firsttime {
  width: 100%;
  overflow: hidden;
}

/* ===============================================
歯科医師紹介
=============================================== */

.doctor {
  width: min(90%, 1200px);
  margin: 90px auto;
}

.doctor .sub_ttl::after {
  content: "Doctor introduction";
  color: var(--cl_main);
  font-size: clamp(12px, 1.8vw, 15px);
  font-family: var(--ff-en);
  font-weight: 400;
}

.doctor_box {
  display: flex;
  margin: 65px 0;
  gap: 35px;
  flex-direction: row-reverse;
  position: relative;
}

.doctor_box p {
  text-align: justify;
}

.doctor_box p span {
  font-weight: 700;
}

.doctor_box .doctor_img {
  width: 65%;
  min-width: 375px;
  padding-left: 35px;
  position: relative;
}

.doctor_box .doctor_img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: right;
}

.doctor_name {
  position: absolute;
  top: 35px;
  left: -10px;
  background: var(--cl_main);
  writing-mode: vertical-rl;
  padding: 20px 5px;
  color: #fff;
}

.doctor_name span {
  display: block;
}

.doctor_name .en {
  font-family: var(--ff-en);
  font-size: 12px;
  text-align: left;
}

.doctor_name .ja {
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
  text-align: left;
}

.doctor_name .post {
  text-align: left;
}

@media screen and (max-width:820px) {
  .doctor_box {
    flex-direction: column-reverse;
  }

  .doctor_box .doctor_img {
    min-width: 280px;
    margin: 0 auto;
  }
}

/* ===============================================
アサオ歯科の日常
=============================================== */
.daily_wrap {
  width: min(90%, 1200px);
  margin: 65px auto;
}

.daily_wrap .txt_box p {
  text-align: left;
}

.daily .sub_ttl {
  margin-bottom: 45px;
}

/* ギャラリー */

.gallery {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 90px;
}

.gallery li {
  overflow: hidden;
}

.gallery li img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: all .3s;
}

.gallery li:hover img {
  transform: scale(1.2);
}

@media screen and (max-width: 1000px) {

  .gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width:636px) {

  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}