/*######################################################################

		Base CSS

************************************************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

body {
  color: #111827;
  font-size: 18px;
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

@media not all and (min-width: 768px){
  body {
    font-size: 15px;
  }
}

:where(ul, ol) {
  list-style: none;
  list-style-type: '';
  padding: unset;
  margin: 0;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.4;
}

img, picture {
  display: block;
  max-width: 100%;
  height: auto;
}

:where(:any-link, button, [type='button'], [type='reset'], [type='submit'], label[for], select, summary, [role='tab'], [role='button']) {
  cursor: pointer;
}

:where(button, [type='button'], [type='reset'], [type='submit']) {
  touch-action: manipulation;
}

legend, fieldset {
  all: unset;
}

input, button, textarea, select {
  font: inherit;
}

:target {
  scroll-margin-block: 5ex;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after, ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: #111827;
  text-decoration: none;
  transition: .3s;
}

a:hover {
  color: #111827;
  text-decoration: underline;
}



/*######################################################################

		Header

************************************************************************/
/*
	header-area
/////////////////////////////////////////////////////////*/

.header__wrap {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  margin-inline: auto;
  padding-top: 40px;
  padding-inline: 20px;
  max-width: 1440px;
}

@media not all and (min-width: 768px){
  .header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-inline: auto;
    padding-top: 20px;
    padding-inline: 20px;
    max-width: 1440px;
  }
}

.header__logo a {
  display: flex;
  align-items: center;
	flex-wrap: wrap;
  gap: 10px;
}

.header__logo .site-title {
  font-size: 24px;
}

@media not all and (min-width: 768px){
  .header__logo .site-title {
    font-size: 20px;
  }
}

@media (any-hover: hover) {
  .header__logo a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.header__logo a:focus-visible {
  text-decoration: none;
  opacity: .5;
}

.header__gnav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

@media not all and (min-width: 1000px){
  .header__gnav {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

@media (any-hover: hover) {
  .header__gnav-list a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.header__gnav-list a:focus-visible {
  text-decoration: none;
  opacity: .5;
}

.header__tel a {
  display: flex;
  align-items: flex-end;
	flex-direction: column;
  gap: 10px;
  padding: 15px 20px 10px;
  color: #fff;
  line-height: 1;
  background-color: #557FD9;
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
  border-radius: 8px;
}

.header__tel .label {
  font-size: 16.5px;
}

.header__tel .num {
  display: flex;
	justify-content: center;
  align-items: center;
	flex-wrap: wrap;
  gap: 10px;
  font-size: 26px;
}

@media not all and (min-width: 768px){
  .header__tel {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

@media (any-hover: hover) {
  .header__tel a:hover {
    text-decoration: none;
    background-image: none;
  }
}

.header__tel a:focus-visible {
  text-decoration: none;
  background-image: none;
}


/*######################################################################

		Contents

************************************************************************/

/*
	general
/////////////////////////////////////////////////////////*/

.container {
  overflow-x: hidden;
}

.page-container {
  margin-block: 160px;
}

@media not all and (min-width: 768px){
  .page-container {
    margin-block: 80px;
  }
}

.page-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 120px;
}

.page-header__title {
  order: 2;
  margin-bottom: 40px;
  width: fit-content;
  color: transparent;
  font-size: 80px;
  font-weight: 700;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
  background-repeat: no-repeat;
}

@media not all and (min-width: 768px){
  .page-header {
    margin-bottom: 60px;
  }

  .page-header__title {
    margin-bottom: 20px;
    font-size: 40px;
  }
}

.page-header__title-en {
  order: 1;
  margin-bottom: 10px;
  color: #102450;
  font-size: 20px;
}

.page-header__description {
  order: 3;
  font-size: 20px;
}

@media not all and (min-width: 768px){
  .page-header__title-en {
    font-size: 15px;
  }

  .page-header__description {
    font-size: 15px;
  }
}

.section-area {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1440px;
}

.section-contents {
  margin-bottom: 160px;
}

@media not all and (min-width: 768px){
  .section-contents {
    margin-bottom: 80px;
  }
}

.section-hgroup {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 80px;
  line-height: 1.4;
}

@media not all and (min-width: 768px){
  .section-hgroup {
    margin-bottom: 40px;
  }
}

.section-hgroup__wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 80px;
}

@media not all and (min-width: 1000px){
  .section-hgroup__wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

.section-hgroup__jp {
  font-size: 40px;
}

.section-hgroup__description {
  font-size: 20px;
}

@media not all and (min-width: 768px){
  .section-hgroup__jp {
    font-size: 26px;
  }

  .section-hgroup__description {
    font-size: 15px;
  }
}

.section-hgroup__en {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 20px;
  font-size: 20px;
}

.section-hgroup__en::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: #557FD9;
}

@media not all and (min-width: 768px){
  .section-hgroup__en {
    gap: 10px;
    font-size: 14px;
  }

  .section-hgroup__en::before {
    width: 10px;
    height: 10px;
  }
}

.button-center a {
  margin-inline: auto;
}

.more-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  width: fit-content;
  color: #fff;
  background-color: #557FD9;
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
  transition: .3s;
}

@media not all and (min-width: 768px){
  .more-button a {
    padding: 20px 25px;
  }
}

@media (any-hover: hover) {
  .more-button a:hover {
    text-decoration: none;
    background-image: none;
    border-radius: 10px;
  }
}

.more-button a:focus-visible {
  text-decoration: none;
  background-image: none;
}

.more-button a span {
  display: flex;
  align-items: center;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #fff;
}

@media not all and (min-width: 768px){
  .more-button a span {
    margin-right: 10px;
    padding-right: 10px;
  }
}

.more-button a::after {
  content: '';
  display: block;
  width: 20px;
  height: 15px;
  background-image: url(./assets/images/common/arrow-w.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#hamburger-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 40px;
  height: 40px;
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
}

@media not all and (min-width: 768px){
  #hamburger-btn {
    display: flex;
  }
}

#hamburger-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

#hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}

#hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

#menu {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 300px;
  max-width: 90vw;
  height: fit-content;
  background-color: #DDE8FF;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  padding: 20px 30px;
  border-radius: 20px 0 0 20px;
}

@media not all and (min-width: 768px){
  #menu {
    display: block;
  }
}

#menu.is-open {
  transform: translateX(0);
}

