@charset "UTF-8";
/*============================
animation
============================*/
@keyframes moveleft {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    transform: translate3d(111%, 0, 0);
  }
}
@keyframes moveBg {
  100% {
    transform: translateX(0);
  }
}
@keyframes moveright {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    transform: translate3d(-111%, 0, 0);
  }
}
@keyframes moveLayer {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    transform: translateX(111%);
  }
}
@keyframes fadein {
  100% {
    opacity: 1;
  }
}
@keyframes fadeinblock {
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*===========================
reset style
===========================*/
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html,
body {
  min-height: 100%;
}

body {
  text-align: center;
  letter-spacing: 1.2px;
  color: #2a2a2a;
  background: #ffffff;
  font-size: 16px;
  line-height: 150%;
  font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2a2a2a;
  font-weight: normal;
}

p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 150%;
}

ul,
ol,
li {
  list-style: none;
  color: #2a2a2a;
}

a {
  text-decoration: none;
  color: #2a2a2a;
}
a:visited {
  text-decoration: none;
  color: #2a2a2a;
}
a:hover {
  text-decoration: none;
}

address {
  color: #2a2a2a;
  font-style: normal;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
  height: 100%;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
  color: #2a2a2a;
}

main {
  display: block;
}

picture {
  display: block;
}

table,
th,
td {
  color: #2a2a2a;
}

header {
  display: block;
}

footer {
  display: block;
}

aside {
  display: block;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

data {
  display: block;
}

time {
  display: block;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

/*==========================
l-header
==========================*/
.l-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  transition: 0.3s;
  margin-top: 30px;
}
.l-header.is-active .l-header__logoImg--white {
  display: none;
}
.l-header.is-active .l-header__logoImg--blue {
  display: block;
}
.l-header__inner {
  width: 100%;
  height: 100%;
  padding: 0 24px;
}
.l-header__doboz {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__dobozSplit:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  width: 140px;
  display: flex;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
  font-size: 10px;
  position: relative;
  z-index: 1000001;
}
.l-header__logo:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.l-header__logoImg--blue {
  display: none;
}
.l-header__logoImg img {
  width: 100%;
}
.l-header__gnav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 0 32px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.l-header__gnavItem {
  height: 50px;
}
.l-header__gnavItem.is-active .l-header__gnavLink {
  border-bottom: 4px solid #3a88c8;
}
.l-header__gnavItem:hover {
  background-color: #ebf5ff;
  transition: 0.3s;
}
.l-header__gnavLink {
  display: block;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid transparent;
  padding: 0px 24px;
  height: 100%;
  font-size: 14px;
  text-decoration: none;
  color: #2a2a2a;
}
.l-header__gnavLink:visited {
  text-decoration: none;
  color: #2a2a2a;
}
.l-header__gnavLink:hover {
  text-decoration: none;
}
.l-header__megamenu {
  position: fixed;
  z-index: -1;
  top: 100px;
  left: 0;
  visibility: hidden;
  width: 100%;
  opacity: 0;
}
.l-header__megamenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  display: block;
  width: 100%;
  height: 40px;
}
.l-header__megamenu.is-active {
  z-index: 9999;
  visibility: visible;
  opacity: 1;
}
.l-header__megamenuItem {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background-color: #3a88c8;
}
.l-header__megamenuItem.is-active {
  position: static;
  visibility: visible;
  opacity: 1;
  transition: 0.5s opacity;
}
.l-header__megamenuDoboz {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 20px;
  gap: 60px;
}
.l-header__megamenuDoboz--custom {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 25px;
}
.l-header__megamenuTit {
  text-align: left;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 8px;
}
.l-header__megamenuList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.l-header__megamenuListItem {
  width: 252px;
  height: 110px;
}
.l-header__megamenuListItemLink {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
  position: relative;
  font-weight: 700;
}
.l-header__megamenuListItemLink:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.l-header__megamenuListItemLink:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 5px;
  left: auto;
  right: 5px;
  height: calc(6px * tan(60deg));
  width: 12px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #3a88c8;
}
.l-header__megamenuListItemLinkMain {
  display: block;
  font-size: 18px;
  color: #3a88c8;
}
.l-header__megamenuListItemLinkSub {
  display: block;
  font-size: 14px;
  color: #3a88c8;
}
.l-header__hmb {
  display: none;
}
.l-header__drwNav {
  display: none;
}
.l-header__drwNavDoboz {
  text-align: center;
}
.l-header__drwNavDobozBtn {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 24px;
}
.l-header__drwNavDobozAccordion {
  border-top: 1px solid #e0e0e0;
}
.l-header__drwNavDobozSummary {
  display: block;
  position: relative;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  align-items: center;
  gap: 50px;
}
.l-header__drwNavDobozSummary.is-active .m-arrow:before {
  transform: translate(-50%, -50%) rotate(-90deg);
  visibility: visible;
}
.l-header__drwNavDobozSummary.is-active .m-arrow:after {
  transform: translate(-50%, -50%) translateY(50px) rotate(-90deg);
}
.l-header__drwNavDobozSummary.is-active:hover .m-arrow:before {
  transform: translate(-50%, -50%) translateY(-50px) rotate(-90deg);
  visibility: visible;
}
.l-header__drwNavDobozSummary.is-active:hover .m-arrow:after {
  transform: translate(-50%, -50%) rotate(-90deg);
  visibility: visible;
}
.l-header__drwNavDobozSummaryTit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
  padding: 16px 24px;
  text-decoration: none;
  color: #2a2a2a;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
  width: 100%;
  text-align: left;
  position: relative;
}
.l-header__drwNavDobozSummaryTit:visited {
  text-decoration: none;
  color: #2a2a2a;
}
.l-header__drwNavDobozSummaryTit:hover {
  text-decoration: none;
}
.l-header__drwNavDobozSummaryTit:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.l-header__drwNavDobozSummaryAnchor {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
  padding: 16px 24px;
  text-decoration: none;
  color: #2a2a2a;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
  width: 100%;
  text-align: left;
  position: relative;
}
.l-header__drwNavDobozSummaryAnchor:visited {
  text-decoration: none;
  color: #2a2a2a;
}
.l-header__drwNavDobozSummaryAnchor:hover {
  text-decoration: none;
}
.l-header__drwNavDobozSummaryAnchor:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.l-header__drwNavDobozList {
  width: 100%;
  display: table;
  border-collapse: collapse;
}
.l-header__drwNavDobozListItem {
  display: table-row;
  border-top: 1px solid #e0e0e0;
}
.l-header__drwNavDobozListItem:nth-of-type(1) .l-header__drwNavDobozSummaryAnchor {
  padding-top: 0;
}
.l-header__drwNavDobozListItem:first-of-type {
  border-top: initial;
}
.l-header__drwNavDobozListItem:last-of-type {
  border-bottom: 1px solid #e0e0e0;
}
.l-header__drwNavDobozLinksItem {
  position: relative;
  border-top: 1px solid #e0e0e0;
  text-align: left;
}
.l-header__drwNavDobozLinksAnchor {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  padding: 15px 24px 15px 20px;
  text-decoration: none;
  color: #2a2a2a;
  position: relative;
}
.l-header__drwNavDobozLinksAnchor:visited {
  text-decoration: none;
  color: #2a2a2a;
}
.l-header__drwNavDobozLinksAnchor:hover {
  text-decoration: none;
}
.l-header__drwNavDobozLinksNum {
  font-size: 16px;
  color: #3a88c8;
  letter-spacing: 0;
}
.l-header__drwNavDobozLinksTit {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.l-header__dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: auto;
  left: 50%;
  padding-top: 30px;
  transform: translateX(-50%);
}
.l-header__dropdownItem {
  width: 240px;
  background-color: #3a88c8;
  padding: 40px 30px;
}
.l-header__dropdownItem:first-of-type {
  padding-bottom: 0;
}
.l-header__dropdownLink {
  font-size: 14px;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
  padding-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #2a2a2a;
  position: relative;
}
.l-header__dropdownLink:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.l-header__dropdownLink:visited {
  text-decoration: none;
  color: #2a2a2a;
}
.l-header__dropdownLink:hover {
  text-decoration: none;
}
.l-header__dropdownLink::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  position: absolute;
  top: calc(50% - 5px);
  left: auto;
  right: 0px;
  transform: translateY(-50%) rotate(45deg);
}
.l-header .m-arrow {
  display: inline-block;
  margin-left: auto;
}
.l-header--recruit .l-header__gnavLink {
  padding: 0 12px;
}

