@charset "utf-8";
/* ==============================================================
*  reset
* ============================================================ */
*,::before,::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where(html) {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(a) {
  text-decoration: none;
}
:where(svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: bottom;
}
:where(svg) {
  fill: currentColor;
  stroke: none;
}
:where(ul, ol) {
  list-style: none;
}
:where(table) {
  border-collapse: collapse;
}
:where(hr) {
  block-size: 0;
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  overflow: visible;
}
:where(input) {
  border-radius: 0;
}
:where(input[type="text"], textarea) {
  padding: 0 2px;
}
:where(button, label, select, summary) {
  cursor: pointer;
}
:where(button, input, textarea, select) {
  border: 1px solid;
  font: inherit;
}
:where(textarea) {
  overflow: auto;
  resize: vertical;
  user-select: auto;
}
:where([disabled]) {
  cursor: default;
}
:where([hidden]) {
  display: none;
}

/* ==============================================================
*  base
* ============================================================ */
:root {
  --site-color-main: #005BAD;
  --txt-color-main: #333;
  --txt-color-sub: #005BAD;
  --txt-color-main: #333;
}

html {
  font-size: 62.5%;
  line-height: 1.5;
  box-sizing: border-box;
}

body {
  height: 100dvh;
  color: var(--txt-color-main);
  font-family: "Noto Sans JP", Meiryo, メイリオ, "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-kerning: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

@media screen and (width >= 768px) {
  body {
    height: auto;
  }
}

body.is-fixed {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

:where(a:link,a:visited){
  color: var(--txt-color-main);
}

:where(main) a {
  color: var(--txt-color-main);
  text-decoration: underline;
  transition: color .3s;
}

:where(main) a:hover {
  color: var(--txt-color-sub);
}

/* -------------------
 header
------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  position: relative;
  z-index: 100;
  display: grid;
  align-items: center;
  gap: clamp(16px, 4.239vw - 26.39px, 55px);
  grid-template-columns: min(17.5vw,335px) 1fr min(11.5vw,200px);
  min-height: 11.5rem;
  border-bottom: 1px solid rgba(228,228,228,.87);
  background-color: #FFF;
}
@media screen and (width < 1460px) {
  .header-inner {
    grid-template-columns: 1fr 100px;
  }
}
@media screen and (width < 1000px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    min-height: 6rem;
  }
}

.header-logo {
  display: flex;
  justify-content: flex-end;
  margin-left: min(2.7vw,51px);
}
@media screen and (width < 1460px) {
  .header-logo {
    position: absolute;
    top: 15px;
    left: 0;
    width: 200px;
  }
}
@media screen and (width < 1000px) {
  .header-logo {
    position: static;
    max-width: 177px;
    width: 100%;
    margin-left: 15px;
  }
}

.header-logo a {
  display: flex;
}

.header-nav {
  padding: 15px 0 17px;
}
@media screen and (width < 1000px) {
  .header-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    translate: 0;
    display: block;
    height: calc(100dvh - 60px);
    padding: 0;
    background-color: var(--site-color-main);
    opacity: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: right .3s, opacity .3s;
  }
}

@media screen and (width < 1000px) {
  .header-nav.is-spNavShow {
    right: 0;
    opacity: 1;
  }
}

.header-btn {
  height: calc(100% + 1px);
  margin-bottom: -1px;
}
@media screen and (width < 1000px) {
  .header-btn {
    display: none;
  }
}

.header-bgLayer {
  background-color: rgba(0,0,0,.5);
  height: 100vh;
  opacity: 0;
  position: absolute;
  transition: opacity .5s, visibility .5s;
  visibility: hidden;
  width: 100%;
  z-index: -2;
}

.is-fixed .header-bgLayer {
  opacity: 1;
  visibility: visible;
}

/***** headerContact *****/
.headerContact {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1172CD 0%, #6BD9D9 50%, #1172CD 100%);
  background-size: 200% 100%;
  color: #fff;
  transition: background .3s;
}

.headerContact:hover {
  background-position: 100% 0;
}

.headerContact-img {
}

.headerContact-txt {
  font-size: 1.5rem;
  font-weight: 700;
}

/***** utilityNav *****/
.utilityNav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (width < 1000px) {
  .utilityNav-list {
    display: block;
    padding: 18px 15px;
    border-bottom: 1px solid #6690B8;
  }
}

[data-utility-nav="1"] {
  position: relative;
  margin-right: 25px;
}

[data-utility-nav="2"] {
  margin-right: 0;
}

[data-utility-nav="3"] {
  margin-right: 22px;
}

@media screen and (width < 1000px) {
  .utilityNav-item:not([data-utility-nav="3"]) {
    display: none;
  }
}

[data-utility-nav="1"]::after {
  position: absolute;
  top: 50%;
  right: -1.4rem;
  translate: 50% -50%;
  color: #8c8c8c;
  content: "/";
}

.utilityNav-link {
  display: inline-block;
  font-weight: 500;
  transition: color .3s;
}

.utilityNav-link:hover:not(._noLink) {
  text-decoration: underline;
}

[data-utility-nav="1"] .utilityNav-link,
[data-utility-nav="2"] .utilityNav-link {
  font-size: 1.4rem;
}

[data-utility-nav="4"] .utilityNav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.2rem;
  min-height: 3.6rem;
  padding: 0 34px;
  border-radius: 36px;
  background-color: var(--site-color-main);
  color: #FFF;
  font-size: 1.6rem;
}

.utilityNav-link._noLink {
  text-decoration: underline;
}

/***** siteSearch *****/
.siteSearch {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (width < 1000px) {
  .siteSearch {
    max-width: 100%;
    border-radius: 18px;
  }
}

.siteSearch-input {
  max-width: 230px;
  padding: 7px 25px 7px 10px;
  border: none;
  font-size: 1.1rem;
  line-height: 1.5;
  background-color: #EBEBEB;
  transition: background .3s;
}
@media screen and (width < 1000px) {
  .siteSearch-input {
    width: 100%;
    max-width: 100%;
    padding: 10px 10px 10px 14px;
    font-size: 1rem;
  }
}

.siteSearch-input:hover,
.siteSearch-input:focus {
  background-color: #E2E2E2;
}

.siteSearch-btn {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
}
@media screen and (width < 1000px) {
  .siteSearch-btn {
    width: 40px;
  }
}

.siteSearch-btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 15px;
  height: auto;
  aspect-ratio: 1;
  background-color: #186E73;
  -webkit-mask: url("/assets/img/common/icon_header_search.svg") center / cover no-repeat;
  mask: url("/assets/img/common/icon_header_search.svg") center / cover no-repeat;
  content: "";
}
@media screen and (width < 1000px) {
  .siteSearch-btn::after {
    width: 18px;
  }
}

.siteSearch-btn span {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/***** globalNav *****/
.globalNav {
  margin-top: 18px;
}
@media screen and (width < 1000px) {
  .globalNav {
    position: relative;
    margin-top: 0;
  }
}

.globalNav-list {
  display: flex;
  gap: 0 min(2.3vw,45px);
  justify-content: flex-end;
}
@media screen and (width < 1000px) {
  .globalNav-list {
    display: block;
    width: 300px;
  }
}

@media screen and (width < 1000px) {
  .globalNav-item {
    overflow-x: hidden;
  }
}

@media screen and (width < 1000px) {
  .globalNav-item.is-hidden {
    display: none;
  }
}

@media screen and (width >= 1000px) {
  [data-hidden="pc"] {
    display: none !important;
  }
}

@media screen and (width < 1000px) {
  [data-hidden="tb"] {
    display: none !important;
  }
}

@media screen and (width < 768px) {
  [data-hidden="sp"] {
    display: none !important;
  }
}

[data-show="sp"] {
  display: none!important;
}
@media screen and (width < 768px) {
  [data-show="sp"] {
    display: block!important;
  }
}

.globalNav-link {
  position: relative;
  padding-right: 22px;
  padding-bottom: 7px;
  border: none;
  background-color: transparent;
  font-size: clamp(1.6rem, 0.217vw + 1.383rem, 1.8rem);
  font-weight: 500;
  transition: color .3s;
}
@media screen and (width < 1000px) {
  .globalNav-link {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 310px;
    min-height: 5.7rem;
    padding: 0 50px 0 20px;
    border-bottom: 1px solid #6690B8;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 400;
  }
}

.globalNav-link._noDropdown {
  padding-right: 0;
}

@media screen and (width >= 1000px) {
  .globalNav-link:hover,
  .is-current .globalNav-link {
    color: #5A5A5A;
  }
}

.globalNav-link::before {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--site-color-main);
  transition: width .3s;
  content: "";
}
@media screen and (width < 1000px) {
  .globalNav-link::before {
    top: 50%;
    right: 20px;
    bottom: auto;
    translate: 0 -50%;
    width: 18px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #FFF;
  }
}

@media screen and (width >= 1000px) {
  .globalNav-link:hover::before,
  .is-current .globalNav-link::before {
    left: 0;
    width: 100%;
  }
}

.globalNav-link::after {
  position: absolute;
  top: clamp(1.2rem, 0.217vw + 0.983rem, 1.4rem);
  right: 9px;
  rotate: 45deg;
  translate: 50% -50%;
  transform-origin: right bottom;
  display: block;
  width: 7px;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  content: "";
}
@media screen and (width < 1000px) {
  .globalNav-link::after {
    top: 50%;
    right: 30px;
    transform-origin: center;
    rotate: -45deg;
    width: 4px;
    border-right: 1px solid var(--site-color-main);
    border-bottom: 1px solid var(--site-color-main);
  }
}

.globalNav-link._noDropdown::after {
  content: none;
}
@media screen and (width < 1000px) {
  .globalNav-link._noDropdown::after {
    content: "";
  }
}

@media screen and (width >= 1000px) {
  .globalNav-link:hover::after {
    border-right-color: #5A5A5A;
    border-bottom-color: #5A5A5A;
  }
}

.globalNav-link._prev {
  padding: 0 20px 0 50px;
  font-weight: 700;
  cursor: pointer;
}

.globalNav-link._prev::before {
  content: none;
}

.globalNav-link._prev::after {
  right: auto;
  left: 20px;
  rotate: -135deg;
  width: 11px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}

/***** globalNavLang *****/
.globalNavLang-list {
  display: flex;
  gap: 0 30px;
  padding: 40px 20px 20px;
}

.globalNavLang-item:first-child {
  position: relative;
}

.globalNavLang-item:first-child::after {
  position: absolute;
  top: 50%;
  right: -15px;
  translate: 50% -50%;
  color: #FFF;
  content: "/";
}

.globalNavLang-link {
  display: inline-block;
  color: #FFF;
  font-size: 1.4rem;
}

.globalNavLang-link._noLink {
  text-decoration: underline;
}
/***** dropdown *****/
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  display: none;
  width: 100%;
  background-color: var(--site-color-main);
}
@media screen and (width < 1000px) {
  .dropdown {
    position: relative;
    top: 0;
    z-index: -1;
    display: none;
    translate: 30% 0;
    transition: translate .3s, opacity .3s;
    opacity: 0;
  }
}

@media screen and (width < 1000px) {
  .dropdown.is-navSlide {
    z-index: 10;
    translate: 0;
    display: block;
    opacity: 1;
  }
}

.dropdown-inner {
  display: grid;
  grid-template-columns: clamp(33.5rem, 43.478vw - 9.978rem, 73.5rem) 1fr;
  max-height: calc(100vh - 11.5rem);
  overflow-y: auto;
}
@media screen and (width < 1000px) {
  .dropdown-inner {
    display: block;
    max-height: 100%;
  }
}

@media screen and (width < 1000px) {
  .dropdown-imgArea {
    display: none !important;
  }
}

.dropdown-imgArea._vertical {
  display: flex;
  flex-direction: column;
}

.dropdown-imgBlock {
  position: relative;
  display: flex;
  height: 100%;
}

.dropdown-imgBlock:last-child img {
  border-radius: 0 0 80px 0;
  object-fit: cover;
}

.dropdown-txtLink {
  position: absolute;
  bottom: 10%;
  left: 0;
  padding: 0 5%;
}

.dropdown-txtLink span {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-right: 5%;
  padding-right: 45px;
  color: #FFF;
  font-size: 2.8rem;
  font-size: clamp(1.6rem, 1.304vw + 0.296rem, 2.8rem);
  text-shadow: 0 4px 4px rgba(0,0,0,.25);
}

.dropdown-txtLink span::before {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  display: block;
  aspect-ratio: 1;
  width: 32px;
  height: auto;
  border-radius: 50%;
  background-color: #FFF;
  transition: background .3s, scale .3s;
  content: "";
}

.dropdown-txtLink:hover span::before {
  scale: 1.25;
}

.dropdown-txtLink span::after {
  position: absolute;
  top: 50%;
  right: 14px;
  translate: 0 -50%;
  rotate: 45deg;
  display: block;
  aspect-ratio: 1;
  width: 7px;
  height: auto;
  border-top: 2px solid #055097;
  border-right: 2px solid #055097;
  transition: border .3s;
  content: "";
}

.dropdownMenu {
  padding: 73px 9% 106px;
}
@media screen and (width < 1000px) {
  .dropdownMenu {
    padding: 0;
  }
}

.dropdownMenu-header {
  position: relative;
}
@media screen and (width < 1000px) {
  .dropdownMenu-header {
    display: none;
  }
}

.dropdownMenu-ttl {
  position: relative;
  display: inline-block;
  margin-right: 40px;
  padding-left: 50px;
  color: #FFF;
  font-size: clamp(2.4rem, 0.87vw + 1.53rem, 3.2rem);
}
@media screen and (width < 1000px) {
  .dropdownMenu-ttl {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.dropdownMenu-ttl::before {
  position: absolute;
  top: clamp(1.8rem, 0.761vw + 1.039rem, 2.5rem);
  left: 0;
  translate: 0 -50%;
  display: block;
  aspect-ratio: 1;
  width: 35px;
  height: auto;
  border: 1px solid #FFF;
  border-radius: 50%;
  transition: background .3s, scale .3s;
  content: "";
}

.dropdownMenu-ttl:hover::before {
  scale: 1.25;
  background-color: #FFF;
}

.dropdownMenu-ttl::after {
  position: absolute;
  top: clamp(1.8rem, 0.761vw + 1.039rem, 2.5rem);
  left: 13px;
  translate: 0 -50%;
  rotate: 45deg;
  display: block;
  aspect-ratio: 1;
  width: 7px;
  height: auto;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transition: border .3s;
  content: "";
}

.dropdownMenu-ttl:hover::after {
  border-top-color: var(--site-color-main);
  border-right-color: var(--site-color-main);
}

.dropdownMenu-close {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 5;
  width: 26px;
  height: auto;
  border: none;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
}
@media screen and (width < 1000px) {
  .dropdownMenu-close {
    display: none;
  }
}

.dropdownMenu-close::before,
.dropdownMenu-close::after {
  position: absolute;
  top: 50%;
  right: 50%;
  translate: 50% -50%;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  transition: background .3s;
  content: "";
}

.dropdownMenu-close::before {
  rotate: 45deg;
}

.dropdownMenu-close::after {
  rotate: -45deg;
}

.dropdownMenu-close span {
  position: relative;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.dropdownMenu-contents {
  display: grid;
  gap: 0 7%;
  grid-template-columns: repeat(2,1fr);
  margin-top: 35px;
}
@media screen and (width < 1000px) {
  .dropdownMenu-contents {
    display: block;
    margin-top: 0;
  }
}

.dropdownMenu-item {
  padding-right: 6px;
  border-bottom: 1px solid #457DBE;
}
@media screen and (width < 1000px) {
  .dropdownMenu-item {
    padding-right: 0;
  }
}

.dropdownMenu-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 7rem;
  padding-right: 20px;
  color: #FFF;
  font-size: clamp(1.4rem, 0.652vw + 0.748rem, 2rem);
  transition: color .3s;
}
@media screen and (width < 1000px) {
  .dropdownMenu-link {
    width: 100%;
    min-height: 5.7rem;
    padding: 0 50px 0 20px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 400;
  }
}

.dropdownMenu-link:hover {
  color: #82A6D1;
}

@media screen and (width < 1000px) {
  .dropdownMenu-link::before {
    position: absolute;
    top: 50%;
    right: 20px;
    bottom: auto;
    translate: 0 -50%;
    width: 18px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #FFF;
    transition: width .3s;
    content: "";
  }
}

.dropdownMenu-link::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  rotate: 45deg;
  display: block;
  width: 7px;
  height: auto;
  aspect-ratio: 1;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transition: border .3s;
  content: "";
}
@media screen and (width < 1000px) {
  .dropdownMenu-link::after {
    right: 30px;
    translate: 50% -50%;
    transform-origin: center;
    width: 4px;
    border-top: 1px solid var(--site-color-main);
    border-right: 1px solid var(--site-color-main);
  }
}

.dropdownMenu-link:hover::after {
  border-top-color: #82A6D1;
  border-right-color: #82A6D1;
}

/***** spBtn *****/
.spBtn {
  position: relative;
  display: none;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  margin-bottom: -1px;
  border: none;
  background-color: var(--site-color-main);
}
@media screen and (width < 1000px) {
  .spBtn {
    display: block;
    background: linear-gradient(135deg, #1172CD 0%, #6BD9D9 100%);
  }
}

.spBtn span,
.spBtn span::before,
.spBtn span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #FFF;
  transition: all .3s;
}
@media screen and (width < 768px) {
  .spBtn span,
  .spBtn span::before,
  .spBtn span::after {
    translate: -50% 0;
    width: 26px;
    height: 1px;
  }
}

.spBtn span::before {
  top: -5px;
  content: "";
}
@media screen and (width < 768px) {
  .spBtn span::before {
    top: -12px;
  }
}

.spBtn span::after {
  top: 7px;
  content: "";
}
@media screen and (width < 768px) {
  .spBtn span::after {
    top: 12px;
  }
}

.spBtn.is-active span {
  background-color: rgba(0,0,0,0);
}

.spBtn.is-active span::before {
  top: 0;
  rotate: 45deg;
  width: 26px;
}

.spBtn.is-active span::after {
  top: 0;
  rotate: -45deg;
  width: 26px;
}

/* -------------------
 main
------------------- */
.main {
  padding-top: 11.5rem;
}
@media screen and (width <= 1000px) {
  .main {
    padding-top: 6rem;
  }
}

/* -------------------
 breadcrumb
------------------- */
.breadcrumb {
  padding: 0 60px;
  background-color: #EEE;
}
@media screen and (width < 768px) {
  .breadcrumb {
    display: none;
    padding: 0 10px;
  }
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 50px;
  padding: 15px 0;
}
@media screen and (width < 768px) {
  .breadcrumb-list {
    min-height: 30px;
    padding: 5px 0;
  }
}

.breadcrumb-item {
  position: relative;
  font-size: 1.4rem;
}

.breadcrumb-item:not(:last-child) {
  padding-right: 32px;
}

.breadcrumb-item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 13px;
  translate: 0 -50%;
  rotate: 45deg;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-top: 2px solid #A2A2A2;
  border-right: 2px solid #A2A2A2;
  content: "";
}

/* -------------------
 pageHeader
------------------- */
.pageHeader-inner {
  position: relative;
}

.pageHeaderBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}
@media screen and (width < 768px) {
  .pageHeaderBox {
    left: 20px;
    width: calc(100% - 40px);
  }
}

