* {
  box-sizing: border-box;
}

li {
  list-style: none;
}

audio {
  width: 100%;
}

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-size: 100%;
  padding: 0;
}

a {
  color: inherit;
}

img {
  vertical-align: top;
}

svg {
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  font-size: 1rem;
  background-color: #eee;
}

.p-menu_list, .bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.l-content-wrap {
  color: #df1f1f;
  padding-bottom: 10rem;
}

.l-inner {
  max-width: 104rem;
  margin: auto;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 4rem;
    max-width: none;
  }
}

.l-flex {
  display: flex;
}

.p-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 85.7rem;
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 112rem;
  }
}
.p-header_logo {
  text-align: center;
  color: #fff;
  margin: 15rem auto auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-header_logo {
    margin: 17.8rem auto auto;
    padding-bottom: 0;
  }
}
.p-header_logo img {
  width: 41.4rem;
}
@media screen and (max-width: 768px) {
  .p-header_logo img {
    width: 53.1rem;
  }
}
.p-header_logo span {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-header_logo span {
    font-size: 2.4rem;
  }
}
.p-header_bg {
  clip-path: polygon(50% 0, 100% 0, 100% 50%, 100% 76%, 0 100%, 0 12%);
}
@media screen and (max-width: 768px) {
  .p-header_bg {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 88%, 0 100%, 0 0);
  }
}

.p-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 15;
}
@media screen and (max-width: 768px) {
  .p-nav {
    height: 10em;
  }
}
.p-nav_list {
  display: flex;
  padding-left: 1.5rem;
  flex: 1 1 auto;
  align-items: center;
  gap: 1.9rem;
}
@media screen and (max-width: 768px) {
  .p-nav_list {
    padding-left: 3em;
  }
}
@media screen and (max-width: 768px) {
  .p-nav_item {
    display: none;
  }
}
.p-nav a {
  display: block;
}
.p-nav_link-top {
  width: 11.3rem;
}
.p-nav_link-jfn {
  width: 3.4rem;
}
.p-nav_link-podcast {
  width: 12.8rem;
}
.p-nav_btn {
  height: 100%;
  width: 6rem;
  height: 6rem;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10;
  background: #000;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-nav_btn {
    padding: 0;
    width: 10rem;
    height: 10rem;
    gap: 1.2em;
  }
}
.p-nav_btn span {
  width: 35px;
  height: 2px;
  background: #fff;
  transition: all 0.2s;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-nav_btn span {
    width: 6.8em;
    height: 3px;
  }
}
@media screen and (max-width: 600px) {
  .p-nav_btn span {
    height: 2px;
  }
}
.p-nav_btn::before, .p-nav_btn::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: #fff;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .p-nav_btn::before, .p-nav_btn::after {
    width: 6.8em;
    height: 3px;
  }
}
@media screen and (max-width: 600px) {
  .p-nav_btn::before, .p-nav_btn::after {
    height: 2px;
  }
}
.p-nav_btn.is-active {
  background-color: #df1f1f;
}
.p-nav_btn.is-active span {
  opacity: 0;
}
.p-nav_btn.is-active::before {
  transform: translate(0%, 8px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-nav_btn.is-active::before {
    transform: translate(0%, 1.45em) rotate(45deg);
  }
}
.p-nav_btn.is-active::after {
  transform: translate(0%, -8px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-nav_btn.is-active::after {
    transform: translate(0%, -1.45em) rotate(-45deg);
  }
}

.p-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #eee;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
  color: #df1f1f;
  padding: 3rem 4.5em 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-menu {
    padding: 12.8em 2.5rem 0;
  }
}
.p-menu.is-active {
  visibility: visible;
  opacity: 1;
}
.p-menu_logo {
  width: 28.5rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-menu_logo {
    width: 37.6em;
    min-width: auto;
  }
}
.p-menu_list {
  margin-top: 2rem;
}
.p-menu_item {
  border-bottom: 1px dotted currentColor;
}
.p-menu_item a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10rem;
  padding-left: 0.2rem;
  padding-right: 0.5rem;
}
.p-menu_item a img {
  height: 5.2rem;
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-menu_item a {
    padding: 0 0.4rem;
    height: 9rem;
  }
}
.p-menu_item a::after {
  content: "";
  display: block;
  width: 28px;
  height: 24px;
  background: url(/nichiyo_daigaku/img/icon_arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-menu_item a::after {
    width: 2.1333333333vw;
    height: 2.6666666667vw;
  }
}

.p-footer {
  position: relative;
  border-top: 1px solid #df1f1f;
  padding-top: 0.4rem;
  background-color: #eee;
}
@media screen and (min-width: 960px) {
  .p-footer {
    padding-top: 7px;
    background-color: #fff;
  }
}
.p-footer .footer_listen {
  border-top: 1px solid #df1f1f;
}
.p-footer_inner {
  color: #fff;
  height: 6.9rem;
  background-color: #df1f1f;
  margin-top: 4.6rem;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-footer_inner {
    margin-top: 0;
    height: auto;
    display: block;
    text-align: center;
    padding-bottom: 3.4rem;
    font-size: 2rem;
  }
}
.p-footer_sns {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1rem;
}
.p-footer_sns li {
  width: 4.4rem;
}
.p-footer_sns img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 959px) {
  .p-footer_sns {
    position: static;
    height: auto;
    padding: 2.5rem 0;
    justify-content: center;
    gap: 2rem;
  }
  .p-footer_sns li {
    width: 8.2rem;
    min-width: 44px;
  }
}
.p-footer_totop {
  display: none;
  right: 2rem;
  position: fixed;
  bottom: 8rem;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .p-footer_totop {
    width: 8.2rem;
    height: 8.2rem;
    bottom: 2rem;
  }
}
.p-footer_totop i {
  font-size: 2rem;
}

