@charset "utf-8";
/* --------------------------------------------------------
  ※共通パーツに関しては差別化するため基本的にflocss形式で作成
---------------------------------------------------------*/

/* c ----------------------------------------------------------------*/

.c-icon-pdf01 {
  width: 15px;
  height: 20px;
  margin-left: 6px;
  position: relative;
  top: -2px;
}
.c-icon-blank01 {
  margin-left: 6px;
  position: relative;
  top: -2px;
}
.c-icon-blank02 {
  margin-left: 6px;
  position: relative;
  top: 0px;
}
.c-icon-download01 {
  margin-left: 6px;
  position: relative;
  top: -1px;
}

.c-heading01 {
  position: relative;
  margin-bottom: 50px;
}
.c-heading01::before {
  content: '';
  position: absolute;
  left: -68px;
  top: 0;
  width: 60px;
  height: 70px;
  background: url(/assets/images/heading_deco01.svg);
  background-size: cover;
}
.c-heading01__main {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 4.7rem;
  line-height: 1;
}
.c-heading01__sub {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 3px;
}
@media screen and (max-width: 1279px) {
  .c-heading01 {
    padding-left: 68px;
  }
  .c-heading01::before {
    left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading01 {
    margin-bottom: 20px;
    padding-left: 60px;
  }
  .c-heading01::before {
    left: 12px;
    width: 38px;
    height: 44px;
  }
  .c-heading01__main {
    font-size: 3.7rem;
  }
}

.c-heading02 {
  margin-bottom: 30px;
  font-size: 2.6rem;
  line-height: 1.461;
  font-weight: 700;
}
.c-heading02.c-heading02--deco {
  display: flex;
  margin-bottom: 40px;
}
.c-heading02.c-heading02--deco::before {
  flex-shrink: 0;
  content: '';
  margin-right: 8px;
  display: block;
  width: 60px;
  height: 70px;
  background: url(/assets/images/heading_deco01.svg);
  background-size: cover;
}
.c-heading02__title {
  display: block;
}
.c-heading02.c-heading02--deco .c-heading02__title {
  padding-top: 18px;
}
@media screen and (max-width: 767px) {
  .c-heading02 {
    font-size: 2rem;
  }
  .c-heading02.c-heading02--deco {
    margin-bottom: 30px;
  }
  .c-heading02.c-heading02--deco::before {
    width: 38px;
    height: 44px;
  }
  .c-heading02.c-heading02--deco .c-heading02__title {
    padding-top: 7px;
  }
}

.c-heading03 {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}
.c-heading03:not(:first-child) {
  margin-top: 30px;
}
.c-heading03::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  display: block;
  width: 20px;
  height: 1px;
  background: #000;
}
.c-heading03.c-heading03--nonDeco {
  padding-left: 0;
}
.c-heading03.c-heading03--nonDeco::before {
  display: none;
}
.c-heading03.c-heading03--colorMain {
  color: var(--site-color-main);
}
.c-heading03.c-heading03--colorMain::before {
  background: var(--site-color-main);
}
.c-heading03.c-heading03--hasCaption {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.c-heading03.c-heading03--hasCaption .c-heading03__caption {
  display: block;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-heading03.c-heading03--hasCaption {
    display: block;
  }
}

.c-heading04 {
  font-size: 1.8rem;
  line-height: 1.44;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.c-heading04:not(:first-child) {
  margin-top: 20px;
}
.c-heading04::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  display: block;
  width: 10px;
  height: 1px;
  background: #000;
}
.c-heading04.c-heading03--colorMain {
  color: var(--site-color-main);
}
.c-heading04.c-heading03--colorMain::before {
  background: var(--site-color-main);
}

.c-heading05 {
  font-size: 1.8rem;
  line-height: 1.44;
  font-weight: 500;
  margin-bottom: 10px;
}
.c-heading05:not(:first-child) {
  margin-top: 20px;
}

.c-heading06 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
}
.c-heading06:not(:first-child) {
  margin-top: 20px;
}

.c-linkText01 {
  color: var(--site-color-link);
  text-decoration: underline;
}
.c-linkText01:hover {
  text-decoration: none;
}

.c-link-arrow01 {
  display: inline-flex;
  width: 26px;
  height: 26px;
  background-color: var(--site-color-main);
  border: 1px solid var(--site-color-main);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  transition: var(--hover-transition);
  position: relative;
  overflow: hidden;
}
.c-link-arrow01::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(135deg);
  margin-left: -5px;
}
a:hover .c-link-arrow01,
button:hover .c-link-arrow01 {
  background-color: transparent;
}
a:hover .c-link-arrow01::after,
button:hover .c-link-arrow01::after {
  border-top: 1px solid var(--site-color-main);
  border-left: 1px solid var(--site-color-main);
}

.c-link-arrow02 {
  display: inline-flex;
  width: 18px;
  height: 18px;
  background-color: var(--site-color-main);
  border: 1px solid var(--site-color-main);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  transition: var(--hover-transition);
  position: relative;
  overflow: hidden;
}
.c-link-arrow02::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(135deg);
  margin-left: -4px;
}
a:hover .c-link-arrow02,
button:hover .c-link-arrow02 {
  background-color: transparent;
}
a:hover .c-link-arrow02::after,
button:hover .c-link-arrow02::after {
  border-top: 1px solid var(--site-color-main);
  border-left: 1px solid var(--site-color-main);
}

.c-textArrowLink01 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 26px;
  text-decoration: none;
  color: #000;
}
.c-textArrowLink01__text {
  margin-right: 10px;
}
.c-textArrowLink01 .c-link-arrow01 {
  top: -4px;
}

.c-linkList01__lv1Item > a.c-textArrowLink01 {
  color: #039;
}
.c-linkList01__lv2List {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px 0;
  margin-top: 10px;
}
.c-linkList01__lv2Link {
  text-decoration: none;
  font-weight: 500;
  color: var(--site-color-text);
}
.c-linkList01__lv2Link:hover {
  text-decoration: underline;
}
.c-linkList01__lv2Link .c-link-arrow02 {
  margin-left: 6px;
  top: -3px;
}
.c-linkList01__lv3List {
  margin-left: 10px;
}
.c-linkList01__lv3Item {
  margin-top: 10px;
}
.c-linkList01__lv3Link {
  text-decoration: none;
  color: var(--site-color-text);
}
.c-linkList01__lv3Link:hover {
  text-decoration: underline;
}

