@charset "UTF-8";

/*------------------------------------
            全ページ共通設定
------------------------------------*/
:root {
  --main-color: #e37731;
  --main-sub-color: #f3dc33;
  --article-color: #78b714;
  --link-color: #e37731;
  --hover-color: #f3dc33;
  --font-color: #606060;
  --attention-color: #ff3939;
}
html{
  font-size: 62.5%; /*10px相当（主要ブラウザのデフォルト文字サイズ16pxに対する62.5％）*/
}
body{
  position: relative;
  font: 1.3rem/1.6 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴシック ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: var(--font-color);
  font-feature-settings: "palt";/* 字間(プロポーショナルメトリクス)を指定 */
  -webkit-text-size-adjust: 100%; /*iPhone用Safariで横向きにしたときに自動で文字サイズが大きくなるのを防ぐ*/
}

/**
 * フルードイメージ
 */
/* img画像 */
img{
  /*width: 100%;*/
  max-width: 100%;
  height: auto;
}
/* 背景画像 */
#bg{
  background-size: cover;
}
/* メディア */
embed, object{
  max-width: 100%;
}

/**
 * 全体
 */
#wrapper{
  position: relative;
  width: 100%;
}
em{
  font-weight: bold;
}
strong{
  font-weight: bold;
}
.clear{
  clear: both;
}
.note{
  color: var(--attention-color);
}
.en{
  font-family: 'Prompt', sans-serif;
}
.num{
  font-family: 'Heebo', sans-serif;
}
.sub{
  vertical-align: sub;
  font-size: 1rem;
}
.super{
  vertical-align: super;
  font-size: 1rem;
}
.none{
  display: none;
}
.none2{
  display: none!important;
}
.block{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* テキストリンクスタイル */
a:link   {color: var(--link-color); text-decoration: none;}
a:active {color: var(--link-color); text-decoration: none;}
a:visited{color: var(--link-color); text-decoration: none;}
a:hover  {color: var(--link-color); text-decoration: none;}

/**
 * PC用設定
 */
@media screen and (min-width:801px){
  .sp{
    display: none!important;
  }
}
/**
 * スマホ用設定
 */
@media screen and (max-width:800px){
  .pc{
    display: none!important;
  }
  #wrapper{
    padding-top: 75px;
  }
}


/**
 * コンテンツ
 */
 #contents{
  position: relative;
}
  #contents section{
    position: relative;
    top: 0;
    left: 0;
  }
    #contents section h2{
      font-size: 3.4rem;
      color: var(--main-color);
      margin: 40px 0 20px 0;
      text-align: center;
    }
    #contents section .cage{
      position: relative;
      width: 100%;
      margin: 0 auto;
      padding: 0;
    }


/**
 * PC時「ヘッダー」
 */
#bar_pc{
  position: relative;
}
/**
 * 「お問い合わせ」バー
 */
