@charset "UTF-8";
/* ------------------------------------------------------------
// treatmet
------------------------------------------------------------ */
.header-wrap {
  position: fixed;
  z-index: 100;
}

#ac1,
#ac2,
#medical-ac1,
#medical-ac2,
#medical-ac3,
#medical-ac4,
#medical-ac5,
#medical-ac6,
#medical-ac7 {
  padding-top: 180px; /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -180px; /* heightと同じ分のネガティブマージン */
}

.content-ttl-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 380px;
  padding: 20px 20px 40px;
  background: url(../images/treatmet/page-title.png) no-repeat center center/cover;
}
.content-ttl-img .content-ttl-box {
  display: inline-block;
  text-align: center;
  padding: 20px 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
}
.content-ttl-img .content-ttl-box .ttl-en {
  font-size: 48px;
  line-height: 1.2;
}
.content-ttl-img .content-ttl-box .ttl-jp {
  font-size: 14px;
  color: #fab153;
  line-height: 1.2;
}
@media screen and (max-width: 575px) {
  .content-ttl-img {
    height: 240px;
    padding: 20px;
  }
  .content-ttl-img .content-ttl-box {
    padding: 10px 60px;
    border-radius: 10px;
  }
  .content-ttl-img .content-ttl-box .ttl-en {
    font-size: 36px;
  }
  .content-ttl-img .content-ttl-box .ttl-jp {
    font-size: 13px;
  }
}

.medical-txt-box {
  margin-bottom: 60px;
  padding: 40px 30px;
  border: 4px solid #4699d4;
  border-radius: 16px;
}
.medical-txt-box ul.disc {
  margin: 1em 0 1em 1.5em;
}
.medical-txt-box ul.disc li {
  list-style-type: disc;
}

.medical-blue-txt-box {
  color: #ffffff;
  margin-top: 40px;
  padding: 40px 30px;
  background: #4699d4;
  border-radius: 16px;
}

.medical-box {
  margin-bottom: 60px;
}
.medical-box .medical-subttl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding: 6px 15px 4px;
  background: #242525;
  border-radius: 16px;
}

.flex-two-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-two-box .box {
  width: calc(50% - 10px);
  padding: 20px;
  border: 1px dashed #cccccc;
  border-radius: 16px;
}
.flex-two-box .box .ttl {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  padding: 6px 15px 4px;
  background: #4699d4;
  border-radius: 3px;
}
@media print, screen and (max-width: 767px) {
  .flex-two-box {
    flex-direction: column;
  }
  .flex-two-box .box {
    width: 100%;
    padding: 20px 15px;
  }
}

.flex-three-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-three-box .box {
  width: calc((100% - 40px) / 3);
  padding: 20px;
  border: 1px dashed #cccccc;
  border-radius: 16px;
}
.flex-three-box .box .ttl {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  padding: 6px 15px 4px;
  background: #4699d4;
  border-radius: 3px;
}
.flex-three-box .box .ttl span {
  font-size: 14px;
  font-weight: 400;
}
@media print, screen and (max-width: 767px) {
  .flex-three-box {
    flex-direction: column;
  }
  .flex-three-box .box {
    width: 100%;
    padding: 20px 15px;
  }
}

.medical-center-img {
  text-align: center;
  margin: 40px 0;
  padding: 0 40px;
}
.medical-center-img img {
  margin: 0 auto;
}

.medical-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.medical-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 180px;
  max-width: 180px;
}
.medical-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #4699d4;
  border: 5px solid #4699d4;
  border-radius: 50%;
  transition: 0.3s;
}
.medical-list li a .illust img {
  width: 60px;
  margin: 0 auto;
}
.medical-list li a .txt {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 10px;
}
.medical-list li a:hover {
  border: 5px solid #134e78;
}
.medical-list li a:hover .illust img {
  opacity: 1;
}
@media print, screen and (max-width: 767px) {
  .medical-list {
    gap: 10px;
  }
  .medical-list li {
    height: 146px;
    max-width: 146px;
    border-radius: 10px;
  }
  .medical-list li a {
    border-radius: 10px;
  }
}

.medical-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 30px 15px;
  border: 5px solid #cccccc;
  border-radius: 20px;
}
@media print, screen and (max-width: 767px) {
  .medical-txt {
    font-size: 16px;
    margin: 20px auto 0;
    padding: 20px 10px;
  }
}

