html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 31.25%;
  }
}
html body {
  color: #34373e;
  font-size: 1.6rem;
  font-family: nimbus-sans, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,
    "メイリオ", Meiryo, sans-serif;
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
}
.sp {
  display: none;
}
.movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/* Header */
.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0 75px;
}
/* .header.scrolled {
  height: 110px;
  padding: 25px 0 0;
} */
@media screen and (max-width: 768px) {
  .header {
    padding: 15vw 5vw;
  }
  /* .header.scrolled {
    height: 9.37vw;
    padding: 0;
  } */
}
.header__logo {
  width: 436px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 70vw;
    margin: 0 auto 3rem;
  }
}
.header__logo > a {
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .header__logo:hover > a {
    opacity: 0.8;
  }
}
.header__social {
  width: 300px;
  margin: 0 0 0 50px;
}
.header__navigator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .header__navigator {
    width: 100%;
    margin: 3rem auto 0;
  }
}
.header__navigator__image {
  position: relative;
  width: 120px;
  margin: 0 40px 0 0;
}
@media screen and (max-width: 768px) {
  .header__navigator__image {
    width: 35%;
    margin: 0 2rem 0 0;
  }
}
.header__navigator__image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 70px;
  z-index: -1;
  transform: rotate(-45deg);
  width: 220px;
  height: 0;
  border-top: 1px solid #0bd79b;
}
@media screen and (max-width: 768px) {
  .header__navigator__image::before {
    top: 0px;
    left: -100px;
    transform: rotate(45deg);
    width: 50vw;
  }
}
.header__navigator__text__type {
  font-size: 1.5rem;
  color: #0bd79b;
}
.header__navigator__text__name {
  margin: 13px auto 9px;
  font-size: 1.8rem;
}
.header__navigator__text__nameEng {
  font-size: 1rem;
  color: #9ba0ad;
}
@media screen and (max-width: 768px) {
  .header__navigator__text__type {
    font-size: 3rem;
  }
  .header__navigator__text__name {
    margin: 1rem auto 0.6rem;
    font-size: 4rem;
  }
  .header__navigator__text__nameEng {
    font-size: 2rem;
  }
}
.header__nav {
  width: 100%;
  margin: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 1);
    transition: all 300ms ease-in-out;
  }
  .header__nav.open {
    z-index: 99;
    opacity: 1;
  }
}
.header__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .header__nav__list {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    padding: 0 0 0 16vw;
    flex-direction: column;
  }
}
.header__nav__list__item {
  position: relative;
  margin: 0 1em;
}
@media screen and (max-width: 768px) {
  .header__nav__list__item {
    width: 100%;
    margin: 2rem 0;
    font-size: 5rem;
    font-weight: bold;
  }
}
.header__nav__list__item a::after {
  position: absolute;
  border-bottom: solid 2px #0bd79b;
  bottom: -5px;
  content: "";
  display: block;
  transition: all 300ms ease-in-out;
  width: 0;
}
.header__nav__list__item.active a::after {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .header__nav__list__item a:hover::after {
    width: 100%;
  }
}

