@charset "UTF-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

* {
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-appearance: none;
  /*webkit系ブラウザのデフォルトスタイル*/
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
  overflow-wrap: break-word;
  color: #000000;
  margin: 0;
}

@media (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}


br {
  display: block;
  content: "";
  margin: 10px 0;
}


h1 {
  font-size: clamp(5rem, 6vw, 8rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

h4 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.4;
  letter-spacing: 0.005em;
}

h5 {
  font-size: clamp(1.6rem, 3.5vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: 0.005em;
}

h6 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: normal;
}

p {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  line-height: 2.5;
  /* letter-spacing: 0.01em; */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

img {
  max-width: 100%;
  vertical-align: top;
}


/* common */

.common__nav__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .common__nav__links {
    flex-direction: column;
    justify-content: left;
    align-items: normal;
  }
}

.common__title {
  text-align: center;
  color: #0B3B6E;
  letter-spacing: .2rem;
}

@media (max-width: 768px) {
  .common__title {
    margin-top: 10px;
  }
}

.service__heading__lead {
  text-align: left;
}

@media (max-width: 768px) {
  .service__heading__lead {
    text-align: left;
  }
}

.service__item__lead {
  text-align: center;
}

.service__item__lead h3 {
  font-weight: 700;
  letter-spacing: .1rem;
  color: #0B3B6E;
}

.contact__heading__lead {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .contact__heading__lead {
    text-align: left;
    margin-top: 30px;
  }
}

.common__lead {
  padding-top: 20px;
  text-align: justify;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .common__lead {
    margin-top: 10px;
  }
}

.privacy__lead {
  margin-top: 40px;
}

.company__text_01 {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  margin-top: 60px;
  line-height: 2;
}

@media (max-width: 768px) {
  .company__text_01 {
    text-align: left;
    margin-top: 30px;
  }
}

.company__text_01 p {
  margin-bottom: 20px;
}

.company__text_02 {
  width: 100%;
  font-size: 2rem;
  text-align: right;
  letter-spacing: .2rem;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .company__text_02 {
    font-size: 1.4rem;
    text-align: right;
    line-height: 1.5;
  }
}

.recruit__lead {
  padding: 10px 0px;
  letter-spacing: .3rem;
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .recruit__lead {
    text-align: left;
    margin-top: 30px;
  }
}

.recruit__text {
  margin-top: 40px;
}

.recruit__text p {
  text-align: left;
  margin: 20px 0px;
  line-height: 2;
}

@media (max-width: 768px) {
  .recruit__text p {
    text-align: left;
    line-height: 2;
  }
}

.service__item__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 10%;
  margin-top: 100px;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .service__item__inner {
    flex-direction: column;
    gap: 40px 0%;
    margin-top: 40px;
  }
}

.service__item {
  width: 40%;
}

@media (max-width: 768px) {
  .service__item {
    width: 100%;
  }
}

.service__item h4 {
  border-bottom: 1px solid #cccccc;
  border-left: 4px #0B3B6E;
  padding-left: 15px;
  line-height: 1.8;
  letter-spacing: .1rem;
  text-align: left;
  position: relative;
  display: inline-block;
}

@media (max-width: 768px) {
  .service__item h4 {
    padding-left: 12px;
    letter-spacing: .1rem;
  }
}


.service__item h4:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 25%;
  left: 0%;
  transform: translateX(-50%);
  width: 6px;
  height: 18px;
  border-radius: 0px;
  background-color: #0B3B6E;
}

@media (max-width: 768px) {
  .service__item h4:before {
    top: 25%;
    left: 0%;
    width: 6px;
    height: 18px;
  }
}

.service__item p {
  text-align: left;
  margin-top: 20px;
  line-height: 2;
}

@media (max-width: 768px) {
  .service__item p {
    text-align: left;
    line-height: 1.5;
  }
}

.common__contents__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .common__contents__title {
    flex-direction: column;
    align-items: flex-start;
  }
}


.common__contents__title h3 {
  font-weight: 700;
  letter-spacing: .1rem;
  text-align: center;
  color: #0B3B6E;
}

.common__contents__title p {
  margin-left: 40px;
  color: #0B3B6E;
  text-align: left;
}

@media (max-width: 768px) {
  .common__contents__title p {
    margin-left: 0px;
    margin-top: 10px;
  }
}

.kv__wrapper .container {
  width: 100%;
  margin: 0px auto;
  padding: 0px 0px 0px 0px;
}

@media (max-width: 768px) {
  .kv__wrapper .container {
    padding: 0px 0px 0px 0px
  }
}

.slider {
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  position: relative;
  background: url(/img/kv.webp);
  border-radius: 0px;
  background-size: cover;
}

@media (max-width: 768px) {
  .slider {
    background: url(/img/kv_sp.webp);
    background-size: cover;
    border-radius: 0px;
    margin-top: 0px;
  }
}

.slider__front {
  width: 100%;
  position: absolute;
  top: 35%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

@media (max-width: 768px) {
  .slider__front {
    display: none;
  }
}

.slider__name {
  width: 100%;
  color: #0B3B6E;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1rem;
  text-align: center;
}

.slider__name span {
  color: #0B3B6E;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1rem;
}

/* slider__front__sp */

.slider__front__sp_01 {
  width: 90%;
  position: absolute;
  top: 35%;
  left: 10%;
}

@media screen and (min-width: 960px) {
  .slider__front__sp_01 {
    display: none;
  }
}

.slider__front__sp_02 {
  width: 90%;
  position: absolute;
  top: 47%;
  right: 10%;
}

@media screen and (min-width: 960px) {
  .slider__front__sp_02 {
    display: none;
  }
}

.slider__name__sp_01 {
  color: #0B3B6E;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-align: left;
}

@media screen and (min-width: 960px) {
  .slider__name__sp_01 {
    display: none;
  }
}

.slider__name__sp_02 {
  color: #0B3B6E;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-align: right;
}

@media screen and (min-width: 960px) {
  .slider__name__sp_02 {
    display: none;
  }
}

.slider__name__sp_01 span {
  color: #0B3B6E;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .5rem;
}

.slider__name__sp_02 span {
  color: #0B3B6E;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .5rem;
}

.splide__partner {
  width: 100%;
  position: absolute;
  top: 75%
}

@media (max-width: 768px) {
  .splide__partner {
    top: 80%;
  }
}

.works__item__contents {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: left;
  gap: 80px 40px;
}

.works__item {
  width: calc((100% - (40px * 2))/ 3);
}

@media (max-width: 768px) {
  .works__item {
    width: 100%;
  }
}

.works__item__title {
  font-weight: 600;
  margin-top: 20px;
}

.works__item__date {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  align-items: center;
  margin-top: 10px;
  opacity: .7;
}

.works__item__icon {
  vertical-align: -2px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.works__item img {
  border-radius: 5px;
}

.bg__dark_blu {
  background: #0b3b6e;
}

.common__bg__en_title {
  text-align: left;
  letter-spacing: .2rem;
  color: #0B3B6E;
}

@media (max-width: 768px) {
  .common__bg__en_title {
    line-height: 1;
  }
}


.common__bg__subtitle {
  position: relative;
  text-align: left;
  color: #0B3B6E;
}

@media (max-width: 768px) {
  .common__bg__subtitle {
    font-size: unset;
    margin-top: 10px;
  }
}

.common__bg__subtitle:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background-color: #0B3B6E;
}

@media (max-width: 768px) {
  .common__bg__subtitle:before {
    display: none;
  }
}

.common__bg__title {
  letter-spacing: 0.2;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .common__bg__title {
    margin-top: 30px;
  }
}

.common__bg__text {
  font-size: 20px;
  line-height: 30px;
}

.wrapper .container {
  max-width: 1280px;
  margin: 0px auto;
  padding: 100px 5%;
}

@media (max-width: 768px) {
  .wrapper .container {
    width: 100%;
    padding: 60px 30px;
  }
}

.footer__wrapper .container {
  width: 100%;
  margin: 0px auto;
  padding: 80px 5% 10px 5%;
}

@media (max-width: 768px) {
  .footer__wrapper .container {
    padding: 60px 30px 10px;
  }
}

.footer__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 60px;
}


