/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root {
  --header-height: 14rem;
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px; /* ensure 1rem = 10px on small screens */
  }
}

body {
  font-family: "Noto Sans";
  font-weight: normal;
  color: #0B0B0B;
  padding-top: 8rem;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 7rem;
  }
}

@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .page .l-header__contact-bar{
    display: none;
  }
}

img {
  width: 100%;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #0B0B0B;
  transition: opacity 0.3s ease;
}

.sp-block{ display: none; }
.pc-block{ display: block; }

@media screen and (max-width: 768px) {
  .sp-block{ display: block; }
  .pc-block{ display: none; }
}

/* 初期状態：少し下＋透明 */
.js-fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示状態：元の位置＋不透明 */
.js-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section__text{
  font-size: 2rem;
}


.-intro_text{
  margin: 4rem auto 8rem!important;
}

@media screen and (max-width: 768px) {
  .-intro_text{
    margin: 4rem auto 5rem!important;
  }

  .section__text{
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

/* anchor targets should clear the fixed header */
section[id],
h1[id],
h2[id],
h3[id],
h4[id],
h5[id],
h6[id] {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
.l-header {
  background-color: #232325;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 14rem;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
.l-header {
  width: 100%;
  height: 7rem;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
}
}

.l-header__wedge {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40.6rem;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 95% 0, 79.5% 100%, 0% 100%);
  clip-path: polygon(0 0, 95% 0, 79.5% 100%, 0% 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 4rem;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .l-header__wedge {
    width: 193.5px;
    padding-left: 0.9rem;
    position: absolute;
    z-index: 1;
    -webkit-clip-path: polygon(0 0, 95% 0, 78.5% 100%, 0% 100%);
    clip-path: polygon(0 0, 95% 0, 78.5% 100%, 0% 100%);
  }
}

@media screen and (max-width: 390px) {
  .l-header__wedge {
    width: 192.5px;
  }
}

.l-header__logo {
  margin: 0;
  position: relative;
  z-index: 2;
}

.l-header__logo a {
  display: block;
  transition: opacity 0.3s ease;
}

.l-header__logo a:hover{
  opacity: 0.7;
}

.l-header__logo img {
  width: 27.4rem;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-header__logo img {
    width: 139px;
    position: relative;
    top: 3px;
  }
}

.l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  width: 100%;
  padding: 0 24rem 0 42.6rem;
  position: relative;
  z-index: 2;
  gap: 10rem;
}

.lang-en .l-header__container{
	gap: 4rem;
}

@media screen and (max-width: 768px) {
  .l-header__container {
    padding: 0 16px 0 210px;
    position: relative;
    z-index: 2;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.4rem;
  margin: 0;
  padding: 0;
}

.lang-en .l-header__nav-list{
	gap: 2.4rem;
}

@media screen and (max-width: 1620px) {
  .l-header__nav-list {
    gap: 4rem;
  }
}

.l-header__nav-list li {
  list-style: none;
}

.l-header__nav-list a {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  position: relative;
  line-height: 6;
  cursor: pointer;
}

.lang-en .l-header__nav-list a{
	font-size: 1.8rem;
	line-height: 7;
}

.l-header__nav-list a::before{
  transition: opacity 0.3s ease;
}

.l-header__nav-list a:hover::before{
  content: "";
  display: block;
  background: #FA4738;
  width: 100%;
  height: 7px;
  position: absolute;
  bottom: -3.5px;
}

.l-header__nav-list li.recruit a{
  position: relative;
}

.l-header__nav-list li.recruit a::after{
  content: "";
  display: block;
  background: url(../img/common/tab_icon.svg) no-repeat center;
  position: absolute;
  width: 2.4rem;
  height: 2.3rem;
  right: -3.8rem;
  background-size: 100%;
}

.lang-en .l-header__nav-list li.recruit a::after{
	background-size: 60%;
	right: -2.8rem;
}

.l-header__nav-list a.external-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
}

.icon-external {
  width: 1.6rem;
  height: 1.6rem;
}

.l-header__utilities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
}

@media screen and (max-width: 768px) {
  .l-header__utilities {
    display: none;
  }
}

.l-header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}

.l-header__social img {
  width: 3.4rem;
  height: auto;
}

.l-header__search-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.7;
}

.l-header__search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__search-icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .l-header__search-icon {
    left: 0;
    top: 50%;
  }
	
	.l-header__search-form{
		width: 100%;
	}
}

