@charset "UTF-8";

/* ==============================
   Web Fonts
============================== */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Noto_Sans_JP_Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Noto_Sans_JP_Bold.woff") format("woff");
  font-display: swap;
}

/* ==============================
   oyakata-plus signup - header / footer
   CSS variables & shared styles from theme
============================== */

:root {
  --main-color: #18922C;
  --bg-color: #F1F0EA;
  --accent-color: #EAED58;
  --txt-color: #07362D;
  --contents-width: 100%;
}

/* ==============================
   HEADER (PC)
============================== */
.header {
  background-color: #fff;
  height: auto;
}
.header__inner {
  width: 100%;
  max-width: 1060px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: 256px;
  height: 76px;
  display: inline-block;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__right {
  display: inline-block;
}
a.header__tel {
  text-indent: 0;
  display: inline-block;
  text-decoration: none;
  color: var(--txt-color);
  font-size: 24px;
  font-weight: bold;
  height: 40px;
  position: relative;
  line-height: 1.0;
  background-color: transparent;
  padding-left: 30px;
  background-image: url(../img/icon_phone.svg);
  background-repeat: no-repeat;
  background-position: top 1px left;
  background-size: 25px;
}
a.header__tel .header__hours {
  text-align: right;
  font-size: 12px;
  display: block;
  text-decoration: none;
  font-weight: normal;
  color: var(--main-color);
  margin-top: 3px;
}
a.header__tel:hover {
  opacity: 0.6;
}

/* ==============================
   FOOTER (PC)
============================== */
.footer {
  margin-top: 40px;
  background-color: var(--bg-color);
  padding-bottom: 0;
}
.footer__inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 40px 0 60px;
  box-sizing: border-box;
}
.footer__logo {
  width: 256px;
  font-size: 15px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  color: var(--txt-color);
  line-height: 1.4;
}
.footer__logo img {
  width: 100%;
  height: auto;
  margin-bottom: 4px;
}

/* ==============================
   RESPONSIVE (SP)
============================== */
@media screen and (max-width: 680px) {
  .header {
    height: 50px;
    position: relative;
    border-bottom: 1px solid var(--bg-color);
  }
  .header__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    height: 50px;
  }
  .header__logo {
    width: 144px;
    height: 44px;
    margin: 0;
    display: inline-block;
    position: relative;
    top: 3px;
  }
  a.header__tel {
    display: block;
    text-indent: -9999px;
    width: 32px;
    height: 32px;
    background-image: url(../img/icon_phone.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 0;
    font-size: 0;
  }
  a.header__tel .header__hours {
    display: none;
  }
  .footer {
    margin-top: 30px;
    padding-bottom: 0;
  }
  .footer__inner {
    width: 100%;
    padding: 25px 0 30px;
  }
  .footer__logo {
    width: 172px;
    margin: 0 auto;
    font-size: 13px;
  }
  .footer__logo img {
    margin-bottom: -5px;
  }
}
