@charset "UTF-8";

/*--------------------------------------------------------------
- header
--------------------------------------------------------------*/
:focus-visible {
  outline: 1px solid !important;
}

.h-sp {
  display: none !important;
}

.h-pc {
  display: block !important;
}

@media screen and (max-width: 920px) {
  .h-sp {
    display: block !important;
  }

  .h-pc {
    display: none !important;
  }
}


.l-header {
  position: relative;
  width: 100%;
}

.p-header {
  background-color: #fff;
  border-bottom: 1px solid #dddddd;
  z-index: 100;
}

.is-fixed .p-header {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid #dddddd;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
  -webkit-animation: header 0.3s;
  animation: header 0.3s;
}

@-webkit-keyframes header {
  0% {
    top: -70px;
  }
  100% {
    top: 0;
  }
}
@keyframes header {
  0% {
    top: -70px;
  }
  100% {
    top: 0;
  }
}
.p-header__body {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 120px;
  height: 102px;
  background-color: #f03333;
}

.p-header__logo a picture {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.p-header__logo a img {
  width: 78px;
}

.is-fixed .p-header__logo {
  display: none;
}

.p-header__fixedLogo {
  display: none;
}

.is-fixed .p-header__fixedLogo {
  display: block;
}

.p-header__fixedLogo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 120px;
  height: 70px;
  background-color: #f03333;
}

.p-header__fixedLogo a picture {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.p-header__fixedLogo a img {
  width: 78px;
}

.p-header__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 102px;
  padding-left: 16px;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.is-fixed .p-header__right {
  height: auto;
  border-bottom: none;
}

.p-header-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 16px;
}