.c-btn {
  color: #df1f1f;
  letter-spacing: 0.1em;
  width: 28rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  font-size: 1.6rem;
  margin: auto;
  line-height: 1;
  font-weight: 600;
  transition: opacity 0.2s;
  background: url(/nichiyo_daigaku/img/bg_btn.png) center/100% no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn {
    background-image: url(/nichiyo_daigaku/img/bg_btn_sp.png);
    font-size: 2.8rem;
    width: 49.6rem;
    height: 10.6rem;
  }
}

@media (hover: hover) {
  a.c-btn:hover, button.c-btn:hover {
    opacity: 0.8;
  }
}

.noscroll {
  overflow: hidden;
}

.c-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-ttl_bg {
  width: 14.3rem;
}
@media screen and (max-width: 768px) {
  .c-ttl_bg {
    width: 20.2rem;
  }
}
.c-ttl_img {
  margin-top: 0.3rem;
  height: 6.4rem;
  width: auto;
}
@media screen and (max-width: 768px) {
  .c-ttl_img {
    height: 9rem;
  }
}
.c-ttl img {
  display: inline-block;
}
.c-ttl_text {
  font-size: 1.5rem;
  display: block;
  margin-top: 0.6rem;
}
@media screen and (max-width: 768px) {
  .c-ttl_text {
    font-size: 2.3rem;
    margin-top: 1rem;
  }
}

.p-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #df1f1f;
}

.p-sec {
  position: relative;
}

.icon {
  padding: 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .icon {
    padding: 0 4.8rem;
  }
}
.icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .icon::before {
    left: 5rem;
  }
}
.icon-message::before {
  background: url(/nichiyo_daigaku/img/icon_message.png) center/contain no-repeat;
  width: 2.8rem;
  height: 1.8rem;
}
@media screen and (max-width: 768px) {
  .icon-message::before {
    width: 4.2rem;
    height: 3rem;
  }
}
.icon-radiko::before {
  background: url(/nichiyo_daigaku/img/icon_radiko.png) center/contain no-repeat;
  width: 2rem;
  height: 2.1rem;
}
@media screen and (max-width: 768px) {
  .icon-radiko::before {
    width: 3.5rem;
    height: 3.7rem;
  }
}
.icon-mortarboard::before {
  background: url(/nichiyo_daigaku/img/icon_mortarboard.png) center/contain no-repeat;
  width: 2.6rem;
  height: 2.2rem;
}
@media screen and (max-width: 768px) {
  .icon-mortarboard::before {
    width: 4.5rem;
    height: 3.8rem;
  }
}

.p-about {
  font-size: 1.6rem;
  margin-top: -4.4rem;
  padding-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-about {
    margin: 0;
    padding: 1rem 0 6.4rem;
    font-size: 2.8rem;
  }
}
.p-about .l-inner {
  max-width: 89rem;
}
.p-about_cnt {
  justify-content: space-between;
  margin-top: 2.4rem;
  gap: 1.5rem;
  align-items: center;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .p-about_cnt {
    display: block;
    margin-top: 4rem;
  }
}
.p-about_personality {
  width: 26.8rem;
  border: 2px solid #df1f1f;
  position: relative;
}
.p-about_lead {
  line-height: 2.3;
  text-align: center;
  margin-left: auto;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-about_lead {
    text-align: left;
    line-height: 1.6;
    letter-spacing: normal;
  }
}
.p-about_btn {
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-about_btn {
    flex-direction: column;
    margin-top: 3rem;
    align-items: center;
  }
}
.p-about_btn .c-btn {
  margin: 0;
}

