@charset "UTF-8";
/** -------------------------------- **
	@mixin
*** ----------------------------------------------------------------- ***/
:root {
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --font-default: "Noto Sans JP", sans-serif;
  --header-height: 80px;
  --color-black: #000;
  --color-white: #fff;
  --color-blue: #3381c5;
  --shadow-default: 0 3px 6px rgba(0, 0, 0, 0.16);
  --easing-cubic1: cubic-bezier(0, 0, 0, 1);
}
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-repeat: no-repeat;
  background-origin: border-box;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
body {
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizespeed;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object, hgroup) {
  display: block;
}

:where(img, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  fill: currentcolor;
  stroke: none;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  fill: none;
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentcolor;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

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

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
  list-style-type: "";
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  -ms-touch-action: manipulation;
  cursor: pointer;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(input[type=file])::-webkit-file-upload-button {
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/* 共通 */
/*---------------------------------------------------*/
html {
  font-weight: 500;
  font-size: 18px;
  font-family: var(--font-default);
  overflow-wrap: anywhere;
  scroll-padding-top: 100px;
}

body {
  color: var(--color-txtbase);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  position: relative;
  background-color: var(--color-bg);
  line-height: 1.7777777778;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 2;
}

/* a link
--------------------------------------------- */
a {
  -webkit-transition: color 0.3s ease-out;
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease-out;
}
a:hover {
  color: var(--color-hover-link);
  text-decoration: none;
}

/* リンクを無効にする */
.disabled-link {
  color: #333;
  pointer-events: none;
}
.disabled-link:hover {
  color: #333;
}

.tel-link {
  color: var(--color-black);
  text-decoration: none;
  pointer-events: none;
}

.header {
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.header_logo img {
  width: 100%;
  height: auto;
}

.header_h1 {
  width: 350px;
}

.header_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
  position: relative;
          align-items: center;
  width: 100%;
  height: 80px;
}

.header_menu-inner {
  height: 100%;
}

/** headerブレイクポイント **/
.footer_menu {
  background-color: #265CA7;
  color: #fff;
}

.footer_menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0;
  gap: 50px;
  font-weight: 700;
  font-size: 14px;
}

.footer_menu-inner a:hover {
  color: #FFF;
}

.menu-in {
  padding-left: 45px;
}

.footer_menu-inner .menu-in a:hover {
  color: #FFF;
}

.fa-light.fa-circle-chevron-right {
  color: #fff;
}

.copywriter small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 120px;
  padding: 6px;
  border-top: 1px solid #FFF;
  font-size: 10px;
}

.menu-in li :hover {
  border-bottom: 1px solid #FFF;
  color: #FFF;
}

.arrow_bot2:hover {
  opacity: 0.7;
}

/** footerブレイクポイント **/
.dropdown_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 20px;
}

.dropdown_menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-weight: 500;
  font-size: 16px;
}

.dropdown_menu-item-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 132px;
  height: 100%;
  background-color: #FFEE1F;
  font-weight: 500;
  font-size: 16px;
}

.header_font-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #005DAD;
  font-weight: 700;
  font-size: 16px;
}

.header_font-c1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.dropdown_menu-link {
  line-height: 1.5;
}

.dropdown_menu-link_private {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-weight: 700;
  line-height: 1.5;
}

.dropdown_menu_in {
  position: absolute;
  top: 80px;
  background: #f2f2f2;
  opacity: 0;
  pointer-events: none;
}

.g-menu_dropdown-menu-item {
  border-bottom: 1px solid #ccc;
}

.g-menu_dropdown-menu-item:last-child {
  border-width: 0;
}

.g-menu_dropdown-menu-link {
  display: block;
  padding: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.g-menu_dropdown-menu-link-sp {
  display: block;
  padding: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.dropdown_menu-item:hover .dropdown_menu-link .dropdown_menu-link_private {
  color: #265CA7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.dropdown_menu-item:hover .dropdown_menu_in {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.g-menu_dropdown-menu-link:hover {
  background: skyblue;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.g-menu_dropdown-menu-link-sp:hover {
  border-bottom: 1px solid #FFF;
}

.sp-menu {
  display: none;
}

#company-anchor01,
#company-anchor02,
#company-anchor03,
#company-anchor04,
#company-anchor05,
#company-anchor06 {
  margin-top: -80px;
  padding-top: 80px;
}

/** main-visual **/
.main_visual {
  width: 100%;
  height: auto;
}

.m-visual {
  position: relative;
  margin: 80px auto 0;
}

.top-visual-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
  position: absolute;
  top: 52%;
          align-items: flex-start;
  -webkit-transform: translatey(-50%);
  width: 90%;
  height: 0px;
  margin: 0 auto;
          transform: translatey(-50%);
  color: #fff;
}

.visual-text_en {
  margin-left: 20%;
  font-weight: 700;
  font-size: min(2.75vw, 46px);
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}

.visual-text_sp {
  font-size: min(2vw, 36px);
  font-family: "Zen Old Mincho", serif;
}

.visual-text_co {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
  margin-top: 9em;
  font-weight: 600;
  font-size: min(2vw, 23px);
}

.visual-text_co br {
  display: none;
}

/** top-menu **/
.top-menu {
  height: auto;
}

.main-inner {
  margin-top: 120px;
}

.selection-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  gap: 56px;
  list-style: none;
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 10px solid #005DAD;
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.11);
  -webkit-transition: 0.4s;
  width: 360px;
  height: 460px;
  background-color: #F2F9FF;
  transition: 0.4s;
}

.menu-item:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55%;
  text-align: center;
}

.menu-box_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  height: 100%;
}

.top-menu_text {
  width: 100%;
  height: 45%;
  text-align: start;
}

.top-menu_text-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 10px;
  border-bottom: 2px solid #265CA7;
  color: #265CA7;
}

.top-menu_text-d {
  margin-top: 8px;
}

/** sec-inner **/
.arrow_bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.arrow_bot2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.font-en {
  color: #265CA7;
  font-family: "Inter", sans-serif;
}

.sec-title_position {
  position: absolute;
  top: -50px;
  left: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  width: 100%;
          transform: translateX(-50%);
}

.sec-title_position_1 {
  text-align: center;
}

.font-en_1 {
  color: #FFF;
  font-family: "Inter", sans-serif;
}

.sec_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  color: #333;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.2;
}

.sec_title-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 80px;
}

.sec_stitle-s {
  font-size: 32px;
}

.sec_stitle-s-1 {
  position: relative;
  color: #fff;
  font-size: 32px;
}

.sec_inner {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sec_inner-1 {
  position: relative;
  margin: 200px auto 0;
  padding: 150px 0;
  background-color: #F4F4F4;
}

.sec_inner-2 {
  display: block;
  position: relative;
  height: 875px;
  margin: 170px auto 0;
  text-align: center;
}

.sec_inner-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../images/top/bg.jpg") top/cover;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  position: relative;
          align-items: center;
  height: 1550px;
  margin: 200px auto 0;
  text-align: center;
}

.sec_inner-4 {
  display: block;
  position: relative;
  margin: 150px auto 0;
  text-align: center;
}

.sec_inner-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  position: relative;
          align-items: center;
  height: 730px;
  margin: 200px auto 0;
  background-color: #F2F9FF;
  text-align: center;
}

.sec_inner-6 {
  display: block;
  margin: 0 auto;
  padding: 80px 0;
  background-image: url("../images/top/contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

/** news**/
.news-box_in {
  display: grid;
  max-width: 960px;
  margin: 0 auto;
}

.news-box {
  padding: 15px;
  border-bottom: 1px solid #A7A4A4;
}

.news-box a {
  display: grid;
  grid-template-columns: 30% 70%;
}

.news-box_date {
  font-family: "Inter", sans-serif;
}

.news-box_title {
  margin-left: 30px;
  padding: 3px 10px;
  border: 1px solid #333;
  font-weight: 500;
  font-size: 12px;
}

.news-box:hover .news-box_title {
  border: 1px solid #265CA7;
  background-color: #265CA7;
  color: #FFF;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.news_text {
  width: 100%;
  margin: 60px auto 0;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #FFF;
  color: #005DAD;
  font-weight: 700;
}

.news_text:hover {
  border: 1px solid #FFF;
  border-radius: 25px;
  background-color: #265CA7;
  color: #FFF;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.news_bot {
  max-width: 210px;
  margin: 0 auto;
}

/** about us **/
.s-visual_au {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 0;
}

.top-about-us_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  position: absolute;
  top: 87%;
          justify-content: center;
  text-align: start;
  -webkit-transform: translatey(-50%);
  width: 600px;
  height: 370px;
          transform: translatey(-50%);
  border-top: 10px solid #005DAD;
  background-color: #fff;
}

.top-about-us_text-h {
  margin-top: 50px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}

.description {
  max-width: 560px;
  padding-top: 20px;
  letter-spacing: 0.05em;
}

.about-us_text {
  width: 100%;
  margin-top: 35px;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #FFF;
  color: #005DAD;
  font-weight: 700;
}

.about-us_text:hover {
  border: 1px solid #FFF;
  border-radius: 25px;
  background-color: #265CA7;
  color: #FFF;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.about-us_bot {
  max-width: 210px;
}

/** FEATURE **/
.feature-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1200px;
  gap: 35px;
}

