@charset "UTF-8";
:root {
  --header-height: 0;
  --column-main-width: 0;
  --gothic:
    "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic",
    arial, helvetica, sans-serif;
  --mincho: "Noto Serif JP", serif;
  --header-height: 0;
  --en: "Josefin Sans", sans-serif;
  --color-black1: #000;
  --color-black2: #323232;
  --color-red1: #e50012;
  --color-navy1: #30416b;
  --color-gray1: #eaecf0;
  --color-gray2: #f3f1f2;
  --transition1: all 0.4s;
  --transition2: all 0.7s;
}

/******************************************************************
** general styles
******************************************************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
}

html {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: var(--gothic);
  line-height: 1.8;
  color: var(--color-navy1);
}
body * {
  hyphens: none;
}

a {
  text-decoration: none;
  transition: var(--transition1);
}

.po_rela {
  position: relative;
}

#container {
  overflow: clip;
}

.contents {
  padding-top: 150px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1850px) {
  .contents {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1200px) {
  .contents {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 480px) {
  .contents {
    padding-bottom: 80px;
  }
}

/******************************************************************
** text
******************************************************************/
.gothic {
  font-family: var(--gothic);
}

.mincho {
  font-family: var(--mincho);
}

.contentsText01 {
  line-height: 1.6875;
}
@media screen and (max-width: 480px) {
  .contentsText01 {
    font-size: 14px;
  }
}