.pageHeaderBox::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5C7292;
  mix-blend-mode: multiply;
  opacity: .35;
  content: "";
}
@media screen and (width < 768px) {
  .pageHeaderBox::before {
    content: none;
  }
}

.pageHeaderBox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 514px;
  height: 100%;
  margin: auto 116px auto auto;
  padding-left: 30px;
}
@media screen and (width < 768px) {
  .pageHeaderBox-inner {
    max-width: 100%;
    margin: 0;
    padding-left: 0;
  }
}

.pageHeader-ttl {
  display: inline-block;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFF;
  font-size: 4rem;
  color: #FFF;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (width < 768px) {
  .pageHeader-ttl {
    padding-bottom: 15px;
    font-size: 3rem;
  }
}

.pageHeader-txt {
  max-width: 474px;
  margin-top: 30px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #FFF;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (width < 768px) {
  .pageHeader-txt {
    display: none;
  }
}

.pageHeader-img img {
  width: 100%;
  max-height: 564px;
  min-height: 300px;
  object-fit: cover;
}
@media screen and (width < 768px) {
  .pageHeader-img img {
    height: 300px;
    object-position: bottom;
  }
}

/* -------------------
 container
------------------- */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (width < 768px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* -------------------
 footer
------------------- */
.footer {
  margin-top: 100px;
  border-top: 1px solid rgba(228,228,228,.87);
}
@media screen and (width < 1200px) {
  .footer {
    margin-top: 50px;
  }
}

.footer-inner {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (width < 1200px) {
  .footer-inner {
    max-width: 100%;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
}
@media screen and (width < 1000px) {
  .footer-logo {
    min-height: 9rem;
  }
}

@media screen and (width < 768px) {
  .footer-logo img {
    max-width: 217px;
  }
}

.footer-nav {
  background-color: var(--site-color-main);
}

/***** pageTop *****/
.pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  width: 54px;
  height: auto;
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  background-color: #ccc;
  opacity: 0;
  visibility: hidden;
  transition: all .6s cubic-bezier(.4,0,.2,1);
}

.pageTop.is-show {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}

.pageTop:hover {
  background-color: #545454;
}

.pageTop::after {
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  rotate: -45deg;
  translate: -50% -50%;
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  border-radius: 2px;
  content: "";
}

.pageTop span {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/***** footerNav *****/
.footerNav {
  padding: 70px 0 60px;
}
@media screen and (width < 1000px) {
  .footerNav {
    padding: 35px 0;
  }
}

.footerNav-list {
  display: grid;
  gap: 0 1%;
  grid-template-columns: repeat(6,1fr);
}
@media screen and (width < 1200px) {
  .footerNav-list {
    gap: 56px 1%;
    grid-template-columns: repeat(3,1fr);
  }
}
@media screen and (width < 768px) {
  .footerNav-list {
    gap: 20px 0;
    grid-template-columns: 1fr;
  }
}

.footerNav-item[data-footer-nav="vertical"] {
  display: flex;
  flex-direction: column;
  gap: 26px 0;
}

.footerNav-link {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  transition: color .3s;
}
@media screen and (width < 768px) {
  .footerNav-link {
    font-size: 1.6rem;
  }
}

.footerNav-link:hover {
  color: #C9C9C9;
}

.footerNav-link::before {
  position: absolute;
  top: 10px;
  left: -5px;
  rotate: -45deg;
  translate: 50% -50%;
  transform-origin: right bottom;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transition: border .3s;
  content: "";
}

.footerNav-link:hover::before {
  border-right-color: #C9C9C9;
  border-bottom-color: #C9C9C9;
}

.footerNavChild-list {
  margin-top: 32px;
  margin-left: 18px;
}
@media screen and (width < 1000px) {
  .footerNavChild-list {
    margin-top: 0;
  }
}
@media screen and (width < 768px) {
  .footerNavChild-list {
    display: none;
  }
}

.footerNavChild-item {
  margin-top: 10px;
}

.footerNavChild-link {
  color: #FFF;
  font-size: 1.5rem;
  transition: color .3s;
}

.footerNavChild-link:hover {
  color: #C9C9C9;
}

/***** footerUtility *****/
.footerUtility {
  border-top: 1px solid rgba(70,112,175,.87);
}
@media screen and (width < 1000px) {
  .footerUtility {
    padding: 20px 0;
  }
}

.footerUtility-list {
  display: flex;
  align-items: center;
  gap: 0 55px;
  justify-content: center;
  min-height: 8rem;
}
@media screen and (width < 768px) {
  .footerUtility-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px 0;
  }
}

.footerUtility-link {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  transition: color .3s;
}
@media screen and (width < 768px) {
  .footerUtility-link {
    padding-left: 18px;
    font-weight: 400;
  }
}

@media screen and (width < 768px) {
  .footerUtility-link::before {
    position: absolute;
    top: 7px;
    left: -5px;
    rotate: -45deg;
    translate: 50% -50%;
    transform-origin: right bottom;
    display: block;
    width: 8px;
    height: auto;
    aspect-ratio: 1;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    transition: border .3s;
    content: "";
  }
}

.footerUtility-link:hover {
  color: #C9C9C9;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  font-size: 1.4rem;
}
@media screen and (width < 1000px) {
  .footer-copyright {
    min-height: 5rem;
  }
}

.footer-copyright small {
  font-size: 1.4rem;
}

.pluginBox {
  display: grid;
  gap: 0 50px;
  grid-template-columns: 160px 1fr;
  margin: 80px 0;
  padding: 30px;
  border: 1px solid #CBCBCB;
}
@media screen and (width < 768px) {
  .pluginBox {
    grid-template-columns: 1fr;
    margin: 40px 0;
  }
}

.pluginBox-link {
  translate: 0 5px;
  transition: opacity .3s;
}
@media screen and (width < 768px) {
  .pluginBox-link {
    translate: 0;
    margin-bottom: 15px;
  }
}

.pluginBox-link:hover {
  opacity: .8;
}

/* -------------------
 parts
------------------- */
.iconTriangle {
  width: 455px;
  height: 120px;
  margin: 70px auto;
  background-color: var(--site-color-main);
  clip-path: polygon(50% 120px, 0% 0%, 455px 0%);
}
@media screen and (width < 768px) {
  .iconTriangle {
    width: 300px;
    height: 80px;
    margin: 80px auto;
    clip-path: polygon(50% 80px, 0% 0%, 300px 0%);
  }
}

.squareBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  min-height: 6rem;
  margin: 0 auto;
  padding: 16px 50px;
  background: linear-gradient(90deg, #1172CD 0%, #6BD9D9 50%, #1172CD 100%);
  background-size: 200% 100%;
  color: #FFF !important;
  font-size: 1.8rem;
  font-weight: 700;
  transition: background .3s;
}

.squareBtn:hover {
  background-position: 100% 0;
}

.squareBtn::before {
  position: absolute;
  top: 50%;
  left: 26px;
  translate: -50% -50%;
  rotate: 45deg;
  width: 11px;
  height: auto;
  aspect-ratio: 1;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  content: "";
}

.roundArrowBtn {
  position: relative;
  padding-left: 45px;
  font-size: 1.6rem;
  color: var(--txt-color-sub);
}

.roundArrowBtn::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  display: block;
  aspect-ratio: 1;
  width: 35px;
  height: auto;
  border: 1px solid var(--site-color-main);
  border-radius: 50%;
  background-color: #FFF;
  transition: background .3s;
  content: "";
}
@media screen and (width < 768px) {
  .roundArrowBtn::before {
    width: 32px;
  }
}

.roundArrowBtn:hover::before {
  background-color: var(--site-color-main);
}

.roundArrowBtn::after {
  position: absolute;
  top: 50%;
  left: 14px;
  translate: 0 -50%;
  rotate: 45deg;
  display: block;
  width: 5px;
  height: auto;
  aspect-ratio: 1;
  border-top: 1px solid #767676;
  border-right: 1px solid #767676;
  transition: border .3s;
  content: "";
}
@media screen and (width < 768px) {
  .roundArrowBtn::after {
    left: 13px;
  }
}

.roundArrowBtn:hover::after {
  border-color: #FFF;
}

/***** cardType01 *****/
.cardType01 {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
}

.cardType01 img {
  transition: scale .3s;
}
@media screen and (width < 1200px) {
  .cardType01 img {
    width: 100vw;
  }
}

.cardType01:hover img {
  scale: 1.05;
}

.cardType01-ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 6.5rem;
  background-color: var(--site-color-main);
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .02em;
}
@media screen and (width < 768px) {
  .cardType01-ttl {
    min-height: 4.7rem;
    font-size: 1.6rem;
  }
}