#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu li a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#menu li:last-child a {
  border-bottom: none;
}

#main-content {
  transition: filter 0.3s ease-in-out;
}

body.no-scroll {
  overflow: hidden;
}


/*
	top
/////////////////////////////////////////////////////////*/

.top-mv__heading {
  margin-block: 100px 20px;
  width: fit-content;
  color: transparent;
  font-size: 80px;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
  background-repeat: no-repeat;
}

@media not all and (min-width: 768px){
  .top-mv__heading {
    margin-block: 60px 20px;
    font-size: 40px;
  }
}

.top-mv__heading span {
  display: inline-block;
}

.top-mv__text {
  margin-bottom: 80px;
  font-size: 21px;
}

@media not all and (min-width: 768px){
  .top-mv__text {
    margin-bottom: 40px;
    font-size: 15px;
  }
}

.top-mv__image img {
  width: 100%;
}

@media not all and (min-width: 768px){
  .top-mv__image img {
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
  }
}

.top-strength {
  padding-top: 160px;
  background-color: #F1F2F6;
}

@media not all and (min-width: 768px){
  .top-strength {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.top-strength__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 20px 0;
  position: relative;
  z-index: 1;
}

.top-strength__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px 40px;
  width: 32%;
  background-color: #fff;
  border-radius: 40px;
}

@media not all and (min-width: 940px){
  .top-strength__item {
    width: 100%;
    border-radius: 20px;
  }
}

@media not all and (min-width: 768px){
  .top-strength__item {
    padding: 30px 20px;
  }
}

.top-strength__image {
  order: 1;
  margin-bottom: 30px;
}

.top-strength__heading {
  order: 2;
  margin-bottom: 30px;
  font-size: 30px;
}