.contentsText02 {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.contentsText02.ta--c {
  padding-left: 0.05em;
}
@media screen and (max-width: 768px) {
  .contentsText02 {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .contentsText02 {
    font-size: 16px;
  }
}

.contentsText03 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.contentsText03.ta--c {
  padding-left: 0.05em;
}
@media screen and (max-width: 768px) {
  .contentsText03 {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .contentsText03 {
    font-size: 16px;
  }
}

.en {
  font-family: var(--en);
}

.c--wh {
  color: #fff !important;
}

.c--bk01 {
  color: var(--color-black1) !important;
}

.c--bk02 {
  color: var(--color-black2) !important;
}

.ta--l {
  text-align: left;
}

.ta--c {
  text-align: center;
}

.ta--r {
  text-align: right;
}

/******************************************************************
** heading
******************************************************************/
.heading--type01 {
  position: relative;
  font-size: 40px;
  margin-top: 0;
}

/******************************************************************
** lists
******************************************************************/
.list--col2,
.list--col3,
.list--col4 {
  position: relative;
  list-style: none;
  display: grid;
  column-gap: 40px;
  row-gap: 40px;
  margin: 0;
  padding: 0;
  width: 100%;
}

.list--col2__item,
.list--col3__item,
.list--col4__item {
  margin: 0;
  display: block;
}

@media screen and (min-width: 569px) {
  .list--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 769px) {
  .list--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .list--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .list--col4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .list--col3,
  .list--col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 568px) {
  .list--col2,
  .list--col3,
  .list--col4 {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
  }
}

/******************************************************************
** link
******************************************************************/
.anchor-point {
  position: relative;
  display: block;
}

.anchor-point01 {
  top: -100px;
}
/******************************************************************
** embedded content
******************************************************************/
img {
  display: block;
  width: 100%;
  height: auto;
}

.imgWrap {
  position: relative;
  line-height: 0;
}
.imgWrap picture,
.imgWrap img {
  position: relative;
  width: 100%;
  margin: 0;
  display: block;
  pointer-events: none;
}

/******************************************************************
** tables
******************************************************************/
.table--type01 {
  position: relative;
  font-size: 18px;
  color: var(--color-black2);
  width: 100%;
}
.table--type01 th,
.table--type01 td {
  text-align: left;
  line-height: 1.66666667;
  /*letter-spacing: 0.05em;*/
  padding: 1.35em 1.2em;
  border: 1px solid #fff;
}
.table--type01 th {
  font-weight: 500;
  background: var(--color-gray1);
}
.table--type01 td {
  background: var(--color-gray2);
}
.table--type01 b {
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .table--type01 th {
    width: 19.4%;
  }
  .table--type01.th--w50 th {
    width: 50%;
  }
  .table--type01.va--middle th,
  .table--type01.va--middle td {
    vertical-align: middle;
  }
}
@media screen and (max-width: 1024px) {
  .table--type01 th,
  .table--type01 td {
    display: block;
    margin-top: -1px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  .table--type01 {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .table--type01 {
    font-size: 14px;
  }
}

.table--tr {
  position: relative;
  width: 100%;
  background: none;
  border: none;
}
.table--tr tr,
.table--tr th,
.table--tr td {
  position: relative;
  background: transparent;
  border: none;
}
.table--tr th,
.table--tr td {
  font-weight: 400;
  text-align: left;
  padding: 1em 0;
  vertical-align: top;
}
@media screen and (min-width: 769px) {
  .table--tr th {
    width: 30%;
    padding-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  .table--tr th,
  .table--tr td {
    width: 100%;
    display: block;
  }
  .table--tr th {
    padding-right: 0;
    padding-bottom: 0.3em;
  }
  .table--tr td {
    padding-top: 0.3em;
  }
  .table--tr tr:first-child th {
    padding-top: 0;
  }
  .table--tr tr:last-child td {
    padding-bottom: 0;
  }
}

/******************************************************************
** background
******************************************************************/
.bg--grid01 {
  position: relative;
}
.bg--grid01:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff url(../img/common/bg_grid01.webp) repeat;
  background-size: 5.2%;
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .bg--grid01:before {
    background-size: 10%;
  }
}

/******************************************************************
** common
******************************************************************/
.logo {
  width: 100%;
  margin: 0;
  line-height: 0;
}

.logo__link,
.logo__img {
  display: block;
  width: 100%;
}

.logo__link {
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .logo__link:hover {
    opacity: 0.7;
  }
}

.logo__img {
  height: auto;
}

/******************************************************************
** header styles
******************************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-left: 50px;
  z-index: 9999;
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .header.header--scrolled .header__recruitSection {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 1850px) {
  .header {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding-left: 20px;
    padding-right: 65px;
  }
}
@media screen and (max-width: 480px) {
  .header {
    padding-right: 60px;
  }
}

.header__logo {
  max-width: 310px;
  margin-right: 20px;
}
@media screen and (max-width: 1850px) {
  .header__logo {
    max-width: 210px;
  }
}
@media screen and (max-width: 1400px) {
  .header__logo {
    max-width: 180px;
  }
}
@media screen and (max-width: 1200px) {
  .header__logo {
    margin-right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .header__logo {
    max-width: 165px;
  }
}
@media screen and (max-width: 375px) {
  .header__logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 360px) {
  .header__logo {
    max-width: 130px;
  }
}

.header__inner,
.header__itemWrap01 {
  position: initial;
}

.header__inner {
  display: flex;
  align-items: end;
  transition: var(--transition1);
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header__itemWrap01 {
  display: flex;
  align-items: center;
  width: 100%;
}

.header__itemWrap02 {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  display: table;
}
@media screen and (max-width: 1200px) {
  .header__itemWrap02 {
    display: none;
  }
}

.header__recruitSection {
  font-size: 18px;
  padding-top: 1.5em;
  padding-left: 2em;
  padding-right: 2.6em;
  padding-bottom: 1.8em;
  background: var(--color-navy1);
  border-radius: 0 0 0 1.11111111em;
  white-space: nowrap;
  transition: var(--transition1);
}
@media screen and (max-width: 1850px) {
  .header__recruitSection {
    font-size: 12px;
  }
}
@media screen and (max-width: 1400px) {
  .header__recruitSection {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}

.header__recruitSectionHeadingWrap,
.header__recruitSectionBtnWrap {
  display: inline-block;
  vertical-align: middle;
}

.header__recruitSectionHeading {
  font-size: 1em;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin: 0;
}

.header__recruitSectionText {
  display: block;
}

.header__recruitSectionText--en {
  font-size: 2em;
}

.header__recruitSectionText--jp {
  font-size: 1em;
  letter-spacing: 0.05em;
  margin-top: 0.4em;
}

.header__recruitSectionBtn {
  color: var(--color-navy1);
  text-align: center;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  margin-left: 1.5em;
  padding: 1.18em 1em;
  background: #fff;
  transform: skewX(-20deg);
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .header__recruitSectionBtn:hover {
    opacity: 0.7;
  }
}

.header__recruitSectionBtnInner {
  position: relative;
  display: table;
  margin: 0 auto;
  padding-right: 2em;
  transform: skewX(20deg);
}

.header__recruitSectionBtnArrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: block;
  width: 1.66666667em;
  height: 1.66666667em;
  border-radius: 50%;
  background: var(--color-navy1);
}
.header__recruitSectionBtnArrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 0.83333333em;
  height: 0.83333333em;
  background: transparent url(../img/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}

/******************************************************************
** footer styles
******************************************************************/
.footer {
  position: relative;
  clear: both;
  background: var(--color-navy1);
}

@media screen and (min-width: 769px) {
  .footer__row > .col-1:first-child,
  .footer__row > .col-2:first-child,
  .footer__row > .col-3:first-child,
  .footer__row > .col-4:first-child,
  .footer__row > .col-5:first-child,
  .footer__row > .col-6:first-child {
    margin-left: 0 !important;
  }
  .footer__row > .col-1:last-child,
  .footer__row > .col-2:last-child,
  .footer__row > .col-3:last-child,
  .footer__row > .col-4:last-child,
  .footer__row > .col-5:last-child,
  .footer__row > .col-6:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (min-width: 1025px) {
  .footer__row > .col-1,
  .footer__row > .col-2,
  .footer__row > .col-3,
  .footer__row > .col-4,
  .footer__row > .col-5,
  .footer__row > .col-6 {
    margin: 0 84px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__row > .col-1,
  .footer__row > .col-2,
  .footer__row > .col-3,
  .footer__row > .col-4,
  .footer__row > .col-5,
  .footer__row > .col-6 {
    margin: 0 40px;
  }
}

.footer__logo {
  max-width: 320px;
}
@media screen and (max-width: 1680px) {
  .footer__logo {
    max-width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    max-width: 270px;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 240px;
  }
}
@media screen and (max-width: 480px) {
  .footer__logo {
    max-width: 210px;
  }
}

.footer__inner {
  padding-top: 100px;
  padding-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    padding-top: 90px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-top: 75px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 480px) {
  .footer__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .footer__inner02 {
    width: auto !important;
    max-width: 90% !important;
    display: table;
  }
}

.copyrightWrap {
  font-size: 12px;
  padding: 1.5em 10px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .copyrightWrap {
    font-size: 10px;
  }
}

.copyright {
  position: relative;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin: 0 auto;
  padding-left: 0.06em;
}
@media screen and (max-width: 480px) {
  .copyright {
    letter-spacing: 0;
    padding-left: 0;
  }
}

.branchList01,
.branchList01__item {
  position: relative;
  display: block;
  margin: 0;
}

.branchList01 {
  list-style: none;
  color: #fff;
  line-height: 1.5625;
  margin-top: 3.25em;
  padding: 0;
}
@media screen and (max-width: 1680px) {
  .branchList01 {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .branchList01 {
    font-size: 12px;
  }
}

.branchList01__item {
  margin-bottom: 2.2em;
}
.branchList01__item:last-child {
  margin-bottom: 0;
}

.branchList01__heading,
.branchList01__address {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 0;
}

.branchList01__heading {
  margin-bottom: 0.8em;
}

.branchList01__contentWrap {
  padding-left: 1.2em;
  border-left: 1px solid #fff;
}

.branchList01__address,
.branchList01__tel {
  margin: 0;
}

.branchList01__tel {
  font-size: 0.9375em;
  letter-spacing: 0.06em;
}

/******************************************************************
** navigation styles
******************************************************************/
.header__nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header__navWrap {
  position: initial;
  font-size: 16px;
  margin-left: auto;
  margin-right: 3.25em;
  padding: 0.75em 2em;
  background: #fff;
  border-radius: 9999px;
}
@media screen and (max-width: 1850px) {
  .header__navWrap {
    font-size: 12px;
  }
}
@media screen and (max-width: 1400px) {
  .header__navWrap {
    margin-right: 1.6em;
    padding: 0.75em 1em;
  }
}
@media screen and (max-width: 1200px) {
  .header__navWrap {
    margin-right: 0;
    padding: 0;
    background: transparent;
  }
}
@media screen and (max-width: 360px) {
  .header__navWrap {
    font-size: 11px;
  }
}

.header__navItem,
.header__navLink {
  position: relative;
  font-size: 1em;
  color: var(--color-navy1);
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .header__navItem,
  .header__navLink {
    letter-spacing: 0;
  }
}

.header__navItem {
  position: initial !important;
  margin: 0 1em;
}
.header__navItem:first-child {
  margin-left: 0;
}
.header__navItem:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1400px) {
  .header__navItem {
    margin: 0 0.8em;
  }
}
@media screen and (max-width: 1200px) {
  .header__navItem {
    margin: 0;
  }
  .header__navItem:not(.hasBtn) {
    display: none;
  }
}

.header__navLink {
  text-decoration: none;
  display: block;
  transition: var(--transition1);
}

.header__navLink:not(.header__navBtn) {
  position: relative;
  padding: 0.35em 0;
}
.header__navLink:not(.header__navBtn):after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background: var(--color-navy1);
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .header__navLink:not(.header__navBtn):hover:after {
    width: 100%;
  }
}

.header__navBtn {
  font-weight: 500;
  color: #fff;
  padding: 0.33em 1.4em;
  background: var(--color-navy1);
  border-radius: 9999px;
}
@media screen and (min-width: 1025px) {
  .header__navBtn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .header__navBtn {
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  .header__navBtn {
    padding: 0.33em 1em;
  }
}

.megaMenu {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 1em;
  overflow: hidden;
  width: 100vw;
  transition: var(--transition1);
}

.megaMenu__inner {
  position: relative;
  height: 0;
  padding-left: 5em;
  padding-right: 5em;
  background: #fff;
  transition: var(--transition1);
}

.megaMenu__heading {
  font-size: 1.25em;
  letter-spacing: 0.05em;
  display: table;
  margin-top: 0;
  margin-bottom: 0.8em;
}

.megaMenu__headingLink {
  position: relative;
  display: block;
  padding-right: 2em;
  transition: var(--transition1);
}
@media screen and (min-width: 1201px) {
  .megaMenu__headingLink:hover {
    opacity: 0.7;
  }
}

.megaMenu__headingArrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: var(--color-navy1);
}
.megaMenu__headingArrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background: transparent url(../img/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}

.footer__navSection {
  position: relative;
  font-size: 20px;
  display: flex;
  gap: 0 2em;
}
@media screen and (min-width: 769px) {
  .footer__navSection {
    justify-content: space-between;
    padding-top: 0.7em;
  }
}
@media screen and (max-width: 1680px) {
  .footer__navSection {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .footer__navSection {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer__navSection {
    gap: 0 5em;
    margin-top: 4em;
  }
}
@media screen and (max-width: 480px) {
  .footer__navSection {
    font-size: 14px;
    gap: 0 4em;
  }
}
@media screen and (max-width: 360px) {
  .footer__navSection {
    gap: 0 2.4em;
  }
}

.footer__nav,
.footer__navItem {
  position: relative;
  display: block;
  margin: 0;
}

.footer__nav {
  list-style: none;
  font-size: 1em;
  line-height: 1.1;
  padding: 0;
}
.footer__nav.footer__nav--child {
  font-size: 0.8em;
  margin-top: 1.2em;
}
.footer__nav.footer__nav--child .footer__navItem,
.footer__nav.footer__nav--child .footer__navLink {
  font-weight: 400;
}
.footer__nav.footer__nav--child .footer__navItem {
  margin-bottom: 1.1em;
}

.footer__navItem,
.footer__navLink {
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer__navItem {
  margin-bottom: 2.6em;
}
.footer__navItem.mb--type01 {
  margin-bottom: 0.7em;
}
.footer__navItem:last-child {
  margin-bottom: 0 !important;
}

.footer__navLink {
  text-decoration: none;
  display: inline-block;
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .footer__navLink:hover {
    opacity: 0.7;
  }
}

.navDrawer {
  position: relative;
  z-index: 99999;
  display: none;
}
@media screen and (max-width: 1200px) {
  .navDrawer {
    display: block;
  }
}

.navUnshown {
  display: none;
}

.navOpen {
  position: fixed;
  font-size: 16px;
  top: 15px;
  right: 10px;
  cursor: pointer;
  display: block;
  width: 2.5em;
  height: 2.5em;
  background: var(--color-navy1);
  transition: var(--transition1);
  border: 1px solid #fff;
  z-index: 999999;
}
.navOpen.active .navOpen__lineWrap span:nth-of-type(1) {
  transform: translateY(0.45em) rotate(-45deg);
}
.navOpen.active .navOpen__lineWrap span:nth-of-type(2) {
  opacity: 0;
}
.navOpen.active .navOpen__lineWrap span:nth-of-type(3) {
  transform: translateY(-0.45em) rotate(45deg);
}
@media screen and (max-width: 480px) {
  .navOpen {
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  .navOpen {
    font-size: 12px;
  }
}

.navOpen__lineWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.25em;
  height: 0.9375em;
  display: block;
}
.navOpen__lineWrap span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: var(--transition1);
}
.navOpen__lineWrap span:nth-of-type(1) {
  top: 0;
}
.navOpen__lineWrap span:nth-of-type(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navOpen__lineWrap span:nth-of-type(3) {
  bottom: 0;
}

.navContent {
  position: fixed;
  top: 0;
  right: 0;
  overflow: auto;
  width: 90%;
  max-width: 500px;
  height: 100%;
  background: #fff;
  padding: 60px 20px 150px;
  transition: var(--transition1);
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  opacity: 0;
  z-index: 9999;
}

.navContent__logo {
  max-width: 240px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .navContent__logo {
    max-width: 210px;
    margin-bottom: 30px;
  }
}

.navContent__nav,
.navContent__navItem {
  display: block;
  margin: 0;
}

.navContent__nav {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .navContent__nav {
    font-size: 14px;
  }
}

.navContent__nav--child,
.navContent__nav--child > li {
  position: relative;
  display: block;
  margin: 0;
}

.navContent__nav--child {
  list-style: none;
  font-size: 0.875em;
  font-weight: 400;
  padding: 0;
}
.navContent__nav--child li,
.navContent__nav--child a {
  position: relative;
}
.navContent__nav--child > li {
  margin-bottom: 0.5em;
  padding-left: 1.2em;
}
.navContent__nav--child > li:before {
  position: absolute;
  top: 1.3em;
  left: 0;
  content: "";
  display: block;
  width: 0.6em;
  height: 1px;
  background: var(--color-navy1);
}
.navContent__nav--child > li:last-child {
  margin-bottom: 0;
}
.navContent__nav--child > li a {
  display: block;
  padding-block: 0.4em;
}

.navContent__navItem {
  border-top: 1px solid #f3f1f2;
}
.navContent__navItem:last-child {
  border-bottom: 1px solid #f3f1f2;
}

.navContent__navLink {
  color: var(--color-navy1);
  text-decoration: none;
}

.navContent__navLink,
.navContent__acdLabel {
  position: relative;
  line-height: 1.8;
  display: block;
  padding: 1em 1em;
}

.navContent__acdLabel {
  cursor: pointer;
  padding-right: 2.6em;
}

.navContent__acdLabelIcon {
  position: absolute;
  top: 50%;
  right: 0.75em;
  transform: translate(0, -50%);
  width: 1.25em;
  height: 1.25em;
  display: block;
}
.navContent__acdLabelIcon:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: transparent url(../img/common/icon_plus_gray.svg) no-repeat center center/contain;
  transition: var(--transition1);
}

.navContent__acdContent {
  height: 0;
  padding-left: 1.8em;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: var(--transition1);
}

.navContent__acdToggle {
  display: none;
}
.navContent__acdToggle:checked + .navContent__acdLabel .navContent__acdLabelIcon:after {
  background: transparent url(../img/common/icon_minus_gray.svg) no-repeat center center/contain;
}
.navContent__acdToggle:checked + .navContent__acdLabel + .navContent__acdContent {
  height: auto;
  margin-bottom: 1.2em;
}

.navContent__bnr.recruitBnr01 {
  margin-top: 2em;
}
@media screen and (max-width: 480px) {
  .navContent__bnr.recruitBnr01 {
    text-align: center;
    display: block;
    padding-left: 2em;
    padding-right: 2em;
  }
  .navContent__bnr.recruitBnr01 > .recruitBnr01__headingWrap,
  .navContent__bnr.recruitBnr01 > .recruitBnr01__btnWrap {
    display: block;
  }
  .navContent__bnr.recruitBnr01 .recruitBnr01__btn {
    line-height: 1.6;
    margin-top: 1.2em;
    margin-left: 0;
    padding: 1em;
  }
}
@media screen and (max-width: 360px) {
  .navContent__bnr.recruitBnr01 {
    font-size: 12px;
  }
}

.navClose {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: var(--color-black1);
  opacity: 0;
  cursor: pointer;
  transition: var(--transition1);
}

.navInput:checked ~ .navContent {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.navInput:checked ~ .navClose {
  display: block;
  opacity: 0.7;
}

@media screen and (min-width: 1201px) {
  .header__navLink:not(.header__navBtn):hover + .megaMenu,
  .megaMenu:hover {
    padding-top: 1.5em;
  }
  .header__navLink:not(.header__navBtn):hover + .megaMenu .megaMenu__inner,
  .megaMenu:hover .megaMenu__inner {
    height: auto;
    padding-top: 2.25em;
    padding-bottom: 2.5em;
    border-top: 1px solid #f3f1f2;
  }
}
/******************************************************************
** display
******************************************************************/
.disp--pc01,
.disp--pc02,
.disp--pc03 {
  display: block !important;
}

.disp--tab01,
.disp--tab02,
.disp--sp01 {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .disp--pc01 {
    display: none !important;
  }
  .disp--tab01 {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .disp--pc02 {
    display: none !important;
  }
  .disp--tab02 {
    display: block !important;
  }
}
@media screen and (max-width: 480px) {
  .disp--pc03 {
    display: none !important;
  }
  .disp--sp01 {
    display: block !important;
  }
}
/******************************************************************
** layout
******************************************************************/
.container1080 {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 769px) {
  .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .row.ai--center {
    align-items: center;
  }
  .row > .col-1,
  .row > .col-2,
  .row > .col-3,
  .row > .col-4,
  .row > .col-5,
  .row > .col-6 {
    margin: 0 30px;
  }
  .row > .col-1:first-child,
  .row > .col-2:first-child,
  .row > .col-3:first-child,
  .row > .col-4:first-child,
  .row > .col-5:first-child,
  .row > .col-6:first-child {
    margin-left: 0 !important;
  }
  .row > .col-1:last-child,
  .row > .col-2:last-child,
  .row > .col-3:last-child,
  .row > .col-4:last-child,
  .row > .col-5:last-child,
  .row > .col-6:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

.col-1 {
  flex: 1;
}

.col-2 {
  flex: 2;
}

.col-3 {
  flex: 3;
}

.col-4 {
  flex: 4;
}

.col-5 {
  flex: 5;
}

.col-6 {
  flex: 6;
}

.order-1 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

@media screen and (max-width: 768px) {
  .order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .order-2 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
/******************************************************************
** margin
******************************************************************/
.m--0 {
  margin: 0 !important;
}

.mt--0 {
  margin-top: 0 !important;
}

.mt--1em {
  margin-top: 1em !important;
}

.mt--2em {
  margin-top: 2em !important;
}

.mt--3em {
  margin-top: 3em !important;
}

.mb--0 {
  margin-bottom: 0 !important;
}

.mb--1em {
  margin-bottom: 1em !important;
}

.mb--2em {
  margin-bottom: 2em !important;
}

.mb--3em {
  margin-bottom: 3em !important;
}

/******************************************************************
** animation
******************************************************************/
.fadein {
  transition: var(--transition2);
}
.fadein.ttb {
  transform: translate(0, -40px);
}
.fadein.btt {
  transform: translate(0, 40px);
}
.fadein.ltr {
  transform: translate(-40px, 0);
}
.fadein.rtl {
  transform: translate(40px, 0);
}
.fadein.ttb,
.fadein.btt,
.fadein.ltr,
.fadein.rtl {
  opacity: 0;
}
.fadein.ttb.scrollin,
.fadein.btt.scrollin,
.fadein.ltr.scrollin,
.fadein.rtl.scrollin {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.fadein02 {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}

.fadein03 {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}

.fadein04 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.fadein05 {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}

.fadein06 {
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
}

@media screen and (max-width: 768px) {
  .fadein02,
  .fadein03,
  .fadein04,
  .fadein05,
  .fadein06 {
    -moz-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    -ms-transition-delay: 0s;
  }
}

.am--fadein01__text {
  overflow-y: clip;
}
.am--fadein01__text > span {
  display: block;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: var(--transition2);
  transition: var(--transition2);
}

.am--fadein01__text:nth-child(2) > span {
  transition-delay: 0.2s;
}

.am--fadein01.scrollin .am--fadein01__text > span {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.am--layer01 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.am--layer01 > span {
  position: relative;
  overflow: hidden;
}
.am--layer01 > span > * {
  opacity: 0;
}
.am--layer01 > span:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-navy1);
  z-index: 1;
}
.am--layer01.am--layer_left {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.am--layer01.am--layer_red > span:after {
  background: var(--color-red1);
}
.am--layer01.scrollin > span > * {
  -webkit-animation: fadein1 0.1s 0.4s;
  animation: fadein1 0.1s 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.am--layer01.scrollin > span:after {
  -webkit-animation:
    secondaryImageOverlayIn 0.4s 0s cubic-bezier(0.77, 0, 0.175, 1),
    secondaryImageOverlayOut 0.4s 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  animation:
    secondaryImageOverlayIn 0.4s 0s cubic-bezier(0.77, 0, 0.175, 1),
    secondaryImageOverlayOut 0.4s 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadein1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}
@keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
    transform: translateX(102%);
  }
}

.headingSubBorder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 5px;
  background: #e50012;
}
.headingSubBorder.fadein:before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 100%;
  height: 105%;
  background: #fff;
  transition: 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 10;
}
.headingSubBorder.fadein.scrollin:before {
  width: 0;
}

/******************************************************************
** banner
******************************************************************/
.recruitBnr01 {
  position: relative;
  font-size: 13px;
  margin: 0 auto;
  padding-top: 1.4em;
  padding-left: 1.2em;
  padding-right: 1.6em;
  padding-bottom: 1.6em;
  background: var(--color-navy1);
  display: table;
  transition: var(--transition1);
}

.recruitBnr01__headingWrap,
.recruitBnr01__btnWrap {
  display: inline-block;
  vertical-align: middle;
}

.recruitBnr01__heading {
  font-size: 1em;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin: 0;
}

.recruitBnr01__headingText {
  display: block;
}

.recruitBnr01__headingText--en {
  font-size: 2em;
}

.recruitBnr01__headingText--jp {
  font-size: 1em;
  letter-spacing: 0.05em;
  margin-top: 0.4em;
}

.recruitBnr01__btn {
  color: var(--color-navy1);
  text-align: center;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  margin-left: 0.8em;
  padding: 1.18em 1em;
  background: #fff;
  transform: skewX(-20deg);
  transition: var(--transition1);
}

.recruitBnr01__btnInner {
  position: relative;
  display: table;
  margin: 0 auto;
  padding-right: 2em;
  transform: skewX(20deg);
}

.recruitBnr01__btnArrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: block;
  width: 1.66666667em;
  height: 1.66666667em;
  border-radius: 50%;
  background: var(--color-navy1);
}
.recruitBnr01__btnArrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 0.83333333em;
  height: 0.83333333em;
  background: transparent url(../img/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}

/******************************************************************
** 下層2カラムスタイル
******************************************************************/
.columnParts {
  width: calc(100% + 370px);
  display: flex;
  align-items: flex-start;
  gap: 4em 3.45%;
}
@media (max-width: 1980px) {
  .columnParts {
    width: calc((100vw - 100%) / 2 - 50px + 100%);
  }
}
@media screen and (max-width: 1200px) {
  .columnParts {
    flex-direction: column;
    width: 100%;
  }
}

.columnParts__main {
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .columnParts__main {
    width: 100%;
  }
}

.columnParts__side {
  max-width: 320px;
  min-width: 320px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .columnParts__side {
    max-width: 100%;
  }
}

/******************************************************************
** サイドナビスタイル
******************************************************************/
.sideNavParts {
  min-width: 320px;
  background: #fff;
  border-radius: 20px;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.sideNavParts__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: #f3f1f2;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--color-navy1);
  padding-block: 22px;
  padding-inline: 40px 19px;
}
@media (min-width: 769px) {
  .sideNavParts__heading:hover > span {
    transform: translateX(5px);
  }
}
.sideNavParts__heading > span {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: var(--color-navy1);
  transition: 0.3s ease-in-out;
}
.sideNavParts__heading > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: url("../img/common/icon_arrow_right_white.svg") center/contain no-repeat;
  transform: translate(-50%, -50%);
}

.sideNavParts__list {
  padding-block: 22px 38px;
  padding-inline: 40px;
}

.sideNavParts__item {
  position: relative;
}
.sideNavParts__item.is-active::after {
  content: "";
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: -18px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--color-navy1);
}
.sideNavParts__item.is-active .sideNavParts__link {
  font-weight: 500;
}

.sideNavParts__link {
  display: block;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-navy1);
}
@media (min-width: 769px) {
  .sideNavParts__link:hover {
    opacity: 0.7;
  }
}

/******************************************************************
** 下層ページメインビュー
******************************************************************/
.pageMv {
  position: relative;
}

.pageMv__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pageMv__mask > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(80%);
}

.pageMv__wrap {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 100%;
  max-height: 600px;
  aspect-ratio: 1920/600;
  background: #30416b;
  padding-top: 2em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .pageMv__wrap {
    max-height: unset;
    padding-top: 3em;
  }
}

.pageMv__cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 3em;
}
@media screen and (max-width: 768px) {
  .pageMv__cols {
    gap: 1em;
    flex-direction: column;
  }
}

.pageMv__img {
  width: 74%;
  align-self: flex-end;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  margin-right: calc((100% - 100vw) / 2 * 0.61);
  margin-bottom: -5%;
}
@media screen and (max-width: 768px) {
  .pageMv__img {
    width: 90%;
  }
}

.pageMv__heading {
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  color: #e50012;
  white-space: nowrap;
  padding-left: 4.5%;
  padding-bottom: 9%;
}
@media screen and (max-width: 768px) {
  .pageMv__heading {
    align-self: start;
    white-space: unset;
    padding-bottom: 6%;
  }
}
.pageMv__heading > span {
  display: block;
}
.pageMv__heading > span:nth-child(2) {
  font-size: 0.5em;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 10px;
}

.subMv__inner {
  position: relative;
  background: var(--color-navy1);
  width: 100%;
  min-height: 180px;
}
.subMv__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/common/sub_mv_bg.png") center top/cover no-repeat;
  filter: brightness(80%);
}
@media screen and (max-width: 1200px) {
  .subMv__inner::before {
    background: url("../img/common/sub_mv_bg.png") -350px top/1920px no-repeat;
  }
}

.subMv__heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 180px;
  padding-left: 4.6%;
}
.subMv__heading > span {
  display: block;
}
.subMv__heading > span:first-child {
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  color: #e50012;
}
@media screen and (max-width: 768px) {
  .subMv__heading > span:first-child {
    font-size: 36px;
  }
}
.subMv__heading > span:last-child {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .subMv__heading > span:last-child {
    font-size: 18px;
  }
}

/******************************************************************
** サービス検索パーツ
******************************************************************/
.searchParts,
.searchParts--works {
  border-radius: 20px;
  background: #f3f1f2;
  padding-block: 2em 1.5em;
  padding-inline: 27px;
}
@media screen and (max-width: 768px) {
  .searchParts,
  .searchParts--works {
    padding-block: 1.5em;
    padding-inline: 1em;
  }
}
.searchParts--works {
  padding-block: 1.5em 1.5em;
}
.searchParts--works .searchParts__tagsBox {
  margin-top: 0;
}

.searchParts__tabs {
  display: flex;
  padding-inline: 2.6%;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .searchParts__tabs {
    padding-inline: 0;
  }
}

.searchParts__tab {
  position: relative;
  flex: 1;
  text-align: center;
  display: block;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #323232;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .searchParts__tab {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
  }
}
.searchParts__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -1.7px;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 2.4px;
  background: var(--color-navy1);
}
@media screen and (max-width: 768px) {
  .searchParts__tab.is-active::after {
    width: 100%;
  }
}