.p-header-sub__nav {
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header-sub__navItem:not(:first-of-type) {
  margin-left: 24px;
}

.p-header-sub__navItem > a {
  position: relative;
  display: block;
  padding-left: 12px;
  font-size: 1.4rem;
  line-height: 16px;
  font-weight: 500;
}

.p-header-sub__navItem > a::before {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: url(../images/common/icon_arrow02_b.svg) no-repeat center / cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-header-sub__navItem > a.icon-sitemap,
.p-header-sub__navItem > a.icon-contact,
.p-header-sub__navItem > a.icon-global {
  padding-left: 20px;
}

.p-header-sub__navItem > a.icon-sitemap::before,
.p-header-sub__navItem > a.icon-contact::before,
.p-header-sub__navItem > a.icon-global::before {
  width: 16px;
  height: 16px;
}

.p-header-sub__navItem > a.icon-sitemap::before {
  background: url(../images/common/header_icon_sitemap.svg) center/100% 100% no-repeat;
}

.p-header-sub__navItem > a.icon-contact::before {
  background: url(../images/common/header_icon_contact.svg) center/100% 100% no-repeat;
}

.p-header-sub__navItem > a.icon-global::before {
  background: url(../images/common/header_icon_global.svg) center/100% 100% no-repeat;
}

.is-fixed .p-header-sub {
  display: none;
}

.p-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 920px) {
  .p-header {
    position: fixed;
    top: 0;
    left: 0;
  }

  .is-fixed .p-header {
    -webkit-animation: none;
    animation: none;
  }

  .p-header__logo {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-left: 15px;
  }

  .p-header__logo a {
    width: auto;
    height: 54px;
    background-color: transparent;
  }

  .p-header__logo a img {
    width: 62px;
  }

  .is-fixed .p-header__logo {
    display: block;
  }

  .is-fixed .p-header__fixedLogo {
    display: none;
  }

  .p-header__right {
    width: 100%;
    height: calc( 100dvh - 54px );
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: #fff;
    position: absolute;
    top: 55px;
    left: 0;
    -webkit-transition: opacity ease 0.3s;
    transition: opacity ease 0.3s;
    opacity: 0;
    display: none;
  }

  .is-active .p-header__right {
    opacity: 1;
    display: flex;
  }

  .p-header-main {
    order: -1;
  }

  .p-header-main nav {
    width: 100%;
  }

  .p-header-sub {
    margin-top: 24px;
    padding-bottom: 40px;
    display: block;
  }

  .p-header-sub__nav {
    display: block;
    padding: 0;
  }

  .p-header-sub__navItem:not(:first-of-type) {
    margin-left: 0;
  }

  .p-header-sub__navItem > a {
    padding: 13px 20px 13px 28px;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    background-color: #F5F5F5;
    border-bottom: 1px solid #D6D6D6;
  }

  .p-header-sub__navItem > a::before {
    left: 16px;
  }

  .p-header-sub__navItem > a.icon-sitemap,
  .p-header-sub__navItem > a.icon-contact,
  .p-header-sub__navItem > a.icon-global {
    padding-left: 40px;
  }

  .p-header-sub__navItem > a.icon-sitemap::before,
  .p-header-sub__navItem > a.icon-contact::before,
  .p-header-sub__navItem > a.icon-global::before {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-header .u-pc {
    display: none;
  }

  .p-header .u-sp {
    display: inline-block;
  }
}
/*ヘッダーナビ
--------------------------------------------------------------------*/
.p-globalNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-globalNav__item:not(:last-of-type) {
  margin-right: 32px;
}

@media screen and (max-width: 1200px) {
  .p-globalNav__item:not(:last-of-type) {
    margin-right: 13px;
  }
}

@media screen and (max-width: 920px) {
  .p-globalNav__item:not(:last-of-type) {
    margin-right: 0;
  }

  .p-globalNav__item .p-menu__contents {
    margin-bottom: 24px;
  }
}

.p-globalNav__link {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 70px;
  color: #000;
  cursor: pointer;
}

.p-globalNav__link::after {
  content: '';
  width: 100%;
  height: 4px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .6s;
}

.p-globalNav__link.link-arrow > span {
  position: relative;
  display: block;
  padding-right: 18px;
}

.p-globalNav__link.link-arrow > span::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 9px solid #272727;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.p-globalNav__link:hover {
  opacity: 1;
}

.p-globalNav__link:hover::after {
  background-color: #f03333;
}

.p-globalNav__link.is-carrent {
  color: #f03333;
}

.p-globalNav__link.is-carrent::after {
  background-color: #f03333;
}

.p-globalNav__link.link-arrow.is-carrent > span::after {
  border-top: 9px solid #f03333;
}

.p-globalNav__link.is-active::after {
  background-color: #f03333;
}

@media screen and (max-width: 920px) {
  .p-globalNav {
    flex-direction: column;
  }

  .p-globalNav__link {
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 13px 16px;
    font-size: 2.0rem;
    line-height: 1.4;
    border-bottom: 1px solid #D6D6D6;
  }

  .p-globalNav__link::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 11px;
    margin-right: 12px;
    background: url(../images/common/icon_arrow02_b.svg) no-repeat center / cover;
  }

  .p-globalNav__link:hover::after {
    background-color: transparent;
  }
}
/*メガメニュー & ハンバーガーメニュー
--------------------------------------------------------------------*/
.p-menu {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 103px;
  left: 0;
  transition: all .6s;
  opacity: 0;
  visibility: hidden;
}

.p-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.is-fixed .p-menu {
  top: 71px;
}

.p-menu__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}

@media screen and (max-width: 1200px) {
  .p-menu__inner {
    padding: 0 40px;
  }
}

.p-menu__contents {
  padding-top: 40px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
}

@media screen and (max-width: 1200px) {
  .p-menu__contents {
    display: block;
  }
}

@media screen and (max-width: 920px) {
  .p-menu {
    position: static;
    opacity: 1;
    visibility: visible;
  }
  
  .p-menu__inner {
    padding: 0;
  }

  .p-menu__contents {
    padding: 0;
  }
}

.p-menu__heading {
  font-weight: 700;
}

.p-menu__heading.--primary {
  font-size: 2.8rem;
  line-height: 1.5;
}

.p-menu__heading.--secondary {
  padding: 6px 16px;
  background-color: #F5F5F5;
  font-size: 2.0rem;
  line-height: 1.5;
}

.p-menu__heading.--tertiary {
  position: relative;
  padding-left: 22px;
  font-size: 1.8rem;
  line-height: 1.4;
}