.feature-box_in {
  display: grid;
  grid-template-columns: 25% 75%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 230px;
  padding-right: 9%;
  background-color: #fff;
}

.feature-box_dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter", sans-serif;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  height: 100%;
  border-top: 10px solid #005DAD;
  color: #265CA7;
}

.feature-box_h {
  font-size: 26px;
}

.feature-box_number {
  border-top: 1px solid #345BA2;
  font-size: 80px;
  line-height: 1.3;
}

.feature-box_text {
  text-align: left;
}

.feature_h {
  font-weight: 700;
  font-size: 24px;
  line-height: 2.5;
}

/** STAFF **/
.slider.slick-initialized.slick-slider {
  padding: 160px 0 10px 0;
}

.slide-container {
  max-width: 1200px;
  margin: 80px auto;
}

.slider {
  width: 100%;
}

.slide-img img {
  width: 80%;
  margin: 0 auto;
}

.slick-img img {
  width: 100%;
  height: auto;
}

.staff_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #FFF;
  color: #005DAD;
  font-weight: 700;
}

.staff_text:hover {
  border: 1px solid #FFF;
  border-radius: 25px;
  background-color: #265CA7;
  color: #FFF;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.staff_bot {
  max-width: 210px;
  margin: 0 auto;
}

.slick-arrow::before {
  content: "" !important;
}

.slick-arrow::before {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  content: "" !important;
}

.slick-next::before {
  background: url("../images/top/arrow.svg") !important;
  background-size: contain !important;
}

.slick-prev::before {
  background: url("../images/top/arrow2.svg") !important;
  background-size: contain !important;
}

.slider .slick-prev {
  left: 93%;
}

.slider .slick-next {
  right: 1%;
}

.slider .slick-prev,
.slider .slick-next {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  z-index: 100;
  top: 30% !important;
}

.slick-dots li.slick-active button::before {
  color: #265CA7;
  opacity: 1;
}

.slick-dots li button::before {
  color: #265CA7;
}

.slick-dots li button {
  color: #265CA7;
}

/** ACCESS **/
iframe.map-frame {
  height: 100%;
}

.top-access_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 1200px;
  height: 450px;
  margin: 0 auto;
}

.map {
  width: 50%;
}

.access {
  width: 47%;
  margin-left: 3%;
}

.access dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.access dt {
  width: 20%;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: left;
}

.access dd {
  width: 80%;
  margin-bottom: 15px;
  text-align: left;
}

/** CONTACT **/
.contact_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 610px;
  margin: 0 auto;
  gap: 20px;
}

.company_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 620px;
  margin: 30px auto 20px;
  color: #FFF;
  font-size: 23px;
  letter-spacing: 0.01em;
}

.contact_inner_phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5;
}

.contact_inner_phone span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_inner-time small {
  font-size: 14px;
}

.contact_inner-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
  color: #fff;
}

.contact_inner-time p {
  font-weight: 700;
  font-size: 34px;
}

p.contact_inner_text {
  font-size: 24px;
}

.contact_bot {
  width: 230px;
  margin: 0 auto;
}

.contact_inner-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #FFF;
  color: #005DAD;
  font-weight: 700;
}

.contact_inner-mail:hover {
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #265CA7;
  color: #FFF;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/** -------------------------------- **
TOPページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** main-visualブレイクポイント **/
/** top-menuブレイクポイント **/
/** sec-innerブレイクポイント **/
/** newsブレイクポイント **/
/** about-usブレイクポイント **/
/** featureブレイクポイント **/
/** staffブレイクポイント **/
/** accessブレイクポイント **/
/** contactブレイクポイント **/
/** (TOPページend)  -------------------------------- **



/** -------------------------------- **
(ABOUT-USページ)
  inner
*** ----------------------------------------------------------------- ***/
/** アンカーリンク **/
.page-company_link {
  max-width: 960px;
  margin: 60px auto 120px;
}

.page-company_link_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.page-company_link_list-item {
  position: relative;
  height: 160px;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-company_link_list-item:first-of-type {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link01_off.jpg");
}

.page-company_link_list-item:first-of-type:hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link01_on.jpg");
}

.page-company_link_list-item:nth-child(2) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link02_off.jpg");
}

.page-company_link_list-item:nth-child(2):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link02_on.jpg");
}

.page-company_link_list-item:nth-child(3) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link04_off.jpg");
}

.page-company_link_list-item:nth-child(3):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link04_on.jpg");
}

.page-company_link_list-item:nth-child(4) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link03_off.jpg");
}

.page-company_link_list-item:nth-child(4):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link03_on.jpg");
}

.page-company_link_list-item:nth-child(5) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link05_off.jpg");
}

.page-company_link_list-item:nth-child(5):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link05_on.jpg");
}

.page-company_link_list-item:nth-child(6) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link06_off.jpg");
  background-position: center;
}

.page-company_link_list-item:nth-child(6):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/page-link06_on.jpg");
}

.page-company_link_list-item .link-text {
  display: grid;
  position: absolute;
  top: 50%;
  left: 30px;
  row-gap: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-company_link_list-item .link-text .link-text_en {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.page-company_link_list-item .link-text .link-text_ja {
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.page-company_link_list-item::after {
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/common/arrow02_bottom_icon.svg");
  background-repeat: no-repeat;
  content: "";
}

/** POLICY -------------------------------- **/
.policy-sec {
  margin-bottom: 50px;
  padding: 160px 0;
  background: url("../images/company/policy-bg-pc.png") no-repeat top right;
}

.about-policy-contents {
  max-width: 960px;
  margin: 0 auto 160px;
}

.about-policy-contents-inner {
  margin-top: 80px;
}

.page-title_h3_en {
  margin-bottom: 20px;
  color: #265CA7;
  font-size: 48px;
  line-height: 0.9;
  font-family: "Inter", sans-serif;
}

.page-title_h3_ja {
  font-weight: normal;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
}

.about-policy-contents_text {
  margin-bottom: 60px;
}

.policy-text {
  font-weight: 700;
}

div#company-anchor01 p {
  margin: 0 0 80px 20px;
}

.policy-mission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin: 0 auto;
}

/** BUSINESS -------------------------------- **/
.about-business-contents {
  max-width: 960px;
  margin: 0 auto 160px;
}

.about-business-contents-inner {
  margin-top: 80px;
}

.page-title_h3_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #265CA7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.page-title_h3_02 .page-title_h3_02_text {
  white-space: nowrap;
}

.page-title_h3_02::after {
  width: 100%;
  height: 1px;
  background-color: #265CA7;
  content: "";
}

.page-title_h3_02::after {
  margin-left: 40px;
}

.about-business-contents-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.about-business-contents-wrap_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
  gap: 20px;
}

.about-business-contents_image {
  position: relative;
  height: 130px;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-business-contents_image:first-of-type {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img01_off.jpg");
}

.about-business-contents_image:first-of-type:hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img01_on.jpg");
}

.about-business-contents_image:nth-child(2) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img02_off.jpg");
}

.about-business-contents_image:nth-child(2):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img02_on.jpg");
}

.about-business-contents_image:nth-child(3) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img03_off.jpg");
}

.about-business-contents_image:nth-child(3):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img03_on.jpg");
}

.about-business-contents_image:nth-child(4) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img04_off.jpg");
}

.about-business-contents_image:nth-child(4):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img04_on.jpg");
}

.about-business-contents_image2 {
  position: relative;
  height: 130px;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-business-contents_image2:first-of-type {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img05_off.jpg");
}

.about-business-contents_image2:first-of-type:hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img05_on.jpg");
}

.about-business-contents_image2:nth-child(2) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img06_off.jpg");
}

.about-business-contents_image2:nth-child(2):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img06_on.jpg");
}

.about-business-contents_image2:nth-child(3) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img07_off.jpg");
}

.about-business-contents_image2:nth-child(3):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img07_on.jpg");
}

.about-business-contents_image2:nth-child(4) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img08_off.jpg");
}

.about-business-contents_image2:nth-child(4):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/company-img08_on.jpg");
}

/* .about-business-contents_image {
  width: 23.4%;
} */
.about-business-contents_caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
  position: absolute;
  top: 50%;
          align-items: center;
  -webkit-transform: translateY(-50%);
  width: 100%;
          transform: translateY(-50%);
  color: #FFF;
  font-weight: 700;
  font-size: 22px;
}

.about-business-contents_image::after {
  display: inline-block;
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 24px;
  height: 24px;
  background: url("../images/top/arrow.svg") no-repeat center right;
  content: "";
}

.about-business-contents_image2::after {
  display: inline-block;
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 24px;
  height: 24px;
  background: url("../images/top/arrow.svg") no-repeat center right;
  content: "";
}

.outsourcing_bot {
  max-width: 210px;
  margin: 0 auto;
}