@media not all and (min-width: 768px){
  .top-strength__heading {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.top-strength__text {
  order: 3;
}

.top-service {
  position: relative;
  margin-top: -80px;
  padding-block: 240px 200px;
  background-color: #DDE8FF;
}

@media not all and (min-width: 768px){
  .top-service {
    margin-top: 0;
    padding-block: 40px 80px;
  }
}

.top-service__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 60px 0;
  margin-bottom: 80px;
}

.top-service__item {
  display: flex;
  flex-direction: column-reverse;
  width: 48%;
}

@media not all and (min-width: 768px){
  .top-service__wrap {
    gap: 40px 0;
    margin-bottom: 40px;
  }

  .top-service__item {
    width: 100%;
  }
}

.top-service__header {
  display: flex;
  flex-direction: column-reverse;
}

.top-service__heading-jp {
  margin-inline: auto;
  width: fit-content;
  font-size: 30px;
}

.top-service__heading-en {
  margin-inline: auto;
  margin-bottom: 10px;
  width: fit-content;
  color: #7295E1;
  font-size: 14px;
}

@media not all and (min-width: 1000px){
  .top-service__heading-jp {
    font-size: 24px;
  }

  .top-service__heading-en {
    margin-bottom: 0;
  }
}

.top-service__image {
  margin-bottom: 20px;
}

@media not all and (min-width: 768px){
  .top-service__image {
    margin-bottom: 10px;
  }
}

.top-service__image img {
  width: 100%;
}

.top-service__loop {
  display: flex;
  position: absolute;
  bottom: -80px;
  left: 0;
  color: #C4D1EE;
  font-size: 120px;
  overflow: hidden;
}

.top-service__loop-text {
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 2rem;
}

@media not all and (min-width: 768px){
  .top-service__loop {
    bottom: -50px;
    font-size: 60px;
  }
}

.top-numbers {
  padding-block: 200px 160px;
}

@media not all and (min-width: 768px){
  .top-numbers {
    padding-block: 80px 40px;
  }
}

.top-numbers__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 60px 0;
}

.top-numbers__item {
  width: 32%;
}

@media not all and (min-width: 768px){
  .top-numbers__item {
    width: 100%;
  }
}

.top-numbers__label-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
}

@media not all and (min-width: 568px){
  .top-numbers__label-wrap {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 0;
  }
}

.top-numbers__label-text {
  font-size: 30px;
}

@media not all and (min-width: 1000px){
  .top-numbers__label-text {
    font-size: 24px;
  }
}

@media not all and (min-width: 568px){
  .top-numbers__label-text {
    font-size: 20px;
  }
}

.top-numbers__label-text span {
  display: block;
  line-height: 1.4;
}

@media not all and (min-width: 768px){
  .top-numbers__label-text span {
    display: inline-block;
  }
}

.top-numbers__main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  line-height: 1.2;
}

@media not all and (min-width: 768px){
  .top-numbers__main {
    align-items: center;
  }
}

@media not all and (min-width: 568px){
  .top-numbers__main {
    justify-content: center;
  }
}

.top-numbers__main-num {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: 140px;
}

.top-numbers__main-num .text-jp {
  font-size: 80px;
}

.top-numbers__main-add {
  font-size: 50px;
}

@media not all and (min-width: 1000px){
  .top-numbers__main-num {
    font-size: 100px;
  }

  .top-numbers__main-num .text-jp {
    font-size: 80px;
  }

  .top-numbers__main-add {
    font-size: 40px;
  }
}

@media not all and (min-width: 768px){
  .top-numbers__main-num {
    align-items: center;
    font-size: 80px;
  }

  .top-numbers__main-num .text-jp {
    font-size: 60px;
  }

  .top-numbers__main-add {
    font-size: 30px;
  }
}



/*
	service
/////////////////////////////////////////////////////////*/

.serivice-section {
  display: flex;
  flex-direction: column;
}

.serivice-section__header {
  order: 1;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .serivice-section__header {
    margin-bottom: 30px;
  }
}

.serivice-section__heading-jp {
  font-size: 40px;
}

.serivice-section__heading-en {
  margin-bottom: 10px;
  color: #7295E1;
  font-size: 18px;
}

@media not all and (min-width: 768px){
  .serivice-section__heading-jp {
    font-size: 30px;
  }

  .serivice-section__heading-en {
    font-size: 15px;
  }
}

.serivice-section__contents {
  order: 3;
}

.serivice-section__image {
  order: 2;
  margin-bottom: 60px;
}

.serivice-section__image img {
  width: 100%;
}

@media not all and (min-width: 768px){
  .serivice-section__image {
    margin-bottom: 30px;
  }
}

.serivice-section__contents h3 {
  margin-block: 60px 30px;
  font-size: 30px;
}

@media not all and (min-width: 768px){
  .serivice-section__contents h3 {
    margin-block: 40px 20px;
    font-size: 24px;
  }
}

.serivice-section__contents dl {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 2px;
}