/* wrapper */

.common__wrapper {
  border-top: 1px solid #dadada;
}

.wrapper_inner .container {
  max-width: 1280px;
  margin: 0px auto;
  padding: 20px 20px;
}

.header__title {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  color: #ffffff;
  margin-top: 2px;
  text-align: right;
}

#header {
  width: 100%;
  display: flex;
  z-index: 999;
  padding: 0px 2%;
  margin: 0;
  height: 80px;
  align-items: center;
  position: fixed;
  /*ヘッダーの位置を固定*/
  top: 0px;
  /*ヘッダーの位置を固定（上0）*/
  background: transparent;
  color: #000000;
  transition: 0.7s ease-out;
}

#header__sub {
  width: 100%;
  display: flex;
  z-index: 999;
  padding: 0px 2%;
  margin: 0;
  height: 80px;
  align-items: center;
  position: fixed;
  /*ヘッダーの位置を固定*/
  top: 0px;
  /*ヘッダーの位置を固定（上0）*/
  background: #fff;
  color: #000000;
  border-bottom: 1px solid #eee;
  transition: 0.7s ease-out;
}

#header.scroll-nav {
  width: 100%;
  display: flex;
  z-index: 999;
  padding: 0 2%;
  height: 80px;
  align-items: center;
  position: fixed;
  /*ヘッダーの位置を固定*/
  top: 0px;
  /*ヘッダーの位置を固定（上0）*/
  background: #fff;
  color: #000000;
  border-bottom: 1px solid #eee;
  transition: 0.7s ease-out;
}

.header__logo {
  width: 220px;
  margin: 0 auto;
  background-image: url(/img/company_logo_rectangle.svg);
  background-size: contain;
  height: 40px;
}

.header__logo.scroll-header__logo {
  width: 220px;
  margin: 0 auto;
  background-image: url(/img/company_logo_rectangle.svg);
  background-size: contain;
  height: 40px;
}

.sp__header__logo {
  width: 200px;
  height: 40px;
  margin: 0 auto;
  background-image: url(/img/company_logo_rectangle.svg);
  background-size: contain;
}

.sp__header__logo.scroll-sp__header__logo {
  width: 200px;
  height: 40px;
  margin: 0 auto;
  background-image: url(/img/company_logo_rectangle.svg);
  background-size: contain;
}

/* nav */

nav {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: space-between;
}

nav h1 {
  text-decoration: none;
}

.header__logo__inner {
  display: flex;
  align-items: center;
  margin: 0;
}

.header__logo__inner h1 {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

@media(max-width: 768px) {

  #header {
    display: none;
  }

  #header__sub {
    display: none;
  }

  #header.scroll-nav {
    display: none;
  }

  .header__sp__logo {
    display: flex;
    align-items: start;
    list-style: none;
    margin-left: 15px;
    margin-top: 2px;
  }

  #header__sp {
    width: 100%;
    z-index: 999;
    padding: 0 2%;
    height: 68px;
    align-items: center;
    background: transparent;
    color: #000;
    position: fixed;
    top: 0;
    transition: 0.7s ease-out;
  }

  #header__sp.scroll-nav__sp {
    width: 100%;
    z-index: 999;
    padding: 0 2%;
    height: 68px;
    align-items: center;
    position: fixed;
    /*ヘッダーの位置を固定*/
    top: 0;
    /*ヘッダーの位置を固定（上0）*/
    background: #fff;
    border-bottom: 1px solid #eee;
    color: #000;
    transition: 0.7s ease-out;
  }

  .header__sp__container {
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* ハンバーガーボタンのデザイン */
  .drawer__button {
    position: relative;
    width: 4rem;
    height: 2rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 18px;
    z-index: 999;
    align-items: center;
    /* メニューを開いている時もクリックできるよう設定 */
  }

  /* ハンバーガーボタン内の線 */
  .drawer__button>span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 1.5px;
    background-color: #0B3B6E;
    transform: translateX(-50%);
  }

  .drawer__button>span:first-child {
    transform: translate(-50%, calc(-50% - 0.8rem));
    transition: transform 0.3s ease;
  }

  .drawer__button>span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }

  .drawer__button>span:last-child {
    transform: translate(-50%, calc(-50% + 0.8rem));
    transition: transform 0.3s ease;
  }

  .drawer__button>span.scroll-nav_button {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 1.5px;
    background-color: #0B3B6E;
    transform: translateX(-50%);
  }

  .drawer__button>span:first-child.scroll-nav_button {
    transform: translate(-50%, calc(-50% - 0.8rem));
    transition: transform 0.3s ease;
  }

  .drawer__button>span:nth-child(2).scroll-nav_button {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }

  .drawer__button>span:last-child.scroll-nav_button {
    transform: translate(-50%, calc(-50% + 0.8rem));
    transition: transform 0.3s ease;
  }

  /* 展開時のデザイン */
  .drawer__button.active>span:first-child {
    background-color: #3d3d3d;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .drawer__button.active>span:nth-child(2) {
    opacity: 0;
  }

  .drawer__button.active>span:last-child {
    background-color: #3d3d3d;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  /* メニューのデザイン */
  .drawer__nav {
    position: fixed;
    /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #3d3d3d;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }

  .drawer__nav__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 5rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }

  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }

  .drawer__nav__link {
    display: block;
    text-decoration: none;
    padding: 2rem 1rem;
    border-bottom: solid 1px #eeeeee;
  }

  .drawer__nav__menu>li:first-child {
    border-top: solid 1px #eeeeee;
  }

  .drawer__nav__item {
    font-size: 1.5rem;
    letter-spacing: .1rem;
    font-weight: 600;
  }

  /* ハンバーガーメニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }

}

@media screen and (min-width: 960px) {
  #header__sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}

.drawer__nav__logo {
  margin-top: 40px;
  text-align: center;
}

.drawer__nav__logo img {
  width: 120px;
}

.drawer__nav__logo__text {
  text-align: center;
  letter-spacing: 0.1rem;
  margin-top: 20px;
}

.header__sp__title {
  margin-right: 30px;
  text-align: center;
}

.common__logo-title--center {
  padding: 20;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.header__nav__container {
  display: flex;
  align-items: center;
  list-style: none;
  margin-left: 15px;
}

.header__nav__item {
  margin: 0 0 0 30px;
  font-weight: 500;
}

.logo__content {
  margin-bottom: 8px;
}

.logo-subject--center {
  font-size: 11px;
  font-weight: 600;
  line-height: 12px;
  text-align: center;
}


/* header button os */

