:root {
  --main: #0c4bbc;
  --primary: #0c4bbc;
  --blue-dark: #0c4399;
  --blue-cta: #0053b2;
  --text: #111;
  --border: #ddd;
  --white: #fff;
  --pale-blue: #ebf1fa;
  --container: 1400px;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif CJK JP", serif;
  --font-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", Meiryo, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  background: var(--white);
}

body.is-menu-open {
  overflow: hidden;
}

h1 {
  display: block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

a:hover {
  opacity: 1;
}

.c-bg--before,
.c-bg--after{
  position: relative;
}
.c-bg--before::before,
.c-bg--after::after{
  content: '';
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

address {
  font-style: normal;
}

.c-skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 8px 16px;
  color: var(--text);
  background: var(--white);
  transform: translateY(-150%);
}

.c-skip-link:focus {
  transform: translateY(0);
}

.c-list-col2,
.c-list-col3 {
  display: flex;
  flex-wrap: wrap;
}

.c-list-col2 > * {
  width: calc((100% - 40px) / 2);
}

.c-list-col3 > * {
  width: calc((100% - 40px) / 3);
}

.c-title {
  font-family: var(--font-serif);
  /* font-weight: 300; */
  line-height: 1.2;
  letter-spacing: -.02em;
}

.c-section-heading {
  width: min(calc(100% - 40px), 1000px);
  margin-inline: auto;
  text-align: center;
}

.c-section-heading > p:not(.c-section-heading__lead) {
  font-size: 20px;
  line-height: 1.5;
}

.c-section-heading__lead {
  font-size: 20px;
  line-height: 2;
}

.c-section-heading--left {
  width: auto;
  margin: 0;
  text-align: left;
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 236px;
  min-width: 0;
  height: 64px;
  min-height: 0;
  margin: 0;
  padding: 0 50px 0 24px;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.4;
  background: transparent;
}

.c-button::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 9px;
  height: 16px;
  background: currentcolor;
  content: "";
  transform: translateY(-50%);
  -webkit-mask: url("../images/icon-arrow-button.svg") center / contain no-repeat;
  mask: url("../images/icon-arrow-button.svg") center / contain no-repeat;
}

.c-button--outline {
  color: var(--text);
}

.c-button--contact {
  color: var(--text);
  border-color: #ccc;
  background: transparent;
}

@media (hover: hover) {
  .c-button--outline:hover,
  .c-button--outline:focus-visible,
  .c-button--contact:hover,
  .c-button--contact:focus-visible {
    color: var(--white);
    border-color: var(--main);
    background: var(--main);
  }
}
@media(max-width: 767px){
	.c-button::after{
		right: 14px;
		width: 7px;
		height: 14px;
	}
}
/* ------------------------------
 * Header
 * ------------------------------ */
.l-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: transparent;
}

.l-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 120px;
  padding: 0 60px;
}

.l-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  /* font-weight: 300; */
  line-height: 1;
  width: 477px;
}

.l-header__logo img {
  position: relative;
}

.l-header__company {
  display: flex;
  align-items: baseline;
  margin-left: 20px;
  font-size: 34px;
  font-weight: 400;
  white-space: nowrap;
}

.l-header__company small {
  margin-right: 13px;
  font-size: 20px;
  /* font-weight: 300; */
}

.l-header__recruit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 38px;
  position: relative;
  top: 2px;
  margin-left: 20px;
  color: var(--white);
  border-radius: 5px;
  font-size: 15px;
  white-space: nowrap;
  background: var(--main);
}

.l-header__nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.l-header__nav ul {
  display: flex;
  align-items: center;
  height: 120px;
}

.l-header__nav li {
  position: relative;
}

.l-header__nav li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 22px;
  background: #707070;
  content: "";
  transform: translateY(-50%);
  opacity: 0.5;
}