.searchParts__catsBox {
  display: flex;
  align-items: flex-start;
  gap: 1.5em 20px;
  margin-top: 3.5em;
}
@media screen and (max-width: 768px) {
  .searchParts__catsBox {
    flex-direction: column;
    margin-top: 2em;
  }
}

.searchParts__catsTitle {
  border-right: 1px solid #323232;
  width: 140px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #323232;
}
@media screen and (max-width: 768px) {
  .searchParts__catsTitle {
    border-right: none;
    border-bottom: 1px solid #323232;
    width: 100%;
    padding-bottom: 0.5em;
  }
}

.searchParts__catsList {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.searchParts__catLink {
  display: block;
  border-radius: 15px;
  background: var(--color-navy1);
  min-width: 110px;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #fff;
  padding-block: 4px 6px;
  padding-inline: 0.5em;
}

.searchParts__tagsBox {
  margin-top: 2em;
  width: 100%;
}
.searchParts__tagsBox.is-open .searchParts__tagsTitleText::after {
  transform: translateY(-50%) rotate(0deg);
}
.searchParts__tagsBox.is-open .searchParts__tagsBody {
  grid-template-rows: 1fr;
}

.searchParts__tagsTitle {
  position: relative;
  text-align: center;
}
.searchParts__tagsTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #323232;
  z-index: 1;
}