.header__button__os {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 26px;
  margin: 0 auto;
  padding: .2em 1em;
  border: 1px solid #ffffff;
  border-radius: 0px;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.1px;
  line-height: 1;
}

.header__button__os::after {
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: '';
}

.contact__nav__container {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact__nav__container {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px 0px;
  }
}

.contact__nav__item {
  margin: 0 0px;
  padding: 20px 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact__nav__item {
    padding: 0px 0px;
  }
}

.contact__nav__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 80px;
  margin: 0 auto;
  padding: .2em 1em;
  background: none;
  border: #352294 solid 1px;
  border-radius: 0px;
  color: #352294;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .contact__nav__button {
    width: 300px;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 0px;
  }
}

.contact__nav__button::before {
  transform: rotate(135deg);
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-top: 2px solid #352294;
  border-right: 2px solid #352294;
  content: '';
}

@media (max-width: 768px) {
  .contact__nav__button::before {
    display: none;
  }
}

.contact__nav__button::after {
  transform: rotate(135deg);
  width: 8px;
  height: 8px;
  margin: 0;
  border-top: 2px solid #352294;
  border-right: 2px solid #352294;
  content: '';
}

@media screen and (min-width: 960px) {
  .contact__nav__button::after {
    display: none;
  }
}


/* sp button guidance */

.sp__button__guidance {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 35px;
  margin: 0 auto;
  padding: .2em .4em;
  border: 1px solid #352294;
  border-radius: 5px;
  color: #352294;
  font-size: 1.0rem;
  font-weight: 600;
  margin-right: 10px;
  margin-top: 5px;
}

.sp__button__guidance:hover {
  border: none;
  background-color: #352294;
  color: #fff;
}

.sp__button__guidance:hover::after {
  border-color: #fff;
}

.sp__button__guidance a:hover {
  opacity: 1;
}



/* sp button apply */

.sp__button__apply {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 35px;
  margin: 0 auto;
  padding: .2em .4em;
  background: #352294;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.0rem;
  font-weight: 600;
  margin-right: 10px;
  margin-top: 5px;
}

.sp__button__apply:hover {
  border: 1px solid #352294;
  background-color: #ffffff00;
  color: #352294
}

.sp__button__apply:hover::after {
  border-color: #352294;
}

.sp__button__apply a:hover {
  opacity: 1;
}


.bg__container {
  text-align: center;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .bg__container {
    margin-top: 40px;
  }
}

.common__title__img {
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 768px) {
  .common__title__img {
    margin-top: 30px;
  }
}

.img__radius {
  border-radius: 10px;
}

.company__img {
  border: solid 1px #cccccc;
}

.wrapper--bg {
  background-color: #FFF
}

.common__sub_title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 5px;
  text-align: center;
}

.recruit__entry__lead {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  border: 1px solid #0B3B6E;
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .recruit__entry__lead {
    padding: 20px;
    margin-top: 50px;
  }
}

.recruit__entry__lead h4 {
  letter-spacing: .1rem;
  margin-top: 20px;
}

.contact__tel__lead {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  border: 1px solid #0B3B6E;
  border-radius: 5px;
  padding: 60px 30px;
  text-align: center;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .contact__tel__lead {
    margin-top: 50px;
  }
}


.recruit__entry__data {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}

.recruit__entry__data p {
  letter-spacing: .1rem;
}

.recruit__entry__data span {
  font-size: 1.2rem;
}

.recruit__entry__tel {
  max-width: 400px;
  margin: 30px auto;
}

.recruit__entry__tel img {
  width: 60%;
  object-fit: cover;
}

.recruit__entry__form {
  width: 100%;
  text-align: center;
  margin-top: 80px;
}

.recruit__entry__form {
  width: 100%;
  text-align: center;
  margin-top: 100px;
}

.logo__txt_--s_center {
  font-size: 10px;
  text-align: center;
}

.nav__headerlogo_text {
  font-size: 1.0rem;
  text-align: center;
  margin-top: 1px;
}

.logo__txt_sp--center {
  font-size: 0.8rem;
  line-height: 0px;
  text-align: center;
}


.vision__lead {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .vision__lead {
    text-align: left;
    margin-top: 30px;
  }
}

.vision__lead p {
  text-align: left;
  margin-top: 20px;
}

.common__lead_at {
  max-width: 1280px;
  margin: 0 auto;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
  padding: 15px;
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .common__lead_at {
    margin-top: 40px;
    font-weight: 500;
    text-align: left;
  }
}

.contact__nav__title {
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 700;
  text-align: center;
  margin-top: 60px;
}


.common__txt--left {
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
}

.common__txt--center {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .common__txt--center {
    text-align: left;
  }
}

/* contact */


.contact__inner {
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .contact__inner {}
}

.contact__heading__item {
  margin-top: 0px;
}

@media (max-width: 768px) {
  .contact__heading__item {
    margin-top: 0px;
  }
}

.contact__heading__text {
  font-size: 2.0rem;
  color: #fff;
}

.contact__web {
  margin-top: 40px;
}

.contact__webform {
  width: 100%;
  padding: 20 20 20 20;
  margin-bottom: 7px;
  background-color: #0B3B6E;
  border-radius: 5px;
}

.contact__webform summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
}

.contact__webform summary::-webkit-details-marker {
  display: none;
}

