/*
Theme Name: sundental child
Version: 1.0
Template: sundental
*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 1.2rem;
  line-height: 2.2rem;
  margin: 0;
  padding: 0;
}

a {
  color: #222;
  text-decoration: none;
}

ul {
  margin: 0;
}

li {
  list-style: none;
}

.site {
  margin:0;
  padding: 10px 20px 0;
}

.header {
  background: #fff;
  /*
    position: fixed;
    */
  width: 100%;
  height: 68px;
}

header .site-branding {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: 68px;
}

.site-branding {
  width: 100%;
  height: 68px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* site branding right */
/* 
header .site-branding a.custom-logo-link {
    margin-right: auto;
}
*/

header .site-branding .header_menu {
  display: flex;
  height: 32px;
}

/* menu */
/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 100px;
  padding: 0 0 10px 0;
  clear: both;
  background: #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

@media screen and (max-width: 768px) {
  .menu {
    margin-top: 110px;
  }
}

@media screen and (min-width: 769px) {
  main {
    padding: 0 5%;
    overflow-x: hidden;
    margin: 0 auto;
}
}

/* Hamburger menu button */
.menu-btn:checked~.menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #222;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid #999;
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  right: 0;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: #222;
}

.navicon {
  background: #222;
  display: block;
  height: 1px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #222;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked~.menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}

.custom-logo-link img {
  width: 203px;
  height: 38px;
}

.site-title {
  display: none;
}

/* home */
main {
  padding: 0;
}

main section .top_image {
  width: 100%;
  /*
    height: calc(80vh - 68px);
    */
  position: static;
  /*
    background-image: url(../../../asset/images/top_image.jpg);
    */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}

main section .top_image .img_filter {
  background-color: #FFE4E4;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 2rem;
  /* text-align: center; */
  display: inline-block;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 10px;
  background: url(../images/sundental_main-scaled.jpg);
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

@media screen and (max-width: 768px) {
  main section .top_image .img_filter {
    margin: 20px;
    padding: 0;
    width: calc(100% - 40px);
    /* height: calc(100% - 120px); */
    background-position: 0 200px;
    background-size: contain;
    background-repeat: repeat-x;
    aspect-ratio: 4 / 3;
  }
}

@media screen and (min-width: 769px) {
  main section .top_image .img_filter {
    min-height: 400px;
  }
}

@media screen and (min-width: 1000px) {
  main section .top_image .img_filter {
    min-height: 80vw;
    border-radius: 0;
  }
}

@media screen and (min-width: 1200px) {
  main section .top_image .img_filter {
    min-height: 600px;
  }
}

main section .top_image .img_filter span {
  display: block;
  font-size: 1.4rem;
  padding-bottom: 40px;
}

/* footer */
.site-footer .site-info {
  text-align: center;
  padding: 30px 0;
}

.site-footer .site-info a {
  color: #222;
}

.site-footer {
  position: relative;
  top: 50px;
  display: block;
  width: 100%;
  color: #000;
}


/* humber */
.header {
  display: flex;
  background: #fff;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 24px;
}

.logo a {
  background: url(../images/logo_sundental_2.png);
  background-repeat: no-repeat;
  background-size: 199.85px 38px;
  width: 199.85px;
  height: 38px;
  display: block;
}

.nav {
  position: absolute;
  right: 7px;
}

.open-date {
  position: absolute;
  left: 30px;
}

/* css */

/* checkbox */
.drawer_hidden {
  display: none;
}

/* icon space */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
}

/* icon */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 1px;
  width: 34px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* line top */
.drawer_open span:before {
  bottom: 8px;
}

/* line bottom */
.drawer_open span:after {
  top: 8px;
}

/* clicked, line middle opacity */
#drawer_input:checked~.drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* rotate x */
#drawer_input:checked~.drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* menu design */
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0%;
  right: 100%;
  z-index: 99;
  background: rgb(255, 255, 255, .9);
  transition: .5s;
  text-align: center;
  padding-top: 20px;
}