.l-header__search input {
  background-color: #fff;
  border: none;
  height: 5.4rem;
  width: 23rem;
  padding: 0 1.2rem 0 4.8rem;
  font-size: 1.4rem;
  color: #232325;
  outline: none;
  position: relative;
  font-size: 2rem;
}

.l-header__search-submit {
    width: 24px;
    height: 24px;
	cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
	z-index: 2;
	position: absolute;
    left: 1.7rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.l-header__search-submit:hover{
	opacity: 0.6;
}

@media screen and (max-width: 1620px) {
  .l-header__search input {
    width: 20rem;
  }
}

@media screen and (max-width: 768px) {
  .l-header__search input {
    width: 100%;
    height: 5rem;
    margin-bottom: 4.8rem;
    border: 1px solid #ccc;
    padding: 0 1.2rem 0 5.2rem;
    margin-bottom: 2.4rem;
	  font-size: 1.6rem;
  }
	
	.l-header__search-submit{
		top: 34%;
	}
}

.l-header__search input::-webkit-input-placeholder {
  color: #999;
}

.l-header__search input::-moz-placeholder {
  color: #999;
}

.l-header__search input:-ms-input-placeholder {
  color: #999;
}

.l-header__search input::-ms-input-placeholder {
  color: #999;
}

.l-header__search input::placeholder {
  color: #999;
}

.l-header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: none;
  border-radius: 9999px;
  width: 11rem;
  height: 5rem;
  padding: 0 0.4rem;
  cursor: pointer;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-header__lang.-en{
	flex-direction: row-reverse;
}

.l-header__lang.sp-block{
  display: none;
}

@media screen and (max-width: 768px) {

  .l-header__lang.sp-block{
    display: block;
  }
  .l-header__lang {
    position: relative;
    right: 13rem;
    width: 78px;
    height: 3rem;
  }

  .page .l-header__lang{
      position: absolute;
      right: 7rem;
      width: 60px;
      height: 3rem;
  }
}

.l-header__lang-knob {
  width: 3.7rem;
  height: 3.7rem;
  background-color: #0016D9;
  border-radius: 50%;
  position: absolute;
  left: 0.6rem;
}

@media screen and (max-width: 768px) {
  .l-header__lang-knob {
    width: 2.2rem;
    height: 2.2rem;
    top: 4px;
  }
}

.l-header__lang-text {
  color: #0B0B0B;
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  right: 1.6rem;
}

.l-header__lang.-en .l-header__lang-text{
	right: auto;
	left: 2.6rem
}

.l-header__lang.-en .l-header__lang-knob{
	right: 0.6rem;
	left: auto;
}

@media screen and (max-width: 768px) {
  .l-header__lang-text {
    font-size: 1.2rem;
    right: 0.6rem;
    top: 7px;
  }

  .page .l-header__lang-text{
      font-size: 1.4rem;
      right: 0.8rem;
      top: 5px;
  }
	
	.lang-en .l-header__lang-text{
		right: auto;
        left: 0.8rem;
	}
	
	.lang-en .l-header__lang-knob{
		left: auto;
		right: 0.6rem;
	}
}

.l-header__contact-bar.pc-block {
  position: fixed;
  right: 2rem;
  top: 4.3rem;
  width: 19.2rem;
  height: 5.4rem;
  line-height: 5.4rem;
  color: #fff;
  background-color: #FA4738;
  text-decoration: none;
  z-index: 100000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 2.2rem;
  padding-left: 2rem;
}

.page .l-header__contact-bar.pc-block{
  display: none;
}


.l-header__contact-bar.pc-block::after{
  content: "";
  display: block;
  background: url(../img/common/arrow_white.svg) no-repeat;
  width: 1.7rem;
  height: 1.2rem;
  background-size: 100%;
  position: absolute;
  right: 1.1rem;
  top: 2.1rem;
}

@media screen and (max-width: 768px) {

  .l-header__contact-bar.pc-block{
    display: none;
  }

  .l-header__contact-bar {
    position: fixed;
    right: 0;
    top: 0;
    width: 8rem;
    height: 14rem;
    background-color: #FA4738;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.6rem;
    text-decoration: none;
    z-index: 100000;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-header__contact-bar {
    height: 7rem;
    width: 7rem;
    gap: 0.6rem;
  }
}

.l-header__contact-bar:hover {
  background-color: #FB7B71;
}

.l-header__contact-bar svg {
  width: 2.4rem;
  height: 2.4rem;
}

.l-header__contact-bar span {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Oswald";
}

.l-header__contact-bar img {
  width: 4rem;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-header__contact-bar img{
    width: 3rem;
  }
}

/*------------------------------------------------------------------------------
  header mega menu (desktop)
------------------------------------------------------------------------------*/
.l-header__nav-mega{
  position: relative;
}

.mega-menu{
  position: absolute;
  left: 0;
  top: 13.6rem;
  width: fit-content;
  background-color: #F5F7FB;
  display: none;
  z-index: 99997;
  padding: 4rem;
}

.l-header__nav-list li:nth-child(2) .mega-menu{
  width: 40rem;
}

.has-mega:hover > .mega-menu,
.has-mega:focus-within > .mega-menu{
  display: block;
}

.mega-menu__col--brand{
  width: 23.7%;
  max-width: 410px;
}


.mega-menu__container{
  display: flex;
  gap: 4rem;
  flex-direction: column;
}

.mega-menu__brand-title{
  font-family: "Oswald";
  font-size: 7rem;
  font-weight: 700;
  margin: 4.8rem 0 0 0;
  text-align: center;
}

.mega-menu__brand-sub{
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0;
  text-align: center;
}

.mega-menu__link--primary{
  color: #0B0B0B!important;
  display: block!important;
  font-size: 2.4rem!important;
  font-weight: 600!important;
  text-decoration: underline!important;
  line-height: 1!important;
  transition: opacity 0.3s ease;
  margin-bottom: 4rem;
}

.mega-menu__heading{
  margin-bottom: 2.4rem;
}

.mega-menu__link--primary:last-of-type{
  margin-bottom: 0;
}

.mega-menu__link--primary:hover{
  text-decoration: none!important;
}

.mega-menu__link--primary::before{
  display: none!important;
}

.mega-menu__heading{
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.mega-menu__list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-header__nav-mega:nth-child(3) .mega-menu__list{
  margin-top: 3.2rem;
}

.mega-menu__list a{
  color: #0B0B0B!important;
  display: inline-block;
  font-weight: 400!important;
  font-size: 2.2rem;
  text-decoration: underline;
  line-height: 1!important;
  margin-bottom: 3.2rem;
  margin-left: 3.2rem;
  position: relative;
  transition: opacity 0.3s ease;
}

.mega-menu__list a.-last{
  margin-bottom: 0;
}

.mega-menu__list a:last-child .mega-menu__list a{
  margin-bottom: 0!important;
}

.mega-menu__list a:hover{
  text-decoration: none!important;
}

.mega-menu__list a::before{
  display: none!important;
}

.mega-menu__list a::after{
  content: "";
  display: block;
  background-color: #0B0B0B;
  width: 1.4rem;
  height: 1px;
  position: absolute;
  left: -3.2rem;
  top: 50%;
}

@media screen and (max-width: 768px){
  .mega-menu{
    display: none !important;
  }
}

/*------------------------------------------------------------------------------
  mobile menu
------------------------------------------------------------------------------*/
.l-header__menu-toggle {
  display: none;
  position: fixed;
  right: 7rem;
  top: 0;
  width: 6rem;
  height: 7rem;
  border: none;
  cursor: pointer;
  z-index: 100000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  background-color: #232325;
}

.page .l-header__menu-toggle{
  right: 0;
}

@media screen and (max-width: 768px) {
  .l-header__menu-toggle {
    display: flex;
  }
}

.l-header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 3.5rem;
  height: 3rem;
}

.l-header__menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.l-header__menu-toggle[aria-expanded="true"] .l-header__menu-icon span:nth-child(1) {
  transform:rotate(45deg) translate(1rem, 0.9rem);
}

.l-header__menu-toggle[aria-expanded="true"] .l-header__menu-icon span:nth-child(2) {
  opacity: 0;
}

.l-header__menu-toggle[aria-expanded="true"] .l-header__menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.l-header__menu-text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Oswald";
  line-height: 1;
}

.l-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99998;
  display: none;
  overflow-y: auto;
}