#bar_contact{
  background-color: #f2f2f2;
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: space-between;
}
  /*訪問可能エリア*/
  #bar_contact .visitable_areas{
    width: calc(100% - 120px);
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
    #bar_contact .visitable_areas span{
      display: inline-block;
      color: #696969;
      font-size: 1.1rem;
    }
  /*お問い合わせボタン*/
  a.btn_contact{
    width: 100px;
    height: 75px;
    background-color: var(--main-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
    a.btn_contact img{
      width: 40px;
      height: auto;
      margin-bottom: 3px;
    }
    a.btn_contact span{
      width: 100%;
      font-size: 1.2rem;
      color: #fff;
      text-align: center;
      margin-top: 3px;
    }
    a.btn_contact:link   { text-decoration:none; color: #ffffff; }
    a.btn_contact:visited{ text-decoration:none; color: #ffffff; }
    a.btn_contact:active { text-decoration:none; color: #ffffff; }
    a.btn_contact:hover  { text-decoration:none; color: #ffffff; background-color: var(--main-sub-color);}
/**
 * PC用「ロゴ」バー
 */
#bar_logo{
  background-color: #fff;
  width: calc(100% - 40px);
  height: 90px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
  /*4つの特徴*/
  #bar_logo .feature{
    width: 212px;
    display: flex;
    align-items: center;
  }
    #bar_logo .feature ul{
      display: flex;
      flex-wrap: wrap;
      width: 100%;
    }
      #bar_logo .feature li{
        width: calc(50% - 10px);
        max-width: 96px;
        margin: 3px;
        border: solid 2px var(--main-color);
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
                border-radius: 10px;
        color: var(--main-color);
        font-size: 1.6rem;
        font-weight: 700;
        text-align: center;
      }
      #bar_logo .feature li.twenty-four{
        width: calc(100% - 6px);
        max-width: 206px;
        border: none;
        font-size: 1.8rem;
        color: #fff;
        background-color: var(--article-color);
      }
  /*ロゴ*/
  #bar_logo .logo,
  #bar_logo .logo a{
    display: flex;
    justify-content: center;
    align-items: center;
  }
    #bar_logo .logo img.logo_mark{
      width: 95px;
      height: auto;
      margin-right: 3px;
    }
    #bar_logo .logo img.logo_text{
      width: 150px;
      height: auto;
      margin-left: 2px;
    }
  /*連絡先*/
  #bar_logo .tel_fax{
    width: 200px;
    display: flex;
    justify-content: right;
  }
    #bar_logo .tel_fax ul{
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      align-items: center;
      align-content: center;
    }
      #bar_logo .tel_fax li{
        width: 100%;
        text-align: center;
      }
      #bar_logo .tel_fax li.twenty-four{
        font-size: 1.8rem;
        color: #fff;
        background-color: var(--article-color);
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
                border-radius: 10px;
      }
      #bar_logo .tel_fax li.tel{
        position: relative;
        white-space: nowrap;
        font-size: 2.5rem;
        color: var(--main-color);
        font-family: 'Noto Serif JP', serif;
        font-weight: 600;
      }
        #bar_logo .tel_fax li.tel img{
          position: relative;
          top: 8px;
          width: 25px;
          height: auto;
        }
      #bar_logo .tel_fax li.fax{
        font-size: 1.5rem;
        color: var(--main-color);
        font-family: 'Noto Serif JP', serif;
        font-weight: 600;
      }


/**
 * スマホ時「ヘッダー」
 */
#bar_sp{
  position: relative;
}
/**
 * スマホ時「訪問可能エリア」
 */
#bar_sp .visitable_areas{
  background-color: #f2f2f2;
  min-height: 55px;
  width: calc(100% - 20px);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
#bar_sp .visitable_areas span{
    display: inline-block;
    color: #696969;
    font-size: 1.1rem;
  }
/**
 * スマホ時「4つの特徴」
 */
#bar_sp .feature{
  padding: 15px 10px 10px 10px;
}
#bar_sp .feature ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
  #bar_sp .feature li{
    width: calc(25% - 10px);
    max-width: 96px;
    margin: 3px;
    border: solid 2px var(--main-color);
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
  }
  @media screen and (max-width:420px){
    #bar_sp .feature li{
      font-size: 1.4rem;
    }
  }
/**
 * スマホ時「連絡先」
 */
#bar_sp .tel_fax{
  padding: 0 10px 10px 10px;
}
#bar_sp .tel_fax ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
  #bar_sp .tel_fax li{
    text-align: center;
  }
  #bar_sp .tel_fax li.twenty-four{
    padding: 0 20px;
    margin: 0 5px;
    font-size: 1.8rem;
    color: #fff;
    background-color: var(--article-color);
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
  }
  #bar_sp .tel_fax li.tel{
    margin: 0 5px;
    position: relative;
    white-space: nowrap;
    font-size: 2.5rem;
    color: var(--main-color);
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
  }
    #bar_sp .tel_fax li.tel img{
      position: relative;
      top: 8px;
      width: 25px;
      height: auto;
    }
  #bar_sp .tel_fax li.fax{
    margin: 0 5px;
    font-size: 1.5rem;
    color: var(--main-color);
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
  }


/**
 * フッター
 */
footer{
  padding: 45px 0;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  background-color: var(--main-color);
}
@media screen and (max-width:400px){
  footer{
    font-size: 1.2rem;
  }
}


/*------------------------------------
            トップページ
------------------------------------*/
/**
 * メイン
 */