.cardType02 {
  display: block;
}

.cardType02-ttl {
  position: relative;
  margin-top: 24px;
  padding-left: 28px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .3s;
}
@media screen and (width < 768px) {
  .cardType02-ttl {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}

.cardType02:hover .cardType02-ttl {
  color: var(--txt-color-sub);
  text-decoration: underline;
}

.cardType02-ttl::before {
  position: absolute;
  top: 13px;
  left: 0;
  translate: 0 -50%;
  display: block;
  width: 18px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--site-color-main);
  transition: background .3s;
  content: "";
}

.cardType02-ttl::after {
  position: absolute;
  top: 50%;
  left: 6px;
  translate: 0 -50%;
  rotate: 45deg;
  display: block;
  width: 4px;
  height: auto;
  aspect-ratio: 1;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transition: border .3s;
  content: "";
}
@media screen and (width < 768px) {
  .cardType02-ttl::after {
    top: calc(50% + 1px);
  }
}

.cardType02-img {
  overflow: hidden;
}

.cardType02-img img {
  width: 100vw;
  border-radius: 3px;
  transition: scale .3s;
}

.cardType02:hover img {
  scale: 1.05;
}


.selectContainer {
  display: none;
}

.selectContainer.is-show {
  display: block;
}

/* ==============================================================
*  block editor
* ============================================================ */
.blockEditor {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (width < 768px) {
  .blockEditor {
    max-width: 100%;
    padding: 0 10px;
  }
}

/***** heading *****/
.parts-heading-h1 {
  position: relative;
  margin: 120px 0 80px;
  padding-bottom: 23px;
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, #1172CD 0%, #6BD9D9 100%) 1;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
}
@media screen and (width < 768px) {
  .parts-heading-h1 {
    margin: 40px 0;
    padding-bottom: 12px;
    font-size: 2.8rem;
  }
}

.parts-heading-h1._left {
  margin: 60px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #005BAD 234px, #C1C1C1 234px) 1;
  font-size: 3.6rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (width < 768px) {
  .parts-heading-h1._left {
    margin: 40px 0;
    padding-bottom: 15px;
    border-image: linear-gradient(to right, #005BAD 313px, #C1C1C1 313px) 1;
    font-size: 3rem;
    font-weight: 500;
  }
}

.parts-heading-h2 {
  position: relative;
  margin: 110px 0 80px;
  padding-bottom: 20px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right,#C1C1C1 calc(50% - 200px),#005BAD calc(50% - 200px), #005BAD calc(50% + 200px), #C1C1C1 calc(50% + 200px)) 1;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-align: center;
}
@media screen and (width < 768px) {
  .parts-heading-h2 {
    margin: 50px 0 40px;
    padding-bottom: 13px;
    border-image: linear-gradient(to right,#C1C1C1 calc(50% - 52px),#005BAD calc(50% - 52px), #005BAD calc(50% + 52px), #C1C1C1 calc(50% + 52px)) 1;
    font-size: 2.4rem;
  }
}

.parts-heading-h2._left {
  margin: 80px 0 50px;
  padding-bottom: 20px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #005BAD 118px, #C1C1C1 118px) 1;
  text-align: left;
}
@media screen and (width < 768px) {
  .parts-heading-h2._left {
    margin: 50px 0 40px;
    padding-bottom: 15px;
    border-image: linear-gradient(to right, #005BAD 55px, #C1C1C1 55px) 1;
    font-size: 2.4rem;
  }
}

.parts-heading-h3 {
  position: relative;
  margin: 50px 0;
  padding-bottom: 21px;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right,#C1C1C1 calc(50% - 50px),#005BAD calc(50% - 50px), #005BAD calc(50% + 50px), #C1C1C1 calc(50% + 50px)) 1;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
}
@media screen and (width < 768px) {
  .parts-heading-h3 {
    margin: 20px 0;
    padding-bottom: 16px;
    border-image: linear-gradient(to right,#C1C1C1 calc(50% - 90px),#005BAD calc(50% - 90px), #005BAD calc(50% + 90px), #C1C1C1 calc(50% + 90px)) 1;
    font-size: 1.8rem;
  }
}

.parts-heading-h3._left {
  margin: 50px 0 30px;
  padding-bottom: 19px;
  border-image: linear-gradient(to right, #005BAD 100px, #C1C1C1 100px) 1;
  text-align: left;
}
@media screen and (width < 768px) {
  .parts-heading-h3._left {
    margin: 20px 0;
    padding-bottom: 16px;
    border-image: linear-gradient(to right, #005BAD 46px, #C1C1C1 46px) 1;
  }
}

.parts-heading-h4 {
  margin: 20px 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
}
@media screen and (width < 768px) {
  .parts-heading-h4 {
    font-size: 1.8rem;
  }
}

.parts-heading-h4._left {
  text-align: left;
}

.parts-heading-h5 {
  position: relative;
  margin: 20px 0;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .03em;
}
@media screen and (width < 768px) {
  .parts-heading-h5 {
    font-size: 1.6rem;
  }
}

.parts-heading-h5::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  display: block;
  width: 12px;
  height: 2px;
  background-color: #BBB;
  content: "";
}

/***** text *****/
.parts-txt {
  margin-bottom: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.parts-txt > *:last-child {
  margin-bottom: 0;
}

.parts-txt._bold {
  font-weight: 700;
}

.parts-txt._xlarge {
  font-size: 2.2rem;
}
@media screen and (width < 768px) {
  .parts-txt._xlarge {
    font-size: 2rem;
  }
}

.parts-txt._large {
  font-size: 1.8rem;
}
@media screen and (width < 768px) {
  .parts-txt._large {
    font-size: 1.6rem;
  }
}

.parts-txt._indent2 {
  padding-left: 2em;
}

.parts-txt._indent4 {
  padding-left: 4em;
}

.parts-txt._indent6 {
  padding-left: 6em;
}

:where(.container,.blockEditor) ul,
:where(.parts-txt) ul,
.parts-ul {
  display: table;
  margin-bottom: 30px;
  padding-left: 0.7em;
}

:where(.container,.blockEditor) ul li,
:where(.parts-txt) ul li,
.parts-ul li {
  display: table-row;
}

:where(.container,.blockEditor) ul li::before,
:where(.parts-txt) ul li::before,
.parts-ul li::before {
  display: table-cell;
  color: var(--txt-color-sub);
  font-size: .7rem;
  padding-right: 1em;
  translate: 0 -0.6em;
  content: '●';
}

:where(.container,.blockEditor) ul li:not(:last-child)::after,
:where(.parts-txt) ul li:not(:last-child)::after,
.parts-ul li:not(:last-child)::after {
  display: block;
  margin-bottom: 0.5em;
  content: '';
}

:where(.container,.blockEditor) ol,
:where(.parts-txt) ol,
.parts-ol {
  margin-bottom: 30px;
  padding-left: 1.7em;
}

:where(.container,.blockEditor) ol li,
:where(.parts-txt) ol li,
.parts-ol li {
  list-style: decimal;
}

:where(.container,.blockEditor) ol li:not(:last-child),
:where(.parts-txt) ol li:not(:last-child),
.parts-ol li:not(:last-child) {
  margin-bottom: 10px;
}

/***** link *****/
.parts-txtLink {
  margin-bottom: 10px;
}

.parts-txtLink-link {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .3s;
}

/*.parts-txtLink-link:not([target="_blank"]) {
  display: inline-block;
  padding-left: 24px;
}*/

.parts-txtLink-link {
  display: inline-block;
  padding-left: 24px;
}

.parts-txtLink-link:hover {
  color: #5A5A5A;
}

/*.parts-txtLink-link:not([target="_blank"])::before {
  position: absolute;
  top: 0.8em;
  left: 7px;
  rotate: 45deg;
  translate: 0 -50%;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-top: 2px solid var(--site-color-main);
  border-right: 2px solid var(--site-color-main);
  content: "";
}*/


.parts-txtLink-link::before {
  position: absolute;
  top: 0.8em;
  left: 7px;
  rotate: 45deg;
  translate: 0 -50%;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-top: 2px solid var(--site-color-main);
  border-right: 2px solid var(--site-color-main);
  content: "";
}

.parts-txtLink span::after {
  display: inline-block;
  height: auto;
  margin-left: 5px;
  aspect-ratio: 1;
  vertical-align: bottom;
  content: "";
}

.parts-txtLink [target="_blank"] span::after {
  translate: 0 -4px;
  width: 16px;
  background: url("/assets/img/common/icon_link_external_01.svg") no-repeat center/cover;
}

.parts-txtLink._pdf span::after {
  translate: 0 -2px;
  width: 18px;
  background: url("/assets/img/common/icon_link_pdf.svg") no-repeat center/cover;
}

.parts-arrowLink {
  width: 100%;
  max-width: 372px;
  margin-bottom: 10px;
}

.parts-arrowLink._fluid {
  max-width: 100%;
}

.parts-arrowLink-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 75px;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid rgba(228,228,228,.87);
  background-color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .3s, border .3s;
}

.parts-arrowLink:not(._circle) .parts-arrowLink-link:hover {
  color: var(--txt-color-sub);
}

.parts-arrowLink:not(._circle) .parts-arrowLink-link::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--site-color-main);
  transition: width .3s;
  content: "";
}

.parts-arrowLink:not(._circle) .parts-arrowLink-link:hover::before {
  width: 100%;
}

.parts-arrowLink._circle .parts-arrowLink-link {
  padding-right: 40px;
  color: initial;
}

.parts-arrowLink._circle .parts-arrowLink-link::before {
  position: absolute;
  top: 50%;
  right: 2px;
  rotate: 45deg;
  translate: 0 -50%;
  display: block;
  width: 31px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--site-color-main);
  transition: scale .3s;
  content: "";
}

.parts-arrowLink._circle .parts-arrowLink-link:hover::before {
  scale: 1.13;
}

.parts-arrowLink-link::after {
  position: absolute;
  top: calc(50% + 2px);
  right: 0;
  rotate: 45deg;
  translate: 0 -50%;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-top: 2px solid var(--site-color-main);
  border-right: 2px solid var(--site-color-main);
  content: "";
}

.parts-arrowLink._circle .parts-arrowLink-link::after {
  right: 15px;
  width: 6px;
  border-top-color: #FFF;
  border-right-color: #FFF;
}

.parts-arrowLink-link.no-link::after {
  display: none;
}

.parts-arrowLink:not(._circle) .parts-arrowLink-link.no-link:hover {
  color: var(--txt-color-main);
}

.parts-arrowLink:not(._circle) .parts-arrowLink-link.no-link::before {
  border-bottom: 1px solid rgba(228, 228, 228, .87);
  background-color: inherit;  
}

.parts-buttonLink {
  width: 100%;
  max-width: 372px;
  margin-bottom: 30px;
}

.parts-buttonLink-link {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 7rem;
  padding: 20px 50px;
  background: linear-gradient(90deg, #1172CD 0%, #6BD9D9 50%, #1172CD 100%);
  background-size: 200% 100%;
  color: #FFF !important;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  transition: background .3s;
}
@media screen and (width < 768px) {
  .parts-buttonLink-link {
    min-height: 6rem;
    padding: 18px 50px;
    font-size: 1.6rem;
  }
}

.parts-buttonLink-link:hover {
  background-position: 100% 0;
}

.parts-buttonLink-link:not([target="_blank"])::before {
  position: absolute;
  top: 50%;
  left: 26px;
  translate: -50% -50%;
  rotate: 45deg;
  width: 11px;
  height: auto;
  aspect-ratio: 1;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  content: "";
}

.parts-buttonLink-link[target="_blank"] span::after {
  translate: 0 -6px;
  display: inline-block;
  width: 20px;
  height: auto;
  aspect-ratio: 20/17; 
  margin-left: 10px;
  background: url("/assets/img/common/icon_link_external_02.svg") no-repeat center/cover;
  vertical-align: bottom;
  content: "";
}
@media screen and (width < 768px) {
  .parts-buttonLink-link[target="_blank"] span::after {
    width: 17px;
  }
}

.parts-pageLink {
  margin-bottom: 30px;
  background-color: var(--site-color-main);
}

.parts-pageLink-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 62px;
  padding: 32px 70px;
}
@media screen and (width < 768px) {
  .parts-pageLink-list {
    gap: 25px 65px;
    padding: 25px 35px;
  }
}

.parts-pageLink-item::before,
.parts-pageLink-item:not(:last-child)::after {
  content: none;
}

.parts-pageLink-link {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .3s;
}
@media screen and (width < 768px) {
  .parts-pageLink-link {
    font-size: 1.6rem;
  }
}

.parts-pageLink-link:hover {
  color: #82A6D1;
}

.parts-pageLink-link span::after {
  rotate: 45deg;
  translate: 0 -50%;
  display: inline-block;
  width: 10px;
  height: auto;
  margin-left: 16px;
  aspect-ratio: 1;
  border-right: 2px solid #C9C9C9;
  border-bottom: 2px solid #C9C9C9;
  content: "";
}

.parts-cardLink {
  display: block;
  padding-bottom: 20px;
  color: initial !important;
  text-decoration: none;
}
@media screen and (width < 768px) {
  .parts-cardLink {
    padding-bottom: 0;
  }
}

.parts-cardLink-img {
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
}

.parts-cardLink img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .3s;
}

.parts-cardLink:hover img {
  scale: 1.05;
}


.parts-cardLink-ttl {
  position: relative;
  margin: 22px 0 20px;
  padding-left: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (width < 768px) {
  .parts-cardLink-ttl {
    margin: 18px 0 15px;
    font-size: 1.6rem;
  }
}

:where(.parts-cardLink:not(._xsmall)) .parts-cardLink-ttl::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--site-color-main);
  content: "";
}
@media screen and (width < 768px) {
  :where(.parts-cardLink:not(._xsmall)) .parts-cardLink-ttl::before {
    width: 18px;
  }
}

:where(.parts-cardLink:not(._xsmall)) .parts-cardLink-ttl::after {
  position: absolute;
  top: 11px;
  left: 7px;
  rotate: 45deg;
  display: block;
  width: 5px;
  height: auto;
  aspect-ratio: 1;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  content: "";
}
@media screen and (width < 768px) {
  :where(.parts-cardLink:not(._xsmall)) .parts-cardLink-ttl::after {
    left: 6px;
    width: 4px;
  }
}

.parts-cardLink[target="_blank"] .parts-cardLink-ttl span::after {
  display: inline-block;
  translate: 0 -4px;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  background: url("/assets/img/common/icon_link_external_01.svg") no-repeat center/cover;
  height: auto;
  margin-left: 5px;
  vertical-align: bottom;
  content: "";
}

.parts-cardLink-txt {
  margin-top: 12px;
  font-size: 1.6rem;
}

.parts-cardLink._small .parts-cardLink-ttl {
  margin-top: 20px;
  font-size: 1.6rem;
}
@media screen and (width < 768px) {
  .parts-cardLink._small .parts-cardLink-ttl {
    font-size: 1.4rem;
  }
}

.parts-cardLink._xsmall .parts-cardLink-img img {
  border-radius: 3px;
}

.parts-cardLink._xsmall .parts-cardLink-ttl {
  margin-top: 16px;
  padding-left: 0;
  font-size: 1.5rem;
}

.parts-cardLink-dl {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 11.7rem 1fr;
  margin-top: 20px;
}
@media screen and (width < 768px) {
  .parts-cardLink-dl {
    margin-top: 18px;
  }
}

.parts-cardLink-dt {
  min-height: 3.2rem;
  padding: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: var(--site-color-main);
  color: #FFF;
  text-align: center;
}

.parts-cardLink-dd {
  padding: 5px 10px;
}

.parts-blockLink {
  display: block;
  height: 100%;
  padding: 15px 20px 30px;
  border: 1px solid rgba(228, 228, 228, .87);
  border-radius: 5px;
  text-decoration: none;
  transition: box-shadow .3s;
}

.parts-blockLink:hover {
  box-shadow: 4px 4px 8px rgba(64, 89, 108, .08);
}

.parts-blockLink-ttl {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 5.5rem;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #1172CD 0%, #6BD9D9 100%) 1;
  padding: 9px 0 9px 28px;
  font-size: 2.4rem;
  font-weight: 700;
  transition: color .3s;
}

.parts-blockLink-ttl::before {
  position: absolute;
  top: 18px;
  left: 0;
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--site-color-main);
  content: "";
}
@media screen and (width < 768px) {
  .parts-blockLink-ttl::before {
    width: 18px;
  }
}

.parts-blockLink-ttl::after {
  position: absolute;
  top: 25px;
  left: 7px;
  rotate: 45deg;
  display: block;
  width: 5px;
  height: auto;
  aspect-ratio: 1;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  content: "";
}
@media screen and (width < 768px) {
  .parts-blockLink-ttl::after {
    left: 6px;
    width: 4px;
  }
}

.parts-blockLink-txt {
  margin-top: 20px;
  color: var(--txt-color-main);
  font-size: 1.8rem;
  letter-spacing: .02em;
}

/***** img *****/
.parts-imgBox {
  margin-bottom: 30px;
}

.parts-row .parts-imgBox {
  margin-bottom: 0;
}

.parts-imgBox-caption {
  margin-top: 10px;
  font-size: 1.6rem;
}

.parts-imgBox2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 30px;
}