/* Footer */
.footer {
  position: relative;
}
.footer__pagetop {
  position: absolute;
  top: -15px;
  right: calc((100% - 1200px) / 2);
  width: 60px;
  background-image: url("../img/icon_pagetop_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer__pagetop > a > img {
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .footer__pagetop > a:hover > img {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__pagetop {
    position: absolute;
    top: -1rem;
    right: 5%;
    width: 4rem;
  }
}
.footer__underWrap {
  padding: 50px 0;
  background-color: #34373e;
}
@media screen and (max-width: 768px) {
  .footer__underWrap {
    padding: 4rem 0;
  }
}
.footer__under {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__under {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.footer__under__home {
  position: relative;
  left: 10%;
}
.footer__under__home > a {
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .footer__under__home > a:hover {
    opacity: 0.8;
  }
}
.footer__under__logo {
  position: relative;
  left: 6.5%;
}
.footer__under__copyright {
  font-size: 11px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__under__home {
    position: absolute;
    left: 7vw;
    top: -4vw;
    width: 10vw;
  }
  .footer__under__logo {
    position: relative;
    left: 0%;
    order: 2;
  }
  .footer__under__copyright {
    margin: 0 0 2rem;
    font-size: 1rem;
    color: #fff;
    order: 1;
  }
}
#commonFooter {
  z-index: 98;
}
#commonFooterInner {
  width: 100%;
  background-color: #282828;
}
@media screen and (max-width: 768px) {
  #commonFooterInner {
    padding: 1.6rem 0 0.6rem;
  }
}

/* SP Menu */
.spCopyright {
  display: none;
}
.spMenu {
  display: none;
}
@media screen and (max-width: 768px) {
  .spMenu__btn {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    background-color: #34373e;
    transition: all 300ms ease-in-out;
  }
  .spMenu__btn div {
    position: relative;
  }
  .spMenu__btn span {
    display: block;
    height: 2px;
    background: #fff;
    position: absolute;
    width: 40%;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
  }
  .spMenu__btn span:nth-child(1) {
    top: 18px;
  }
  .spMenu__btn span:nth-child(2) {
    top: 24px;
  }
  .spMenu__btn span:nth-child(3) {
    top: 30px;
  }

  /*開閉ボタンopen時*/
  .spMenu__btn.open {
    background-color: #fff;
  }
  .spMenu__btn.open span {
    background: #34373e;
  }
  .spMenu__btn.open span:nth-child(1) {
    top: 24px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .spMenu__btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .spMenu__btn.open span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

/* Common */
#gigyaComments {
}
.content {
}
.common__headline {
  padding: 4rem 0;
  background-color: #f3fdfa;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .common__headline {
    font-size: 5.6rem;
  }
}
.common__onair {
  margin: 0 0 4rem;
  padding: 4rem 0;
  text-align: center;
  border-bottom: 4px solid #0bd79b;
}
.common__onair__text {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background-color: red;
}
@media screen and (max-width: 768px) {
  .common__onair__text {
    font-size: 4rem;
  }
}
.common__onair__date {
  margin: 1rem 0;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .common__onair__date {
    font-size: 3rem;
  }
}
.common__onair__title {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .common__onair__title {
    font-size: 3rem;
  }
}
.common__month {
  padding: 4rem 0;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .common__month {
    font-size: 6rem;
  }
}
.archive {
  display: flex;
  justify-content: center;
  align-items: center;
}
.archive__headline {
  margin: 0 2rem 0 0;
}
@media screen and (max-width: 768px) {
  .archive__headline {
    font-size: 3rem;
    margin: 0 2rem 0 0;
  }
}
.archive__select {
  overflow: hidden;
  width: 30vw;
  text-align: center;
  position: relative;
  border: 1px solid #bbb;
  border-radius: 2px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .archive__select {
    width: 50vw;
  }
}
.archive__select select {
  width: 100%;
  height: 4rem;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 1rem;
  color: #666;
}
.archive__select select::-ms-expand {
  display: none;
}
.archive__select::before {
  position: absolute;
  top: 1em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .archive__select::before {
    top: 1.6em;
    right: 1em;
  }
}

/* TOP */
.top__mvWrap {
  padding: 0 0 70px;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff 50px,
    #0bd79b 50px,
    #0bd79b 100%
  );
}
@media screen and (max-width: 768px) {
  .top__mvWrap {
    padding: 0 0 2rem;
  }
}
.top__mv {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.top__mv__onair {
  width: 65%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top__mv__onair {
    width: 100%;
  }
}
.top__mv__onair .swiper-container {
  width: 100%;
  height: 100%;
}
.top__mv__onair .swiper-button-next,
.top__mv__onair .swiper-button-prev {
  top: 38%;
}
.top__mv__onair .swiper-button-prev {
  left: 0px;
}
.top__mv__onair .swiper-button-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .top__mv__onair .swiper-button-next,
  .top__mv__onair .swiper-button-prev {
    top: 42%;
  }
  .top__mv__onair .swiper-button-prev {
    left: 1.5%;
  }
  .top__mv__onair .swiper-button-next {
    right: 1.5%;
  }
}