.contact__webform summary::before,
.contact__webform summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: #ffffff;
  content: '';
}

.contact__webform summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.contact__webform summary::after {
  transition: rotate .3s;
}

.contact__webform[open] summary::after {
  rotate: 90deg;
}

.contact__webform p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
}

.contact__webform[open] p {
  transform: none;
  opacity: 1;
}


.bg-img__wrapper {
  width: 100%;
  vertical-align: top;
}

.item_left {
  text-align: left;
}

.item_center {
  text-align: center;
}

.item_right {
  text-align: right;
}

.apply__content {
  text-align: center;
  padding-bottom: 60px;
}

.apply__text {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .apply__text {
    text-align: justify;
    margin-top: 40px;
  }
}

.apply__box {
  max-width: 100%;
  padding: 20px;
  margin-right: auto;
  margin-left: auto;
  border: #eeeeee solid 1px;
  margin-top: 30px;
}

.accordion-003 {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 7px;
  border-bottom: 1px solid #f2f2f2;
}

.accordion-003 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2em 1em;
  cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
  display: none;
}

.accordion-003 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 2px solid #555555b3;
  border-right: 2px solid #555555b3;
  content: '';
  transition: transform .3s;
}

.accordion-003[open] summary::after {
  transform: rotate(225deg);
}



.accordion-003 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
  transform: none;
  opacity: 1;
}


/* company */

.company__profile {
  text-align: center;
  font-size: 3.0rem;
}

.company__item {
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .company__item {
    margin-top: 30px;
  }
}

.company__item dl {
  display: flex;
  flex-flow: row wrap;
}

.company__item dt {
  flex-basis: 25%;
  font-weight: 700;
  padding: 30px 0px;
  border-bottom: #eeeeee solid 1px;
}

.company__item dd {
  flex-basis: 75%;
  padding: 30px 0px;
  border-bottom: #eeeeee solid 1px;
}

@media (max-width: 768px) {
  .company__item dt {
    column-width: 100%;
    padding: 0px 0px 5px 0px;
    flex-basis: 100%;
  }

  .company__item dd {
    padding: 5px 0px 45px 0px;
    flex-basis: 100%;
    border-bottom: #eeeeee solid 0px;
  }
}

.company__item dt:first-child {
  border-top: 1px solid #eeeeee;
}

@media (max-width: 768px) {
  .company__item dt:first-child {
    border-top: 0px solid #eeeeee;
  }
}

.company__item dd:nth-child(2) {
  border-top: 1px solid #eeeeee;
}

@media (max-width: 768px) {
  .company__item dd:nth-child(2) {
    border-top: 0px solid #eeeeee;
  }
}

.company__en__text {
  font-size: 1.2rem;
  margin-top: 20px;
}

.company__heading__item {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
  border: #eeeeee solid 1px;
}

.brands__heading__item {
  margin-top: 60px;
}

.company__heading__text {
  margin: 0;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin-top: 20px;
}

.company_access__heading__text {
  margin: 0;
  color: #352294;
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
}

/* company access*/

.company__access__wrapper {
  background: #f9f9f9;
}

.company__access__inner {
  text-align: center;
}

.company__access__map {
  width: 100%;
  margin: 0 auto;
  vertical-align: top;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .company__access__map {
    margin-top: 50px;
  }
}


/* privacy policy */

.privacy__inner {
  margin-top: 80px;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .privacy__inner {
    margin-top: 40px;
  }
}

.privacy__content h4 {
  margin-top: 40px;
}

.privacy__content p {
  margin-top: 20px;
}

.pprivacy__content ol {
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.privacy__content li {
  padding-top: 10px;
  list-style-position: inside;
  padding-left: 10px;
}


.privacy__end__text {
  text-align: right;
}



.title__text--center {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}

.title__text--underline {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding: 10px;
}

.application__item {
  width: 100%;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .application__item {
    margin-top: 40px;
  }
}

.application__item dl {
  display: flex;
  flex-flow: row wrap;
}

.application__item dt {
  flex-basis: 15%;
  font-weight: 700;
  letter-spacing: .2rem;
  padding: 40px 20px;
  border-bottom: #cccccc solid 1px;
}

.application__item dd {
  flex-basis: 85%;
  padding: 40px 20px;
  border-bottom: #cccccc solid 1px;
}

@media (max-width: 768px) {
  .application__item dt {
    column-width: 100%;
    padding: 0px 0px 10px 0px;
    flex-basis: 100%;
    border-bottom: #cccccc solid 1px;
  }

  .application__item dd {
    padding: 10px 0px 45px 0px;
    flex-basis: 100%;
    border-bottom: #cccccc solid 0px;
  }
}

.application__item dt:first-child {
  border-top: 1px solid #cccccc;
}

@media (max-width: 768px) {
  .application__item dt:first-child {
    border-top: 0px solid #cccccc;
  }
}

.application__item dd:nth-child(2) {
  border-top: 1px solid #cccccc;
}

@media (max-width: 768px) {
  .application__item dd:nth-child(2) {
    border-top: 0px solid #cccccc;
  }
}

.application__item__title {
  display: inline-block;
  position: relative;
}

@media (max-width: 768px) {
  .application__item__title {
    left: 20px;
  }
}

.application__item__title:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 20%;
  left: -18px;
  transform: translateX(-50%);
  width: 5px;
  height: 18px;
  background-color: #0B3B6E;
}

@media (max-width: 768px) {
  .application__item__title:before {
    top: 20%;
    height: 16px;
  }
}

.application__item__type {
  font-weight: 700;
  margin-top: 20px;
}

.application__item__text {
  margin-top: 10px;
  margin-bottom: 20px;
}

/* footer nav */

.footer__nav__wrapper {
  background: #0B3B6E;
}

.footer__nav__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (max-width: 768px) {
  .footer__nav__inner {
    padding: 30px 30px;
  }
}

.footer__nav__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__nav__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px 0px;
  }
}

.footer__nav__links {
  font-size: 1.5rem;
  color: #fff;
}

.link_list__buttons_apply a {
  position: relative;
  display: block;
  justify-content: center;
  width: 300px;
  border-radius: 60px;
  padding: 20px;
  background-color: #352294;
  font-size: 20px;
  color: #fff;
  align-items: center;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .link__list__buttons_apply a {
    width: 250px;
    font-size: 16px;
    padding: 10px;
  }
}

.link_list__buttons_contact a {
  position: relative;
  display: block;
  width: 300px;
  border-radius: 60px;
  padding: 20px;
  background-color: #555555;
  font-size: 20px;
  color: #fff;
  align-items: center;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .link__list__buttons_contact a {
    width: 250px;
    font-size: 16px;
    padding: 10px;
  }
}