.c-btn01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  font-size: 1.4rem;
  line-height: 20px;
  padding: 13px 20px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--hover-transition);
  border: 1px solid var(--site-color-main);
  background-color: var(--site-color-main);
  color: #fff;
}
.c-btn01:hover {
  background: #fff;
  color: var(--site-color-main);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    width: 100%;
    min-width: initial;
    font-size: 1.6rem;
    line-height: 24px;
    padding: 10px 20px;
    min-height: 60px;
  }
  .c-btn01:hover {
    background: #fff;
    color: var(--site-color-main);
  }
}

.c-btn02 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 350px;
  font-size: 2rem;
  line-height: 28px;
  padding: 20px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--hover-transition);
  border: 1px solid var(--site-color-main);
  background-color: var(--site-color-main);
  color: #fff;
}
.c-btn02:hover {
  background: #fff;
  color: var(--site-color-main);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    width: 100%;
    min-width: initial;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 20px;
    min-height: 60px;
  }
  .c-btn02:hover {
    background: #fff;
    color: var(--site-color-main);
  }
}

.c-pageTitle01 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 270px;
  color: #fff;
  position: relative;
}
.c-pageTitle01__inner {
  position: relative;
  text-align: center;
}
.c-pageTitle01__main {
  font-size: 3rem;
  font-weight: 400;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.c-pageTitle01__sub {
  font-size: 1.6rem;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.c-pageTitle01.scroll-in .c-pageTitle01__inner {
  overflow: hidden;
  opacity: 0;
}
.c-pageTitle01.scroll-in .c-pageTitle01__main,
.c-pageTitle01.scroll-in .c-pageTitle01__sub {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-pageTitle01.scroll-in.displayed .c-pageTitle01__inner {
  opacity: 1;
}
.c-pageTitle01.scroll-in.displayed .c-pageTitle01__main,
.c-pageTitle01.scroll-in.displayed .c-pageTitle01__sub {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
@media screen and (max-width: 767px) {
  .c-pageTitle01 {
    height: 180px;
  }
  .c-pageTitle01__main--small {
    font-size: 2rem;
  }
}

.c-pageTitle02 {
  padding-top: 50px;
}
.c-pageTitle02__title {
  font-size: 3rem;
  font-weight: 700;
}

.c-opacityHover {
  transition: var(--hover-transition);
}
.c-opacityHover:hover {
  opacity: var(--hover-opacity);
}

.c-text + .c-text {
  margin-top: 20px;
}
.c-caption01 {
  font-size: 1.2rem;
}
.c-caption02 {
  font-size: 1.4rem;
}
.c-textMarker-yellow {
  display: inline;
  background: linear-gradient(transparent 50%, #fff700 50%);
}
.c-floatImageText::after {
  content: '';
  display: block;
  clear: both;
}
.c-floatImageText__image {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}
.c-floatImageText__image.c-floatImageText__image--w298 {
  max-width: 298px;
}
.c-floatImageText__image.c-floatImageText__image--w300 {
  max-width: 300px;
}
.c-floatImageText__caption {
  margin-top: 5px;
}
.c-floatImageText--right .c-floatImageText__image {
  float: right;
  margin-left: 30px;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .c-floatImageText__image {
    float: none;
    text-align: center;
    margin: 0 auto 20px;
  }
  .c-floatImageText--right .c-floatImageText__image {
    float: none;
    margin: 0 auto 20px;
  }
}

.c-flexImageText01 {
  display: flex;
  gap: 0 30px;
}
.c-flexImageText01__text {
  flex: 1;
}
.c-flexImageText01__image {
  max-width: 300px;
  flex-shrink: 0;
}
.c-flexImageText01__image img {
  display: block;
  margin: 0 auto;
}
.c-flexImageText01__image.c-flexImageText01__image--wAuto {
  max-width: initial;
}
.c-flexImageText01__image.c-flexImageText01__image--w298 {
  max-width: 298px;
}
.c-flexImageText01__image.c-flexImageText01__image--w200 {
  max-width: 200px;
}

.c-flexImageText01__caption {
  margin-top: 5px;
}
.c-flexImageText01__caption img {
  display: inline;
  margin: 0;
}
.c-flexImageText01__image .c-flexImageText01__caption:first-child {
  margin-top: 0;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .c-flexImageText01 {
    display: block;
  }
  .c-flexImageText01__image {
    margin: 0 auto;
  }
  .c-flexImageText01__image img {
    height: auto;
  }
  .c-flexImageText01__text + .c-flexImageText01__image {
    margin: 20px auto 0;
  }
  .c-flexImageText01__image + .c-flexImageText01__text {
    margin-top: 20px;
  }
}

.c-textLinkList01__item + .c-textLinkList01__item {
  margin-top: 20px;
}

.c-numberList01 {
  list-style: decimal;
}
.c-numberList01__item {
  margin-left: 1.2em;
}
.c-numberList01--gap10 .c-numberList01__item + .c-numberList01__item {
  margin-top: 10px;
}
.c-numberList01--gap20 .c-numberList01__item + .c-numberList01__item {
  margin-top: 20px;
}

.c-discList01__item {
  position: relative;
  padding-left: 1.2em;
}
.c-discList01__item::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0.68em;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
}
.c-discList01--gap10 .c-discList01__item + .c-discList01__item {
  margin-top: 10px;
}
.c-discList01--gap20 .c-discList01__item + .c-discList01__item {
  margin-top: 20px;
}

.c-bracketsNumberList01 {
  margin-left: 2.2em;
}
.c-bracketsNumberList01__item {
  list-style-type: none;
  counter-increment: cnt;
}
.c-bracketsNumberList01--gap10
  .c-bracketsNumberList01__item
  + .c-bracketsNumberList01__item {
  margin-top: 10px;
}
.c-bracketsNumberList01--gap20
  .c-bracketsNumberList01__item
  + .c-bracketsNumberList01__item {
  margin-top: 20px;
}
.c-bracketsNumberList01__item::before {
  content: '(' counter(cnt) ')';
  display: inline-block;
  margin-left: -2.2em;
  width: 2.2em;
}

.c-imageArea01 {
  margin: 30px 0;
  text-align: center;
}
.c-imageArea01__inner {
  display: inline-block;
}

.c-imageArea01__inner-caption {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 24px;
  text-align: right;
}
.c-imageArea01:last-child {
  margin-bottom: 0;
}
.c-imageArea01 img {
  height: auto;
}
.c-imageArea01--w100 img {
  width: 100%;
}
.c-imageArea02 {
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  gap: 10px 20px;
}
.c-imageArea02:last-child {
  margin-bottom: 0;
}

.c-imageW100 {
  width: 100%;
  height: auto;
}

.c-imageBorder01 {
  border: 1px solid #ccc;
}

.c-imageZoom01 {
  margin-top: 20px;
  text-align: left;
}
.c-imageZoom01__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.c-imageZoom01__link::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(/assets/images/icon-zoom.svg) no-repeat center center;
  background-size: 20px 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-imageZoom01__link {
    font-size: 1.4rem;
  }
}

.c-movieArea01 {
  margin: 30px 0;
  text-align: center;
}
.c-movieArea01__movie {
  margin: 0 auto;
  aspect-ratio: 16/9;
  max-width: 800px;
}
.c-movieArea01__movie iframe,
.c-movieArea01__movie video {
  width: 100%;
  height: 100%;
}

.c-form-select {
  position: relative;
  display: inline-block;
  min-width: 230px;
}
.c-form-select::after {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  top: 22px;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 6px solid var(--site-color-main);
  transform: rotate(90deg);
}
.c-form-select__select {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--site-color-main);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 48px 12px 20px;
  min-height: 48px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--site-color-main);
}

/* p ----------------------------------------------------------------*/
.p-cardList01 {
  display: flex;
  flex-flow: row wrap;
  gap: 50px 48px;
}
.p-cardList01 .p-cardList01__item {
  width: calc((100% / 2) - (48px / 2));
}
.p-cardList01 .p-cardList01__link {
  text-decoration: none;
  color: var(--site-color-text);
}
.p-cardList01 .p-cardList01__image {
  width: 100%;
  aspect-ratio: 51 / 23;
  overflow: hidden;
}
.p-cardList01 .p-cardList01__image img {
  width: 100%;
  height: auto;
  transition: 0.4s all;
}
.p-cardList01 .p-cardList01__link:hover .p-cardList01__image img {
  transform: scale(1.1, 1.1);
  transition: 0.4s all;
}
.p-cardList01 .p-cardList01__title {
  margin-top: 20px;
  display: flex;
  gap: 0 10px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4615;
}
.p-cardList01 .p-cardList01__title-icon {
  flex-shrink: 0;
}
.p-cardList01 .p-cardList01__title-icon .c-link-arrow01 {
  top: 6px;
  vertical-align: top;
}
.p-cardList01 .p-cardList01__text {
  margin-top: 15px;
}
.p-cardList01.p-cardList01--3col {
  gap: 50px 27px;
}
.p-cardList01.p-cardList01--3col .p-cardList01__item {
  width: calc((100% / 3) - (27px * 2 / 3));
}
.p-cardList01.p-cardList01--3col .p-cardList01__image {
  aspect-ratio: 169 / 114;
}
.p-cardList01.p-cardList01--3col .p-cardList01__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
}
.p-cardList01.p-cardList01--3col .p-cardList01__title-icon .c-link-arrow01 {
  top: 2px;
}
@media screen and (max-width: 1023px) {
  .p-cardList01 {
    gap: 50px 24px;
  }
  .p-cardList01 .p-cardList01__item {
    width: calc((100% / 2) - (24px / 2));
  }
  .p-cardList01.p-cardList01--3col {
    gap: 50px 19px;
  }
  .p-cardList01.p-cardList01--3col .p-cardList01__item {
    width: calc((100% / 3) - (19px * 2 / 3));
  }
}
@media screen and (max-width: 767px) {
  .p-cardList01 {
    gap: 20px 0;
  }
  .p-cardList01.p-cardList01--hasText {
    gap: 40px 0;
  }
  .p-cardList01 .p-cardList01__item {
    width: 100%;
  }
  .p-cardList01 .p-cardList01__image {
    aspect-ratio: 67 / 22;
  }
  .p-cardList01 .p-cardList01__title {
    margin-top: 10px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .p-cardList01 .p-cardList01__title-icon .c-link-arrow01 {
    top: 0px;
  }
  .p-cardList01.p-cardList01--3col {
    gap: 20px 0;
  }
  .p-cardList01.p-cardList01--3col .p-cardList01__item {
    width: 100%;
  }
  .p-cardList01.p-cardList01--3col .p-cardList01__image {
    aspect-ratio: 67 / 22;
  }
  .p-cardList01.p-cardList01--3col .p-cardList01__title {
    font-size: 1.8rem;
  }
  .p-cardList01.p-cardList01--3col .p-cardList01__title-icon .c-link-arrow01 {
    top: 0;
  }
}

.p-cardList02__item + .p-cardList02__item {
  margin-top: 50px;
}
.p-cardList02__item {
  display: flex;
}
.p-cardList02__image {
  width: 50%;
  aspect-ratio: 534/298;
  overflow: hidden;
}
.p-cardList02__image img {
  width: 100%;
  height: auto;
}
.p-cardList02__detail {
  flex: 1;
  padding-left: 30px;
}
.p-cardList02__btn {
  margin-top: 40px;
  text-align: right;
}
.p-cardList02__list {
  display: flex;
  flex-flow: row wrap;
  gap: 10px 30px;
}
.p-cardList02__list-item {
  width: calc(50% - (30px / 2));
}
.p-cardList02__item:nth-child(even) .p-cardList02__image {
  order: 2;
}
.p-cardList02__item:nth-child(even) .p-cardList02__detail {
  order: 1;
  padding-left: 0;
  padding-right: 30px;
}
.p-cardList02--imgRightStart .p-cardList02__image {
  order: 2;
}
.p-cardList02--imgRightStart .p-cardList02__detail {
  order: 1;
  padding-left: 0;
  padding-right: 30px;
}
.p-cardList02--imgRightStart
  .p-cardList02__item:nth-child(even)
  .p-cardList02__image {
  order: 1;
}
.p-cardList02--imgRightStart
  .p-cardList02__item:nth-child(even)
  .p-cardList02__detail {
  order: 2;
  padding-left: 30px;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .p-cardList02__item {
    display: block;
  }
  .p-cardList02__item + .p-cardList02__item {
    margin-top: 80px;
  }
  .p-cardList02.p-cardList02--small .p-cardList02__item + .p-cardList02__item {
    margin-top: 40px;
  }
  .p-cardList02__image {
    width: 100%;
    aspect-ratio: 335/160;
    margin-bottom: 10px;
  }
  .p-cardList02.p-cardList02--small .p-cardList02__image {
    aspect-ratio: 335/110;
  }
  .p-cardList02__detail {
    padding-left: 0;
  }
  .p-cardList02__heading .c-heading02 {
    margin-bottom: 10px;
  }
  .p-cardList02__btn {
    margin-top: 20px;
    text-align: center;
  }
  .p-cardList02__list {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px 0;
  }
  .p-cardList02__list-item {
    width: 100%;
  }
  .p-cardList02__item:nth-child(even) .p-cardList02__detail {
    padding-right: 0;
  }
  .p-cardList02--imgRightStart .p-cardList02__detail {
    padding-right: 0;
  }
  .p-cardList02--imgRightStart
    .p-cardList02__item:nth-child(even)
    .p-cardList02__detail {
    padding-left: 0;
  }
}

.p-cardList03__item + .p-cardList03__item {
  margin-top: 70px;
}
.p-cardList03__item {
  display: flex;
}
.p-cardList03__image {
  width: 50%;
}
.p-cardList03__image img {
  width: 100%;
  height: auto;
}
.p-cardList03__detail {
  flex: 1;
  padding-left: 30px;
}
.p-cardList03__btn {
  margin-top: 40px;
  text-align: right;
}
.p-cardList03__detail .c-heading03 {
  margin-bottom: 20px;
}
.p-cardList03__item:nth-child(even) .p-cardList03__image {
  order: 2;
}
.p-cardList03__item:nth-child(even) .p-cardList03__detail {
  order: 1;
  padding-left: 0;
  padding-right: 30px;
}
.p-cardList03--imgRightStart .p-cardList03__image {
  order: 2;
}
.p-cardList03--imgRightStart .p-cardList03__detail {
  order: 1;
  padding-left: 0;
  padding-right: 30px;
}
.p-cardList03--imgRightStart
  .p-cardList03__item:nth-child(even)
  .p-cardList03__image {
  order: 1;
}
.p-cardList03--imgRightStart
  .p-cardList03__item:nth-child(even)
  .p-cardList03__detail {
  order: 2;
  padding-left: 30px;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .p-cardList03__item {
    display: block;
  }
  .p-cardList03__item + .p-cardList03__item {
    margin-top: 50px;
  }
  .p-cardList03__image {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-cardList03__detail {
    padding-left: 0;
  }
  .p-cardList03__btn {
    margin-top: 30px;
    text-align: center;
  }
  .p-cardList03__detail .c-heading03 {
    margin-bottom: 10px;
  }
  .p-cardList03__item:nth-child(even) .p-cardList03__detail {
    padding-right: 0;
  }
  .p-cardList03--imgRightStart .p-cardList03__detail {
    padding-right: 0;
  }
  .p-cardList03--imgRightStart
    .p-cardList03__item:nth-child(even)
    .p-cardList03__detail {
    padding-left: 0;
  }
}

.p-cardList04__image {
  margin-bottom: 10px;
}
.p-cardList04__accent {
  font-size: 1.4rem;
  font-weight: 700;
}
.p-cardList04__sub {
  font-size: 1.4rem;
  margin-top: 10px;
}
.p-cardList04__note {
  font-size: 1.2rem;
  margin-top: 10px;
}
.p-cardList04--vertical {
  display: flex;
  flex-flow: row nowrap;
  gap: 0 20px;
}
.p-cardList04--vertical .p-cardList04__image {
  margin-bottom: 0;
  flex-shrink: 0;
}
.p-cardList04--vertical .p-cardList04__detail {
  flex: 1;
}

.p-relationList01 {
  display: flex;
  flex-flow: row wrap;
  gap: 20px 27px;
}
.p-relationList01__item {
  width: calc(33.3333% - 27px * 2 / 3);
}
.p-relationList01__link {
  display: flex;
  border: 1px solid var(--site-color-main);
  min-height: 70px;
  height: 100%;
  text-decoration: none;
  color: #000;
  align-items: center;
}
.p-relationList01__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 100%;
  background: #f8f8f8;
}
.p-relationList01__text {
  flex: 1;
  padding: 2px 10px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-relationList01 {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px 0px;
  }
  .p-relationList01__item {
    width: 100%;
  }
}

.p-relationList02 {
  display: flex;
  flex-flow: row wrap;
  gap: 20px 48px;
}
.p-relationList02__item {
  width: calc((100% / 2) - (48px / 2));
}
.p-relationList02__link {
  display: flex;
  border: 1px solid var(--site-color-main);
  min-height: 150px;
  height: 100%;
  text-decoration: none;
  color: #000;
  align-items: center;
}
.p-relationList02__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100%;
  background: #f8f8f8;
}
.p-relationList02__icon img {
  height: auto;
}
.p-relationList02__text {
  flex: 1;
  padding: 2px 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
.isHaptic .p-relationList02__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.isHaptic .p-relationList02__logo {
  width: 152px;
}
@media screen and (max-width: 1023px) {
  .p-relationList02 {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px 0px;
  }
  .p-relationList02__item {
    width: 100%;
  }
  .p-relationList02__link {
    min-height: 80px;
  }
  .p-relationList02__icon {
    width: 80px;
  }
  .p-relationList02__text {
    padding: 2px 10px;
    font-size: 1.6rem;
  }
}

.p-contactArea01 {
  text-align: center;
}
.p-contactArea01__heading {
  margin-bottom: 30px;
}
.p-contactArea01__heading-title {
  font-size: 2.6rem;
  font-weight: 700;
}
.p-contactArea01__heading-sub {
  font-size: 1.6rem;
}

.p-videoList01 {
  display: flex;
  flex-flow: row wrap;
  gap: 30px 27px;
}
.p-videoList01__item {
  width: calc((100% / 3) - (27px * 2 / 3));
}
.p-videoList01__btn {
  width: 100%;
  text-decoration: none;
}
.p-videoList01__btn:hover {
  text-decoration: none;
}
.p-videoList01__img {
  width: 100%;
  transition: var(--hover-transition);
}
.p-videoList01__btn:hover .p-videoList01__img {
  opacity: var(--hover-opacity);
}
.p-videoList01__title {
  display: block;
  color: var(--site-color-text);
  font-weight: 500;
  position: relative;
  margin-top: 20px;
  display: flex;
  gap: 0 10px;
  font-size: 2rem;
}
.p-videoList01__title-text {
  display: block;
}
.p-videoList01__title-icon {
  flex-shrink: 0;
}
.p-videoList01__title-icon .c-link-arrow01 {
  top: -2px;
}
.p-videoList01__note {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}
.p-videoList01.p-videoList01--col5 {
  gap: 30px 20px;
}
.p-videoList01.p-videoList01--col5 .p-videoList01__item {
  width: calc((100% / 5) - (20px * 4 / 5));
}
.p-videoList01.p-videoList01--col5 .p-videoList01__title {
  margin-top: 10px;
  font-size: 1.6rem;
}
.p-videoList01.p-videoList01--col5 .p-videoList01__title-icon .c-link-arrow02 {
  top: -2px;
}

@media screen and (max-width: 767px) {
  .p-videoList01 {
    display: flex;
    flex-flow: row wrap;
    gap: 20px 0;
  }
  .p-videoList01__item {
    width: 100%;
  }
  .p-videoList01__title {
    margin-top: 10px;
    font-size: 1.8rem;
  }
  .p-videoList01.p-videoList01--col5 {
    gap: 20px;
  }
  .p-videoList01.p-videoList01--col5 .p-videoList01__item {
    width: calc((100% / 2) - (20px * 1 / 2));
  }
}

.p-lineItemList01__item {
  display: flex;
  align-items: center;
  padding: 30px 20px;
  gap: 0 30px;
  border-bottom: 1px solid #e5e5e5;
}
.p-lineItemList01__item:first-child {
  border-top: 1px solid #e5e5e5;
}
.p-lineItemList01__title {
  width: 200px;
  flex-shrink: 0;
  font-weight: bold;
}
.p-lineItemList01__body {
  flex: 1;
}
.p-lineItemList01__link {
  color: #000;
  text-decoration: none;
}
.p-lineItemList01__link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-lineItemList01__item {
    display: block;
    padding: 20px;
  }
  .p-lineItemList01__title {
    width: auto;
    margin-bottom: 10px;
  }
}