.top__mv__onair__image {
  width: 100%;
  margin: 0 auto 30px;
  padding: 0 6%;
}
@media screen and (max-width: 768px) {
  .top__mv__onair__image {
    width: 100%;
    margin: 0 auto 1.6rem;
    padding: 0 5%;
  }
}
.top__mv__onair__date {
  padding-left: 6%;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.top__mv__onair__title {
  padding-left: 6%;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top__mv__onair__date {
    margin: 0 auto 1rem;
    padding: 0 5vw;
    font-size: 2.6rem;
  }
  .top__mv__onair__title {
    padding: 0 5vw 2rem;
    font-size: 2.6rem;
    font-weight: bold;
  }
}
.top__mv__other {
  width: 33.33%;
}
@media screen and (max-width: 768px) {
  .top__mv__other {
    width: 90%;
    margin: 0 auto;
  }
}
.top__mv__other__topics {
  padding: 5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top__mv__other__topics {
    padding: 2rem;
  }
}
.top__mv__other__topics__headline {
  margin: 0 0 2rem;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top__mv__other__topics__headline {
    margin: 0 0 1.6rem;
    font-size: 4rem;
    text-align: center;
  }
}
.top__mv__other__topics__list__item {
  padding: 0 0 3rem;
  font-size: 1.4rem;
  line-height: 1.57;
}
@media screen and (max-width: 768px) {
  .top__mv__other__topics__list__item {
    padding: 0 0 2rem;
    font-size: 2.4rem;
  }
}
.top__mv__other__topics__list__item + .top__mv__other__topics__list__item {
  padding: 3rem 0 0;
  border-top: 1px solid #ebeef3;
}
@media screen and (max-width: 768px) {
  .top__mv__other__topics__list__item + .top__mv__other__topics__list__item {
    padding: 2rem 0 0;
  }
}
.top__mv__other__topics__list__item__date {
  color: #0bd79b;
}
.top__mv__other__topics__list__item a {
  text-decoration: underline;
  color: #509adf;
}
.top__mv__other__btn {
  position: relative;
  width: 312px;
  margin: 40px 0 20px auto;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #34373e;
  text-align: center;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .top__mv__other__btn {
    width: 100%;
    margin: 2rem auto;
    font-size: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .top__mv__other__btn:hover {
    color: #34373e;
    background-color: #fff;
  }
}
.top__mv__other__btn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  width: 40px;
  height: 0;
  border-top: 1px solid #fff;
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .top__mv__other__btn:hover::before {
    border-top: 1px solid #34373e;
  }
}
.top__mv__other__btn > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.6em 0;
}
.top__mv__other__btn > a::before {
  content: url("../img/icon_mail.svg");
  margin: 0 1em 0 0;
}
@media screen and (min-width: 769px) {
  .top__mv__other__btn:hover > a::before {
    content: url("../img/icon_mail_black.svg");
  }
}
.top__mv__other__banner {
  width: 312px;
  margin: 0 0 5px auto;
  background-color: #fff;
}
.top__mv__other__banner img {
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .top__mv__other__banner:hover img {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .top__mv__other__banner {
    width: 100%;
    margin: auto;
  }
}
.top__info {
  position: relative;
  padding: 140px 0 0;
  background: linear-gradient(90deg, #ebeef3 0px, #ebeef3 100%);
  background-position: calc((100vw - 1200px) / 2 - 50px) 390px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top__info {
    padding: 4rem 0 0;
    background-position: 10vw 57vw;
  }
}
.top__info__bgCircle {
  position: absolute;
  z-index: -1;
  top: -330px;
  left: 20px;
  animation: bgCircle 2s linear infinite;
  transform-origin: center center;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .top__info__bgCircle {
    top: -10rem;
    left: 20px;
    width: 50vw;
    height: 50vw;
  }
}
@keyframes bgCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.top__info__headline {
  position: relative;
  margin: 0 0 80px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
}
.top__info__headline::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 0;
  right: 0;
  left: 0;
  bottom: -40px;
  margin: auto;
  border-top: 1px solid #34373e;
}
@media screen and (max-width: 768px) {
  .top__info__headline {
    margin: 0 0 4rem;
    font-size: 4rem;
  }
  .top__info__headline::after {
    width: 25px;
    bottom: -2rem;
  }
}
.top__info__filter {
  display: flex;
  justify-content: center;
  margin: 0 0 60px;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .top__info__filter {
    flex-wrap: wrap;
    margin: 0 0 2rem;
    font-size: 2.2rem;
  }
}
.top__info__filter__item {
  padding: 0.6em;
  border: 1px solid #c8ced8;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .top__info__filter__item {
    margin: 0 0 0.8em 0.8em;
  }
}
.top__info__filter__item:not(.mixitup-control-active) {
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .top__info__filter__item:not(.mixitup-control-active):hover {
    border: 1px solid #0bd79b;
    background-color: #0bd79b;
    color: #fff;
  }
}
.top__info__filter__item.mixitup-control-active {
  border: 1px solid #0bd79b;
  background-color: #0bd79b;
  color: #fff;
}
.top__info__filter__item + .top__info__filter__item {
  margin: 0 0 0 0.8em;
}
@media screen and (max-width: 768px) {
  .top__info__filter__item + .top__info__filter__item {
    margin: 0 0 0.8em 0.8em;
  }
}
.top__info__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  left: 25px;
  max-width: 1250px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top__info__list {
    left: 0;
    padding: 0 5vw;
  }
}
.top__info__list__item {
  width: 200px;
  margin: 0 50px 45px 0;
}
.top__info__list__item > a * {
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .top__info__list__item > a:hover * {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .top__info__list__item {
    width: 100%;
    margin: 0 auto 2rem;
  }
  .top__info__list__item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top__info__list__item__image {
    width: 40%;
  }
  .top__info__list__item__text {
    width: 53%;
  }
}
.top__info__list__item__title {
  margin: 1em 0;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.47;
}
@media screen and (max-width: 768px) {
  .top__info__list__item__title {
    margin: 1em 0 0.4em;
    font-size: 2.8rem;
  }
}
.top__info__list__item__category {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .top__info__list__item__category {
    font-size: 2.4rem;
  }
}
.sonar_trax .top__info__list__item__category {
  color: #c3a5e1;
}
.geek_out .top__info__list__item__category {
  color: #33bedd;
}
.sonars_room .top__info__list__item__category {
  color: #9197a5;
}
.feature_topics .top__info__list__item__category {
  color: #f97399;
}
.sonar_to_the_next .top__info__list__item__category {
  color: #0bd79b;
}

/*SONARS ROOM*/
.room {
    padding: 120px 0;
}



.top__comment {
  width: 600px;
  margin: 0 auto;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .top__comment {
    width: 90%;
    padding: 4rem 0;
  }
}
.top__comment__headline {
  position: relative;
  margin: 0 0 80px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
}
.top__comment__headline::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 0;
  right: 0;
  left: 0;
  bottom: -40px;
  margin: auto;
  border-top: 1px solid #34373e;
}
@media screen and (max-width: 768px) {
  .top__comment__headline {
    margin: 0 0 4rem;
    font-size: 4rem;
  }
  .top__comment__headline::after {
    width: 25px;
    bottom: -2rem;
  }
}
.top__comment__attention {
  margin: 0 0 40px;
  font-size: 1.3rem;
}
.top__followus {
  margin: 140px auto 0;
  padding: 60px 0;
  background-color: #f3fdfa;
}
@media screen and (max-width: 768px) {
  .top__followus {
    margin: 4rem auto 0;
    padding: 3rem 0;
  }
}
.top__followus__headline {
  margin: 0 0 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top__followus__headline {
    margin: 0 0 1.6rem;
    font-size: 3rem;
  }
}
.top__followus__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top__followus__list__item {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .top__followus__list__item {
    width: 12vw;
  }
}
.top__followus__list__item:first-child {
  background-image: url("../img/icon_instagram_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.top__followus__list__item:last-child {
  background-image: url("../img/icon_twitter_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.top__followus__list__item > a > img {
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .top__followus__list__item > a:hover > img {
    opacity: 0;
  }
}
.top__followus__list__item + .top__followus__list__item {
  margin: 0 0 0 40px;
}
@media screen and (max-width: 768px) {
  .top__followus__list__item + .top__followus__list__item {
    margin: 0 0 0 2.8rem;
  }
}

/* SONAR TRAX */
.trax__list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .trax__list {
    padding: 0 5vw;
  }
}
.trax__list__item {
  margin: 0 0 4rem;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .trax__list__item {
    width: 100%;
  }
}
.trax__list__item__image {
  width: 35%;
}
.trax__list__item__text {
  padding: 0 0 0 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .trax__list__item__text {
    font-size: 3rem;
  }
}
.trax__list__item__text__title {
  margin: 0 0 2rem;
  font-weight: bold;
}

/* Lower Page */
.lowerPage__list {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lowerPage__list {
    width: 90%;
  }
}
.lowerPage__list__item {
  margin: 0 0 6rem;
}
@media screen and (max-width: 768px) {
  .lowerPage__list__item {
  }
}
.lowerPage__list__item__text {
  margin: 2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .lowerPage__list__item__text {
    font-size: 2.4rem;
  }
}

/* 190417 */
.lowerPage__list__item__text span {
    width: 300px;
    margin: 0 auto;
    padding: 15px 0;
    font-size: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
    color: #FFFFFF;
    background: #0bd79b;
    border-radius: 5px;
    -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
    -moz-border-radius: 5px;/* for Firefox 対応*/
}


/* SONAR'S ROOM */
.room__weeklyList {
  max-width: 1200px;
  margin: 4rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .room__weeklyList {
    margin: 2rem auto 0;
    padding: 0 5vw;
  }
}
.room__weeklyList__item {
  width: 23%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .room__weeklyList__item {
    width: 47.5%;
    margin: 2rem 0 0;
  }
}
.room__weeklyList__item__deekday {
  margin: 1rem 0;
  font-size: 1.6rem;
}
.room__weeklyList__item__name {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .room__weeklyList__item__deekday {
    margin: 0.6rem 0;
    font-size: 2rem;
  }
  .room__weeklyList__item__name {
    font-size: 2.4rem;
  }
}

/* MESSAGE FORM */
#hw-message {
  width: 60%;
}
#hw-message-title {
  height: 60px;
  border-bottom: 1px solid #454545;
  margin-bottom: 64px;
}