#index section#top{
  position: relative;
  width: 100%;
  background: url(../img/index/main.jpg) center bottom / cover no-repeat;
}
  #index #top .catchCopy{
    position: relative;
    top: 4%;
    right: 6px;
    font-size: 2.5rem;
    text-align: right;
  }
    #index #top .catchCopy span{
      display: inline-block;
      padding: 0 30px;
      margin-bottom: 6px;
      background-color: rgba(255, 255, 255, 0.6);
      font-family: 'Noto Serif JP', serif;
    }
@media screen and (max-width:800px){
  #index #top .catchCopy{
    top: 10%;
  }
}
@media screen and (max-width:640px){
  #index #top .catchCopy{
    font-size: 2.0rem;
  }
}
@media screen and (max-width:520px){
  #index #top .catchCopy{
    font-size: 1.5rem;
  }
}
@media screen and (max-width:400px){
  #index #top .catchCopy{
    font-size: 1.2rem;
  }
}

/**
 * 代表より皆様へ
 */
#index section#greeting{
  padding: 50px 0 0 0;
}
  #index section#greeting h2{
    margin-bottom: 40px;
  }
  #index section#greeting .content{
    padding: 0 20px;
    width: calc(100% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
    #index section#greeting .content span{
      font-size: 1.8rem;
      line-height: 1.8em;
    }
    #index section#greeting .content span .signature{
      text-align: right;
      margin-top: 2em;
      font-size: 1.9rem;
    }

/**
 * 基本理念
 */
#index section#philosophy{
  padding: 50px 0 0 0;
}
  #index section#philosophy h2{
    margin-bottom: 90px;
  }
  #index section#philosophy .content{
    padding: 0 10px;
    width: calc(100% - 20px);
    max-width: 1180px;
    margin: 0 auto;
  }
    #index section#philosophy ul{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
      #index section#philosophy li{
        position: relative;
        margin: 0 5px 10px 5px;
        padding: 30px 30px 0 30px;
        width: calc(33.33333% - 70px);
        background-color: #fff5e1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
                border-radius: 10px;
      }
        #index section#philosophy li .icon{
          position: relative;
          top: -80px;
          width: 120px;
          height: 120px;
          border-radius: 50%;
          background-color: var(--main-color);
          border: solid 10px #fff5e1;
          display: flex;
          justify-content: center;
          align-items: center;
        }
          #index section#philosophy li .icon img.philosophy01{
            width: 70px;
            height: auto;
          }
          #index section#philosophy li .icon img.philosophy02{
            width: 70px;
            height: auto;
          }
          #index section#philosophy li .icon img.philosophy03{
            width: 68px;
            height: auto;
          }
      #index section#philosophy h3{
        position: relative;
        top: -60px;
        width: 100%;
        font-size: 2.5rem;
        color: var(--main-color);
        text-align: center;
      }
      #index section#philosophy h4{
        font-size: 1.6rem;
        line-height: 1.4em;
        margin-bottom: 10px;
      }
      #index section#philosophy .text{
        position: relative;
        top: -30px;
      }
@media screen and (max-width:800px){
  #index section#philosophy li{
    width: calc(100% - 70px);
    margin-bottom: 30px;
  }
  #index section#philosophy h3{
    top: -70px;
  }
  #index section#philosophy .text{
    top: -50px;
  }
}


/**
 * クリニック案内
 */
#index section#information{
  padding: 50px 0 0 0;
}
  #index section#information .content.part1{
    padding: 0 0 30px 0;
  }
    #index section#information table.info{
      border-collapse: separate;
      border-spacing: 5px;
      margin: 0 auto;
    }
    #index section#information table.info th,
    #index section#information table.info td{
      vertical-align: middle;
      padding: 5px 20px;
    }
    #index section#information table.info th{
      background-color: #929292;
      color: #fff;
      font-size: 1.6rem;
      text-align: center;
      -webkit-border-radius: 6px;
         -moz-border-radius: 6px;
              border-radius: 6px;
    }
    #index section#information table.info td{
      font-size: 1.8rem;
    }
    #index section#information table.info td em{
      font-size: 2.2rem;
    }
  #index section#information .content.part2{
    background-color: #ebebeb;
    padding: 30px 0;
    text-align: center;
    font-size: 1.2rem;
  }
    #index section#information table.schedule{
      margin: 0 auto 20px auto;
    }
      #index section#information table.schedule th,
      #index section#information table.schedule td{
        text-align: center;
        vertical-align: middle;
        padding: 5px 20px;
        border-right: solid 1px #828282;
      }
      #index section#information table.schedule th:last-child,
      #index section#information table.schedule td:last-child{
        border-right: none;
      }
      #index section#information table.schedule th{
        font-size: 2.2rem;
        border-bottom: solid 1px #828282;
      }
      #index section#information table.schedule td{
        font-size: 1.8rem;
      }
    #index section#information .emergency_contact{
      margin-top: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      align-content: center;
    }
      #index section#information .emergency_contact>img{
        width: 26px;
        height: auto;
        margin-right: 3px;
      }
      #index section#information .emergency_contact>div{
        position: relative;
        line-height: 1.5em;
        margin-left: 3px;
      }
        #index section#information .emergency_contact .tel{
          font-size: 2.3rem;
        }