/***** card *****/
.parts-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--site-color-main);
}
@media screen and (width < 768px) {
  .parts-card {
    
  }
}

.parts-card-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.8rem;
  padding: 10px;
  background-color: var(--site-color-main);
  color: #FFF;
  font-size: 2.4rem;
  letter-spacing: .03em;
}
@media screen and (width < 768px) {
  .parts-card-ttl {
    min-height: 4.1rem;
    font-size: 2rem;
  }
}

.parts-card-txt {
  align-self: center;
  margin-top: 0;
  padding: 60px 25px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .02em;
}
@media screen and (width < 768px) {
  .parts-card-txt {
    padding: 20px 35px;
    font-size: 1.8rem;
  }
}

.parts-card._small .parts-card-ttl {
  min-height: 4.7rem;
  padding: 5px 10px;
  font-size: 2rem;
}
@media screen and (width < 768px) {
  .parts-card._small .parts-card-ttl {
    min-height: 4.1rem;
  }
}

.parts-card._small .parts-card-txt {
  padding: 50px 25px;
  font-size: 1.6rem;
}
@media screen and (width < 768px) {
  .parts-card._small .parts-card-txt {
    padding: 20px 35px;
    font-size: 1.8rem;
  }
}

.parts-box {
  margin-bottom: 30px;
  padding: 30px 5%;
  border: 33px solid #ECECEC;
}
@media screen and (width < 768px) {
  .parts-box {
    margin: 0 -10px;
    padding: 30px 10px;
    border-width: 35px 30px;
  }
}