.searchParts__tagsTitleText {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #f3f1f2;
  padding-inline: 43px 64px;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #323232;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .searchParts__tagsTitleText {
    padding-inline: 2em 3em;
  }
}
.searchParts__tagsTitleText::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%) rotate(-180deg);
  width: 30px;
  height: 30px;
  background: transparent url(../img/common/icon_toggle_black.svg) no-repeat center center/contain;
  transition: var(--transition1);
}

.searchParts__tagsBody {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--transition1);
}

.searchParts__tagsHidden {
  overflow: hidden;
}

.searchParts__tagsList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding-block: 1.5em;
}

.searchParts__tag {
  &.is-active {
    .searchParts__tagLink {
      border: 1px solid var(--color-navy1);
      background: #fff;
      color: var(--color-navy1);
    }
  }
}

.searchParts__tagLink {
  display: block;
  border: 1px solid transparent;
  border-radius: 15px;
  background: var(--color-navy1);
  min-width: 180px;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #fff;
  padding-block: 4px 6px;
  padding-inline: 0.5em;
}
@media screen and (max-width: 768px) {
  .searchParts__tagLink {
    min-width: 135px;
  }
}
@media screen and (min-width: 769px) {
  .searchParts__tagLink:hover {
    opacity: 0.7;
  }
}