/* アイコンのスタイル */
.link__list__buttons_icon a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 15px;
  height: 15px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .link__list__buttons_icon a::after {
    width: 10px;
    height: 10px;
  }
}


/* footer */

.footer__icon {
  width: 200px;
  margin: 0 auto;
  text-align: center;
}

.footer__icon img {
  width: 100%;
}

@media (max-width: 768px) {
  .footer__icon img {
    width: 120px;
  }
}

.footer__company_data {
  font-size: 1.5rem;
  letter-spacing: .1rem;
  line-height: 1.5;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__company_data {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.footer__navi-heading {
  font-size: 1.6rem;
  letter-spacing: .1rem;
  margin-bottom: 0.75em;
}

@media (max-width: 768px) {
  .footer__navi-heading {
    font-size: 1.4rem;
    margin-bottom: 0.5em;
  }
}


.footer__grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .footer__grid {
    margin-top: 30px;
  }
}

.md-flex {
  align-items: baseline;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer__link__btn {
  text-align: right;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer__link__btn {
    text-align: left;
  }
}

.footer__list {
  position: relative;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  text-align: center;
}

.footer__list a {
  margin: 20px 20px;
  text-align: left;
}

.footer__list a:hover {
  opacity: .5;
}

.footer__list__company {
  margin-bottom: 8px;
}

.footer__list__logo_subject {
  font-size: 12px;
  font-weight: 700;
  padding-top: 8px;
  padding-left: 20px;
}

.footer__list__logo {
  padding: 20;
  margin-top: 5px;
}

.footer__list__logo_text {
  font-size: 1.0rem;
  line-height: 25px;
  text-align: center;
}

.footer__list__pp {
  font-size: 10px;
  font-weight: 600;
  margin-top: 20px;
}

.footer__list__sns {
  margin-top: 50px;
}

.footer__list__sns img {
  width: 30px;
}

.footer__copyright {
  font-size: 1.2rem;
  letter-spacing: .1rem;
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__copyright {
    font-size: .8rem;
    margin-top: 40px;
  }
}

.common__pagelink__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .common__pagelink__inner {
    justify-content: center;
    margin-top: 0px;
  }
}

.common__pagelink__btn {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 60px;
  padding: .2em 1em;
  /* border-radius: 60px; */
  background: #0B3B6E;
  border-radius: 60px;
  color: #ffffff;
  letter-spacing: 0.1px;
  line-height: 1;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .common__pagelink__btn {
    border-radius: 60px;
  }
}

.common__pagelink__btn::after {
  position: absolute;
  transform: rotate(45deg);
  top: 41%;
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  content: '';
}

/* page top */

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
  width: 60px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

@media (max-width: 768px) {
  #page-top {
    width: 40px;
    right: 20px;
    bottom: 20px;
  }
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*　br　*/

.pc_br {
  display: none;
}

@media (min-width: 960px) {
  .pc_br {
    display: block;
  }
}

.sp_br {
  display: none;
}

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

.common03 {
  position: relative;
  background-color: #ffffff;
  text-align: center;
  padding-top: 105px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .common01 {
    padding-top: 80px;
  }
}

.common04 {
  position: relative;
  background-color: #F2F2F2;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .common04 {
    padding-top: 90px;
  }
}

.common05 {
  position: relative;
  background-color: #ffffff;
  text-align: center;
  margin-top: 150px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .common05 {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.header_top_bg {
  height: 10px;
  background-image: linear-gradient(90deg,
      rgba(186, 3, 3, 1) 0%,
      rgba(234, 255, 0, 1) 25%,
      rgba(67, 195, 91, 1) 50%,
      rgba(52, 48, 148, 1) 75%,
      rgba(179, 29, 196, 1) 100%,
      rgba(255, 0, 0, 1) 100%);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
}

.box01 {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .box01 {
    max-width: 100%;
    margin: 0 auto;
    margin-left: 50px;
    margin-right: 50px;

  }
}

.box02 {
  text-align: center;
  justify-content: center;
  margin-top: 80px;
  max-width: 575px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 60px;
  justify-content: center;
}

@media (max-width: 768px) {
  .box02 {
    display: block;
  }
}

.box_item01 {
  flex: 1 90px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .box_item01 {
    display: block;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 20px;
  }
}

.box_item02 {
  flex: 1 90px;
  margin-bottom: 20px;
}

.box_item03 {
  flex: 1 90px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .box_item03 {
    margin-top: 60px;
  }
}

.arrow {
  position: relative;
  margin-top: 20px;
}

.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 10px solid #352294;
  border-bottom-width: 0;
}

@media (max-width: 768px) {
  .box_item04 {
    width: 100%;
  }
}

.item_list {
  width: 100%;
  max-width: 894px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 20px;
}

@media (max-width: 768px) {
  .item_list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.item {
  margin-top: 20px;
  text-align: center;
}


form {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}

label {
  font-size: 1.5rem;
  text-align: left;
  display: block;
}

@media (max-width: 768px) {
  label {
  font-size: 1.2rem;
  }
}

label span {
  font-size: 1rem;
  padding-left: 5px;
}

select,
option,
input[type=text],
input[type=tel],
input[type=url],
input[type=email] {
  width: 100%;
  height: 50px;
  background: #F0F0F0;
  font-weight: 400;
  margin-bottom: 40px;
  padding: 7px 7px;
  text-align: left;
  display: block;
  box-sizing: none;
}

textarea {
  width: 100%;
  height: 120px;
  background: #F0F0F0;
  margin-top: 5px;
  margin-bottom: 40px;
  padding: 7px 7px;
  text-align: left;
  display: block;
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3f3f3f;
  content: '';
}

.radio__content {
  padding: 10px;
  margin-bottom: 40px;
  background: #F0F0F0;
}

.radio__item {
  margin: 5px;
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  min-width: 180px;
  height: 60px;
  background: #0B3B6E;
  border-radius: 999px;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    height: 48px;
    width: 100%;
    max-width: 320px;
    padding: 0;
  }
}

input[type="submit"]:hover {
  background-color: #0b3b6e7a; /* 少し明るめのブラウン */
  box-shadow: 0 4px 8px rgba(99, 50, 10, 0.25); /* 控えめな浮き影 */
  transform: translateY(-1px); /* ふわっと浮く */
}

input[type="submit"]:active {
  background-color: #0B3B6E;
  box-shadow: 0 2px 4px rgba(99, 50, 10, 0.2);
  transform: translateY(0);
  opacity: 0.95;
}

.click__down a:hover {
  transform: translateY(4px);
}

.click__down {
  transition: 0.2s;
}

.click__down:active {
  transform: translateY(4px);
}

input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  min-width: 180px;
  height: 60px;
  border: 1px solid #0B3B6E;
  border-radius: 99px;
  opacity: 1;
  align-items: center;
  color: #0B3B6E;
  transition: 0.7s;
}