.p-menu__heading.--tertiary::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background-color: #f03333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 920px) {
  .p-menu__heading.--primary {
    padding: 13px 16px;
    font-size: 2.0rem;
    line-height: 1.4;
  }

  .p-menu__heading.--secondary {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 2px 40px 2px 16px;
    font-size: 1.6rem;
    border-bottom: 1px solid #272727;
  }

  .p-menu__heading.--secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 14px;
    height: 14px;
    background: url(../images/common/header_icon_menu_accordion.svg) no-repeat center / cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-menu__heading.--secondary.is-open::after {
    background-image: url(../images/common/header_icon_menu_accordion02.svg);
  }

  .p-menu__heading.--tertiary {
    padding: 8px 16px 8px 38px;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .p-menu__heading.--tertiary::before {
    left: 16px;
  }
}

.p-menu__group {
  padding-left: 60px;
  display: grid;
}

@media screen and (max-width: 1200px) {
  .p-menu__group {
    margin-top: 30px;
    padding-left: 0;
  }
}

@media screen and (max-width: 920px) {
  .p-menu__group {
    margin-top: 0;
    padding: 0 16px;
    display: block;
    border-top: 1px solid #D6D6D6;
  }
}

.p-menu__group > div {
  position: relative;
}

.p-menu__group > div:not(:first-of-type)::before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #D6D6D6;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-01 .p-menu__group {
  grid-template-columns: 1fr 28.7%;
  gap: 100px;
}

.menu-01 .p-menu__group > div:not(:first-of-type)::before {
  left: -50px;
}

.menu-02 .p-menu__group {
  grid-template-columns: 32% 27.3% 1fr;
  gap: 40px;
}

.menu-02 .p-menu__group > div:not(:first-of-type)::before {
  left: -20px;
}

.menu-03 .p-menu__group {
  grid-template-columns: 1fr 35%;
  gap: 110px;
}

.menu-03 .p-menu__group > div:not(:first-of-type)::before {
  left: -55px;
}

.menu-04 .p-menu__group {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}

.menu-04 .p-menu__group > div:not(:first-of-type)::before {
  left: -40px;
}

.p-menu__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 20px;
}

@media screen and (max-width: 920px) {
  .p-menu__grid {
    margin-top: 0;
    display: block;
  }
}

.p-menu__linkList {
  margin-top: 40px;
}

.p-menu__grid .p-menu__linkList {
  margin-top: 0;
}

.p-menu__linkList > li:not(:first-of-type) {
  margin-top: 20px;
}

.p-menu__linkList.p-menu__listGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.p-menu__linkList.p-menu__listGrid > li:not(:first-of-type) {
  margin-top: 0;
}

.p-menu__linkList > li > a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: 22px;
  font-weight: 700;
}

.p-menu__linkList > li > a::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: url(../images/common/arrow_breadcrumb.svg) no-repeat center -2px/24px;
}

.p-menu__linkList > li > a[target="_blank"]::after {
  background: url(../images/common/icon_blank_gr.svg) no-repeat center/14px;
}

.p-menu__linkList > li > a[href$=".pdf"]::after {
  background: url(../images/common/icon_pdf.svg) no-repeat center/100%;
}

@media screen and (max-width: 920px) {
  .p-menu__linkList {
    margin-top: 0;
  }

  .p-menu__linkList > li:not(:first-of-type) {
    margin-top: 0;
  }
  
  .p-menu__linkList.p-menu__listGrid {
    display: block;
  }

  .p-menu__linkList > li {
    border-bottom: 1px solid #D6D6D6;
  }

  .p-menu__linkList > li > a {
    padding: 15px 16px 15px 25px;
  }

  .p-menu__linkList > li > a::after {
    display: none;
  }

  .p-menu__linkList > li > a[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 16px;
    background: url(../images/common/icon_blank_gr.svg) no-repeat center/14px;
  }

  .p-menu__linkList > li > a[href$=".pdf"]::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 16px;
    background: url(../images/common/icon_pdf.svg) no-repeat center/100%;
  }

  .p-menu__linkList > li > a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 8px;
    margin-right: 8px;
    background: url(../images/common/icon_arrow02_b.svg) no-repeat center / cover;
  }
}

.p-menu__close {
  width: 100%;
  position: relative;
  padding: 10px !important;
  background-color: #F5F5F5;
  cursor: pointer;
  text-align: center;
}

.p-menu__close::after {
  content: '';
  width: 100%;
  height: 100vh;
  background-color:rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 40px;
  left: 0;
}

.p-menu__close > span {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
}

.p-menu__close > span::before,
.p-menu__close > span::after {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background-color: #272727;
  position: absolute;
  top: 50%;
}