.l-mobile-menu.is-active {
  display: block;
}

.l-mobile-menu__overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh; /* 全画面の高さ */
  overflow-y: auto; /* ここがポイント */
  background: #F5F7FB;
  margin-top: 7rem;
  min-height: calc(100vh - 7rem);
  z-index: 1;
}

.l-mobile-menu__content {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 4rem 2rem 20rem;
}

.l-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-mobile-menu__list > li {
  border-bottom: 1px solid #CCCCCC;
}

.l-mobile-menu__list > li:first-child {
  border-top: 1px solid #CCCCCC;
}

.l-mobile-menu__list a {
  display: block;
  padding: 1.8rem 1.8rem 1.8rem 0;
  color: #0B0B0B;
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-right: 4rem;
}

.l-mobile-menu__list.-last a{
  font-weight: 400;
}

.l-mobile-menu__list.-last  > li:first-child{
  border-top: none;
}

.l-mobile-menu__list a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1rem;
  background: url(../img/index/arrow_black.svg) no-repeat center;
  background-size: contain;
}
.l-mobile-menu__list a.-recruit::after{
  display: none;
}

.l-mobile-menu__list a.-recruit::before{
  content: "";
  display: block;
  background: url(../img/common/tab_icon_black.svg) no-repeat center;
  width: 1.2rem;
  height: 1.2rem;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 2.4rem;
}