#hw-message-inner {
  text-align: left;
  width: 880px;
  margin: 0 auto;
  padding-top: 28px;
}

#hw-message-inner img {
  width: 155px;
  height: auto;
}

#hw-message {
  padding-bottom: 56px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", Arial, sans-serif;
  width: 978px;
  margin: 0 auto;
  margin-top: 50px;
}

.input-notice {
  font-size: 12px;
  color: #8b8b8b;
  position: absolute;
  top: -19px;
  left: 223px;
}

#hw-message form {
  position: relative;
}

#hw-message hr {
  border: none;
  border-bottom: 1px solid #292929;
}

.message-subtitle {
  font-weight: bold;
  font-size: 16px;
  color: #34373e;
  margin: 28px 0 0;
  text-align: center;
  position: relative;
}

#hw-message table {
  width: 100%;
  border-collapse: collapse;
  max-width: 740px;
  height: 100%;
}

#hw-message table th {
  vertical-align: top;
  padding-top: 9px;
  color: #0bd79b;
  width: 250px;
  padding-left: 30px;
  padding-right: 24px;
  text-align: right;
  font-size: 13px;
}

#hw-message table td {
  padding: 1px 0px 7px 0;
  max-width: 600px;
}

#hw-message input[type="text"],
#hw-message input[type="password"],
#hw-message input[type="tel"],
#hw-message input[type="email"],
#hw-message input[type="number"],
#hw-message table textarea {
  width: 100%;
  border: 1px solid #d1d1d1;
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* max-width: 100%; */
  /* display: block; */
  -webkit-appearance: none;
  padding: 1rem;
  border-radius: 0;
}