/* menu black-color hidden */
.nav_list {
  list-style: none;
  padding: 5rem 0 0;
}

/* clicked icon, menu */
#drawer_input:checked~.nav_content {
  right: 0;
}

/* date */
.open-date img {
  width: 197px;
  height: 51px;
}

/* head copy */

.HeadCopy {
    width: 680px;
    height: 223px;
    display: block;
    background-repeat: no-repeat;
    background-size: 680px 223px;
    background-image: url(../images/HeadCopy.png);
    position: relative;
    top: 80px;
    left: calc(45% - 50px);
}

.BtnLine {
  width: 120px;
  height: 120px;
  position: fixed;
  right: 0;
  top: 200px;
}

.TelNumb {
  display: none;
}

.menuList {
  position: absolute;
  right: 40px;
  top: 400px;
}

.menuList ul {
  display: flex;
}

.menuList ul li {
  margin: 10px;
}

.menuList ul li a {
  width: 100px;
  height: 100px;
  font-size: .7rem;
  line-height: 1rem;
  color: #222222;
  display: block;
  text-align: center;
}

.menuList ul li a span {
  background-color: #fff;
  position: relative;
  top: -25px;
}

p.scroll-btn {
  display: flex;
  justify-content: center;
  margin-top: -40px;
}

p.scroll-btn a {
  background: url(https://sun-dentalclinic.jp/arrow_scroll.svg);
  width: 30px;
  height: 74.1px;
  background-size: 30px 74.1px;
  display: block;
}

.site-footer {
  background-color: #3788F3
}

.site-footer {
  padding: 0;
}

.site-footer .credit {
  display: flex;
  flex-direction: column;
}

.site-footer .credit .footer-logo {
  margin: 50px auto;
  width: 72px;
}

.site-footer .credit .footer-logo img {
  width: 72px;
  height: 81px ;
}

.site-footer .credit .footer-credit {
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.line-banner a {
    background: url(../images/banner.png);
    background-size: contain;
    display: block;
    background-repeat: no-repeat;
    margin: 0 auto;
    max-width: 90%;
    background-position: center;
    min-height: 600px;
}

.date {
    width: 260px;
    margin: 0 auto;
}

.date img {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .HeadCopy {
    width: 420px;
    height: 140px;
    display: block;
    background-repeat: no-repeat;
    background-size: 420px 140px;
    background-image: url(../images/HeadCopy.png);
    position: relative;
    top: 50px;
    left: calc(50% - 50px);
}

.line-banner a {
    background: url(../images/banner.png);
    background-size: contain;
    display: block;
    background-repeat: no-repeat;
    margin: 3rem auto;
    max-width: 100%;
    background-position: center;
    width: 1000px;
    height: 475px;
}
}

@media screen and (min-width:1000px) {
.menuList {
    position: absolute;
    right: 40px;
    top: 500px;
}
}

@media screen and (min-width:1200px) {
  .line-banner a {
    min-height: 700px;
    max-width: 80%;
}

.menuList {
    position: absolute;
    right: 40px;
    top: 600px;
}
}

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

  .logo {
    padding-top: 2px;
  }

  .logo a {
    background: url(../images/logo_sundental_2.png);
    background-repeat: no-repeat;
    background-size: 199.85px 38px;
    width: 199.85px;
    height: 38px;
    display: block;
  }

  .header {
    justify-content: space-between;
  }

  .HeadCopy {
        background-image: url(../images/HeadCopy.png);
        width: 324px;
        height: 107.5px;
        display: block;
        background-repeat: no-repeat;
        background-size: 324px 107.5px;
        background-position: 0;
        position: relative;
        top: 70px;
        left: 0;
  }

  .TelNumb {
    display: block;
    position: absolute;
    width: 200px;
    height: 45px;
    background-color: #fff;
    padding: 5px;
  }

    .TelNumb img {
    width: 200px;
    height: 45px;
  }

  .menuList {
        position: relative;
        top: 0;
        width: 80%;
        margin: 0 10%;
        max-height: 400px;
        height: 160px;
        right: 0;
  }

  .menuList ul {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    justify-content: space-between;
  }

  .menuList ul li a {
    width: 80px;
    height: 120px;
  }

  p.scroll-btn {
    display: none;
  }

  .line-banner a {
        background: url(../images/banner_sp.png);
        width: 100%;
        background-size: cover;
        display: block;
        background-repeat: no-repeat;
        margin: 1rem auto;
        max-width: 100%;
        min-height: 123vw;
  }
}

@media screen and (min-height: 1000px) {
  .menuList {
      position: absolute;
      right: 40px;
      top: 400px;
  }
}

@media screen and (max-width: 789px) {
    .menuList {
        position: static;
    }
}

@media screen and (max-width: 1296px) {
    .line-banner a {
        background: url(../images/banner_sp.png);
        width: 100%;
        background-size: contain;
        display: block;
        background-repeat: no-repeat;
        margin: 50px auto;
        max-width: 99%;
        background-position: center;
  }
}

/* main text */

.main-text {
  width: 60%;
  margin: 0 20%;
  letter-spacing: 3px;
  line-height: 2.8rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}

.point-area {
  display: flex;
  justify-content: space-between;
  margin: 50px 5%;
}

.point {
  width: 30%;
}

.point-title {
  height: 120px;
}

.point-image {
  background-color: #999;
  width: 100%;
  height: auto;
}

.point-text {
  margin: 5px 0;
  letter-spacing: 3px;
}

.about {
  display: flex;
  margin-top: 120px;
}

.about-title {
  width: 40%;
}

.about-title img {
  width: 120px;
  height: 360px;
  position: relative;
  left: calc(100% - 180px);

}

.about-text {
  width: 60%;
  font-size: 1.2rem;
  line-height: 2.2rem;
  letter-spacing: 3px;
  padding: 30px 50px 0 0;
}

.about-area {
  display: flex;
  margin-top: 120px;
}

.about-area-title {
  width: 20%;
}

.about-area-title img {
  width: 120px;
  height: 181.5px;
  position: relative;
  left: calc(100% - 160px);

}

.about-area-text {
  width: 40%;
  font-size: 1.2rem;
  line-height: 2.2rem;
  letter-spacing: 3px;
  padding: 30px 50px 0 0;
}

.about-target {
  display: flex;
  margin-top: 120px;
}

.about-target-title {
  width: 60%;
}

.about-target-title img {
  width: 120px;
  height: 294.75px;
  position: relative;
  left: calc(100% - 140px);

}

.about-target-text {
  width: 40%;
  font-size: 1.2rem;
  line-height: 2.2rem;
  letter-spacing: 3px;
  padding: 30px 50px 0 0;
}

.about-target-text li {
  list-style:circle;
  /*
  background:linear-gradient(transparent 60%, #FFE4E4 0%);
  */
}

.service, .step, .qaa {
  margin-top: 20px;
  text-align: center;
}

.service h2, .step h2, .qaa step {
  border-top: 2px solid #DA5170;
  display: inline-block;
}

.service ul {
  display: flex;
  margin: 20px 20px 0;
  padding: 0;
  flex-wrap: wrap;
}

.service ul li {
  width: 50%;
  display: flex;
  margin: 20px 0 0;
}

.service ul li div.image {
  width: 150px;
  height: 150px;
  background-color: #666;
  display: contents;
}

.service ul li div.image img {
  width: 150px;
  height: 150px;
}

.service ul li div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.service ul li div p {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding: 0;
  margin: 0 0 5px 20px;
}

.service ul li div span {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 20px 0 20px;
  text-align: left;
}

.step .step-ol {
  border-radius: 20px;
  margin: 0 6%;
  padding: 30px 0;
}

#step .step .step-ol {
    border-radius: 20px;
    border: 0;
    margin: 0 18%;
    padding: 50px;
    max-width: 64%;
    border: 3px solid #3788F3;
}