/******************************************************************
** タグパーツ
******************************************************************/
.tagParts {
  display: block;
  border-radius: 15px;
  background: var(--color-navy1);
  min-width: 70px;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #fff;
  padding-block: 4px 6px;
  padding-inline: 13px;
}
@media (min-width: 769px) {
  .tagParts:hover {
    opacity: 0.7;
  }
}

/******************************************************************
** カテゴリーパーツ
******************************************************************/
.catParts {
  font-size: 14px;
  line-height: 1.42;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--color-navy1);
}
.catParts:not(:first-child)::before {
  content: "/";
  display: inline-block;
  margin: 0 0.3em;
}
@media (min-width: 769px) {
  .catParts:hover {
    opacity: 0.7;
  }
}

/******************************************************************
** パンくずリスト
******************************************************************/
.breadcrumb {
  padding-block: 2em 3em;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-block: 6.25vw 1.5em;
  }
}
@media screen and (min-width: 769px) {
  .breadcrumb.breadcrumb02 {
    padding-block: 1.4em;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px 1em;
}
.breadcrumb__list > span {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #323232;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb__list > span > a {
  color: #323232;
  text-decoration: none;
}
.breadcrumb__list > span > a:hover {
  text-decoration: underline;
}

.breadcrumbs__separator {
  width: 1px;
  height: 16.8px;
  background: #323232;
  transform-origin: center;
  transform: translateY(1px) rotate(45deg);
}

/******************************************************************
** 見出しコンポーネント
******************************************************************/
.headingSub {
  position: relative;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-red1);
}
.headingSub > span {
  display: block;
}
.headingSub > span:nth-child(2) {
  font-size: 0.5em;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-navy1);
  margin-top: 0.1em;
}
.headingSub.ta--c > span:nth-child(2) {
  padding-left: 0.05em;
}
@media screen and (max-width: 1024px) {
  .headingSub {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .headingSub {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .headingSub {
    font-size: 28px;
  }
}

.headingSubBorder {
  position: relative;
  font-size: 30px;
  line-height: 1.63;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: #323232;
  border-bottom: 1px solid var(--color-navy1);
  padding-block: 0.7em 0.5em;
}
@media screen and (max-width: 768px) {
  .headingSubBorder {
    font-size: 22px;
  }
}

/******************************************************************
** ボタンコンポーネント
******************************************************************/
.btnArrow01 {
  position: relative;
  font-size: 20px;
  color: var(--color-navy1);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2.4em;
  padding: 2.05em 1em;
  padding-right: 4.5em;
  border-top: 1px solid var(--color-navy1);
  border-bottom: 1px solid var(--color-navy1);
  max-width: 520px;
  transition: var(--transition1);
}
.btnArrow01.btnArrow01--center {
  margin-left: auto;
  margin-right: auto;
}
.btnArrow01.btnArrow01--wh {
  color: #fff;
  border-color: #fff;
}
.btnArrow01.btnArrow01--wh .btnArrow01__arrow {
  background: #fff;
}
.btnArrow01.btnArrow01--wh .btnArrow01__arrow:after {
  background: transparent url(../img/common/icon_arrow_right_gray.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .btnArrow01:hover .btnArrow01__arrow {
    right: calc(1em - 5px);
  }
}
@media screen and (max-width: 768px) {
  .btnArrow01 {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .btnArrow01 {
    font-size: 16px;
  }
}

.btnArrow01__arrow {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%);
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  display: block;
  background: var(--color-navy1);
  transition: var(--transition1);
}
.btnArrow01__arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: transparent url(../img/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}

.btnArrow02 {
  position: relative;
  font-weight: 500;
  color: var(--color-navy1);
  text-decoration: none;
  line-height: 1.66666667;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-right: 2.5em;
}
@media screen and (min-width: 1025px) {
  .btnArrow02:hover .btnArrow02__arrow {
    right: -5px;
  }
}

.btnArrow02__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 1.66666667em;
  height: 1.66666667em;
  border-radius: 50%;
  display: block;
  background: var(--color-navy1);
  transition: var(--transition1);
}
.btnArrow02__arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: transparent url(../img/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}

.btnArrow03 {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 1em;
  width: 100%;
  max-width: 370px;
  min-height: 4.44444444em;
  background: var(--color-navy1);
  border-radius: 1.11111111em;
}
@media screen and (min-width: 1025px) {
  .btnArrow03:hover .btnArrow03__arrow {
    right: calc(1.11111111em - 5px);
  }
}
@media screen and (max-width: 768px) {
  .btnArrow03 {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .btnArrow03 {
    font-size: 14px;
  }
}

.btnArrow03__text {
  display: block;
}

.btnArrow03__arrow {
  position: absolute;
  top: 50%;
  right: 1.11111111em;
  transform: translate(0, -50%);
  width: 1.66666667em;
  height: 1.66666667em;
  border-radius: 50%;
  display: block;
  background: #fff;
  transition: var(--transition1);
}
.btnArrow03__arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: transparent url(../img/common/icon_arrow_right_gray.svg) no-repeat center center/contain;
}

.btnRudius {
  text-decoration: none;
  position: relative;
  display: block;
  border-radius: 20px;
  max-width: 320px;
  min-width: 320px;
  width: 100%;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  background: #30416b;
  padding-block: 22px;
  padding-inline: 40px 66px;
}
@media screen and (max-width: 768px) {
  .btnRudius {
    max-width: 280px;
    min-width: 280px;
    font-size: 16px;
    padding-block: 20px;
    padding-inline: 36px 59px;
  }
}
@media (min-width: 769px) {
  .btnRudius:hover > span {
    right: 15px;
  }
}
.btnRudius > span {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 15px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.btnRudius > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: url("../img/common/icon_arrow_right_gray.svg") center/contain no-repeat;
  transform: translate(-50%, -50%);
}

/******************************************************************
** イベントポストセクション
******************************************************************/
.eventSection {
  background: #eaecf0;
  padding-block: 6em;
}
@media screen and (max-width: 768px) {
  .eventSection {
    padding-block: 4em;
  }
}

.eventSection__cols {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .eventSection__cols {
    flex-direction: column;
  }
}

.eventSection__headingBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3em;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .eventSection__headingBox {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .eventSection__Btn {
    order: 99;
    margin-top: 1.5em;
    margin-inline: auto;
  }
}

.eventSection__posts {
  flex: 1;
  border-top: 1px solid #30416b;
  max-width: 590px;
  width: 100%;
}

.eventSection__link {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding-block: 1.8em;
  border-bottom: 1px solid #30416b;
  gap: 0.5em 0;
}
@media screen and (max-width: 1200px) {
  .eventSection__link {
    flex-wrap: wrap;
    padding-block: 1em 0.8em;
  }
}
.eventSection__link:hover {
  opacity: 0.7;
}

.eventSection__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}

.eventSection__cat {
  background: #fff;
  min-width: 10em;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--main-color);
  padding-block: 5px;
  padding-inline: 1em;
}
@media screen and (max-width: 1200px) {
  .eventSection__cat {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .eventSection__cat {
    width: auto;
    padding-inline: 2em;
  }
}

.eventSection__time {
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: 0.06em;
  color: var(--main-color);
  margin-left: 1em;
}

.eventSection__title {
  flex: 1;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--main-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 1em;
}
@media (max-width: 1200px) {
  .eventSection__title {
    flex: unset;
    width: 100%;
    margin-left: 0;
  }
}

/******************************************************************
** FAQのアコーディオンスタイル
******************************************************************/
.acc {
  background: #f3f1f2;
}
.acc.is-open .acc_toggle::before {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.acc.is-open .acc__body {
  grid-template-rows: 1fr;
}

.acc__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  padding-block: 1em;
  padding-inline: 24px 15px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .acc__head {
    grid-template-columns: 1fr auto;
    padding-inline: 15px;
    gap: 0.5em 0;
  }
}

.acc__icon {
  font-size: 18px;
  line-height: 1.77;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--color-navy1);
}