@media screen and (max-width:570px){
  #index section#information table.info th,
  #index section#information table.info td{
    display: block;
  }
  #index section#information table.info th{
    background-color: #adacac;
  }
}
@media screen and (max-width:500px){
  #index section#information table.schedule th,
  #index section#information table.schedule td{
    padding: 5px 10px;
  }
  #index section#information table.schedule th{
    font-size: 2.2rem;
  }
  #index section#information table.schedule td{
    font-size: 1.8rem;
  }
}

/**
 * 診察をご希望の方へ
 */
#index section#wish{
  padding: 50px 0 0 0;
}
  #index section#wish .content{
    padding: 0 20px;
    width: calc(100% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
    #index section#wish .content span{
      font-size: 1.4rem;
      line-height: 2.0em;
    }

/**
 * 対応エリア
 */
#index section#area{
  padding: 50px 0 0 0;
}
  #index section#area .content.part1{
    background-color: #f2f2f2;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  #index section#area .content.part2{
    text-align: center;
  }
    #index section#area .hanrei{
      color: var(--main-color);
      font-size: 1.8rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
      #index section#area .hanrei .color_box{
        display: inline-block;
        width: 60px;
        height: 25px;
        background-color: var(--main-color);
        margin-right: 15px;
        -webkit-border-radius: 6px;
           -moz-border-radius: 6px;
                border-radius: 6px;
      }
    #index section#area .area_map{
      padding: 20px;
    }
      #index section#area .area_map img{
        max-width: 850px;
      }

/**
 * サポート体制
 */
#index section#support{
  padding: 50px 0 0 0;
}
  #index section#support .content{
    padding: 0 20px;
    width: calc(100% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
    #index section#support .content span{
      font-size: 1.4rem;
      line-height: 2.0em;
    }

/**
 * アクセス
 */
#index section#access{
  position: relative;
  padding: 50px 0 0 0;
}
  #index section#access .obi{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 140px;
    background-color: var(--main-color);
  }
  #index section#access .content{
    padding: 0 20px;
    width: calc(100% - 40px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
    #index section#access .content span{
      font-size: 2.0rem;
      line-height: 1.5em;
      white-space: nowrap;
      margin: 0 10px;
    }
    #index section#access .content #map_canvas{
      width: 95%;
      height: 440px;
      margin-top: 30px;
    }


/*------------------------------------
            第2階層共通
------------------------------------*/
/*ページタイトル*/
.second_level #top{
  text-align: center;
}
  .second_level #top h1{
    position: relative;
    top: 50px;
    display: inline;
    color: #fff;
    font-size: 4.0rem;
    padding: 10px 50px;
    background-color: rgba(0,0,0,0.4);
  }
/*ページ下部の帯*/
.second_level section .obi{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;
  background-color: var(--main-color);
}
/*内容*/
.second_level section .content{
  width: calc(90% - 100px);
  padding: 50px;
  margin: 0 auto;
  background-color: #fff;
}
  .second_level section .content h2{
    font-size: 3.4rem;
    color: var(--main-color);
    padding-bottom: 40px;
  }
@media screen and (max-width:800px){
  .second_level #top h1{
    top: 20px;
    font-size: 3.0rem;
    padding: 5px 30px;
  }
  .second_level section .content{
    width: calc(95% - 50px);
    padding: 25px;
  }
}