.p-personality {
  width: 27rem;
  order: 2;
  padding: 0.2rem;
  background-color: #df1f1f;
  position: relative;
  font-weight: 600;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-personality {
    width: 49.6rem;
    margin: 6rem auto 0;
  }
}
.p-personality_group {
  font-size: 1.3rem;
  width: 2.5rem;
  left: 0;
  writing-mode: sideways-rl;
  padding: 0.6rem 0;
}
@media screen and (max-width: 768px) {
  .p-personality_group {
    font-size: 2.47rem;
    width: 4.5rem;
    height: 15.6rem;
    padding: 1.4rem 0 0;
  }
}
.p-personality_name {
  font-size: 2.6rem;
  width: 4.3rem;
  padding: 0.8rem 0;
  left: 2.3rem;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
  .p-personality_name {
    font-size: 4.8rem;
    width: 8rem;
    left: 4.4rem;
    height: 19.3rem;
    padding: 2rem 0 0;
  }
}
.p-personality span {
  position: absolute;
  top: 0;
  border: 2px solid #df1f1f;
  background-color: #fff;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}

.p-onair {
  padding-top: 19.6rem;
  padding-bottom: 18rem;
}
@media screen and (max-width: 768px) {
  .p-onair {
    padding: 13rem 0 10.4rem;
  }
}
.p-onair_bg {
  clip-path: polygon(100% 0, 100% 0, 100% 50%, 100% 87%, 0 100%, 0 13%);
}
@media screen and (max-width: 768px) {
  .p-onair_bg {
    clip-path: polygon(100% 0, 100% 0, 100% 50%, 100% 96.7%, 0 100%, 0 11.2vw);
    max-height: 254rem;
  }
}
.p-onair .l-inner {
  position: relative;
}
.p-onair .c-ttl {
  color: #fff;
}
.p-onair .c-ttl_img {
  margin-top: 0;
}
.p-onair_lists {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 3rem 0;
  margin-top: 3.8rem;
}
@media screen and (max-width: 768px) {
  .p-onair_lists {
    flex-direction: column;
    margin-top: 3.4rem;
  }
}
.p-onair_item {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .p-onair_item {
    width: 100%;
  }
}
.p-onair .c-btn {
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .p-onair .c-btn {
    margin-top: 5rem;
    margin-bottom: -3.4rem;
  }
}

.p-card {
  position: relative;
  display: block;
  position: relative;
  background: url(/nichiyo_daigaku/img/bg_item_bottom.png) bottom center/100% no-repeat;
  height: 100%;
  padding: 5% 0 6%;
}
@media screen and (max-width: 768px) {
  .p-card {
    padding: 5rem 0 11rem;
    background-image: url(/nichiyo_daigaku/img/bg_item_bottom_sp.png);
  }
}
.p-card::before, .p-card::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
}
.p-card::before {
  background: url(/nichiyo_daigaku/img/bg_item_head.png) top center/100% no-repeat;
  top: 0;
  left: 0;
  padding-top: 5%;
}
@media screen and (max-width: 768px) {
  .p-card::before {
    padding-top: 5rem;
    background-image: url(/nichiyo_daigaku/img/bg_report_head_sp.png);
  }
}
.p-card:after {
  background: url(/nichiyo_daigaku/img/bg_logo.png) center/100% no-repeat;
  bottom: 5%;
  right: 5%;
  width: 14%;
  padding-top: 14%;
}
@media screen and (max-width: 768px) {
  .p-card:after {
    width: 11.8rem;
    padding-top: 10.7rem;
    bottom: 3rem;
  }
}
.p-card_inner {
  height: 100%;
  padding: 0 2rem;
  background: url(/nichiyo_daigaku/img/bg_item_body.png) top center/100%;
}
@media screen and (max-width: 768px) {
  .p-card_inner {
    padding: 0 3.5rem;
    background-image: url(/nichiyo_daigaku/img/bg_report_body_sp.png);
  }
}
.p-card_head {
  justify-content: space-between;
  font-weight: bold;
  border-bottom: 2px solid #df1f1f;
  padding: 0 0.5rem 1rem;
  line-height: 1.6;
  align-items: flex-end;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-card_head {
    padding: 0 0.5rem 1.8rem;
  }
}
.p-card_ttl {
  font-size: 1.6rem;
  padding-left: 0.2rem;
}
@media screen and (max-width: 768px) {
  .p-card_ttl {
    font-size: 2.8rem;
  }
}
.p-card_date {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-card_date {
    font-size: 3rem;
  }
}
.p-card_cnt {
  padding-top: 2rem;
  gap: 1.4rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-card_cnt {
    flex-direction: column;
    padding: 3rem 2rem 0;
    gap: 2.4rem;
  }
}
.p-card_thumb {
  flex: 0 0 14.7rem;
  height: 14.7rem;
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .p-card_thumb {
    width: 49rem;
    height: 30rem;
    margin: auto;
  }
}
.p-card_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-card_text {
  flex: 1 1 auto;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-card_text {
    font-size: 2.6rem;
    line-height: 1.75;
  }
}