.acc__questionText {
  flex: 1;
  font-size: 18px;
  line-height: 1.77;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #323232;
  margin-left: 27px;
}
@media screen and (max-width: 768px) {
  .acc__questionText {
    font-size: 16px;
    grid-row: 2/3;
    grid-column: 1/3;
    margin-left: 0;
  }
}

.acc_toggle {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .acc_toggle {
    width: 20px;
    height: 20px;
  }
}
.acc_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-navy1);
  transform: translate(-50%, -50%);
}
.acc_toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--color-navy1);
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}

.acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.2s ease-in-out;
}

.acc__hidden {
  overflow: hidden;
}

.acc__bodyInner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding-block: 1.5em 3em;
  padding-inline: 24px 30px;
}
@media screen and (max-width: 768px) {
  .acc__bodyInner {
    grid-template-columns: 1fr auto;
    padding-inline: 15px;
  }
}
.acc__bodyInner::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #000 0 2px, transparent 2px 8px);
  position: absolute;
  top: 0;
  left: 0;
}

.acc__answerText {
  flex: 1;
  font-size: 18px;
  line-height: 1.77;
  letter-spacing: 0.1em;
  color: #323232;
  margin-left: 27px;
}
@media screen and (max-width: 768px) {
  .acc__answerText {
    font-size: 16px;
    grid-row: 2/3;
    grid-column: 1/3;
    margin-left: 0;
  }
}