.p-table01 {
  border-bottom: 1px solid var(--site-table-border1);
  border-right: 1px solid var(--site-table-border1);
  border-spacing: 0;
  border-collapse: separate;
  width: 100%;
  min-width: 800px;
}
.p-table01.p-table01--noMinWidth {
  min-width: initial;
}
:where(.p-table01 th, .p-table01 td) {
  font-size: 1.4rem;
  border-top: 1px solid var(--site-table-border1);
  border-left: 1px solid var(--site-table-border1);
  padding: 9px 10px;
  vertical-align: top;
}
:where(.p-table01 th) {
  font-weight: 500;
  background: var(--site-table-th1);
}
:where(.p-table01 td) {
  background: #fff;
}
.p-table01 .p-table01__th {
  background: var(--site-table-th1);
}
.p-table01 .p-table01__th2 {
  background: var(--site-table-th2);
}
.p-table01 .p-table01__accent1 {
  background: var(--site-table-bg-accent1);
}
.p-table01 .p-table01__borderLeftNone {
  border-left: none;
}
.p-table01 .p-table01__indent {
  padding-left: calc(10px + 1em);
}
@media screen and (max-width: 767px) {
  .p-table01.p-table01--spBlock th,
  .p-table01.p-table01--spBlock td {
    display: block;
  }
}

