@charset "UTF-8";
/*
Theme Name: 堂島RYO歯科・矯正クリニック
Description: テーマの説明
Theme URI: テーマのURL
Author: テーマの作者
Author URI: 作者のサイト
Version: バージョン
*/
/*************************************************
common-style
*************************************************/
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex-evenly {
  display: flex;
  justify-content: space-evenly;
}

* {
  box-sizing: border-box;
}

.point-none {
  pointer-events: none;
  opacity: 0.5;
}

.opa {
  opacity: 0.5;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  min-height: 100dvh;
  -webkit-font-smoothing: auto;
}

section {
  scroll-margin-top: 100px; /* 固定ヘッダーの高さ分を調整 */
}

.font-mincho {
  font-family: "Shippori Mincho B1", serif;
}

.font-en {
  font-family: "Josefin Sans", sans-serif;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .inner {
    width: 85%;
    max-width: 1000px;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.inner_large {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .inner_large {
    width: 85%;
    max-width: 1000px;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .inner_large {
    width: 90%;
  }
}

div,
p,
li,
dt,
dd,
th,
td,
a {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 1px;
  color: #444;
}
@media screen and (max-width: 768px) {
  div,
  p,
  li,
  dt,
  dd,
  th,
  td,
  a {
    font-size: 1.4rem;
    letter-spacing: 0px;
  }
}

.img-box img {
  width: 100%;
}

.obj-fit img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.h-scale .img-box {
  overflow: hidden;
}
.h-scale img {
  transition: all 0.3s;
}
.h-scale:hover img {
  transform: scale(1.1);
}

.block:has(> .left, > .right) {
  display: flex;
}

.text-ell > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hover_opacity a {
  transition: all 0.3s;
}
.hover_opacity a:hover {
  opacity: 0.7;
}

.pc-m {
  display: block;
}
@media screen and (max-width: 1023px) {
  .pc-m {
    display: none;
  }
}

.sp-m {
  display: none;
}
@media screen and (max-width: 1023px) {
  .sp-m {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

.mb50 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .mb50 {
    margin-bottom: 2rem;
  }
}

.text-center {
  text-align: center;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

/*************************************************
header
*************************************************/
.header {
  position: absolute;
  background: url(../images/header_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  display: block;
  padding: 1rem 1rem 2rem 1rem;
  z-index: 1;
  top: 0;
  overflow: hidden;
  max-width: 50rem;
}
.header .header_inner {
  margin: auto 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.header .header_inner h1 {
  width: 240px;
}
@media screen and (max-width: 500px) {
  .header .header_inner h1 {
    max-width: 220px;
  }
}
.header .header_inner img.logo {
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .header .header_inner img.logo {
    max-width: 220px;
    width: 100%;
  }
}
.header .header_inner img {
  max-width: 220px;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .header .header_inner img {
    max-width: 160px;
    width: 100%;
  }
}

/*************************************************
footer
*************************************************/
footer {
  position: relative;
  z-index: 2;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  footer {
    margin: 0 auto;
  }
}
footer p {
  font-size: 10px;
}

/*************************************************
top
*************************************************/
.pc_contents {
  display: block;
}
@media screen and (max-width: 500px) {
  .pc_contents {
    display: none;
  }
}

.pc_section_inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.pc_section_inner img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.pc_fv {
  background-image: url(../images/pc_fv_bg.png);
  background-size: cover;
  background-position: center center;
}
.pc_fv .pc_section_001 {
  padding-bottom: 30px;
}

.pc_section_01 {
  padding-top: 30px;
  background-image: url(../images/pc_section_01_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.pc_section_01 .case_contents {
  margin: 30px auto;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(123deg, #fad0c4 3.01%, #fad0c4 3.97%, #ffd1ff 98.82%);
}
.pc_section_01 .case_contents .case_wrap_pc {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.pc_section_01 .case_contents h2 {
  padding: 10px;
  width: fit-content;
  color: #fd5392;
  font-size: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  margin: 0 auto 3.5rem;
}
.pc_section_01 .case_contents h2::before, .pc_section_01 .case_contents h2::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #fe5196;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pc_section_01 .case_contents h2::before {
  left: -8px;
  top: 5px;
}
.pc_section_01 .case_contents h2::after {
  right: -8px;
  bottom: 5px;
}
.pc_section_01 .case_contents img {
  margin-bottom: 1.5rem;
  display: block;
  width: 100%;
}
.pc_section_01 .case_contents .case_txt_ttl {
  display: flex;
  padding: 2px 5px;
  justify-content: start;
  align-items: center;
  gap: 10px;
  color: #fe5196;
  margin-bottom: 1rem;
}
.pc_section_01 .case_contents .case_txt_ttl:last-child {
  margin-bottom: 0rem;
}
.pc_section_01 .case_contents .case_txt_ttl .label {
  border: 0.5px solid #fe5196;
  padding: 2px 5px;
}
.pc_section_01 .case_contents .case_txt_ttl .value {
  font-weight: bold;
}
.pc_section_01 .pc_section_002 {
  margin-bottom: 16.6666666667vw;
}
.pc_section_01 .pc_section_011 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1130px;
}

.pc_section_02 {
  background-image: url(../images/pc_section_02_bg.png);
  background-repeat: no-repeat;
  margin-bottom: 30px;
  background-size: cover;
}
.pc_section_02 img {
  padding-top: 50px;
}

.pc_section_03 {
  padding-top: 130px;
}
.pc_section_03 .case_wrap_pc {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.pc_section_03 .case_contents {
  margin: 3rem 1.5rem 3rem 1.5rem;
  padding: 2.5rem 1.5rem;
  background: #fff;
}
.pc_section_03 .case_contents img {
  margin-bottom: 1.5rem;
  display: block;
  width: 100%;
}
.pc_section_03 .case_contents .case_txt_ttl {
  display: flex;
  padding: 2px 5px;
  justify-content: start;
  align-items: center;
  gap: 10px;
  color: #584638;
  margin-bottom: 1rem;
}
.pc_section_03 .case_contents .case_txt_ttl:last-child {
  margin-bottom: 0rem;
}
.pc_section_03 .case_contents .case_txt_ttl .label {
  border: 0.5px solid #584638;
  padding: 2px 5px;
}
.pc_section_03 .case_contents .case_txt_ttl .value {
  font-weight: bold;
}

.pc_section_03_bg {
  background-image: url(../images/pc_section_03_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.pc_section_04 img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.pc_section_04 .pc_section_006 {
  margin-top: 100px;
  margin-bottom: 115px;
}
.pc_section_04 .pc_section_007 {
  margin-bottom: 4.8611111111vw;
}
.pc_section_04 .pc_section_008 {
  padding-bottom: 50px;
}

.pc_section_05 {
  background-image: url(../images/pc_section_05_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 30px;
}
.pc_section_05 img {
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
}
.pc_section_05 a {
  text-align: center;
  display: block;
  color: #fe5196;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 50px;
  text-decoration: underline;
}
.pc_section_05 a:hover {
  opacity: 0.7;
}

.pc_section_06 {
  background-image: url(../images/pc_section_06_bg.png);
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.pc_section_06 img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.pc_contents {
  /* 医院概要 */
}
.pc_contents .clinic_wrap {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pc_contents .clinic_wrap h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 7rem 0 2rem 0;
}
.pc_contents .clinic_wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.pc_contents .clinic_wrap table tr {
  border-bottom: 1px solid #c2b280;
  display: block;
}
.pc_contents .clinic_wrap table tr:first-child {
  border-top: 1px solid #c2b280;
}
.pc_contents .clinic_wrap table tr th {
  background: #f9f7f2;
  vertical-align: middle;
  display: block;
  width: 100%;
  padding: 1rem;
  letter-spacing: 0.1rem;
}
.pc_contents .clinic_wrap table tr td {
  vertical-align: middle;
  display: block;
  width: 100%;
  padding: 1rem;
  letter-spacing: 0.1rem;
}
.pc_contents .clinic_wrap table tr td .business_hours {
  max-width: 50rem;
  background-color: #fff;
  position: static;
}
@media screen and (max-width: 768px) {
  .pc_contents .clinic_wrap table tr td .business_hours {
    width: 100%;
    padding: 0rem;
  }
}
.pc_contents .clinic_wrap table tr td .business_hours dl {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #bfdcdc;
  padding: 1rem 0;
}
.pc_contents .clinic_wrap table tr td .business_hours dl dt,
.pc_contents .clinic_wrap table tr td .business_hours dl dd {
  font-size: 1.3rem;
  text-align: center;
}
.pc_contents .clinic_wrap table tr td .business_hours dl dt {
  width: 30%;
  text-align: left;
  line-height: 1.4;
  font-size: 1.4rem;
}
.pc_contents .clinic_wrap table tr td .business_hours dl dd {
  width: 10%;
  font-size: 1.4rem;
}
.pc_contents .clinic_wrap table tr td .business_hours dl.bn_item dd {
  font-size: 1.4rem;
  line-height: 1;
  color: #0abab5;
}
.pc_contents .clinic_wrap table tr td .business_hours:last-of-type {
  margin-bottom: 1rem;
}
.pc_contents .clinic_wrap table tr td .note {
  text-align: left;
}
.pc_contents .clinic_wrap table tr td .note span {
  color: #0abab5;
}
.pc_contents .fix-wrap {
  display: block;
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  z-index: 100;
  padding: 0 2rem;
}
.pc_contents .fix-wrap a {
  display: block;
}
.pc_contents .fix-wrap a img {
  display: block;
  width: 100%;
  height: auto;
}

/*************************************************
fv
*************************************************/
/* 追従 */
.fix-wrap {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  z-index: 100;
  padding: 0 2rem;
}
@media screen and (max-width: 500px) {
  .fix-wrap {
    display: flex;
    flex-direction: column;
  }
}
.fix-wrap a {
  display: block;
}
.fix-wrap a img {
  display: block;
  width: 100%;
  height: auto;
}

.cta_btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  max-width: 350px;
  margin: 0 auto;
}

.cta_wrap {
  background: url(../images/cta_bg.jpg) center center/cover no-repeat;
  height: 74px;
  width: 350px;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contents_wrap {
  display: none;
  margin-left: 50%;
  max-width: 50rem;
  min-height: 100vh;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  /* ジルコニア */
  /* カウンセリング */
  /* 院長 */
  /* 施術の流れ */
  /* ヒミツは */
  /* お得に！ */
  /* 医院概要 */
}
@media screen and (max-width: 1200px) {
  .contents_wrap {
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .contents_wrap {
    box-shadow: none;
  }
}
.contents_wrap img {
  width: 100%;
}
.contents_wrap .fv {
  position: relative;
  width: 100%;
  padding-bottom: 15rem;
}
.contents_wrap .fv img {
  width: 100%;
  height: auto;
}
.contents_wrap .fv::before {
  position: absolute;
  content: "";
  top: 15rem;
  left: 3.5rem;
  width: 220px;
  height: 477px;
  background: url(../images/fv_copy.png) no-repeat center center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 414px) {
  .contents_wrap .fv::before {
    top: 10rem;
    left: 2.5rem;
    width: 192px;
    height: 416px;
  }
}
.contents_wrap .fv::after {
  position: absolute;
  content: "";
  bottom: 30rem;
  right: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 50rem;
  height: auto;
  min-height: 85px;
  background: url(../images/fv_copy02.png) no-repeat center center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 414px) {
  .contents_wrap .fv::after {
    bottom: 26rem;
    width: 352px;
    min-height: 75px;
  }
}
.contents_wrap .case {
  width: 100%;
  min-height: 500px;
  background: url(../images/case-wrap_bg.png) no-repeat top center;
  background-size: cover;
  position: relative;
  margin-top: -22rem;
  z-index: 2;
  padding-top: 2rem;
}
.contents_wrap .case .case_img {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  margin-top: -5rem;
  margin-bottom: 3rem;
}
.contents_wrap .case .case_img .point {
  max-width: 400px;
}
.contents_wrap .case .case_contents {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(123deg, #fad0c4 3.01%, #fad0c4 3.97%, #ffd1ff 98.82%);
}
.contents_wrap .case .case_contents .case_wrap {
  margin-bottom: 5rem;
}
.contents_wrap .case .case_contents .case_wrap:last-child {
  margin-bottom: 0rem;
}
.contents_wrap .case .case_contents h2 {
  color: #fd5392;
  font-size: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  margin-bottom: 3.5rem;
}
.contents_wrap .case .case_contents h2::before, .contents_wrap .case .case_contents h2::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #fe5196;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.contents_wrap .case .case_contents h2::before {
  left: -8px;
  top: 5px;
}
.contents_wrap .case .case_contents h2::after {
  right: -8px;
  bottom: 5px;
}
.contents_wrap .case .case_contents img {
  margin-bottom: 1.5rem;
}
.contents_wrap .case .case_contents .case_txt_ttl {
  display: flex;
  padding: 2px 5px;
  justify-content: start;
  align-items: center;
  gap: 10px;
  color: #fe5196;
  margin-bottom: 1rem;
}
.contents_wrap .case .case_contents .case_txt_ttl:last-child {
  margin-bottom: 0rem;
}
.contents_wrap .case .case_contents .case_txt_ttl .label {
  border: 0.5px solid #fe5196;
  padding: 2px 5px;
}
.contents_wrap .case .case_contents .case_txt_ttl .value {
  font-weight: bold;
}
.contents_wrap .zirconia_contents {
  width: 100%;
  min-height: 650px;
  background: url(../images/zirconia_txt_bg.png) no-repeat bottom center;
  background-size: cover;
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 414px) {
  .contents_wrap .zirconia_contents {
    min-height: 700px;
    background-position: center -40px;
  }
}
.contents_wrap .zirconia_contents .zirconia_ttl {
  margin-top: 1.5rem;
}
.contents_wrap .zirconia_contents .txt {
  font-size: 20px;
}
.contents_wrap .zirconia_contents .zirconia_text {
  max-width: 292px;
}
.contents_wrap .zirconia_contents .txt_area {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.contents_wrap .zirconia_contents .txt_area p {
  font-size: 16px;
  padding: 0 1.5rem;
}
.contents_wrap .zirconia_contents .txt_area p span {
  color: #f77062;
}
.contents_wrap .zirconia_contents::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 90px;
  background: url(../images/sonna.png) no-repeat center center;
  background-size: contain;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 414px) {
  .contents_wrap .zirconia_contents::after {
    bottom: -20px;
  }
}
.contents_wrap .ordermade {
  width: 100%;
  min-height: 650px;
  aspect-ratio: 2.4;
  background: url(../images/zirconia_bg.png) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-top: 8.5rem;
}
.contents_wrap .ordermade::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: url(../images/ordermade_shine.png) no-repeat center center;
  top: 0px;
  left: 0%;
  mix-blend-mode: screen;
  z-index: 1;
}
@media screen and (max-width: 414px) {
  .contents_wrap .ordermade {
    margin-top: 3rem;
  }
}
.contents_wrap .ordermade .ordermade_ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 283px;
  z-index: 2;
}
@media screen and (max-width: 414px) {
  .contents_wrap .ordermade .ordermade_ttl {
    top: 1rem;
  }
}
.contents_wrap .ordermade .ordermade_txt {
  position: absolute;
  top: 10rem;
  right: 2.5rem;
  max-width: 130px;
  width: 100%;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 414px) {
  .contents_wrap .ordermade .ordermade_txt {
    top: 15rem;
    max-width: 103px;
  }
}
.contents_wrap .picture_wrap {
  width: 100%;
  min-height: 720px;
  background: url(../images/picture_bg.jpg) no-repeat bottom center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.contents_wrap .picture_wrap .picture_txt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 7rem;
  margin-bottom: 5rem;
}
.contents_wrap .picture_wrap .picture_txt img {
  width: 100%;
}
.contents_wrap .picture_wrap .picture_txt img:nth-child(1) {
  max-width: 312px;
}
.contents_wrap .picture_wrap .picture_txt img:nth-child(2) {
  max-width: 110px;
}
.contents_wrap .picture_wrap .picture_txt img:nth-child(3) {
  max-width: 306px;
}
.contents_wrap .picture_wrap .txtarea {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}
.contents_wrap .picture_wrap .txtarea p:nth-child(1) {
  font-size: 16px;
  color: #584638;
  border: 1px solid #584638;
  padding: 0.8rem;
}
.contents_wrap .picture_wrap .txtarea p:nth-child(2) {
  font-size: 32px;
  text-align: center;
  background: linear-gradient(90deg, #a445b2 0%, #d41872 52%, #f06 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contents_wrap .picture_wrap .txtarea p:nth-child(2) span {
  font-size: 28px;
}
.contents_wrap .method_list {
  width: 100%;
  min-height: 200px;
  background: url(../images/picture-list_bg.jpg) no-repeat bottom center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.contents_wrap .method_list ul {
  padding-left: 1.5rem;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.contents_wrap .method_list ul li {
  position: relative;
  color: #584638;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.contents_wrap .method_list ul li:first-child {
  padding-top: 0rem;
}
.contents_wrap .method_list ul li::before {
  position: absolute;
  content: "";
  width: 241px;
  height: 1px;
  bottom: 0;
  left: 0;
  background-image: repeating-linear-gradient(90deg, rgba(88, 70, 56, 0.5) 0, rgba(88, 70, 56, 0.5) 3px, transparent 3px, transparent 6px);
}
.contents_wrap .doctor_wrap {
  width: 100%;
  min-height: 750px;
  background: url(../images/doctor_bg.png) no-repeat top center;
  background-size: cover;
  position: relative;
  padding-bottom: 6rem;
  margin-top: 3rem;
  z-index: 1;
}
.contents_wrap .doctor_wrap .doctor_wrap-pic {
  position: relative;
  height: 600px;
}
@media screen and (max-width: 414px) {
  .contents_wrap .doctor_wrap .doctor_wrap-pic {
    height: 520px;
  }
}
.contents_wrap .doctor_wrap .doctor_wrap-pic img {
  position: absolute;
}
.contents_wrap .doctor_wrap .doctor_wrap-pic img:nth-child(1) {
  top: 8rem;
  right: 0;
  max-width: 370px;
}
@media screen and (max-width: 414px) {
  .contents_wrap .doctor_wrap .doctor_wrap-pic img:nth-child(1) {
    top: 4.5rem;
    right: 0;
    max-width: 333px;
  }
}
.contents_wrap .doctor_wrap .doctor_wrap-pic img:nth-child(2) {
  top: 8rem;
  left: 2.5rem;
  max-width: 110px;
}
@media screen and (max-width: 414px) {
  .contents_wrap .doctor_wrap .doctor_wrap-pic img:nth-child(2) {
    top: 4.5rem;
    left: 2.5rem;
    max-width: 99px;
  }
}
.contents_wrap .doctor_wrap .case_contents {
  margin: 3rem 1.5rem 3rem 1.5rem;
  padding: 2.5rem 1.5rem;
  background: #fff;
}
.contents_wrap .doctor_wrap .case_contents .case_wrap {
  margin-bottom: 5rem;
}
.contents_wrap .doctor_wrap .case_contents .case_wrap:last-child {
  margin-bottom: 0rem;
}
.contents_wrap .doctor_wrap .case_contents img {
  margin-bottom: 1.5rem;
}
.contents_wrap .doctor_wrap .case_contents .case_txt_ttl {
  display: flex;
  padding: 2px 5px;
  justify-content: start;
  align-items: center;
  gap: 10px;
  color: #584638;
  margin-bottom: 1rem;
}
.contents_wrap .doctor_wrap .case_contents .case_txt_ttl:last-child {
  margin-bottom: 0rem;
}
.contents_wrap .doctor_wrap .case_contents .case_txt_ttl .label {
  border: 0.5px solid #584638;
  padding: 2px 5px;
}
.contents_wrap .doctor_wrap .case_contents .case_txt_ttl .value {
  font-weight: bold;
}
.contents_wrap .flow_wrap {
  width: 100%;
  max-width: 500px;
  margin: -5rem auto 0;
  aspect-ratio: 390/1600;
  max-height: 1850px;
  background: url(../images/flow_bg.png) no-repeat center bottom;
  background-size: cover;
  position: relative;
  z-index: -1;
  padding: 0 2rem 6rem 2rem;
}
.contents_wrap .flow_wrap::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  background: url(../images/why.png) no-repeat center bottom;
  background-size: cover;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.contents_wrap .flow_wrap .ttl {
  max-width: 300px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 6rem;
  margin-bottom: 4rem;
}
.contents_wrap .flow_wrap .flow_contents_wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}
.contents_wrap .flow_wrap .flow_contents_wrap .flow_contents {
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  min-width: 360px;
  padding: 2rem 3rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.contents_wrap .flow_wrap .flow_contents_wrap .flow_contents .flow_ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  gap: 12px;
  color: #584638;
}
.contents_wrap .flow_wrap .flow_contents_wrap .flow_contents .flow_ttl span {
  font-family: "DIN 2014";
  font-size: 33px;
  font-weight: 600;
}
.contents_wrap .flow_wrap .flow_contents_wrap .flow_contents p {
  font-size: 16px;
  color: #584638;
}
.contents_wrap .flow_possible {
  margin: 6rem 0 2rem 0;
}
.contents_wrap .flow_possible img {
  max-width: 360px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}
.contents_wrap .secret_wrap {
  min-height: 750px;
  background: url(../images/secret_bg.png) no-repeat top center;
  background-size: cover;
  position: relative;
  padding-top: 12rem;
  z-index: 1;
}
.contents_wrap .secret_wrap .secret_contents_wrap {
  color: #584638;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 6rem;
}
.contents_wrap .secret_wrap .secret_contents_wrap .secret_contents {
  display: flex;
  min-width: 360px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.contents_wrap .secret_wrap .secret_contents_wrap .secret_contents .secret_ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  gap: 1rem;
  padding: 0 1.5rem;
}
.contents_wrap .secret_wrap .secret_contents_wrap .secret_contents .secret_ttl span {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--03, linear-gradient(137deg, #ffe29f 14.97%, #ffa99f 52.42%, #ff719a 92.99%));
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.contents_wrap .secret_wrap .secret_contents_wrap .secret_contents .secret_ttl span::before {
  content: attr(num);
  position: absolute;
  color: #fff;
  font-size: 40px;
  transform: skewX(-15deg);
}
.contents_wrap .secret_wrap .secret_contents_wrap .secret_contents img {
  padding: 0 4.5rem;
}
.contents_wrap .secret_wrap .secret_contents_wrap .secret_contents p {
  font-size: 16px;
  margin: 0 auto;
  text-align: center;
}
.contents_wrap .bargain_wrap {
  max-width: 500px;
  margin: 0 auto;
  background: url(../images/bargain_bg.png) 50%/cover no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
}
.contents_wrap .bargain_wrap > img {
  margin-top: -10rem;
}
.contents_wrap .bargain_wrap .bargain_item {
  z-index: 2;
  margin-top: -2rem;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 4.5rem;
}
.contents_wrap .bargain_wrap .bargain_item .img-wrap {
  position: relative;
  display: inline-block;
}
.contents_wrap .bargain_wrap .bargain_item .img-wrap > p {
  font-size: 1.6rem;
}
.contents_wrap .bargain_wrap .bargain_item .img-wrap:nth-child(1)::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background: url(../images/4piece-set_decoration.png) no-repeat center;
  background-size: contain;
  z-index: 1;
}
.contents_wrap .bargain_wrap .bargain_item .img-wrap:nth-child(2)::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background: url(../images/6piece-set_decoration.png) no-repeat center;
  background-size: contain;
  z-index: 1;
}
.contents_wrap .bargain_wrap .warranty {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.contents_wrap .bargain_wrap .warranty img {
  width: 100%;
}
.contents_wrap .bargain_wrap .warranty img:nth-child(1) {
  max-width: 110px;
}
.contents_wrap .bargain_wrap .warranty img:nth-child(2) {
  max-width: 244px;
}
.contents_wrap .bargain_wrap .warranty > p {
  font-size: 2rem;
  background: var(--01, linear-gradient(270deg, #eb7ec1 0%, #e53484 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contents_wrap .clinic_wrap {
  padding: 0 1.5rem;
}
.contents_wrap .clinic_wrap h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 7rem 0 2rem 0;
}
.contents_wrap .clinic_wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.contents_wrap .clinic_wrap table tr {
  border-bottom: 1px solid #c2b280;
  display: block;
}
.contents_wrap .clinic_wrap table tr:first-child {
  border-top: 1px solid #c2b280;
}
.contents_wrap .clinic_wrap table tr th {
  background: #f9f7f2;
  vertical-align: middle;
  display: block;
  width: 100%;
  padding: 1rem;
  letter-spacing: 0.1rem;
}
.contents_wrap .clinic_wrap table tr td {
  vertical-align: middle;
  display: block;
  width: 100%;
  padding: 1rem;
  letter-spacing: 0.1rem;
}
.contents_wrap .clinic_wrap table tr td .business_hours {
  max-width: 50rem;
  background-color: #fff;
  position: static;
}
@media screen and (max-width: 768px) {
  .contents_wrap .clinic_wrap table tr td .business_hours {
    width: 100%;
    padding: 0rem;
  }
}
.contents_wrap .clinic_wrap table tr td .business_hours dl {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #bfdcdc;
  padding: 1rem 0;
}
.contents_wrap .clinic_wrap table tr td .business_hours dl dt,
.contents_wrap .clinic_wrap table tr td .business_hours dl dd {
  font-size: 1.3rem;
  text-align: center;
}
.contents_wrap .clinic_wrap table tr td .business_hours dl dt {
  width: 30%;
  text-align: left;
  line-height: 1.4;
  font-size: 1.4rem;
}
.contents_wrap .clinic_wrap table tr td .business_hours dl dd {
  width: 10%;
  font-size: 1.4rem;
}
.contents_wrap .clinic_wrap table tr td .business_hours dl.bn_item dd {
  font-size: 1.4rem;
  line-height: 1;
  color: #0abab5;
}
.contents_wrap .clinic_wrap table tr td .business_hours:last-of-type {
  margin-bottom: 1rem;
}
.contents_wrap .clinic_wrap table tr td .note {
  text-align: left;
}
.contents_wrap .clinic_wrap table tr td .note span {
  color: #0abab5;
}