.l-mobile-menu__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem  0 2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #0B0B0B;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: inherit;
}

.l-mobile-menu__toggle span:first-child {
  flex: 1;
}

.l-mobile-menu__icon {
  position: relative;
}

.l-mobile-menu__icon::before,
.l-mobile-menu__icon::after{
  content: "";
  display: block;
  width: 1.2rem;
  height: 1px;
  background-color: #0B0B0B;
  line-height: 1;
  transition: transform 0.3s ease;
  position: absolute;
  right: 0;
}

.l-mobile-menu__icon::after{
  transform: rotate(90deg);
}

.l-mobile-menu__toggle[aria-expanded="true"] .l-mobile-menu__icon::after {
  transform: rotate(0deg);
}

.l-mobile-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}

.l-mobile-menu__toggle[aria-expanded="true"] + .l-mobile-menu__sub {
  display: block;
}


.l-mobile-menu__sub a {
  padding-left: 4rem;
  font-size: 1.3rem;
  padding: 0 0 1.8rem 1.8rem;
  position: relative;
  font-weight: 400;
}

.l-mobile-menu__sub a::before{
  content: "";
  display: block;
  background: #0B0B0B;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  top: 0.9rem;
  position: absolute;
  left: 0.4rem;
}

.l-mobile-menu__sub a::after{
  display: none;
}

.solution{
  padding: 0 0 0 1.8rem;
}

.solution .l-mobile-menu__toggle{
  font-weight: 400;
  font-size: 3rem;
  position: relative;
}

.solution .l-mobile-menu__toggle::before{
    content: "";
    display: block;
    background: #0B0B0B;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    top: 0.9rem;
    position: absolute;
    left: -1.3rem;
}



.l-mobile-menu__sub .l-mobile-menu__sub a {
  padding-left: 6rem;
}

.l-mobile-menu__sub .l-mobile-menu__toggle {
  font-size: 1.3rem;
  padding-top: 0;
}

.l-mobile-menu__sub .l-mobile-menu__sub .l-mobile-menu__toggle {
  padding-left: 6rem;
}

@media screen and (min-width: 769px) {
  .l-mobile-menu {
    display: none !important;
  }
}

.l-mobile-menu__sub.-sub02 li a{
  padding-left: 0;
}

.l-mobile-menu__sub.-sub02 li a::before{
  display: none;
}

.l-mobile-menu__sub a.-padding{
  padding-left: 2rem;
}

.l-mobile-menu__sub a.-padding::before{
  display: none;
}

.contact_btn{
  width: 100%;
  margin: 4rem 0;
}

.contact_btn a{
  display: block;
  padding: 1.4rem 0;
  background-color: #FA4738;
  border-radius: 3rem;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  position: relative;
}

.contact_btn a::after{
  content: "";
  display: block;
  background: url(../img/common/arrow_white.svg) no-repeat center;
  width: 1.8rem;
  height: 1rem;
  position: absolute;
  background-size: 100%;
  right: 1.5rem;
  top: 2.2rem;
}

.l-header .sns_icon{
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 6rem 0 1.8rem;
}


/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
.l-footer {
  background: #232325;
  width: 100%;
  color: #fff;
  padding: 10rem 0 0;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 4rem 0 0;
  }

  .l-footer .flex{
    display: flex;
    flex-direction: column-reverse;
    gap: 4.8rem;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 10rem;
  border-bottom: 1px solid #CCCCCC;
  gap: 5.3rem;
  padding: 0 8rem 4.8rem;
}