@media (max-width: 768px) {
  input[type="button"] {
    appearance: none;
    -webkit-appearance: none;
    height: 48px;
    width: 100%;
    max-width: 320px;
    padding: 0;
  }
}

input[type="submit"]:hover {
  background-color: #0b3b6e7a; /* 少し明るめのブラウン */
  box-shadow: 0 4px 8px rgba(99, 50, 10, 0.25); /* 控えめな浮き影 */
  transform: translateY(-1px); /* ふわっと浮く */
}

input[type="submit"]:active {
  background-color: #0B3B6E;
  box-shadow: 0 2px 4px rgba(99, 50, 10, 0.2);
  transform: translateY(0);
  opacity: 0.95;
}

.h-adr {
  max-width: 1000px;
  margin: 0 auto;
}

.line__inner {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  border-top: #194C9A solid 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .line__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.line__informaton__text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

.line__account__title {
  margin-top: 10px;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

.line__account__lead {
  margin-top: 10px;
}


.line__title__img {
  margin: 20px 0px;
  text-align: center;
}


.line__title__img {
  margin: 20px 0px;
  text-align: center;
}


.webform__lead {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px;
  align-items: center;
}

.webform__lead ol {
  margin-left: 20px;
}

.webform__lead li {
  text-align: left;
  margin-top: 20px;
}

.webform__title {
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #352294;
}

.tel__number {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

@media (max-width: 768px) {
  .tel__number {
    font-size: 2.4rem;
  }
}


.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 10
}

.tel__supplement {
  font-weight: 500;
}

@media (max-width: 768px) {
  .tel__supplement {
    text-align: left;
  }
}

.tel__attention {
  font-size: 1.4rem;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .tel__attention {
    text-align: left;
  }
}

.webform__inner {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  margin-top: 20px;
  background: #fff;
}

.form__bottom {
  margin-bottom: 80px;
}

.form__inner__text {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .form__inner__text {
    text-align: left;
  }
}

.form__inner__text_as {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .form__inner__text_as {
    text-align: center;
  }
}

.form__required {
  font-size: 1.5rem;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .form__required {
    font-size: 1.2rem;
    margin-top: 30px;
  }
}

.form__required span {
  font-size: 1rem;
}

#formWrap {
  width: 800px;
  margin: 0 auto;
  margin-bottom: 120px;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}

table.formTable td,
table.formTable th {
  display: block;
  text-align: left;
  border-top: 0px solid #eee;
}

table.formTable td {
  width: 100%;
  display: block;
  text-align: left;
  border-top: 1px solid #eee;
}

table.formTable td {
  margin-top: 5px;
}

table.formTable th {
  width: 30%;
  margin-top: 50px;
  text-align: left;
}

p.error_messe {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 0;
  margin-left: 0;
  color: red;
}

@media screen and (max-width:768px) {
  #formWrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 60px;
  }

  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    margin-top: 20px;
    border-bottom: 0;
  }
}

.form_sec03 {
  text-align: center;
}

@media (max-width: 768px) {
  .form_sec03 {
    text-align: left;
  }
}

.form_sec05 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-bottom: 1px solid #352294;
  margin-bottom: 30px;
}

.form_sec06 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-bottom: 1px solid #352294;
  margin-top: 30px;
  margin-bottom: 20px;
}

.form_sec07 {
  font-size: 21px;
  line-height: 20px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .form_sec07 {
    margin-bottom: 120px;
  }
}

.form_sec08 {
  text-align: center;
  font-size: 20px;
}

.form_sec09 {
  text-align: center;
}

.form_sec10 {
  text-align: center;
  margin: 40px 0;
}

.form_sec11 {
  text-align: center;
}

@media (max-width: 768px) {
  .form_sec11 {
    text-align: left;
  }
}

.form_sec12 {
  text-align: center;
}

@media (max-width: 768px) {
  .form_sec12 {
    text-align: left;
  }
}

.form_sec13 {
  margin-top: 40px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #333;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

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

  #top-head,
  .inner {
    width: 100%;
    padding: 0;
  }

  #top-head {
    top: 0;
    position: fixed;
    margin-top: 0;
  }

  /* Fixed reset */
  #top-head.fixed {
    padding-top: 0;
    background: transparent;
  }

  #mobile-head {
    background: #fff;
    width: 100%;
    height: 56px;
    z-index: 999;
    position: relative;
  }

  #top-head.fixed .logo,
  #top-head .logo {
    position: absolute;
    left: 13px;
    top: 13px;
    font-size: 26px;
  }

  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -500px;
    background: #ffffff;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }

  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
  }

  #global-nav ul li {
    float: none;
    position: static;
  }

  #top-head #global-nav ul li a,
  #top-head.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 18px 0;
  }

  #nav-toggle {
    display: block;
  }

  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }
}


.accordion {
  margin-top: 60px;
  margin-bottom: 60px;
}

.accordion-006 {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 7px;
  background-color: #f2f2f2;
  border: #ffffff solid 0px;
  border-radius: 0px;
}

.accordion-006 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2em 2em;
  font-weight: 600;
  cursor: pointer;
}

.accordion-006 summary::-webkit-details-marker {
  display: none;
}

.accordion-006 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-bottom: 2px solid #3d3d3d;
  border-right: 2px solid #3d3d3d;
  content: '';
  transition: transform .3s;
}

.accordion-006[open] summary::after {
  transform: rotate(225deg);
}

.accordion-006 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
  transform: none;
  opacity: 1;
}


.arrow {
  position: relative;
  margin-top: 20px;
  margin-bottom: 50px;
}

.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 10px solid #352294;
  border-bottom-width: 0;
}


.service__title__image {
  position: relative;
  width: 100%;
  height: 500px;
  background: #3d3d3d;
  background-image: url(/img/icon_01.webp);
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
  background-position: center;
}

@media (max-width: 768px) {
  .service__title__image {
    margin-top: 68px;
    height: 250px;
  }
}

.works__title__image {
  position: relative;
  width: 100%;
  height: 500px;
  background: #3d3d3d;
  background-image: url(/img/works_bg.png);
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
}

@media (max-width: 768px) {
  .works__title__image {
    margin-top: 68px;
    height: 250px;
  }
}

.company__title__image {
  position: relative;
  width: 100%;
  height: 500px;
  background: #3d3d3d;
  background-image: url(/img/company_bg.webp);
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
  background-position: bottom;
}