input::-webkit-input-placeholder {
  color: #2b2b2b;
  font-weight: bold;
}

#hw-message input[type="text"],
#hw-message input[type="password"],
#hw-message input[type="tel"],
#hw-message input[type="email"],
#hw-message input[type="number"] {
  height: 32px;
  vertical-align: top;
}

select {
  vertical-align: top;
  height: 25px;
}

select#PROG {
  vertical-align: top;
  width: 394px;
  height: 125px;
  overflow-y: hidden;
}

#hw-message table textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #d1d1d1;
}

.sub-link {
  margin-top: 3rem;
  text-align: center;
}

.sub-link a {
  line-height: 2.4em;
  color: #0bd79b;
  text-decoration: none;
  margin-right: 52px;
  font-weight: bold;
  font-size: 14px;
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .sub-link a:hover {
    opacity: 0.7;
  }
}
.sub-link br {
  display: none;
}

#hw-message #zipcode {
  width: 50%;
}

#hw-message #age {
  width: 50%;
}

.table-inner {
  width: auto;
  display: inline-block;
  height: 100%;
}

#hw-message .table-inner tr {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
  margin-top: 0;
  width: auto;
}

#hw-message .table-inner th {
  width: 57px;
  padding-left: 0;
  padding-right: 10px;
  margin: 0;
}

