@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --base-font-size: 16px;
  --padding_md: 3.5%;
  --padding_sm: 20px;
  --width_header: 1440px;
  --width_header_calc: 1440;
  --width_footer: 1000px;
  --width_footer_calc: 1000;
  --width_content: 1340px;
  --width_content_calc: 1340;
  --width_post: 800px;
  --color_white: #ffffff;
  --color_black: #3b3f4a;
  --color_primary: #122a88;
  --color_light-gray: #a6a6a6;
  --color_gray: #3b3f4a;
  --font-roboto: "Roboto", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  background-color: var(--color_white);
  z-index: 2;
  border-top: 10px solid var(--color_primary);
  border-bottom: 1.506px solid var(--color_primary);
}
.site-header .site-header__inner {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
  height: 87px;
  display: flex;
  align-items: center;
}
@media (min-width: 767px) {
  .site-header .site-header__inner {
    max-width: calc(var(--width_header) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
@media (max-width: 1080px) {
  .site-header .site-header__inner {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .site-header .site-header__inner {
    height: 50px;
  }
}
.site-header .site-header__logo {
  width: 150px;
}
.site-header .site-header__logo .custom-logo {
  max-width: 150px;
}
@media (max-width: 767px) {
  .site-header .site-header__logo .custom-logo {
    height: 40px;
    width: auto;
  }
}
.site-header .site-header__language {
  display: flex;
  gap: 10px;
  padding: 0 calc(100 / var(--width_header_calc) * 100%) 0 calc(30 / var(--width_header_calc) * 100%);
}
.site-header .site-header__language a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.site-header .site-header__language a:hover {
  text-decoration: underline;
}
.site-header .site-header__language a.is-current {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .site-header .site-header__language {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-header .site-header__language {
    height: 40px;
    width: auto;
  }
}
.site-header .site-header__mobile-nav {
  display: none;
}
@media (max-width: 1080px) {
  .site-header .site-header__mobile-nav {
    display: block;
  }
}
.site-header .site-header__mobile-nav__btn {
  position: absolute;
  width: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
  height: 100%;
  right: 20px;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.site-header .site-header__mobile-nav__btn.is-active + .site-header__mobile-nav__menu {
  height: 320px;
  bottom: -320px;
  transition: all 0.3s ease;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .site-header .site-header__mobile-nav__btn {
    width: 50px;
    right: 10px;
  }
}
.site-header .site-header__mobile-nav__btn span {
  display: block;
  width: 55%;
  height: 3px;
  background-color: var(--color_primary);
  margin: 3px 0;
}
.site-header .site-header__mobile-nav__menu {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  padding: 0;
  bottom: 0;
  background-color: var(--color_primary);
  overflow: hidden;
}
.site-header .site-header__mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.site-header .site-header__mobile-menu .menu-item {
  text-align: center;
}
.site-header .site-header__mobile-menu .menu-item > a {
  font-family: var(--font-noto);
  font-size: 15px;
  font-weight: 700;
  color: var(--color_white);
  text-decoration: none;
  text-decoration: none;
}
.site-header .site-header__mobile-menu .menu-item > a:hover {
  opacity: 0.4;
  transition: all 0.2s ease-in-out;
}
.site-header .site-header__navigation {
  flex-grow: 1;
}
.site-header__mobile-nav__language {
  display: none;
  gap: 10px;
  justify-content: center;
  padding-right: 50px;
}
.site-header__mobile-nav__language a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.site-header__mobile-nav__language a:hover {
  text-decoration: underline;
}
.site-header__mobile-nav__language a.is-current {
  text-decoration: underline;
}
@media (max-width: 1080px) {
  .site-header .site-header__navigation {
    display: none;
  }
}
.site-header .site-header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-header__menu > .menu-item > a {
  font-size: 16px;
  font-weight: 700;
  color: var(--color_black);
  text-decoration: none;
  text-decoration: none;
}
.site-header .site-header__menu > .menu-item > a:hover {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
.site-header .site-header__btn {
  width: calc(290 / var(--width_header_calc) * 100%);
  min-width: 265px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.site-header .site-header__btn:after {
  content: url("../images/header-add.svg");
  position: absolute;
  left: 20px;
  bottom: -56px;
}
@media (max-width: 1080px) {
  .site-header .site-header__btn:after {
    display: none;
  }
}
@media (max-width: 1080px) {
  .site-header .site-header__btn {
    min-width: 55vw;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .site-header .site-header__btn {
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .site-header__mobile-nav__language {
    display: flex;
  }
  .site-header .site-header__btn {
    display: none;
  }
}
.site-header .site-header__sns {
  margin-right: 6%;
}
.site-header .site-header__sns a {
  font-size: 20px;
  color: var(--color_black);
  text-decoration: none;
}
.site-header .site-header__sns a:hover {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
.site-header .site-header__contact {
  border-radius: 28px;
  background: var(--color_primary);
  display: flex;
  width: 171px;
  height: 47px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  color: var(--color_white);
  font-family: YuGothic;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-decoration: none;
}
.site-header .site-header__contact:hover {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}

.site-footer {
  background-color: var(--color_primary);
}
.site-footer .site-footer__inner {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
  height: 90px;
  display: flex;
  align-items: center;
}
@media (min-width: 767px) {
  .site-footer .site-footer__inner {
    max-width: calc(var(--width_footer) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
@media (max-width: 767px) {
  .site-footer .site-footer__inner {
    height: 50.6666666667vw;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 4.2666666667vw;
    padding-bottom: 5.3333333333vw;
  }
}
.site-footer .site-footer__logo {
  width: calc(126 / var(--width_footer_calc) * 100%);
  margin-right: calc(45 / var(--width_footer_calc) * 100%);
}
@media (max-width: 767px) {
  .site-footer .site-footer__logo {
    margin-right: 0;
    width: 33.6vw;
    order: 1;
  }
}
.site-footer .site-footer__copy {
  color: var(--color_white);
  font-family: var(--font-roboto);
  font-size: 12px;
  font-weight: 400;
  margin-right: calc(24 / var(--width_footer_calc) * 100%);
}
@media (max-width: 767px) {
  .site-footer .site-footer__copy {
    order: 4;
    font-size: 10px;
  }
}
.site-footer .site-footer__privacy {
  color: var(--color_white);
  font-size: 13px;
  font-weight: 500;
  padding-left: calc(15 / var(--width_footer_calc) * 100%);
  margin-right: calc(46 / var(--width_footer_calc) * 100%);
  border-left: 1px solid var(--color_white);
  line-height: 1;
  text-decoration: none;
}
.site-footer .site-footer__privacy:hover {
  text-decoration: underline;
}
.site-footer .site-footer__privacy:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
@media (max-width: 767px) {
  .site-footer .site-footer__privacy {
    order: 2;
    font-size: 12px;
    border: none;
    padding: 0;
    margin: 0;
  }
}
.site-footer .site-footer__sns {
  font-size: 20px;
  color: var(--color_white);
  text-decoration: none;
}
.site-footer .site-footer__sns:hover {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .site-footer .site-footer__sns {
    order: 3;
  }
}

body {
  font-family: "yu-gothic-pr6n", sans-serif;
  line-height: 1.3;
}

body.page-template-home main,
body.blog main,
body.single-post main {
  padding-bottom: 90px;
  background-image: url("../images/texture.jpg");
}
@media (max-width: 767px) {
  body.page-template-home main,
  body.blog main,
  body.single-post main {
    padding-bottom: 18.6vw;
  }
}
body.page-template-home .section-header,
body.blog .section-header,
body.single-post .section-header {
  --home-header-height-calc: 596;
  background-image: url("../images/home-back.jpg");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 100%;
}
body.page-template-home .section-header .section-header__content,
body.blog .section-header .section-header__content,
body.single-post .section-header .section-header__content {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
}
@media (min-width: 767px) {
  body.page-template-home .section-header .section-header__content,
  body.blog .section-header .section-header__content,
  body.single-post .section-header .section-header__content {
    max-width: calc(var(--width_header) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
body.page-template-home .section-header .section-header__title,
body.blog .section-header .section-header__title,
body.single-post .section-header .section-header__title {
  padding-top: calc(var(--home-header-height-calc) / var(--width_header_calc) * 100%);
  position: relative;
}
body.page-template-home .section-header .section-header__title-img,
body.blog .section-header .section-header__title-img,
body.single-post .section-header .section-header__title-img {
  --home-header-title-calc: 868;
  position: absolute;
  top: calc(160 / var(--home-header-height-calc) * 100%);
  left: calc(97 / var(--width_header_calc) * 100%);
  width: calc(var(--home-header-title-calc) / var(--width_header_calc) * 100%);
  max-width: calc(var(--home-header-title-calc) * 1px);
  height: auto;
}
@media (max-width: 767px) {
  body.page-template-home .section-header .section-header__title-img,
  body.blog .section-header .section-header__title-img,
  body.single-post .section-header .section-header__title-img {
    width: 72.8vw;
    top: 7vw;
  }
}
body.page-template-home .section-hero .section-hero__content .swiper,
body.blog .section-hero .section-hero__content .swiper,
body.single-post .section-hero .section-hero__content .swiper {
  width: 100%;
  margin: -60px 0;
  padding: 60px 0;
}
body.page-template-home .section-hero .section-hero__content .swiper-slide,
body.blog .section-hero .section-hero__content .swiper-slide,
body.single-post .section-hero .section-hero__content .swiper-slide {
  opacity: 0.4;
  overflow: hidden;
  transition: 0.7s;
}
body.page-template-home .section-hero .section-hero__content .swiper-slide img,
body.blog .section-hero .section-hero__content .swiper-slide img,
body.single-post .section-hero .section-hero__content .swiper-slide img {
  width: 100%;
}
body.page-template-home .section-hero .section-hero__content .swiper-slide-active,
body.blog .section-hero .section-hero__content .swiper-slide-active,
body.single-post .section-hero .section-hero__content .swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.2); /* スライドの大きさ調整 */
}
body.page-template-home .section-news,
body.blog .section-news,
body.single-post .section-news {
  margin-top: 60px;
}
@media (max-width: 767px) {
  body.page-template-home .section-news,
  body.blog .section-news,
  body.single-post .section-news {
    margin-top: 8vw;
  }
}
body.page-template-home .section-news .section-news__content,
body.blog .section-news .section-news__content,
body.single-post .section-news .section-news__content {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
  padding-bottom: 32px;
}
@media (min-width: 767px) {
  body.page-template-home .section-news .section-news__content,
  body.blog .section-news .section-news__content,
  body.single-post .section-news .section-news__content {
    max-width: calc(var(--width_content) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__content,
  body.blog .section-news .section-news__content,
  body.single-post .section-news .section-news__content {
    padding-bottom: 10vw;
  }
}
body.page-template-home .section-news .section-news__title-wrap,
body.blog .section-news .section-news__title-wrap,
body.single-post .section-news .section-news__title-wrap {
  padding-top: 59px;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__title-wrap,
  body.blog .section-news .section-news__title-wrap,
  body.single-post .section-news .section-news__title-wrap {
    padding-top: 6vw;
  }
}
body.page-template-home .section-news .section-news__title-wrap::before,
body.blog .section-news .section-news__title-wrap::before,
body.single-post .section-news .section-news__title-wrap::before {
  --home-news-back-width-calc: 510;
  --home-news-back-height-calc: 159;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("../images/home-news-back.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: calc(var(--home-news-back-width-calc) / var(--width_content_calc) * 100%);
  padding-top: 10.8%;
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__title-wrap::before,
  body.blog .section-news .section-news__title-wrap::before,
  body.single-post .section-news .section-news__title-wrap::before {
    width: 56.5vw;
    padding-top: 17.6vw;
    left: -20px;
  }
}
body.page-template-home .section-news .section-news__title,
body.blog .section-news .section-news__title,
body.single-post .section-news .section-news__title {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__title,
  body.blog .section-news .section-news__title,
  body.single-post .section-news .section-news__title {
    width: 46.4vw;
  }
}
body.page-template-home .section-news .section-news__list,
body.blog .section-news .section-news__list,
body.single-post .section-news .section-news__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16.6px;
  margin-right: -16.6px;
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__list,
  body.blog .section-news .section-news__list,
  body.single-post .section-news .section-news__list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
body.page-template-home .section-news .section-news__list .section-news__item,
body.blog .section-news .section-news__list .section-news__item,
body.single-post .section-news .section-news__list .section-news__item {
  padding-left: 16.6px;
  padding-right: 16.6px;
  width: 25%;
  margin-top: 25px;
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__list .section-news__item,
  body.blog .section-news .section-news__list .section-news__item,
  body.single-post .section-news .section-news__list .section-news__item {
    margin-top: 5.3vw;
    padding-left: 7.5px;
    padding-right: 7.5px;
    width: 50%;
  }
}
body.page-template-home .section-news .section-news__thumb-wrap,
body.blog .section-news .section-news__thumb-wrap,
body.single-post .section-news .section-news__thumb-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
body.page-template-home .section-news .section-news__thumb,
body.blog .section-news .section-news__thumb,
body.single-post .section-news .section-news__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-template-home .section-news .section-news__link:hover img,
body.blog .section-news .section-news__link:hover img,
body.single-post .section-news .section-news__link:hover img {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
body.page-template-home .section-news .section-news__date,
body.blog .section-news .section-news__date,
body.single-post .section-news .section-news__date {
  color: var(--color_light-gray);
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 400;
  margin-top: 17px;
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__date,
  body.blog .section-news .section-news__date,
  body.single-post .section-news .section-news__date {
    margin-top: 2.6vw;
  }
}
body.page-template-home .section-news .section-news__text,
body.blog .section-news .section-news__text,
body.single-post .section-news .section-news__text {
  margin-top: 10px;
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__text,
  body.blog .section-news .section-news__text,
  body.single-post .section-news .section-news__text {
    margin-top: 1.1vw;
  }
}
body.page-template-home .section-news .section-news__text-link,
body.blog .section-news .section-news__text-link,
body.single-post .section-news .section-news__text-link {
  color: var(--color_gray);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
body.page-template-home .section-news .section-news__text-link:hover,
body.blog .section-news .section-news__text-link:hover,
body.single-post .section-news .section-news__text-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
body.page-template-home .section-news .section-news__tags,
body.blog .section-news .section-news__tags,
body.single-post .section-news .section-news__tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
body.page-template-home .section-news .section-news__tag,
body.blog .section-news .section-news__tag,
body.single-post .section-news .section-news__tag {
  color: var(--color_gray);
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  padding: 2px 6px;
  margin-top: 4px;
  justify-content: center;
  align-items: center;
  margin-right: 6px;
  background: #edf4f4;
}
body.page-template-home .section-news .section-news__pagination,
body.blog .section-news .section-news__pagination,
body.single-post .section-news .section-news__pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  body.page-template-home .section-news .section-news__pagination,
  body.blog .section-news .section-news__pagination,
  body.single-post .section-news .section-news__pagination {
    margin-top: 8vw;
  }
}
body.page-template-home .section-news .section-news__pagination .page-numbers,
body.blog .section-news .section-news__pagination .page-numbers,
body.single-post .section-news .section-news__pagination .page-numbers {
  color: var(--color_black);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  margin-right: 8px;
  border: 1px solid var(--color_primary);
  border-radius: 28px;
  text-decoration: none;
  text-decoration: none;
}
body.page-template-home .section-news .section-news__pagination .page-numbers:hover,
body.blog .section-news .section-news__pagination .page-numbers:hover,
body.single-post .section-news .section-news__pagination .page-numbers:hover {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
body.page-template-home .section-news .section-news__pagination .page-numbers.current,
body.blog .section-news .section-news__pagination .page-numbers.current,
body.single-post .section-news .section-news__pagination .page-numbers.current {
  background-color: var(--color_primary);
  color: var(--color_white);
}
body.page-template-home .section-news .section-news__post,
body.blog .section-news .section-news__post,
body.single-post .section-news .section-news__post {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
}
@media (min-width: 767px) {
  body.page-template-home .section-news .section-news__post,
  body.blog .section-news .section-news__post,
  body.single-post .section-news .section-news__post {
    max-width: calc(var(--width_post) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
body.page-template-home .section-news .section-post__header-wrap,
body.blog .section-news .section-post__header-wrap,
body.single-post .section-news .section-post__header-wrap {
  display: flex;
  justify-content: center;
}
body.page-template-home .section-broadcast,
body.blog .section-broadcast,
body.single-post .section-broadcast {
  margin-top: 32px;
}
@media (max-width: 767px) {
  body.page-template-home .section-broadcast,
  body.blog .section-broadcast,
  body.single-post .section-broadcast {
    margin-top: 0;
  }
}
body.page-template-home .section-broadcast .section-broadcast__content,
body.blog .section-broadcast .section-broadcast__content,
body.single-post .section-broadcast .section-broadcast__content {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
  padding-bottom: 32px;
}
@media (min-width: 767px) {
  body.page-template-home .section-broadcast .section-broadcast__content,
  body.blog .section-broadcast .section-broadcast__content,
  body.single-post .section-broadcast .section-broadcast__content {
    max-width: calc(var(--width_content) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
@media (max-width: 767px) {
  body.page-template-home .section-broadcast .section-broadcast__content,
  body.blog .section-broadcast .section-broadcast__content,
  body.single-post .section-broadcast .section-broadcast__content {
    padding-bottom: 0;
  }
}
body.page-template-home .section-broadcast .section-broadcast__title-wrap,
body.blog .section-broadcast .section-broadcast__title-wrap,
body.single-post .section-broadcast .section-broadcast__title-wrap {
  padding-top: 59px;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-home .section-broadcast .section-broadcast__title-wrap,
  body.blog .section-broadcast .section-broadcast__title-wrap,
  body.single-post .section-broadcast .section-broadcast__title-wrap {
    padding-top: 4.5vw;
  }
}
body.page-template-home .section-broadcast .section-broadcast__title-wrap::before,
body.blog .section-broadcast .section-broadcast__title-wrap::before,
body.single-post .section-broadcast .section-broadcast__title-wrap::before {
  --home-broadcat-back-width-calc: 1034;
  --home-broadcast-back-height-calc: 159;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("../images/home-broadcast-back.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: calc(var(--home-broadcat-back-width-calc) / var(--width_content_calc) * 100%);
  padding-top: 10.8%;
}
@media (max-width: 767px) {
  body.page-template-home .section-broadcast .section-broadcast__title-wrap::before,
  body.blog .section-broadcast .section-broadcast__title-wrap::before,
  body.single-post .section-broadcast .section-broadcast__title-wrap::before {
    width: 100vw;
    padding-top: 16vw;
    left: -20px;
  }
}
body.page-template-home .section-broadcast .section-broadcast__title,
body.blog .section-broadcast .section-broadcast__title,
body.single-post .section-broadcast .section-broadcast__title {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body.page-template-home .section-broadcast .section-broadcast__title,
  body.blog .section-broadcast .section-broadcast__title,
  body.single-post .section-broadcast .section-broadcast__title {
    width: 46.4vw;
  }
}
body.page-template-home .section-broadcast .section-broadcast__list,
body.blog .section-broadcast .section-broadcast__list,
body.single-post .section-broadcast .section-broadcast__list {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 32px 0;
  margin-top: 25px;
  margin-left: -16.6px;
  margin-right: -16.6px;
}
@media (max-width: 767px) {
  body.page-template-home .section-broadcast .section-broadcast__list,
  body.blog .section-broadcast .section-broadcast__list,
  body.single-post .section-broadcast .section-broadcast__list {
    margin-top: 5vw;
    gap: 0;
  }
}
body.page-template-home .section-broadcast .section-broadcast__item,
body.blog .section-broadcast .section-broadcast__item,
body.single-post .section-broadcast .section-broadcast__item {
  padding-left: 16.6px;
  padding-right: 16.6px;
  width: 33.3333333333%;
}
@media (max-width: 767px) {
  body.page-template-home .section-broadcast .section-broadcast__item,
  body.blog .section-broadcast .section-broadcast__item,
  body.single-post .section-broadcast .section-broadcast__item {
    width: 100%;
  }
  body.page-template-home .section-broadcast .section-broadcast__item:not(:first-child),
  body.blog .section-broadcast .section-broadcast__item:not(:first-child),
  body.single-post .section-broadcast .section-broadcast__item:not(:first-child) {
    margin-top: 8vw;
  }
}
body.page-template-home .section-broadcast .section-broadcast__thumb-wrap,
body.blog .section-broadcast .section-broadcast__thumb-wrap,
body.single-post .section-broadcast .section-broadcast__thumb-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
body.page-template-home .section-broadcast .section-broadcast__thumb,
body.blog .section-broadcast .section-broadcast__thumb,
body.single-post .section-broadcast .section-broadcast__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-template-home .section-broadcast .section-broadcast__link:hover img,
body.blog .section-broadcast .section-broadcast__link:hover img,
body.single-post .section-broadcast .section-broadcast__link:hover img {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
body.page-template-home .section-broadcast .section-broadcast__text,
body.blog .section-broadcast .section-broadcast__text,
body.single-post .section-broadcast .section-broadcast__text {
  margin-top: 10px;
  color: var(--color_black);
  font-size: 16px;
  font-weight: 500;
}
body.page-template-home .section-pickup,
body.blog .section-pickup,
body.single-post .section-pickup {
  margin-top: 32px;
}
body.page-template-home .section-pickup .section-pickup__content,
body.blog .section-pickup .section-pickup__content,
body.single-post .section-pickup .section-pickup__content {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
  padding-bottom: 32px;
}
@media (min-width: 767px) {
  body.page-template-home .section-pickup .section-pickup__content,
  body.blog .section-pickup .section-pickup__content,
  body.single-post .section-pickup .section-pickup__content {
    max-width: calc(var(--width_content) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
@media (max-width: 767px) {
  body.page-template-home .section-pickup .section-pickup__content,
  body.blog .section-pickup .section-pickup__content,
  body.single-post .section-pickup .section-pickup__content {
    padding-bottom: 0;
  }
}
body.page-template-home .section-pickup .section-pickup__title-wrap,
body.blog .section-pickup .section-pickup__title-wrap,
body.single-post .section-pickup .section-pickup__title-wrap {
  padding-top: 59px;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-home .section-pickup .section-pickup__title-wrap,
  body.blog .section-pickup .section-pickup__title-wrap,
  body.single-post .section-pickup .section-pickup__title-wrap {
    padding-top: 6vw;
  }
}
body.page-template-home .section-pickup .section-pickup__title-wrap::before,
body.blog .section-pickup .section-pickup__title-wrap::before,
body.single-post .section-pickup .section-pickup__title-wrap::before {
  --home-pickup-back-width-calc: 670;
  --home-pickup-back-height-calc: 159;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("../images/home-pickup-back.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: calc(var(--home-pickup-back-width-calc) / var(--width_content_calc) * 100%);
  padding-top: 10.8%;
}
@media (max-width: 767px) {
  body.page-template-home .section-pickup .section-pickup__title-wrap::before,
  body.blog .section-pickup .section-pickup__title-wrap::before,
  body.single-post .section-pickup .section-pickup__title-wrap::before {
    width: 74.1vw;
    padding-top: 17.6vw;
    left: -20px;
  }
}
body.page-template-home .section-pickup .section-pickup__title,
body.blog .section-pickup .section-pickup__title,
body.single-post .section-pickup .section-pickup__title {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body.page-template-home .section-pickup .section-pickup__title,
  body.blog .section-pickup .section-pickup__title,
  body.single-post .section-pickup .section-pickup__title {
    width: 46.4vw;
  }
}
body.page-template-home .section-pickup .swiper,
body.blog .section-pickup .swiper,
body.single-post .section-pickup .swiper {
  margin-top: 25px;
}
@media (max-width: 767px) {
  body.page-template-home .section-pickup .swiper,
  body.blog .section-pickup .swiper,
  body.single-post .section-pickup .swiper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.page-template-home .section-pickup .swiper-button-prev:after,
body.blog .section-pickup .swiper-button-prev:after,
body.single-post .section-pickup .swiper-button-prev:after {
  content: url("../images/swiper-btn.svg");
  position: relative;
  left: -30px;
}
body.page-template-home .section-pickup .swiper-button-next:after,
body.blog .section-pickup .swiper-button-next:after,
body.single-post .section-pickup .swiper-button-next:after {
  content: url("../images/swiper-btn.svg");
  position: relative;
  right: -30px;
  transform: rotate(180deg);
}
body.page-template-home .section-comic,
body.blog .section-comic,
body.single-post .section-comic {
  margin-top: 32px;
}
body.page-template-home .section-comic .section-comic__content,
body.blog .section-comic .section-comic__content,
body.single-post .section-comic .section-comic__content {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
}
@media (min-width: 767px) {
  body.page-template-home .section-comic .section-comic__content,
  body.blog .section-comic .section-comic__content,
  body.single-post .section-comic .section-comic__content {
    max-width: calc(var(--width_content) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
@media (max-width: 767px) {
  body.page-template-home .section-comic .section-comic__content,
  body.blog .section-comic .section-comic__content,
  body.single-post .section-comic .section-comic__content {
    padding-left: 0;
    padding-right: 0;
  }
}
body.page-template-home .section-comic .section-comic__title-wrap,
body.blog .section-comic .section-comic__title-wrap,
body.single-post .section-comic .section-comic__title-wrap {
  padding-top: 59px;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-home .section-comic .section-comic__title-wrap,
  body.blog .section-comic .section-comic__title-wrap,
  body.single-post .section-comic .section-comic__title-wrap {
    padding-top: 6vw;
  }
}
body.page-template-home .section-comic .section-comic__title-wrap::before,
body.blog .section-comic .section-comic__title-wrap::before,
body.single-post .section-comic .section-comic__title-wrap::before {
  --home-comic-back-width-calc: 678;
  --home-comic-back-height-calc: 159;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("../images/home-comic-back.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: calc(var(--home-comic-back-width-calc) / var(--width_content_calc) * 100%);
  padding-top: 10.8%;
}
@media (max-width: 767px) {
  body.page-template-home .section-comic .section-comic__title-wrap::before,
  body.blog .section-comic .section-comic__title-wrap::before,
  body.single-post .section-comic .section-comic__title-wrap::before {
    width: 75.2vw;
    padding-top: 17.6vw;
  }
}
body.page-template-home .section-comic .section-comic__title,
body.blog .section-comic .section-comic__title,
body.single-post .section-comic .section-comic__title {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body.page-template-home .section-comic .section-comic__title,
  body.blog .section-comic .section-comic__title,
  body.single-post .section-comic .section-comic__title {
    width: 46.4vw;
  }
}
body.page-template-home .section-comic .section-comic__link:hover img,
body.blog .section-comic .section-comic__link:hover img,
body.single-post .section-comic .section-comic__link:hover img {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
body.page-template-home .section-comic .swiper,
body.blog .section-comic .swiper,
body.single-post .section-comic .swiper {
  margin-top: 25px;
}
@media (max-width: 767px) {
  body.page-template-home .section-comic .swiper,
  body.blog .section-comic .swiper,
  body.single-post .section-comic .swiper {
    margin-top: 5vw;
  }
}
body.page-template-home .section-comic .swiper-button-prev:after,
body.blog .section-comic .swiper-button-prev:after,
body.single-post .section-comic .swiper-button-prev:after {
  content: url("../images/swiper-btn.svg");
  position: relative;
  left: -30px;
}
body.page-template-home .section-comic .swiper-button-next:after,
body.blog .section-comic .swiper-button-next:after,
body.single-post .section-comic .swiper-button-next:after {
  content: url("../images/swiper-btn.svg");
  position: relative;
  right: -30px;
  transform: rotate(180deg);
}
body.page-template-home .section-about,
body.blog .section-about,
body.single-post .section-about {
  margin-top: 120px;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-home .section-about,
  body.blog .section-about,
  body.single-post .section-about {
    margin-top: 21.3vw;
  }
}
body.page-template-home .section-about .section-about__content-wrap,
body.blog .section-about .section-about__content-wrap,
body.single-post .section-about .section-about__content-wrap {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
}
@media (min-width: 767px) {
  body.page-template-home .section-about .section-about__content-wrap,
  body.blog .section-about .section-about__content-wrap,
  body.single-post .section-about .section-about__content-wrap {
    max-width: calc(var(--width_header) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
@media (max-width: 767px) {
  body.page-template-home .section-about .section-about__content-wrap,
  body.blog .section-about .section-about__content-wrap,
  body.single-post .section-about .section-about__content-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
body.page-template-home .section-about .section-about__content,
body.blog .section-about .section-about__content,
body.single-post .section-about .section-about__content {
  padding: 48px 50px 230px;
  background: linear-gradient(270deg, #38fffe 0%, #167486 31.03%, #0d2355 65.82%);
  position: relative;
  display: flex;
  align-items: center;
}
body.page-template-home .section-about .section-about__content::before,
body.blog .section-about .section-about__content::before,
body.single-post .section-about .section-about__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-image: url("../images/texture-low.png");
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: color-burn;
}
body.page-template-home .section-about .section-about__content:after,
body.blog .section-about .section-about__content:after,
body.single-post .section-about .section-about__content:after {
  content: "";
  background-image: url("../images/home-about-back.svg");
  background-repeat: no-repeat;
  background-position: top right 1px;
  background-size: auto 72%;
  position: absolute;
  display: block;
  top: 5%;
  right: 1.5%;
  height: 100%;
  width: 11%;
}
@media (max-width: 767px) {
  body.page-template-home .section-about .section-about__content:after,
  body.blog .section-about .section-about__content:after,
  body.single-post .section-about .section-about__content:after {
    width: 60px;
    height: 472px;
    top: 20px;
    background-size: auto 100%;
    right: 0;
  }
}
@media (max-width: 767px) {
  body.page-template-home .section-about .section-about__content,
  body.blog .section-about .section-about__content,
  body.single-post .section-about .section-about__content {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 16vw;
    padding-top: 35.7vw;
    position: relative;
  }
}
body.page-template-home .section-about .section-about__left,
body.blog .section-about .section-about__left,
body.single-post .section-about .section-about__left {
  width: calc(509 / var(--width_content_calc) * 100%);
  margin-right: calc(44 / var(--width_content_calc) * 100%);
}
@media (max-width: 767px) {
  body.page-template-home .section-about .section-about__left,
  body.blog .section-about .section-about__left,
  body.single-post .section-about .section-about__left {
    width: 100%;
    margin-right: 0;
    position: relative;
    z-index: 1;
  }
}
body.page-template-home .section-about .section-about__right,
body.blog .section-about .section-about__right,
body.single-post .section-about .section-about__right {
  width: calc(608 / var(--width_content_calc) * 100%);
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-home .section-about .section-about__right,
  body.blog .section-about .section-about__right,
  body.single-post .section-about .section-about__right {
    width: 100%;
    margin-top: 9vw;
    position: static;
  }
}
body.page-template-home .section-about .section-about__title,
body.blog .section-about .section-about__title,
body.single-post .section-about .section-about__title {
  display: block;
}
@media (max-width: 767px) {
  body.page-template-home .section-about .section-about__title,
  body.blog .section-about .section-about__title,
  body.single-post .section-about .section-about__title {
    position: absolute;
    top: 11.2vw;
    width: 61.9vw;
    height: 16.3vw;
    left: 18.9vw;
  }
}
body.page-template-home .section-about .section-about__text,
body.blog .section-about .section-about__text,
body.single-post .section-about .section-about__text {
  color: var(--color_white);
  font-size: 16px;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  margin-top: 2em;
  margin-left: calc(36 / var(--width_content_calc) * 100%);
}

body.page-template-home .section-about .section-about__text .is-large,
body.blog .section-about .section-about__text .is-large,
body.single-post .section-about .section-about__text .is-large {
  font-size: 18px;
}

@media (max-width: 767px) {
  body.page-template-home .section-about .section-about__text,
  body.blog .section-about .section-about__text,
  body.single-post .section-about .section-about__text {
    margin-top: 0;
    margin-left: 0;
  }
}
body.page-template-home .section-about .section-about__text-small,
body.blog .section-about .section-about__text-small,
body.single-post .section-about .section-about__text-small {
  font-size: 14px;
  font-weight: 400;
}

body.page-template-home .section-about .section-about__text-small .is-large,
body.blog .section-about .section-about__text-small .is-large,
body.single-post .section-about .section-about__text-small .is-large {
  font-size: 16px;
}

body.page-template-home .section-about .section-about__add,
body.blog .section-about .section-about__add,
body.single-post .section-about .section-about__add {
  max-width: calc(var(--width_content) + 7%);
  margin-left: auto;
  margin-right: auto;
  margin-top: -350px;
  height: 423px;
  mask-image: url("../images/home-comic-under.png");
  mask-mode: luminance; /* 黒白画像の輝度をマスクに利用 */
  mask-repeat: no-repeat;
  mask-size: 100% 95%;
  -webkit-mask-image: url("../images/home-comic-under.png"); /* Webkit対応 */
  -webkit-mask-mode: luminance;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-home .section-about .section-about__add,
  body.blog .section-about .section-about__add,
  body.single-post .section-about .section-about__add {
    display: none;
  }
}
body.page-template-home .section-about .section-about__add::after,
body.blog .section-about .section-about__add::after,
body.single-post .section-about .section-about__add::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-image: url("../images/texture.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: color-burn;
}
@media (max-width: 767px) {
  body.page-template-home .section-contact,
  body.blog .section-contact,
  body.single-post .section-contact {
    margin-top: 16vw;
  }
}
body.page-template-home .section-contact .section-contact__content-wrap,
body.blog .section-contact .section-contact__content-wrap,
body.single-post .section-contact .section-contact__content-wrap {
  margin: 0 auto;
  max-width: initial;
  padding-left: var(--padding_sm);
  padding-right: var(--padding_sm);
}
@media (min-width: 767px) {
  body.page-template-home .section-contact .section-contact__content-wrap,
  body.blog .section-contact .section-contact__content-wrap,
  body.single-post .section-contact .section-contact__content-wrap {
    max-width: calc(var(--width_content) + var(--padding_md) * 2);
    padding-left: var(--padding_md);
    padding-right: var(--padding_md);
  }
}
body.page-template-home .section-contact .section-contact__content,
body.blog .section-contact .section-contact__content,
body.single-post .section-contact .section-contact__content {
  display: flex;
  align-items: center;
  border: 1px solid var(--color_primary);
  box-shadow: 0px 4px 4px 0px rgba(0, 48, 48, 0.1);
  background-color: var(--color_white);
}
@media (max-width: 767px) {
  body.page-template-home .section-contact .section-contact__content,
  body.blog .section-contact .section-contact__content,
  body.single-post .section-contact .section-contact__content {
    flex-direction: column;
    border: none;
  }
}
body.page-template-home .section-contact .section-contact__left,
body.blog .section-contact .section-contact__left,
body.single-post .section-contact .section-contact__left {
  width: calc(822 / var(--width_content_calc) * 100%);
}
@media (max-width: 767px) {
  body.page-template-home .section-contact .section-contact__left,
  body.blog .section-contact .section-contact__left,
  body.single-post .section-contact .section-contact__left {
    width: 100%;
  }
}
body.page-template-home .section-contact .section-contact__img-wrap,
body.blog .section-contact .section-contact__img-wrap,
body.single-post .section-contact .section-contact__img-wrap {
  position: relative;
  height: 300px;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-home .section-contact .section-contact__img-wrap,
  body.blog .section-contact .section-contact__img-wrap,
  body.single-post .section-contact .section-contact__img-wrap {
    height: 50.9vw;
  }
}
body.page-template-home .section-contact .section-contact__img-wrap:after,
body.blog .section-contact .section-contact__img-wrap:after,
body.single-post .section-contact .section-contact__img-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1%;
  display: block;
  height: 159px;
  width: 95.8637469586%;
  background-image: url("../images/home-contact-title.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
@media (max-width: 767px) {
  body.page-template-home .section-contact .section-contact__img-wrap:after,
  body.blog .section-contact .section-contact__img-wrap:after,
  body.single-post .section-contact .section-contact__img-wrap:after {
    height: 16.5vw;
    width: 82.1vw;
    bottom: -2.5vw;
  }
}
body.page-template-home .section-contact .section-contact__img,
body.blog .section-contact .section-contact__img,
body.single-post .section-contact .section-contact__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-template-home .section-contact .section-contact__right,
body.blog .section-contact .section-contact__right,
body.single-post .section-contact .section-contact__right {
  width: calc(518 / var(--width_content_calc) * 100%);
  padding: 0 4%;
}
@media (max-width: 767px) {
  body.page-template-home .section-contact .section-contact__right,
  body.blog .section-contact .section-contact__right,
  body.single-post .section-contact .section-contact__right {
    padding-left: 6.1vw;
    padding-right: 6.1vw;
    border: 1px solid var(--color_primary);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 42vw;
  }
}
body.page-template-home .section-contact .section-contact__text,
body.blog .section-contact .section-contact__text,
body.single-post .section-contact .section-contact__text {
  color: var(--color_primary);
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  body.page-template-home .section-contact .section-contact__text br,
  body.blog .section-contact .section-contact__text br,
  body.single-post .section-contact .section-contact__text br {
    display: none;
  }
}
@media (max-width: 767px) {
  body.page-template-home .section-contact .section-contact__text,
  body.blog .section-contact .section-contact__text,
  body.single-post .section-contact .section-contact__text {
    font-size: 6.9vw;
    font-size: 18px;
  }
}
body.page-template-home .section-contact .section-contact__btn,
body.blog .section-contact .section-contact__btn,
body.single-post .section-contact .section-contact__btn {
  margin-top: 23px;
  text-align: right;
  display: block;
}
body.page-template-home .section-contact .section-contact__btn:hover img,
body.blog .section-contact .section-contact__btn:hover img,
body.single-post .section-contact .section-contact__btn:hover img {
  opacity: 0.3;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  body.page-template-home .section-contact .section-contact__btn,
  body.blog .section-contact .section-contact__btn,
  body.single-post .section-contact .section-contact__btn {
    margin-top: 5.3vw;
  }
}
body.page-template-home .section-contact .section-contact__btn-img,
body.blog .section-contact .section-contact__btn-img,
body.single-post .section-contact .section-contact__btn-img {
  display: block;
  margin: 0 3% 0 auto;
}
@media (max-width: 767px) {
  body.page-template-home .section-contact .section-contact__btn-img,
  body.blog .section-contact .section-contact__btn-img,
  body.single-post .section-contact .section-contact__btn-img {
    width: 27.4vw;
  }
}
body.page-template-home .section__btn-wrap,
body.blog .section__btn-wrap,
body.single-post .section__btn-wrap {
  margin-top: 36px;
}
@media (max-width: 767px) {
  body.page-template-home .section__btn-wrap,
  body.blog .section__btn-wrap,
  body.single-post .section__btn-wrap {
    margin-top: 8.5vw;
  }
}
body.page-template-home .section__btn,
body.blog .section__btn,
body.single-post .section__btn {
  display: flex;
  width: 178px;
  height: 40px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  color: var(--color_white);
  background-color: var(--color_primary);
  margin: 0 auto;
  border-radius: 28px;
  text-decoration: none;
  text-decoration: none;
}
body.page-template-home .section__btn:hover,
body.blog .section__btn:hover,
body.single-post .section__btn:hover {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}
body.page-template-home .section-post__content,
body.blog .section-post__content,
body.single-post .section-post__content {
  /* Gutenbergブロック全体 */
  /* 見出しブロック */
  margin-top: 40px;
  line-height: 1.8;
}
body.page-template-home .section-post__content :where(ul, ol, li, p),
body.blog .section-post__content :where(ul, ol, li, p),
body.single-post .section-post__content :where(ul, ol, li, p) {
  all: revert;
}
body.page-template-home .section-post__content :where(img, video),
body.blog .section-post__content :where(img, video),
body.single-post .section-post__content :where(img, video) {
  max-width: 100%;
  height: auto;
}
body.page-template-home .section-post__content > [class^=wp-block],
body.blog .section-post__content > [class^=wp-block],
body.single-post .section-post__content > [class^=wp-block] {
  margin-bottom: 1.5em;
}
body.page-template-home .section-post__content .wp-block-heading,
body.blog .section-post__content .wp-block-heading,
body.single-post .section-post__content .wp-block-heading {
  font-weight: bold;
}

body.blog .section-news,
body.single-post .section-news {
  margin-top: 0;
}
@media (max-width: 767px) {
  body.blog .section-news .section-news__post,
  body.single-post .section-news .section-news__post {
    padding-left: 0;
    padding-right: 0;
  }
  body.blog .section-news .section-news__title,
  body.single-post .section-news .section-news__title {
    width: 90vw;
  }
}/*# sourceMappingURL=common.css.map */