@media (max-width: 768px) {
  .company__title__image {
    margin-top: 68px;
    height: 250px;
  }
}

.recruit__title__image {
  position: relative;
  width: 100%;
  height: 500px;
  background: #3d3d3d;
  background-image: url(/img/recruit_bg.jpg);
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
}

@media (max-width: 768px) {
  .recruit__title__image {
    margin-top: 68px;
    height: 250px;
  }
}

.privacy__title__image {
  position: relative;
  width: 100%;
  height: 500px;
  background: #3d3d3d;
  background-image: url(/img/privacy_bg.jpg);
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
}

@media (max-width: 768px) {
  .privacy__title__image {
    margin-top: 68px;
    height: 250px;
  }
}

.contact__title__image {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url(/img/contact_bg.jpg);
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
}

@media (max-width: 768px) {
  .contact__title__image {
    margin-top: 68px;
    height: 250px;
  }
}

.common__title__text {
  width: 100%;
  display: block;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 5%;
  color: #fff;
}

@media (max-width: 768px) {
  .common__title__text {
    flex-direction: column;
    padding: 0 7%;
    top: 43%;
  }
}

.common__title__text h2 {
  font-weight: 700;
  letter-spacing: .2rem;
  text-align: center;
}

.common__title__text h3 {
  font-weight: 700;
  letter-spacing: .2rem;
}

.common__title__text p {
  letter-spacing: .1rem;
  line-height: 1;
  margin-top: 5px;
  text-align: center;
}

@media (max-width: 768px) {
  .common__title__text p {
    font-size: unset;
  }
}

.common__title__line {
  width: 100%;
  border-top: 1px solid #eee;
}

.service__lead__text {
  font-size: 2rem;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .service__lead__text {
    font-size: 1.6rem;
  }
}

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

@media (max-width: 768px) {
  .service__item__image {
    width: 100%;
  }
}


.service__item__image img {
  width: 70%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .service__item__image img {
    width: 100%;
  }
}

.service__item__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0 80px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .service__item__title {
    flex-direction: column;
    margin-top: 60px;
  }
}

.service__item__text {
  width: 100%;
  text-align: left;
  align-items: center;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .service__item__text {
    margin-top: 40px;
  }
}

.service__item__text h3 {
  color: #0B3B6E;
  font-weight: 700;
  letter-spacing: .1rem;
  margin-top: 20px;
}

.service__item__text h4 {
  margin-top: 40px;
}


.service__item__eng {
  line-height: 1;
  color: #cacaca;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .service__item__eng {
    font-size: unset;
  }
}


/* top brands */
.common__title__txt {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .common__title__txt {}
}

.arrow_u {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.arrow_u:before {
  content: '';
  width: 18px;
  height: 18px;
  border: 0;
  border-bottom: solid 2px #3d3d3d;
  border-right: solid 2px #3d3d3d;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}



.service__links__inner {
  width: 100%;
  margin: 100px 0;
}

@media (max-width: 768px) {
  .service__links__inner {
    margin: 0 0;
  }
}

.service__links__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-top: 30px;
  gap: 0 40px;
}

@media (max-width: 768px) {
  .service__links__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px 0px;
  }
}

.service__links__item_01 {
  width: 100%;
  border: #3d3d3d solid 1px;
  background-image: url(/img/service_image001.jpg);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

@media (max-width: 768px) {
  .service__links__item_01 {
    padding: 0px 0px;
    margin: 0 0;
  }
}

.service__links__item_02 {
  width: 100%;
  border: #3d3d3d solid 1px;
  background-image: url(/img/service_image002.jpg);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

@media (max-width: 768px) {
  .service__links__item_02 {
    padding: 0px 0px;
    margin: 0 0;
  }
}

.service__links__item_03 {
  width: 100%;
  border: #3d3d3d solid 1px;
  background-image: url(/img/service_image003.jpg);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

@media (max-width: 768px) {
  .service__links__item_03 {
    padding: 0px 0px;
    margin: 0 0;
  }
}

.service__links__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  background: #ffffffc0;
}

@media (max-width: 768px) {
  .service__links__btn {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 0px;
    line-height: 1.5;
  }
}

.service__links__btn h3 {
  font-size: 4rem;
  letter-spacing: 1rem;
  line-height: .5;
}

.common__subtitle {
  line-height: 1;
  letter-spacing: .1rem;
  text-align: center;
  margin-top: 15px;
  color: #cacaca;
}

@media (max-width: 768px) {
  .common__subtitle {
    margin-top: 8px;
  }
}


.header__nav__inner {
  display: flex;
  justify-content: center;
}

.header__nav__inner li {
  list-style: none;
}

.header__item {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .1rem;
  transition: background-color .3s;
}

.header__item:hover {
  background-color: #0B3B6Eee;
  color: #fff;
}

.header__item a {
  display: block;
  padding: 27px 20px;
}

.megaMenu {
  background-color: #0B3B6Eee;
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  transition: height .3s;
  width: 100%;
}

.megaMenu-list {
  padding: 0px 0px;
}

.megaMenu-item {
  font-size: 1.5rem;
  letter-spacing: .1rem;
  display: inline-block;
  vertical-align: middle;
  /*縦の表示位置も指定できる*/
  align-items: center;
  justify-content: center;
}

.megaMenu-item__02 {
  display: inline-block;
  width: 180px;
  /*幅も指定できる*/
  vertical-align: middle;
  /*縦の表示位置も指定できる*/
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
}

.megaMenu-item__text {
  margin-top: 20px;
}

/* メニューをhoverした時のスタイル */
.header__item:hover .megaMenu {
  height: 80px;
}

/* レイアウトのためのスタイル */
a {
  text-decoration: none;
}


/***** cms ******/

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
  margin-top: 0px;
}

/* for macIE \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

ul#newsList {
  margin: 0 0 15px;
  padding: 0;
}

ul#newsList li {
  margin: 0px 0;
  padding: 20px 0;
  margin-bottom: 3px;
  border-bottom: 1px solid #eeeeee;
  line-height: 120%;
  list-style-type: none;
}

.catName {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #151515;
  border-radius: 0px;
  line-height: 100%;
  margin: 0 2px;
}

.title__innner {
  display: block;
  margin-top: 5px;
}

.newMark {
  display: inline-block;
  border: 1px solid #F00;
  padding: 1px 4px;
  line-height: 100%;
  background: #F00;
  color: #fff;
}

.comment {
  display: block;
  padding: 3px 0;
  float: left;
  overflow: hidden;
  max-width: 1280px;
  /* 本文部分の幅。ここは特に設置ページ合わせて変更下さい */
}