#hw-message #sex-table th {
  width: 40px;
}

#hw-message .table-inner td {
  padding-right: 0;
  padding-bottom: 0;
  vertical-align: middle;
}

#hw-message .table-inner label {
  vertical-align: middle;
  padding: 0 10px 0 0px;
  font-size: 16px;
}

.custom-selectbox {
  position: relative;
}

.custom-selectbox select {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 32px;
/*  opacity: 0;*/
/*  filter: alpha(opacity=0);*/
/*  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";*/
  display: block;
}

.custom-selectbox .inner {
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  border: 1px solid #34373e;
  padding: 0 12px;
  width: 50%;
  height: 32px;
  font-size: 1.2rem;
  line-height: 32px;
  background: #fff;
  padding-left: 1rem;
  margin-top: -2px;
  border: 1px solid #d1d1d1;
}

.custom-selectbox .inner:before,
.custom-selectbox .inner:after {
  content: "";
  position: absolute;
  display: block;
}

.custom-selectbox .inner:after {
  top: 50%;
  right: 7px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-top-color: #d1d1d1;
  border-width: 5px 5px 0;
}

#job-select > .inner {
  width: 50%;
}

#prefecture-table {
  float: right;
  width: 264px;
}

#prefecture-select > .inner {
  width: 50%;
}

#form-notice {
  padding: 30px 97px 25px 72px;
  color: #9e9e9e;
  text-align: left;
  line-height: 1.9em;
  font-size: 12px;
}

#form-notice a {
  color: #0bd79b;
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  #form-notice a:hover {
    opacity: 0.7;
  }
}
#form-item-1 {
  margin: 0px;
}

