@charset "UTF-8";
/*
---
---------------------------------------------------------------------------*/
.header {
  display: flex;
  flex-wrap: wrap;
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
}
.header__left {
	width: 40%;
  max-width: 400px;
  position: relative;
  background-color: #fff;
  transition: all .5s;
}
/*@media (min-width: 768px) {
  body.scrolled .header__left {
    width: 340px;
  }
}*/
@media (max-width: 767px) {
  .header__left {
    display: flex;
    align-items: center;
    width: auto;
  }
}
.header__logo {
  /*position: absolute;*/
  width: 100%;
  padding: 10px 20px 10px;
  top: 0;
  left: 0;
  background-color: #fff;
  text-align: center;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .header__logo {
    transform-origin: center top;
    transition: all .5s;
  }
  body.scrolled .header__logo {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    position: relative;
    padding: 5px 10px;
    text-align: left;
    font-size: 1rem;
  }
}
.header__logo img {
  width: 394px;
}
/*@media (min-width: 768px) {
  body.scrolled .header__logo img {
    width: 250px;
  }
}*/
@media (max-width: 767px) {
  .header__logo img {
    width: 214px;
  }
}
.header__right {
  flex-grow: 1;
}
.header__main-menu {
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
	height: 100%;
}
@media (max-width: 767px) {
  .header__main-menu {
    height: 100%;
  }
}
.header__sub-menu {
  display: flex;
}
@media (max-width: 767px) {
  .header__sub-menu {
    display: none;
  }
}
.header__sub-menu > li > a {
  display: flex;
	height: 100%;
  width: 90px;
  font-size: 1.2rem;
  line-height: 1.1;
  min-height: 90px;
  flex-direction: column;
  row-gap: 4px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: inherit;
  padding-top: 50%;
  position: relative;
  border-left: 1px solid var(--color-border-gray);
}
.header__sub-menu > li > a:hover {
  background-color: #e9e9e9;
}
.header__sub-menu > li > a > img {
  position: absolute;
  width: 30px;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.header__hamburger {
  width: 90px;
  background-color: var(--color-key);
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 1.4rem;
  row-gap: 4px;
  font-weight: 200;
  letter-spacing: 1px;
  min-height: 90px;
}
@media (max-width: 767px) {
  .header__hamburger {
    width: 75px;
    min-height: 75px;
    row-gap: 2px;
    font-size: 1.1rem;
  }
}
.header__hamburger span {
  width: 40px;
  height: 22px;
  border-width: 2px 0;
  border-style: solid;
  display: flex;
  align-items: center;
  transition: all .5s;
}
@media (max-width: 767px) {
  .header__hamburger span {
    width: 30px;
    height: 18px;
  }
}
.header__hamburger:hover span {
  width: 30px;
}
.header__hamburger span:before {
  content: '';
  display: block;
  width: 100%;
  border-top: 2px solid;
}
.header__stakeholder {
	width: 100%;
  background-color: var(--color-font);
  display: flex;
  justify-content: flex-end;
  column-gap: 40px;
  padding: 0 20px;
  transform-origin: center top;
  transition: transform .5s, visibility 0s, height 0s;
  /*-------------
  *スクロール時ロゴ非表示
  body.scrolled & {
  	transition: transform .5s, visibility 0s .5s, height 0s .5s;
  	transform: scaleY(0);
  	visibility: hidden;
  	height: 0;
  }
  *---------------*/
}
ul.header__stakeholder > li.menu-item-has-children {
    position: relative;
}
ul.header__stakeholder > li.menu-item-has-children ul.sub-menu {
	display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 250%;
    padding: 5px;
	background-color: #f7f7f7;
}
ul.header__stakeholder > li.menu-item-has-children ul.sub-menu li + li {
	margin-top: 5px;
}
ul.header__stakeholder > li.menu-item-has-children ul.sub-menu a {
	position: relative;
	display: block;
	background-color: #fff;
	padding: 8px 10px 8px 8px;
	color: inherit;
	font-size: 1.2rem;
}
ul.header__stakeholder > li.menu-item-has-children ul.sub-menu a:hover {
	background-color: #5d1d82;
	color: #fff;
}
ul.header__stakeholder > li.menu-item-has-children ul.sub-menu a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%) rotate(45deg);
	width: 5px;
	height: 5px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transition: 0.5s;
}
ul.header__stakeholder > li.menu-item-has-children ul.sub-menu a:hover::after {
	right: 5px;
	border-color: #fff;
}