.outsourcing_text {
  width: 100%;
  margin: 0 auto 100px;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #FFF;
  color: #005DAD;
  font-weight: 700;
}

.outsourcing_text:hover {
  width: 100%;
  margin: 0 auto 100px;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #005DAD;
  color: #FFF;
  font-weight: 700;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.consulting_bot {
  max-width: 210px;
  margin: 0 auto;
}

.consulting_text {
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #FFF;
  color: #005DAD;
  font-weight: 700;
}

.consulting_text:hover {
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #005DAD;
  color: #FFF;
  font-weight: 700;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/** OVERVIEW -------------------------------- **/
.overview-sec {
  padding: 100px 0 130px;
  background: #F4F4F4;
}

.about-overview-contents {
  max-width: 960px;
  margin: 0 auto;
}

.about-overview-contents-inner {
  margin-top: 80px;
}

.table-layout01 {
  width: 100%;
  margin-bottom: 100px;
  background: #fff;
  font-weight: 700;
}

.table-layout01 th,
.table-layout01 td {
  padding: 13px;
}

.table-layout01 tr th {
  width: 22.9%;
  border-top: 2px solid #7d98bd;
}

.table-layout01 tr td {
  padding-left: 130px;
  border-top: 2px solid #d3d2d2;
}

.table-layout01 tr:first-child th,
.table-layout01 tr:first-child td {
  border-top: 2px solid #3B66AB;
}

table.table-layout01 th {
  font-size: 14px;
}

table.table-layout01 td {
  font-size: 18px;
}

.table-layout01 tr:not(:first-child) th {
  border-top: 2px solid #7d98bd;
}

.table-layout01 tr::not(:first-child) td {
  border-top: 2px solid #d3d2d2;
}

.table-layout01 tr:last-child th {
  border-bottom: 2px solid #7d98bd;
  vertical-align: top;
}

.table-layout01 tr:last-child td {
  border-bottom: 2px solid #d3d2d2;
}

.table-layout01 .page-title_h3_02_irregular {
  margin-left: 1em;
}

.page-list-mark li {
  position: relative;
}

/* .page-list-mark li::before {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 11px;
  content: "";
  background: #265CA7;
} */
.page-title_h3_02_irregular {
  margin-left: 1em;
}

/** HISTORY -------------------------------- **/
.about-history-sec {
  padding: 160px 0;
  background: url("../images/company/history-bg-pc.png") no-repeat left top;
  background-size: cover;
}

.about-history-contents {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 100px 50px;
  background: #fff;
}

.about-history-table {
  width: 100%;
  margin-top: 100px;
}

table.about-history-table {
  background-image: url(/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/history.jpg);
  background-position: right top;
  background-repeat: no-repeat;
}

.about-history-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-history-table th {
  display: block;
  position: relative;
  width: 180px;
  margin-top: -10px;
  padding-bottom: 130px;
  color: #265CA7;
  font-size: 44px;
  line-height: 0.6;
  text-align: center;
}

.about-history-table th span {
  font-size: 14px;
}

.about-history-table th::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #265CA7;
  content: "";
}

.about-history-table tr:last-child th::after {
  background: none;
}

.about-history-table td {
  display: block;
}

.about-history-table td ul {
  margin-top: -20px;
}

.about-history-table td ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-weight: 700;
  line-height: 37.5px;
}

.about-history-table .about-history-table-mark {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #265CA7;
}

.about-history-table-month {
  margin-right: 20px;
  color: #265CA7;
  font-weight: bold;
}

.about-history-table-month-irregular {
  margin-left: 0.7em;
}

/** STAFF -------------------------------- **/
.about-staff-sec {
  padding: 160px 0 100px;
  background: #F2F9FF;
}

.about-staff-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 704px;
  margin: 80px auto 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-staff-list01 div {
  width: 29.5%;
  text-align: center;
}

.about-staff-list01_name {
  display: inline-block;
  margin-top: 30px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}

.about-staff-list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-staff-list02 div {
  width: 17.3%;
  margin-bottom: 40px;
  text-align: center;
}

/** RECRUIT -------------------------------- **/
.recruit-sec {
  padding: 100px 0 0;
}

.about-recruit-contents {
  max-width: 960px;
  margin: 160px auto 330px;
}

.about-recruit-contents-inner {
  margin-top: 80px;
}

.table-layout02 {
  width: 100%;
}

.table-layout02 th,
.table-layout02 td {
  padding: 20px;
  border-top: 2px solid #d3d2d2;
}

.table-layout02 th {
  width: 33.3%;
  background: #F4F4F4;
}

.table-layout02 tr:last-child th,
.table-layout02 tr:last-child td {
  border-bottom: 2px solid #d3d2d2;
}

.table-layout02-list li {
  position: relative;
  padding-left: 20px;
}

.table-layout02-list li::before {
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  content: "";
}