.p-menu__close > span::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.p-menu__close > span::after {
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 920px) {
  .p-menu__close {
    display: none;
  }
}

@media screen and (max-width: 920px) {
  .p-menu__acc {
    display: none;
  }
}
/*ハンバーガーボタン
--------------------------------------------------------------------*/
.p-hamburgerBtn {
  display: none;
  width: 135px;
  height: 70px;
  padding-left: 66px !important;
  background-color: #272727;
  color: #fff;
  text-align: left;
  z-index: 1000;
  position: absolute;
  top: 0;
  right: 0;
}

.is-active .p-hamburgerBtn {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #f03333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.is-active.is-fixed .p-hamburgerBtn {
  -webkit-animation: none;
  animation: none;
}

@media screen and (min-width: 919px) {
  .is-active .p-hamburgerBtn {
    -webkit-animation: top 0.3s;
    animation: top 0.3s;
  }

  @-webkit-keyframes top {
    0% {
      top: -70px;
    }
    100% {
      top: 0;
    }
  }
  @keyframes top {
    0% {
      top: -70px;
    }
    100% {
      top: 0;
    }
  }
}

.p-hamburgerBtn:before {
  margin-top: -3px;
  -webkit-transition: margin ease 0.3s 0.3s, -webkit-transform ease 0.3s 0s;
  transition: margin ease 0.3s 0.3s, -webkit-transform ease 0.3s 0s;
  transition: margin ease 0.3s 0.3s, transform ease 0.3s 0s;
  transition: margin ease 0.3s 0.3s, transform ease 0.3s 0s, -webkit-transform ease 0.3s 0s;
}

.is-active .p-hamburgerBtn:before {
  margin: 0;
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg);
  -webkit-transition: margin ease 0.3s 0s, -webkit-transform ease 0.3s 0.3s;
  transition: margin ease 0.3s 0s, -webkit-transform ease 0.3s 0.3s;
  transition: margin ease 0.3s 0s, transform ease 0.3s 0.3s;
  transition: margin ease 0.3s 0s, transform ease 0.3s 0.3s, -webkit-transform ease 0.3s 0.3s;
}

.p-hamburgerBtn:after {
  margin-top: 3px;
  -webkit-transition: margin ease 0.3s 0.3s, -webkit-transform ease 0.3s 0s;
  transition: margin ease 0.3s 0.3s, -webkit-transform ease 0.3s 0s;
  transition: margin ease 0.3s 0.3s, transform ease 0.3s 0s;
  transition: margin ease 0.3s 0.3s, transform ease 0.3s 0s, -webkit-transform ease 0.3s 0s;
}

.is-active .p-hamburgerBtn:after {
  margin: 0;
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg);
  -webkit-transition: margin ease 0.3s 0s, -webkit-transform ease 0.3s 0.3s;
  transition: margin ease 0.3s 0s, -webkit-transform ease 0.3s 0.3s;
  transition: margin ease 0.3s 0s, transform ease 0.3s 0.3s;
  transition: margin ease 0.3s 0s, transform ease 0.3s 0.3s, -webkit-transform ease 0.3s 0.3s;
}

.p-hamburgerBtn__text {
  font-size: 13px;
}

.is-active .p-hamburgerBtn__text span {
  display: none;
}

.is-active .p-hamburgerBtn__text::before {
  content: "Close";
  visibility: visible;
}

@media screen and (max-width: 1064px) {
  .p-hamburgerBtn {
    width: 100px;
    padding-left: 46px !important;
  }

  .p-hamburgerBtn::before, .p-hamburgerBtn::after {
    left: 22px;
  }

  .p-hamburgerBtn__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 920px) {
  .p-hamburgerBtn {
    display: block;
    width: 54px;
    height: 54px;
    padding: 0 !important;
  }

  .p-hamburgerBtn::before, .p-hamburgerBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 2px;
    background-color: #fff;
  }

  .p-hamburgerBtn__text {
    display: none;
  }
}
/*ハンバーガーメニュー内
--------------------------------------------------------------------*/
.p-hamburgerMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: #fff;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.is-active .p-hamburgerMenu {
  opacity: 1;
  pointer-events: all;
}

.p-hamburgerMenu__body {
  max-width: 1160px;
  margin: 0 auto;
}