.step .step-ol .step-title {
  font-size: 1.4rem;
  font-weight: bold;
  background:url(../images/dental_icon.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  margin: 20px 0 20px;
  border-top: 2px solid #3788F3;
  padding: 20px 0 0 50px;
  color: #3788F3;
}

.step .step-ol .step-text {
  font-size: 1.2rem;
  color: #3788F3;
}

.step .step-ol .step-arrow {
  background: url(../images/arrow.png);
  width:100%;
  height: 36px;
  background-size: 27px 15px;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width:800px) {
#step .step .step-ol {
    border-radius: 20px;
    border: 0;
    margin: 0 10%;
    padding: 50px 0;
    max-width: 80%;
}
}

/* Q & A */

.faq {
  width: 80%;
  max-width: 1024px;
  margin: 40px auto;
}

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
-webkit-box-sizing: border-box;
        box-sizing: border-box;
}
.cp_qa {
overflow-x: hidden;
margin: 0 auto;
color: #333333;
}
.cp_qa .cp_actab {
padding: 20px 0;
}
.cp_qa label {
font-size: 1.2em;
position: relative;
display: block;
width: 100%;
margin: 0;
padding: 10px 10px 0 48px;
cursor: pointer;
text-align: left;
letter-spacing: 3px;
}
.cp_qa .cp_actab-content {
font-size: 1em;
line-height: 2.6rem;
position: relative;
overflow: hidden;
height: 0;
margin: 0 40px;
padding: 0 14px;
-webkit-transition: 0.4s ease;
        transition: 0.4s ease;
opacity: 0;
text-align: left;
border-top: 1px solid #DA5170;
margin-top: 20px;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
height: auto;
padding: 14px;
opacity: 1;
}
.cp_qa .cp_plus {
font-size: 2.4em;
line-height: 100%;
position: absolute;
z-index: 5;
margin: 3px 0 0 10px;
-webkit-transition: 0.2s ease;
        transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
-webkit-transform: rotate(45deg);
        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}