#form-item-2 {
  margin: 14px 0px -20px 0px;
}

#form-item-3 {
  margin: 11px 0px 0px;
}
#form-item-3 .iradio_flat-custom {
  display: inline-block;
  margin: 0.5rem 0;
}
#form-item-3 .iradio_flat-custom + label {
  margin: 0 2rem 0 0;
  font-size: 1.4rem;
}
#form-item-3 .iradio_flat-custom > input {
  position: relative !important;
  opacity: 1 !important;
  visibility: inherit !important;
}

#form-submit,
#form-reset {
  -webkit-appearance: none;
  border: 1px solid #d1d1d1;
  height: 44px;
  width: 264px;
  margin-right: 16px;
  font-size: 1.6rem;
}
#form-submit {
  background: #0bd79b;
  border: 1px solid #0bd79b;
  color: #fff;
}

.btn-base {
  cursor: pointer;
  background-color: #fff;
  background-image: url(/original/helloworld/common/images/site-btn-bg-gra.png);
  background-repeat: repeat-x;
  border: 1px solid #d1d1d1;
  background-position: top left;
  display: inline-block;
  vertical-align: middle;
  height: 49px;
  text-align: center;
  align-items: flex-start;
}

.btn-base img {
  vertical-align: middle;
}

@media screen and (min-width: 769px) {
  .btn-base:hover {
    background-image: url(/original/helloworld/common/images/site-btn-bg-gra-on.png);
    background-position: bottom left;
  }
}

#back-top-btn-area {
  text-align: center;
  margin-top: 55px;
}

#back-top-btn-area .btn-base {
  width: 266px;
  position: relative;
}

#back-top-btn-area .btn-base img {
  margin-top: 15px;
}

#button-area {
  text-align: center;
}

#thanks-message {
  background-image: url(../img/message-thanks-bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  text-align: center;
  height: 367px;
}

#thanks-message p img {
  width: 268px;
  height: auto;
}

#thanks-message p {
  padding-top: 100px;
  font-size: 15px;
}

#form-notice-strong {
  color: #d1d1d1;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

#subtitle1 .title-line {
  margin-left: 130px;
}

.title-line {
  display: block;
  border-bottom: 1px solid #454545;
  margin-left: 160px;
  position: relative;
  width: auto;
  top: -11px;
  /* margin-top: -2px; */
}

#form-notice span {
  color: #40b4b1;
}

.for-sp {
  display: none;
}

.msg-tks {
  text-align: center;
}

.tks-e {
  font-size: 3em;
}