.serivice-section__contents dt {
  display: grid;
  place-content: center;
  padding: 20px;
  width: 280px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  background-color: #7295E1;
}

.serivice-section__contents dd {
  padding: 20px 40px;
  width: calc(100% - 282px);
  background-color: #F2F2F2;
}

@media not all and (min-width: 768px){
  .serivice-section__contents dl {
    margin-bottom: 30px;
  }

  .serivice-section__contents dt {
    padding: 10px;
    width: 100%;
    font-size: 18px;
  }

  .serivice-section__contents dd {
    padding: 20px;
    width: 100%;
  }
}





/*
	products
/////////////////////////////////////////////////////////*/

.products-section__heading {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
  font-size: 40px;
}

.products-section__heading::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #557FD9;
}

@media not all and (min-width: 768px){
  .products-section__heading {
    margin-bottom: 30px;
    padding-left: 30px;
    font-size: 30px;
  }

  .products-section__heading::before {
    top: 12px;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #557FD9;
  }
}

.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  padding: 80px;
  background-color: #E8EFFF;
  border-radius: 40px;
}

.products-list li {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 21px;
}

.products-list li::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #557FD9;
  transform: rotate(30deg);
}

@media not all and (min-width: 768px){
  .products-list {
    gap: 10px 15px;
    padding: 30px;
    border-radius: 20px;
  }

  .products-list li {
    gap: 10px;
    font-size: 15px;
  }

  .products-list li::after {
    height: 10px;
  }
}



/*
	access
/////////////////////////////////////////////////////////*/

.company-about__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.company-about__heading {
  width: 48%;
  font-size: 32px;
  line-height: 1.4;
}

.company-about__text {
  width: 50%;
}

@media not all and (min-width: 940px){
  .company-about__heading {
    margin-bottom: 30px;
    width: 100%;
    font-size: 32px;
    line-height: 1.4;
  }

  .company-about__text {
    width: 100%;
  }
}

@media not all and (min-width: 768px){
  .company-about__heading {
    font-size: 26px;
  }
}

@media not all and (min-width: 568px){
  .company-about__heading br {
    display: none;
  }
}

.company-about__text p:not(:last-child) {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .company-about__text p:not(:last-child) {
    margin-bottom: 30px;
  }
}

.company-message {
  margin-left: auto;
  padding: 80px;
  max-width: 1010px;
  background-color: #E8EFFF;
  border-radius: 40px;
}

.company-message p:not(:last-child) {
  margin-bottom: 40px;
}

.company-message .sign {
  text-align: right;
}