.table-layout03 {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.1em;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table.table-layout03 th {
  padding: 15px;
  background-color: #3B66AB;
  color: white;
  text-align: left;
}

table.table-layout03 td {
  padding: 15px;
  text-align: left;
}

table.table-layout03 col {
  width: 50%;
}

table.table-layout03 tr:nth-child(even) {
  background-color: #f2f2f2;
}

table.table-layout03:not(:last-of-type) {
  margin-bottom: 35px;
}

.table-layout04 {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.1em;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table.table-layout04 th {
  padding: 15px;
  background-color: #3B66AB;
  color: white;
  text-align: left;
}

table.table-layout04 td {
  padding: 15px;
  text-align: left;
}

table.table-layout04 col {
  width: 25%;
}

table.table-layout04 tr:nth-child(even) {
  background-color: #FFF;
}

table.table-layout04:not(:last-of-type) {
  margin-bottom: 35px;
}

.table-layout05 {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.1em;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table.table-layout05 th {
  padding: 15px;
  background-color: #3B66AB;
  color: white;
  text-align: left;
}

table.table-layout05 td {
  padding: 15px;
  text-align: left;
}

table.table-layout05 col {
  width: 25%;
}

table.table-layout05 tr:nth-child(even) {
  background-color: #FFF;
}

/** -------------------------------- **
ABOUT-USページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** (ABOUT-USページend)  -------------------------------- **



/** -------------------------------- **
(SERVICE&REWARDページ)
  inner
*** ----------------------------------------------------------------- ***/
/** アンカーリンク **/
.page-service_link {
  max-width: 1200px;
  margin: 80px auto 160px;
}

.page-service_link_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.page-service_link_list-item:first-of-type {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/service/page-link01_off.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.page-service_link_list-item:first-of-type:hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/service/page-link01_on.jpg");
}

.page-service_link_list-item:nth-child(2) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/service/page-link02_off.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.page-service_link_list-item:nth-child(2):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/service/page-link02_on.jpg");
}

.page-service_link_list-item:nth-child(3) {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/service/page-link03_off.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.page-service_link_list-item:nth-child(3):hover {
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/service/page-link03_on.jpg");
}

.page-service_link_list-item {
  position: relative;
  height: 180px;
}

.page-service_link_list-item .link-text {
  display: grid;
  position: absolute;
  top: 50%;
  left: 30px;
  row-gap: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-service_link_list-item .link-text .link-text_en {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.page-service_link_list-item .link-text .link-text_ja {
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.page-service_link_list-item::after {
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  background-image: url("/ad-u-roumu/wp-content/themes/u-roumu/assets/images/common/arrow02_bottom_icon.svg");
  background-repeat: no-repeat;
  content: "";
}

/** アウトソーシング **/
.sec_service-reward {
  padding: 160px 0 240px;
}

.sec_service-reward:last-of-type {
  padding-bottom: 320px;
}

.service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 100px;
}

.sec_service-reward .service_list-item h3 {
  color: #265ca7;
  font-size: 32px;
  line-height: 1.5;
}

.sec_service-reward .service_list-item figure {
  position: relative;
  margin: 40px 0;
}

.sec_service-reward .service_list-item figure img {
  z-index: 1;
  position: inherit;
}

.sec_service-reward .service_list-item figure::after {
  display: block;
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: 260px;
  height: 260px;
  border: 1px solid #265ca7;
  content: "";
}

.sec_service-reward .service_list-item ul {
  display: grid;
  row-gap: 16px;
}

.sec_service-reward .service_list-item ul li::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 50em;
  background-color: #265ca7;
  content: "";
}

#social-insurance,
#labor-insurance,
#payroll-calculation,
#special-addition,
#labor-consultation,
#work-rules-etc,
#seminar,
#subsidy {
  margin-top: -80px;
  padding-top: 80px;
}

.service_flow {
  max-width: 840px;
  margin: 100px auto 0;
}

.service_flow .service_flow_title span {
  color: #265ca7;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.service_flow .service_flow_title {
  position: relative;
}

.service_flow .service_flow_title::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 263px;
  height: 1px;
  background-color: #265ca7;
  content: "";
  -webkit-transform: translateY(-50%);
  right: 0;
          transform: translateY(-50%);
}

.service_flow_list {
  display: grid;
  row-gap: 80px;
  margin-top: 100px;
}

.service_flow_list-item {
  padding: 40px 70px 15px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  position: relative;
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.service_flow_list-item::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 710px;
  height: 2px;
  background-color: #265ca7;
  content: "";
}

.service_flow_list-num {
  position: absolute;
  top: -60px;
  left: -28px;
}

.service_flow_list-num span {
  display: inline-block;
  color: #265ca7;
  font-style: italic;
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.service_flow_list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.service_flow_list-image {
  max-width: 220px;
}

.service_flow_list-text h4 {
  margin-bottom: 20px;
  color: #265ca7;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.5;
}

.price-table {
  padding: 0 20px;
}

.price-table-flow {
  overflow-x: scroll;
}

.price-table__caption01 {
  position: relative;
  padding: 10px 10px 10px 40px;
  font-weight: bold;
  font-size: 24px;
}

.price-table__caption01::before {
  position: absolute;
  bottom: 45%;
  left: 0;
  width: 30px;
  border-bottom: 2px solid #3B66AB;
  content: "";
}

.price-table__caption01-2 {
  color: #3B66AB;
  font-weight: 700;
  font-size: 18px;
}

.price-table__caption02 {
  padding: 10px;
  font-size: 18px;
}

.price-table__caption02 span {
  font-size: 24px;
}

.achievements-table {
  padding: 0 20px;
}

.achievements-table_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 50px;
  gap: 30px;
}

.achievements-table__caption01-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45.5%;
  color: #3B66AB;
  font-weight: 700;
  font-size: 18px;
}

/** タブ **/
.page-tab_contents {
  max-width: 1200px;
  margin: 100px auto 0;
}

.tab-menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.tab-menu_list-item {
  padding: 0 40px 20px;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.tab-menu_list-item:hover {
  color: #265ca7;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.tab-menu_list-item.js_tab-active {
  position: relative;
  border-bottom: solid 1px #333;
  color: #265ca7;
}

.tab-menu_list-item.js_tab-active::before {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 17px solid transparent;
  border-top: 21px solid #333;
}

.tab-menu_list-item.js_tab-active::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  -webkit-transform: translateX(-50%);
  margin-top: -5px;
          transform: translateX(-50%);
  border: 20px solid transparent;
  border-top: 24px solid #f4f4f4;
}

.tab-content {
  margin-top: 80px;
}

.tab-content_box {
  display: none;
}

.tab-content_box.js_tab-active {
  display: block;
}

.tab.js_tab-active {
  background-color: #000;
  color: #fff;
}

/** タブ02 **/
.tab-menu02_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.tab-menu02_list-item {
  padding: 0 40px 20px;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.tab-menu02_list-item:hover {
  color: #265ca7;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.tab-menu02_list-item.js_tab-active02 {
  position: relative;
  border-bottom: solid 1px #333;
  color: #265ca7;
}

.tab-menu02_list-item.js_tab-active02::before {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 17px solid transparent;
  border-top: 21px solid #333;
}

.tab-menu02_list-item.js_tab-active02::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  -webkit-transform: translateX(-50%);
  margin-top: -5px;
          transform: translateX(-50%);
  border: 20px solid transparent;
  border-top: 24px solid #fff;
}

.tab-content {
  margin-top: 90px;
}

.tab-content_box02 {
  display: none;
}

.tab-content_box02.js_tab-active02 {
  display: block;
}

/** タブ03 **/
.page-title_h3_02_text span {
  margin-left: 10%;
  font-size: 23px;
}

.achievements-table_in div {
  width: 100%;
  margin-bottom: 20px;
}

.achievements-table__caption02 {
  padding: 10px;
  font-size: 14px;
}

.achievements-table__caption02 span {
  font-size: 20px;
}

.achievements-table__caption01 {
  position: relative;
  padding: 10px 10px 10px 40px;
  font-weight: bold;
  font-size: 20px;
}

span.achievements-table__caption01::before {
  position: absolute;
  bottom: 45%;
  left: 0;
  width: 30px;
  border-bottom: 2px solid #3B66AB;
  content: "";
}

/** -------------------------------- **
SERVICE&REWARDページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** アウトソーシングブレイクポイント **/
/** タブ02ブレイクポイント **/
/** タブ03ブレイクポイント **/
/** (SERVICE&REWARDページend)  -------------------------------- **



/** -------------------------------- **
(NEWSページ)
  inner
*** ----------------------------------------------------------------- ***/
/** details_news_main-visual **/
.page-kv {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.page-kv_image {
  max-width: 990px;
}

/** キービジュアル **/
.page-inner {
  margin: 160px 0 0;
}

.page-kv_title {
  position: absolute;
  right: 0;
  bottom: -10px;
  text-align: right;
}

.page-kv_title_contents {
  display: grid;
  row-gap: 20px;
}

.page-kv_title .page-kv_title_ja {
  font-weight: normal;
  font-size: 28px;
  line-height: 1;
}

.page-kv_title .page-kv_title_en {
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

/** パンくずリスト **/
.breadcrumbs-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.breadcrumbs-wrap a {
  position: relative;
}

.breadcrumbs-wrap a:last-of-type::after {
  content: none;
}

.breadcrumbs-wrap .breadcrumbs_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumbs-wrap .breadcrumbs_lists span {
  color: #265ca7;
  font-size: 15px;
}

.breadcrumbs-wrap .home span {
  font-size: 14px;
}

.breadcrumbs-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

/** details_news **/
.details_news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 100px auto 300px;
}

.details_etailssec_inner-1 {
  width: 760px;
}

.details_news-box_in {
  max-width: 100%;
  margin: 0 auto;
  border-top: 1px solid #A7A4A4;
}

.details_news-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 42px 15px 40px 15px;
  border-bottom: 1px solid #A7A4A4;
}

.details_news-box_date {
  font-family: "Inter", sans-serif;
}

.details_news-box_title {
  margin-left: 30px;
  padding: 3px 10px;
  border: 1px solid #333;
  font-weight: 500;
  font-size: 12px;
}

.details_news-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.c-page-nation {
  margin-top: 80px;
}

.c-pager-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.c-pager-lists li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: 400;
  font-size: 30px;
  font-family: "Inter", sans-serif;
}

.c-pager-lists-ac {
  border-bottom: 1px solid #265CA7;
  color: #265CA7;
}

.pager-lists-arr img {
  max-width: 100%;
  height: 16px;
}

.conts-inner a.active {
  border-bottom: 1px solid #265CA7;
  color: #265CA7;
}

/** details_news_sidebar **/
.details_news_sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 27px 20px;
  gap: 70px;
  background-color: #F4F4F4;
}

.news_sidebar_in {
  width: 240px;
  border-bottom: 1px solid #265CA7;
}

.news_category_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10px;
  gap: 10px;
}

.news_sidebar_h {
  color: #265CA7;
  font-size: 24px;
  font-family: "Inter", sans-serif;
}

.news_sidebar_text {
  font-size: 14px;
}

.news_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}

.news_category_in li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}

.news_category_in .is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter", sans-serif;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  color: #265CA7;
  font-weight: 700;
  font-size: 16px;
}

.news_category:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter", sans-serif;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #265CA7;
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news_category_in li:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter", sans-serif;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #265CA7;
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news_category_in li::before {
  content: "\f054";
  font-family: "FontAwesome";
  vertical-align: middle;
}

/** -------------------------------- **
 NEWSページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** main-visual,キービジュアルブレイクポイント **/
/** パンくずリストブレイクポイント **/
/** details_newsブレイクポイント **/
/** details_news_sidebarブレイクポイント **/
/** -------------------------------- **
(NEWS詳細ページ)
  inner
*** ----------------------------------------------------------------- ***/
/** top_title **/
.details_news_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto 300px;
}

.page-kv_title_in {
  max-width: 1200px;
  margin: 40px auto 0;
}

.page-kv_title_in .page-kv_title_ja {
  font-weight: normal;
  font-size: 28px;
  line-height: 1;
}

.page-kv_title_in .page-kv_title_en {
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.details_news_bc {
  margin-bottom: 30px;
  padding: 10px;
  background-color: #F2F9FF;
}

.details_news_h1 {
  margin: 0 0 0 10px;
  padding-left: 30px;
  border-left: 4px solid #265CA7;
  color: #265CA7;
  font-weight: 500;
  font-size: 28px;
}

.details_news_h2 {
  margin: 80px 0 10px 0;
  color: #265CA7;
  font-size: 26px;
}

.details_news_h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 55px 0 30px 0;
  font-weight: 500;
  font-size: 24px;
}

.details_news_h3::before {
  display: inline-block;
  width: 30px;
  height: 2px;
  margin-right: 10px;
  background-color: #A7A4A4;
  content: "";
}

.details_news_h4 {
  font-weight: 700;
}

/** news_img **/
.details_news_page-kv {
  margin: 30px auto;
}

.pager-lists-arr1 img {
  -webkit-transform: rotate(180deg);
  max-width: 100%;
  height: 16px;
          transform: rotate(180deg);
}

.pager-lists-arr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.arrow3_text_r {
  font-weight: 700;
  font-size: 20px;
}