/*==========================
l-footer
==========================*/
.l-footer {
  background-color: #ffffff;
}
.l-footer__inner {
  width: 100%;
  max-width: 1204px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  position: relative;
}
.l-footer__doboz {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.l-footer__logo {
  text-align: left;
  width: 200px;
}
.l-footer__logo:hover {
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
}
.l-footer__logo:hover:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__address {
  margin-top: 32px;
  font-size: 14px;
  text-align: left;
  line-height: 180%;
}
.l-footer__addressTit {
  font-size: 16px;
  font-weight: bold;
}
.l-footer__gnav {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  text-align: left;
  gap: 40px;
}
.l-footer__gnavItem {
  width: 260px;
}
.l-footer__gnavItem--btn {
  display: none;
}
.l-footer__gnavItemTit {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #e0e0e0;
  line-height: 150%;
}
.l-footer__gnavItemTit.is-active .m-arrow:before {
  transform: translate(-50%, -50%) rotate(-90deg);
  visibility: visible;
}
.l-footer__gnavItemTit.is-active .m-arrow:after {
  transform: translate(-50%, -50%) translateY(50px) rotate(-90deg);
}
.l-footer__gnavItemTit.is-active:hover .m-arrow:before {
  transform: translate(-50%, -50%) translateY(-50px) rotate(-90deg);
  visibility: visible;
}
.l-footer__gnavItemTit.is-active:hover .m-arrow:after {
  transform: translate(-50%, -50%) rotate(-90deg);
  visibility: visible;
}
.l-footer__gnavList {
  margin-top: 16px;
}
.l-footer__gnavListItem {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
}
.l-footer__gnavListItem:not(:first-of-type) {
  margin-top: 16px;
}
.l-footer__gnavListItemTit {
  font-size: 12px;
  font-weight: 700;
  color: #999999;
  line-height: 150%;
}
.l-footer__gnavListItemLink {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.3s;
}
.l-footer__gnavListItemLink--left {
  padding-left: 16px;
}
.l-footer__gnavListItemLink--small {
  font-size: 12px;
}
.l-footer__gnavListItemLink:hover {
  text-decoration: none;
  color: #3a88c8;
  transition: 0.3s;
}
.l-footer__gnavListItemLink:hover:visited {
  text-decoration: none;
  color: #3a88c8;
}
.l-footer__gnavListItemLink:hover:hover {
  text-decoration: none;
}
.l-footer__copy {
  margin-top: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}
.l-footer__copyTxt {
  font-size: 12px;
}
.l-footer__copyLink {
  font-size: 12px;
  font-weight: bold;
  transition: 0.3s;
}
.l-footer__copyLink:hover {
  text-decoration: none;
  color: #3a88c8;
  transition: 0.3s;
}
.l-footer__copyLink:hover:visited {
  text-decoration: none;
  color: #3a88c8;
}
.l-footer__copyLink:hover:hover {
  text-decoration: none;
}
.l-footer--recruit .l-footer__entry .m-button__link {
  width: 954px;
  height: 140px;
  border-radius: 70px;
  margin: 0 auto;
  font-size: 28px;
}
.l-footer--recruit .l-footer__doboz {
  margin-top: 120px;
}
.l-footer--recruit .l-footer__gnav {
  max-width: 650px;
  gap: 0;
  justify-content: flex-end;
}
.l-footer--recruit .l-footer__gnavItem {
  width: auto;
  margin-left: 40px;
}
.l-footer--recruit .l-footer__gnavItem--btn {
  display: block;
  width: 260px;
  margin-left: auto;
}
.l-footer--recruit .l-footer__gnavItem--btn .m-button {
  margin-top: 32px;
}
.l-footer--recruit .l-footer__gnavItem--btn .m-button__link {
  height: 64px;
  border-radius: 32px;
}
.l-footer--recruit .l-footer__gnavLink {
  transition: 0.3s;
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.l-footer--recruit .l-footer__gnavLink:hover {
  text-decoration: none;
  color: #3a88c8;
  transition: 0.3s;
}
.l-footer--recruit .l-footer__gnavLink:hover:visited {
  text-decoration: none;
  color: #3a88c8;
}
.l-footer--recruit .l-footer__gnavLink:hover:hover {
  text-decoration: none;
}
.l-footer--recruit .l-footer__gnavLink .m-arrow {
  display: none;
}
.l-footer .js-toggle__switch {
  cursor: text;
}
.l-footer .js-toggle__next {
  display: block;
}
.l-footer .m-arrow {
  display: inline-block;
  margin-left: auto;
}
.l-footer .m-arrow--grey {
  display: none;
}
.l-footer .m-button {
  margin-top: 40px;
}

/*============================
.l-container
============================*/
.l-container {
  /* IE11 */
}
_:-ms-lang(x)::-ms-backdrop, .l-container {
  overflow-x: hidden;
  overflow-y: visible;
}

/*============================
.l-section
============================*/
.l-section__inner {
  width: 100%;
  max-width: 1204px;
  margin-inline: auto;
  padding-inline: 24px;
}

/*============================
.l-pankuzu
============================*/
.l-pankuzu {
  position: absolute;
  top: 140px;
  padding: 0 24px;
  z-index: 1;
  max-width: 100%;
}
.l-pankuzu__list {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
}
.l-pankuzu__list > li {
  white-space: nowrap;
  font-size: 14px;
  color: #ffffff;
  line-height: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.l-pankuzu__list > li:after {
  content: "";
  display: block;
  aspect-ratio: cos(30deg);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #ffffff;
  width: 4px;
  height: 8px;
}
.l-pankuzu__list > li:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
}
.l-pankuzu__list > li:last-child:after {
  content: none;
}
.l-pankuzu__list > li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-pankuzu__list > li a:visited {
  text-decoration: none;
  color: #ffffff;
}
.l-pankuzu__list > li a:hover {
  text-decoration: none;
}

/*============================
.l-main
============================*/
.l-main {
  padding-bottom: 320px;
}
.l-main__spacer {
  margin-top: 60px;
  padding-bottom: 160px;
}

/*============================
.l-section
============================*/
.l-mv-under {
  position: relative;
}
.l-mv-under--single:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.l-mv-under--single .l-mv-under__bg:before {
  content: "";
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.l-mv-under--single .l-mv-under__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
.l-mv-under--single .l-mv-under__img {
  width: 800px;
  margin: 0 auto;
}
.l-mv-under__img {
  position: relative;
}
.l-mv-under__img picture {
  height: 100%;
}
.l-mv-under__img img {
  height: 580px;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-mv-under__letter {
  width: 100%;
  max-width: 1204px;
  padding: 0 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 100;
}
.l-mv-under__letterTit {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.l-mv-under__letterTitEn {
  font-size: 24px;
  font-family: "Inter";
  font-weight: 700;
}
.l-mv-under__letterTitJa {
  font-size: 64px;
  line-height: 150%;
}
.l-mv-under__letterTxt {
  color: #ffffff;
  margin-top: 16px;
}

/*============================
.l-footcontact
============================*/
.l-footcontact {
  position: relative;
}
.l-footcontact__split:nth-of-type(1) {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
}
.l-footcontact__recruit {
  max-width: 1204px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 56px;
  cursor: pointer;
}
.l-footcontact__recruit:hover .l-footcontact__recruitImg:before {
  content: "";
  background-color: rgba(58, 136, 200, 0);
  transition: 0.3s;
}
.l-footcontact__recruit:hover .l-footcontact__recruitImg img {
  transition: 0.3s;
  transform: scale(1.1);
}
.l-footcontact__recruit:hover .m-arrow--white {
  background-color: #3a88c8;
}
.l-footcontact__recruit:hover .m-arrow--white:before {
  content: "";
  background-image: url(../img/global/arrow.svg?20255599);
}
.l-footcontact__recruit:hover .m-arrow--white:after {
  content: "";
  background-image: url(../img/global/arrow.svg?20255599);
}
.l-footcontact__recruit:hover .m-link__link {
  opacity: 0.7;
  transition: 0.3s;
}
.l-footcontact__recruitImg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-radius: 56px;
  position: relative;
  z-index: -1;
}
.l-footcontact__recruitImg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(58, 136, 200, 0.6);
  transition: 0.3s;
  z-index: 1;
}
.l-footcontact__recruitImg img {
  transition: 0.3s;
}
.l-footcontact__recruitLetter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-footcontact__recruit .m-link__link {
  margin-top: 30px;
}
.l-footcontact__contact {
  position: relative;
  border-radius: 56px;
  height: 670px;
}
.l-footcontact__contactDoboz {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 20px 0 60px;
}
.l-footcontact__contactLetter {
  text-align: left;
}
.l-footcontact__contactLetterTxt {
  color: #ffffff;
  line-height: 220%;
}
.l-footcontact__contactLetterTel {
  font-size: 14px;
  color: #ffffff;
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.l-footcontact__contactLetterTel a {
  color: #ffffff;
}
.l-footcontact__contactLetterTelIcon {
  font-size: 24px;
  font-family: "Inter";
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.l-footcontact__contactLetterTelIcon:before {
  content: url(../img/global/footcontact/tel.svg?20255599);
  width: 24px;
  height: 24px;
  display: block;
}
.l-footcontact__contactImg {
  height: 100%;
}
.l-footcontact__contactImg img {
  border-radius: 56px;
}
.l-footcontact__contact .m-link {
  align-self: flex-end;
}
.l-footcontact__contact .m-link:hover .m-arrow--white {
  background-color: #3a88c8;
}
.l-footcontact__contact .m-link:hover .m-arrow--white:before {
  content: "";
  background-image: url(../img/global/arrow.svg?20255599);
}
.l-footcontact__contact .m-link:hover .m-arrow--white:after {
  content: "";
  background-image: url(../img/global/arrow.svg?20255599);
}

/*============================
.l-tab
============================*/
.l-tab__switch {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}
.l-tab__switchItem {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 4px solid #e0e0e0;
  padding-bottom: 20px;
  width: 33.3333333333%;
  transition: 0.3s;
}
.l-tab__switchItem.is-active {
  color: #3a88c8;
  border-bottom-color: #3a88c8;
}
.l-tab__switchItem:hover {
  color: #3a88c8;
  border-bottom-color: #3a88c8;
}
/*============================
.l-anchor
============================*/
.l-anchor {
  background-color: #3a88c8;
  border-radius: 32px;
  padding: 56px 24px;
  margin-top: -108px;
  position: relative;
  z-index: 3;
}
.l-anchor__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.l-anchor__item {
  width: 370px;
  height: 90px;
  border-radius: 8px;
  background-color: #ffffff;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
}
.l-anchor__item:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.l-anchor__itemLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #3a88c8;
  gap: 16px;
}
.l-anchor__itemLink:visited {
  text-decoration: none;
  color: #3a88c8;
}
.l-anchor__itemLink:hover {
  text-decoration: none;
}

/*============================
.l-pager
============================*/
.l-pager {
  margin-top: 141px;
}
.l-pager__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-pager__buttonPrev, .l-pager__buttonNext {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  transition: 0.3s;
}
.l-pager__buttonPrev:hover, .l-pager__buttonNext:hover {
  color: #3a88c8;
  transition: 0.3s;
}
.l-pager .m-link__link {
  margin-top: -30px;
}

/*============================
.l-department
============================*/
.l-department__division {
  text-align: left;
  margin-top: 115px;
}
.l-department__division + .l-department__division {
  margin-top: 80px;
}
.l-department__divisionHeading {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 24px;
  border-bottom: 1px solid #2a2a2a;
}
.l-department__divisionWrapper {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 26px;
}
.l-department__divisionUnit {
  width: calc((100% - 52px) / 3);
}
.l-department__divisionLabel {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.l-department__divisionTxt {
  font-size: 14px;
  line-height: 160%;
  margin-top: 16px;
}
.l-department__divisionImg {
  width: 100%;
  aspect-ratio: 368/201;
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
}
.l-department__divisionImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================
サービスブロック
.l-services
==========================*/
.l-services {
  width: 100%;
  margin-top: 134px;
}
.l-services__type {
  margin-top: 67px;
}
.l-services__typeList {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.l-services__typeItem {
  width: 25%;
  position: relative;
  z-index: 1;
}
.l-services__typeItem:not(:last-child)::before {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.l-services__typeItem:nth-child(4) {
  background-color: red;
}
.l-services__typeDoboz {
  display: block;
  width: 100%;
  aspect-ratio: 288/546;
  text-align: left;
  position: relative;
  z-index: 1;
}
.l-services__typeDoboz:hover .l-services__typeImg:before {
  content: "";
  background-color: rgba(58, 136, 200, 0);
  transition: 0.3s;
}
.l-services__typeDoboz:hover .l-services__typeImg img {
  transform: scale(1.1);
}
.l-services__typeImg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l-services__typeImg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(58, 136, 200, 0.6);
  transition: 0.3s;
  z-index: 1;
}
.l-services__typeImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.l-services__typeMain {
  position: absolute;
  top: 78px;
  padding-left: 40px;
  z-index: 2;
  transition: 0.3s;
  width: 100%;
}
.l-services__typeLabel {
  display: block;
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #ffffff;
}
.l-services__typeTit {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  color: #ffffff;
  margin-top: 8px;
}
.l-services__typeBox {
  margin-top: 32px;
}
.l-services__typeLink {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
}
.l-services__typeLink:visited {
  text-decoration: none;
  color: #ffffff;
}
.l-services__typeLink:hover {
  text-decoration: none;
}
.l-services__typeLink:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.l-services__typeLink:not(:first-of-type) {
  margin-top: 16px;
}
.l-services__typeLinkTit {
  font-size: 18px;
  line-height: 150%;
}
.l-services__typeLinkTit--small {
  font-size: 14px;
}
.l-services .m-arrow {
  display: inline-block;
  margin: 0 40px 0 auto;
  flex-shrink: 0;
}

/*==========================
商品
l-products
==========================*/
.l-products {
  width: 100%;
  margin-top: 142px;
  padding-top: 126px;
  padding-bottom: 169px;
  background-color: #ebf5ff;
}
.l-products__wrap {
  margin-top: 71px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-products__wrap + .l-products__wrap {
  margin-top: 56px;
}
.l-products__item {
  display: inline-block;
}
.l-products__unit {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 56px 24px;
}
.l-products__unitHeading {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 24px;
  border-bottom: 1px solid #2a2a2a;
}
.l-products__unitList {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
}
.l-products__unitItem {
  width: 270px;
}
.l-products__unitImg {
  width: 100%;
  aspect-ratio: 270/203;
  border-radius: 8px;
  overflow: hidden;
}
.l-products__unitImg:hover img {
  transition: 0.3s;
  transform: scale(1.1);
}
.l-products__unitImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.l-products__unitTxt {
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
}
.l-products__btn {
  margin-top: 80px;
}

/*============================
m-pagetop
============================*/
.m-pagetop {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 115px;
  right: 24px;
  background: url(../img/global/footer/m-pagetop.svg) no-repeat left top;
  background-size: contain;
  z-index: 99999;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
}
.m-pagetop:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*============================
m-button
============================*/
.m-button__link {
  border: 2px solid #3a88c8;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  text-decoration: none;
  color: #ffffff;
  background-color: #3a88c8;
  transition: 0.3s;
}
.m-button__link:visited {
  text-decoration: none;
  color: #ffffff;
}
.m-button__link:hover {
  text-decoration: none;
}
.m-button__link:hover {
  text-decoration: none;
  color: #3a88c8;
  background-color: #ffffff;
}
.m-button__link:hover:visited {
  text-decoration: none;
  color: #3a88c8;
}
.m-button__link:hover:hover {
  text-decoration: none;
}
.m-button__link:hover .m-arrow {
  background-color: #3a88c8;
}
.m-button__link:hover .m-arrow:before {
  content: "";
  background-image: url(../img/global/arrow.svg?20255599);
}
.m-button__link:hover .m-arrow:after {
  content: "";
  background-image: url(../img/global/arrow.svg?20255599);
}
.m-button--white .m-button__link {
  text-decoration: none;
  color: #3a88c8;
  background-color: #ffffff;
}
.m-button--white .m-button__link:visited {
  text-decoration: none;
  color: #3a88c8;
}
.m-button--white .m-button__link:hover {
  text-decoration: none;
}
.m-button--white .m-button__link:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #3a88c8;
}
.m-button--white .m-button__link:hover:visited {
  text-decoration: none;
  color: #ffffff;
}
.m-button--white .m-button__link:hover:hover {
  text-decoration: none;
}
.m-button--white .m-button__link:hover .m-arrow {
  background-color: #ffffff;
}
.m-button--white .m-button__link:hover .m-arrow:before {
  content: "";
  background-image: url(../img/global/arrow--blue.svg?20255599);
}
.m-button--white .m-button__link:hover .m-arrow:after {
  content: "";
  background-image: url(../img/global/arrow--blue.svg?20255599);
}
.m-button--whiteborder .m-button__link {
  background-color: transparent;
  text-decoration: none;
  color: #ffffff;
  width: 420px;
  height: 80px;
  border: 1px solid #ffffff;
  border-radius: 40px;
  transition: 0.3s;
  font-size: 18px;
}
.m-button--whiteborder .m-button__link:visited {
  text-decoration: none;
  color: #ffffff;
}
.m-button--whiteborder .m-button__link:hover {
  text-decoration: none;
}
.m-button--whiteborder .m-button__link:hover {
  background-color: #ffffff;
  transition: 0.3s;
  opacity: 1;
  text-decoration: none;
  color: #3a88c8;
}
.m-button--whiteborder .m-button__link:hover:visited {
  text-decoration: none;
  color: #3a88c8;
}
.m-button--whiteborder .m-button__link:hover:hover {
  text-decoration: none;
}
.m-button .m-arrow {
  margin-left: 16px !important;
}

/*============================
m-hide
============================*/
.m-hide--pc {
  display: none;
}

/*============================
m-tit
============================*/
.m-tit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.m-tit:before {
  content: url(../img/global/tit--blue.svg?20255599);
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -45px;
}
.m-tit__ja {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
}
.m-tit__en {
  color: #3a88c8;
  font-family: "Inter";
  font-weight: 700;
  font-size: 64px;
  letter-spacing: 0;
  line-height: 150%;
}
.m-tit--white:before {
  content: url(../img/global/tit--white.svg?20255599);
}
.m-tit--white .m-tit__ja {
  color: #ffffff;
}
.m-tit--white .m-tit__en {
  color: #ffffff;
}
.m-tit--whitecenter {
  flex-direction: column;
  gap: 0;
}
.m-tit--whitecenter:before {
  content: url(../img/global/tit--whitecenter.svg?20255599);
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.m-tit--whitecenter .m-tit__ja {
  color: #ffffff;
}
.m-tit--whitecenter .m-tit__en {
  color: #ffffff;
}
.m-tit--bluewhite:before {
  content: url(../img/global/tit--bluewhite.svg?20255599);
}
.m-tit--transparent:before {
  content: none;
}

/*============================
m-noposts
============================*/
.m-noposts {
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

/*============================
m-pagenavi
============================*/
.m-pagenavi {
  margin-top: 68px;
  transition: 0.3s;
}
.m-pagenavi .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-pagenavi .page {
  font-weight: 500;
  line-height: 180%;
  color: #d9d9d9;
  margin-inline: 4px;
  padding-inline: 4px;
}
.m-pagenavi .page:hover {
  color: #3a88c8;
  transition: 0.3s;
}
.m-pagenavi .current {
  font-weight: 500;
  line-height: 180%;
  color: #3a88c8;
  margin-inline: 8px;
}

/*============================
m-desc
============================*/
.m-desc {
  text-align: left;
}
.m-desc--center {
  text-align: center;
}
.m-desc p {
  font-size: 16px;
  line-height: 1.87;
  letter-spacing: 0.12em;
}
.m-desc--split p + p {
  margin-top: 30px;
}

/*============================
m-scroll
============================*/
.m-scroll {
  height: 100px;
}
.m-scroll__line {
  height: 100%;
}
.m-scroll__line::before {
  height: 100px;
  background-color: #ffffff;
  animation: scrollLine 1.4s linear infinite;
}
@keyframes scrollLine {
  0% {
    height: 100px;
  }
  100% {
    height: 0;
  }
}
.m-scroll__tit {
  font-size: 12px;
  color: #ffffff;
  padding-bottom: 10px;
}
.m-scroll__line {
  position: relative;
}
.m-scroll__line::before {
  content: "";
  width: 1px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
}

/*============================
m-card
============================*/
.m-card {
  display: block;
  width: 370px;
}
.m-card:hover .m-card__img img {
  transition: 0.3s;
  transform: scale(1.1);
}
.m-card:hover .m-card__letterTit {
  transition: 0.3s;
  text-decoration: none;
  color: #3a88c8;
}
.m-card:hover .m-card__letterTit:visited {
  text-decoration: none;
  color: #3a88c8;
}
.m-card:hover .m-card__letterTit:hover {
  text-decoration: none;
}
.m-card__img {
  z-index: 1;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.m-card__img::after {
  content: "";
  display: block;
  padding-top: 54.0540540541%;
}
.m-card__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.m-card__img img {
  transition: 0.3s;
}
.m-card__letter {
  margin-top: 16px;
  text-align: left;
  transition: 0.3s;
}
.m-card__letterCat {
  font-size: 13px;
  color: #999999;
}
.m-card__letterTit {
  font-weight: bold;
  margin-top: 12px;
}

/*============================
m-arrow
============================*/
a:hover .m-arrow::before,
p:hover .m-arrow::before {
  transform: translate(-50%, -50%);
  transition: 0.3s;
  visibility: visible;
}
a:hover .m-arrow:after,
p:hover .m-arrow:after {
  transform: translate(-50%, -50%) translateX(50px);
  transition: 0.3s;
  visibility: hidden;
}
a:hover .m-arrow--smalldown:before,
p:hover .m-arrow--smalldown:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
a:hover .m-arrow--smalldown:after,
p:hover .m-arrow--smalldown:after {
  transform: translate(-50%, -50%) translateY(50px) rotate(90deg);
}
a:hover .m-arrow--grey:before,
p:hover .m-arrow--grey:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
a:hover .m-arrow--grey:after,
p:hover .m-arrow--grey:after {
  transform: translate(-50%, -50%) translateY(50px) rotate(90deg);
}

.m-arrow {
  background-color: #3a88c8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.m-arrow:hover::before {
  transform: translate(-50%, -50%);
  transition: 0.3s;
  visibility: visible;
}
.m-arrow:hover:after {
  transform: translate(-50%, -50%) translateX(50px);
  transition: 0.3s;
  visibility: hidden;
}
.m-arrow:before {
  content: "";
  background: url(../img/global/arrow.svg?20255599) no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15.5px;
  height: 11px;
  transform: translate(-50%, -50%) translateX(-50px);
  visibility: hidden;
  transition: 0.3s;
}
.m-arrow:after {
  content: "";
  background: url(../img/global/arrow.svg?20255599) no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15.5px;
  height: 11px;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.m-arrow--small {
  width: 24px;
  height: 24px;
}
.m-arrow--small:before {
  content: "";
  width: 9.7px;
  height: 7px;
}
.m-arrow--small:after {
  content: "";
  width: 9.7px;
  height: 7px;
}
.m-arrow--moresmall {
  width: 16px;
  height: 16px;
}
.m-arrow--moresmall:before {
  content: "";
  width: 8px;
  height: 5.5px;
}
.m-arrow--moresmall:after {
  content: "";
  width: 8px;
  height: 5.5px;
}
.m-arrow--smalldown {
  width: 24px;
  height: 24px;
}
.m-arrow--smalldown:before {
  content: "";
  transform: translate(-50%, -50%) translateY(-50px) rotate(90deg);
  width: 9.7px;
  height: 7px;
}
.m-arrow--smalldown:after {
  content: "";
  transform: translate(-50%, -50%) rotate(90deg);
  width: 9.7px;
  height: 7px;
}
.m-arrow--smalldown:hover:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.m-arrow--smalldown:hover:after {
  transform: translate(-50%, -50%) translateY(50px) rotate(90deg);
}
.m-arrow--white {
  background-color: #ffffff;
}
.m-arrow--white:before {
  content: "";
  background-image: url(../img/global/arrow--blue.svg?20255599);
}
.m-arrow--white:after {
  content: "";
  background-image: url(../img/global/arrow--blue.svg?20255599);
}
.m-arrow--grey {
  background-color: #BFBFBF;
}
.m-arrow--grey:before {
  transform: translate(-50%, -50%) translateY(-50px) rotate(90deg);
}
.m-arrow--grey:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.m-arrow--grey:hover:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.m-arrow--grey:hover:after {
  transform: translate(-50%, -50%) translateY(50px) rotate(90deg);
}

/*============================
m-link
============================*/
.m-link__link {
  font-size: 18px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  color: #3a88c8;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
  position: relative;
}
.m-link__link:visited {
  text-decoration: none;
  color: #3a88c8;
}
.m-link__link:hover {
  text-decoration: none;
}
.m-link__link:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.m-link:hover .m-link__link {
  text-decoration: none;
  color: #2a2a2a;
  opacity: 1;
}
.m-link:hover .m-link__link:visited {
  text-decoration: none;
  color: #2a2a2a;
}
.m-link:hover .m-link__link:hover {
  text-decoration: none;
}
.m-link--white .m-link__link {
  text-decoration: none;
  color: #ffffff;
}
.m-link--white .m-link__link:visited {
  text-decoration: none;
  color: #ffffff;
}
.m-link--white .m-link__link:hover {
  text-decoration: none;
}
.m-link--white:hover .m-link__link {
  text-decoration: none;
  color: #ffffff;
}
.m-link--white:hover .m-link__link:visited {
  text-decoration: none;
  color: #ffffff;
}
.m-link--white:hover .m-link__link:hover {
  text-decoration: none;
}

/*==========================
共通タブ用 => .js-tab
==========================*/
.js-tab__switchItem {
  cursor: pointer;
}
.js-tab__main {
  position: relative;
}
.js-tab__mainItem {
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.js-tab__mainItem.has-scroll {
  display: none;
  position: static;
}
.js-tab__mainItem.is-active {
  opacity: 1;
  visibility: visible;
  position: static;
  z-index: auto;
}
.js-tab__mainItem.is-active.has-scroll {
  display: block;
}

/*===================
タブの中のタブ => .js-tab_inr
===================*/
.js-tabInr__switchItem {
  cursor: pointer;
}
.js-tabInr__main {
  position: relative;
}
.js-tabInr__mainItem {
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.js-tabInr__mainItem.has-scroll {
  display: none;
  position: static;
}
.js-tabInr__mainItem.is-active {
  opacity: 1;
  visibility: visible;
  position: static;
  z-index: auto;
}
.js-tabInr__mainItem.is-active.has-scroll {
  display: block;
}

/*==========================
共通トグル用 => .js-toggle
==========================*/
.js-toggle__switch {
  position: relative;
  cursor: pointer;
}
.js-toggle__switch.is-active {
  transition: 0.3s;
}
.js-toggle__next {
  display: none;
}

/*==================
js-fade
==================*/
.js-fade {
  opacity: 0;
  transition: 1s;
}
.js-fade-up {
  transform: translate(0, 50px);
}
.js-fade-up.is-active {
  transform: translate(0, 0);
  opacity: 1;
}
.js-fade-updelay {
  opacity: 0;
  transform: translate(0, 50px);
  transition: opacity 1s ease, transform 1s ease;
}
.js-fade-updelay.is-active {
  opacity: 1;
  transform: translateY(0);
}
.js-fade-updelay:nth-child(1) {
  transition-delay: 0s;
}
.js-fade-updelay:nth-child(2) {
  transition-delay: 0.3s;
}
.js-fade-updelay:nth-child(3) {
  transition-delay: 0.6s;
}
.js-fade-updelay:nth-child(4) {
  transition-delay: 0.9s;
}
.js-fade-updelay:nth-child(5) {
  transition-delay: 1.2s;
}
.js-fade-updelay:nth-child(6) {
  transition-delay: 1.5s;
}
.js-fade-updelay:nth-child(7) {
  transition-delay: 1.8s;
}
.js-fade-updelay:nth-child(8) {
  transition-delay: 2.1s;
}
.js-fade-updelay:nth-child(9) {
  transition-delay: 2.4s;
}
.js-fade-updelay:nth-child(10) {
  transition-delay: 2.7s;
}

/*==========================
共通スライダー用 => .js-slider
==========================*/
.js-slider__modulDots {
  position: relative;
}
.js-slider__modulArw {
  cursor: pointer;
}

/*==========================
マウスストーカー => .js-stalker
==========================*/
.js-stalker-small, .js-stalker-large {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999999;
}
.js-stalker-small {
  width: 15px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.js-stalker-small.is-hover {
  opacity: 0;
}
.js-stalker-large {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease;
}
.js-stalker-large.is-hover {
  width: 80px;
  height: 80px;
}

/*==================
js-mv
==================*/
.js-mv {
  position: relative;
}
.js-mv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #3a88c8;
  z-index: 10;
}
.js-mv.is-active:before {
  transition: 1s;
  transform: translateY(-100%);
}
.js-mv.is-noanimation:before {
  transform: translateY(-100%);
}
.js-mv-txt {
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.js-mv-txt__child {
  display: inline-block;
  transform: translateY(50px);
}
.js-mv-txt__child--large {
  transform: translateY(100px);
}
.js-mv-txt__child.is-active {
  transform: translateY(0);
  transition: 0.6s;
}
.js-mv-txt__child.is-noanimation {
  transform: translateY(0);
}

/*==========================
特徴ブロック
.a-overview
==========================*/
.a-overview {
  width: 100%;
  margin-top: 156px;
}
.a-overview__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.a-overview__main {
  width: 594px;
  text-align: left;
  margin-top: 36px;
}
.a-overview__mainTxt {
  font-size: 43px;
  font-weight: 700;
  margin-top: 49px;
}
.a-overview__mainTxt--small {
  font-size: 28px;
  margin-top: 32px;
}
.a-overview__img {
  width: 466px;
  border-radius: 32px;
  overflow: hidden;
}

/*==========================
特徴ブロック
.a-features
==========================*/
.a-features {
  width: 100%;
  margin-top: 142px;
}
.a-features__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.a-features__main {
  width: 594px;
  text-align: left;
  margin-top: 36px;
}
.a-features__mainTxt {
  font-size: 43px;
  font-weight: 700;
  margin-top: 49px;
}
.a-features__img {
  width: 466px;
  border-radius: 32px;
  overflow: hidden;
}

/*==========================
特徴ブロック
.a-work
==========================*/
.a-work {
  width: 100%;
  margin-top: 142px;
  padding-top: 162px;
  padding-bottom: 159px;
  background-color: #3a88c8;
}
.a-work__main {
  margin-top: 67px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 46px 2.2491349481%;
}
.a-work__mainUnit {
  width: 31.8339100346%;
  position: relative;
  z-index: 1;
}
.a-work__mainUnit:nth-child(3n)::before {
  content: "";
  width: 50vw;
  height: 1px;
  display: block;
  border-top: dashed 1px #ffffff;
  position: absolute;
  top: 36.5px;
  left: 0;
  z-index: -1;
}
.a-work__mainUnit:nth-child(3n):last-child::before {
  content: none;
}
.a-work__mainUnit:nth-child(3n+1)::before {
  content: "";
  width: 50vw;
  height: 1px;
  display: block;
  border-top: dashed 1px #ffffff;
  position: absolute;
  top: 36.5px;
  right: calc(100% + 23px);
  z-index: -1;
}
.a-work__mainUnit:nth-child(3n+1)::after {
  content: "";
  width: 12px;
  height: 14px;
  display: block;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 30px;
  right: calc(100% + 18px);
  z-index: -1;
}
.a-work__mainUnit:nth-child(3n+1):first-child::before {
  content: none;
}
.a-work__mainUnit:nth-child(3n+1):first-child::after {
  content: none;
}
.a-work__mainUnitHead {
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
}
.a-work__mainUnitHead::before {
  content: "";
  width: calc(100% - 5px);
  height: 1px;
  display: block;
  border-top: dashed 1px #ffffff;
  position: absolute;
  top: 36.5px;
  left: 0;
  z-index: -1;
}
.a-work__mainUnit:nth-child(3n) .a-work__mainUnitHead::before, .a-work__mainUnit:last-child .a-work__mainUnitHead::before {
  content: none;
}
.a-work__mainUnitHead::after {
  content: "";
  width: 12px;
  height: 14px;
  display: block;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 30px;
  right: 0;
  z-index: -1;
}
.a-work__mainUnit:nth-child(3n) .a-work__mainUnitHead::after, .a-work__mainUnit:last-child .a-work__mainUnitHead::after {
  content: none;
}
.a-work__mainUnitNum {
  font-family: "Inter";
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  padding-right: 27px;
  background-color: #3a88c8;
}
.a-work__mainUnitTit {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  padding-right: 27px;
  background-color: #3a88c8;
}
.a-work__mainUnitImg {
  width: 100%;
}
.a-work__mainUnitImg picture {
  aspect-ratio: 368/201;
  border-radius: 8px;
  overflow: hidden;
}
.a-work__mainUnitImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================
特徴ブロック
.a-free
==========================*/
.a-free {
  width: 100%;
  margin-top: 102px;
}
.a-free__tit {
  font-size: 43px;
  font-weight: 700;
  line-height: 150%;
}
.a-free__txt {
  margin-top: 24px;
}

/*==========================
サンプル
.a-sample
==========================*/
.a-sample__txt {
  border-bottom: 1px solid red;
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
}

/*==========================
レイアウト
.a-layout
==========================*/
.a-layout {
  margin-top: 20px;
}
.a-layout__doboz {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}
.a-layout__letter {
  text-align: left;
  width: 50%;
}
.a-layout__tit {
  font-size: 24px;
}
.a-layout__txt {
  margin-top: 20px;
  line-height: 1.5;
}
.a-layout__img {
  width: 50%;
}
.a-layout__img img {
  width: 100%;
}

/*==========================
スライダーブロック
.a-slider
==========================*/
.a-slider__txt {
  line-height: 180%;
  margin-block: 24px;
}
.a-slider__bodySlide {
  margin-block: 48px;
  padding-bottom: 50px;
  position: relative;
}
.a-slider__bodySlideContainer {
  overflow: hidden;
}
.a-slider__bodySlideImg {
  border-radius: 32px;
  overflow: hidden;
}
.a-slider__bodySlideImg img {
  width: 100% !important;
}
.a-slider__bodySlide .swiper-pagination {
  bottom: 10px;
}
.a-slider__bodySlide .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  background-color: #d9d9d9;
  opacity: 1;
}
.a-slider__bodySlide .swiper-pagination-bullet-active {
  background-color: #3a88c8;
}
.a-slider__bodySlide .swiper-button-prev {
  display: block;
  width: 80px;
  height: 80px;
  margin-top: 0;
  left: -40px;
  top: calc((100% - 50px) / 2 - 40px);
  bottom: auto;
  right: auto;
  background-image: url(../img/global/slider-arrow.svg?20255599);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.a-slider__bodySlide .swiper-button-prev::after {
  content: none;
}
.a-slider__bodySlide .swiper-button-next {
  display: block;
  width: 80px;
  height: 80px;
  margin-top: 0;
  right: -40px;
  top: calc((100% - 50px) / 2 - 40px);
  bottom: auto;
  left: auto;
  background-image: url(../img/global/slider-arrow.svg?20255599);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.a-slider__bodySlide .swiper-button-next::after {
  content: none;
}
.a-slider__bodySlide .swiper-button-disabled {
  display: none;
}
.a-slider__bodyDetail {
  margin-top: 80px;
}
.a-slider__bodyDetailList {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.a-slider__bodyDetailItem {
  width: 48.7394957983%;
  border-bottom: 1px solid #BFBFBF;
  padding-block: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.a-slider__bodyDetailItem:nth-child(-n+2) {
  border-top: 1px solid #BFBFBF;
}
.a-slider__bodyDetailLabel {
  display: block;
  width: 140px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  color: #3a88c8;
  padding-right: 10px;
}
.a-slider__bodyDetailTxt {
  display: block;
  flex: 1;
  font-size: 18px;
  line-height: 150%;
}

/*==========================
特徴ブロック
.a-works
==========================*/
.a-works {
  width: 100%;
  margin-top: 143px;
}
.a-works__main {
  width: 100%;
  margin-top: 49px;
  padding-bottom: 20px;
  overflow-x: auto;
}
.a-works__mainList {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.a-works__mainItem:not(:first-child) {
  margin-left: 23px;
}
.a-works__btn {
  margin-top: 40px;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/*==========================
企業情報
.p-company
==========================*/
.p-company {
  overflow: hidden;
}
.p-company-greeting {
  width: 100%;
  padding-top: 134px;
}
.p-company-greeting__inner {
  position: relative;
  z-index: 1;
}
.p-company-greeting__inner::before {
  content: "";
  width: 615.94px;
  height: 319.49px;
  display: block;
  background-image: url(../img/company/greeting_mark.svg?20255599);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -64px;
  right: -58px;
  z-index: -1;
}
.p-company-greeting__main {
  text-align: left;
  margin-top: 49px;
}
.p-company-greeting__mainItem:not(:first-of-type) {
  margin-top: 40px;
}
.p-company-greeting__mainTxt {
  line-height: 210%;
  margin-top: 16px;
}
.p-company-greeting__mainTit {
  color: #3a88c8;
  font-size: 24px;
  font-weight: 700;
}
.p-company-profile {
  margin-top: 150px;
  padding-top: 162px;
  padding-bottom: 200px;
  background-color: #ebf5ff;
}
.p-company-profile__tit .m-tit {
  white-space: nowrap;
}
.p-company-profile__detail {
  margin-top: 58px;
}
.p-company-profile__detailList {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.p-company-profile__detailItem {
  width: 48.7889273356%;
  border-bottom: 1px solid #BFBFBF;
  text-align: left;
  padding-block: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.p-company-profile__detailItem:nth-child(1) {
  border-top: 1px solid #BFBFBF;
}
.p-company-profile__detailItem:nth-child(2) {
  border-top: 1px solid #BFBFBF;
}
.p-company-profile__detailLabel {
  display: block;
  width: 140px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  color: #3a88c8;
}
.p-company-profile__detailTxt {
  display: block;
  flex: 1;
  font-size: 18px;
  line-height: 150%;
}
.p-company-profile__access {
  text-align: left;
  margin-top: 65px;
}
.p-company-profile__accessHeading {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 25px;
  border-bottom: 1px solid #2a2a2a;
}
.p-company-profile__accessMap {
  width: 100%;
  height: 400px;
  margin-top: 40px;
}
.p-company-profile__accessMap iframe {
  width: 100%;
  height: 100%;
}
.p-company-profile__accessTxt {
  font-size: 18px;
  margin-top: 16px;
}
.p-company-profile__overview {
  text-align: left;
  margin-top: 60px;
}
.p-company-profile__overviewHeading {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 25px;
  border-bottom: 1px solid #2a2a2a;
}
.p-company-profile__overviewList {
  margin-top: 49px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px 0;
}
.p-company-profile__overviewItem {
  width: 48.7889273356%;
  padding-left: 19px;
  position: relative;
}
.p-company-profile__overviewItem::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  background-color: #3a88c8;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 0;
}
.p-company-profile__overviewTxt {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: #3a88c8;
}
.p-company-profile__overviewNotes {
  display: block;
  margin-top: 8px;
  line-height: 150%;
}
.p-company-office {
  width: 100%;
  padding-top: 134px;
}
.p-company-office__main {
  text-align: left;
  margin-top: 41px;
}
.p-company-office__mainList {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.p-company-office__mainItem {
  width: 48.7889273356%;
  border: 1px solid #3a88c8;
  border-radius: 8px;
  padding: 31px 40px 35px 40px;
}
.p-company-office__mainLabel {
  font-size: 24px;
  font-weight: 700;
  color: #3a88c8;
}
.p-company-office__mainTxt {
  margin-top: 14px;
}
.p-company-history {
  width: 100%;
  margin-top: 120px;
  padding-top: 126px;
  padding-bottom: 140px;
  background-color: #ebf5ff;
}
.p-company-history__chart {
  text-align: left;
  margin-top: 49px;
}
.p-company-history__chartList {
  position: relative;
}
.p-company-history__chartList::before {
  content: "";
  width: 1px;
  height: calc(100% - 30px);
  display: block;
  background-color: #BFBFBF;
  position: absolute;
  top: 30px;
  left: 201.5px;
}
.p-company-history__chartItem {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 48px;
}
.p-company-history__chartWrapper {
  flex: 1;
  margin-bottom: 30px;
  padding-left: 98px;
  position: relative;
}
.p-company-history__chartWrapper::before {
  content: "";
  width: 16px;
  height: 32px;
  display: block;
  background-color: #ebf5ff;
  position: absolute;
  top: 12px;
  left: 0;
}
.p-company-history__chartWrapper::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-color: #3a88c8;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 0;
}
.p-company-history__chartUnit {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.p-company-history__chartUnit + .p-company-history__chartUnit {
  margin-top: 40px;
}
.p-company-history__chartYear {
  width: 194px;
}
.p-company-history__chartYearEn {
  display: block;
  font-family: "Inter";
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: #3a88c8;
}
.p-company-history__chartYearJp {
  display: block;
  color: #BFBFBF;
}
.p-company-history__chartMonth {
  width: 98px;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  color: #3a88c8;
  margin-top: 8px;
}
.p-company-history__chartTxt {
  flex: 1;
  font-size: 18px;
  line-height: 150%;
  margin-top: 12px;
}
.p-company-financial {
  width: 100%;
  padding-top: 163px;
}
.p-company-financial__list {
  border-top: 1px solid #E5E9F0;
  margin-top: 40px;
}
.p-company-financial__item {
  border-bottom: 1px solid #E5E9F0;
  transition: 0.6s;
}
.p-company-financial__item:hover {
  border-color: #3a88c8;
  transition: 0.6s;
}
.p-company-financial__item:hover .p-company-financial__txt {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  text-decoration: none;
  color: #3a88c8;
  transition: 0.6s;
}
.p-company-financial__item:hover .p-company-financial__txt:visited {
  text-decoration: none;
  color: #3a88c8;
}
.p-company-financial__item:hover .p-company-financial__txt:hover {
  text-decoration: none;
}
.p-company-financial__link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-block: 40px;
  padding-inline: 48px;
}
.p-company-financial__date {
  width: 198px;
  font-family: "Inter";
  font-weight: 700;
  color: #3a88c8;
}
.p-company-financial__txt {
  flex: 1;
  text-decoration: underline;
  -webkit-text-decoration-color: #2a2a2a;
          text-decoration-color: #2a2a2a;
  text-decoration-thickness: 1px;
  transition: 0.6s;
}
.p-company-affiliate {
  width: 100%;
  margin-top: 150px;
  padding-top: 156px;
  padding-bottom: 145px;
  background-color: #ebf5ff;
}
.p-company-affiliate__main {
  margin-top: 49px;
}
.p-company-affiliate__mainList {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 26px;
  flex-wrap: wrap;
}
.p-company-affiliate__mainItem {
  width: 368px;
}
.p-company-affiliate__mainLink {
  display: block;
  position: relative;
  z-index: 1;
}
.p-company-affiliate__mainLink:hover .p-company-affiliate__mainImg img {
  transform: scale(1.1);
}
.p-company-affiliate__mainLink:hover .p-company-affiliate__mainTit {
  opacity: 0.7;
}
.p-company-affiliate__mainImg {
  width: 100%;
  aspect-ratio: 368/201;
  border-radius: 8px;
  overflow: hidden;
}
.p-company-affiliate__mainImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.p-company-affiliate__mainTit {
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
}
.p-company-affiliate .m-arrow {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
  .l-header__inner {
    padding: 0 16px;
  }
  .l-header__logo {
    width: 100px;
  }
  .l-header__gnav {
    display: none;
  }
  .l-header__megamenu {
    display: none;
  }
  .l-header__hmb {
    position: fixed;
    z-index: 1000001;
    top: 30px;
    right: 16px;
    display: block;
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 50%;
  }
  .l-header__hmbButton {
    position: relative;
    width: 100%;
    height: 40px;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .l-header__hmbButton > div {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 2px;
    transition: 0.3s;
    background: #3a88c8;
  }
  .l-header__hmbButton > div:nth-of-type(1) {
    top: 48%;
    transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton > div:nth-of-type(2) {
    top: 57%;
    transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton.is-active > div {
    transition: 0.3s;
  }
  .l-header__hmbButton.is-active > div:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, 0) rotate(45deg);
  }
  .l-header__hmbButton.is-active > div:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0) rotate(-45deg);
  }
  .l-header__drwNav {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    width: 100%;
    height: calc(100vh + 60px);
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    padding: 35px 16px;
  }
  .l-header__drwNav.is-active {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
    z-index: 1000000;
    overflow-y: scroll;
    padding: 120px 16px 150px 16px;
  }
  .l-footer {
    position: relative;
  }
  .l-footer__inner {
    position: initial;
    max-width: 100%;
    padding-bottom: 30px;
  }
  .l-footer__doboz {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
  }
  .l-footer__dobozSplit:nth-of-type(1) {
    margin-top: 56px;
    order: 2;
  }
  .l-footer__dobozSplit:nth-of-type(2) {
    order: 1;
  }
  .l-footer__logo {
    width: 130px;
  }
  .l-footer__gnav {
    flex-direction: column;
    gap: 16px;
  }
  .l-footer__gnavItem {
    width: 100%;
  }
  .l-footer__gnavItem--btn {
    display: block;
  }
  .l-footer__gnavItem--btn .l-footer__gnavListItem:not(:first-of-type) {
    margin-top: 24px;
  }
  .l-footer__gnavItem:last-of-type {
    margin-top: 16px;
  }
  .l-footer__gnavItemTit {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 16px;
  }
  .l-footer__gnavListItemTit {
    font-size: 16px;
    color: #2a2a2a;
  }
  .l-footer__gnavListItemLink {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 16px 16px;
  }
  .l-footer__copy {
    margin-top: 48px;
  }
  .l-footer--recruit .l-footer__entry .m-button__link {
    width: 100%;
    font-size: 20px;
    height: 100px;
    border-radius: 50px;
  }
  .l-footer--recruit .l-footer__doboz {
    margin-top: 40px;
  }
  .l-footer--recruit .l-footer__gnav {
    flex-direction: column;
    gap: 16px;
    max-width: initial;
  }
  .l-footer--recruit .l-footer__gnavItem {
    width: 100%;
    margin-left: 0;
  }
  .l-footer--recruit .l-footer__gnavItem--btn .m-button {
    margin-top: 0;
  }
  .l-footer--recruit .l-footer__gnavLink {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 16px 16px;
    font-weight: 700;
  }
  .l-footer--recruit .l-footer__gnavLink .m-arrow {
    display: inline-block;
  }
  .l-footer .js-toggle__switch {
    cursor: pointer;
  }
  .l-footer .js-toggle__next {
    display: none;
  }
  .l-footer .m-hide--pc {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .l-footer .m-arrow {
    margin-right: 16px;
  }
  .l-footer .m-arrow--grey {
    display: inline-block;
  }
  .l-footer .m-button {
    margin-top: 0;
  }
  .l-section__inner {
    max-width: 100%;
  }
  .l-pankuzu {
    top: 100px;
    padding: 0 24px;
  }
  .l-pankuzu__list {
    max-width: 100%;
  }
  .l-pankuzu__list > li {
    font-size: 12px;
  }
  .l-main__spacer {
    margin-top: 50px;
    padding-bottom: 75px;
  }
  .l-mv-under--noanchor .l-mv-under__img img {
    height: 100%;
  }
  .l-mv-under--single .l-mv-under__img {
    width: 100%;
  }
  .l-mv-under--single .l-mv-under__img img {
    height: 100%;
  }
  .l-mv-under__img {
    max-height: initial;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
  .l-mv-under__img img {
    height: 100%;
    max-height: initial;
  }
  .l-mv-under__letter {
    top: 170px;
    transform: translate(-50%, 0);
  }
  .l-mv-under__letterTitEn {
    font-size: 16px;
  }
  .l-mv-under__letterTitJa {
    font-size: 40px;
  }
  .l-mv-under__letterTxt {
    font-size: 12px;
  }
  .l-footcontact__split:nth-of-type(1) {
    top: -240px;
  }
  .l-footcontact__recruit {
    border: 24px;
  }
  .l-footcontact__recruitImg {
    height: 470px;
    border-radius: 24px;
  }
  .l-footcontact__recruitImg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .l-footcontact__contact {
    border-radius: 24px;
  }
  .l-footcontact__contactDoboz {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 24px;
    bottom: 100px;
  }
  .l-footcontact__contactLetterTxt {
    font-size: 14px;
  }
  .l-footcontact__contactLetterTel {
    align-items: flex-start;
    flex-direction: column;
    font-size: 12px;
  }
  .l-footcontact__contactLetterTelIcon {
    font-size: 18px;
  }
  .l-footcontact__contactImg img {
    -o-object-fit: initial;
       object-fit: initial;
    border-radius: 24px;
  }
  .l-footcontact__contact .m-link {
    align-self: flex-start;
    margin-top: 24px;
    width: 100%;
  }
  .l-tab__switchItem {
    font-size: 14px;
    padding-bottom: 12px;
  }
  .l-anchor {
    padding: 28px 24px;
    border-radius: 16px;
    margin-top: -30%;
  }
  .l-anchor__list {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .l-anchor__item {
    width: calc(50% - 5px);
    height: 50px;
  }
  .l-anchor__itemLink {
    font-size: 12px;
  }
  .l-pager {
    margin-top: 60px;
  }
  .l-pager__list {
    align-items: flex-start;
  }
  .l-pager__buttonPrev, .l-pager__buttonNext {
    font-size: 14px;
  }
  .l-pager .m-link__link {
    margin-top: 50px;
  }
  .l-department__division {
    margin-top: 48px;
  }
  .l-department__division + .l-department__division {
    margin-top: 32px;
  }
  .l-department__divisionHeading {
    padding-bottom: 8px;
  }
  .l-department__divisionWrapper {
    display: block;
    margin-top: 24px;
  }
  .l-department__divisionUnit {
    width: 100%;
  }
  .l-department__divisionUnit + .l-department__divisionUnit {
    margin-top: 32px;
  }
  .l-department__divisionTxt {
    margin-top: 8px;
  }
  .l-department__divisionImg {
    margin-top: 24px;
  }
  .l-services {
    margin-top: 60px;
  }
  .l-services__type {
    margin-top: 56px;
  }
  .l-services__typeList {
    display: block;
  }
  .l-services__typeItem {
    width: 100%;
  }
  .l-services__typeItem:not(:last-child)::before {
    width: 100%;
    height: 2px;
    top: auto;
    bottom: 0;
  }
  .l-services__typeItem:nth-child(4) .l-services__typeDoboz {
    aspect-ratio: 327/310;
  }
  .l-services__typeDoboz {
    aspect-ratio: 327/240;
  }
  .l-services__typeMain {
    top: 28px;
    padding-left: 32px;
  }
  .l-services__typeBox {
    margin-top: 12px;
  }
  .l-services__typeLinkTit {
    line-height: 120%;
  }
  .l-services .m-arrow {
    margin-right: 32px;
  }
  .l-products {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l-products__wrap {
    margin-top: 0;
    display: block;
  }
  .l-products__wrap + .l-products__wrap {
    margin-top: 0;
  }
  .l-products__unit {
    gap: 24px;
  }
  .l-products__unitHeading {
    font-size: 18px;
    padding-bottom: 16px;
  }
  .l-products__unitList {
    gap: 16px 11px;
    margin-top: 24px;
  }
  .l-products__unitItem {
    width: calc((100% - 11px) / 2);
  }
  .l-products__unitTxt {
    font-size: 14px;
    margin-top: 8px;
  }
  .l-products__btn {
    margin-top: 40px;
  }
  .m-pagetop {
    width: 80px;
    height: 80px;
    top: -40px;
    bottom: 0;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
  }
  .m-button--whiteborder {
    width: 100%;
    margin-top: 24px;
  }
  .m-button--whiteborder .m-button__link {
    width: 100%;
    height: 64px;
    border-radius: 32px;
  }
  .m-hide--sp {
    display: none;
  }
  .m-hide--pc {
    display: block;
  }
  .m-tit {
    gap: 16px;
  }
  .m-tit:before {
    content: url(../img/global/sp-tit--blue.svg?20255599);
    top: -5px;
    left: -15px;
  }
  .m-tit__ja {
    font-size: 14px;
  }
  .m-tit__en {
    font-size: 32px;
  }
  .m-tit--white:before {
    content: url(../img/global/sp-tit--white.svg?20255599);
  }
  .m-tit--whitecenter:before {
    content: url(../img/global/sp-tit--whitecenter.svg?20255599);
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .m-tit--whitecenter .m-tit__ja {
    font-size: 16px;
  }
  .m-tit--whitecenter .m-tit__en {
    font-size: 48px;
  }
  .m-tit--bluewhite:before {
    content: url(../img/global/sp-tit--bluewhite.svg?20255599);
  }
  .m-tit--transparent:before {
    content: none;
  }
  .m-pagenavi {
    margin-top: 40px;
  }
  .m-desc p {
    font-size: 12px;
  }
  .m-desc p + p {
    margin-top: 20px;
  }
  .m-scroll {
    height: 50px;
  }
  .m-scroll__line {
    height: 100%;
  }
  .m-scroll__line::before {
    height: 50px;
    background-color: #ffffff;
    animation: scrollLine 1.4s linear infinite;
  }
  @keyframes scrollLine {
    0% {
      height: 50px;
    }
    100% {
      height: 0;
    }
  }
  .m-card {
    width: 100%;
  }
  .m-card__letterTit {
    margin-top: 8px;
  }
  .m-arrow {
    width: 24px;
    height: 24px;
  }
  .m-arrow:before {
    top: 50%;
    width: 9.7px;
    height: 7px;
  }
  .m-arrow:after {
    top: 50%;
    width: 9.7px;
    height: 7px;
  }
  .m-arrow--smalldown {
    width: 16px;
    height: 16px;
  }
  .js-stalker {
    display: none;
  }
  .a-overview {
    margin-top: 67px;
  }
  .a-overview__inner {
    display: block;
  }
  .a-overview__main {
    width: 100%;
    margin-top: 0px;
  }
  .a-overview__mainTxt {
    font-size: 32px;
    margin-top: 24px;
  }
  .a-overview__mainTxt--small {
    font-size: 18px;
    margin-top: 16px;
  }
  .a-overview__img {
    width: 100%;
    margin-top: 40px;
  }
  .a-features {
    margin-top: 60px;
  }
  .a-features__inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
  }
  .a-features__main {
    display: contents;
    width: 100%;
    margin-top: 0px;
  }
  .a-features__mainTit {
    order: 1;
  }
  .a-features__mainTxt {
    font-size: 32px;
    margin-top: 24px;
    order: 3;
  }
  .a-features__img {
    width: 100%;
    margin-top: 24px;
    order: 2;
  }
  .a-work {
    margin-top: 67px;
    padding-top: 60px;
    padding-bottom: 71px;
  }
  .a-work__main {
    margin-top: 24px;
    display: block;
  }
  .a-work__mainUnit {
    width: 100%;
  }
  .a-work__mainUnit:nth-child(3n)::before {
    content: none;
  }
  .a-work__mainUnit:nth-child(3n+1)::before {
    content: none;
  }
  .a-work__mainUnit:nth-child(3n+1)::after {
    content: none;
  }
  .a-work__mainUnit:not(:first-child) {
    margin-top: 16px;
  }
  .a-work__mainUnitHead::before {
    content: none;
  }
  .a-work__mainUnitHead::after {
    content: none;
  }
  .a-work__mainUnitNum {
    font-size: 32px;
    padding-right: 16px;
  }
  .a-work__mainUnitTit {
    font-size: 18px;
    padding-right: 0;
  }
  .a-work__mainUnitImg {
    position: relative;
  }
  .a-work__mainUnitImg picture {
    width: calc(100% - 52px);
    margin-top: 4px;
    margin-left: auto;
    margin-right: 0;
  }
  .a-work__mainUnitImg::before {
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    display: block;
    border-left: dashed 1px #ffffff;
    position: absolute;
    top: 0;
    left: 19px;
  }
  .a-work__mainUnitImg::after {
    content: "";
    width: 14px;
    height: 12px;
    display: block;
    background-color: #ffffff;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: 0;
    left: 12.5px;
  }
  .a-work__mainUnit:last-child .a-work__mainUnitImg::after {
    content: none;
  }
  .a-free {
    margin-top: 76px;
  }
  .a-free__tit {
    font-size: 32px;
  }
  .a-free__txt {
    line-height: 210%;
  }
  .a-slider__bodySlide {
    margin-block: 24px;
    padding-bottom: 56px;
  }
  .a-slider__bodySlideImg {
    border-radius: 16px;
  }
  .a-slider__bodySlide .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 0;
    left: 0;
  }
  .a-slider__bodySlide .swiper-button-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 0;
    right: 0;
  }
  .a-slider__bodyDetail {
    margin-top: 40px;
  }
  .a-slider__bodyDetailList {
    flex-direction: column;
    border-top: 1px solid #BFBFBF;
  }
  .a-slider__bodyDetailItem {
    width: 100%;
    padding-block: 16px;
    padding-inline: 16px;
    flex-direction: column;
    gap: 8px;
  }
  .a-slider__bodyDetailItem:nth-child(-n+2) {
    border-top: none;
  }
  .a-slider__bodyDetailLabel {
    width: 100%;
    font-size: 16px;
  }
  .a-slider__bodyDetailTxt {
    width: 100%;
    font-size: 16px;
  }
  .a-works {
    margin-top: 60px;
  }
  .a-works__main {
    margin-top: 24px;
  }
  .a-works__mainList {
    width: 100%;
    display: block;
  }
  .a-works__mainItem:not(:first-child) {
    margin-left: 0;
    margin-top: 32px;
  }
  .a-works__btn {
    margin-top: 30px;
  }
  .p-company-greeting {
    padding-top: 67px;
  }
  .p-company-greeting__inner {
    padding-bottom: 158px;
  }
  .p-company-greeting__inner::before {
    width: 323.89px;
    height: 168px;
    top: auto;
    bottom: 0;
    right: -35px;
  }
  .p-company-greeting__main {
    margin-top: 24px;
  }
  .p-company-greeting__mainItem:not(:first-of-type) {
    margin-top: 24px;
  }
  .p-company-greeting__mainTxt {
    margin-top: 8px;
  }
  .p-company-greeting__mainTit {
    font-size: 20px;
  }
  .p-company-profile {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-company-profile__detail {
    margin-top: 24px;
  }
  .p-company-profile__detailList {
    display: block;
  }
  .p-company-profile__detailItem {
    width: 100%;
    display: block;
    padding: 16px;
  }
  .p-company-profile__detailItem:nth-child(2) {
    border-top: none;
  }
  .p-company-profile__detailLabel {
    width: 100%;
  }
  .p-company-profile__detailTxt {
    font-size: 16px;
    margin-top: 8px;
  }
  .p-company-profile__access {
    margin-top: 32px;
  }
  .p-company-profile__accessHeading {
    padding-bottom: 8px;
  }
  .p-company-profile__accessMap {
    margin-top: 24px;
  }
  .p-company-profile__accessTxt {
    font-size: 14px;
  }
  .p-company-profile__overview {
    margin-top: 32px;
  }
  .p-company-profile__overviewHeading {
    padding-bottom: 8px;
  }
  .p-company-profile__overviewList {
    margin-top: 24px;
    flex-direction: column;
  }
  .p-company-profile__overviewItem {
    width: 100%;
    padding-left: 17px;
  }
  .p-company-profile__overviewItem::before {
    top: 9px;
  }
  .p-company-profile__overviewTxt {
    font-size: 16px;
  }
  .p-company-profile__overviewNotes {
    font-size: 12px;
  }
  .p-company-office {
    padding-top: 69px;
  }
  .p-company-office__main {
    margin-top: 24px;
  }
  .p-company-office__mainList {
    display: block;
  }
  .p-company-office__mainItem {
    width: 100%;
    padding: 16px;
  }
  .p-company-office__mainItem + .p-company-office__mainItem {
    margin-top: 24px;
  }
  .p-company-office__mainLabel {
    font-size: 18px;
  }
  .p-company-office__mainTxt {
    font-size: 14px;
    margin-top: 8px;
  }
  .p-company-history {
    margin-top: 67px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-company-history__chart {
    margin-top: 24px;
  }
  .p-company-history__chartList::before {
    height: calc(100% - 20px);
    top: 20px;
    left: 87.5px;
  }
  .p-company-history__chartItem {
    padding-bottom: 40px;
  }
  .p-company-history__chartWrapper {
    margin-bottom: 20px;
    padding-left: 22px;
  }
  .p-company-history__chartWrapper::before {
    width: 8px;
    height: 28px;
    top: 2px;
  }
  .p-company-history__chartWrapper::after {
    width: 8px;
    height: 8px;
    top: 12px;
  }
  .p-company-history__chartUnit + .p-company-history__chartUnit {
    margin-top: 24px;
  }
  .p-company-history__chartYear {
    width: 84px;
  }
  .p-company-history__chartYearEn {
    font-size: 28px;
  }
  .p-company-history__chartYearJp {
    font-size: 14px;
  }
  .p-company-history__chartMonth {
    width: 43px;
    font-size: 16px;
    margin-top: 3px;
  }
  .p-company-history__chartTxt {
    font-size: 14px;
    margin-top: 5px;
  }
  .p-company-financial {
    padding-top: 60px;
  }
  .p-company-financial__link {
    flex-direction: column;
    gap: 8px;
    padding-block: 16px;
    padding-inline: 16px;
  }
  .p-company-financial__date {
    font-size: 14px;
    text-align: left;
  }
  .p-company-affiliate {
    margin-top: 67px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-company-affiliate__tit .m-tit {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .p-company-affiliate__tit .m-tit__en {
    text-align: left;
    line-height: 120%;
  }
  .p-company-affiliate__tit .m-tit__ja {
    margin-bottom: 6px;
  }
  .p-company-affiliate__main {
    margin-top: 24px;
  }
  .p-company-affiliate__mainList {
    flex-direction: column;
    gap: 16px;
  }
  .p-company-affiliate__mainItem {
    width: 100%;
  }
  .p-company-affiliate__mainImg {
    aspect-ratio: 327/140;
  }
  .p-company-affiliate__mainTit {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1094px) {
  .l-header__inner {
    padding: 0 16px;
  }
  .l-header__logo {
    width: 100px;
  }
  .l-header__gnav {
    display: none;
  }
  .l-header__hmb {
    position: fixed;
    z-index: 1000001;
    top: 30px;
    right: 16px;
    display: block;
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 50%;
  }
  .l-header__hmbButton {
    position: relative;
    width: 100%;
    height: 40px;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .l-header__hmbButton > div {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 2px;
    transition: 0.3s;
    background: #3a88c8;
  }
  .l-header__hmbButton > div:nth-of-type(1) {
    top: 48%;
    transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton > div:nth-of-type(2) {
    top: 57%;
    transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton.is-active > div {
    transition: 0.3s;
  }
  .l-header__hmbButton.is-active > div:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, 0) rotate(45deg);
  }
  .l-header__hmbButton.is-active > div:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0) rotate(-45deg);
  }
  .l-header__drwNav {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    width: 100%;
    height: calc(100vh + 60px);
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    padding: 120px 16px 150px 16px;
  }
  .l-header__drwNav.is-active {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
    z-index: 1000000;
    overflow-y: scroll;
    padding-bottom: 200px;
  }
  .l-footer {
    position: relative;
  }
  .l-footer__inner {
    position: initial;
    max-width: 100%;
    padding-bottom: 30px;
  }
  .l-footer__doboz {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
  }
  .l-footer__dobozSplit:nth-of-type(1) {
    margin-top: 56px;
    order: 2;
  }
  .l-footer__dobozSplit:nth-of-type(2) {
    order: 1;
  }
  .l-footer__logo {
    width: 130px;
  }
  .l-footer__gnav {
    flex-direction: column;
    gap: 16px;
  }
  .l-footer__gnavItem {
    width: 100%;
  }
  .l-footer__gnavItem--btn {
    display: block;
  }
  .l-footer__gnavItem--btn .l-footer__gnavListItem:not(:first-of-type) {
    margin-top: 24px;
  }
  .l-footer__gnavItem:last-of-type {
    margin-top: 16px;
  }
  .l-footer__gnavItemTit {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 16px;
  }
  .l-footer__gnavListItemLink {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 16px 16px;
  }
  .l-footer__copy {
    margin-top: 48px;
  }
  .l-footer--recruit .l-footer__gnav {
    flex-direction: column;
    gap: 16px;
    max-width: initial;
  }
  .l-footer--recruit .l-footer__gnavItem {
    width: 100%;
    margin-left: 0;
  }
  .l-footer--recruit .l-footer__gnavItem--btn .m-button {
    margin-top: 0;
  }
  .l-footer--recruit .l-footer__gnavLink {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 16px 16px;
    font-weight: 700;
  }
  .l-footer--recruit .l-footer__gnavLink .m-arrow {
    display: inline-block;
  }
  .l-footer .js-toggle__switch {
    cursor: pointer;
  }
  .l-footer .js-toggle__next {
    display: none;
  }
  .l-footer .m-hide--pc {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .l-footer .m-hide--sp {
    display: none;
  }
  .l-footer .m-arrow--grey {
    display: inline-block;
  }
  .l-footer .m-button {
    margin-top: 0;
  }
  .l-footcontact__split:nth-of-type(1) {
    top: -30%;
  }
  .l-footcontact__contactDoboz {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .l-footcontact__contactLetterTel {
    align-items: flex-start;
    flex-direction: column;
  }
  .l-footcontact__contact .m-link {
    align-self: flex-start;
    margin-top: 24px;
  }
  .l-anchor {
    margin-top: -56px;
  }
  .l-services__typeMain {
    top: 50px;
    padding-left: 20px;
  }
  .l-services__typeLabel {
    font-size: 11px;
  }
  .l-services__typeTit {
    font-size: 28px;
  }
  .l-services .m-arrow {
    margin-right: 20px;
  }
  .m-pagetop {
    width: 80px;
    height: 80px;
    top: -40px;
    bottom: 0;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
  }
  .m-button--whiteborder {
    width: 100%;
    margin-top: 24px;
  }
  .a-work__mainUnitNum {
    font-size: 36px;
    padding-right: 15px;
    padding-block: 10px;
  }
  .a-work__mainUnitTit {
    font-size: 18px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .l-header__megamenu {
    display: none;
  }
  .l-products__unit {
    gap: 56px 1.875vw;
  }
  .l-products__unitHeading {
    font-size: 18px;
  }
  .l-products__unitList {
    justify-content: space-between;
    gap: 1.875vw;
  }
  .l-products__unitItem {
    width: 21.09375vw;
  }
  .l-products__unitTxt {
    font-size: 14px;
  }
  .a-overview__inner {
    width: 94.0625vw;
  }
  .a-overview__main {
    width: 51.384083045%;
    margin-top: 2.8125vw;
  }
  .a-overview__mainTxt {
    font-size: 3.359375vw;
    margin-top: 3.828125vw;
  }
  .a-overview__mainTxt--small {
    font-size: 2.1875vw;
    margin-top: 2.5vw;
  }
  .a-overview__img {
    width: 40.3114186851%;
  }
  .a-features__inner {
    width: 94.0625vw;
  }
  .a-features__main {
    width: 51.384083045%;
    margin-top: 2.8125vw;
  }
  .a-features__mainTxt {
    font-size: 3.359375vw;
    margin-top: 3.828125vw;
  }
  .a-features__img {
    width: 40.3114186851%;
  }
  .a-work__main {
    width: 90.3125vw;
    margin-top: 50px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 840px) {
  .l-footcontact__contact {
    height: 600px;
  }
}