/* .thumbNailWrap {
	display:block;
	width:110px;
	float:left;
	height:80px;
	overflow:hidden;
} */


.splide__inner {
  margin-top: 0px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .splide__inner {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.partner__inner {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .partner__inner {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.splide__slide {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
}

.splide__slide img {
  width: 500px;
  height: auto;
  /* object-fit: cover; */
}

@media (max-width: 768px) {
  .splide__slide img {
    width: 200px;
    height: auto;
  }
}

.splide__pagination {
  bottom: auto;
  position: absolute;
  bottom: -2em;
}

@media (max-width: 768px) {
  .splide__pagination {
    bottom: -1em;
  }
}

.splide__pagination__page {
  background-color: #63320A;
  height: 8px;
  transition: .5s all;
  width: 8px;
}

.splide__arrow svg {
  fill: #63320A;
  height: 1.2em;
  width: 1.2em;
}

.guide__item__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .guide__item__inner {
    margin-top: 20px;
  }
}


.checklist__item__list {
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .checklist__item__list {
    margin-top: 40px;
  }
}

.checklist__summary__inner {
  border: 1px solid #0B3B6E;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}

.checklist__title {
  font-weight: 600;
}

.checklist__content__inner {
  display: block;
  padding: 0px 0px;
}

.checklist__item__data {
  text-align: left;
  margin: 20px 0;
}

.checklist__item__question {
  font-weight: 600;
  margin-top: 40px;
}

.checklist__item__answer {
  margin-top: 10px;
}

.checklist__item__image {
  margin-top: 40px;
}

.checklist__item__image img {
  border-radius: 5px;
}

.checklist__summary__icon {
  vertical-align: -3px;
  color: #3d3d3d;
  margin-right: 5px;
}

.checklist__item__image {
  display: flex;
  flex-direction: column;
  gap: 20px 0px;
  margin: 20px 0;
  align-items: first baseline;
}

.checklist__item__img {
  display: flex;
}

.checklist__inner {
  padding: 20px 0;
  background: #63320A;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .checklist__inner {
    margin-top: 40px;
  }
}

/* アコーディオン */

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.icon {
  display: flex;
  position: relative;
  width: 16px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .icon {
  transform: rotate(180deg);
}

/* アイコンのバーのスタイル */
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 2%;
  width: 10px;
  height: 2px;
  background-color: #3d3d3d;
}

.icon::before {
  left: 0;
  transform: rotate(45deg);
}

.icon::after {
  right: 0;
  transform: rotate(-45deg);
}

.open__content {
  padding: 0px 30px;
  overflow: hidden;
}

.video__wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  .video__wrapper {
    height: 100vh;
  }
}


.video__wrapper>video {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}


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

/* common__heading h2 */

.common__heading h2 {
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  letter-spacing: .1rem;
  color: #0B3B6E;
}

.common__heading h2:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  border-radius: 40px;
  background-color: transparent;
}

@media (max-width: 768px) {
  .common__heading h2:before {
    width: 50px;
    bottom: -90%;
    left: 50%;
    height: 8px;
  }
}

/* benefit */

.bg__lightgry {
  background-color: #f9f9f9;
}

.benefit__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.benefit__contents {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .benefit__contents {
    gap: 30px;
    padding: 0px;
    margin-top: 40px;
  }
}

.benefit__title {
  text-align: left;
}

@media (max-width: 768px) {
  .benefit__title {
    text-align: center;
  }
}


.benefit__title__text {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  text-align: justify;
}

.benefit__item {
  width: 100%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  justify-content: center;
  padding: 60px 30px;
  background: #ffffff;
  border-radius: 20px;
  border: #0B3B6E solid 2px;
  gap: 30px 0px;
}

@media (max-width: 768px) {
  .benefit__item {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px 0px;
    padding: 40px 20px;
    margin-top: 20px;
  }
}

.benefit__item:hover {
  background-color: rgba(11, 59, 110, 0.05);
}

.benefit__item__text {
  padding: 0px 30px;
}

@media (max-width: 768px) {
  .benefit__item__text {
    padding: 20px 0px;
  }
}

.benefit__item_left {
  width: 15%;
  margin: auto;
  text-align: center;
}

.benefit__item_right {
  width: 85%;
  padding: 0px;
}

@media (max-width: 768px) {
  .benefit__item_right {
    width: 100%;
    padding: 20px 0;
  }
}

.benefit__number {
  font-size: 5.0rem;
}

@media (max-width: 768px) {
  .benefit__number {
    font-size: 2.0rem;
  }
}

.splide__wrapper .container {
  width: 100%;
  margin: 0px auto;
  padding: 0px;
}

@media (max-width: 768px) {
  .splide__wrapper .container {
    padding: 0px 0px;
    padding-bottom: 0px;
  }
}

.splide__inner__02 {
  margin: 20px 0;
}

@media (max-width: 768px) {
  .splide__inner__02 {
    margin: 20px 0;
  }
}

.splide__slide__02 {
  width: 60%;
  display: grid;
  place-content: center;
  aspect-ratio: 4/1;
  border: 1px solid #0B3B6E;
  border-radius: 10px;
  color: #0B3B6E;
}

@media (max-width: 768px) {
  .splide__slide__02 {
    aspect-ratio: 4/1;
    border-radius: 5px;
  }
}

.splide__slide__02 h3 {
  text-align: center;
  width: 250px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .splide__slide__02 h3 {
    width: 180px;
  }
}

.splide__pagination {
  bottom: auto;
  position: absolute;
  bottom: -2em;
}

@media (max-width: 768px) {
  .splide__pagination {
    bottom: -1em;
  }
}

.splide__pagination__page {
  background-color: #40B041;
  height: 8px;
  transition: .5s all;
  width: 8px;
}

.splide__arrow svg {
  fill: #40B041;
  height: 1.2em;
  width: 1.2em;
}

.form__message {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .form__message {
    margin-top: 60px;
  }
}

.form__message h3 {
  text-align: center;
}

.form__message p {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .form__message p {
    margin-top: 20px;
    text-align: left;
  }
}

.form__complete__message {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .form__complete__message {
    margin-top: 60px;
  }
}

.form__complete__message h3 {
  text-align: center;
}

.form__complete__message p {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .form__complete__message p {
    margin-top: 20px;
    text-align: center;
  }
}

.form__complete__attention {
  width: 100%;
  border: 1px solid #cccccc;
  padding: 30px;
  margin-top: 40px;
}

.form__complete__attention h4 {
  text-align: center;
}

.form__complete__attention p {
  text-align: left;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form__complete__attention p {
    text-align: left;
  }
}

.form__btn__item {
  text-align: center;
  margin-top: 60px;
}

.form__btn__double {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .form__btn__double {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}