@media not all and (min-width: 768px){
  .company-message {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .company-message p:not(:last-child) {
    margin-bottom: 30px;
  }
}

.company-vision-ol {
  margin-bottom: 80px;
  margin-left: auto;
  max-width: 1010px;
}

.company-vision-ol li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.company-vision-ol li .num {
  margin-top: 10px;
  width: 30px;
  color: #557FD9;
  font-size: 20px;
}

.company-vision-ol li .text {
  width: calc(100% - 50px);
  font-size: 32px;
}

@media not all and (min-width: 768px){
  .company-vision-ol {
    margin-bottom: 50px;
  }

  .company-vision-ol li {
    margin-bottom: 30px;
  }

  .company-vision-ol li .num {
    margin-top: 6px;
    width: 20px;
    font-size: 14px;
  }

  .company-vision-ol li .text {
    width: calc(100% - 40px);
    font-size: 21px;
  }
}

@media not all and (min-width: 568px){
  .company-vision-ol li br {
    display: none;
  }
}


.company-vision-loop {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.company-vision-loop__item {
  display: flex;
  flex-shrink: 0;
}

.company-vision-loop__item li {
  flex: 0 0 auto;
}

.company-vision-loop__item img {
  width: 500px;
}

@media not all and (min-width: 768px){
  .company-vision-loop__item img {
    width: 300px;
  }
}

.company-data {
  margin-left: auto;
  max-width: 1010px;
  border-top: 1px solid #C2CFEA;
}

.company-data dl {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  padding: 40px 80px;
  border-bottom: 1px solid #C2CFEA;
}

.company-data dt {
  width: 200px;
}

.company-data dd {
  width: calc(100% - 200px);
}

@media not all and (min-width: 768px){
  .company-data dl {
    padding: 20px;
  }

  .company-data dt {
    width: 120px;
  }

  .company-data dd {
    width: calc(100% - 120px);
  }
}

@media not all and (min-width: 468px){
  .company-data dt {
    margin-bottom: 10px;
    width: 100%;
  }

  .company-data dd {
    width: 100%;
  }
}

.company-history {
  margin-left: auto;
  padding: 80px;
  max-width: 1010px;
  border-left: 3px solid #C2CFEA;
}

.company-history dl {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.company-history dl:not(:last-child) {
  border-bottom: 1px solid #C2CFEA;
}

.company-history dt {
  width: 150px;
}

.company-history dd {
  width: calc(100% - 150px);
}

@media not all and (min-width: 768px){
  .company-history {
    padding: 20px;
  }

  .company-history dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .company-history dt {
    width: 120px;
  }

  .company-history dd {
    width: calc(100% - 120px);
  }
}

.company-access {
  margin-left: auto;
  max-width: 1010px;
}

.company-access__map {
  margin-bottom: 40px;
}

.company-access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8;
}

@media not all and (min-width: 768px){
  .company-access__map {
    margin-bottom: 30px;
  }

  .company-access__map iframe {
    aspect-ratio: 4 / 3;
  }
}

.company-access__text {
  line-height: 2.2;
}



/*
	recuit
/////////////////////////////////////////////////////////*/


.recruit-header {
  margin-bottom: 160px;
}

.recruit-header__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 20px;
}

.recruit-header__label {
  margin-top: 26px;
  width: 110px;
}

.recruit-header__title {
  width: calc(100% - 110px);
  font-size: 60px;
}

.recruit-header__description {
  margin-left: 110px;
  font-size: 21px;
}

@media not all and (min-width: 1000px){
  .recruit-header__label {
    margin-top: 14px;
  }

  .recruit-header__title {
    font-size: 40px;
  }
}

@media not all and (min-width: 768px){
  .recruit-header {
    margin-bottom: 60px;
  }

  .recruit-header__wrap {
    margin-bottom: 10px;
  }

  .recruit-header__label {
    margin-top: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .recruit-header__title {
    width: 100%;
    font-size: 32px;
  }

  .recruit-header__description {
    margin-left: 0;
    font-size: 16px;
  }
}

.recruit-description__contents {
  margin-left: auto;
  max-width: 1010px;
}

.recruit-description__contents p {
  margin-bottom: 40px;
}

.recruit-description__contents h3 {
  margin-block: 80px 30px;
  font-size: 30px;
}

@media not all and (min-width: 768px){
  .recruit-description__contents p {
    margin-bottom: 30px;
  }

  .recruit-description__contents h3 {
    margin-block: 60px 20px;
    font-size: 24px;
  }
}

.recruit-description__contents ul {
  margin-bottom: 40px;
}

.recruit-description__contents ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
}

.recruit-description__contents ul li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #557FD9;
}

@media not all and (min-width: 768px){
  .recruit-description__contents ul {
    margin-bottom: 30px;
  }

  .recruit-description__contents ul li {
    padding-left: 25px;
  }

  .recruit-description__contents ul li::before {
    top: 12px;
    width: 12px;
  }
}

.recruit-description__thumbnail {
  margin-bottom: 40px;
}

.recruit-description__thumbnail img {
  width: 100%;
}

.recruit-description__schedule {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .recruit-description__schedule {
    margin-bottom: 40px;
  }
}

.recruit-description__schedule dl {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 20px;
}

.recruit-description__schedule dt {
  color: #557FD9;
  width: 100px;
  font-size: 20px;
}

.recruit-description__schedule dd {
  width: calc(100% - 100px);
}

@media not all and (min-width: 768px){
  .recruit-description__schedule dt {
    width: 60px;
    font-size: 15px;
  }

  .recruit-description__schedule dd {
    width: calc(100% - 60px);
  }
}

.recruit-description__images {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2%;
}

.recruit-description__images-item {
  width: 32%;
}

.recruit-description__images-item img {
  width: 100%;
}

@media not all and (min-width: 768px){
  .recruit-description__images-item {
    width: 100%;
  }
}

.recruit-req {
  margin-left: auto;
  max-width: 1010px;
}

.recruit-req__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.recruit-req__wrap.recruit-req01 {
  margin-bottom: 60px;
}