.parts-box > *:first-child {
  margin-top: 0;
}

.parts-box > *:last-child {
  margin-bottom: 0;
}

.parts-bgBox {
  width: 100%;
  height: 360px;
  margin-bottom: 30px;
  padding: 45px 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (width < 768px) {
  .parts-bgBox {
    width: calc(100% + 20px);
    height: 145px;
    margin: 0 -10px;
    padding: 35px 10px;
  }
}

.parts-bgBox-inner {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%
}

.parts-bgBox .parts-arrowLink-link {
  padding-right: 30px;
  padding-left: 10px;
}

.parts-bgBox .parts-arrowLink-link::after {
  right: 10px;
}

/***** table *****/
.parts-table-wrap {
  margin-bottom: 30px;
  word-break: break-word;
}
@media screen and (width < 768px) {
  .parts-table-wrap {
    overflow-x: auto;
    word-break: break-word;
    
  }
}

.parts-table {
  width: 100%;
  border: 1px solid #C9C9C9;
}

.parts-table th,
.parts-table td {
  border-right: 1px solid #C9C9C9;
  border-bottom: 1px solid #C9C9C9;
  font-size: 1.6rem;
}
@media screen and (width < 768px) {
  .parts-table th,
  .parts-table td {
    white-space: nowrap;
  }
}

.parts-table th {
  padding: 20px;
  background-color: #EDF6FB;
  font-weight: 700;
}

@media screen and (width < 768px) {
  .parts-table._type1 th {
    padding: 20px 18px;
  }
}

@media screen and (width < 768px) {
  .parts-table._type2 th {
    padding: 20px 10px;
  }
}

.parts-table td {
  padding: 20px;
}

@media screen and (width < 768px) {
  .parts-table._type2 td {
    padding: 30px 18px;
  }
}

.parts-table td *:last-child {
  margin-bottom: 0;
}

/***** accordion *****/
.parts-accordion {
  border-bottom: 1px solid var(--site-color-main);
}

.parts-accordion-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 10rem;
  padding: 30px 105px 30px 50px;
  border: none;
  background-color: transparent;
  color: var(--txt-color-sub);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-align: left;
  transition: background .5s, color .5s;
}