/*------------------------------------
            在宅医療とは
------------------------------------*/
/*メイン*/
#about section#top{
  position: relative;
  width: 100%;
  background: url(../img/about/main.jpg) center bottom / cover no-repeat;
}
/*内容*/
#about .block{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .block span{
  padding: 30px;
  width: calc(100% - 352px);
  max-width: 550px;
  font-size: 1.5rem;
  line-height: 2em;
}
#about .block img{
  width: 292px;
  height: auto;
  margin: 30px 0;
}
#about .block01{
  flex-direction: row;
}
#about .block02{
  flex-direction: row-reverse;
}
#about .block03{
  flex-direction: row;
}
@media screen and (max-width:800px){
  #about .block span{
    padding: 20px;
    width: calc(100% - 40px);
  }
}


/*------------------------------------
            求　　　　人
------------------------------------*/
/*メイン*/
#job section#top{
  position: relative;
  width: 100%;
  background: url(../img/job/main.jpg) center bottom / cover no-repeat;
}
/*タブ*/
#job ul.tab{
  width: 100%;
  display: flex;
  justify-content: center;
}
  #job ul.tab li{
    width: calc(33.33333% - 10.66666px);
    margin-right: 10px;
    border: solid 2px var(--main-color);
  }
  #job ul.tab li:last-child{
    margin-right: 0;
  }
  #job ul.tab li a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.0rem;
    line-height: 3.1rem;
    color: var(--main-color);
    text-align: center;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    padding: 15px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
  #job ul.tab li a.selected{
    color: #fff;
    background-color: var(--main-color);
  }
  #job ul.tab li a:link   {text-decoration: none;}
  #job ul.tab li a:active {text-decoration: none;}
  #job ul.tab li a:visited{text-decoration: none;}
  #job ul.tab li a:hover  {text-decoration: none; opacity: 0.7;}
/*テーブル*/
#job table.details{
  width: 100%;
  font-size: 1.8rem;
}
#job table.details tr{
  border-bottom: solid 1px #ddd;
}
#job table.details th,
#job table.details td{
  padding: 30px;
}
#job table.details th{
  font-weight: bold;
  text-align: center;
  width: 5em;
}
@media screen and (max-width:900px){
  #job ul.tab li a{
    font-size: 2.5rem;
    line-height: 2.6rem;
    padding: 10px 15px;
    height: calc(100% - 20px);
  }
}
@media screen and (max-width:700px){
  #job ul.tab li a{
    font-size: 2.0rem;
    line-height: 2.1rem;
    padding: 5px 15px;
    height: calc(100% - 10px);
  }
  #job table.details{
    margin-top: 10px;
  }
  #job table.details tr{
    border-bottom: none;
  }
  #job table.details th,
  #job table.details td{
    display: block;
  }
  #job table.details th{
    font-size: 1.5rem;
    font-weight: normal;
    padding: 10px;
    background-color: var(--font-color);
    color: #fff;
  }
  #job table.details td{
    font-size: 1.5rem;
    padding: 10px 10px 30px 30px;
    border-top: solid 1px #ddd;
  }
}
@media screen and (max-width:500px){
  #job ul.tab li a{
    font-size: 1.5rem;
    line-height: 1.6rem;
    padding: 5px 10px;
    width: calc(100% - 20px);
    height: calc(100% - 10px);
  }
}




/*------------------------------------
            お問い合わせ
------------------------------------*/
/*メイン*/
#contact section#top{
  position: relative;
  width: 100%;
  background: url(../img/contact/main.jpg) center bottom / cover no-repeat;
}
/*フォーム*/
#contact #description{
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.8em;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: dotted 1px #666;
}
#contact #input_form{
  max-width: 450px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact #input_form input,
#contact #input_form textarea{
  width: calc(100% - 22px);
  border: solid 1px #a9aaa4;
  background-color: #fdfff0;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #666;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "平成ゴシック", arial, helvetica, clean, sans-serif;
}
#contact #input_form .err{
  width: calc(100% - 20px);
  color: #fff;
  background-color: var(--attention-color);
  padding: 5px 10px;
  margin: 0 auto 5px auto;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