@media not all and (min-width: 768px){
  .recruit-req__wrap.recruit-req01 {
    margin-bottom: 40px;
  }
}

.recruit-req__wrap dt {
  display: grid;
  place-content: center;
  color: #fff;
  width: 120px;
  font-size: 20px;
}

.recruit-req__wrap dd {
  width: calc(100% - 180px);
}

@media not all and (min-width: 768px){
  .recruit-req__wrap dt {
    padding: 10px;
    width: 60px;
    font-size: 16px;
  }

  .recruit-req__wrap dd {
    width: calc(100% - 90px);
  }
}

@media not all and (min-width: 468px){
  .recruit-req__wrap dt {
    width: 50px;
    font-size: 13px;
  }

  .recruit-req__wrap dd {
    width: calc(100% - 70px);
  }
}

.recruit-req__wrap.recruit-req01 dt {
  background-color: #102450;
}

.recruit-req__wrap.recruit-req02 dt {
  background-color: #557FD9;
}

.recruit-req__wrap dd ul li {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}

.recruit-req__wrap dd ul li:not(:last-child) {
  margin-bottom: 20px;
}

@media not all and (min-width: 768px){
  .recruit-req__wrap dd ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.recruit-req__wrap dd ul li .num {
  width: 60px;
  font-size: 20px;
}

.recruit-req__wrap dd ul li .text {
  width: calc(100% - 60px);
  font-size: 24px;
}

@media not all and (min-width: 768px){
  .recruit-req__wrap dd ul li .num {
    width: 40px;
    font-size: 16px;
  }

  .recruit-req__wrap dd ul li .text {
    width: calc(100% - 40px);
    font-size: 18px;
  }
}

.recruit-req__wrap.recruit-req01 dd ul li .num {
  color: #102450;
}

.recruit-req__wrap.recruit-req02 dd ul li .num {
  color: #557FD9;
}

.recruit-details__dl {
  margin-left: auto;
  max-width: 1010px;
  border-top: 1px solid #C2CFEA;
}

.recruit-details__dl dl {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  padding: 40px 80px;
  border-bottom: 1px solid #C2CFEA;
}

.recruit-details__dl dt {
  width: 200px;
}

.recruit-details__dl dd {
  width: calc(100% - 200px);
}

.recruit-details__dl dd p:not(:last-child) {
  margin-bottom: 30px;
}

@media not all and (min-width: 768px){
  .recruit-details__dl dl {
    padding: 20px;
  }

  .recruit-details__dl dt {
    width: 120px;
  }

  .recruit-details__dl dd {
    width: calc(100% - 120px);
  }
}

@media not all and (min-width: 468px){
  .recruit-details__dl dt {
    margin-bottom: 10px;
    width: 100%;
  }

  .recruit-details__dl dd {
    width: 100%;
  }
}


/*
	contact
/////////////////////////////////////////////////////////*/

.contact-phone__contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 50px;
  padding: 80px 20px;
  background-color: #E8EFFF;
  border-radius: 20px;
}

@media (any-hover: hover) {
  .contact-phone__contents a:hover {
    text-decoration: none;
  }
}

.contact-phone__contents a:focus-visible {
  text-decoration: none;
}

.contact-phone__contents dl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 50px;
}

.contact-phone__contents dt {
  font-size: 21px;
  text-transform: uppercase;
}

.contact-phone__contents dd {
  font-size: 36px;
}

.contact-phone__contents dl:nth-child(1)::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background-color: #557FD9;
  transform: rotate(30deg);
}

@media not all and (min-width: 1000px){
  .contact-phone__contents {
    gap: 10px 30px;
    padding: 80px 20px;
  }

  .contact-phone__contents dl {
    gap: 10px 30px;
  }

  .contact-phone__contents dt {
    font-size: 21px;
  }

  .contact-phone__contents dd {
    font-size: 30px;
  }
}

@media not all and (min-width: 1000px){
  .contact-phone__contents {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-radius: 10px;
  }

  .contact-phone__contents dt {
    font-size: 16px;
  }

  .contact-phone__contents dd {
    font-size: 24px;
  }

  .contact-phone__contents dl:nth-child(1)::after {
    display: none;
  }
}

.contact-form__hero {
  margin-block: -40px 80px;
}

@media not all and (min-width: 768px){
  .contact-form__hero {
    margin-block: -20px 40px;
  }
}