.parts-accordion-btn[data-js-accordion="open"] {
  border-bottom: none;
  background-color: var(--site-color-main);
  color: #FFF;
}

.parts-accordion-icon {
  position: absolute;
  top: 50%;
  right: 22px;
  translate: 0 -50%;
  display: block;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #EDF6FB;
  transition: background .5s;
}

.parts-accordion-btn[data-js-accordion="open"] .parts-accordion-icon {
  background-color: transparent;
}

.parts-accordion-icon::before,
.parts-accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 20px;
  height: 3px;
  background-color: var(--site-color-main);
  transition: background .5s, rotate .5s;
  content: "";
}

.parts-accordion-icon::after {
  rotate: 90deg;
}

.parts-accordion-btn[data-js-accordion="open"] .parts-accordion-icon::after {
  rotate: 180deg;
  background-color: #FFF;
}

.parts-accordion-panel {
  display: none;
  padding-bottom: 80px;
}

.parts-accordion[data-ir="faq"] .parts-accordion-btn .faq-icon {
  align-self: flex-start;
  margin-right: 10px;
}

.parts-accordion[data-ir="faq"] .faq-contents {
  display: flex;
  gap: 0 10px;
  padding: 30px 50px;
}

.parts-accordion[data-ir="faq"] .faq-contents .faq-icon {
  translate: 0 -0.6rem;
  color: #096;
  font-size: 2.4rem;
  font-weight: 500;
}