/* qaa */

.step-subtitle {
  margin: 2em 0;
  padding: 0;
}

.step-subtitle label {
  margin-top: 70px;
  font-size: 1.5rem;
  border-left: 3px solid #2789CB;
  padding: 5px 0 5px 15px;
  cursor: pointer;
}

.step-title .step-subtitle .step-content {
font-size: 1em;
position: relative;
overflow: hidden;
height: 0;
margin: 0 40px;
padding: 0 14px;
-webkit-transition: 0.4s ease;
        transition: 0.4s ease;
opacity: 0;
}

.step-title .step-subtitle input[type=checkbox]:checked ~ .step-content {
height: auto;
padding: 14px;
opacity: 1;
}

.step-title .step-subtitle input[type=checkbox] {
  display: none;
}

.nav_item {
  padding: 20px 0;
}

.nav_item li a {
  color: #222;
}

.nav_item li a:hover {
  color: #222;
}

/* page */

.entry-footer {
  display: none;
}

#page .widget-area {
  display: none;
}

#page .entry-title {
  border-top: 2px solid #DA5170;
  display: inline-block;
  font-size: 1.4rem;
}

#page .entry-header {
  text-align: center;
}

/* contact */

.contact-area {
  width: 94%;
  margin: 50px 3% 0;
  border: 1px solid #DA5170;
  border-radius: 20px;
  padding: 50px;
}

input[type="submit"] {
  border: 1px solid;
  border-color: #DA5170;
  border-radius: 1px;
  background: #FFE4E4;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1;
  padding: 0.8em 2em 0.8em;
}

input[type="text"]{
  width: 100%;
}

.wpcf7 {
  width: 80%;
  margin: 0 10%;
  padding: 20px;
  border: 1px solid #DA5170;
  border-radius: 20px;
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
  text-align: center;
}