.p-hamburgerMenu__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 60px;
  border-bottom: 1px solid #dddddd;
}

.p-hamburgerMenu__lang {
  display: none;
}

.p-hamburgerMenu__logo {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 120px;
}

.p-hamburgerMenu__read {
  padding-left: 60px;
  font-size: 11px;
  line-height: 20px;
}

.p-hamburgerMenu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 60px 0;
}

.p-hamburgerMenu__navWrap {
  margin-left: 24px;
}

.p-hamburgerMenu__navWrap:first-child {
  margin-left: 0;
}

.p-hamburgerMenu__heading {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
}

.p-hamburgerMenu__heading + ul {
  margin-bottom: 40px;
}

.p-hamburgerMenu__navInner {
  margin-left: 1em;
  margin-top: 16px;
}

.p-hamburgerMenu__item + .p-hamburgerMenu__item {
  margin-top: 16px;
}

.p-hamburgerMenu__item + .p-hamburgerMenu__title {
  margin-top: 16px;
}

.p-hamburgerMenu__link {
  position: relative;
  display: inline-block;
  padding-left: 11px;
  font-size: 12px;
  line-height: 1.25;
}

.p-hamburgerMenu__link::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 3px;
  height: 6px;
  background: url(../images/common/icon_arrow02_b.svg) no-repeat center/cover;
}

.p-hamburgerMenu__link.-target::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 4px;
  background: url(../images/common/icon_blank.svg) no-repeat center/cover;
}

.p-hamburgerMenu__title {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
}

.p-hamburgerMenu__title + .p-hamburgerMenu__accInner {
  margin-bottom: 16px;
}

.p-hamburgerMenu__accBtn {
  display: none;
}

.p-hamburgerMenu__subNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 60px;
  border-top: 1px solid #dddddd;
}

.p-hamburgerMenu__subItem + .p-hamburgerMenu__subItem {
  margin-left: 16px;
}

.p-hamburgerMenu__subItem + .p-hamburgerMenu__subItem::before {
  content: "";
  margin-right: 16px;
  border-left: 1px solid #000;
}

.p-hamburgerMenu__subLink {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  font-size: 12px;
  line-height: 1.75;
}

.p-hamburgerMenu__subLink::before {
  content: "";
  position: absolute;
  top: 7.5px;
  left: 0;
  width: 3px;
  height: 6px;
  background: url(../images/common/icon_arrow02_b.svg) no-repeat center/cover;
}

