@charset "UTF-8";



/*--------------------------------------------------
RESET
--------------------------------------------------*/
* {
  font-size: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
a img {
  border: 0;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
*:focus {
  outline: none;
}



/*--------------------------------------------------
Google Fonts
--------------------------------------------------*/
.font_mplusone {
  font-family: "M PLUS 1", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.font_fugazone {
  font-family: "Fugaz One", serif;
  font-weight: 400;
  font-style: normal;
}
.font_roboto {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}



/*--------------------------------------------------
共通設定
--------------------------------------------------*/
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
}
#wrapper {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
}
main {
  width: 100%;
}
a {
  color: #0097E0;
}
a:hover {
  text-decoration: underline;
}
.hvr {
  opacity: 1;
}
.hvr:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
}



/*--------------------------------------------------
ヘッダー
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  header {
    width: 100%;
    padding: 25px 25px 0;
  }
  #logo_daikin {
    width: 180px;
    line-height: 0;
  }
  #logo_daikin img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 959px) and (min-width: 768px) {
  header {
    padding: 10px 2% 0;
  }
}
@media screen and (max-width: 767px) {
  header {
    width: 100%;
    padding: 15px 15px 0;
  }
  #logo_daikin {
    width: 34%;
    max-width: 180px;
    line-height: 0;
  }
  #logo_daikin img {
    width: 100%;
    height: auto;
  }
}



/*--------------------------------------------------
フッター
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  footer {
    width: 100%;
    background-color: #333333;
    padding: 20px 0 ;
  }
  footer ul {
    width: 100%;
    margin: 0 0 25px;
    display: flex;
    justify-content: center;
  }
  footer ul li {
    font-size: 85%;
    line-height: 1;
    border-right: 1px #cccccc solid;
    margin: 0 6px 0 0;
    padding: 0 6px 0 0;
  }
  footer ul li:last-child {
    border-right: none;
    margin: 0;
    padding: 0;
  }
  footer ul li a {
    color: #cccccc;
  }
  footer ul li a:hover {
    text-decoration: underline;
  }
  footer p {
    text-align: center;
    color: #cccccc;
    font-weight: 400;
    font-size: 75%;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    background-color: #333333;
    padding: 20px 0 ;
  }
  footer ul {
    width: 100%;
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
  }
  footer ul li {
    font-size: 85%;
    line-height: 1;
    border-right: 1px #cccccc solid;
    margin: 0 6px 0 0;
    padding: 0 6px 0 0;
  }
  footer ul li:last-child {
    border-right: none;
    margin: 0;
    padding: 0;
  }
  footer ul li a {
    color: #cccccc;
  }
  footer ul li a:hover {
    text-decoration: underline;
  }
  footer p {
    text-align: center;
    color: #cccccc;
    font-weight: 400;
    font-size: 75%;
    line-height: 1;
  }
}