@media screen and (max-width: 767px) {
  .for-sp {
    margin-top: 2px;
    display: inline;
    color: #8b8b8b;
    position: absolute;
    font-size: 9px;
  }
  .input-notice {
    display: none;
  }
  select#PROG {
    vertical-align: top;
    height: auto;
    width: 300px;
  }
  #hw-message table textarea {
    width: 300px;
  }
  .sub-link a {
    font-size: 10px;
    margin-right: 5px;
  }
  .sub-link br {
    display: none;
  }
  #hw-message-title {
    height: 36px;
    margin-bottom: 8px;
  }
  #hw-message-inner {
    width: 320px;
    /* padding-top: 27px; */
    box-sizing: border-box;
    padding: 16px 10px 0 14px;
  }
  #hw-message-inner img {
    width: 115px;
  }
  #hw-message {
    width: auto;
  }
  #hw-message {
    padding-bottom: 20px;
  }
  #hw-message table,
  #hw-message table tbody,
  #hw-message table th,
  #hw-message table tr,
  #hw-message table th,
  #hw-message table td,
  #hw-message .table-inner {
    display: block;

    width: 300px;
    margin: 0 auto;
  }
  .ie9 #hw-message table th,
  .ie9 #hw-message table td {
    float: left;
  }
  #hw-message table {
    /* padding: 10px; */
    box-sizing: border-box;
  }
  #hw-message table th {
    padding: 0;
    text-align: left;
    width: auto;
  }
  #hw-message table td {
    width: auto;
    padding-right: 0;
  }
  #hw-message .table-inner table {
    padding: 0;
    width: auto;
  }
  #button-area {
    padding: 0 10px;
    width: 300px;
    margin: 0 auto;
  }
  #form-submit,
  #form-reset {
    width: 100%;
    margin-bottom: 20px;
  }
  #hw-message table th {
    font-size: 12px;
    padding-bottom: 6px;
    /* text-align: left; */
  }
  #hw-message input[type="text"],
  #hw-message input[type="password"],
  #hw-message input[type="tel"],
  #hw-message input[type="email"],
  #hw-message input[type="number"] {
    height: 25px;
    max-width: 9999px;
    width: 300px;
  }
  #hw-message form {
    margin-top: 5px;
  }
  #hw-message form hr {
    display: none;
  }
  #form-item-2 {
    margin-top: 7px;
  }
  #hw-message table td {
    padding-bottom: 10px;
  }
  .sub-link {
    padding-top: 19px;
    text-align: center;
    margin-left: 0;
    margin-top: -30px;
    margin-bottom: 20px;
  }
  .sub-link br {
    display: none;
  }
  #prefecture-table {
    display: block;
    float: none;
    padding-top: 10px;
  }
  #sex-table tbody {
    width: auto !important;
  }
  .title-line {
    top: -7px;
  }
  #prefecture-select > .inner {
    width: 300px;
  }
  #form-item-3 {
    margin-top: 5px;
  }
  #hw-message #sex-table {
    display: inline-block;
    padding-left: 20px;
    margin-top: -19px;
    width: 170px;
  }
  #hw-message #sex-table th {
    padding-bottom: 2px;
  }
  #hw-message #sex-table td {
    /* padding-left: 17px; */
    padding-top: 5px;
    width: auto;
  }
  .message-subtitle {
    margin: 0 auto;
    width: 300px;
    padding-right: 0;
    box-sizing: border-box;
    /* left: 10px; */
    font-size: 13px;
    margin-bottom: 10px;
  }
  .custom-selectbox .inner {
    line-height: 30px;
    height: 32px;
    margin-top: 0;
  }
  #form-notice {
    padding: 15px 10px 45px;
    width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #thanks-message p img {
    width: 186px;
  }
  #thanks-message p {
    font-size: 11px;
    padding-top: 44px;
  }
  #thanks-message {
    height: auto;
    padding-bottom: 19px;
    background-size: contain;
  }
  #job-select > .inner {
    width: 300px;
  }
  #subtitle1 .title-line {
    margin-left: 96px;
  }
  .title-line {
    margin-left: 124px;
    /* margin-top: -2px; */
  }
}
.message__thanks {
  padding: 8rem 0;
  text-align: center;
}
.message__thanks__thankyou {
  font-size: 5rem;
}
.message__thanks__thankyouJP {
  margin: 2rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .message__thanks__thankyou {
    font-size: 8rem;
  }
  .message__thanks__thankyouJP {
    font-size: 2.6rem;
  }
}
.message__thanks__btn > a {
  position: relative;
  display: block;
  width: 270px;
  margin: 0 auto;
  padding: 1.6rem 0;
  color: #fff;
  background-color: #0bd79b;
  border: 2px solid #0bd79b;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .message__thanks__btn > a {
    width: 60vw;
    font-size: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .message__thanks__btn > a:hover {
    background-color: #fff;
    color: #0bd79b;
  }
}
.message__thanks__btn > a:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 2rem;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 769px) {
  .message__thanks__btn > a:hover:after {
    border-top: 1px solid #0bd79b;
    border-right: 1px solid #0bd79b;
  }
}

/* extra settings */
#gigyaShare > a > img,
.top__comment__attention a > img,
#ft-radiko > a > img {
  width: auto;
}
