@charset "UTF-8";
:root {
  /* 文字色 */
  --color-gray: #333333;
  /* フォント */
  --font-dm: "DM Sans", sans-serif;
  --font-roboto: "Roboto Condensed", sans-serif;
  --font-yugothic: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
body {
  color: var(--color-gray);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  overscroll-behavior-y: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}
p {
  font-weight: 400;
  font-size: 18px;
  line-height: 2.3333333333;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }
}
a {
  color: var(--color-gray);
  text-decoration: none;
}
img {
  display: block;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dl, dd {
  margin: 0;
}
.br_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: inline;
  }
}
.br_sp {
  display: inline;
}
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}
.wholewrapper {
  min-width: 1300px;
  margin: 0 auto;
  overflow-x: hidden;
}
@media print, screen and (max-width: 1350px) {
  .wholewrapper {
    min-width: inherit;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .wholewrapper {
    min-width: 375px;
  }
}
.header {
  width: 100%;
  height: 100px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
    padding: 20px 15px;
  }
}
.header h1 img {
  width: 350px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header h1 img {
    width: 180px;
  }
}
.header .menu_button {
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 899;
  width: 60px;
  height: 60px;
  margin: 0;
  border-radius: 30px;
  border: none;
  background-color: var(--color-gray);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header .menu_button {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}
.header .menu_button span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 21px;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s, transform 0.3s;
}
@media screen and (max-width: 767px) {
  .header .menu_button span {
    width: 18px;
  }
}
.header .menu_button span:nth-of-type(1) {
  top: 24px;
}
@media screen and (max-width: 767px) {
  .header .menu_button span:nth-of-type(1) {
    top: 13px;
  }
}
.header .menu_button span:nth-of-type(2) {
  top: 30px;
}
@media screen and (max-width: 767px) {
  .header .menu_button span:nth-of-type(2) {
    top: 19px;
  }
}
.header .menu_button span:nth-of-type(3) {
  top: 36px;
}
@media screen and (max-width: 767px) {
  .header .menu_button span:nth-of-type(3) {
    top: 25px;
  }
}
.header .menu_button.open span {
  width: 23px;
}
@media screen and (max-width: 767px) {
  .header .menu_button.open span {
    width: 16px;
  }
}
.header .menu_button.open span:nth-of-type(1) {
  transform: translate(-11px, 6px) rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .header .menu_button.open span:nth-of-type(1) {
    transform: translate(-8px, 6px) rotate(-30deg);
  }
}
.header .menu_button.open span:nth-of-type(2) {
  width: 0;
}
.header .menu_button.open span:nth-of-type(3) {
  transform: translate(-11px, -6px) rotate(30deg);
}
@media screen and (max-width: 767px) {
  .header .menu_button.open span:nth-of-type(3) {
    transform: translate(-8px, -6px) rotate(30deg);
  }
}
.header .menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 580px;
  height: 800px;
  max-height: 95vh;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header .menu {
    width: 100%;
    height: 100%;
    max-height: unset;
  }
}
.header .menu.open {
  visibility: visible;
  opacity: 1;
}
.header .menu::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}
.header .menu .menu_inner {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: space-between;
  gap: 130px;
  width: 100%;
  height: 100%;
  padding: 110px 63px 49px;
  border-radius: 0 0 0 30px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header .menu .menu_inner {
    gap: 40px;
    padding: 70px 22.5px 26px;
    border-radius: 0;
  }
}
.header .menu .menu_inner::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
}
.header .menu .menu_inner::-webkit-scrollbar-thumb {
  background: rgba(165, 169, 187, 0.3);
  width: 8px;
  height: 8px;
  border-radius: 4px;
}
.header .menu .menu_top {
  width: 100%;
  position: relative;
}
.header .menu .menu_bottom {
  width: 100%;
  padding-top: 40px;
  text-align: center;
  position: relative;
}
.header .menu .menu_bottom::before {
  position: absolute;
  top: 0;
  left: 7px;
  right: 7px;
  display: block;
  content: "";
  height: 1px;
  background-color: #B6B6B6;
}
.header .menu .menu_bottom .menu_logo {
  width: 223.32px;
  height: 37px;
  margin: 0 auto 30px;
}
.header .menu .menu_bottom .menu_logo img {
  width: 100%;
  height: auto;
}
.header .menu .menu_bottom .header_menu_sub {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.header .menu .menu_bottom .header_menu_sub li {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}
.header .menu .menu_bottom .header_menu_sub li:not(:last-of-type) {
  padding-right: 16px;
  margin-right: 16px;
  position: relative;
}
.header .menu .menu_bottom .header_menu_sub li:not(:last-of-type)::after {
  position: absolute;
  top: 3.5px;
  right: 0;
  display: block;
  content: "";
  width: 1px;
  height: 12px;
  background-color: #B6B6B6;
}
.header .menu .menu_bottom p.copyright {
  margin: 10px 0 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: var(--font-yugothic);
}
@media screen and (max-width: 767px) {
  .header .menu .menu_bottom p.copyright {
    margin: 25px 0 0;
  }
}
.header .menu .bg_blob {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.header .menu .bg_blob .bg {
  position: absolute;
  z-index: -1;
}
.header .menu .bg_blob .bg.top_12 {
  top: -200px;
  left: -4px;
  animation: top_12 30s infinite;
}
@keyframes top_12 {
  0% {
    transform: translateY(0) rotate(-90deg);
  }
  50% {
    transform: translateY(10%) rotate(0);
  }
  to {
    transform: translateY(0) rotate(-90deg);
  }
}
.header .menu .bg_blob .bg.top_13 {
  top: -185px;
  left: -31px;
  animation: top_13 40s infinite;
}
@keyframes top_13 {
  0% {
    transform: translate(0) rotate(0);
  }
  50% {
    transform: translate(20%) rotate(-180deg);
  }
  to {
    transform: translate(0) rotate(0);
  }
}
.header .menu .bg_blob .bg.top_14 {
  top: 100px;
  right: -280px;
  animation: top_14 60s infinite;
}
@keyframes top_14 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(20%) rotate(-60deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@media screen and (max-width: 767px) {
  .header .menu .bg_blob .bg.top_14 {
    top: 400px;
    width: 391px;
  }
}
.header .menu .bg_blob .bg.top_15 {
  top: 307px;
  right: -194px;
  animation: top_15 10s infinite;
}
@keyframes top_15 {
  0% {
    transform: translate(0) rotate(0);
  }
  50% {
    transform: translate(30%, 20%) rotate(25deg) scale(1.5);
  }
  to {
    transform: translate(0) rotate(0);
  }
}
@media screen and (max-width: 767px) {
  .header .menu .bg_blob .bg.top_15 {
    top: 607px;
    width: 362px;
    transform: rotate(25deg);
  }
}
.header .menu .bg_blob::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  content: "";
  border-radius: 0 0 0 30px;
  background-color: rgba(255, 255, 255, 0.6);
}
.header .header_menu {
  display: flex;
  flex-flow: row wrap;
  gap: 20px 60px;
}
@media screen and (max-width: 767px) {
  .header .header_menu {
    justify-content: center;
    gap: 31px 60px;
  }
}
.header .header_menu a {
  transition: opacity 0.2s;
}
.header .header_menu a:hover {
  opacity: 0.8;
}
.header .header_menu.single {
  flex-direction: column;
}
.header .header_menu.single li > a {
  margin: 0;
  color: var(--color-gray);
}
.header .header_menu > li {
  flex: 0 1 calc((100% - 60px) / 2);
}
@media screen and (max-width: 767px) {
  .header .header_menu > li {
    width: 100%;
    flex: unset;
    text-align: center;
  }
}
.header .header_menu > li > a {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: 0;
  font-family: var(--font-dm);
}
.header .header_menu > li ul {
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .header .header_menu > li ul {
    gap: 5px;
  }
}
.header .header_menu > li ul li {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .header .header_menu > li ul li {
    font-size: 14px;
  }
}
.header .header_menu > li ul li + li {
  margin-top: 6.5px;
}
@media screen and (max-width: 767px) {
  .header .header_menu > li ul li + li {
    margin-top: 10px;
  }
}
.header .header_menu > li ul li > a {
  color: #757575;
}
.menu_bg {
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
  /*animation: bgOpen .3s;

	@keyframes bgOpen {
	0% { opacity: 0 }
	100% { opacity: 1 }
}*/
}
.contents_wrap {
  min-height: calc(100vh - 100px);
}
@media screen and (max-width: 767px) {
  .contents_wrap {
    min-height: calc(100vh - 70px);
  }
}
.news_list {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news_list {
    padding: 0 5px;
  }
}
.news_list li a {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
  padding: 19px 0 20px;
  border-bottom: 1px solid #8F8F8F;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news_list li a {
    gap: 16px;
  }
}
.news_list li .news_image {
  flex: 0 0 150px;
  height: 100px;
  border-radius: 10px;
  background: url(../media/images/common/img_about_02.png) center / cover no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news_list li .news_image {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
  }
}
.news_list li .news_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_list li span.label {
  position: relative;
  z-index: 0;
}
.news_list li span.icon {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 20px;
  background-color: #585757;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news_list li span.icon {
    width: 30px;
    height: 30px;
  }
}
.news_list li span.icon img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .news_list li span.icon img {
    width: 12px;
    height: 8px;
  }
}
.news_list li span.icon img.hover {
  display: none;
}
.news_list li span.icon::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.news_list li:hover .icon img {
  animation: scrollRight 0.5s ease;
}
@keyframes scrollRight {
  0% {
    opacity: 0;
    transform: translateX(0%);
  }
  40% {
    opacity: 0;
    transform: translateX(100%);
  }
  60% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.news_list li:hover .icon img.default {
  display: none;
}
.news_list li:hover .icon img.hover {
  display: inline;
}
.news_list li:hover .icon::before {
  transform: scaleX(1);
  transform-origin: left;
}
.news_list li span.icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid #A5A9BB;
  border-radius: 15px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .news_list li span.icon {
    display: none;
  }
}
.news_list li span.icon img {
  width: 10px;
  height: 8px;
}
.news_list li:hover .icon {
  border-width: 0;
}
.news_list li:hover .icon::before {
  background-color: var(--color-gray);
}
.news_text {
  flex: 1 1 auto;
}
@media print, screen and (min-width: 768px) {
  .news_text {
    padding-right: 70px;
  }
}
.news_text .news_tag {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  gap: 15px;
  margin: 0 0 14px;
}
@media screen and (max-width: 767px) {
  .news_text .news_tag {
    gap: 5px;
    margin: 0 0 10px;
  }
}
.news_text span.date {
  color: #A5A9BB;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
}
.news_text span.category {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  width: 110px;
  height: 25px;
  border-radius: 15px;
  background-color: #EFF0F4;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .news_text span.category {
    width: 100px;
  }
}
.news_text .news_title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news_text .news_title {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.6923076923;
    letter-spacing: 0;
  }
}
.pagination {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 15px;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin: 35px auto 0;
  }
}
.pagination li {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .pagination li {
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
  }
}
.pagination li.page {
  width: 30px;
  height: 30px;
  padding: 0 2px 2px;
  border-radius: 15px;
  background-color: #EFF0F4;
}
@media screen and (max-width: 767px) {
  .pagination li.page {
    width: 25px;
    height: 25px;
  }
}
.pagination li.page.active {
  background-color: var(--color-gray);
  color: #fff;
}
.pagination li.page a, .pagination li.page span {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pagination li:not(.page.active ~ li) li.page:not(.first) {
  display: none;
  color: #ccc;
}
.pagination li.prev, .pagination li.next {
  font-size: 0;
  width: 9.5px;
  height: 15.9px;
  background: url(../media/images/common/icn_arrow_pager.svg) center / 100% no-repeat;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pagination li.prev, .pagination li.next {
    width: 8.5px;
    height: 15.9px;
  }
}
.pagination li.prev a, .pagination li.next a {
  display: block;
  width: 100%;
  height: 100%;
}
.pagination li.prev {
  margin-right: 20px;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .pagination li.prev {
    margin-right: 10px;
  }
}
.pagination li.next {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .pagination li.next {
    margin-left: 10px;
  }
}
.pagination li:not([class]) {
  display: flex;
  align-items: flex-end;
  flex-flow: row wrap;
  justify-content: center;
  width: 20px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .pagination li:not([class]) {
    height: 25px;
  }
}
.footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  position: sticky;
  top: 100vh;
  padding: 90px 20px 120px;
  background-color: var(--color-gray);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 20px 20px;
    text-align: center;
  }
}
.footer a {
  color: #B6B6B6;
  transition: opacity 0.2s;
}
.footer a:hover {
  opacity: 0.8;
}
.footer .footer_logo a {
  color: #fff;
}
.footer .footer_logo span {
  display: block;
}
.footer .footer_logo span.ja {
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1818181818;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .footer .footer_logo span.ja {
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.footer .footer_logo span.en {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  font-family: var(--font-yugothic);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .footer .footer_logo span.en {
    font-weight: 500;
    font-size: 13.5px;
    line-height: 1.5555555556;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer_bottom {
    margin-top: 28px;
  }
}
.footer .footer_menu_sub {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 767px) {
  .footer .footer_menu_sub {
    justify-content: center;
  }
}
.footer .footer_menu_sub li {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer .footer_menu_sub li:not(:last-of-type) {
  padding-right: 16px;
  margin-right: 16px;
  position: relative;
}
.footer .footer_menu_sub li:not(:last-of-type)::after {
  position: absolute;
  top: 3.5px;
  right: 0;
  display: block;
  content: "";
  width: 1px;
  height: 12px;
  background-color: #B6B6B6;
}
.footer p.copyright {
  margin: 8px 0 0;
  color: #B6B6B6;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.4545454545;
  letter-spacing: 0;
}
.footer .footer_left {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .footer .footer_left {
    padding-right: 70px;
  }
}
.footer .footer_right {
  display: flex;
  flex-flow: row nowrap;
  gap: 50px;
  padding-left: 76px;
  border-left: 1px solid #757575;
}
@media screen and (max-width: 767px) {
  .footer .footer_right {
    display: none;
  }
}
.footer .footer_right .footer_menu {
  display: flex;
  flex-flow: row nowrap;
  gap: 50px;
}
.footer .footer_right .footer_menu.single {
  flex-direction: column;
  gap: 2px;
}
.footer .footer_right .footer_menu > li > a {
  display: block;
  margin-bottom: 13px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
  font-family: var(--font-dm);
}
.footer .footer_right .footer_menu > li ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer .footer_right .footer_menu > li ul li + li {
  margin-top: 7px;
}
body#main [data-aos="fade-up"] {
  opacity: 1;
}
/*# sourceMappingURL=./common.css.map */