.cosmetic-box {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.cosmetic-box .img {
  width: 400px;
}
.cosmetic-box .content {
  flex: 1;
}
.cosmetic-box .content p {
  font-size: 18px;
  line-height: 2;
  margin-top: 40px;
}
.cosmetic-box .content .before-after {
  display: inline-block;
  margin-top: 1em;
  padding: 6px 20px 4px;
  border: 2px dashed #dddddd;
  border-radius: 5px;
}
@media print, screen and (max-width: 991px) {
  .cosmetic-box {
    gap: 40px;
  }
  .cosmetic-box .img {
    width: 260px;
  }
  .cosmetic-box .content p {
    font-size: 16px;
    margin-top: 0;
  }
}
@media print, screen and (max-width: 767px) {
  .cosmetic-box {
    flex-direction: column;
    gap: 20px;
  }
  .cosmetic-box .img {
    width: 100%;
  }
  .cosmetic-box .img img {
    margin: 0 auto;
  }
  .cosmetic-box .content p {
    line-height: 1.8;
  }
}

.cosmetic-list-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cosmetic-list-box .box {
  display: flex;
  color: #ffffff;
  width: 100%;
  background: #4699d4;
  border-radius: 16px;
}
.cosmetic-list-box .box .img {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  width: 300px;
  padding: 30px;
  border-right: 1px dashed #ffffff;
}
.cosmetic-list-box .box .img img {
  margin: 0 auto;
}
.cosmetic-list-box .box .img .txt {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.cosmetic-list-box .box .content {
  flex: 1;
  padding: 30px;
}
.cosmetic-list-box .box .content dl dt {
  color: #4699d4;
  margin: 30px 0 15px;
  padding: 2px 15px 1px;
  background: #ffffff;
  border-radius: 16px;
}
.cosmetic-list-box .box .content dl dd ul {
  margin-left: 2.3em;
}
.cosmetic-list-box .box .content dl dd ul li {
  list-style-type: disc;
}
@media print, screen and (max-width: 767px) {
  .cosmetic-list-box .box {
    flex-direction: column;
  }
  .cosmetic-list-box .box .img {
    width: 100%;
    border-right: nonef;
    border-bottom: 1px dashed #ffffff;
  }
  .cosmetic-list-box .box .content {
    padding: 30px 15px;
  }
  .cosmetic-list-box .box .content dl dd ul {
    margin-left: 2em;
  }
}

.list-item-box {
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.list-item {
  border-top: 1px dashed #dddddd;
}

.list-item:first-child {
  border-top: 0;
}

.list-item-content {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  max-width: 1100px;
  display: flex;
  align-items: center;
}

.list-item-content::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #4699d4;
}
@media print, screen and (max-width: 767px) {
  .list-item-content::before {
    left: 25px;
  }
}

.list-item:first-child .list-item-content::before {
  top: 0;
}

.list-item:last-child .list-item-content::before {
  bottom: 40px;
}

.list-item-content-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background: #4699d4;
  color: #fff;
  font-size: 36px;
  flex-shrink: 0;
}
@media print, screen and (max-width: 767px) {
  .list-item-content-number {
    font-size: 24px;
    width: 50px;
    height: 50px;
    margin-right: 24px;
  }
}

.list-item-content-description {
  line-height: 1.5;
  font-size: 16px;
}

.medical-flow {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.medical-flow > li {
  position: relative;
}

.medical-flow > li:not(:last-child) {
  margin-bottom: 40px;
}
@media print, screen and (max-width: 991px) {
  .medical-flow > li:not(:last-child) {
    margin-bottom: 30px;
  }
}

.medical-flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: 128px;
  z-index: 10;
}
@media print, screen and (max-width: 991px) {
  .medical-flow > li:not(:first-child)::before {
    display: none;
  }
}

.medical-flow > li dl {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  border: 2px solid #4699d4;
  border-radius: 10px;
  position: relative;
}
@media print, screen and (max-width: 991px) {
  .medical-flow > li dl {
    flex-direction: column;
  }
}

.medical-flow > li:not(:last-child) dl::before,
.medical-flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.medical-flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #4699d4;
}

.medical-flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}

.medical-flow > li dl dt {
  font-size: 20px;
  -ms-flex-preferred-size: 20%;
  margin-right: 2vw;
  text-align: center;
  width: 200px;
}
@media print, screen and (max-width: 991px) {
  .medical-flow > li dl dt {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

.medical-flow > li dl dd {
  flex: 1;
}

.medical-flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: #4699d4;
  background: linear-gradient(to right, rgb(107, 144, 219) 0%, rgb(102, 213, 233) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6b90db", endColorstr="#66d5e9",GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}