@charset "UTF-8";

@media all and (max-width: 480px) {
  .u-dn-md--down {
    display: none !important;
  }
}

@media all and (max-width: 1365px) {
  .u-dn-lg--down {
    display: none !important;
  }
}

.u-dn {
  display: none !important;
}

@media all and (min-width: 481px) {
  .u-dn-md {
    display: none !important;
  }
}

@media all and (min-width: 1366px) {
  .u-dn-lg {
    display: none !important;
  }
}

@font-face {
  font-family: Segoe UI;
  src: local("Segoe UI Light"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff2) format("woff2"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff) format("woff"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf) format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: Segoe UI;
  src: local("Segoe UI Semilight"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff2) format("woff2"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff) format("woff"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.ttf) format("truetype");
  font-weight: 200;
}

@font-face {
  font-family: Segoe UI;
  src: local("Segoe UI"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff2) format("woff2"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff) format("woff"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.ttf) format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: Segoe UI;
  src: local("Segoe UI Bold"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff2) format("woff2"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff) format("woff"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.ttf) format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: Segoe UI;
  src: local("Segoe UI Semibold"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.woff2) format("woff2"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.woff) format("woff"), url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.ttf) format("truetype");
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

@media all and (min-width: 481px) {
  body {
    min-width: 0;
  }
}

#wrap {
  padding-bottom: 0;
}

@media all and (min-width: 481px) {
  #wrap {
    position: relative;
    z-index: 1;
  }
}

/* component override */
@media only screen and (max-width: 480px) {

  .header,
  .header.header-fixed,
  body.fixed-open .header {
    z-index: 1001;
  }

  .header .header-container .logo {
    top: 0;
    height: 60px;
  }

  .header .header-container .logo-normal {
    width: 146px;
    height: 28px;
    margin: 16px auto;
  }
}

header,
#breadcrumb {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
}

#wrap {
  padding: 0;
  width: 100%;
}

@media all and (min-width: 481px) {
  #wrap .bread-crumb {
    margin: 0;
    line-height: 53px;
  }
}

.footer-title,
.subcategory-list {
  margin-top: 0;
}

#main-content {
  width: 100%;
  overflow: hidden;
  color: #333;
}

@media all and (max-width: 480px) {
  #main-content * {
    /* text-align: justify; */
  }
}

#main-content article {
  background-color: #bddeed;
}

.areaShareButtons,
.footerBannerArea {
  display: none;
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
}

ol,
ul,
li {
  list-style: none;
}

.zoomOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  transform-origin: center;
}