.pager-lists-arr1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.arrow3_text_l {
  font-weight: 700;
  font-size: 20px;
}

.conts-inner.pagenation_inner {
  margin-top: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid #A7A4A4;
}

.details_news_list ul li::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 50em;
  background-color: #265ca7;
  content: "";
}

/** -------------------------------- **
NEWS詳細ページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** top_titleブレイクポイント **/
/** news_imgブレイクポイント **/
/** (NEWSページend)  -------------------------------- **



/** -------------------------------- **
(お問い合わせ詳細ページ)
  inner
*** ----------------------------------------------------------------- ***/
/** contact-consent **/
.contact-consent {
  width: 90%;
  max-width: 1000px;
  margin: 80px auto 0;
}

.contact-consent_inner {
  color: red;
}

.contact-consent_in {
  margin: 15px 0 0 0;
  font-weight: 700;
  font-size: 18px;
}

.contact-consent-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 0 20px;
  line-height: 1.6;
}

.contact-consent-text_in {
  padding-left: 5px;
}

.contact-consent-text_in1 {
  padding-left: 30px;
}

.contact-consent-text_in1:last-child {
  padding-bottom: 30px;
}

.contact-consent-li li {
  margin-left: 20px;
  list-style: disc;
}

.contact-consent-botton {
  width: 210px;
  margin: 50px auto;
}

.contact-consent-botton-text {
  width: 100%;
  margin: 0 auto 100px;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #FFF;
  color: #005DAD;
  font-weight: 700;
}

.contact-consent-botton-text:hover {
  width: 100%;
  margin: 0 auto 100px;
  padding: 10px 20px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #005DAD;
  color: #FFF;
  font-weight: 700;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/** -------------------------------- **
お問い合わせ詳細ページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** ブレイクポイント **/
/** ブレイクポイント **/
/** (お問い合わせページend)  -------------------------------- **



/** -------------------------------- **
(DOWNLOADMEMBERS-ONLYページ)
  inner
*** ----------------------------------------------------------------- ***/
.download-contents {
  max-width: 960px;
  margin: 100px auto 0;
}

.download-contents-inner {
  margin-top: 80px;
}

.download-contents-inner:first-of-type {
  margin-top: 50px;
}

.download-contents-inner_last {
  margin-bottom: 160px;
  padding-bottom: 160px;
  border-bottom: 1px solid #A7A4A4;
}

.download-contents-inner_text {
  margin-bottom: 20px;
}

.common_botn_text {
  position: relative;
  width: 210px;
  margin-top: 10px;
  padding: 10px 20px 10px;
  border: 1px solid #265CA7;
  border-radius: 25px;
  background-color: #FFF;
  color: #005DAD;
  font-weight: 700;
}

.common_botn_text:hover {
  border: 1px solid #FFF;
  border-radius: 25px;
  background-color: #265CA7;
  color: #FFF;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.common_botn_text::after {
  display: block;
  position: absolute;
  top: 23%;
  right: 20px;
  width: 24px;
  height: 22px;
  background: url("../images/common/download_icon.svg");
  content: "";
}

.common_botn_text:hover::after {
  background: url("../images/common/download_icon_white.svg");
}

.common_botn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}

.common_botn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.common_botn_img {
  width: 24px;
}

.title-layout {
  padding: 0.25em 0.5em;
  border-left: solid 5px #a7a4a4;
  background: transparent;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
}

.download-contents-inner02 {
  margin: 65px 0 320px;
}

.list-layout {
  margin-top: 40px;
}

.list-layout li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 22px;
}

.list-layout li::before {
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #265CA7;
  content: "";
}

.list-layout li a {
  color: #265CA7;
  text-decoration: underline;
}

.list-layout li a:hover {
  text-decoration: none;
}

/** -------------------------------- **
DOWNLOADMEMBERS-ONLYページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** (DOWNLOADMEMBERS-ONLYページend)  -------------------------------- **



/** -------------------------------- **
(404ページ)
  inner
*** ----------------------------------------------------------------- ***/
.sec_page-error {
  padding-bottom: 160px;
}

.page-error_image {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 40px;
}

.page-error_tile-wrap {
  margin-bottom: 40px;
}

.page-error_tile {
  display: grid;
  row-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-error_tile-en {
  padding: 0 10px 20px;
  border-bottom: 1px solid #265ca7;
  color: #265ca7;
  font-weight: 400;
  font-size: 64px;
  font-family: "Inter", sans-serif;
}

.page-error_tile-ja {
  font-size: 32px;
  text-align: center;
}

.page-error_text {
  text-align: center;
}

.page-error_bot_wrap {
  margin-top: 35px;
  text-align: center;
}

.page-error_bot {
  display: inline-block;
  min-width: 210px;
  height: 100%;
  padding: 10px 20px;
  border: 1px solid #265ca7;
  border-radius: 25px;
  background-color: #fff;
}

.page-error_bot-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #265ca7;
  font-weight: 700;
}

.btn_icon-arrow {
  padding-left: 20px;
  line-height: 1;
}

.page-error_bot-text .btn_icon-arrow img {
  vertical-align: middle;
}