.p-btnList01 {
  display: flex;
  flex-flow: row wrap;
  gap: 30px 27px;
}
.p-btnList01__item {
  width: calc((100% / 3) - (27px * 2 / 3));
}
.p-btnList01__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 100%;
  min-height: 72px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
}
.p-btnList01__link-text {
  display: block;
  font-weight: 700;
  color: #000;
  flex: 1;
  padding-right: 20px;
  transition: var(--hover-transition);
}
.p-btnList01__link:hover .p-btnList01__link-text {
  opacity: var(--hover-opacity);
}
.p-btnList01__link-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .p-btnList01 {
    gap: 20px 0;
  }
  .p-btnList01__item {
    width: 100%;
  }
}

.p-btnList02 {
  display: flex;
  flex-flow: row wrap;
  gap: 10px 20px;
}
.p-btnList02__item {
  width: calc((100% / 3) - (20px * 2 / 3));
}
.p-btnList02__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: 20px;
  padding: 13px 5px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--hover-transition);
  border: 1px solid var(--site-color-main);
  background-color: #fff;
  color: var(--site-color-main);
  word-break: break-all;
}
.p-btnList02__item--current .p-btnList02__link {
  background-color: var(--site-color-main);
  color: #fff;
}
a.p-btnList02__link:hover {
  opacity: var(--hover-opacity);
}
@media screen and (max-width: 767px) {
  .p-btnList02 {
    gap: 10px;
  }
  .p-btnList02__link {
    padding: 9px 5px;
  }
}