@media screen and (max-width: 920px) {
  .p-hamburgerMenu {
    padding: 0 0 40px;
  }

  .p-hamburgerMenu__top {
    display: none;
  }

  .p-hamburgerMenu__lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 21px 20px;
  }

  .p-hamburgerMenu__langList + .p-hamburgerMenu__langList {
    margin-left: 8px;
  }

  .p-hamburgerMenu__langList + .p-hamburgerMenu__langList::before {
    content: "";
    margin-right: 8px;
    border-left: 1px solid #000;
  }

  .p-hamburgerMenu__langLink {
    font-size: 12px;
  }

  .p-hamburgerMenu__langLink.ja {
    text-decoration: underline;
  }

  .p-hamburgerMenu__nav {
    display: block;
    padding: 0;
  }

  .p-hamburgerMenu__navWrap {
    margin-left: 0;
  }

  .p-hamburgerMenu__heading {
    position: relative;
    margin-bottom: 0;
    padding: 0 20px;
    border-top: 1px solid #dddddd;
    font-size: 14px;
    font-weight: 400;
    line-height: 56px;
  }

  .p-hamburgerMenu__heading::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 14px;
    height: 14px;
    background: url(../images/common/header_icon_menu_accordion.svg) no-repeat center/cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-hamburgerMenu__heading + ul {
    margin-bottom: 0;
  }

  .p-hamburgerMenu__heading.is-open::after {
    background-image: url(../images/common/header_icon_menu_accordion02.svg);
  }

  .p-hamburgerMenu__acc {
    display: none;
    background-color: #f8f8f8;
  }

  .p-hamburgerMenu__navInner {
    margin-left: 0;
    margin-top: 0;
  }

  .p-hamburgerMenu__accInner .p-hamburgerMenu__navInner {
    padding-left: 12px;
  }

  .p-hamburgerMenu__item + .p-hamburgerMenu__item {
    margin-top: 0;
  }

  .p-hamburgerMenu__item + .p-hamburgerMenu__title {
    margin-top: 0;
  }

  .p-hamburgerMenu__link {
    position: relative;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    font-size: 12px;
    border-top: 1px solid #dddddd;
  }

  .p-hamburgerMenu__link::before {
    position: static;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
  }

  .p-hamburgerMenu__link.-target::after {
    content: "";
    width: 10px;
    height: 10px;
    background: url(../images/common/icon_blank.svg) no-repeat center/cover;
  }

  .p-hamburgerMenu__accInner .p-hamburgerMenu__link {
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 32px;
  }

  .p-hamburgerMenu__navInner .p-hamburgerMenu__link {
    padding-left: 32px;
  }

  .p-hamburgerMenu__title {
    display: block;
    position: relative;
    margin-bottom: 0;
    padding-left: 32px;
    border-top: 1px solid #dddddd;
    font-size: 12px;
    line-height: 54px;
    font-weight: 400;
  }

  .p-hamburgerMenu__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 14px;
    height: 14px;
    background: url(../images/common/header_icon_menu_accordion.svg) no-repeat center/cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-hamburgerMenu__title + .p-hamburgerMenu__accInner {
    margin-bottom: 0;
  }

  .p-hamburgerMenu__title.is-open::after {
    background-image: url(../images/common/header_icon_menu_accordion02.svg);
  }

  .p-hamburgerMenu__accBtn {
    display: block;
    position: relative;
    padding-left: 32px;
    border-top: 1px solid #dddddd;
    font-size: 12px;
    line-height: 54px;
  }

  .p-hamburgerMenu__accBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 14px;
    height: 14px;
    background: url(../images/common/header_icon_menu_accordion.svg) no-repeat center/cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-hamburgerMenu__accBtn.is-open::after {
    background-image: url(../images/common/header_icon_menu_accordion02.svg);
  }

  .p-hamburgerMenu__accInner {
    display: none;
    padding-bottom: 10px;
  }

  .p-hamburgerMenu__subNav {
    display: block;
    padding-top: 40px;
  }

  .p-hamburgerMenu__subItem {
    padding: 0 20px;
  }

  .p-hamburgerMenu__subItem + .p-hamburgerMenu__subItem {
    margin-left: 0;
    margin-top: 8px;
  }

  .p-hamburgerMenu__subItem + .p-hamburgerMenu__subItem::before {
    content: none;
  }

  .p-hamburgerMenu__subLink {
    font-size: 12px;
    line-height: 1.75;
  }
}

.p-footer {
  padding: 120px 40px;
  background-color: #030303;
  color: #fff;
}

.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.p-footer__logo {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 120px;
}

.p-footer__read {
  margin-left: 60px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
}

.p-footer__navWrap {
  margin-left: 24px;
}

.p-footer__navWrap:first-child {
  margin-left: 0;
}

.p-footer__heading {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
}

.p-footer__heading + ul {
  margin-bottom: 40px;
}

.p-footer__heading + ul:last-child {
  margin-bottom: 0;
}

.p-footer__navItem {
  margin-top: 16px;
}

.p-footer__title {
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
}

.p-footer__navLink {
  position: relative;
  display: inline-block;
  padding-left: 11px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.p-footer__navLink::before {
  content: "";
  position: absolute;
  top: 4.5px;
  left: 0;
  width: 3px;
  height: 6px;
  background: url(../images/common/icon_arrow02_w.svg) no-repeat center/cover;
}

.p-footer__navLink.-target::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 8px;
  background: url(../images/common/icon_blank_wh.svg) no-repeat center/cover;
}

.p-footer__navInner {
  padding-left: 12px;
}

