@charset "utf-8";


/* =========================================================
   FONT
========================================================= */

@font-face {
  font-family: 'HiraginoMaru';
  src: url('HiraginoMaru.ttf') format('truetype');
}


/* =========================================================
   COMMON
========================================================= */

ul {
  padding-inline-start: 0;
}


/* =========================================================
   PC
========================================================= */

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


  /* =====================================================
     パンくず
  ===================================================== */

  .breadcrumb-001 {
    margin: 12% auto 0 auto;
    max-width: 50%;

    display: flex;
    gap: 0 22px;

    padding: 0;

    list-style: none;

    font-family: "Noto Sans JP", sans-serif;
    font-size: .9em;
  }


  .breadcrumb-001 li {
    display: flex;
    justify-content: left;
    align-items: center;
  }


  .breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;

    width: .3em;
    height: .3em;

    margin-left: 10px;

    border-top: 1px solid #333333;
    border-right: 1px solid #333333;

    content: '';

    transform: rotate(45deg);
  }


  .breadcrumb-001 a {
    color: #333333;
    text-decoration: none;
  }


  /* =====================================================
     PAGE TITLE
     医院紹介と同じ仕様
  ===================================================== */

  #shoukaititle {
    max-width: 50%;

    margin: 20px auto 0 auto;

    font-family: "Noto Sans JP", sans-serif;

    text-align: left;
  }


  #shoukaititle h2 {
    margin: 0 auto 30px auto;

    padding-left: 10px;

    border-left: solid 2px #366eb8;

    color: #366eb8;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5;
  }


  /* =====================================================
     MAIN
  ===================================================== */

  #traveler-page {
    width: 100%;

    padding: 40px 0 100px;

    color: #4d4d4d;
  }


  .traveler-inner {
    width: 50%;
    max-width: 1200px;

    margin: 0 auto;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .traveler-section {
    margin: 0 auto 90px auto;
  }


  .traveler-section:last-child {
    margin-bottom: 0;
  }


  /*
   * 見出し
   * 医院紹介と同じ Noto Sans JP
   */

  .traveler-section h3 {
    width: fit-content;
    max-width: 100%;

    margin: 0 auto 40px auto;
    padding: 0 20px 10px;

    border-bottom: solid 1px #366eb8;

    color: #366eb8;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.6;

    text-align: center;
  }


  /*
   * 本文
   * 医院紹介と同じ HiraginoMaru
   */

  .traveler-section p {
    margin: 0 0 25px;

    color: #4d4d4d;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
  }


  .traveler-section strong {
    color: #366eb8;

    font-family: 'HiraginoMaru', sans-serif;
    font-weight: 600;
  }


  /* =====================================================
     INTRO
  ===================================================== */

  .traveler-intro {
    margin-top: 20px;
  }


  .traveler-intro p {
    text-align: left;
  }


  /* =====================================================
     SYMPTOMS
  ===================================================== */

  .traveler-symptoms {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin: 0 0 30px;
    padding: 0;

    list-style: none;
  }


  .traveler-symptoms li {
    position: relative;

    display: flex;
    align-items: center;

    box-sizing: border-box;

    min-height: 62px;

    padding: 15px 15px 15px 40px;

    border: 1px solid #d7e1ef;

    background-color: #f0f5f9;

    color: #4d4d4d;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }


  .traveler-symptoms li::before {
    position: absolute;

    top: 50%;
    left: 17px;

    color: #366eb8;

    content: "●";

    font-size: 9px;

    transform: translateY(-50%);
  }


  .traveler-note {
    margin-top: 20px !important;
  }


  /* =====================================================
     TRAVELER SUPPORT
  ===================================================== */

  .traveler-question-box {
    box-sizing: border-box;

    margin: 35px 0;
    padding: 25px 30px;

    border-left: solid 4px #366eb8;

    background-color: #f0f5f9;
  }


  .traveler-question-box p {
    margin: 0 0 10px;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 18px;
    line-height: 30px;
  }


  .traveler-question-box p:last-child {
    margin-bottom: 0;
  }


  /* =====================================================
     ACCESS
  ===================================================== */

  .traveler-map {
    width: 100%;

    margin: 40px auto 35px auto;
  }


  .traveler-map iframe {
    display: block;

    width: 100%;
    height: 450px;

    border: 0;
  }


  .traveler-address {
    margin-top: 35px;
  }


  .traveler-address h4 {
    margin: 0 0 15px;

    color: #366eb8;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 500;
  }


  .traveler-address p {
    margin: 0;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 18px;
    line-height: 30px;
  }


  .traveler-contact {
    margin-top: 30px;
  }


  .traveler-tel {
    display: inline-block;

    box-sizing: border-box;

    padding: 13px 28px;

    border: solid 1px #366eb8;

    color: #366eb8;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 18px;

    text-decoration: none;

    transition: all .3s;
  }


  .traveler-tel:hover {
    background-color: #366eb8;

    color: #fff;
  }

}


/* =========================================================
   SP
========================================================= */

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


  /* =====================================================
     PAGE TITLE
     医院紹介SPと同じ考え方
  ===================================================== */

  #shoukaititle {
    margin: 35% 20px 0 20px;

    font-family: "Noto Sans JP", sans-serif;

    text-align: left;
  }


  #shoukaititle h2 {
    margin: 0;

    padding-left: 10px;

    border-left: solid 2px #366eb8;

    color: #366eb8;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.55;
  }


  /* =====================================================
     MAIN
  ===================================================== */

  #traveler-page {
    width: 100%;

    padding: 40px 0 70px;

    color: #4d4d4d;
  }


  .traveler-inner {
    width: calc(100% - 30px);

    margin: 0 auto;
  }


  /* =====================================================
     SECTION
  ===================================================== */

  .traveler-section {
    margin: 0 auto 60px auto;
  }


  .traveler-section:last-child {
    margin-bottom: 0;
  }


  /*
   * 見出し
   * Noto Sans JP
   */

  .traveler-section h3 {
    width: fit-content;
    max-width: 90%;

    margin: 30px auto 30px auto;
    padding: 0 10px 8px;

    border-bottom: solid 1px #366eb8;

    color: #366eb8;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.6;

    text-align: center;
  }


  /*
   * 本文
   * HiraginoMaru
   */

  .traveler-section p {
    margin: 0 0 20px;
    padding: 0 5px;

    color: #4d4d4d;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
  }


  .traveler-section strong {
    color: #366eb8;

    font-family: 'HiraginoMaru', sans-serif;
    font-weight: 600;
  }


  /* =====================================================
     SYMPTOMS
  ===================================================== */

  .traveler-symptoms {
    display: grid;

    grid-template-columns: 1fr;

    gap: 10px;

    margin: 0 5px 25px;
    padding: 0;

    list-style: none;
  }


  .traveler-symptoms li {
    position: relative;

    display: flex;
    align-items: center;

    box-sizing: border-box;

    min-height: 52px;

    padding: 13px 15px 13px 38px;

    border: 1px solid #d7e1ef;

    background-color: #f0f5f9;

    color: #4d4d4d;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 15px;
    line-height: 1.6;
  }


  .traveler-symptoms li::before {
    position: absolute;

    top: 50%;
    left: 15px;

    color: #366eb8;

    content: "●";

    font-size: 8px;

    transform: translateY(-50%);
  }


  .traveler-note {
    margin-top: 20px !important;
  }


  /* =====================================================
     QUESTION BOX
  ===================================================== */

  .traveler-question-box {
    box-sizing: border-box;

    margin: 25px 5px;
    padding: 18px 15px;

    border-left: solid 4px #366eb8;

    background-color: #f0f5f9;
  }


  .traveler-question-box p {
    margin: 0 0 8px;
    padding: 0;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 15px;
    line-height: 27px;
  }


  .traveler-question-box p:last-child {
    margin-bottom: 0;
  }


  /* =====================================================
     ACCESS
  ===================================================== */

  .traveler-map {
    width: 100%;

    margin: 30px auto 25px auto;
  }


  .traveler-map iframe {
    display: block;

    width: 100%;
    height: 300px;

    border: 0;
  }


  .traveler-address {
    margin-top: 25px;
  }


  .traveler-address h4 {
    margin: 0 5px 10px;

    color: #366eb8;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 19px;
    font-weight: 500;
  }


  .traveler-address p {
    padding: 0 5px;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 15px;
    line-height: 28px;
  }


  .traveler-contact {
    margin: 25px 5px 0;
  }


  .traveler-tel {
    display: block;

    box-sizing: border-box;

    width: 100%;

    padding: 13px 15px;

    border: solid 1px #366eb8;

    color: #366eb8;

    font-family: 'HiraginoMaru', sans-serif;
    font-size: 17px;

    text-align: center;
    text-decoration: none;
  }

}