.p-btnList03 {
  display: flex;
  flex-flow: row wrap;
  gap: 20px 27px;
}
.p-btnList03__item {
  width: calc((100% / 3) - (27px * 2 / 3));
}
.p-btnList03__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 100%;
  min-height: 70px;
  border: 1px solid var(--site-color-main);
  text-decoration: none;
}
.p-btnList03__item--current .p-btnList03__link {
  background: #f3f3f3;
}
.p-btnList03__link-text {
  display: block;
  font-size: 1.4rem;
  line-height: 1.428;
  color: #000;
  flex: 1;
  padding-right: 20px;
  transition: var(--hover-transition);
}
.p-btnList01__link:hover .p-btnList01__link-text {
  opacity: var(--hover-opacity);
}
.p-btnList01__link-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 1023px) {
  .p-btnList03 {
    gap: 20px 0;
  }
  .p-btnList03__item {
    width: 100%;
  }
}

.p-newsArea01__newsTitle {
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(
    to right,
    var(--site-color-main) 60%,
    transparent
  );
  border-image-slice: 1;
}
.p-newsArea01__item {
  display: flex;
}
.p-newsArea01__item + .p-newsArea01__item {
  margin-top: 20px;
}
.p-newsArea01__head {
  display: flex;
}
.p-newsArea01__date {
  width: 130px;
  padding-right: 10px;
  flex-shrink: 0;
}
.p-newsArea01__cat {
  width: 170px;
  padding-right: 30px;
}
.p-newsArea01__cat-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--site-color-main);
  min-height: 25px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
}
.p-newsArea01__title {
  flex: 1;
}
.p-newsArea01__link {
  text-decoration: none;
  color: var(--site-color-text);
}
.p-newsArea01__link:hover {
  text-decoration: underline;
}
.p-newsArea01__correct-before,
.p-newsArea01__correct-before .p-newsArea01__link {
  color: #888;
}
.p-newsArea01__link .c-link-arrow02 {
  margin-left: 6px;
  top: -3px;
}
.p-newsArea01__correct-after {
  position: relative;
  padding-left: 1em;
}
.p-newsArea01__correct-after::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 4px;
  top: 4px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-newsArea01__item {
    display: block;
  }
  .p-newsArea01__date {
    width: auto;
  }
  .p-newsArea01__cat {
    display: inline-flex;
    width: auto;
    margin-left: 10px;
    padding-right: 0;
  }
}

