/* ========================================

mainvisual

======================================== */
.mainvisual_inner {
  margin-left: auto;
  width: calc(100% - 300px);
  position: relative;
  max-height: calc(100vh - 240px);
  min-height: 560px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.mainvisual_inner::before {
  width: 100%;
  padding-top: 80%;
  content: '';
  display: block;
  position: relative;
  z-index: 10;
}
.mainvisual .slide_wrap {
  width: 100%;
  overflow: hidden;
  margin-left: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.mainvisual .slide_wrap img {
  width: 100%;
}
.mainvisual_copy {
  width: 50%;
  max-width: 562px;
  position: absolute;
  left: 66px;
  bottom: 106px;
}
.mainvisual::before, .mainvisual::after {
  width: 100%;
  height: 920px;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: clamp(0px, 48.57vw, 1300px);
  top: calc(100% - 200px);
}
.mainvisual::before {
  z-index: -1;
  background-image: url(../img/common/bg_wave.jpg);
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 0;
  mask-image: url(../img/common/bg_wave_mask.png);
  -webkit-mask-image: url(../img/common/bg_wave_mask.png);
  mask-repeat: repeat-x;
  -webkit-mask-repeat: repeat-x;
  mask-position: 0 0;
  -webkit-mask-position: 0 0;
  -mask-size: auto 100%;
  -webkit-mask-size: auto 100%;
  -webkit-animation: bg_wave01 600s linear infinite;
  animation: bg_wave01 600s linear infinite;
}

@media screen and (max-width: 1240px) {
  .mainvisual_inner {
    width: calc(90% - 110px);
  }
}
@media screen and (max-width: 1024px) {
  .mainvisual_inner {
    width: 95%;
    max-height: none;
  }
  .mainvisual .slide {
    overflow: hidden;
    margin-left: auto;
  }
  .mainvisual .slide img {
    width: 100%;
  }
  .mainvisual_copy {
    width: 94.4%;
    max-width: 562px;
    position: absolute;
    left: 10px;
    bottom: 56px;
  }
}
@media screen and (max-width: 800px) {
  .mainvisual_inner {
    border-radius: 5px 0 0 5px;
  }
  .mainvisual_inner::before {
    display: none;
  }
  .mainvisual .slide_wrap {
    position: relative;
    top: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .mainvisual .slide_wrap .slick-slide {
    overflow: hidden;
    border-radius: 5px 0 0 5px;
  }
  .mainvisual_copy {
    width: 95%;
    max-width: 379px;
    left: 9px;
    bottom: 26px;
  }
  .mainvisual::before, .mainvisual::after {
    width: 100%;
    height: 460px;
    top: calc(100% + 220px);
  }
  .mainvisual::before {
    -webkit-animation-duration: 400s;
            animation-duration: 400s;
  }
  .mainvisual::after {
    -webkit-animation-duration: 200s;
            animation-duration: 200s;
  }
}
@-webkit-keyframes bg_wave01 {
  0% {
    background-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
  100% {
    background-position: -5996px 0;
    mask-position: -2998px 0;
    -webkit-mask-position: -2998px 0;
  }
}
@-webkit-keyframes bg_wave02 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -3000px 0;
  }
}
/* ========================================

news

======================================== */
.news {
  width: calc(100% - 80px);
  position: relative;
  margin-left: auto;
  margin-top: -50px;
  background-color: #fff;
  border-radius: 5px 0 0 5px;
}
.news_title {
  position: absolute;
  top: 50%;
  left: 60px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}
.news_title .replace_img {
  width: 176px;
  height: 24px;
  background-image: url(../img/top/news_title.png);
  -webkit-transition: all .3s;
  transition: all .3s;
}
.news_title .replace_img::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-image: url(../img/top/news_title_on.png);
  background-position: 0 0;
  background-size: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.news .arrow {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  right: 60px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .arrow svg {
  width: 24px;
  fill: var(--primary);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news_list {
  font-size: 18px;
  letter-spacing: -0.05em;
  line-height: 2;
  position: relative;
}
.news_list li {
  width: 100%;
  display: none;
}
.news_list li a {
  width: 100%;
  height: 120px;
  padding: 0 140px 0 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.news_list li a span {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--foreground);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 801px) {
  .news:hover {
    color: #fff;
    background-color: var(--primary);
  }
  .news:hover .news_title {
    color: #fff;
  }
  .news:hover .news_title .replace_img::after {
    opacity: 1;
  }
  .news:hover .arrow {
    border-color: #fff;
  }
  .news:hover .arrow svg {
    fill: #fff;
  }
  .news:hover .news_list li a span {
    color: #fff;
    border-color: #fff;
  }
}
@media screen and (max-width: 800px) {
  .news {
    width: 85%;
    height: auto;
    margin: 0 auto;
    padding: 50px 0 47px;
    border-radius: 0;
    background-color: transparent;
  }
  .news::before {
    width: 1px;
    height: 110px;
    content: '';
    display: block;
    position: absolute;
    top: -40px;
    right: -10px;
    background: -webkit-gradient(linear, left bottom, left top, from(var(--primary)), to(#fff));
    background: linear-gradient(0deg, var(--primary), #fff);
    -webkit-animation: scroll_bar 2.8s cubic-bezier(0.85, 0, 0.15, 1) infinite;
    animation: scroll_bar 2.8s cubic-bezier(0.85, 0, 0.15, 1) infinite;
  }
  .news_title {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 14px;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .news_title .ptcl {
    font-size: 21px;
  }
  .news_title .icon {
    text-align: center;
    width: 22px;
    height: 23px;
    display: inline-block;
    margin-right: 8px;
    background-color: var(--primary);
    border-radius: 11px;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .news_title svg {
    width: 2px;
    fill: #fff;
    vertical-align: top;
    margin-top: 7px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .news .arrow {
    display: none;
  }
  .news_list li a {
    height: auto;
    padding: 0;
  }
  .news_list li a span {
    padding-bottom: 4px;
  }
}
@-webkit-keyframes scroll_bar {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
/* ========================================

message

======================================== */
.message {
  position: relative;
  margin-bottom: 96px;
}
.message::before {
  width: 100%;
  height: 796px;
  content: '';
  display: block;
  position: absolute;
  top: 590px;
  left: 0;
  background-image: url(../img/top/message_bg.png);
  background-size: 756px;
  background-position: calc(50% + 35.28vw) 0;
  z-index: -1;
}
.message_inner {
  max-width: 1400px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.message .box_text {
  width: 50%;
  max-width: 620px;
  margin-left: auto;
  padding-top: 120px;
}
.message .box_text .title {
  width: 84%;
  max-width: 396px;
  margin-left: 40px;
  z-index: 2;
}
.message .box_text_inner {
  font-size: 17px;
  line-height: 2.35;
  width: 80%;
  max-width: 480px;
  position: relative;
  margin: 20% 0 0 50px;
}
.message .box_text_inner::before {
  width: 70vw;
  max-width: 800px;
  height: 600px;
  content: '';
  display: block;
  position: absolute;
  top: -9%;
  left: -70px;
  background-color: #fff;
  border-radius: 5px;
  z-index: -1;
}
.message .box_text .txt {
  margin-bottom: 26px;
}
.message .btn_border {
  margin-top: 46px;
}
.message .btn_border a .replace_img {
  width: 160px;
  background-image: url(../img/top/message_btn_txt.png);
}
.message .btn_border a .replace_img::after {
  background-image: url(../img/top/message_btn_txt_on.png);
}
.message .box_img {
  width: 50%;
  position: relative;
}
.message .box_img .img {
  width: 52.86%;
  max-width: 370px;
}
.message .box_img .img01 {
  margin-left: auto;
}
.message .box_img .img02 {
  position: absolute;
  top: 90px;
  top: 6.4285vw;
  left: 0;
  border: 6px solid #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (min-width: 1400px) {
  .message::before {
    background-position: calc(50% + 494px) 0;
  }
}
@media screen and (max-width: 800px) {
  .message {
    margin-bottom: 60px;
  }
  .message::before {
    display: none;
  }
  .message .box_text {
    width: 85%;
    max-width: none;
    margin: 0 auto;
    margin-top: -62px;
    padding-top: 0;
    position: relative;
    z-index: 2;
  }
  .message .box_text .title {
    width: 100%;
    max-width: 303px;
    margin-left: 0;
    z-index: 2;
  }
  .message .box_text_inner {
    font-size: 16px;
    line-height: 2;
    width: 100%;
    max-width: none;
    margin: 50px 0 0 0;
  }
  .message .box_text_inner .txt {
    margin-bottom: 26px;
  }
  .message .box_text_inner::before {
    display: none;
  }
  .message .btn_border {
    max-width: none;
    margin-top: 40px;
  }
  .message .btn_border a .replace_img {
    width: 151px;
  }
  .message .box_img {
    width: 85%;
    margin: 0 auto;
    position: relative;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .message .box_img .img {
    width: 52.86%;
    max-width: 370px;
  }
  .message .box_img .img01 {
    margin-left: auto;
  }
  .message .box_img .img02 {
    position: absolute;
    top: 90px;
    top: 6.4285vw;
    left: 0;
    border: 6px solid #fff;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}
/* ========================================

service

======================================== */
.service {
  height: 705px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 124px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service .img {
  width: 60%;
  max-width: 840px;
  height: 100%;
  position: absolute;
  top: 0;
}
.service .img::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
}
.service .img::after {
  width: 370px;
  height: 388px;
  content: '';
  display: block;
  position: absolute;
  bottom: -200px;
  left: -80px;
  background-image: url(../img/top/service_bg.jpg);
  background-size: 100%;
  z-index: -1;
}
.service .img img {
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.service .box_text {
  width: 90%;
  max-width: 1470px;
  margin: 0 auto;
}
.service .box_text_inner {
  color: #fff;
  width: 66%;
  max-width: 680px;
  position: relative;
  margin-left: auto;
  padding: 80px 5.7%;
  z-index: 2;
  background-image: linear-gradient(130deg, var(--sage-mid) 30%, var(--primary));
  border-radius: 5px;
}
.service .box_text_inner::before {
  width: 14px;
  height: 344px;
  content: '';
  display: block;
  position: absolute;
  top: -216px;
  right: 8%;
  background-image: url(../img/top/service_copy.png);
  background-size: 100%;
}
.service .box_text .title {
  width: 93%;
  max-width: 281px;
}
.service .box_text .txt {
  font-size: 16px;
  line-height: 2;
  margin: 28px 0 44px;
}
.service .btn_border {
  max-width: none;
}
.service .btn_border a {
  width: 100%;
  border: none;
}
.service .btn_border a .replace_img {
  width: 157px;
  background-image: url(../img/top/service_btn_txt.png);
}
.service .btn_border a .replace_img::after {
  background-image: url(../img/top/service_btn_txt_on.png);
}

@media screen and (max-width: 800px) {
  .service {
    height: auto;
    display: block;
    margin-bottom: 0;
    padding: 36px 0 40px;
    background-image: linear-gradient(130deg, var(--sage-mid) 60%, var(--primary));
  }
  .service .img {
    width: 85%;
    max-width: 840px;
    overflow: hidden;
    position: relative;
    top: auto;
    margin: 0 auto;
    margin-bottom: 40px;
    border-radius: 5px;
  }
  .service .img::before {
    display: none;
  }
  .service .img img {
    width: 100%;
    height: auto;
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .service .box_text {
    width: 85%;
  }
  .service .box_text::before {
    display: none;
  }
  .service .box_text_inner {
    width: 100%;
    max-width: none;
    position: relative;
    margin: 0 auto;
    padding: 0;
    background: none;
  }
  .service .box_text_inner::before {
    display: none;
  }
  .service .box_text .title {
    width: 100%;
    max-width: 209px;
    margin: 0 auto;
  }
  .service .box_text .txt {
    margin: 30px 0;
  }
  .service .btn_border a .replace_img {
    width: 143px;
  }
}
/* ========================================

episode

======================================== */
.episode {
  position: relative;
  margin-bottom: 174px;
  z-index: 2;
}
.episode_title {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.episode_title::after {
  width: 100%;
  max-width: 1240px;
  height: 760px;
  content: '';
  display: block;
  position: absolute;
  top: 150px;
  right: 50%;
  border-radius: 5px;
  background-color: var(--sage-soft);
  z-index: -1;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}
.episode_title .title {
  width: 27.8%;
  max-width: 344px;
  margin-left: 4.8%;
}
.episode_title .txt {
  font-size: 17px;
  line-height: 2.35;
  width: 61.4%;
}
.episode_list .slick-slide {
  -webkit-transform: translate(calc(-340px + -10vw), 0);
          transform: translate(calc(-340px + -10vw), 0);
}
.episode_list_item {
  width: 42.86%;
  max-width: 600px;
  position: relative;
  margin: 0 20px;
  padding-bottom: 6px;
}
.episode_list_item:nth-child(even) {
  margin-top: 44px;
}
.episode_list_item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.episode_list_item a::before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  background-color: rgba(79, 115, 88, 0.9);
  background-image: url(../img/top/episode_link_on.png);
  background-size: 228px;
  background-position: 50% 50%;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.episode_list_item::after {
  width: 100%;
  height: calc(100% - 6px);
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--shadow);
  z-index: -1;
  border-radius: 5px;
}

@media screen and (min-width: 1400px) {
  .episode_list .slick-slide {
    -webkit-transform: translate(160px, 0);
            transform: translate(160px, 0);
  }
}
@media screen and (min-width: 801px) {
  .episode_list_item a:hover {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  .episode_list_item a:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .episode_list .slick-slide {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media screen and (max-width: 800px) {
  .episode_list .slick-slide {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media screen and (max-width: 800px) {
  .episode {
    margin-bottom: 0;
    padding-top: 50px;
    background-image: url(../img/top/episode_bg_sp.jpg);
    background-size: 550px;
    background-position: center top;
  }
  .episode_title {
    width: 85%;
    margin-bottom: 43px;
  }
  .episode_title::after {
    display: none;
  }
  .episode_title .title {
    width: 100%;
    max-width: 282px;
    margin: 0 auto;
    margin-bottom: 35px;
  }
  .episode_title .txt {
    font-size: 16px;
    line-height: 2;
    width: 100%;
  }
  .episode_list {
    padding-bottom: 70px;
  }
  .episode_list::before {
    width: 100%;
    height: 325px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    background-color: var(--sage-soft);
    z-index: -1;
  }
  .episode_list_item {
    width: 85%;
    max-width: 600px;
    position: relative;
    margin: 0 10px;
    padding-bottom: 6px;
  }
  .episode_list_item:nth-child(even) {
    margin-top: 25px;
  }
  .episode_list_item a {
    border-radius: 2.5px;
  }
  .episode_list_item::after {
    height: calc(100% - 4px);
    left: 0;
    top: 4px;
    border-radius: 2.5px;
  }
}
/* ========================================

staff

======================================== */
.staff {
  position: relative;
  margin-bottom: 110px;
}
.staff_inner {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}
.staff::before {
  width: 100%;
  height: 1104px;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -166px;
  background-image: url(../img/top/staff_bg.jpg);
  background-position: calc(50% + 46.42vw) 0;
  background-size: 370px;
  z-index: -1;
}
.staff .img {
  overflow: hidden;
  border-radius: 5px;
}
.staff .staff_title {
  color: var(--primary);
  width: 84%;
  max-width: 680px;
  position: relative;
  margin: -70px 0 36px;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0 10px 0 0;
}
.staff .staff_title::before, .staff .staff_title::after {
  width: 17px;
  height: 17px;
  content: '';
  display: block;
  position: absolute;
  background-image: url(../img/common/img_edge.svg);
  background-size: 100%;
}
.staff .staff_title::before {
  top: -17px;
  left: 0;
}
.staff .staff_title::after {
  top: 53px;
  right: -17px;
}
.staff .staff_title .title img {
  width: 322px;
}
.staff .staff_title .title::after {
  width: 70px;
  height: 2px;
  content: '';
  display: inline-block;
  vertical-align: top;
  margin: 18px 20px 0 16px;
  background-image: url(../img/common/ptn_tile.gif);
  background-repeat: repeat;
  background-size: 2px;
}
.staff .staff_title .en {
  font-size: 18px;
}
.staff .box_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.staff .box_text .txt {
  font-size: 17px;
  line-height: 2.35;
  width: 53%;
}
.staff .btn_border {
  width: 44%;
  max-width: 540px;
  margin-top: 10px;
}
.staff .btn_border a .replace_img {
  width: 188px;
  background-image: url(../img/top/staff_btn_txt.png);
}
.staff .btn_border a .replace_img::after {
  background-image: url(../img/top/staff_btn_txt_on.png);
}

@media screen and (min-width: 1400px) {
  .staff::before {
    background-position: calc(50% + 650px) 0;
  }
}
@media screen and (max-width: 800px) {
  .staff {
    width: 100%;
    margin-bottom: 50px;
  }
  .staff_inner {
    width: 100%;
  }
  .staff::before {
    display: none;
  }
  .staff .img {
    border-radius: 0;
  }
  .staff .staff_title {
    text-align: center;
    width: 85%;
    max-width: none;
    margin: -25px auto 20px;
    padding-top: 40px;
    display: block;
    border-radius: 5px 5px 0 0;
  }
  .staff .staff_title::before, .staff .staff_title::after {
    width: 9px;
    height: 9px;
  }
  .staff .staff_title::before {
    top: 16px;
    left: -9px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .staff .staff_title::after {
    top: 16px;
    right: -9px;
  }
  .staff .staff_title .title {
    max-width: 242px;
    margin: 0 auto 12px;
  }
  .staff .staff_title .title::after {
    display: none;
  }
  .staff .staff_title .en {
    font-size: 14px;
  }
  .staff .box_text {
    width: 85%;
    max-width: none;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .staff .box_text .txt {
    font-size: 16px;
    line-height: 2;
    width: 100%;
  }
  .staff .box_text .btn_border {
    width: 100%;
    max-width: none;
    margin-top: 26px;
  }
  .staff .btn_border a .replace_img {
    width: 178px;
  }
}
/* ========================================

journal

======================================== */
.journal_title {
  color: var(--primary);
  line-height: 1;
  margin-bottom: 64px;
}
.journal_title .en {
  max-width: 502px;
  margin-bottom: 22px;
}
.journal_title .desc {
  font-size: 16px;
}
.journal_list_item {
  width: 31.3%;
  max-width: 388px;
}
.journal_list_item:not(:last-of-type) {
  margin-right: 3.05%;
}

@media screen and (max-width: 800px) {
  .journal {
    padding: 46px 0 60px;
    background-image: url(../img/top/journal_bg_sp.jpg);
    background-position: 50% 50%;
    background-size: cover;
  }
  .journal_title {
    text-align: center;
    margin-bottom: 47px;
  }
  .journal_title .en {
    max-width: 326px;
    margin: 0 auto 18px;
  }
  .journal_title .desc {
    font-size: 14px;
  }
  .journal_list_item {
    width: 100%;
    max-width: none;
    margin-bottom: 46px;
  }
  .journal_list_item:not(:last-of-type) {
    margin-right: 0;
  }
  .journal_list_item .info .category a {
    height: 36px;
    border-radius: 20px;
  }
  .journal_list_item .info .date {
    font-size: 15px;
  }
  .journal_list_item .box_text .title {
    font-size: 20px;
    margin: 18px 0 14px;
  }
  .journal_list_item .box_text .txt {
    font-size: 14px;
  }
  .journal_list_item.new::before {
    top: -10px;
    left: -10px;
    background-size: 52px;
  }
  .journal .btn_list {
    margin-top: 0;
  }
}

/*# sourceMappingURL=top.css.map */