@charset "UTF-8";
/*　基本色　*/
/*　マスターワイズ　*/
/*　clearする　*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");
.clearfix:after {
  content: "";
  clear: both;
  display: block; }

/* ボディ設定 */
html {
  font-size: 62.5%;
  line-height: 1;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  /*　デバイスフォント最適化　*/
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

body {
  font-size: 1.5rem;
  overflow: hidden; }

* {
  /*　リンク設定　*/
  /* 電話番号 */
  /* 選択色 */ }
  * a {
    color: inherit;
    text-decoration: none;
    transition: all .2s ease; }
  * a:hover {
    text-decoration: none; }
  * a[href^="tel"] {
    pointer-events: none; }
  *::selection {
    background-color: #111;
    color: #fff; }

/* font-family: 'Roboto', sans-serif; */
/* ヘッダー */
header {
  width: auto;
  margin: 0 auto;
  /* ロゴ */ }
  header #ttl_site {
    width: 340px;
    height: 50px;
    text-indent: -9999px;
    margin: 0 auto; }
    header #ttl_site a {
      display: block;
      width: 100%;
      height: 100%;
      background-image: url(../images/common/ttl_site.svg);
      background-size: contain; }
  header #inner_header {
    position: relative;
    width: 1100px;
    margin: 25px auto; }
  header #list_header {
    position: absolute;
    top: 15px;
    right: 0;
    display: none;
    width: auto;
    font-size: 2.7rem;
    list-style: none;
    color: #555; }
    header #list_header li {
      margin: 0 0 0 .5em; }

/* グローバルナビゲーション */
#nav_global {
  width: 100%;
  font-size: 1.6rem;
  border-top: 1px solid #dadada;
  /* SP用ナブコン */ }
  #nav_global dt {
    display: none; }
  #nav_global ul {
    display: flex;
    justify-content: space-between;
    width: 1100px;
    list-style: none;
    font-family: YakuHanJP, 'Noto Sans Bold', sans-serif;
    margin: 0 auto; }
  #nav_global li {
    display: flex;
    align-items: center;
    width: calc(100% / 4); }
  #nav_global a {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
    font-family: 'Noto Sans Medium', sans-serif;
    padding: 24px 0; }
    #nav_global a:before {
      transition: all .2s ease;
      position: absolute;
      top: -100%;
      left: 0;
      z-index: -1;
      opacity: 0;
      display: block;
      content: "";
      width: 100%;
      height: 100%;
      background-color: #111; }
    #nav_global a:hover {
      color: #fff;
      opacity: 1; }
    #nav_global a:hover:before {
      top: 0;
      opacity: 1; }

/* アサイド */
aside {
  width: auto;
  text-align: center;
  color: #fff;
  background-image: url(../images/common/back_aside.jpg);
  background-size: cover;
  background-blend-mode: multiply;
  background-color: #777;
  padding: 80px 0; }
  aside h2 {
    font-family: YakuHanJP, 'Noto Sans Bold', sans-serif;
    font-size: 2.2rem;
    margin: 0 0 28px; }
  aside #list_address {
    display: flex;
    justify-content: center;
    width: 840px;
    font-family: 'Roboto', sans-serif;
    font-size: 3.8rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    list-style: none;
    padding: 20px 0;
    margin: 0 auto 30px; }
    aside #list_address li {
      display: flex;
      align-items: center;
      margin: 0 .5em; }
    aside #list_address span {
      display: block;
      width: auto;
      font-size: 2.4rem;
      margin: 0 .5em 0 0; }
  aside .btn_cmn_02 {
    border: 1px solid #fff; }

/* フッター  */
footer {
  width: auto;
  min-width: 1100px;
  font-family: YakuHanJP, 'Noto Sans Medium', sans-serif;
  text-align: center;
  padding: 60px 0;
  margin: 0 auto; }
  footer nav {
    width: 100%;
    margin: 0 0 25px; }
    footer nav ul {
      display: flex;
      justify-content: center;
      width: auto;
      list-style: none; }
    footer nav li {
      margin: 0 2em; }
    footer nav a:hover {
      text-decoration: underline; }
  footer #txt_copyright {
    width: 100%;
    font-size: 1.3rem;
    font-family: sans-serif; }

/*　レスポンシブ対応（ブレークポイント 414px） */
@media screen and (max-width: 414px) {
  img {
    max-width: 100%;
    height: auto; }

  body {
    font-size: 1.4rem;
    padding: 52px 0 0; }

  * {
    /* 電話番号 */ }
    * a[href^="tel"] {
      pointer-events: auto; }

  /* ヘッダー */
  header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0px 4%;
    margin: 0;
    /* ロゴ */ }
    header #ttl_site {
      width: calc(214px / 1.5);
      height: calc(50px / 1.5);
      margin: 0; }
    header #inner_header {
      display: block;
      width: 100%;
      margin: 10px 0; }
    header #list_header {
      display: none; }

  /* グローバルナビゲーション */
  #nav_global {
    width: 100%;
    border: none;
    /* SP用ナブコン */ }
    #nav_global dt {
      position: fixed;
      z-index: 1002;
      top: 12px;
      right: 4%;
      display: block;
      width: auto;
      font-size: 3rem; }
      #nav_global dt.is_open {
        opacity: .2; }
    #nav_global dd {
      position: fixed;
      z-index: 1001;
      top: 46px;
      left: 0;
      display: none;
      width: 100%;
      height: 100vh;
      background-color: #fff; }
    #nav_global ul {
      display: block;
      width: 100%;
      margin: 0; }
    #nav_global li {
      width: 100%;
      border-bottom: 1px solid #ddd; }
      #nav_global li:before, #nav_global li:last-child:after {
        content: none; }
    #nav_global a {
      position: relative;
      display: block;
      width: 100%;
      text-align: left;
      overflow: hidden;
      font-family: 'Noto Sans Medium', sans-serif;
      padding: 24px 4%; }
      #nav_global a:before {
        content: none; }
      #nav_global a:after {
        font-family: FontAwesome;
        content: "\f105";
        float: right; }
      #nav_global a:hover {
        color: inherit;
        opacity: 1; }

  /* アサイド */
  aside {
    padding: 30px 0; }
    aside h2 {
      font-size: 1.5rem;
      margin: 0 0 28px; }
    aside #list_address {
      display: block;
      width: 90%;
      font-size: 3.2rem;
      padding: 20px 0;
      margin: 0 auto 30px; }
      aside #list_address li {
        justify-content: center; }
      aside #list_address span {
        display: block;
        width: auto;
        font-size: 2.4rem;
        margin: 0 .5em 0 0; }

  /* フッター  */
  footer {
    width: auto;
    min-width: 94%;
    padding: 20px 0; }
    footer nav {
      display: none; } }
/*　ここまで　*/