@media screen and (max-width: 768px) {
  .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.4rem;
    padding: 0 0 4rem;
    margin: 0;
    margin: 0 2rem;
    border-bottom: none;
  }
}

.l-footer__nav-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-footer__nav-title a{
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 1.8rem 0;
  padding-bottom: 1.8rem;
  border-bottom: 2px solid #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  letter-spacing: 0.1em;
  color: #fff;
  transition: opacity 0.3s ease;
}

.lang-en .l-footer__nav-title a{
	font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .l-footer__nav-title a{
    font-size: 1.4rem;
    padding: 0 0 1.8rem 0;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid #ccc;
}
  a.border{
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #545454;
    padding-top: 1.8rem;
  }
	
	.lang-en .l-footer__nav-title a{
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 768px) {
  .l-footer__nav-title {
    font-size: 1.2rem;
  }
}

.l-footer__nav-title.recruit a{
  position: relative;
}

.l-footer__nav-title.recruit a::after{
  content: "";
    display: block;
    background: url(../img/common/tab_icon.svg) no-repeat center;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 0;
    left: 14rem;
    background-size: 100%;
}

.lang-en .l-footer__nav-title.recruit a::after{
	left: auto;
	right: 0;
}

@media screen and (max-width: 768px) {
  .l-footer__nav-title.recruit a::after{
    width: 1.4rem;
    left: 95%;
  }
}

.l-footer__nav-title a:hover{
  opacity: 0.5;
}

.l-footer__nav-title--mt {
  margin-top: 1.8rem;
}

@media screen and (max-width: 768px) {
  .l-footer__nav-title--mt {
    margin-top: 24px;
  }
}

.l-footer__nav-title .arrow-icon {
  width: 3rem;
  height: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  top: -8px;
}

@media screen and (max-width: 768px) {
  .l-footer__nav-title .arrow-icon {
    width: 1.4rem;
    top: 0;
  }
}

.l-footer__nav-title .icon-external {
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-footer__nav-list li {
  margin-bottom: 1.8rem;
}

@media screen and (max-width: 768px) {
  .l-footer__nav-list li {
    margin-bottom: 1.8rem;
  }
}

.l-footer__nav-list a {
  color: #fff;
  font-size: 2.2rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-decoration: underline;
  height: 6.5rem;
  letter-spacing: 0.1em;
}

.l-footer__nav-list .bordernone a{
  text-decoration: none;
}

.l-footer__nav-list a:hover {
  text-decoration: none;
  opacity: 0.5;
}

.l-footer__nav-title a.product:hover{
  opacity: 1;
}

.l-footer__nav-list .bordernone a:hover{
  opacity: 1;
}

.l-footer__nav-list a.margin_left{
  margin-left: 1.5rem;
}

@media screen and (max-width: 768px) {
  .l-footer__nav-list a {
    font-size: 13px;
  }
}

.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 4.8rem 8rem 9.4rem;
}


@media screen and (max-width: 768px) {
  .l-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.4rem;
    padding: 0 2rem;
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.l-footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  align-items: flex-end;
  gap: 3.2rem;
}

@media screen and (max-width: 768px) {
  .l-footer__company {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

.l-footer__logo {
  width: 32.8rem;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 135px;
  }
}

.footer_logo a{
  display: block;
  transition: opacity 0.3s ease;
}

.footer_logo a:hover{
  opacity: 0.7;
}

.l-footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}

.l-footer__phone,
.l-footer__address {
  margin: 0;
  font-size: 2.2rem;
  color: #fff;
  line-height: 4.6rem;
  letter-spacing: 0.1em;
}

.l-footer__social img{
  width: 6rem;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-footer__phone,
  .l-footer__address {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .l-footer__social img{
    width: 3.2rem;
    height: auto;
  }
}

.l-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
}

@media screen and (max-width: 768px) {
  .l-footer__social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2rem;
  }
}

.l-footer__social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-footer__social-icon:hover {
  opacity: 0.7;
}

.l-footer__social-icon svg {
  width: 4.8rem;
  height: 4.8rem;
}

@media screen and (max-width: 768px) {
  .l-footer__social-icon svg {
    width: 36px;
    height: 36px;
  }
}

  .sns_flex{
    display: flex;
    gap: 1.4rem;
  }