/******************************************************************
** 事業部一覧
******************************************************************/
.departmentList01 {
  position: relative;
  list-style: none;
  font-size: 1em;
  display: grid;
  column-gap: 1.25em;
  row-gap: 1.25em;
  margin: 0;
  padding: 0;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
}

.departmentList01__item {
  margin: 0;
  display: block;
}

.departmentList01__bnr {
  position: relative;
  color: #fff !important;
  text-align: left;
  text-decoration: none;
  display: flex !important;
  align-items: center;
  min-height: 10em;
  background: var(--color-navy1);
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .departmentList01__bnr:hover img {
    transform: scale(1.1);
  }
}

.departmentList01__bgImgWrap,
.departmentList01__bnrBg01 {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
}

.departmentList01__bgImgWrap {
  right: 0;
  width: 62%;
}

.departmentList01__imgWrap,
.departmentList01__imgWrap img {
  height: 100%;
}

.departmentList01__imgWrap {
  overflow: hidden;
}
.departmentList01__imgWrap img {
  position: relative;
  object-fit: cover;
  transition: var(--transition1);
}

.departmentList01__bnrBg01 {
  left: 0;
  width: 100%;
  background: -moz-linear-gradient(0% 50% 0deg, rgba(48, 65, 107, 1) 40%, rgba(255, 255, 255, 0) 49%);
  background: -webkit-linear-gradient(0deg, rgba(48, 65, 107, 1) 40%, rgba(255, 255, 255, 0) 49%);
  background: -webkit-gradient(
    linear,
    0% 50%,
    100% 50%,
    color-stop(0.4, rgba(48, 65, 107, 1)),
    color-stop(0.49, rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(0deg, rgba(48, 65, 107, 1) 40%, rgba(255, 255, 255, 0) 49%);
  background: -ms-linear-gradient(0deg, rgba(48, 65, 107, 1) 40%, rgba(255, 255, 255, 0) 49%);
  background: linear-gradient(90deg, rgba(48, 65, 107, 1) 40%, rgba(255, 255, 255, 0) 49%);
}

.departmentList01__bnrInner {
  position: relative;
  width: 100%;
  padding: 1em;
}

.departmentList01__bnrText {
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin: 0;
}
.departmentList01__bnrText .text--sml01 {
  font-size: 0.8em;
  display: block;
  margin-top: 0.2em;
}

.departmentList02 {
  position: relative;
  list-style: none;
  font-size: 16px;
  display: grid;
  column-gap: 2.5em;
  row-gap: 2.5em;
  margin: 0;
  padding: 0;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1200px) {
  .departmentList02 {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .departmentList02 {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .departmentList02 {
    font-size: 9px;
    column-gap: 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 375px) {
  .departmentList02 {
    font-size: 8px;
  }
}

.departmentList02__item {
  margin: 0;
  display: block;
}

.departmentList02__bnr {
  position: relative;
  color: #fff;
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.departmentList02__bnr:before {
  content: "";
  display: block;
  padding-top: 55.7692%;
}
.departmentList02__bnr::after {
  content: "";
  display: block;
  width: 100%;
  height: 6em;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #30416b 0%, transparent);
}
@media screen and (min-width: 1025px) {
  .departmentList02__bnr:hover img {
    transform: scale(1.05);
  }
  .departmentList02__bnr:hover .departmentList02__bnrTextArrow {
    right: -5px;
  }
}

.departmentList02__bgImgWrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.departmentList02__imgWrap,
.departmentList02__imgWrap img {
  height: 100%;
}

.departmentList02__imgWrap {
  overflow: hidden;
}
.departmentList02__imgWrap img {
  object-fit: cover;
  transition: var(--transition1);
}

.departmentList02__bnrInner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 1.25em;
  z-index: 1;
}

.departmentList02__bnrText {
  position: relative;
  font-size: 1.875em;
  letter-spacing: 0.05em;
  display: table;
  padding-right: 1.4em;
}

.departmentList02__bnrTextArrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #fff;
  transition: var(--transition1);
}
.departmentList02__bnrTextArrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background: transparent url(../img/common/icon_arrow_right_gray.svg) no-repeat center center/contain;
}

/******************************************************************
** 記事一覧
******************************************************************/
.article-list01,
.article-list01__item {
  display: block;
  margin: 0;
}

.article-list01 {
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .article-list01 {
    font-size: 14px;
  }
}

.article-list01__item {
  border-top: 1px solid var(--color-navy1);
}
.article-list01__item:last-child {
  border-bottom: 1px solid var(--color-navy1);
}

.article-list01__link {
  color: var(--color-navy1);
  text-decoration: none;
  padding: 1.76em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-transition: var(--transition1);
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .article-list01__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .article-list01__link {
    display: block;
    padding: 1.2em 0;
  }
}

.article-list01__infoWrap,
.article-list01__cat,
.article-list01__date,
.article-list01__ttl {
  display: inline-block;
}

.article-list01__infoWrap {
  margin-right: 1em;
}
@media screen and (min-width: 1201px) {
  .article-list01__infoWrap {
    min-width: 15em;
    display: inline-table;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1200px) {
  .article-list01__infoWrap {
    display: table;
    margin-right: 0;
  }
}

.article-list01__cat,
.article-list01__date {
  letter-spacing: 0.06em;
  vertical-align: middle;
}

ul.article-list01__catList {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 0.4em;
}
ul.article-list01__catList > li {
  margin-right: 0.4em;
}

.article-list01__cat {
  font-size: 0.875em;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  background: #fff;
  padding: 0.6em 0.4em;
  width: 100%;
}
@media screen and (min-width: 1201px) {
  .article-list01__cat {
    min-width: 10em;
  }
}

.article-list01__ttl {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .article-list01__ttl {
    display: block;
    margin-top: 0.8em;
  }
}

/******************************************************************
** ページネーション
******************************************************************/
.pagination {
  position: relative;
  margin-top: 25px;
}
.pagination > ul {
  list-style: none;
  font-size: 0;
  text-align: center;
  display: table;
  margin: 0 auto;
}
.pagination li {
  font-size: 12px;
  color: #fff;
  margin: 5px;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .pagination li:has(.prev),
  .pagination li:has(.next) {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
  .pagination li:has(.prev) {
    margin-bottom: 15px;
  }
  .pagination li:has(.next) {
    margin-top: 15px;
  }
}
.pagination span.current,
.pagination span.dots,
.pagination a {
  line-height: 40px;
  width: 40px;
  height: 40px;
  display: block;
}
.pagination span.current {
  background: #b4b4b4;
}
.pagination a,
.pagination span.dots {
  background: var(--color-navy1);
}
.pagination a {
  text-decoration: none;
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .pagination a:hover {
    opacity: 0.7;
  }
}
.pagination a.prev,
.pagination a.next {
  padding: 0 1em;
  min-width: 80px;
}

/* 詳細ページ用ページネーション */
.pagerSingle {
  position: relative;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 0 10px;
}

.pagerSingle__btn {
  font-weight: 500;
  text-decoration: none;
  line-height: 1.6;
  display: flex;
  align-items: center;
  padding: 0 0.5em;
  border: 1px solid var(--color-navy1);
  width: 100%;
  min-height: 50px;
  transition: var(--transition1);
}
.pagerSingle__btn > span {
  letter-spacing: 0.1em;
  display: block;
  width: 100%;
  padding-left: 0.1em;
}

.pagerSingle__btnPrev,
.pagerSingle__btnNext {
  color: var(--color-navy1);
  background: #fff;
  max-width: 80px;
}
@media screen and (min-width: 1025px) {
  .pagerSingle__btnPrev:hover,
  .pagerSingle__btnNext:hover {
    color: #fff;
    background: var(--color-navy1);
  }
}

.pagerSingle__btnBack {
  color: #fff;
  background: var(--color-navy1);
  max-width: 210px;
}
@media screen and (min-width: 1025px) {
  .pagerSingle__btnBack:hover {
    opacity: 0.7;
  }
}
.pagerSingle__btnBack > span {
  font-size: 1.5em;
}
@media screen and (max-width: 480px) {
  .pagerSingle__btnBack > span {
    font-size: 1.25em;
  }
}

/******************************************************************
** CTA
******************************************************************/
.ctaSection {
  position: relative;
  padding-top: 90px;
  padding-bottom: 150px;
  background: var(--color-gray1);
}
@media screen and (max-width: 1024px) {
  .ctaSection {
    padding-top: 80px;
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 768px) {
  .ctaSection {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .ctaSection {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.ctaSection__row {
  margin-top: 45px;
}
@media screen and (min-width: 769px) {
  .ctaSection__row > .col-1,
  .ctaSection__row > .col-2,
  .ctaSection__row > .col-3,
  .ctaSection__row > .col-4,
  .ctaSection__row > .col-5,
  .ctaSection__row > .col-6 {
    margin: 0 10px;
  }
  .ctaSection__row > .col-1:first-child,
  .ctaSection__row > .col-2:first-child,
  .ctaSection__row > .col-3:first-child,
  .ctaSection__row > .col-4:first-child,
  .ctaSection__row > .col-5:first-child,
  .ctaSection__row > .col-6:first-child {
    margin-left: 0 !important;
  }
  .ctaSection__row > .col-1:last-child,
  .ctaSection__row > .col-2:last-child,
  .ctaSection__row > .col-3:last-child,
  .ctaSection__row > .col-4:last-child,
  .ctaSection__row > .col-5:last-child,
  .ctaSection__row > .col-6:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .ctaSection__row > .col-1,
  .ctaSection__row > .col-2,
  .ctaSection__row > .col-3,
  .ctaSection__row > .col-4,
  .ctaSection__row > .col-5,
  .ctaSection__row > .col-6 {
    margin-bottom: 20px;
  }
  .ctaSection__row > .col-1:last-child,
  .ctaSection__row > .col-2:last-child,
  .ctaSection__row > .col-3:last-child,
  .ctaSection__row > .col-4:last-child,
  .ctaSection__row > .col-5:last-child,
  .ctaSection__row > .col-6:last-child {
    margin-bottom: 0 !important;
  }
}

.ctaSection__bnr {
  position: relative;
  font-size: 15px;
  text-align: center;
  height: 10.66666667em;
  display: flex;
  align-items: center;
  padding: 1em;
  border-top: 1px solid var(--color-navy1);
  border-bottom: 1px solid var(--color-navy1);
}
@media screen and (max-width: 768px) {
  .ctaSection__bnr {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .ctaSection__bnr {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .ctaSection__bnr {
    font-size: 12px;
  }
}

a.ctaSection__bnr {
  color: var(--color-navy1);
  text-decoration: none;
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  a.ctaSection__bnr:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 481px) {
  a.ctaSection__bnrTel {
    pointer-events: none;
  }
}

.ctaSection__bnrInner {
  width: 100%;
}

.ctaSection__bnrText {
  position: relative;
  font-weight: 500;
  margin: 0 auto;
  padding-left: 2em;
  display: table;
}
.ctaSection__bnrText:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  content: "";
  display: block;
}

.ctaSection__bnrTextTel {
  font-size: 1.46666667em;
  letter-spacing: 0.16em;
}
.ctaSection__bnrTextTel:before {
  width: 1.5em;
  height: 1.5em;
  background: transparent url(../img/common/icon_phone_gray.svg) no-repeat center center/contain;
}

.ctaSection__bnrTextMail {
  font-size: 1.33333333em;
  letter-spacing: 0.06em;
}
.ctaSection__bnrTextMail:before {
  width: 1.5em;
  height: 1.5em;
  background: transparent url(../img/common/icon_mail_gray.svg) no-repeat center center/contain;
}

.ctaSection__bnrTextSub {
  letter-spacing: 0.05em;
  margin-top: 0.1em;
  padding-left: 0.05em;
}