.p-iconLinkList01 {
  display: flex;
  flex-flow: row wrap;
  gap: 20px 48px;
}
.p-iconLinkList01__item {
  width: calc((100% / 3) - (48px * 2 / 3));
}
.p-iconLinkList01__link {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--site-color-main);
  min-height: 70px;
  height: 100%;
  text-decoration: none;
  color: #000;
  transition: var(--hover-transition);
}
.p-iconLinkList01__link:hover {
  opacity: var(--hover-opacity);
}
.p-iconLinkList01__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 100%;
  background: #e5eaf5;
}
.p-iconLinkList01__text {
  flex: 1;
  padding: 10px;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  background: #fff;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-iconLinkList01 {
    gap: 10px 0;
  }
  .p-iconLinkList01__item {
    width: 100%;
  }
}

/* l ----------------------------------------------------------------*/
.l-mainInnerWrap {
  position: relative;
  z-index: 1;
  clip-path: inset(0);
}

.l-breadcrumb {
  padding: 20px 0 36px;
  border-radius: 46px 0 0 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.84) 0%,
    rgba(255, 255, 255, 1) 80%
  );
}
.breadcrumbsWithSignInStatus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f8f8;
  padding: 0 35px;
}
@media screen and (max-width: 1023px) {
  .breadcrumbsWithSignInStatus {
    display: block;
    padding: 0;
  }
}
.memberSignInStatusBox {
  padding: 0 0 0 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .memberSignInStatusBox {
    padding: 0 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .memberSignInStatusBox {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.l-breadcrumb.isBreadcrumbTop {
  padding: 12px 36px;
  border-radius: 0;
  background: #f8f8f8;
}
.breadcrumbsWithSignInStatus .l-breadcrumb.isBreadcrumbTop {
  padding: 12px 0;
}
.l-breadcrumb.isBreadcrumbTop .l-innerWrap01 {
  width: auto;
  padding: 0;
  max-width: initial;
}
.l-breadcrumb__list {
  font-size: 0;
}
.l-breadcrumb__item {
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-right: 10px;
}
.l-breadcrumb.isBreadcrumbTop .l-breadcrumb__item {
  font-size: 1.2rem;
}
.l-breadcrumb__item::after {
  content: '';
  display: block;
  margin-left: 10px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--site-color-main);
  border-right: 1px solid var(--site-color-main);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  left: -2px;
  top: 2px;
}
.l-breadcrumb__item:last-child {
  margin-right: 0px;
}
.l-breadcrumb__item:last-child::after {
  display: none;
}
.l-breadcrumb__link {
  color: var(--site-color-link);
  text-decoration: underline;
}
@media screen and (max-width: 1023px) {
  .breadcrumbsWithSignInStatus .l-breadcrumb.isBreadcrumbTop + .logStatusArea {
    padding: 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    padding: 25px 0 11px;
  }
  .l-breadcrumb__item {
    font-size: 1.4rem;
    line-height: 24px;
  }
  .breadcrumbsWithSignInStatus .l-breadcrumb.isBreadcrumbTop {
    padding: 4px 0;
  }
  .breadcrumbsWithSignInStatus .l-breadcrumb.isBreadcrumbTop + .logStatusArea {
    border-top: 1px solid #ddd;
    padding: 10px 0;
  }

  .breadcrumbsWithSignInStatus
    .l-breadcrumb.isBreadcrumbTop
    .l-breadcrumb__nav {
    padding: 0 8px;
  }
}

.l-innerWrap01 {
  width: calc(83.4375% + 40px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1279px) {
  .l-innerWrap01 {
    width: auto;
    padding: 0 20px;
  }
}

.l-btnArea01 {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .l-btnArea01 {
    margin-top: 30px;
  }
}

.l-contentsBox01 {
  position: relative;
  padding: 70px 0;
  border-radius: 46px 0 0 46px;
  background: linear-gradient(
    rgba(255, 255, 255, 0.84) 0%,
    rgba(255, 255, 255, 1) 30%
  );
}
.l-contentsBox01__inner {
  position: relative;
  z-index: 2;
}
.l-contentsBox01.scroll-in {
  opacity: 0;
}
.l-contentsBox01.displayed {
  animation: fadeIn 1.2s var(--ani-cb-01) forwards;
}

@media screen and (max-width: 767px) {
  .l-contentsBox01 {
    padding: 50px 0;
  }
}

.l-contentsBoxTop {
  position: relative;
  padding: 40px 0 70px;
  border-radius: 0 0 0 46px;
  background: #fff;
}
.l-contentsBoxTop:last-child,
.l-contentsBoxTop.l-contentsBoxTop--nonRadius {
  border-radius: 0;
}
@media screen and (max-width: 1279px) {
  .l-contentsBoxTop:last-child {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .l-contentsBoxTop {
    padding: 20px 0 50px;
  }
}

.l-contentsBoxBase {
  position: relative;
  padding: 70px 0;
  border-radius: 46px 0 0 46px;
  background: linear-gradient(
    rgba(255, 255, 255, 0.84) 0%,
    rgba(255, 255, 255, 1) 30%
  );
}
.l-contentsBoxBase:last-child {
  border-radius: 46px 0 0 0;
}
@media screen and (max-width: 1279px) {
  .l-contentsBoxBase:last-child {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .l-contentsBoxBase {
    padding: 50px 0;
  }
}
.l-contentsBoxTop + .l-contentsBoxBase,
.l-contentsBoxBase + .l-contentsBoxBase {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .l-contentsBoxTop + .l-contentsBoxBase,
  .l-contentsBoxBase + .l-contentsBoxBase {
    margin-top: 100px;
  }
}

.l-contentsSection01 {
  position: relative;
  padding: 70px 0;
  background: #fff;
}
.l-breadcrumb + .l-contentsSection01 {
  padding: 40px 0 70px;
}
.l-breadcrumb + .l-contentsSection01.l-contentsSection01--nonTopPadding {
  padding: 0 0 70px;
}
@media screen and (max-width: 1279px) {
  .l-contentsSection01:last-child,
  .l-breadcrumb
    + .l-contentsSection01.l-contentsSection01--nonTopPadding:last-child {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .l-contentsSection01 {
    padding: 50px 0;
  }
  .l-breadcrumb + .l-contentsSection01 {
    padding: 20px 0 50px;
  }
  .l-breadcrumb + .l-contentsSection01.l-contentsSection01--nonTopPadding {
    padding: 20px 0 50px;
  }
  .l-contentsSection01:last-child,
  .l-breadcrumb
    + .l-contentsSection01.l-contentsSection01--nonTopPadding:last-child {
    padding-bottom: 120px;
  }
}
.l-contentsSection02 {
  position: relative;
  padding: 70px 0;
  background-color: var(--site-color-baseB);
}
@media screen and (max-width: 1279px) {
  .l-contentsSection02:last-child {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .l-contentsSection02 {
    padding: 50px 0;
  }
}
.l-contentsSection03 {
  position: relative;
  padding: 70px 0;
  background-color: #ecf1fc;
}
@media screen and (max-width: 1279px) {
  .l-contentsSection03:last-child {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .l-contentsSection03 {
    padding: 50px 0;
  }
}

.l-lv2-contentsWrap {
  opacity: 0;
  transform: translateY(40px);
}
.l-lv2-contentsWrap.displayed {
  animation: fadeInSlideUp 1.2s var(--ani-cb-01) forwards;
}

.l-lv2-bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
.l-lv2-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(7, 2, 2, 0.2);
}

.l-mv-bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 440px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
.l-mv-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(7, 2, 2, 0.2);
}
.l-mv-bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 20px;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
@media screen and (max-width: 767px) {
  .l-mv-bg {
    height: 300px;
  }
}

.l-block01 + .l-block01 {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .l-block01 + .l-block01 {
    margin-top: 50px;
  }
}

.l-2col-block {
  display: flex;
  flex-flow: row wrap;
  gap: 50px 40px;
}
.l-2col-block .l-2col-block__item {
  width: calc((100% / 2) - (40px * 1 / 2));
}
@media screen and (max-width: 767px) {
  .l-2col-block {
    gap: 20px 0;
  }
  .l-2col-block .l-2col-block__item {
    width: 100%;
  }
}

.l-3col-block {
  display: flex;
  flex-flow: row wrap;
  gap: 50px 27px;
}
.l-3col-block .l-3col-block__item {
  width: calc((100% / 3) - (27px * 2 / 3));
}
@media screen and (max-width: 767px) {
  .l-3col-block {
    gap: 20px 0;
  }
  .l-3col-block .l-3col-block__item {
    width: 100%;
  }
}

.l-3col-block02 {
  display: flex;
  flex-flow: row wrap;
  gap: 50px 27px;
}
.l-3col-block02__item {
  width: calc((100% / 3) - (27px * 2 / 3));
}
@media screen and (max-width: 1023px) {
  .l-3col-block02 {
    gap: 50px 40px;
  }
  .l-3col-block02__item {
    width: calc((100% / 2) - (40px * 1 / 2));
  }
}
@media screen and (max-width: 767px) {
  .l-3col-block02 {
    gap: 50px 0;
  }
  .l-3col-block02__item {
    width: 100%;
  }
}

.l-4col-block {
  display: flex;
  flex-flow: row wrap;
  gap: 30px 20px;
}
.l-4col-block .l-4col-block__item {
  width: calc((100% / 4) - (20px * 3 / 4));
}
@media screen and (max-width: 1023px) {
  .l-4col-block .l-4col-block__item {
    width: calc((100% / 3) - (20px * 2 / 3));
  }
}
@media screen and (max-width: 767px) {
  .l-4col-block .l-4col-block__item {
    width: calc((100% / 2) - (20px * 1 / 2));
  }
}

.l-lineBlock01 {
  display: flex;
  flex-flow: row wrap;
}
.l-lineBlock01__item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  width: 50%;
}
.l-lineBlock01__item:first-child,
.l-lineBlock01__item:nth-child(2) {
  border-top: 1px solid #e5e5e5;
}
.l-lineBlock01__item:nth-child(odd) {
  padding-right: 10px;
}
.l-lineBlock01__item:nth-child(even) {
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .l-lineBlock01 {
    display: block;
  }
  .l-lineBlock01__item {
    width: 100%;
  }
  .l-lineBlock01__item:nth-child(2) {
    border-top: none;
  }
  .l-lineBlock01__item:nth-child(odd) {
    padding-right: 0;
  }
  .l-lineBlock01__item:nth-child(even) {
    padding-left: 0;
  }
}

.l-tableScrollWrap {
  overflow-x: auto;
}

.l-grayBox01 {
  background: var(--site-color-baseB);
  padding: 20px;
}
.l-grayBox02 {
  background: var(--site-color-baseB);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .l-grayBox02 {
    padding: 20px;
  }
}

.l-whiteBox01 {
  background: #fff;
  padding: 20px;
}
.l-whiteBox02 {
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .l-whiteBox02 {
    padding: 20px;
  }
}

.l-tab01__listContainer {
  margin-bottom: 30px;
  position: relative;
}
.l-tab01__listContainer.is-scroll::before {
  content: '';
  display: block;
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.8) 80%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 2;
}
.l-tab01__listContainer.is-scroll::after {
  content: '';
  display: block;
  position: absolute;
  right: -10px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #039;
  border-right: 2px solid #039;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 3;
  animation-name: hint;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
@keyframes hint {
  from {
    opacity: 1;
    transform: rotate(45deg) translateX(-10px) translateY(10px);
  }
  to {
    opacity: 0;
    transform: rotate(45deg) translateX(0) translateY(0);
  }
}
.l-tab01__listWrap {
  overflow: auto;
  border-bottom: 1px solid var(--site-color-main);
}
.l-tab01__list {
  display: inline-flex;
  gap: 0 10px;
  overflow-x: auto;
}
.l-tab01__list-btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 10px 20px;
  border-radius: 4px 4px 0 0;
  border-top: 1px solid var(--site-color-main);
  border-left: 1px solid var(--site-color-main);
  border-right: 1px solid var(--site-color-main);
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--site-color-main);
  background: #fff;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.l-tab01__list-btn.is-selected,
.l-tab01__list-btn.open {
  background: var(--site-color-main);
  color: #fff;
}
.l-tab01__listContainer--bottom {
  margin-top: 30px;
}
.l-tab01__listContainer--bottom .l-tab01__listWrap {
  border-bottom: none;
  border-top: 1px solid var(--site-color-main);
}
.l-tab01__listContainer--bottom .l-tab01__list-btn {
  border-radius: 0 0 4px 4px;
  border-bottom: 1px solid var(--site-color-main);
  border-top: none;
}
@media screen and (max-width: 767px) {
  .l-tab01__list-btn {
    min-width: initial;
  }
}

/* ユーティリティまたは旧サイトからの引き継ぎ ----------------------------------------------------------------------- */
.u-clearfix::after,
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-ta-l {
  text-align: left !important;
}
.u-ta-r {
  text-align: right !important;
}
.u-ta-c {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-ta-l-sp {
    text-align: left !important;
  }
  .u-ta-r-sp {
    text-align: right !important;
  }
  .u-ta-c-sp {
    text-align: center !important;
  }
}
.u-va-t {
  vertical-align: top !important;
}
.u-va-b {
  vertical-align: bottom !important;
}
.u-va-m {
  vertical-align: middle !important;
}
@media screen and (max-width: 767px) {
  .u-va-t-sp {
    vertical-align: top !important;
  }
  .u-va-b-sp {
    vertical-align: bottom !important;
  }
  .u-va-m-sp {
    vertical-align: middle !important;
  }
}

.u-fw-n {
  font-weight: 400 !important;
}
.u-fw-m {
  font-weight: 500 !important;
}
.u-fw-b,
.bold {
  font-weight: 700 !important;
}

.u-c-main {
  color: var(--site-color-main) !important;
}

.u-c-caution {
  color: var(--site-color-caution) !important;
}

.u-d-none {
  display: none !important;
}
.u-d-inline {
  display: inline !important;
}
.u-d-block {
  display: block !important;
}
.u-d-inblock {
  display: inline-block !important;
}
.u-d-flex {
  display: flex !important;
}
.u-d-inflex {
  display: inline-flex !important;
}
.u-d-inline-sp {
  display: none !important;
}
.u-d-block-tb {
  display: none !important;
}
.u-d-block-sp {
  display: none !important;
}
.u-d-inblock-sp {
  display: none !important;
}
.u-d-flex-sp {
  display: none !important;
}
.u-d-inflex-sp {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .u-d-block-tb {
    display: block !important;
  }
  .u-d-none-tb {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-d-none-sp {
    display: none !important;
  }
  .u-d-inline-sp {
    display: inline !important;
  }
  .u-d-block-sp {
    display: block !important;
  }
  .u-d-inblock-sp {
    display: inline-block !important;
  }
  .u-d-flex-sp {
    display: flex !important;
  }
  .u-d-inflex-sp {
    display: inline-flex !important;
  }
}
.u-mb-0 {
  margin-bottom: 0px !important;
}
.u-mb-5,
.mb5 {
  margin-bottom: 5px !important;
}
.u-mb-10 {
  margin-bottom: 10px !important;
}
.u-mb-20 {
  margin-bottom: 20px !important;
}
.u-mb-30 {
  margin-bottom: 30px !important;
}
.u-mb-40 {
  margin-bottom: 40px !important;
}
.u-mb-50 {
  margin-bottom: 50px !important;
}
.u-mb-60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mb-0-sp {
    margin-bottom: 0px !important;
  }
  .u-mb-5-sp {
    margin-bottom: 5px !important;
  }
  .u-mb-10-sp {
    margin-bottom: 10px !important;
  }
  .u-mb-20-sp {
    margin-bottom: 20px !important;
  }
  .u-mb-30-sp {
    margin-bottom: 30px !important;
  }
  .u-mb-40-sp {
    margin-bottom: 40px !important;
  }
  .u-mb-50-sp {
    margin-bottom: 50px !important;
  }
  .u-mb-60-sp {
    margin-bottom: 60px !important;
  }
}
.u-mt-0 {
  margin-top: 0px !important;
}
.u-mt-5 {
  margin-top: 5px !important;
}
.u-mt-10 {
  margin-top: 10px !important;
}
.u-mt-20 {
  margin-top: 20px !important;
}
.u-mt-30 {
  margin-top: 30px !important;
}
.u-mt-40 {
  margin-top: 40px !important;
}
.u-mt-50 {
  margin-top: 50px !important;
}
.u-mt-60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mt-0-sp {
    margin-top: 0px !important;
  }
  .u-mt-5-sp {
    margin-top: 5px !important;
  }
  .u-mt-10-sp {
    margin-top: 10px !important;
  }
  .u-mt-20-sp {
    margin-top: 20px !important;
  }
  .u-mt-30-sp {
    margin-top: 30px !important;
  }
  .u-mt-40-sp {
    margin-top: 40px !important;
  }
  .u-mt-50-sp {
    margin-top: 50px !important;
  }
  .u-mt-60-sp {
    margin-top: 60px !important;
  }
}
.u-ml-0 {
  margin-left: 0px !important;
}
.u-ml-5 {
  margin-left: 5px !important;
}
.u-ml-10 {
  margin-left: 10px !important;
}
.u-ml-20 {
  margin-left: 20px !important;
}
.u-ml-30 {
  margin-left: 30px !important;
}
.u-ml-40 {
  margin-left: 40px !important;
}
.u-ml-50 {
  margin-left: 50px !important;
}
.u-ml-60 {
  margin-left: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-ml-0-sp {
    margin-left: 0px !important;
  }
  .u-ml-5-sp {
    margin-left: 5px !important;
  }
  .u-ml-10-sp {
    margin-left: 10px !important;
  }
  .u-ml-20-sp {
    margin-left: 20px !important;
  }
  .u-ml-30-sp {
    margin-left: 30px !important;
  }
  .u-ml-40-sp {
    margin-left: 40px !important;
  }
  .u-ml-50-sp {
    margin-left: 50px !important;
  }
  .u-ml-60-sp {
    margin-left: 60px !important;
  }
}
.u-mr-0 {
  margin-right: 0px !important;
}
.u-mr-5 {
  margin-right: 5px !important;
}
.u-mr-10 {
  margin-right: 10px !important;
}
.u-mr-20 {
  margin-right: 20px !important;
}
.u-mr-30 {
  margin-right: 30px !important;
}
.u-mr-40 {
  margin-right: 40px !important;
}
.u-mr-50 {
  margin-right: 50px !important;
}
.u-mr-60 {
  margin-right: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mr-0-sp {
    margin-right: 0px !important;
  }
  .u-mr-5-sp {
    margin-right: 5px !important;
  }
  .u-mr-10-sp {
    margin-right: 10px !important;
  }
  .u-mr-20-sp {
    margin-right: 20px !important;
  }
  .u-mr-30-sp {
    margin-right: 30px !important;
  }
  .u-mr-40-sp {
    margin-right: 40px !important;
  }
  .u-mr-50-sp {
    margin-right: 50px !important;
  }
  .u-mr-60-sp {
    margin-right: 60px !important;
  }
}

.u-fs-10 {
  font-size: 1rem !important;
}
.u-fs-11 {
  font-size: 1.1rem !important;
}
.u-fs-12 {
  font-size: 1.2rem !important;
}
.u-fs-13 {
  font-size: 1.3rem !important;
}
.u-fs-14 {
  font-size: 1.4rem !important;
}
.u-fs-15 {
  font-size: 1.5rem !important;
}
.u-fs-16 {
  font-size: 1.6rem !important;
}
.u-fs-17 {
  font-size: 1.7rem !important;
}
.u-fs-18 {
  font-size: 1.8rem !important;
}
.u-fs-19 {
  font-size: 1.9rem !important;
}
.u-fs-20 {
  font-size: 2rem !important;
}

.u-as-c {
  align-self: center !important;
}