@media (max-width: 767px) {
  .header__stakeholder {
    display: none;
  }
}
.header__stakeholder > li > a {
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 0;
  line-height: 1;
  display: block;
}
@media (max-width: 1023px) {
  .header__stakeholder > li > a {
    font-size: 1.2rem;
  }
}
.header__stakeholder > li > a:hover {
  opacity: .5;
}

/*
---
---------------------------------------------------------------------------*/
.drawer-menu {
  display: flex;
  column-gap: 60px;
}
@media (max-width: 767px) {
  .drawer-menu {
    flex-direction: column;
    row-gap: 20px;
  }
}
.drawer-menu__left {
  width: 100%;
}
@media (min-width: 768px) {
  .drawer-menu__left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
  }
}
.drawer-menu__left a {
  display: block;
}
.drawer-menu__left > li {
  border-bottom: 1px solid var(--color-border-gray);
}
@media (min-width: 768px) {
  .drawer-menu__left > li {
    width: calc( (100% - 40px) / 2 );
  }
}
@media (min-width: 1024px) {
  .drawer-menu__left > li {
    width: calc( (100% - 80px) / 3 );
  }
}
@media (min-width: 768px) {
  .drawer-menu__left > li:nth-of-type(1) {
    width: 100%;
  }
}
.drawer-menu__left > li > a {
  color: inherit;
  font-size: 1.8rem;
  padding: 20px 30px 20px 10px;
  background-image: url("../images/arrow-border-10x16-purple-next.png");
  background-position: right 5px center;
  background-size: 10px auto;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 768px) {
  .drawer-menu__left > li > a {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .drawer-menu__left > li > a {
    font-size: 1.6rem;
    padding: 15px 30px 15px 10px;
  }
}
.drawer-menu__left > li.menu-item-has-children > a {
  background-image: none;
}
.drawer-menu__left > li:nth-of-type(1) > a {
  pointer-events: auto;
}
.drawer-menu__left > li.menu-item-has-children > a:before, .drawer-menu__left > li.menu-item-has-children > a:after {
  width: 14px;
  border-top: 1px solid var(--color-key);
  top: 50%;
  right: 6px;
  content: '';
  position: absolute;
  transition: all .5s;
}
@media (min-width: 768px) {
  .drawer-menu__left > li.menu-item-has-children > a:before, .drawer-menu__left > li.menu-item-has-children > a:after {
    content: none;
  }
}
.drawer-menu__left > li.menu-item-has-children > a:before {
  transform: translateY(-50%);
}
.drawer-menu__left > li.menu-item-has-children > a:after {
  transform: translateY(-50%) rotate(90deg);
}
.drawer-menu__left > li.menu-item-has-children > a.open:after {
  transform: translateY(-50%) rotate(0deg);
}
.drawer-menu__left > li > .sub-menu {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .drawer-menu__left > li > .sub-menu {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .drawer-menu__left > li > .sub-menu {
    display: none;
  }
}
.drawer-menu__left > li > .sub-menu > li + li {
  margin-top: 10px;
}
.drawer-menu__left > li > .sub-menu > li > a {
  color: var(--color-font-gray);
  padding-left: 30px;
  font-size: 1.4rem;
}
.drawer-menu__right {
  width: 240px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .drawer-menu__right {
    width: 100%;
  }
}
.drawer-menu__right > li > a {
  color: inherit;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .drawer-menu__right > li > a {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .drawer-menu__right__button {
    padding: 0 10px;
  }
}
.drawer-menu__right__button > ul > li > a {
  color: inherit;
  background-color: var(--color-light-purple);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 4px 10px;
  column-gap: 10px;
  position: relative;
  font-size: 1.4rem;
}
.drawer-menu__right__button > ul > li > a:hover {
  color: var(--color-key);
}
.drawer-menu__right__button > ul > li > a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 2px solid var(--color-key);
  opacity: 0;
  transition: all .5s;
}
.drawer-menu__right__button > ul > li > a:hover:before {
  opacity: 1;
}
.drawer-menu__right__button > ul > li > a:after {
  content: '';
  background-image: url("../images/arrow-border-10x16-purple-next.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 10px;
  height: 16px;
  flex-shrink: 0;
}
.drawer-menu__right__button > ul > li > a[target="_blank"]:after {
  background-image: url("../images/window-16x16-purple.png");
  width: 16px;
}
.drawer-menu .header__sub-menu {
  display: none;
}
@media (max-width: 767px) {
  .drawer-menu .header__sub-menu {
    display: flex;
    background-color: #f2f2f2;
    max-width: 360px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.drawer-menu .header__sub-menu > li {
  width: 25%;
}
.drawer-menu .header__sub-menu > li > a {
  max-width: 100%;
}
.drawer-menu .header__sub-menu > li:nth-of-type(1) > a {
  border-left-width: 0;
}

/*
---
---------------------------------------------------------------------------*/
.main {
  overflow: hidden;
}

section:after,
.contents_body-sb:after {
  content: '';
  display: table;
  clear: both;
}

.contents_body-sb {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.contents_body-sb > :first-child {
  margin-top: 0 !important;
}
.contents_body-sb > :last-child {
  margin-bottom: 0 !important;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.container > :first-child {
  margin-top: 0 !important;
}
.container > :last-child {
  margin-bottom: 0 !important;
}

.container--600 {
  max-width: calc(600px + 40px);
}

.containerNP--600 {
  max-width: 600px;
  padding-right: 0;
  padding-left: 0;
}

.container--700 {
  max-width: calc(700px + 40px);
}

.containerNP--700 {
  max-width: 700px;
  padding-right: 0;
  padding-left: 0;
}

.container--800 {
  max-width: calc(800px + 40px);
}

.containerNP--800 {
  max-width: 800px;
  padding-right: 0;
  padding-left: 0;
}

.container--900 {
  max-width: calc(900px + 40px);
}

.containerNP--900 {
  max-width: 900px;
  padding-right: 0;
  padding-left: 0;
}

.container--1000 {
  max-width: calc(1000px + 40px);
}

.containerNP--1000 {
  max-width: 1000px;
  padding-right: 0;
  padding-left: 0;
}

.container--1100 {
  max-width: calc(1100px + 40px);
}

.containerNP--1100 {
  max-width: 1100px;
  padding-right: 0;
  padding-left: 0;
}

.container--1200 {
  max-width: calc(1200px + 40px);
}

.containerNP--1200 {
  max-width: 1200px;
  padding-right: 0;
  padding-left: 0;
}

.container--1300 {
  max-width: calc(1300px + 40px);
}

.containerNP--1300 {
  max-width: 1300px;
  padding-right: 0;
  padding-left: 0;
}

.container--1400 {
  max-width: calc(1400px + 40px);
}

.containerNP--1400 {
  max-width: 1400px;
  padding-right: 0;
  padding-left: 0;
}

.box > :first-child {
  margin-top: 0 !important;
}
.box > :last-child {
  margin-bottom: 0 !important;
}

.remodal-wrapper {
  padding: 10px;
}

@media (max-width: 767px) {
  .remodal {
    padding: 35px 10px 30px;
  }
}

/*
---
---------------------------------------------------------------------------*/
.common-banner {
  background-color: var(--color-light-purple);
  padding: 40px 10px;
}
.common-banner__layer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
  position: relative;
}
.common-banner__swiper {
  overflow: hidden;
}
.common-banner__swiper__arrow {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 12px auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 20;
}
.common-banner__swiper__arrow.swiper-button-disabled {
  pointer-events: none;
  opacity: .25;
}
.common-banner__swiper__prev {
  background-image: url("../images/arrow-border-12x19-purple-prev.png");
  left: 0;
  background-position: calc(50% - 1px) center;
}
.common-banner__swiper__next {
  background-image: url("../images/arrow-border-12x19-purple-next.png");
  right: 0;
  background-position: calc(50% + 1px) center;
}
.common-banner__swiper__item:hover {
  opacity: .5;
}

.swiper-default__arrow {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 12px auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 20;
}
.swiper-default__arrow.swiper-button-disabled {
  pointer-events: none;
  opacity: .25;
}
.swiper-default__prev {
  background-image: url("../images/arrow-border-12x19-purple-prev.png");
  left: 0;
  background-position: calc(50% - 1px) center;
}
.swiper-default__next {
  background-image: url("../images/arrow-border-12x19-purple-next.png");
  right: 0;
  background-position: calc(50% + 1px) center;
}

/*
---
---------------------------------------------------------------------------*/
.top-news-wrapper {
  display: none;
}

.top-news-wrapper.active {
  display: block;
}

/*
---
---------------------------------------------------------------------------*/
br.footer-only:not(ul.footer__menu__sub br.footer-only) {
  display: none;
}

.footer {
  padding-top: 50px;
  background-color: #f7f7f7;
}
.footer__info {
  display: flex;
  column-gap: 60px;
  align-items: center;
}
@media (max-width: 1023px) {
  .footer__info {
    column-gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer__info {
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.footer__logo {
  width: 425px;
  max-width: 40%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: none;
    width: 276px;
  }
}
.footer__menu {
  margin-top: 70px;
  display: flex;
  column-gap: 40px;
}
@media (max-width: 1023px) {
  .footer__menu {
    column-gap: 30px;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    display: none;
  }
}
.footer__menu__top {
  width: calc( (100% - 160px) / 5 );
  flex-shrink: 0;
  color: inherit;
}
@media (max-width: 1023px) {
  .footer__menu__top {
    width: calc( (100% - 120px) / 5 );
  }
}
.footer__menu__sub {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 40px;
}
@media (max-width: 1023px) {
  .footer__menu__sub {
    column-gap: 30px;
  }
}
.footer__menu__sub > li {
  width: calc( (100% - 120px) / 4 );
}
@media (max-width: 1023px) {
  .footer__menu__sub > li {
    width: calc( (100% - 90px) / 4 );
  }
}
.footer__menu__sub a {
  display: block;
}
.footer__menu__sub > li > a {
  display: block;
  color: inherit;
}
@media (max-width: 1023px) {
  .footer__menu__sub > li > a {
    font-size: 1.4rem;
  }
}
.footer__menu__sub > li > .sub-menu {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.footer__menu__sub > li > .sub-menu > li > a {
  font-size: 1.4rem;
  color: var(--color-font-gray);
}
@media (max-width: 1023px) {
  .footer__menu__sub > li > .sub-menu > li > a {
    font-size: 1.2rem;
  }
}
.footer__menu__sub > li > .sub-menu > li > a:hover {
  opacity: .5;
}
.footer__menu__other > ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.footer__menu__other > ul > li > a {
  color: inherit;
}
@media (max-width: 1023px) {
  .footer__menu__other > ul > li > a {
    font-size: 1.4rem;
  }
}
.footer__menu__other > ul > li > a:hover {
  opacity: .5;
}
.footer__menu__button {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
.footer__menu__button > ul > li > a {
  color: inherit;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 4px 10px;
  column-gap: 10px;
  width: 260px;
  position: relative;
}
.footer__menu__button > ul > li > a:hover {
  color: var(--color-key);
}
.footer__menu__button > ul > li > a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 2px solid var(--color-key);
  opacity: 0;
  transition: all .5s;
}
.footer__menu__button > ul > li > a:hover:before {
  opacity: 1;
}
.footer__menu__button > ul > li > a:after {
  content: '';
  background-image: url("../images/arrow-border-10x16-purple-next.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 10px;
  height: 16px;
  flex-shrink: 0;
}
.footer__menu__button > ul > li > a[target="_blank"]:after {
  background-image: url("../images/window-16x16-purple.png");
  width: 16px;
}
.footer__copyright {
  margin-top: 80px;
  background-color: var(--color-key);
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 50px;
  }
}

/*
---
---------------------------------------------------------------------------*/
.sidelink {
  position: fixed;
  top: 50%;
  left: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  z-index: 100;
  transform: translateY(-50%);
  width: 100%;
}
@media (max-width: 767px) {
  .sidelink {
    top: auto;
    transform: none;
    bottom: 0;
    left: 0;
    position: sticky;
    flex-direction: row;
  }
}
.sidelink__tab {
  display: flex;
  transform: translateX(-64px);
  transition: all .5s;
  max-width: 824px;
}
@media (max-width: 767px) {
  .sidelink__tab {
    transform: none;
    max-width: none;
    width: 50%;
  }
}
.sidelink__tab:has(.open) {
  transform: translateX(-100%);
}
@media (max-width: 767px) {
  .sidelink__tab:has(.open) {
    transform: none;
  }
}
.sidelink__swicher {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  column-gap: 4px;
  color: #fff;
  font-size: 1.4rem;
  background-color: var(--bg-color);
  align-items: center;
  padding: 20px 16px 20px 2px;
  background-image: url("../images/arrow-border-10x16-white-next.png");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: right 6px center;
  border-radius: 10px 0 0 10px;
  justify-content: center;
  width: 64px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sidelink__swicher {
    width: 100%;
    background-size: 10px;
    background-position: right 4px center;
    padding: 4px 20px;
    writing-mode: horizontal-tb;
    border-radius: 10px 10px 0 0;
    min-height: 50px;
    background-image: url("../images/arrow-border-16x10-white-bottom.png");
  }
}
.sidelink__swicher:hover {
  background-position: right 0px center;
}
@media (max-width: 767px) {
  .sidelink__swicher:hover {
    background-position: right 4px center;
  }
}
.sidelink__swicher__icon {
  flex-shrink: 0;
  aspect-ratio: 20 / 15;
}
.sidelink__contents {
  flex-grow: 1;
}
@media (min-width: 768px) {
  .sidelink__contents {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .sidelink__contents {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    border-top: 1px solid;
  }
}
.sidelink__banner {
  display: flex;
  gap: 10px;
  padding: 10px;
  align-items: center;
  background-color: #fff;
}
@media (max-width: 767px) {
  .sidelink__banner {
    flex-wrap: wrap;
  }
}
.sidelink__banner__item {
  width: calc( (100% - 20px) / 3 );
}
@media (max-width: 767px) {
  .sidelink__banner__item {
    width: calc( (100% - 10px) / 2 );
  }
}
.sidelink__banner__item img {
  width: 100%;
}
.sidelink__banner__close {
  position: absolute;
  width: 40px;
  aspect-ratio: 1;
  background-color: #fff;
  color: inherit;
  bottom: calc( 100% );
  right: 10px;
  border-style: solid;
  border-width: 1px 1px 0;
}
.sidelink__banner__close:before, .sidelink__banner__close:after {
  content: '';
  position: absolute;
  width: 50%;
  border-top: 2px solid;
  top: 50%;
  left: 50%;
}
.sidelink__banner__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sidelink__banner__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*
---
---------------------------------------------------------------------------*/
.go_page_top {
  position: fixed;
  bottom: 5px;
  right: 5px;
  opacity: 0;
  z-index: 100;
  cursor: pointer;
  width: 85px;
  height: 85px;
  transition: all .5s;
  border-radius: 5px;
  background-color: #4d4d4d;
}
@media screen and (max-width: 767px) {
  .go_page_top {
    width: 50px;
    height: 50px;
  }
}
.go_page_top img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.scrolled .go_page_top {
  opacity: 0.65;
}

.notouch.scrolled .go_page_top:hover {
  opacity: 1;
}

.grecaptcha-badge {
  visibility: hidden;
}