/*確認画面*/
#contact #confirmation{
  max-width: 450px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact #confirmation p{
  text-align: center;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(255,255,255,0.5);
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
#contact #confirmation dl{
  width: 100%;
  font-size: 18px;
  text-align: left;
  margin: 20px auto 0 auto;
}
#contact #confirmation dt{
  padding: 10px;
  color: #fff;
  background-color: #9f978b;
  border: solid 1px #9f978b;
  -webkit-border-top-left-radius : 5px;
  -webkit-border-top-right-radius: 5px;
     -moz-border-top-left-radius : 5px;
     -moz-border-top-right-radius: 5px;
          border-top-left-radius : 5px;
          border-top-right-radius: 5px;
}
#contact #confirmation dd{
  padding: 10px;
  background-color: #fff;
  border: solid 1px #9f978b;
  margin-bottom: 20px;
  -webkit-border-bottom-left-radius : 5px;
  -webkit-border-bottom-right-radius: 5px;
     -moz-border-bottom-left-radius : 5px;
     -moz-border-bottom-right-radius: 5px;
          border-bottom-left-radius : 5px;
          border-bottom-right-radius: 5px;
}
#contact #confirmation dd:last-child{
  margin-bottom: 0;
}
/*送信完了画面*/
#contact #sended_msg{
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 2.0rem;
  line-height: 2.0em;
  margin: 20px 0;
}

/*ボタン共通*/
#contact .btn{
  width: 140px;
  margin: 0 auto;
  padding: 5px 0 5px 0;
  color: #fff;
  text-align: center;
  font-size: 15px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
@media screen and (max-width:800px){
  #contact .btn{
    width: 100px;
  }
}
#contact .btn:hover{
  background-color: #666;
}
#contact .btn a{
  display: block;
  padding: 5px;
}
#contact .btn a:link   { text-decoration:none; color: #ffffff; }
#contact .btn a:visited{ text-decoration:none; color: #ffffff; }
#contact .btn a:active { text-decoration:none; color: #ffffff; }
#contact .btn a:hover  { text-decoration:none; color: #ffffff; }
/*確認ボタン*/
#contact .check{
  background-color: var(--article-color);
}
#contact .check:hover{
  background-color: #666;
}
/*戻るボタン*/
#contact .back{
  background-color: #8c8d84;
  margin-right: 5px;
}
#contact .back:hover{
  background-color: #666;
}
/*送信ボタン*/
#contact .send{
  background-color: var(--main-color);
}
#contact .send:hover{
  background-color: #666;
}
/*戻るボタン と 送信ボタン*/
#contact ul.btn_set{
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
#contact ul.btn_set li{
  display: inline-block;
}
/*個人情報の取扱いについて*/
#contact #privacy_policy{
  background-color: #f2f2f2;
  margin-top: 40px;
  padding: 20px;
  width: calc(100% - 40px);
}
#contact #privacy_policy h4{
  font-size: 1.8rem;
}
#contact #privacy_policy p{
  font-size: 1.4rem;
  line-height: 2.0em;
  margin-bottom: 1em;
}
#contact #privacy_policy p:last-child{
  margin-bottom: 0;
}
#contact #privacy_policy ul{
  margin-left: 2em;
  margin-bottom: 0.5em;
  list-style: disc;
}
#contact #privacy_policy li{
  padding-bottom: 0.5em;
}


/*------------------------------------
            メニュー関連
------------------------------------*/
/**
 * PC用グローバルナビ
 */
nav#navigationPC{
  height: 60px;
  text-align: center;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
  nav#navigationPC ul{
    display: flex;
    justify-content: center;
    align-items: center;
  }
    nav#navigationPC li{
      text-align: center;
      border-right: solid 1px #fff;
    }
    nav#navigationPC li:last-child{
      border-right: none;
    }
      nav#navigationPC li a,
      nav#navigationPC li span{
        padding: 0 15px 0 15px;
        width: calc(100% - 30px);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
      }
      nav#navigationPC li a:link   { text-decoration:none; color: #ffffff; }
      nav#navigationPC li a:visited{ text-decoration:none; color: #ffffff; }
      nav#navigationPC li a:active { text-decoration:none; color: #ffffff; }
      nav#navigationPC li a:hover  { text-decoration:none; color: var(--main-sub-color); }