.contact-form__main {
  margin-inline: auto;
  max-width: 800px;
}

.form-group {
  margin-bottom: 40px;
}

.form-label-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-label {
  font-size: 18px;
}

.required, .optional {
  margin-left: 40px;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-weight: normal;
}

.required {
  background-color: #102450;
}

.optional {
  background-color: #557FD9;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  background-color: #E8EFFF;
  border: none;
  border-radius: 5px;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #4a90e2;
}

.form-textarea {
  resize: vertical;
}

.privacy-policy {
  margin-top: 30px;
  padding: 40px;
  height: 300px;
  border: 1px solid #C2CFEA;
  border-radius: 8px;
  overflow-y: scroll;
}

.privacy-policy h2 {
  margin-bottom: 10px;
  font-size: 21px;
}

.privacy-policy h3 {
  margin-block: 30px 10px;
  font-size: 18px;
}

.privacy-policy p {
  font-size: 14px;
}

.submit-button {
  margin-top: 30px;
  padding: 15px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background: linear-gradient(to right, #50b0f0, #4a90e2);
}

.thanks-contents {
  margin-inline: auto;
  width: fit-content;
  font-size: 21px;
}

.thanks-contents .more-button {
  margin-top: 80px;
}

@media not all and (min-width: 568px){
  .thanks-contents {
    font-size: 18px;
  }

  .thanks-contents .more-button {
    margin-top: 40px;
  }
}

/*######################################################################

		Footer

************************************************************************/

.recruit-cta {
  background-image: url(./assets/images/common/recruit-cta-bg.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 768px){
  .recruit-cta {
    padding-block: 60px;
  }
}

.recruit-cta a {
  display: block;
  padding-block: 120px;
}

@media (any-hover: hover) {
  .recruit-cta a:hover {
    text-decoration: none;
    opacity: .8;
  }
}

.recruit-cta a:focus-visible {
  text-decoration: none;
  opacity: .8;
}

.recruit-cta__wrap {
  display: flex;
	justify-content: space-between;
  align-items: flex-end;
	flex-wrap: wrap;
  color: #fff;
}

@media not all and (min-width: 768px){
  .recruit-cta__wrap {
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }
}

.recruit-cta__contents .section-hgroup {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .recruit-cta__contents .section-hgroup {
    margin-bottom: 30px;
    text-align: center;
  }

  .recruit-cta__contents .section-hgroup__en {
    flex-direction: column;
  }

  .recruit-cta__text {
    text-align: center;
  }
}


.recruit-cta__button .more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  width: fit-content;
  color: #fff;
  background-color: #557FD9;
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
  transition: .3s;
}

@media not all and (min-width: 768px){
  .recruit-cta__button .more-button {
    padding: 20px 25px;
  }
}

@media (any-hover: hover) {
  .recruit-cta__button .more-button:hover {
    text-decoration: none;
    background-image: none;
    border-radius: 10px;
  }
}

.recruit-cta__button .more-button:focus-visible {
  text-decoration: none;
  background-image: none;
}

.recruit-cta__button .more-button span {
  display: flex;
  align-items: center;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #fff;
}

@media not all and (min-width: 768px){
  .recruit-cta__button .more-button span {
    margin-right: 10px;
    padding-right: 10px;
  }
}

.recruit-cta__button .more-button::after {
  content: '';
  display: block;
  width: 20px;
  height: 15px;
  background-image: url(./assets/images/common/arrow-w.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}




.footer__contact-cta {
  padding-block: 120px;
  color: #DDE8FF;
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
}

@media not all and (min-width: 768px){
  .footer__contact-cta {
    padding-block: 60px;
  }
}

.footer__contact-cta-hgroup {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.4;
}

.footer__contact-cta-heading-jp {
  font-size: 18px;
}

.footer__contact-cta-heading-en {
  font-size: 90px;
}

@media not all and (min-width: 768px){
  .footer__contact-cta-hgroup {
    margin-bottom: 30px;
  }

  .footer__contact-cta-heading-jp {
    font-size: 15px;
  }

  .footer__contact-cta-heading-en {
    font-size: 50px;
  }
}

.footer__contact-cta-text {
  margin-bottom: 60px;
  font-size: 21px;
  text-align: center;
}

@media not all and (min-width: 768px){
  .footer__contact-cta-text {
    margin-bottom: 30px;
    font-size: 15px;
  }
}

.footer__contact-cta-text span {
  display: inline-block;
}

.footer__contact-cta-wrap {
  display: flex;
	justify-content: center;
  align-items: center;
	flex-wrap: wrap;
}

.footer__contact-cta-item {
  padding-block: 40px;
  padding-inline: 100px 0;
  width: 50%;
}

.footer__contact-cta-item:nth-child(1) {
  padding-inline: 0 100px;
  border-right: 1px solid #DDE8FF;
}

@media not all and (min-width: 940px){
  .footer__contact-cta-item {
    padding-block: 0px;
    padding-inline: 20px;
    width: 100%;
  }

  .footer__contact-cta-item:nth-child(1) {
    padding-block: 0 20px;
    padding-inline: 20px;
    border-right: none;
  }
}

.footer__contact-cta-tel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 20px;
}

@media not all and (min-width: 940px){
  .footer__contact-cta-tel {
    justify-content: center;
  }

  .footer__contact-cta-item .more-button a {
    margin-inline: auto;
  }
}

.footer__contact-cta-tel .label {
  width: 50px;
  font-size: 24px;
  text-transform: uppercase;
}

.footer__contact-cta-tel .num {
  font-size: 36px;
}

@media not all and (min-width: 768px){
  .footer__contact-cta-tel .label {
    width: 40px;
    font-size: 16px;
  }

  .footer__contact-cta-tel .num {
    font-size: 26px;
  }
}

.footer__contact-cta-tel a {
  color: #DDE8FF;
}

@media (any-hover: hover) {
  .footer__contact-cta-tel a:hover {
    text-decoration: none;
  }
}

.footer__contact-cta-tel a:focus-visible {
  text-decoration: none;
}

.footer__contact-cta-button .more-button a {
  color: #102450;
  background-color: #DDE8FF;
  background-image: none;
}

.footer__contact-cta-button .more-button a span {
  border-right: 1px solid #102450;
}

.footer__contact-cta-button .more-button a::after {
  background-image: url(./assets/images/common/arrow-b.svg);
}

@media (any-hover: hover) {
  .footer__contact-cta-button .more-button a:hover {
    color: #fff;
    background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
  }

  .footer__contact-cta-button .more-button a:hover span {
    border-right: 1px solid #fff;
  }

  .footer__contact-cta-button .more-button a:hover::after {
    background-image: url(./assets/images/common/arrow-w.svg);
  }
}

.footer__contact-cta-button .more-button a:focus-visible {
  background-image: linear-gradient(90deg, #0B2A6C 0%, #1552D2 100%);
}

.footer__contact-cta-button .more-button a:focus-visible span {
  border-right: 1px solid #fff;
}

.footer__contact-cta-button .more-button a:focus-visible::after {
  background-image: url(./assets/images/common/arrow-w.svg);
}

.footer__main {
  padding-block: 80px;
  border-top: 1px solid #C2CFEA;
}

@media not all and (min-width: 768px){
  .footer__main {
    padding-block: 40px;
  }
}

.footer__main-header {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer__main-heading {
  width: 300px;
  font-size: 40px;
}

.footer__main-copy {
  width: calc(100% - 400px);
  font-size: 20px;
}

@media not all and (min-width: 940px){
  .footer__main-heading {
    width: 100%;
    text-align: center;
  }

  .footer__main-copy {
    width: 100%;
    text-align: center;
  }
}

@media not all and (min-width: 768px){
  .footer__main-heading {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .footer__main-copy {
    font-size: 15px;
  }

  .footer__main-copy span {
    display: block;
  }
}

.footer__main-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer__main-info {
  width: 300px;
  font-size: 18px;
}

.footer__main-nav {
  width: calc(100% - 400px);
}

@media not all and (min-width: 940px){
  .footer__main-info {
    margin-inline: auto;
    margin-bottom: 30px;
    width: fit-content;
    font-size: 15px;
  }

  .footer__main-nav {
    margin-inline: auto;
    width: fit-content;
  }
}

@media not all and (min-width: 768px){
  .footer__main-info {
    margin-bottom: 0;
  }

  .footer__main-nav {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

.footer__main-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}

@media (any-hover: hover) {
  .footer__main-nav-list a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.footer__main-nav-list:focus-visible {
  text-decoration: none;
  opacity: .5;
}

.copyright {
  padding-block: 30px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #C2CFEA;
}