.page-error_bot:hover {
  background-color: #265ca7;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.page-error_bot:hover .page-error_bot-text {
  color: #fff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/** -------------------------------- **
404ページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** (404ページend) -------------------------------- **



/** -------------------------------- **
(プライバシーポリシーページ　ページ)
  inner
*** ----------------------------------------------------------------- ***/
.sec_privacy {
  padding: 100px 0 240px;
}

.privacy_contents {
  max-width: 960px;
  margin: 100px auto 0;
}

.ordered-list {
  display: grid;
  row-gap: 60px;
}

.ordered-list p a:not([href]):not([tabindex]) {
  color: #265ca7;
  font-weight: bold;
  text-decoration: underline;
}

.ordered-list_item {
  display: grid;
  row-gap: 20px;
}

.ordered-list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ordered-list_title .list-title_num {
  margin-right: 10px;
  padding-right: 20px;
  border-right: 1px solid #265ca7;
  color: #265ca7;
  font-weight: normal;
  font-size: 44px;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.ordered-list_title .list-title_name {
  color: #265ca7;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.contents-notice {
  margin-top: 120px;
  padding-top: 80px;
  border-top: 1px solid #a7a4a4;
}

.contents-notice_date {
  display: block;
  margin-bottom: 40px;
}

.contents-notice_contact dl dt {
  margin-bottom: 20px;
  font-weight: bold;
}

.contents-notice_contact dl dd {
  margin-bottom: 16px;
  line-height: 1.5;
}

.public-link {
  color: #265ca7;
  font-weight: bold;
  text-decoration: underline;
}

/** -------------------------------- **
プライバシーポリシーページ、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** (プライバシーポリシーページend) -------------------------------- **

/** -------------------------------- **
(「個人情報の保護に関する法律」に基づく公表事項ページ)
  inner
*** ----------------------------------------------------------------- ***/
.sec_public-notice {
  padding: 160px 0 320px;
}

.sec_public-notice .page-main-text {
  margin-top: initial;
}

.public-notice_contents {
  max-width: 960px;
  margin: 100px auto 0;
}

.ordered-list_inner-title {
  margin: 20px 0;
}

.ordered-list_inner-contents > p {
  margin-bottom: 20px;
}

.ordered-list_description_sm {
  margin-bottom: 20px;
}

.ordered-list_description_sm:last-of-type {
  margin-bottom: 0;
}

.ordered-list_description_sm dt {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
}

.ordered-list_description_sm dd {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.ordered-list_description_sm dd ol {
  display: grid;
  row-gap: 5px;
}

.ordered-list_description_sm dd ol:last-of-type {
  margin-bottom: 0;
}

.ordered-list_description_sm a {
  color: #265ca7;
  font-weight: bold;
  text-decoration: underline;
}

.ordered-list_inner-contents > ol {
  display: grid;
  row-gap: 20px;
}

.ordered-list_inner-contents02 ol {
  display: grid;
  row-gap: 10px;
  font-size: 14px;
}

.ordered-list_inner-contents03 {
  margin-bottom: 40px;
}

.ordered-list_inner-contents03 ol {
  display: grid;
  row-gap: 20px;
}

.ordered-list_description_sm ul {
  display: grid;
  row-gap: 10px;
}

.ordered-list_description_sm ul li::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50em;
  background-color: #333;
  content: "";
}

.ordered-list_adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.ordered-list_adress dt {
  width: 30%;
}

.ordered-list_adress dd {
  width: 70%;
}

.ordered-list_adress dd a {
  color: #265ca7;
  font-weight: bold;
  text-decoration: underline;
}

p.ordered-list_adress-text {
  margin-bottom: 0;
  font-size: 14px;
}

.contents-notice_date02 {
  margin-bottom: 20px;
}

.contents-notice_info a {
  padding-left: 10px;
  color: #265ca7;
  font-weight: bold;
  text-decoration: underline;
}

/** -------------------------------- **
「個人情報の保護に関する法律」に基づく公表事項、ブレイクポイント
*** ----------------------------------------------------------------- ***/
/** (「個人情報の保護に関する法律」に基づく公表事項end) -------------------------------- **



/** -------------------------------- **
	下層ページ共通
*** ----------------------------------------------------------------- ***/
.bg_gray {
  background-color: #f4f4f4;
}

.bg_white {
  background-color: #fff;
}

.bg_light-blue {
  background-color: #f2f9ff;
}

/** ページタイトル **/
.page-title_h2 {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.page-title_h2_en {
  position: relative;
  margin-top: 50px;
  padding-bottom: 34px;
  color: #a7a4a4;
  font-weight: normal;
  font-size: 64px;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.page-title_h2_en::after {
  display: block;
  position: absolute;
  left: 50%;
  width: 120px;
  height: 1px;
  background-color: #265ca7;
  content: "";
  -webkit-transform: translateX(-50%);
  bottom: 0;
          transform: translateX(-50%);
}

.page-title_h2_ja {
  padding-top: 20px;
  font-weight: 400;
  font-size: 32px;
}

.page-main-text {
  max-width: 960px;
  margin: 60px auto 0;
  font-weight: 700;
}

/** アンカーリンクブレイクポイント **/
/** ページタイトルブレイクポイント **/
.txt-left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt-center {
  text-align: center !important;
}

.fs-big {
  font-size: 1.111em !important;
}

.fs-big-02 {
  font-size: 1.222em !important;
}

.fs-big-03 {
  font-size: 1.333em !important;
}

.fs-small {
  font-size: 0.889em !important;
}

.fs-small-02 {
  font-size: 0.778em !important;
}

.fs-small-03 {
  font-size: 0.667em !important;
}

/*---------------------------------------------------*/
.u-sp {
  display: none !important;
}
.is-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.is-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.hidden {
  display: none;
}

@media screen and (min-width: 768px){
  .only-sp {
    display: none !important;
  }
}

@media screen and (min-width: 1024px){
  :root {
    --header-height: 100px;
  }
}

@media screen and (max-width: 1220px){
  .selection-box {
    gap: 40px;
  }
  .menu-item {
    width: 335px;
    height: 100%;
    min-height: 300px;
    padding: 15px 0;
  }
  .menu-box_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
    height: 100%;
    gap: 20px;
  }
  .top-menu_text-h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 10px;
    border-bottom: 2px solid #265CA7;
    color: #265CA7;
    font-size: 20px;
  }
  .top-menu_text {
    height: 75%;
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px){
  .service_list {
    padding: 0 40px 0 20px;
  }
  .sec_service-reward .service_list-item figure::after {
    width: 50%;
    height: 100%;
  }
  .page-tab_contents {
    max-width: initial;
    margin: 60px 0 0;
  }
  .tab-content {
    margin-top: 60px;
  }
  .tab-menu,
  .tab-menu02 {
    padding: 0 20px;
  }
  /* 会社概要 */
  .page-company_link {
    margin: 40px 0 80px;
    padding: 0 20px;
  }
  .page-company_link_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-company_link_list-item {
    height: 20vw;
  }
  .page-company_link_list-item .link-text {
    left: 2.6666666667vw;
  }
  .page-company_link_list-item .link-text .link-text_en {
    font-size: 28px;
  }
  .page-company_link_list-item .link-text .link-text_ja {
    font-size: 20px;
  }
  .page-company_link_list-item::after {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    background-size: 100%;
  }
  /* サービス&報酬 */
  .page-service_link {
    margin: 40px 0 80px;
    padding: 0 20px;
  }
  .page-service_link_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-service_link_list-item {
    height: 20vw;
  }
  .page-service_link_list-item .link-text {
    left: 2.6666666667vw;
  }
  .page-service_link_list-item .link-text .link-text_en {
    font-size: 28px;
  }
  .page-service_link_list-item .link-text .link-text_ja {
    font-size: 20px;
  }
  .page-service_link_list-item::after {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    background-size: 100%;
  }
}

@media screen and (max-width: 1100px){
  .dropdown_menu-item {
    display: none;
  }
  .sp-menu {
    display: block;
  }
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 20px;
    right: 4%;
    cursor: pointer;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    z-index: 2000;
            justify-content: center;
    width: 50px;
    height: 50px;
  }
  .menu__line {
    display: block;
    position: absolute;
    height: 3px;
    background: #345BA2;
    -webkit-transition: -webkit-transform 0.3s;
    width: 80%;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .menu-text {
    padding-top: 32px;
    color: #333;
    font-size: 13px;
  }
  .menu-text.active {
    display: none;
  }
  .menu__line.active {
    background: #fff;
  }
  .menu-text.active {
    color: #fff;
  }
  .menu-click.click {
    color: #FFF;
  }
  .menu__line--top {
    top: 0;
  }
  .menu__line--center {
    top: 15px;
  }
  .menu__line--bottom {
    bottom: 16px;
  }
  .menu__line--top.active {
    top: 15px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .menu__line--center.active {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 32px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .header_font-c1_sp {
    font-weight: 500;
  }
  .gnav {
    display: none;
    z-index: 98;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #265CA7;
  }
  .gnav__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-pack: distribute;
    position: absolute;
        justify-content: space-around;
    width: 100%;
  }
  .gnav__menu {
    margin-top: 50px;
    margin-left: 50px;
    list-style: none;
  }
  .gnav__menu__item {
    margin: 25px auto 0;
  }
  .gnav__menu__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
  }
  .header_font-c_sp {
    width: 90%;
  }
  .header_font-c1_sp {
    margin: -15px 0 0 30px;
  }
  .gnav__menu__item a:hover {
    color: #fff;
  }
  .gnav__menu__item_in {
    margin: 0 10px;
  }
  .gnav__menu__item_in a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-size: 14px;
    line-height: 1;
  }
  .gnav__menu__item_in a:hover {
    border-bottom: #265CA7;
    color: #fff;
  }
  .gnav__menu__item_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
    font-size: 26px;
    text-align: center;
  }
  .gnav__menu__item_in::before {
    width: 20px;
    height: 1px;
    margin-right: 10px;
    background-color: #FFF;
    content: "";
  }
  .dropdown_menu-item-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
    position: absolute;
    right: 15%;
            align-items: center;
    width: 130px;
    text-align: center;
  }
}

@media screen and (max-width: 1050px){
  .footer_menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 50px 30px;
    gap: 50px;
    font-weight: 700;
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px){
  .top-visual-text {
    top: 40%;
    left: 5%;
  }
  .visual-text_en {
    margin-left: 0;
    font-size: 30px;
  }
  .visual-text_sp {
    font-size: 23px;
    font-family: "Zen Old Mincho", serif;
  }
  .visual-text_co {
    margin-top: 3.5em;
    font-size: 18px;
  }
  .slide-img img {
    width: 95%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 980px){
  .feature-box_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 95%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
  }
  .feature-box {
    margin-top: 50px;
  }
  .feature-box_h {
    font-size: 20px;
  }
  .feature-box_number {
    font-size: 65px;
  }
  .feature_h {
    font-size: 20px;
  }
  .feature-box_text {
    width: 95%;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 960px){
  /** POLICYブレイクポイント -------------------------------- **/
  .policy-sec {
    margin-bottom: 100px;
    padding: 100px 0;
  }
  .about-policy-contents {
    margin: 0 20px 100px;
  }
  .about-policy-contents-inner {
    margin: 100px 20px 0;
  }
  .page-title_h3_en {
    font-size: 32px;
    line-height: 1;
  }
  .page-title_h3_ja {
    font-size: 18px;
  }
  /** BUSINESSブレイクポイント -------------------------------- **/
  .about-business-contents {
    margin: 0 20px 100px;
  }
  .page-title_h3_02 {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .about-business-contents_caption {
    font-size: 12px;
  }
  /** OVERVIEWブレイクポイント -------------------------------- **/
  .overview-sec {
    padding: 100px 0 50px;
    background: #F4F4F4;
  }
  .about-overview-contents {
    margin: 0 20px;
  }
  .about-overview-contents-inner {
    margin-top: 50px;
  }
  .table-layout01 {
    margin-bottom: 80px;
  }
  /** HISTORYブレイクポイント -------------------------------- **/
  .about-history-sec {
    padding: 100px 0;
  }
  .about-history-contents {
    margin: 0 20px;
    padding: 100px 20px 0px;
  }
  .about-history-table {
    margin-top: 80px;
  }
  /** STAFFブレイクポイント -------------------------------- **/
  .about-staff-sec {
    padding: 100px 0 50px;
  }
  .about-staff-list02 {
    max-width: 704px;
  }
  .about-staff-list02::after {
    display: block;
    width: 29.5%;
    content: "";
  }
  .about-staff-list02 div {
    width: 29.5%;
  }
  /** RECRUITブレイクポイント -------------------------------- **/
  .about-recruit-contents {
    margin: 100px 20px 200px;
  }
  .about-recruit-contents-inner {
    margin-top: 60px;
  }
  .sec_service-reward {
    padding: 100px 0 120px;
  }
  .sec_service-reward:last-of-type {
    padding-bottom: 240px;
  }
  .service_flow_list-num {
    position: absolute;
    top: -60px;
    left: 0;
  }
  .service_flow_list-item::before {
    width: 65%;
  }
  .page-inner {
    margin-top: 120px;
  }
  .page-kv {
    padding: 0 20px;
  }
  .page-kv_image {
    width: 68.2666666667vw;
  }
  .page-kv_title {
    right: 5.3333333333vw;
    bottom: -1.3333333333vw;
  }
  .page-kv_title_contents {
    gap: 5px;
  }
  .page-kv_title .page-kv_title_ja {
    font-size: 3.7333333333vw;
  }
  .page-kv_title .page-kv_title_en {
    font-size: 8.5333333333vw;
  }
  .breadcrumbs-wrap {
    padding: 0 20px;
  }
  .details_news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 130px auto 200px;
  }
  .details_etailssec_inner-1 {
    width: 95%;
    margin: 0 auto;
  }
  .details_news_sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 50px;
  }
  .details_news_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 130px auto 200px;
  }
  .page-kv_title_in .page-kv_title_ja {
    font-size: 3.7333333333vw;
  }
  .page-kv_title_in .page-kv_title_en {
    font-size: 8.5333333333vw;
  }
  .details_news_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 130px auto 200px;
  }
  .page-kv_title_in .page-kv_title_ja {
    font-size: 3.7333333333vw;
  }
  .page-kv_title_in .page-kv_title_en {
    font-size: 8.5333333333vw;
  }
  .download-contents {
    margin: 40px 20px 0;
  }
  .download-contents-inner_last {
    margin-bottom: 100px;
    padding-bottom: 100px;
  }
  .download-contents-inner02 {
    margin: 65px 0 220px;
  }
  .download-contents .page-main-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .title-layout {
    font-size: 20px;
  }
  .sec_privacy {
    padding: 40px 0 180px;
  }
  .privacy_contents {
    max-width: initial;
    margin-top: 80px;
    padding: 0 20px;
  }
  .sec_public-notice:last-of-type {
    padding: 100px 0 240px;
  }
  .public-notice_contents {
    max-width: initial;
    margin-top: 100px;
    padding: 0 20px;
  }
  .page-title_h2_en {
    padding-bottom: 10px;
    font-size: 40px;
  }
  .page-title_h2_en::after {
    width: 100px;
  }
  .page-title_h2_ja {
    padding-top: 10px;
    font-size: 18px;
  }
  .page-main-text {
    max-width: initial;
    padding: 0 20px;
  }
}

