@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */
/* ==========================================================
	共通
========================================================== */
/*コンテンツ背景*/
.wrapper {
  font-size: 14px;
  color: #331b0a;
  background-color: #fff9e6;
}
@media screen and (min-width: 768px) {
  .wrapper {
    font-size: 2rem;
    font-size: max(2rem, 14px);
  }
  .wrapper .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.wrapper section > *:not(:last-child) {
  margin-bottom: 6rem;
}
.wrapper a {
  color: #331b0a;
}
.wrapper p a {
  display: inline;
  word-break: break-all;
  text-decoration: underline;
}
.wrapper p a:hover {
  opacity: 0.7;
}

.onlyPC {
  display: block;
}

.onlySP {
  display: none;
}

@media screen and (max-width: 767px) {
  .onlyPC {
    display: none;
  }
  .onlySP {
    display: block;
  }
}
/* ==========================================================
	header
========================================================== */
.nav {
  padding: 2em 0;
  background: repeating-linear-gradient(135deg, #b4e8d9, #b4e8d9 8px, #c0ecdf 8px, #c0ecdf 16px);
}
.nav ul {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.nav ul li {
  margin: 0 1.5% 3%;
  width: 47%;
}
@media screen and (min-width: 768px) {
  .nav ul li {
    margin: 0 calc(32 / 1024 * 100%) calc(32 / 1024 * 100%) 0;
    width: calc(320 / 1024 * 100%);
  }
  .nav ul li:nth-child(3n), .nav ul li:last-child {
    margin-right: 0;
  }
  .nav ul li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
.nav ul li:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.nav ul li a {
  position: relative;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 100%;
  font-weight: 900;
  padding: 1em;
  letter-spacing: 0.12em;
  background: #ffffff;
  border-radius: 3em;
  outline: 2px solid currentColor;
  outline-offset: -4px;
}
.nav ul li a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: auto;
  right: 1em;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
  border-top: 0.6em solid currentColor;
  border-bottom: 0;
  border-radius: 0.2em;
}
@media screen and (min-width: 768px) {
  .nav ul li a::after {
    right: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  .nav ul li a {
    font-size: 120%;
  }
  .nav ul li a:hover {
    color: #ffffff !important;
    outline-color: #ffffff;
  }
  .nav ul li a:hover::after {
    bottom: 0;
    border-top-color: #ffffff;
  }
}
.nav ul li.nav_present a {
  color: #f2b200;
}
@media screen and (min-width: 768px) {
  .nav ul li.nav_present a:hover {
    background-color: #f2b200;
  }
}
.nav ul li.nav_outline a {
  color: #f97164;
}
@media screen and (min-width: 768px) {
  .nav ul li.nav_outline a:hover {
    background-color: #f97164;
  }
}
.nav ul li.nav_backnumber a {
  color: #4dc8b1;
}
@media screen and (min-width: 768px) {
  .nav ul li.nav_backnumber a:hover {
    background-color: #4dc8b1;
  }
}

/*放送日時*/
.oa_time {
  text-align: center;
  padding: 0.6em 0;
  background: url(../images/common/bg_pattern.jpg) repeat-x center/auto 100%;
}
.oa_time p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-shadow: 0.1em 0.1em 0 #ffffff, 0.1em -0.1em 0 #ffffff, -0.1em 0.1em 0 #ffffff, -0.1em -0.1em 0 #ffffff, 0.1em 0px 0 #ffffff, 0px 0.1em 0 #ffffff, -0.1em 0px 0 #ffffff, 0px -0.1em 0 #ffffff;
}
.oa_time p em {
  font-style: normal;
  font-size: 140%;
}

/* ==========================================================
	コンテンツ
========================================================== */
.contents {
  padding-bottom: 8rem;
}
.contents > * {
  margin: 8rem 0 0;
  border: 0 !important;
}
.contents > section {
  padding: 8rem calc(60 / 1024 * 100%);
  border-radius: 6rem;
}

.color01 {
  color: #9d3e00;
}

.color02 {
  color: #4dc8b1;
}

/*バナー*/
.banner_list li {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .banner_list li {
    width: 48%;
  }
  .banner_list li:not(:nth-child(-n+2)) {
    margin-top: 1em;
  }
}

.box-white {
  padding: 6rem 4.4247787611%;
  background-color: #ffffff;
  border-radius: 3rem;
}
.box-white > *:not(:last-child) {
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .box-column02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.box-column02 > * {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .box-column02 > * {
    width: 48.5436893204%;
  }
}
.box-column02 > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .box-column02 > *:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.box-column02 figure figcaption {
  margin-bottom: 0.3em;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  color: #9d3e00;
}
.box-column02 figure img {
  border-radius: 1.6rem;
}

.ttl_h2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  letter-spacing: 0.08em;
}
.ttl_h2::before, .ttl_h2::after {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 0.8em;
  width: 2.944em;
  height: 0.444em;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 106 16"><path style="fill-rule: evenodd;" d="M847,4056a8,8,0,1,1-8,8A8,8,0,0,1,847,4056Zm-36,2a6,6,0,1,1-6,6A6,6,0,0,1,811,4058Zm-31,1a5,5,0,1,1-5,5A5,5,0,0,1,780,4059Zm-27,1a4,4,0,1,1-4,4A4,4,0,0,1,753,4060Z" transform="translate(-749 -4056)"/></svg>');
          mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 106 16"><path style="fill-rule: evenodd;" d="M847,4056a8,8,0,1,1-8,8A8,8,0,0,1,847,4056Zm-36,2a6,6,0,1,1-6,6A6,6,0,0,1,811,4058Zm-31,1a5,5,0,1,1-5,5A5,5,0,0,1,780,4059Zm-27,1a4,4,0,1,1-4,4A4,4,0,0,1,753,4060Z" transform="translate(-749 -4056)"/></svg>');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: currentColor;
}
.ttl_h2::after {
  margin: 0 0 0 0.8em;
  transform: scale(-1, 1);
}

.subttl {
  position: relative;
  display: inline-block;
  padding: 0.1em 1em;
  color: #ffffff;
  font-weight: 700;
  border-radius: 3em;
  background: #f97164;
}

/* =====================================================================
*    present
* =================================================================== */
.present {
  background-color: #ffe29e;
}
.present-group > *:not(:last-child) {
  margin-bottom: 3rem;
}
.present_title {
  margin-top: 0.5em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 180%;
  font-weight: 900;
}
.present_rerun {
  text-align: center;
  padding: 4rem 4.854368932%;
  font-size: 110%;
  background-color: #fff9e6;
  border: 0.4rem solid #f2b200;
  border-radius: 3rem;
}
.present_rerun em {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 110%;
}
.present_rerun a {
  color: #f97164;
}
.present .application_text {
  font-size: 110%;
}
.present .application_text em {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 109%;
}
.present .notes {
  font-size: 90%;
}
.present .notes_title {
  display: inline-block;
  padding: 0.1em 1em;
  color: #9d3e00;
  border-radius: 3em;
  background-color: #ffe29e;
  font-weight: 700;
}
.present .notes_list li {
  position: relative;
  padding-left: 1em;
}
.present .notes_list li::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.65em;
  left: 0;
  width: 0.45em;
  height: 0.45em;
  background-color: #ffe29e;
  border-radius: 50%;
}
.present .notes_list li:not(:last-child) {
  margin-bottom: 0.5em;
}

/* =====================================================================
    outline
======================================================================*/
.outline {
  background-color: #ffdedb;
}
.outline .ttl_h2 {
  color: #4dc8b1;
}
.outline p {
  font-weight: 700;
}
.outline figure img {
  border-radius: 4rem;
}

/* =====================================================================
    backnumber
======================================================================*/
.backnumber {
  background-color: #caebe1;
}
.backnumber .ttl_h2 {
  color: #f2b200;
}
.backnumber-btn {
  font-size: 109%;
}
.backnumber-btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  border: 0.4rem solid #f2b200;
  border-radius: 3em;
  background-color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .backnumber-btn a {
    flex-direction: row;
  }
}
.backnumber-btn a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: auto;
  right: 1em;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.45em solid transparent;
  border-bottom: 0.45em solid transparent;
  border-left: 0.7em solid #f2b200;
  border-right: 0;
  border-radius: 0.2em;
}
@media screen and (min-width: 768px) {
  .backnumber-btn a::after {
    right: 2.5em;
  }
}
@media screen and (min-width: 768px) {
  .backnumber-btn a:hover {
    border-color: #ffffff;
    background-color: #f2b200;
  }
  .backnumber-btn a:hover::after {
    border-left-color: #ffffff;
  }
}
.backnumber .oa_number {
  display: inline-block;
  margin-bottom: 0.3em;
  padding: 0 1.3em;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2em;
  border-radius: 3em;
  background-color: #4dc8b1;
}
@media screen and (min-width: 768px) {
  .backnumber .oa_number {
    margin: 0 1em 0 0;
  }
}