.l-footer__social-link {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 0.8rem;
  line-height: 4rem;
  letter-spacing: 0.1em;
}

.l-footer__social-link:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .l-footer__social-link {
    font-size: 1.4rem;
    margin-left: 0;
  }
}

.l-footer__social-link .arrow-icon img{
  width: 2.9rem;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-footer__social-link .arrow-icon img{
    width: 1.4rem;
    height: auto;
  }
}

.l-footer_img{
  text-align: center;
  position: relative;
  background-color: #fff;
}

.l-footer_img::after{
  content: "";
  display: block;
  background: url(../img/common/center_logo.svg) no-repeat center;
  width: 60rem;
  height: 9rem;
  background-size: 100%;
  position: absolute;
  left: calc(50% - 30rem);
  transform: translateX(-50%);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.foooter_movie{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 35rem;
    background-color: #fff;
}

.l-footer_img video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.page .l-footer_img{
  display: none;
}

@media screen and (max-width: 768px) {
  .foooter_movie.sp-block{
    height: 17.5rem;
  }

  .l-footer_img video{
    width: 100%;
    height: 17.5rem;
    object-fit: cover;
  }

  .l-footer_img::after{
    width: 30rem;
    height: 4.5rem;
    background-size: 100%;
    left: calc(50% - 15rem);
  }
}

.l-footer_copyright{
  background-color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  padding: 2.7rem 0;
  font-family: "Oswald";
  color: #0B0B0B;
}

@media screen and (max-width: 768px) {
  .l-footer_copyright{
    font-size: 1.2rem;
    padding: 1.4rem 0;
  }
}

/*------------------------------------------------------------------------------
  page TO TOP
------------------------------------------------------------------------------*/
.grecaptcha-badge {
	bottom: 15rem !important;
}

@media screen and (max-width: 768px) {
	.grecaptcha-badge {
	bottom: 10rem !important; 
}
}

/* 初期状態は非表示に */
.pagetop {
  width: 6rem;
  height: 6rem;
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  scroll-behavior: smooth;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .pagetop {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.pagetop.is-active {
  opacity: 1;
  visibility: visible;
}

.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-align: center;
  line-height: 6rem;
  border: 1px solid #0016D9;
  background: url(../img/common/pagetop.svg) #0016D9 no-repeat center;
  transition: opacity 0.3s ease;
}

.pagetop a:hover{
  background: url(../img/common/pagetop_blue.svg) #fff no-repeat center;
  border: 1px solid #0016D9;
}

/* Cookie同意バナー */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 20px;
	box-sizing: border-box;
	z-index: 100;
	visibility: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  .cookie-consent.is-show {
	visibility: visible;
  }
  .cookie-content {
	max-width: 1100px;
	margin: 0 auto;
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  .cookie-text {
	color: #ffffff;
	font-size: 2rem;
	line-height: 3.6rem;
    display: inline-block;
  }
  .cookie-agree {
	background-color: #ffffff;
	color: #000000;
	border: none;
	padding: 16px 30px;
	font-size: 2.4rem;
	cursor: pointer;
	flex-shrink: 0;
	font-weight: 600;
	max-width: 150px;
	width: 100%;
  }
  .cookie-agree:hover {
	color: #fff;
	background-color: #FA4738;
  }
  .cookie-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 2rem;
	cursor: pointer;
}
.cookie-link:hover {
	text-decoration: underline;
	color: #e0e0e0;
  }
  /* パッと消える */
  .cc-hide1 {
	display: none;
  }
  /* ゆっくり消える */
  .cc-hide2 {
	animation: hide 1s linear 0s;
	animation-fill-mode: forwards;
  }
  @keyframes hide {
	from {
	  opacity: 1;
	}
	to {
	  opacity: 0;
	  visibility: hidden;
	}
  }
  /* メディアクエリ */
  @media screen and (max-width: 768px) {
	.cookie-consent {
		padding: 20px;
		flex-direction: column;
		align-items: flex-start;
	}
	.cookie-content {
		font-size: 1.4rem;
		width: 100%;
		flex-direction: column;
		gap:2.2rem;
	}
	.cookie-agree {
		max-width: 195px;
		width: 100%;
		padding: 12px;
		margin: 0 auto;
		font-size: 1.4rem;
	}
	.cookie-text {
	  font-size: 1.4rem;
	  line-height:24px;
	}
	.cookie-link {
		font-size: 1.4rem;
	}
  }