.p-footer__subNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.p-footer__subItem + .p-footer__subItem {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.p-footer__subLink {
  position: relative;
  display: inline-block;
  padding-left: 11px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.p-footer__subLink::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 3px;
  height: 6px;
  margin-right: 8px;
  background: url(../images/common/icon_arrow02_w.svg) no-repeat center/cover;
}

.p-footer__copy{
  text-align: center;
  font-size: 10px;
  padding: 15px;
  color: #fff;
  background-color: #5D5D5E;
}

@media screen and (max-width: 920px) {
  .p-footer {
    padding: 80px 0px;
  }

  .p-footer__top {
    display: block;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .p-footer__logo {
    width: 100px;
  }

  .p-footer__read {
    margin-top: 16px;
    margin-left: 0px;
    font-size: 1.1rem;
    line-height: 1.75;
  }

  .p-footer__nav {
    display: block;
    margin-top: 40px;
  }

  .p-footer__navWrap {
    margin-left: 0px;
    margin-top: 32px;
  }

  .p-footer__navWrap:first-child {
    margin-top: 0;
  }

  .p-footer__heading {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
  }

  .p-footer__heading + ul {
    margin-bottom: 32px;
  }

  .p-footer__navItem {
    margin-top: 16px;
  }

  .p-footer__subNav {
    display: block;
    margin-top: 64px;
    padding-top: 40px;
  }

  .p-footer__subItem + .p-footer__subItem {
    margin-top: 16px;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

}
/* margin */
.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mt-5 {
  margin-top: 40px !important;
}

.mt-6 {
  margin-top: 48px !important;
}

.mt-7 {
  margin-top: 56px !important;
}

.mt-8 {
  margin-top: 64px !important;
}

.mt-9 {
  margin-top: 72px !important;
}

.mt-10 {
  margin-top: 80px !important;
}

.mt-11 {
  margin-top: 88px !important;
}

.mt-12 {
  margin-top: 94px !important;
}

.mt-13 {
  margin-top: 102px !important;
}

.mt-14 {
  margin-top: 110px !important;
}

.mt-15 {
  margin-top: 118px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-3 {
  margin-bottom: 24px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.mb-5 {
  margin-bottom: 40px !important;
}

.mb-6 {
  margin-bottom: 48px !important;
}

.mb-7 {
  margin-bottom: 56px !important;
}

.mb-8 {
  margin-bottom: 64px !important;
}

.mb-9 {
  margin-bottom: 72px !important;
}

.mb-10 {
  margin-bottom: 80px !important;
}

/* button */
/* button
----------------------------------------------- */
main .c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

main .c-button.button_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .c-button.button_center-2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .c-button a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 240px;
  min-height: 48px;
  padding: 4px 16px 4px 24px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  border: 1px solid #F03333;
  border-radius: 2px;
  background-color: #F03333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  main .c-button a {
    font-size: 1.3rem;
  }
}
main .c-button a:hover {
  color: #F03333;
}

main .c-button a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

main .c-button a:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

main .c-button a span {
  position: relative;
  width: 100%;
  padding-right: 56px;
  background: url("/assets2/images/common/icon_arrow.svg") no-repeat right center;
  z-index: 3;
  -webkit-transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

main .c-button a:hover span {
  background-image: url("/assets2/images/common/icon_arrow_red.svg");
}

main .c-button a[target="_blank"] span {
  background-image: url("/assets2/images/common/icon_window.svg");
}

main .c-button a[target="_blank"]:hover span {
  background-image: url("/assets2/images/common/icon_window_red.svg");
}

main .c-button a[href*=".pdf"] span {
  background-image: url("/assets2/images/common/icon_pdf.svg");
}

main .c-button a[href*=".pdf"]:hover span {
  background-image: url("/assets2/images/common/icon_pdf_red.svg");
}

/* begin custom footer */
.p-footer {
  padding: 0;
}
.p-footer a {
  text-decoration: underline;
  font-weight: bold;
}
.p-footer a.tab-link {
  padding-right: 22px;
  background: url("../images/common/icon_tab.svg") no-repeat;
  background-position: right center;
  background-size: 14px 14px;
}
.p-footer .u-pt-inline-8 {
  padding-inline: 8px;
}
.p-footer .p-footer__top {
  padding: 40px 0 57px;
  display: block;
  background-color: #272727;
}
.p-footer .p-footer__top .p-footer__title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
}
.p-footer .list-links-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 35px;
}
.p-footer .list-links-3 li {
  display: inline-block;
  margin-right: 24px;
}
.p-footer .list-links-3 li a {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-footer .list-links-3 li a {
    font-size: 16px;
  }
}
.p-footer .p-footer__nav {
  display: block;
  padding: 26px 0;
  margin-top: 0;
  background-color: #5D5D5E;
}
.p-footer .p-footer__nav .group-nav-item {
  display: block;
}
.p-footer .p-footer__nav .group-nav-item.expand .group-nav-title:before {
  background-image: url("../images/common/icon_minus.svg");
}
.p-footer .p-footer__nav .group-nav-item .group-nav-title {
  display: block;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  padding: 24px 0 17px;
  padding-right: 60px;
  border-bottom: 1px solid #fff;
  padding-left: 8px;
}
.p-footer .p-footer__nav .group-nav-item .group-nav-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(-22%, -50%);
          transform: translate(-22%, -50%);
  width: 40px;
  height: 40px;
  background-image: url("../images/common/icon_add.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
}
.p-footer .p-footer__nav .group-nav-item .group-nav-content {
  display: none;
}
.p-footer .p-footer__nav .group-nav-item .group-nav-content > div,
.p-footer .p-footer__nav .group-nav-item .group-nav-content > ul {
  margin-top: 34px;
}
.p-footer .p-footer__nav .group-nav-item .group-nav-content > div.list-links-2,
.p-footer .p-footer__nav .group-nav-item .group-nav-content > ul.list-links-2 {
  margin-top: 27px;
}
.p-footer .p-footer__nav .group-nav-item .list-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 8px;
  gap: 3px 1.3%;
}
.p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 15px;
  margin-bottom: 40px;
  position: relative;
  width: 24%;
}
.p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 16px;
  background-color: #FF3333;
}
.p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item .nav-item-title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item .list-links {
  display: block;
}
.p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item .list-links li {
  display: block;
  margin-bottom: 16px;
}
.p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item .list-links li:last-child {
  margin-bottom: 0;
}
.p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item .list-links li a {
  font-size: 14px;
  line-height: 1.5;
}
.p-footer .p-footer__nav .group-nav-item .list-links-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 73px;
  margin-left: 8px;
  gap: 2px 40px;
}
.p-footer .p-footer__nav .group-nav-item .list-links-2 li {
  display: inline-block;
  margin-bottom: 20px;
}
.p-footer .p-footer__nav .group-nav-item .list-links-2 li a {
  font-size: 14px;
  line-height: 1.71;
}
.p-footer .p-footer__nav .group-nav-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 10px;
}
.p-footer .p-footer__nav .group-nav-bottom li {
  display: inline-block;
  padding: 0 8px;
  padding-right: 9px;
  position: relative;
  border-right: 1px solid #fff;
}
.p-footer .p-footer__nav .group-nav-bottom li:last-child {
  border-right: none;
}
.p-footer .p-footer__nav .group-nav-bottom li a {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }

  .p-footer .p-footer__top {
    padding: 25px 0;
  }
  .p-footer .p-footer__top .p-footer__title {
    font-size: 22px;
  }
  .p-footer .list-links-3 li {
    margin-right: 24px;
    margin-bottom: 20px;
  }
  .p-footer .p-footer__nav {
    padding: 30px 0;
    padding-top: 10px;
  }
  .p-footer .p-footer__nav .group-nav-item .group-nav-title {
    font-size: 16px;
    padding: 16px 0;
    padding-right: 24px;
  }
  .p-footer .p-footer__nav .group-nav-item .group-nav-title:before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
  .p-footer .p-footer__nav .group-nav-item .list-nav-item {
    display: block;
  }
  .p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item {
    margin-bottom: 22px;
    margin-right: 0;
    width: 100%;
  }
  .p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item .nav-item-title {
    margin-bottom: 18px;
  }
  .p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item .list-links li {
    margin-bottom: 12px;
  }
  .p-footer .p-footer__nav .group-nav-item .list-nav-item .nav-item .list-links li a {
    font-size: 14px;
    line-height: 24px;
  }
  .p-footer .p-footer__nav .group-nav-item .list-links-2 {
    margin-bottom: 30px;
  }
  .p-footer .p-footer__nav .group-nav-item .list-links-2 li a {
    font-size: 14px;
  }
  .p-footer .p-footer__nav .group-nav-bottom {
    text-align: center;
  }
  .p-footer .p-footer__nav .group-nav-bottom li {
    margin-bottom: 10px;
  }
  .p-footer .p-footer__nav .group-nav-bottom li a {
    font-size: 12px;
    text-decoration: none;
  }
}