@media screen and (max-width: 870px){
  .slider .slick-prev {
    left: 90%;
  }
  .slide-img {
    padding: 5%;
  }
}

@media screen and (max-width: 820px){
  .menu-box_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
  }
  .sec_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px){
  body {
    line-height: 1.5;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
  }
  .tel-link {
    color: var(color-blue);
    text-decoration: underline;
    pointer-events: auto;
  }
  .service_list {
    gap: 40px 60px;
  }
  .sec_service-reward .service_list-item ul {
    row-gap: 10px;
  }
  .service_flow .service_flow_title span {
    font-size: 20px;
    line-height: 1.5;
  }
  .sec_service-reward .service_list-item h3 {
    font-size: 20px;
  }
  .service_flow .service_flow_title::after {
    width: 21.3333333333vw;
  }
  .sec_service-reward .service_list-item figure {
    margin: 40px 0 20px;
  }
  .service_flow {
    max-width: initial;
    padding: 0 20px;
  }
  .achievements-table_in {
    display: block;
    margin: 0 auto 50px;
  }
  .tab-menu_list-item,
  .tab-menu02_list-item {
    padding-top: unset;
    padding-right: 2.6666666667vw;
    padding-left: 2.6666666667vw;
    font-size: 14px;
  }
  .tab-menu_list-item.js_tab-active::before {
    border: 12px solid transparent;
    border-top: 15px solid #333;
  }
  .tab-menu_list-item.js_tab-active::after,
  .tab-menu02_list-item.js_tab-active02::after {
    border: 14px solid transparent;
    border-top: 18px solid #f4f4f4;
  }
  .tab-menu02_list-item.js_tab-active02::before {
    border: 12px solid transparent;
    border-top: 15px solid #333;
  }
  .tab-menu02_list-item.js_tab-active02::after {
    border: 14px solid transparent;
    border-top: 18px solid #fff;
  }
  .page-title_h3_02_text span {
    margin-left: 10%;
    font-size: 18px;
  }
  .achievements-table__caption02 span {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px){
  .only-pc {
    display: none !important;
  }
}

@media screen and (max-width: 760px){
  .header_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95%;
  }
  .dropdown_menu-item-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 79px;
    text-align: center;
  }
  .news-box_in {
    display: grid;
    width: 95%;
    margin: 0 auto;
  }
  .news-box a {
    display: block;
  }
  .sec_inner-1 {
    position: relative;
    margin: 130px auto 0;
    padding: 100px 0;
    background-color: #F4F4F4;
  }
}

@media screen and (max-width: 700px){
  .sec_inner-5 {
    margin: 130px auto 0;
  }
  .top-access_inner {
    display: block;
    width: 1200px;
    height: 450px;
    margin: 0 auto;
  }
  .access {
    width: auto;
    margin: 3%;
  }
  .map {
    width: 95%;
    height: 210px;
    margin: 0 auto;
  }
  .access dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px auto;
  }
  .sec_inner-5 {
    height: 650px;
  }
}

@media screen and (max-width: 680px){
  .visual-text_en {
    font-size: min(6.5vw, 34px);
  }
  .visual-text_sp {
    font-size: min(5vw, 24px);
    font-family: "Zen Old Mincho", serif;
  }
  .visual-text_co {
    margin-top: 5em;
    margin-left: 0;
    font-weight: 600;
    font-size: min(5vw, 20px);
    line-height: 1.5;
  }
  .visual-text_co br {
    display: block;
  }
}

@media screen and (max-width: 670px){
  /** BUSINESSブレイクポイント -------------------------------- **/
  .about-business-contents-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .about-business-contents-wrap_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-business-contents_image {
    position: relative;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .about-business-contents_image2 {
    position: relative;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  /* .about-business-contents_image {
    width: 47%;
    margin-bottom: 30px;
  } */
  .about-business-contents_caption {
    font-size: 14px;
  }
  /** HISTORYブレイクポイント -------------------------------- **/
  .about-history-contents {
    padding: 100px 20px 50px;
  }
  .about-history-table tr {
    display: block;
  }
  .about-history-table th {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 0 15px;
    overflow: hidden;
    font-size: 32px;
    text-align: left;
  }
  .about-history-table th::after {
    top: 95%;
    width: 100%;
    height: 2px;
  }
  .about-history-table th span {
    margin-left: 1em;
  }
  .about-history-table tr:last-child th::after {
    background: #265CA7;
  }
  .about-history-table td {
    width: 100%;
    margin-bottom: 50px;
  }
  .about-history-table td ul {
    margin-top: 0;
  }
  .about-history-table td ul li {
    margin-bottom: 10px;
    padding-left: 4em;
    line-height: 1.5;
    text-indent: -3.8em;
  }
  .about-history-table .about-history-table-mark {
    display: none;
  }
  .about-history-table .u-pc {
    display: none;
  }
  table.about-history-table {
    background-image: url(/ad-u-roumu/wp-content/themes/u-roumu/assets/images/company/history.jpg);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 650px){
  .sec_inner-6 {
    display: block;
    margin: 0 auto;
    background-image: url(../images/top/contact_sp.jpg);
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
  }
  .sec-title_position_1 {
    text-align: center;
  }
  .contact_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 610px;
    margin: 20px auto 0;
  }
  .contact_inner-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    color: #fff;
    line-height: 1.5;
  }
  .contact_inner-mail {
    margin-top: 50px;
  }
  .company_address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company_address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    font-size: 16px;
  }
}

@media screen and (max-width: 630px){
  .slider .slick-prev {
    left: 88%;
  }
}

@media screen and (max-width: 600px){
  .details_news_sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
    margin: 50px auto 0;
  }
}