/* about */
.about-img {
  width: 300px;
  margin: 0 auto 3rem;
}

.about-img p {
  text-align: center;
  font-size: 1.4rem;
}

.about-credit {
  font-size: 1rem;
  text-align: center;
}


.img-wrapper {
  width: 60%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 2.1;
  padding-top: 30px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-wrapper.sp {
    width: 90%;
    display: none;
}


.area-text {
  font-size: 1.2rem;
  margin: 10px 0;
}

.area-text span {
  font-size: .8rem;
  display: block;
}


@media screen and (max-width:768px) {
  .main-text {
    width: 80%;
    margin: 0 10% 100px;
    line-height: 2.4rem;
}

.point-area {
  flex-wrap: wrap;
}

.point {
  width: 100%;
}

.point-text {
  margin: 5px 0 50px;
}

.about-area-title {
  width: 40%;
}

.about-area-title img {
  width: 80px;
  height: 121px;
  position: relative;
  left: calc(100% - 140px);
}

.about-title img {
  width: 80px;
  height: 240px;
  position: relative;
  left: calc(100% - 140px);
}

.about-area-text {
  width: 60%;
  font-size: 1.2rem;
  line-height: 2.2rem;
  letter-spacing: 3px;
  padding: 30px 50px 0 0;
}

.about-target-title {
  width: 40%;
}

.about-target-title img {
  width: 80px;
  height: 169.5px;
  position: relative;
  left: calc(100% - 140px);

}

.about-target-text {
  width: 60%;
}

.about-target-text ul {
  padding: auto;0
}

.service ul {
  padding: 0 20px;
}
.service ul li {
  width: 100%;

}

.step .step-ol {
  padding: 5%;

    border-radius: 20px;
    border: 0;
    margin: 0 5%;
    padding: 50px 0;
    max-width: 90%;
}

/* q and a */
.faq {
  width: 84%;
}

.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  line-height: 2.2rem;
}

.area-image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto !important; /* ← 明示的に高さ自動 */
    aspect-ratio: 5 / 3;
    object-fit: contain;
}

#area .step .step-ol {
  width: 88%;
  border-radius: 20px;
  border: 0;
  margin: 0 6%;
  padding: 10px;
}

.area-text {
    font-size: 1.2rem;
    margin: 10px 0 50px;
}

.img-wrapper.pc {
  display: none;
}

.img-wrapper.sp {
  width: 90%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  padding-top: 30px;
  display: block;
}

}

/* resize */
.main-text p.sub {
  line-height: 2rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {

body {
    font-size: 1.4rem;
    line-height: 2.6rem;
    margin: 0;
    padding: 0;
}
.main-text {
    line-height: 3rem;
    font-size: 2rem;
}

.main-text p.sub {
  line-height: 2rem;
  font-size: 1.2rem;
}

.about-text, .about-area-text, .about-target-text {
  font-size: 1.4rem;
  line-height: 2.6rem;
}

.service ul li div p {
  font-size: 1.6rem;
}

.service ul li div span {
  font-size: 1.4rem;
}

.step .step-ol .step-title {
  font-size: 1.6rem;
  text-align: center;
  margin: 50px 0 50px;
  background-position: 1px 24px;
}

.step .step-ol .step-text {
  font-size: 1.4rem;
  text-align: center;
  margin: 50px 0;
}

.area-text {
  font-size: 1.4rem;
}

.area-text span {
  font-size: 1.1rem;
}

.cp_qa label {
  font-size: 1.6rem;
}

.cp_qa .cp_actab-content {
  font-size: 1.4rem;
  line-height: 2.6rem;
}

}

.post-11 .entry-content img {
  text-align: center;
  margin: 0 10%;
  width: 80%;
}

@media screen and (min-width: 769px) {
.post-11 .entry-content img {
  text-align: center;
  margin: 0 35%;
  width: 30%;
}
}

