@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?20258310);
}
.l-footcontact__recruit:hover .m-arrow--white:after {
  content: "";
  background-image: url(../img/global/arrow.svg?20258310);
}
.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?20258310);
  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?20258310);
}
.l-footcontact__contact .m-link:hover .m-arrow--white:after {
  content: "";
  background-image: url(../img/global/arrow.svg?20258310);
}

/*============================
.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?20258310);
}
.m-button__link:hover .m-arrow:after {
  content: "";
  background-image: url(../img/global/arrow.svg?20258310);
}
.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?20258310);
}
.m-button--white .m-button__link:hover .m-arrow:after {
  content: "";
  background-image: url(../img/global/arrow--blue.svg?20258310);
}
.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?20258310);
  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?20258310);
}
.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?20258310);
  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?20258310);
}
.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?20258310) 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?20258310) 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?20258310);
}
.m-arrow--white:after {
  content: "";
  background-image: url(../img/global/arrow--blue.svg?20258310);
}
.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?20258310);
  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?20258310);
  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;
}

/*==========================
サービス詳細
.p-service
==========================*/
.p-service {
  overflow: hidden;
}
@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?20258310);
    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?20258310);
  }
  .m-tit--whitecenter:before {
    content: url(../img/global/sp-tit--whitecenter.svg?20258310);
    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?20258310);
  }
  .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;
  }
}
@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;
  }
}