@media screen and (max-width: 550px){
  .header_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95%;
    height: 60px;
  }
  .header_h1 {
    width: 60%;
  }
  .dropdown_menu-item-1 {
    position: absolute;
    right: 18%;
    width: 60px;
  }
  .header_font-c img {
    width: 12px;
  }
  .header_font-c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 6px;
    color: #005DAD;
    font-weight: 700;
    font-size: 10px;
  }
  .menu {
    z-index: 2000;
    position: absolute;
    top: 8px;
    right: 1%;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .footer_menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 13px;
  }
  .footer_menu-inner ul {
    width: 170px;
    padding-top: 10px;
  }
  .copywriter small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-top: 130px;
    padding: 6px;
    border-top: 1px solid #FFF;
    font-size: 10px;
  }
  .footer_menu-inner {
    padding: 50px 0 0 0;
  }
  .footer_menu {
    background-color: #265CA7;
    color: #fff;
  }
  .m-visual {
    position: relative;
    margin: 60px auto 0;
  }
  .sec_title {
    width: 290px;
  }
  .sec_title {
    font-size: 46px;
  }
  .sec_stitle-s {
    font-size: 20px;
  }
  .sec-title_position {
    position: absolute;
    top: -30px;
    left: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    width: auto;
            transform: translateX(-50%);
  }
  .news-box_date {
    font-size: 14px;
  }
  .news-box_title {
    padding: 3px 15px;
    font-size: 10px;
  }
  .news-box dd {
    font-size: 14px;
  }
  .top-about-us_text {
    width: 95%;
    margin: 0 10px;
    padding: 0 30px;
  }
  .s-visual_au {
    margin: 0 auto;
    padding: 100px 0 200px 0;
  }
  .top-about-us_text-h {
    width: 215px;
    margin-top: 120px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
  }
  .description {
    width: 100%;
    padding-top: 14px;
  }
  .sec_inner-2 {
    height: 700px;
    margin: 130px auto 0;
  }
  .about-us_bot {
    margin: 0 auto;
  }
  .about-us_text {
    width: 210px;
  }
  .feature-box {
    max-width: 335px;
    margin-top: 60px;
  }
  .feature-box_in {
    width: 100%;
    height: auto;
    margin: 0 auto 50px;
    padding: 0;
    background-color: #fff;
  }
  .feature-box_in_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100px;
  }
  .feature-box_h {
    font-size: 12px;
  }
  .feature-box_number {
    border-top: 1px solid #345BA2;
    font-size: 32px;
    line-height: 1.3;
  }
  .feature-box_dt {
    width: 76px;
    border-top: 5px solid #005DAD;
  }
  .feature_h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 235px;
    height: 100%;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    text-align: start;
  }
  .feature-box_text {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    font-size: 14px;
    text-align: left;
  }
  .sec_inner-3 {
    height: 921px;
  }
  .slick-slide {
    max-width: 150px;
  }
  .slide-img {
    padding: 3%;
  }
  .slider .slick-prev {
    left: 84%;
  }
  .slider .slick-prev,
  .slider .slick-next {
    top: 35% !important;
  }
  .slide-container {
    max-width: 1200px;
    margin: 150px 0 50px 0;
  }
  .access dt {
    width: 25%;
  }
  .access dd {
    width: 75%;
  }
  .sec_title-1 {
    font-size: 46px;
  }
  .sec_stitle-s-1 {
    font-size: 20px;
  }
  /** POLICYブレイクポイント -------------------------------- **/
  .policy-sec {
    padding: 80px 0;
    background: url("../images/company/policy-bg-sp.png") no-repeat top right;
    background-size: cover;
  }
  .about-policy-contents {
    margin: 0 20px 50px;
  }
  .about-policy-contents-inner {
    margin: 50px 20px 0;
  }
  .about-policy-contents_text {
    margin-bottom: 50px;
  }
  /** BUSINESSブレイクポイント -------------------------------- **/
  .about-business-contents {
    margin: 0 20px 50px;
  }
  .about-business-contents-inner {
    margin-top: 40px;
  }
  .about-business-contents_image {
    position: relative;
    height: 80px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .about-business-contents_image2 {
    position: relative;
    height: 80px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .table-layout01 tr th {
    width: 40%;
  }
  .table-layout01 tr td {
    padding-left: 20px;
  }
  /** OVERVIEWブレイクポイント -------------------------------- **/
  .page-list-mark li::before {
    position: absolute;
    top: 7px;
    left: 0;
  }
  .table-layout02-list li::before {
    position: absolute;
    top: 8px;
    left: 0;
  }
  .page-title_h3_02_irregular {
    margin-left: 0;
  }
  /** HISTORYブレイクポイント -------------------------------- **/
  .about-history-sec {
    padding: 50px 0;
    background: url("../images/company/history-bg-sp.png") no-repeat left top;
    background-size: cover;
  }
  /** STAFFブレイクポイント -------------------------------- **/
  .about-staff-contents {
    margin: 0 20px;
  }
  .about-staff-list01 {
    margin: 80px auto 30px;
  }
  .about-staff-list01_name {
    margin: 15px 0;
    font-size: 14px;
  }
  .about-staff-list01_post {
    font-size: 12px;
  }
  .about-staff-list02 div {
    margin-bottom: 30px;
  }
  /** RECRUITブレイクポイント -------------------------------- **/
  .about-recruit-contents {
    margin: 100px 20px 170px;
  }
  .table-layout02 th,
  .table-layout02 td {
    display: block;
    width: 100%;
  }
  .table-layout02 td {
    border-top: none;
  }
  .table-layout02 tr:last-child th {
    border-bottom: none;
  }
  .sec_service-reward:last-of-type {
    padding-bottom: 42.6666666667vw;
  }
  .service_list {
    grid-template-columns: initial;
    row-gap: 60px;
    margin-top: 16vw;
  }
  .service_flow_title {
    padding-right: 24vw;
  }
  .service_flow_list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 58.6666666667vw;
    padding-top: initial;
    padding-right: 5.3333333333vw;
    padding-bottom: initial;
    padding-left: 5.3333333333vw;
  }
  .service_flow_list-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .service_flow_list-text h4 {
    margin-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
  .service_flow_list-num {
    top: -9.0666666667vw;
  }
  .service_flow_list-num span {
    font-size: 60px;
  }
  .service_flow_list-image {
    width: 100%;
    max-width: 29.3333333333vw;
    margin: initial;
  }
  .achievements-table__caption01-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20%;
  }
  .table-layout03 {
    font-size: 1em;
  }
  .table-layout04 {
    font-size: 1em;
  }
  .table-layout04 {
    width: 150%;
  }
  .table-layout05 {
    font-size: 1em;
  }
  .page-inner {
    margin-top: 100px;
  }
  .download-contents-inner_last {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
  .download-contents-inner02 {
    margin: 65px 0 200px;
  }
  .common_botn_text {
    position: relative;
    width: 210px;
    margin: 10px auto 0;
    padding: 10px 20px 10px;
    border: 1px solid #265CA7;
    border-radius: 25px;
    background-color: #FFF;
    color: #005DAD;
    font-weight: 700;
  }
  .common_botn {
    margin: 0 auto;
  }
  .list-layout {
    margin-top: 20px;
  }
  .title-layout {
    font-size: 16px;
  }
  .sec_page-error {
    padding-bottom: 42.6666666667vw;
  }
  .page-error_image {
    max-width: 120px;
  }
  .page-error_tile-en {
    font-size: 32px;
  }
  .page-error_tile-ja {
    font-size: 16px;
  }
  .sec_privacy {
    padding-bottom: 26.6666666667vw;
  }
  .privacy_contents {
    margin-top: 13.3333333333vw;
  }
  .ordered-list {
    row-gap: 10.6666666667vw;
  }
  .ordered-list_title {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .ordered-list_title .list-title_num {
    font-size: 24px;
    line-height: 1.2;
  }
  .ordered-list_title .list-title_name {
    font-size: 20px;
  }
  .contents-notice {
    margin-top: 21.3333333333vw;
    padding-top: 10.6666666667vw;
  }
  .contents-notice_date {
    margin-bottom: 10px;
  }
  .contents-notice_contact dl dd {
    margin-bottom: 10px;
  }
  .sec_public-notice:last-of-type {
    padding-bottom: 42.6666666667vw;
  }
  .public-notice_contents {
    margin-top: 16vw;
  }
  .ordered-list_description_sm dd ol {
    row-gap: 10px;
  }
  .ordered-list_adress dt {
    width: 100%;
  }
  .ordered-list_adress dd {
    width: 100%;
    margin-bottom: 10px;
  }
  /* 会社概要 */
  .page-company_link {
    margin-top: 10.6666666667vw;
    margin-bottom: 21.3333333333vw;
  }
  .page-company_link_list-item .link-text .link-text_en {
    font-size: 5.3333333333vw;
  }
  .page-company_link_list-item .link-text .link-text_ja {
    font-size: 3.2vw;
  }
  /* サービス&報酬 */
  .page-service_link {
    margin-top: 10.6666666667vw;
    margin-bottom: 21.3333333333vw;
  }
  .page-service_link_list-item .link-text .link-text_en {
    font-size: 5.3333333333vw;
  }
  .page-service_link_list-item .link-text .link-text_ja {
    font-size: 3.2vw;
  }
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
}

@media screen and (max-width: 500px){
  .main-inner {
    margin-top: 70px;
  }
  .breadcrumbs-wrap .breadcrumbs_lists span {
    font-size: 13px;
  }
  .breadcrumbs-wrap .home span {
    font-size: 10px;
  }
}

@media screen and (max-width: 400px){
  .top-visual-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
    position: absolute;
    top: 55%;
    left: 4%;
            align-items: flex-start;
    -webkit-transform: translatey(-50%);
    width: 335px;
    height: 0px;
    margin: 0 auto;
            transform: translatey(-50%);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: no-preference){
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
/*# sourceMappingURL=style.css.map */
