@media screen and (min-width: 600px) {
  /*ヘッダー部分*/
  .header-clinic-logo {
    width: 150px;
    padding: 15px 15px 0 30px;
  }

  .header-clinic-logo img {
    width: 100px;
    height: 80px;
  }

  .header-clinic-name {
    width: 300px;
  }
  .header-clinic-name h1 {
    font-size: 2.5rem;
    line-height: 80px;
  }

  .header-clinic-nav {
    margin: 30px 15px 0 50px;
  }

  .menu-btn {
    top: 15px;
    right: 80px;
    height: 80px;
    width: 80px;
  }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background-color: #707070;
    position: absolute;
  }

  .menu-btn span:before {
    bottom: 11px;
  }
  .menu-btn span:after {
    top: 11px;
  }

  .menu-content {
    width: 300px;
    position: fixed;
    top: 80px;
    right: -500px;
    z-index: 80;
    background-color: rgba(255, 255, 255, 0.95);
    text-align: right;
    transition: all 0.5s;
  }
  
  .menu-content li {
    margin: 40px 15px 30px 0;
  }
  
  #menu-btn-check:checked ~ .menu-content {
    right: 10px;/*メニューを画面内へ*/
  }

  .header-clinic-nav p {
    font-size: 1rem;
    color: #707070;
  }

  /*コンテンツ部分*/
  .contents {
    max-width: 700px;
    padding: 0 50px 0 50px;
  }

  .contents h2 {
    font-size: 1.5rem;
  }

  .contents h3 {
    font-size: 1.25rem;
  }

  .contents p {
    font-size: 1rem;
  }

  .photo img {
    width: 200px;
    height: 250px;
  }

  .author {
    height: 250px;
  }

  .author p {
    font-size: 1.3rem;
    line-height: 32px;
  }

  .title-about {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  /*予約〜フッター部分*/
  .reservation h3 {
    font-size: 1.5rem;
  }

  .reservation-contents {
    width: 500px;
  }

  a[href^="tel:04-7106-3110"]{
    pointer-events: none;
  }

  .information-access h3 {
    font-size: 1.5rem;
  }

  .information-address-middle p {
    font-size: 1rem;
  }

  .map {
    width: 500px;
    height: 400px;
  }

  .footer-contents {
    width: 100%;
  }

  .footer-content-top {
    margin: 0 150px 20px 0;
  }

  .footer-content-top li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  /*ヘッダー部分*/
  .header {
    margin-bottom: 40px;
  }

  .header-clinic-logo {
    width: 300px;
    padding: 15px 15px 0 40px;
    text-align: left;
  }

  .header-clinic-name {
    width: 600px;
  }

  .header-clinic-name h1 {
    font-size: 3rem;
  }

  .header-clinic-nav {
    width: 100%;
  }

  .header-clinic-nav-mobile {
    display: none;
  }

  .header-clinic-nav-desktop {
    display: block;
  }

  .header-clinic-nav-desktop ul {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 50px;
  }

  .header-clinic-nav-desktop a {
    font-size: 1.2rem;
    color: #3B3B3B;
  }

  /*コンテンツ部分*/
  .contents {
    max-width: 850px;
    padding: 0 50px 0 50px;
  }

  .contents h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .contents h3 {
    font-size: 1.25rem;
  }

  .contents p {
    font-size: 1rem;
  }


  .field-bottom {
    margin-bottom: 80px;
  }

  .photo img {
    width: 200px;
    height: 250px;
  }

  .author {
    height: 250px;
  }

  .author p {
    font-size: 1.3rem;
    line-height: 32px;
  }

  .title-about {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  /*予約・フッター部分*/
  .reservation-contents {
    width: 550px;
  }

  .information-about-clinic img {
    width: 450px;
    height: 250px;
  }

  .map {
    width: 600px;
  }
}