.parts-accordion[data-ir="faq"] .parts-txt [target="_blank"][href*=".pdf"] span::after {
  width: 18px;
  background-image: url("/assets/img/common/icon_link_pdf.svg");
}

/***** history *****/
.parts-history {
  display: grid;
  grid-template-columns: 9rem 1fr auto;
  border-top: 1px solid #C9C9C9;
}
@media screen and (width < 768px) {
  .parts-history {
    grid-template-columns: 1fr;
  }
}

.parts-history:last-of-type {
  border-bottom: 1px solid #C9C9C9;
}

.parts-history-year {
  padding: 20px 15px;
  font-size: 1.6rem;
  font-weight: 700;
}

.parts-history-txt {
  padding: 20px 15px;
  font-size: 1.6rem;
}
@media screen and (width < 768px) {
  .parts-history-txt {
    padding-top: 0;
  }
}

.parts-history-txt *:last-child {
  margin-bottom: 0;
}

.parts-history-img {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  padding: 20px 0 20px 0;
  width: 370px
}

@media screen and (width < 768px) {
  .parts-history-img {
    align-items: center;
    flex-direction: column;
    gap: 20px 20px;
    width: 100%;
  }
}

@media screen and (width < 768px) {
.parts-historyImg-img {
  text-align: center;
}
}