.l-header__nav li > a {
  display: flex;
  align-items: center;
  height: 120px;
  padding: 0 28px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.l-header__cta {
  position: relative;
  display: flex;
  align-items: center;
  width: 270px;
  height: 60px;
  margin-left: 28px;
  padding: 0 30px;
  color: var(--white);
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  background: var(--blue-cta);
  justify-content: space-between;
  border: 1px solid transparent;
}


.l-header__cta::after {
  width: 20px;
  height: 20px;
  display: block;
  background-image: url('../images/common/ic-arr1-w.png');
}

.l-header__contact {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  width: 120px;
  height: 120px;
  color: var(--white);
  font-size: 14px;
  background: var(--blue-cta);
  padding-top: 6px;
}
.l-header__contact::before,
.l-header__contact i {
  content: '';
  position: relative;
  display: block;
  width: 28px;
  height: 20px;
  background-image: url('../images/common/ic-mail-w.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.l-header__contact i::before,
.l-header__contact i::after {
  position: absolute;
  top: 3px;
  width: 16px;
  height: 2px;
  background: var(--white);
  content: "";
}

.l-header__contact i::before {
  left: -1px;
  transform: rotate(32deg);
}

.l-header__contact i::after {
  right: -1px;
  transform: rotate(-32deg);
}

.l-header__menu-button {
  display: none;
}

.l-header.is-fixed {
  position: fixed;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.l-header.is-fixed .l-header__nav {
  display: flex;
}

.l-header.is-fixed .l-header__company small {
  margin-right: 13px;
}

.l-header.is-fixed .l-header__recruit {
  /* margin-left: 20px; */
}

.l-header.is-fixed .l-header__contact {
  display: none;
}


  .l-header__logo:hover,
  .l-header__logo:focus-visible {
    opacity: .5;
  }

  .l-header__nav li > a:hover,
  .l-header__nav li > a:focus-visible {
    color: var(--main);
  }

  .l-header__cta:hover,
  .l-header__cta:focus-visible {
    color: var(--blue-cta);
    background: var(--white);
    border-color: var(--blue-cta);
  }
  .l-header__cta:hover::after{
    background-image: url(../images/common/ic-arr1-blue.svg);
  }

@media(max-width: 1650px){
  .l-header__inner{
    padding: 0 20px;
  }
  .l-header__logo{
    width: 320px;
  }
  .l-header__nav li > a{
    padding: 0 15px;
  }
  .l-header__cta{
    width: 220px;
    font-size: 13px;
  }
}
/* ------------------------------
 * Footer
 * ------------------------------ */
.l-footer {
  color: var(--white);
  background: var(--blue-cta);
}

.l-footer__inner {
  display: flex;
  padding: 40px 0 60px;
  align-items: stretch;
}

.l-footer__company {
  width: 575px;
  padding-left: 31px;
  padding-top: 40px;
  /* height: 100%; */
}

.l-footer__logo {
  width: 473px;
  display: block;
}

.l-footer__company-name {
  display: flex;
  align-items: baseline;
  margin-left: 20px;
  font-size: 34px;
  font-weight: 400;
  white-space: nowrap;
}

.l-footer__company-name small {
  margin-right: 9px;
  font-size: 20px;
  font-weight: 300;
}

.l-footer__recruit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 38px;
  margin-top: 6px;
  margin-left: 20px;
  color: var(--blue-cta);
  border-radius: 5px;
  font-size: 15px;
  white-space: nowrap;
  background: var(--white);
}

.l-footer address {
  font-size: 18px;
  line-height: 2;
  white-space: nowrap;
  padding-left: 70px;
}

.l-footer__nav {
  width: 498px;
  padding-left: 69px;
  border-left: 1px solid rgba(255,255,255,.25);
  padding-top: 40px;
}

.l-footer__nav > p,
.l-footer__contact > p:first-child {
  position: relative;
  font-family: var(--font-serif);
  font-size: 22px;
  /* font-weight: 300; */
  line-height: 1;
}

.l-footer__nav > p::after,
.l-footer__contact > p:first-child::after {
  position: absolute;
  top: 47px;
  left: 0;
  width: 30px;
  height: 1px;
  background: #5ca7fe;
  content: "";
}

.l-footer__nav ul {
  display: flex;
  flex-flow: column wrap;
  align-content: flex-start;
  width: 100%;
  height: 144px;
  column-gap: 34px;
}

.l-footer__nav li {
  width: 180px;
  height: 48px;
}

.l-footer__nav a {
  font-size: 16px;
}

.l-footer__contact {
  /* flex: 1; */
  /* height: 100%; */
  padding-left: 49px;
  border-left: 1px solid rgba(255,255,255,.25);
  padding-top: 40px;
}

.l-footer__contact > p:first-child {
}
.l-footer__contact > a{
  display: block;
}
.l-footer__contact > a:hover{
  opacity: 0.5;
}
.l-footer__contact  .--phone {
  position: relative;
  display: block;
  padding-left: 40px;
  font-family: var(--font-serif);
  font-size: 42px;
  /* font-weight: 300; */
  line-height: 1.05;
  
}

.l-footer__contact  .--phone::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 34px;
  height: 34px;
  background: url("../images/icon-phone.svg") center / contain no-repeat;
  content: "";
}

.l-footer__contact > p:last-child {
  font-size: 18px;
}

.l-footer__copyright {
  /* height: 88px; */
  margin: 0;
  padding: 40px 0;
  color: var(--text);
  text-align: center;
  background: var(--white);
}

.l-footer__copyright small {
  font-size: 14px;
}

@media (hover: hover) {
  .l-footer a:hover,
  .l-footer a:focus-visible {
    opacity: .65;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .l-footer__nav ul {
    column-gap: 20px;
  }

  .l-footer__nav li {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 1199px) {
  html {
    scroll-padding-top: 76px;
  }

  .l-header,
  .l-header.is-fixed {
    position: fixed;
    height: 76px;
    background: var(--white);
  }

  .l-header__inner {
    height: 76px;
    padding: 0 20px;
  }

  .l-header__logo {
    width: min(46vw, 320px);
    min-width: 0;
  }

  .l-header__company {
    margin-left: 14px;
    font-size: 21px;
  }

  .l-header__company small {
    margin-right: 8px;
    font-size: 12px;
  }

  .l-header__recruit {
    top: 0;
    width: 100px;
    height: 30px;
    margin-left: 12px;
    font-size: 11px;
  }

  .l-header.is-fixed .l-header__company small {
    margin-right: 8px;
  }

  .l-header.is-fixed .l-header__recruit {
    margin-left: 12px;
  }

  .l-header__menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 56px;
    gap: 5px;
    width: 56px;
    height: 56px;
    margin-left: auto;
    padding-top: 10px;
    border: 0;
    background: transparent;
  }

  .l-header__menu-button i,
  .l-header__menu-button i::before,
  .l-header__menu-button i::after {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    content: "";
  }

  .l-header__menu-button i {
    position: relative;
  }

  .l-header__menu-button i::before,
  .l-header__menu-button i::after {
    position: absolute;
    left: 0;
  }

  .l-header__menu-button i::before {
    top: -8px;
  }

  .l-header__menu-button i::after {
    top: 8px;
  }

  .l-header__menu-button span {
    margin-top: 10px;
    font-size: 9px;
  }

  .l-header__nav,
  .l-header.is-fixed .l-header__nav {
    position: fixed;
    z-index: 1;
    top: 76px;
    right: -100%;
    bottom: 0;
    /* left: 0; */
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 24px 50px;
    background: rgba(255, 255, 255, .98);
    width: 100%;
    transition: all ease 0.4s;
  }
  .l-header__nav.is-open {
    /* display: flex !important; */
    right: 0 !important;
  }

  .l-header__nav ul {
    display: block;
    width: 100%;
    height: auto;
  }

  .l-header__nav li + li::before {
    display: none;
  }

  .l-header__nav li {
    /* border-bottom: 1px solid var(--border); */
  }

  .l-header__nav li > a {
    height: auto;
    padding: 18px 8px;
    font-size: 17px;
    justify-content: center;
  }

  .l-header__cta {
    width: min(100%, 320px);
    height: 58px;
    margin: 35px 0 0;
  }

  .l-header__contact {
    display: none;
  }

  .l-footer__inner {
    flex-wrap: wrap;
    gap: 45px 32px;
    padding: 55px 40px;
  }

  .l-footer__company,
  .l-footer__nav,
  .l-footer__contact {
    min-width: 0;
    height: auto;
    margin-left: 0;
    padding: 0;
    border-left: 0;
  }

  .l-footer__company {
    flex: 1 1 320px;
    width: auto;
  }

  .l-footer__logo {
    width: min(100%, 360px);
  }

  .l-footer address {
    padding-left: 0;
  }

  .l-footer__nav {
    flex: 1 1 280px;
    width: auto;
  }

  .l-footer__nav ul {
    flex-flow: row wrap;
    height: auto;
    gap: 18px 28px;
  }

  .l-footer__nav li {
    width: calc((100% - 28px) / 2);
    height: auto;
  }

  .l-footer__contact {
    flex: 1 1 300px;
  }

  .l-footer__company-name {
    font-size: 26px;
  }

  .l-footer__company-name small {
    font-size: 15px;
  }

  .l-footer__recruit {
    width: 120px;
    margin-left: 12px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .c-section-heading {
    width: calc(100% - 40px);
  }

  .c-section-heading > p:not(.c-section-heading__lead) {
    font-size: 13px;
  }

  .c-section-heading__lead {
    font-size: 13px;
  }

  .c-list-col2 > *,
  .c-list-col3 > * {
    width: 100%;
  }

  .l-header__inner {
    padding: 0 12px 0 16px;
  }

  .l-header__logo {
    width: calc(100% - 68px);
    max-width: 280px;
  }

  .l-header__company {
    margin-left: 9px;
    font-size: 17px;
  }

  .l-header__company small {
    display: none;
  }

  .l-header__recruit {
    display: none;
  }

  .l-footer__inner {
    padding: 60px 0;
  }

  .l-footer__company,
  .l-footer__contact {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
	.l-footer__nav{
		display: none;
	}
	.l-footer__company{
		order:2;
		border-top: 1px solid #fff;
		padding-top: 60px;
	}
.l-footer__contact > p:first-child{
	text-align: center;
	font-size: 16px;
}
	.l-footer__contact > a{
		text-align: center;
	}
	.l-footer__contact > a > p{
		font-size: 12px;
	}
	.l-footer__nav > p::after, .l-footer__contact > p:first-child::after{
		margin: 20px auto 0;
		position: relative;
		top: 0;
		display: block;
		left: 0;
	}
  .l-footer__logo {
    width: 100%;
  }

  .l-footer__logo img {
    width: 100%;
    max-width: 220px;
    margin: auto;
  }

  .l-footer__company-name {
    margin-left: 16px;
    font-size: 22px;
  }

  .l-footer__company-name small {
    margin-right: 8px;
    font-size: 12px;
  }

  .l-footer__recruit {
    width: 102px;
    height: 30px;
    font-size: 11px;
  }

  .l-footer address {
    padding-left: 0;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  .l-footer__nav ul {
    gap: 16px 20px;
  }

  .l-footer__nav li {
    width: calc((100% - 20px) / 2);
  }

  .l-footer__contact .--phone {
    padding-left: 36px;
    font-size: 32px;
    text-align: center;
    display: inline-block;
  }

  .l-footer__contact .--phone::before {
    top: 1px;
    width: 28px;
    height: 28px;
  }

  .l-footer__contact > p:last-child {
    font-size: 14px;
  }

  .l-footer__copyright {
    min-height: 0;
    padding: 21px 15px;
  }

  .l-footer__copyright small {
    font-size: 10px;
  }
}


/* SCROLLDOWN */
.c-scrolldown {
  position: fixed;
  background-color: #fff;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  bottom: 50px;
  right: 50px;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all ease 0.7s;
  z-index: 4;
}
.hide .c-scrolldown{
  right: -100%;
}
.c-scrolldown::before{
  background-image: url('../images/common/ic-arr-downb.png');
  width: 20px;
  height: 11px;
  margin-bottom: 5px;
  transition: all ease 0.4s;
}
.c-scrolldown span{
  display: block;
  width: 100%;
  color: #111;
  font-size: 10px;
}
.c-scrolldown.toTop::before{
  transform: rotate(180deg);
}

@media(max-width: 1024px){
  .c-scrolldown{
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
  }
  .c-scrolldown::before{
    width: 18px;
    height: 8px;
  }
}
@media(max-width: 768px){
  .c-scrolldown{
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
    align-content: center;
  }
	.c-scrolldown span{
		font-size: 8px;
		line-height: 1.2;
	}
	.c-scrolldown::before{
		margin-bottom: 5px;
		width: 15px;
		height: 5px;
	}
}
/* END SCROLLDOWN */
/* ------------------------------
 * Contact CTA
 * ------------------------------ */
.p-contact {
  position: relative;
  height: 480px;
   background: url("../images/top/bg3.png") center / cover no-repeat;
}

.p-contact__image {
  position: absolute;
  top: -140px;
  left: -32px;
  width: 1202px;
  height: 651px;
  overflow: visible;
}

.p-contact__image::after {
  position: absolute;
  top: 139px;
  left: 349px;
  width: 853px;
  height: 480px;
  background: linear-gradient(to top left, #f0f5fb 0%, rgba(255,255,255,0) 100%);
  content: "";
}

.p-contact__image img {
  display: block;
  width: 1158px;
  height: 651px;
  max-width: none;
  object-fit: fill;
  transform: scaleX(-1);
}

.p-contact__content {
  position: relative;
  z-index: 1;
  width: 880px;
  margin-left: auto;
  color: var(--text);
}

.p-contact__content h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  /* font-weight: 300; */
  line-height: 1.42;
}

.p-contact__content h2 span {
  color: var(--main);
}

.p-contact__content > p {
  width: 525px;
  min-height: 87px;
  padding: 13px 26px;
  color: var(--main);
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.9;
  background: rgba(12,75,188,.1);
}

.p-contact__buttons {
  display: flex;
  gap: 18px;
}

.p-contact .c-button--contact {
  border-color: #ccc;
  background: transparent;
}
.p-contact .c-button--contact:hover{
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
}
@media (max-width: 1199px) {
  .p-contact {
    height: auto;
  }
   .p-contact {
    overflow: hidden;
  }

  .p-contact__image {
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }

  .p-contact__image::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(240,245,251,.85) 0%, rgba(255,255,255,0) 65%);
  }

  .p-contact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .p-contact__content {
    width: 50%;
    margin-left: auto;
    padding: 70px 40px;
  }

  .p-contact__content h2 {
    font-size: clamp(30px, 3.4vw, 38px);
  }

  .p-contact__content > p {
    width: 100%;
  }

  .p-contact__buttons {
    gap: 12px;
  }
}
@media(max-width: 767px){
   .p-contact__buttons {
    gap: 12px;
    order: 1;
	
  }
	.p-contact .c-button--contact{
		font-size: 11px;
		height: 50px;
		border-radius: 20px;
		padding: 0 30px 0 15px;
	}
	.p-contact .c-button--contact::after {
        right: 14px;
        width: 7px;
        height: 14px;
    }
  .p-contact__image {
    width: 100%;
    height: 260px;
  }

  .p-contact__image::after {
    background: linear-gradient(0deg, #f0f5fb 0%, rgba(255,255,255,0) 85%);
  }

  .p-contact__image img {
    transform: none;
  }

  .p-contact__content {
    width: 100%;
    flex-direction: column;
    display: flex;
    margin: -20px 0 0;
    padding: 0  20px !important;
  }

  .p-contact__content h2 {
    font-size: 29px;
  }

  .p-contact__content > p {
    width: 100%;
    max-width: 330px;
    min-height: 0;
    font-size: 11px;
    margin: auto;
    padding: 10px 15px;
    order: 2;
  }

	.p-contact{
		background-image: unset;
		height: auto;
		overflow: unset;
		padding-bottom: 60px;
	}
	.p-contact .u-fs13{
		order: 3;
	}
}