/* =====================================================================
    diary
======================================================================*/
.diary {
  background-color: #ffe29e;
}
.diary .ttl_h2 {
  color: #f97164;
}
.diary .movie_box + p {
  margin-top: 2rem;
  font-weight: 700;
}
.diary-head p {
  text-align: center;
  font-size: 109%;
}
.diary p {
  font-weight: 700;
}

/* =====================================================================
    sns
======================================================================*/
.sns-btn {
  position: relative;
  text-align: center;
  padding: 1.66em 1em;
  width: 100%;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-color: #ffffff;
  border-radius: 3em;
  border: 0.4rem solid #f97164;
}
.sns-btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: auto;
  right: 1em;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.45em solid transparent;
  border-bottom: 0.45em solid transparent;
  border-left: 0.7em solid #f97164;
  border-right: 0;
  border-radius: 0.2em;
}
@media screen and (min-width: 768px) {
  .sns-btn::after {
    right: 2.5em;
  }
}
@media screen and (min-width: 768px) {
  .sns-btn:hover {
    color: #ffffff;
    border-color: #f2b200;
    background-color: #f97164;
  }
  .sns-btn:hover::after {
    border-left-color: #ffffff;
  }
  .sns-btn:hover span {
    border-bottom-color: #ffffff;
  }
}
.sns-btn span {
  border-bottom: 0.25em dotted #f2b200;
  transition: 0.3s ease border-bottom;
}

/* =====================================================================
    backnumber oa
======================================================================*/
.backnumber_box {
  position: relative;
  padding: 3rem;
  border: 0.4rem solid #f2b200;
  border-radius: 3em;
  background-color: #ffffff;
  text-decoration: none;
}

.backnumber_title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #331b0a;
  font-style: normal;
  font-weight: 900;
  font-size: 150%;
  text-align: center;
  border-bottom: 0.25em dotted #331b0a;
  transition: 0.3s ease border-bottom;
  margin-bottom: 1em;
}

.backnumber_box_title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 120%;
  font-weight: 600;
  color: #f2b200;
  margin-bottom: 0.5em;
}

.backnumber_box a {
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #f97164;
  font-weight: 600;
}

.backnumber_box a small {
  font-size: 0.8em;
  text-decoration: none;
}

.backnumber_box_text {
  line-height: 1.7;
}/*# sourceMappingURL=layout.css.map */