@media screen and (max-width:930px){
  nav#navigationPC li a,
  nav#navigationPC li span{
    padding: 0 10px 0 10px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width:830px){
  nav#navigationPC li a,
  nav#navigationPC li span{
    font-size: 1.2rem;
  }
}
/* TOPエリア以降の可動メニュー (お問い合わせボタンは style.css で設定) */
nav#navigationPC2{
  position: fixed;
  top: -80px;
  left: 0;
  overflow: hidden;
  z-index: 55;

  background-color: rgba(0,0,0,0.6);
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
/*ロゴ*/
nav#navigationPC2 .logo img.logo_mark{
  width: 60px;
  height: auto;
  margin-left: 15px;
}
/*グローバルナビ*/
nav#navigationPC2 ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
  nav#navigationPC2 li{
    text-align: center;
    border-right: solid 1px #fff;
  }
  nav#navigationPC2 li:last-child{
    border-right: none;
  }
    nav#navigationPC2 li a,
    nav#navigationPC2 li span{
      padding: 0 15px 0 15px;
      width: calc(100% - 30px);
      transition: all 0.5s ease-in-out;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
    }
    nav#navigationPC2 li a:link   { text-decoration:none; color: #ffffff; }
    nav#navigationPC2 li a:visited{ text-decoration:none; color: #ffffff; }
    nav#navigationPC2 li a:active { text-decoration:none; color: #ffffff; }
    nav#navigationPC2 li a:hover  { text-decoration:none; color: var(--main-sub-color); }
@media screen and (max-width:1090px){
  nav#navigationPC2 li a,
  nav#navigationPC2 li span{
    padding: 0 10px 0 10px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width:1000px){
  nav#navigationPC2 li a,
  nav#navigationPC2 li span{
    font-size: 1.1rem;
  }
}
@media screen and (max-width:900px){
  nav#navigationPC2 li a,
  nav#navigationPC2 li span{
    padding: 0 5px 0 5px;
    width: calc(100% - 10px);
  }
}
@media screen and (max-width:850px){
  nav#navigationPC2 .logo img.logo_mark{
    width: 50px;
    height: auto;
    margin-left: 10px;
  }
}


/**
 * ハンバーガーメニュー
 */
/* ヘッダー部 */
div.spHeader{
  position: fixed;
  width: 100%;
  height: 75px;
  background-color: rgba(255,255,255,0.8);
  /*border-bottom: solid 1px var(--main-color);*/
  z-index: 5;
}
/*ロゴ*/
div.spHeader h1{
  position: fixed;
  top: 0;
  left: 0;
}
div.spHeader h1 .logo_mark{
  position: relative;
  top: 10px;
  left: 15px;
  width: 55px;
  height: auto;
}
div.spHeader h1 .logo_text{
  position: relative;
  top: 23px;
  left: 23px;
  width: 100px;
  height: auto;
}
/* お問い合わせボタン */
div.spHeader .btn_contact{
  position: fixed;
  top: 0;
  right: 80px;
}
/* ハンバーガーメニュー */
#hamburger,
#hamburger span{
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
#hamburger{
  position: fixed;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 31px;
  z-index: 100;
  cursor: pointer;
}
#hamburger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 7px;
  border-radius: 0;
}
  #hamburger+span{ /* MENU */
    position: fixed;
    font-size: 1.2rem;
    color: var(--article-color);
    top: 50px;
    right: 21.5px;
    z-index: 100;
  }
/*クリック前*/
#hamburger span:nth-of-type(1){
  top: 0;
  background-color: var(--article-color);
}
#hamburger span:nth-of-type(2){
  top: 12px;
  background-color: var(--article-color);
}
#hamburger span:nth-of-type(3){
  bottom: 0;
  background-color: var(--article-color);
}
/*クリック後*/
#hamburger.active{
  display: none;
}


/**
 * スマホ用グローバルナビ
 */