@media screen and (max-width: 768px) {
  .p-bnr-podcast {
    margin-bottom: 8rem;
  }
}
.p-bnr-podcast_item {
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #14579b;
  max-width: 86rem;
  width: 86%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-bnr-podcast_item {
    border: none;
    border-radius: 0;
    width: 49.6rem;
    padding: 0;
  }
}
.p-bnr-podcast img {
  width: 100%;
}

.p-bnr {
  margin-top: 8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-bnr {
    margin-top: 6rem;
  }
}
.p-bnr_lists {
  flex-direction: column;
  gap: 8.4rem;
}
@media screen and (max-width: 768px) {
  .p-bnr_lists {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 7.5rem 6.6rem;
    justify-content: center;
  }
}
.p-bnr_item {
  width: 32.2rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-bnr_item {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-bnr .bnr-tfm {
    width: 29rem;
    margin-left: -1.6rem;
  }
  .p-bnr .bnr-nu {
    width: 34rem;
  }
  .p-bnr .bnr-jfn {
    width: 10.7rem;
  }
}

.p-bnr-float {
  position: fixed;
  right: 0;
  top: 13.6rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-bnr-float {
    position: absolute;
    top: 88.5rem;
    width: 100%;
  }
  .p-bnr-float_lists {
    display: flex;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-bnr-float_lists {
    gap: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bnr-float_item {
    width: 100%;
  }
}
.p-bnr-float .c-btn {
  width: 6.3rem;
  height: 21.3rem;
  background-image: url(/nichiyo_daigaku/img/bg_btn_02.png);
  writing-mode: sideways-rl;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-bnr-float .c-btn {
    writing-mode: unset;
    width: auto;
    height: 9.7rem;
    background: none;
    display: flex;
    align-items: center;
    font-size: 2.6rem;
    background: #fff;
    padding: 0 2.3rem;
    justify-content: flex-start;
    letter-spacing: normal;
    white-space: nowrap;
  }
}
.p-bnr-float .icon::before {
  position: static;
}
@media screen and (min-width: 769px) {
  .p-bnr-float .icon::before {
    position: static;
  }
  .p-bnr-float .icon {
    padding: 3.7rem 0 0;
    justify-content: flex-start;
  }
  .p-bnr-float .icon-message::before {
    margin: 0 0 2rem;
  }
  .p-bnr-float .icon-radiko::before {
    margin: 0 0 1.1rem;
  }
  .p-bnr-float .icon-mortarboard::before {
    margin-bottom: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .p-bnr-float .icon::before {
    transform: none;
    margin-right: 1.7rem;
  }
  .p-bnr-float .icon-message::before {
    width: 4.4rem;
    height: 3.1rem;
  }
  .p-bnr-float .icon-radiko::before {
    width: 3.3rem;
    height: 3.3rem;
  }
  .p-bnr-float .icon-mortarboard::before {
    width: 4.7rem;
    height: 4rem;
  }
}

.l-lower {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .l-lower {
    font-size: 2.6rem;
  }
}
.l-lower .p-sec {
  margin-top: -4.1rem;
}
@media screen and (max-width: 768px) {
  .l-lower .p-sec {
    margin-top: 0;
    padding-top: 1rem;
  }
}
.l-lower .c-btn {
  margin-top: 5.2rem;
}

.p-onair-detail .l-inner {
  max-width: 94.5rem;
}

.p-report {
  padding: 6% 0 15%;
  position: relative;
  margin: 5.2rem auto;
}
@media screen and (max-width: 768px) {
  .p-report {
    padding: 5rem 0 15rem;
  }
}
.p-report::before, .p-report::after {
  display: block;
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
}
.p-report::before {
  background: url(/nichiyo_daigaku/img/bg_report_head.png) top center/100% no-repeat;
  top: 0;
  padding-top: 6%;
}
@media screen and (max-width: 768px) {
  .p-report::before {
    padding-top: 5rem;
    background-image: url(/nichiyo_daigaku/img/bg_report_head_sp.png);
  }
}
.p-report:after {
  background: url(/nichiyo_daigaku/img/bg_report_bottom.png) bottom center/100% no-repeat;
  bottom: 0;
  padding-top: 15%;
}
@media screen and (max-width: 768px) {
  .p-report:after {
    padding-top: 15rem;
    background-image: url(/nichiyo_daigaku/img/bg_report_bottom_sp.png);
  }
}
.p-report_head {
  gap: 2rem;
  padding: 0 0.5rem 2.2rem;
}
.p-report_img {
  width: 57rem;
  margin: 4rem auto 0;
  text-align: center;
}
.p-report_inner {
  padding: 0 5rem;
  background: url(/nichiyo_daigaku/img/bg_report_body.png) center/100% repeat-y;
}
@media screen and (max-width: 768px) {
  .p-report_inner {
    background-image: url(/nichiyo_daigaku/img/bg_report_body_sp.png);
  }
}
.p-report_body {
  margin-top: 3.8rem;
  line-height: 2;
}
.p-report_body p, .p-report_body h1, .p-report_body h2, .p-report_body h3, .p-report_body h4, .p-report_body h5, .p-report_body h6 {
  overflow-wrap: break-word;
}
.p-report_body h1, .p-report_body h2, .p-report_body h3 {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}
.p-report_body h1 {
  font-size: 200%;
}
.p-report_body h2 {
  font-size: 160%;
}
.p-report_body h3 {
  font-size: 140%;
}
.p-report_body h4 {
  font-size: 100%;
}
.p-report_body h5 {
  font-size: 90%;
}
.p-report_body h6 {
  font-size: 80%;
}
.p-report_body p, .p-report_body img figure {
  display: block;
  margin-top: 4rem;
}
.p-report_body img {
  max-width: 57rem;
  display: block;
  margin: 4rem auto 0;
}
.p-report_body p {
  letter-spacing: 0.08em;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .p-report_body p {
    line-height: 1.8;
  }
}
.p-report_body a {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .p-report .p-card_ttl {
    font-size: 2.5rem;
  }
  .p-report .p-card_date {
    font-size: 2rem;
  }
}
.p-report_pagination {
  margin-top: 6rem;
}

.c-pagination {
  color: #df1f1f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagination__prev {
  display: block;
  border-left: 5px solid #df1f1f;
  border-bottom: 5px solid #df1f1f;
  width: 15px;
  aspect-ratio: 1/1;
  margin-right: 5px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .c-pagination__prev {
    width: 16px;
    border-width: 4px;
  }
}
.c-pagination__next {
  display: block;
  border-right: 5px solid #df1f1f;
  border-bottom: 5px solid #df1f1f;
  width: 15px;
  aspect-ratio: 1/1;
  margin-left: 5px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c-pagination__next {
    width: 16px;
    border-width: 4px;
  }
}
.c-pagination__number {
  display: block;
  font-size: 14px;
  color: #fff;
  border: 1px solid #df1f1f;
  padding: 7px 5px;
  margin: 0 3px;
  background-color: #df1f1f;
  width: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-pagination__number {
    font-size: 12px;
    margin: 0 3px;
    width: 28px;
  }
}
.c-pagination__number.is-active {
  font-weight: 500;
  color: #df1f1f;
  background-color: #fff;
  pointer-events: none;
}
.c-pagination__dot {
  font-weight: 100;
  font-size: 10px;
  margin: 0 5px;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.p-loop {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100vw;
}
.p-loop-track {
  display: flex;
  min-width: -moz-max-content;
  min-width: max-content;
}
.p-loop-track + .p-loop-track {
  margin-top: 2rem;
}
.p-loop img {
  width: 204.2rem;
  flex-shrink: 0;
  aspect-ratio: 4120/1345;
}
.p-loop img:nth-child(odd) {
  animation: loop 60s -30s linear infinite;
}
.p-loop img:nth-child(even) {
  animation: loop2 60s linear infinite;
}

.p-loop-01 img {
  aspect-ratio: 4120/2750;
}

.p-loop-02 {
  top: 9rem;
}
@media screen and (max-width: 768px) {
  .p-loop-02 {
    top: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

.bg-gray {
  background-color: #f3f3f3;
}/*# sourceMappingURL=style.css.map */