@-webkit-keyframes zoomOutAnime {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomOutAnime {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@media all and (max-width: 480px) {
  .fadeIn {
    display: block !important;
  }
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOutAnime;
  animation-name: fadeOutAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
}

@-webkit-keyframes fadeOutAnime {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOutAnime {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutlogo {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOutlogo {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutMain {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOutMain {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.js-inView.fadeInUp {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-inView.fadeInUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  transition-delay: 0.5s;
}

footer {
  position: relative;
  z-index: 300;
}


.p-mv {
  position: relative;
  width: 100%;
  height: calc(100vw * 149 / 375);
  background-color: #bcdeed;
}

@media all and (min-width: 768px) {
  .p-mv {
    height: 225px;
  }
}

.p-mv__inner {}

.p-mv__title {
  position: absolute;
  left: 5.1%;
  bottom: calc(100vw * 29 / 375);
  font-size: calc(100vw * 29 / 375);
}

@media all and (min-width: 768px) {
  .p-mv__title {
    left: 5.7%;
    font-size: 32px;
    bottom: 47px;
  }
}

.p-mv__title-image {
  width: 105px;
}

@media all and (min-width: 768px) {
  .p-mv__title-image {
    width: auto;
    height: 30px;
  }
}

.p-mv__logo {
  position: absolute;
  left: 5.1%;
  top: calc(100vw * 33 / 375);
}

@media all and (min-width: 768px) {
  .p-mv__logo {
    top: initial;
    left: initial;
    right: 5.1%;
    bottom: 51px;
  }
}

.p-mv__logo-link {
  display: block;
  transition: opacity 0.5s;
}

.p-mv__logo-link:hover {
  opacity: 0.8;
}

.p-mv__logo-image {
  width: calc(100vw * 223 / 375);
}

@media all and (min-width: 768px) {
  .p-mv__logo-image {
    width: 390px;
  }
}

.p-section {
  position: relative;
}

.p-topics {
  position: relative;
  padding: 11.3333333333vw 5.3333333333vw 11.4666666667vw;
  background-color: #efefef;
  color: #000;
}

@media all and (min-width: 768px) {
  .p-topics {
    /* padding: 6.8374816984vw 6.588579795vw 10.2489019034vw; */
    padding: 6.8374816984vw 6.588579795vw 6.8374816984vw;
  }
}

/* ニュースコンポーネント */
.c-news {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .c-news {}
}

.c-news__item {
  position: relative;
  width: min(calc(100vw * 840 / 375), 100%);
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .c-news__item {
    width: 840px;
    padding: 30px 0 30px;
  }
}

.c-news__item+.c-news__item {
  margin-top: calc(100vw * 45 / 375);
}

@media all and (min-width: 768px) {
  .c-news__item+.c-news__item {
    margin-top: 0;
    border-top: 1px solid #ccc;
  }
}

.c-news__item+.c-news__item:before {
  content: "";
  position: absolute;
  top: calc(100vw * -20 / 375);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

@media all and (min-width: 768px) {
  .c-news__item+.c-news__item:before {
    content: none;
  }
}

.c-news__link {
  display: grid;
  grid-template:
    "news-date" auto
    "news-title" auto
    "news-tags" auto
    / 100%;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .c-news__link {
    grid-template:
      "news-date . news-title" auto
      ". . news-tags" auto
      / 91px 0 1fr;
  }

  .c-news__link:hover {
    color: inherit;
  }

  .c-news__link:hover .c-news__title {
    text-decoration: underline;
  }
}

/* .c-news__image {
} */

.c-news__date {
  grid-area: news-date;
  font-size: calc(100vw * 12 / 375);
}

@media all and (min-width: 768px) {
  .c-news__date {
    font-size: 12px;
  }
}

.c-news__title {
  grid-area: news-title;
  font-size: calc(100vw * 14 / 375);
  font-weight: normal;
  word-break: break-word;
  text-align: left !important;
  margin-top: 9px;
}

@media all and (min-width: 768px) {
  .c-news__title {
    font-size: 16px;
    margin-top: 0;
  }
}

.c-news__title span {
  font-size: 80%;
}

.c-news__tags {
  grid-area: news-tags;
  display: flex;
  flex-wrap: wrap;
  margin-top: 11px;
  gap: 2.5641025641vw 1.28205128205vw;
}

@media all and (min-width: 768px) {
  .c-news__tags {
    margin-top: 14px;
    gap: 10px 7.5px;
  }
}

.c-news__tag {
  display: flex;
  height: 5.12820512821vw;
  justify-content: center;
  background-color: #DCDCDC;
  padding: 0 2.5641025641vw;
  align-items: center;
  border-radius: 9999px;
  font-family: "Segoe UI", "Arial", "Sans serif";
  font-size: 3.07692307692vw;
  letter-spacing: 0.03em;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-news__tag {
    height: 25px;
    font-size: 12px;
    padding: 0 15px;
  }
}

/* local nav */
.l-nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(100vw * (45 + 26) / 375);
  right: calc(100vw * 20 / 375);
  width: calc(100vw * 90 / 375);
  height: calc(100vw * 32 / 375);
  border: 1px solid #000;
  box-sizing: border-box;
  border-radius: calc(100vw * 32 / 2 / 375);
  background-color: rgba(189, 222, 237, 1);
  z-index: 1000;
}

@media all and (min-width: 768px) {
  .l-nav {
    position: absolute;
    display: block;
    top: calc(1.64em + 12 * 2px);
    right: initial;
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 0;
    background-color: transparent;
  }
}

.l-nav__inn {}

@media all and (min-width: 768px) {
  .l-nav__inn {
    padding: 23px 5.2%;
  }
}

.l-nav__main {
  position: fixed;
  top: 61px;
  left: 0;
  width: 100vw;
  /* height: 100vh;
  height: 100lvh; */
  height: calc(100% - 61px);
  background-color: #2F383B;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media all and (min-width: 768px) {
  .l-nav__main {
    position: static;
    display: block;
    height: auto;
    padding: 0;
    background-color: initial;
    opacity: 1;
    visibility: visible;
  }
}

.l-nav__trigger {
  display: block;
  font-size: calc(100vw * 12 / 375);
  font-family: "UD新ゴB", "UD Shin Go Bold", sans-serif;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .l-nav__trigger {
    display: none;
  }
}

.l-nav__close {
  position: fixed;
  top: calc(100vw * 67 / 375);
  right: calc(100vw * 20 / 375);
  width: calc(100vw * 31 / 375);
  height: calc(100vw * 31 / 375);
  cursor: pointer;
  background-image: url(../imgs/icon_close.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (orientation: landscape) {
  .l-nav__close {
    top: 67px;
    right: 20px;
    width: 31px;
    height: 31px;
  }
}

@media all and (min-width: 768px) {
  .l-nav__close {
    display: none;
  }
}

.l-nav__title img {
  width: calc(100vw * 310 / 390);
}

@media all and (min-width: 768px) {
  .l-nav__title {
    display: none;
  }
}

.l-nav__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: calc(100vw * 31 / 375);
  margin-top: calc(100vw * 43 / 390);
}

@media all and (min-width: 768px) {
  .l-nav__list {
    flex-direction: row;
    gap: 28px;
    margin: 0;
  }
}

.l-nav__item {
  display: flex;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .l-nav__item {}
}

.l-nav__link {
  position: relative;
  display: inline-block;
  font-size: calc(100vw * 14 / 375);
  line-height: calc(100vw * 20 / 375);
  color: #fff;
  text-decoration: none;
  transition: color 0.5s;
  padding-left: calc(100vw * 25 / 375);
  font-family: "Segoe UI", "Arial", "Sans serif";
}

.l-nav__link.-current {}

.l-nav__link:before {
  content: '';
  position: absolute;
  top: calc(100vw * 20 / 375 / 2 - 0.5em);
  left: calc(100vw * 3 / 375);
  display: block;
  width: calc(100vw * 8 / 375);
  height: calc(100vw * 12 / 375);
  /* transform: translateY(-50%); */
  background-image: url(../imgs/icon_arrow-l-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* SPのみ */
@media all and (max-width: 767px) {
  .l-nav__main-inn {
    display: flex;
    height: calc(100vh - 61px);
    flex-direction: column;
    justify-content: center;
    padding: calc(100vw * (45 + 90 / 2) / 375) calc(100vw * 36 / 375) calc(100vw * 90 / 375);
    box-sizing: border-box;
    pointer-events: none;
  }

  .l-nav__link {
    color: #fff !important;
  }
}

@media all and (min-width: 768px) {
  .l-nav__link {
    font-size: 85.71%;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.3) !important;
    padding-left: 0;
  }

  .l-nav__link.-current {
    color: rgba(0, 0, 0, 1) !important;
  }

  .l-nav__link:before {
    content: none;
  }
}

@media (hover: hover) {
  .l-nav__link:hover {
    color: rgba(0, 0, 0, 1);
  }
}

/* local nav open */
.l-nav__main.is-open {
  opacity: 1;
  visibility: visible;
  overflow: auto;
}

.l-nav__main.is-open .l-nav__main-inn {
  pointer-events: auto;
}

@media (orientation: landscape) {
  .l-nav__main.is-open .l-nav__main-inn {
    padding: calc(100vw * (45 + 90) / 375) calc(100vw * 36 / 375) calc(100vw * 90 / 375);
    height: auto;
  }
}

/* local nav fixed */
.l-nav.is-fixed {
  position: fixed;
  background-color: rgba(189, 222, 237, 0.85) !important;
}

.l-nav.is-fixed .l-nav__link {
  color: rgba(0, 0, 0, 0.3) !important;
}

.l-nav.is-fixed .l-nav__link.-current,
.l-nav.is-fixed .l-nav__link.is-current,
.l-nav.is-fixed .l-nav__link:hover {
  color: rgba(0, 0, 0, 1) !important;
}