#navigationSP{
  color: #fff;
  font-size: 1.4rem;
  background-color: rgba(0,0,0,0.5);
}
  /*CLOSEボタン*/
  #navigationSP #close,
  #navigationSP #close span{
    display: inline-block;
    box-sizing: border-box;
  }
  #navigationSP #close{
    position: relative;
    top: 0;
    left: 0;
    right: 10px;
    width: 40px;
    height: 31px;
    z-index: 100;
    cursor: pointer;
    margin: 15px 10px 10px 10px;
  }
  #navigationSP #close span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 7px;
    border-radius: 0;
  }
  #navigationSP #close span:nth-of-type(1){
    top: 0;
    background-color: #fff;
  }
  #navigationSP #close span:nth-of-type(2){
    bottom: 0;
    background-color: #fff;
  }
  #navigationSP #close span:nth-of-type(1){
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
    background-color: #fff;
  }
  #navigationSP #close span:nth-of-type(2){
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
    background-color: #fff;
  }
  /*メニュー*/
  #navigationSP ul,
  #navigationSP li{
    margin: 0;
    padding: 0;
    position: relative;
  }
  #navigationSP li{
    display: block;
    border-right: solid 8px rgba(255, 255, 255, 1);
    border-bottom: dotted 1px rgba(255, 255, 255, 0.6);
    text-align: right;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  #navigationSP li:first-child{
    border-top: dotted 1px rgba(255, 255, 255, 0.6);
  }
  #navigationSP li:last-child{
    border-bottom: dotted 1px rgba(255, 255, 255, 0.6);
  }
  #navigationSP li:hover{
    border-right: solid 8px var(--main-sub-color);
    background-color: rgba(0,0,0,0.7);
  }
    #navigationSP li>a{
      display: block;
      padding: 15px;
    }

    #navigationSP li>a:link   { text-decoration:none; color: #ffffff; }
    #navigationSP li>a:visited{ text-decoration:none; color: #ffffff; }
    #navigationSP li>a:active { text-decoration:none; color: #ffffff; }
    #navigationSP li>a:hover  { text-decoration:none; color: var(--main-sub-color); }
    
      #navigationSP li>a span{
        padding-right: 15px;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
      }
      #navigationSP li:hover>a span{
        padding-right: 10px;
      }
      #navigationSP li>a img{
        width: 25px;
        height: auto;
      }


/**
 * パンフレットボタン
 */
  a#btn_pamphlet{
    position: fixed;
    bottom: 15px;
    left: 0;
    margin: auto;
    border: solid 1px #fff;
    border-left: none;
    height: 80px;
    width: 70px;
    background-color: rgba(0,0,0,0.7);
    z-index: 400;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;

    -webkit-border-top-right-radius : 10px;
    -webkit-border-bottom-right-radius: 10px;
       -moz-border-top-right-radius : 10px;
       -moz-border-bottom-right-radius: 10px;
            border-top-right-radius : 10px;
            border-bottom-right-radius: 10px;

    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
    a#btn_pamphlet img{
      width: 40px;
      height: auto;
      margin-top: 3px;
    }
    a#btn_pamphlet span{
      width: 100%;
      font-size: 1.1rem;
      color: #fff;
      text-align: center;
      margin-top: 2px;
    }
    a#btn_pamphlet:link   { text-decoration:none; color: #ffffff; }
    a#btn_pamphlet:visited{ text-decoration:none; color: #ffffff; }
    a#btn_pamphlet:active { text-decoration:none; color: #ffffff; }
    a#btn_pamphlet:hover  { text-decoration:none; color: #ffffff; background-color: var(--article-color);}


/**
 * ページTOPへ戻るボタン
 */
#scrollTopMenu{
  position: fixed;
  bottom: 15px;
  right: 0;
  margin: auto;
  border: solid 1px #fff;
  height: 60px;
  width: 60px;
  background-color: rgba(0,0,0,0.7);
  z-index: 300;
  cursor: pointer;

  font-size: 1.5rem;
  text-align: center;
  color: #ffffff;
  line-height: 1em;
  padding: 17px 0 0 0;

  -webkit-border-top-left-radius : 10px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-top-left-radius : 10px;
     -moz-border-bottom-left-radius: 10px;
          border-top-left-radius : 10px;
          border-bottom-left-radius: 10px;

  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
#scrollTopMenu:hover{
  background-color: rgba(0,0,0,0.4);
}
  #scrollTopMenu .up{
    position: relative;
    top: -7px;
    left: 18px;
    width:0;
    height:0;
    border: 12px solid transparent;
    border-bottom-color: #FFF;
  }
  #scrollTopMenu .up:after{
    position: absolute;
    content: '';
    top: 12px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: #FFF;
  }


/**
 * PC用設定
 */
@media screen and (min-width:801px){
  div.spHeader{
    display: none;
  }
  nav#navigationSP{
    display: none;
  }
}
/**
 * スマホ用設定
 */
@media screen and (max-width:800px){
  nav#navigationPC{
    display: none;
  }
}



