@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:300&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap');
/* -- FOUNDATION -- */
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
  color: #575757;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #575757;
}

a:hover {
  opacity: 0.8;
}

main {
  display: block;
}

/* -- LAYOUT -- */
.header {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #333;
}

.header_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 90%;
  height: auto;
  max-width: 1000px;
  margin: 0 auto;
  background-position: bottom right;
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.header .logo_tfm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 140px;
  height: 80px;
}

.header .logo_tfm > img {
  width: 100%;
  height: auto;
}

.header .logo_jfn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 80px;
  margin-left: 30px;
}

.header .logo_jfn > img {
  width: 100%;
  height: auto;
}

.header .freq {
  margin-bottom: 5px;
  font-size: 1rem;
  text-align: right;
  line-height: 1.2;
  font-family: sans-serif;
}

@media (max-width: 800px) {
  .header {
    height: 70px;
  }

  .header_container {
    background: none;
  }

  .header .logo_tfm {
    width: 105px;
    height: 70px;
  }

  .header .logo_jfn {
    width: 40px;
    height: 70px;
    margin-left: 20px;
  }

  .header .freq {
    display: none;
  }
}
.ham {
  display: none;
}

.ham_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 70px;
  cursor: pointer;
}

.ham_icon img {
  width: 40px;
  height: 40px;
}

.ham_menu {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: white;
  left: 0;
  top: 0;
  z-index: 2;
}

.ham_menu .hideIcon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 5%;
  cursor: pointer;
}

.ham_contents {
  margin-top: 100px;
  font-family: "Quicksand", sans-serif;
  text-align: center;
}

.ham_contents > li {
  margin-bottom: 30px;
}

.ham_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.ham_sns > li {
  margin: 0 20px;
}

.ham_sns > li > a > img {
  width: 30px;
  height: auto;
}

@media (max-width: 480px) {
  .ham {
    display: block;
  }
}
#menu.is-open {
  display: block;
  overflow-y: hidden;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.mainNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  font-family: "Quicksand", sans-serif;
  word-break: keep-all;
}

.mainNav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
}

.mainNav_menu > li {
  padding-right: 30px;
}

.mainNav_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mainNav_sns > li {
  margin-left: 15px;
}

.mainNav_sns > li > a > img {
  width: 25px;
  height: 25px;
}

@media (max-width: 480px) {
  .mainNav {
    display: none;
  }
}
.title {
  width: 100%;
  text-align: center;

  img {
    width: 100%;
  }
}

.time {
  padding: 20px 0;
  font-size: 2.0rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  background: #c24644;
}

@media (max-width: 480px) {
  .time {
    padding: 15px 0;
  }
}
.time_inner {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}

.time_onair {
  font-size: 1.8rem;
}

.time_start {
  display: block;
  font-size: 1.8rem;
  margin-top: 25px;
  margin-bottom: -30px;
}

@media (max-width: 480px) {
  .time {
    font-size: 1.6rem;
  }

  .time_inner {
    font-size: 3.8vw;
  }
}
@media (max-width: 800px) {
  .time_start {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0px;
  }
}
.news {
  margin: 40px auto 70px;
  padding: 20px;
  text-align: center;
  background: #fff2f2;
}

.news_ttl {
  margin-bottom: 10px;
}

.news_day {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

.news_txt {
  margin-bottom: 10px;
}

.news_sub > p > span {
  color: red;
}

.news_sub_day {
  color: red;
  font-weight: bold;
}

.news_sub_tokyo {
  font-weight: bold;
}

@media (max-width: 480px) {
  .news {
    text-align: left;
  }

  .news_txt {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .news_txt > br {
    display: none;
  }
}
.lead {
  margin: 70px auto 40px;
}

@media (max-width: 800px) {
  .lead {
    margin: 30px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
  }
}
.present {
  margin: 0px auto 70px;
}

.present_img {
  display: block;
  max-width: 160px;
  margin: 0 auto;
}

.present_imgNote {
  margin: 5px auto 20px;
  font-size: 0.8em;
  text-align: center;
}

@media (max-width: 800px) {
  .present {
    margin: 30px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
  }

  .present_img {
    display: block;
    max-width: 120px;
    margin: 0 auto 10px;
  }
}
.desc {
  margin-bottom: 20px;
  line-height: 2;
  text-align: center;
}

.desc > b {
  display: block;
  margin-bottom: 15px;
}

.desc > strong {
  font-weight: bold;
  color: #e13400;
}

@media (max-width: 800px) {
  .desc {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .desc {
    width: 100%;
    font-size: 1.4rem;
    text-align: left;
  }
}
.btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin: 0 auto 50px;
  max-width: 700px;
}

@media (max-width: 480px) {
  .btnBox {
    margin: 0 auto 40px;
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  width: 250px;
  height: 70px;
  text-align: center;
  font-family: "Quicksand", "M PLUS Rounded 1c", sans-serif;
  font-size: 2.4rem;
  color: #fff;
  background: #c24644;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .btn,
  .btn-tfm,
  .btn-audee {
    font-size: 2rem;
  }
}
.bnr {
  width: 516px;
  max-width: 100%;
  margin: 0 auto 70px;
}

.bnr a {
  display: block;
  width: 100%;
  max-width: 516px;
}

@media (max-width: 480px) {
  .bnr {
    width: 100%;
    margin: 0 auto 70px;
  }
}
.bnr_shiseido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 250px;
  height: 70px;
  margin: 0 auto;
  border: 1px solid #ccc;
}

.bnr_shiseido img {
  width: 200px;
  height: auto;
}

@media (max-width: 800px) {
  .bnr {
    margin-bottom: 70px;
  }
}
.footer {
  margin-top: 70px;
}

.copyright {
  margin-top: -20px;
  padding: 0 5% 30px;
  font-size: 1.2rem;
  text-align: center;
  font-family: "Quicksand", sans-serif;
}

@media (max-width: 800px) {
  .copyright {
    margin-top: 20px;
  }
}
.pagetop {
  position: fixed;
  padding: 2px 5px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 7px;
  z-index: 100;
}

.pagetop > img {
  width: 30px;
  min-height: 0;
}

.pagetop > p {
  margin-top: 1px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
}

.personality {
  margin: 0 auto 70px;
  padding-bottom: 10px;
  max-width: 750px;
  border-bottom: 1px solid #ccc;
}

.personality_ttl {
  margin-bottom: 30px;
  padding-bottom: 5px;
  font-size: 3.2rem;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.personality_one {
  margin-bottom: 20px;
}

.personality_one > dt {
  margin-bottom: 7px;
  font-weight: bold;
}

.personality_one > dd {
  font-size: 1.4rem;
}

@media (max-width: 800px) {
  .personality {
    margin: 0 auto 30px;
  }

  .personality_ttl {
    font-size: 2.4rem;
  }
}
.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sns_box {
  width: 470px;
}

@media (max-width: 800px) {
  .sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sns_box {
    width: 100%;
    max-width: 470px;
  }

  .sns_box iframe {
    width: 100% !important;
    max-width: 470px !important;
  }

  .sns_box:first-of-type {
    margin-bottom: 30px;
  }
}
/* -- UTILITY -- */
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pcDetail {
  display: block;
}

.spDetail {
  display: none;
}

@media (max-width: 800px) {
  .spDetail {
    display: block;
  }

  .pcDetail {
    display: none;
  }
}
sup {
  font-size: smaller;
  vertical-align: top;
}

/*# sourceMappingURL=style.css.map */