.parts-historyImg-caption {
  margin-top: 5px;
  font-size: 1.6rem;
}

/***** iframe *****/
.parts-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 30px;
}

.parts-html {
  margin-bottom: 30px;
}

/***** column *****/
.parts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
  margin-bottom: 30px;
}

@media screen and (width < 768px) {
  .parts-row {
    gap: 30px;
  }
}

.parts-row._center {
  justify-content: center;
}

.parts-row._gap-0 {
  gap: 0;
}

@media screen and (width < 768px) {
  .parts-row._gap-md-0 {
    gap: 0;
  }
}

.parts-row._gap-20 {
  gap: 20px;
}

@media screen and (width < 768px) {
  .parts-row._gap-md-20 {
    gap: 20px;
  }
}

.parts-row._gap-30 {
  gap: 30px;
}

@media screen and (width < 768px) {
  .parts-row._gap-md-30 {
    gap: 30px;
  }
}

.parts-col > *:first-child {
  margin-top: 0;
}

@media screen and (width < 768px) {
  .parts-col._col-md-1 {
    width: 100% !important;
  }
}

.parts-col._col-2 {
  width: calc((100% - 20px) / 2);
}
@media screen and (width < 768px) {
  .parts-col._col-2 {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (width < 768px) {
  .parts-col._col-md-2 {
    width: calc((100% - 30px) / 2) !important;
  }
}

.parts-col._col-3 {
  width: calc((100% - 40px) / 3);
}
@media screen and (width < 768px) {
  .parts-col._col-3 {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (width < 768px) {
  .parts-col._col-md-3 {
    width: calc((100% - 60px) / 3) !important;
  }
}

.parts-col._col-4 {
  width: calc((100% - 60px) / 4);
}
@media screen and (width < 768px) {
  .parts-col._col-4 {
    width: calc((100% - 90px) / 4);
  }
}
@media screen and (width < 768px) {
  .parts-col._col-md-4 {
    width: calc((100% - 90px) / 4) !important;
  }
}

.parts-col._col-5 {
  width: calc((100% - 80px) / 5);
}
@media screen and (width < 768px) {
  .parts-col._col-5 {
    width: calc((100% - 120px) / 5);
  }
}
@media screen and (width < 768px) {
  .parts-col._col-md-5 {
    width: calc((100% - 120px) / 5) !important;
  }
}

.parts-col._col-6 {
  width: calc((100% - 100px) / 6);
}
@media screen and (width < 768px) {
  .parts-col._col-6 {
    width: calc((100% - 150px) / 6);
  }
}
@media screen and (width < 768px) {
  .parts-col._col-md-6 {
    width: calc((100% - 150px) / 6) !important;
  }
}

.parts-col3-1 {
  width: calc((100% - 20px) / 3);
}
@media screen and (width < 768px) {
  .parts-col3-1 {
    width: 100%;
  }
}

.parts-col3-2 {
  width: calc((100% - 20px) / 3 * 2);
}
@media screen and (width < 768px) {
  .parts-col3-2 {
    width: 100%;
  }
}

.parts-col4-1 {
  width: calc((100% - 20px) / 4);
}
@media screen and (width < 768px) {
  .parts-col4-1 {
    width: 100%;
  }
}

.parts-col4-3 {
  width: calc((100% - 20px) / 4 * 3);
}
@media screen and (width < 768px) {
  .parts-col4-3 {
    width: 100%;
  }
}

/***** utility *****/
.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-100 { margin-top: 100px !important; }
@media screen and (width < 768px) {
  .mt-md-0 { margin-top: 0 !important; }
  .mt-md-10 { margin-top: 10px !important; }
  .mt-md-20 { margin-top: 20px !important; }
  .mt-md-30 { margin-top: 30px !important; }
  .mt-md-40 { margin-top: 40px !important; }
  .mt-md-50 { margin-top: 50px !important; }
  .mt-md-60 { margin-top: 60px !important; }
  .mt-md-70 { margin-top: 70px !important; }
  .mt-md-80 { margin-top: 80px !important; }
  .mt-md-90 { margin-top: 90px !important; }
  .mt-md-100 { margin-top: 100px !important; }
}

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-100 { margin-bottom: 100px !important; }
@media screen and (width < 768px) {
  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-10 { margin-bottom: 10px !important; }
  .mb-md-20 { margin-bottom: 20px !important; }
  .mb-md-30 { margin-bottom: 30px !important; }
  .mb-md-40 { margin-bottom: 40px !important; }
  .mb-md-50 { margin-bottom: 50px !important; }
  .mb-md-60 { margin-bottom: 60px !important; }
  .mb-md-70 { margin-bottom: 70px !important; }
  .mb-md-80 { margin-bottom: 80px !important; }
  .mb-md-90 { margin-bottom: 90px !important; }
  .mb-md-100 { margin-bottom: 100px !important; }
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.block-left {
  margin-right: auto;
  margin-left: 0;
}

.block-center {
  margin-right: auto;
  margin-left: auto;
}

.block-right {
  margin-right: 0;
  margin-left: auto;
}

@media screen and (width >= 768px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (width < 768px) {
  .hidden-sp {
    display: none;
  }
}


/*--Products local-nav--*/
.parts-row.local-nav {
  gap: 0 20px;
}

@media screen and (width < 768px) {
  .parts-row.local-nav {
    gap: 0;
  }
}

/*--Products parts-col--*/
/*.parts-col.products-card {
  border: 1px solid #dfdfdf;
  border-radius: 6px;
}

.parts-col.products-card .parts-cardLink-ttl {
 margin: 22px 10px 20px 10px; 
}

.parts-col.products-card .parts-cardLink-txt {
  margin: 12px 10px 20px 10px;
}

.parts-col.products-card .parts-cardLink-dl {
  margin: 0 10px;
}

@media screen and (width < 768px) {
.parts-col.products-card .parts-cardLink-txt {
  margin: 12px 10px 10px 10px;
}
}*/

/***** RSS *****/
.rss-area {
  text-align: right;
}

.rss-area a {
  position: relative;
}

.rss-area a img {
  width: 16px;
  position: absolute;
  left: -19px;
  top: 5px;
}