@charset "UTF-8";
/*! modern-css-reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*===================================
	共通レイアウト
=====================================*/
html,
body {
  width: 100%;
}

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

body {
  font-family: "Zen Kaku Gothic New", "メイリオ", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000;
  margin: 0;
}
body.no-scroll {
  position: relative;
/*  overflow: hidden; Aki 2025.11 スクロールバーが出なくなったのでc/o */
}

main {
  position: relative;
  display: block;
}

a {
  transition: all 0.3s ease;
  opacity: 1;
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.6;
}

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

ul {
  list-style: none;
}

.u-sp__block {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-sp__block {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .u-sp__none {
    display: none;
  }
}

.u-md__block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .u-md__block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .u-md__none {
    display: none;
  }
}

/* タイトル
-------------------------------------*/
/* ボタン
-------------------------------------*/
.c-btn01 {
  position: relative;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, #366ecb 0%, #1b3766 100%);
  border-radius: 50px;
  padding: 1.5em 2em;
}
.c-btn01::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #E5E5E5;
  border-right: 2px solid #E5E5E5;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 600px) {
	.c-btn01{
		padding: 1em;
	}
}

/*===================================
	ヘッダー
=====================================*/
/* l-header
-------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  transition: 0.3s ease-in-out;
  z-index: 9;
}
.l-header .l-header_logo {
  width: 225px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}
.l-header .l-header_logo a {
  display: block;
  padding: 15px 15px 20px;
}

/* l-nav_menu
-------------------------------------*/
.l-nav_menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 225px);
  padding: 20px;
}
@media screen and (max-width: 1200px) {
  .l-nav_menu {
    padding: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .l-nav_menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: visible;
    transform: translate3d(100%, 0, 0);
    transition: opacity 0.45s ease, transform 0s 0.45s ease;
  }
}
.l-nav_menu .l-nav_mask {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.45s ease;
  }
}
.l-nav_menu .l-nav_container {
  position: relative;
  background: #fff;
  border-radius: 3px;
  padding: 15px 30px 15px 40px;
}
@media screen and (max-width: 1299px) {
  .l-nav_menu .l-nav_container {
    padding: 15px 20px 15px 30px;
  }
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_container {
    width: auto;
    height: auto;
    max-height: 100%;
    background: linear-gradient(-90deg, #366ecb 0%, #326AC5 25%, #2662b5 50%, #15539a 75%, #00427b 100%);
    padding: 0;
    overflow-y: scroll;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.45s ease;
  }
}
@media screen and (max-width: 600px) {
  .l-nav_menu .l-nav_container {
    width: 100%;
  }
}
.l-nav_menu .l-nav_container .l-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_container .l-nav__inner {
    display: block;
    width: 100%;
    padding: 95px 60px 80px;
  }
}
@media screen and (max-width: 600px) {
  .l-nav_menu .l-nav_container .l-nav__inner {
    padding-inline: 15%;
  }
}
.l-nav_menu .l-nav_container .l-nav__inner .l-navList {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em 2em;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.5em 0;
}
@media screen and (max-width: 1299px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList {
    column-gap: 1.5em;
    font-size: 1.6rem;
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
  }
}
.l-nav_menu .l-nav_container .l-nav__inner .l-navList:not(:first-child) {
  margin-left: 3em;
}
@media screen and (max-width: 1299px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList:not(:first-child) {
    margin-left: 2em;
  }
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList:not(:first-child) {
    margin-top: 1.5em;
    margin-left: 0;
  }
}
.l-nav_menu .l-nav_container .l-nav__inner .l-navList:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -1.5em;
  width: 2px;
  height: 100%;
  background: #366ECB;
  transform: translateY(-50%);
}
@media screen and (max-width: 1299px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList:not(:first-child)::before {
    left: -1em;
  }
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList:not(:first-child)::before {
    content: none;
  }
}
.l-nav_menu .l-nav_container .l-nav__inner .l-navList li {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList li:not(:first-child) {
    margin-top: 1.5em;
  }
}
.l-nav_menu .l-nav_container .l-nav__inner .l-navList li a {
  position: relative;
  display: block;
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList li a {
    text-decoration: underline;
  }
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList li a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 1001px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList li.is-current {
    color: #366ECB;
    font-weight: 700;
  }
}
@media screen and (min-width: 1001px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-navList li.is-current a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.25em;
    left: -0.65em;
    width: 8px;
    height: 8px;
    background: #366ECB;
    border-radius: 4px;
  }
}
.l-nav_menu .l-nav_container .l-nav__inner .l-nav_info {
  display: none;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .l-nav_menu .l-nav_container .l-nav__inner .l-nav_info {
    display: block;
    margin-top: 65px;
  }
}
@media screen and (max-width: 1000px) {
  .l-nav_menu.is-open {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity 0.45s ease;
  }
}
.l-nav_menu.is-open .l-nav_mask {
  opacity: 1;
  transition: opacity 0.45s ease;
}
@media screen and (max-width: 1000px) {
  .l-nav_menu.is-open .l-nav_container {
    transform: translateZ(0);
    transition: transform 0.45s ease;
  }
}

/* trigger
-------------------------------------*/
.l-nav_trigger {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-nav_trigger {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 2px;
    padding: 10px;
    cursor: pointer;
    z-index: 99;
  }
}
.l-nav_trigger .l-nav_trigger-line {
  position: relative;
  width: 100%;
  height: 18px;
}
.l-nav_trigger .l-nav_trigger-line span {
  display: block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #366ecb 0%, #326AC5 25%, #2662b5 50%, #15539a 75%, #00427b 100%);
  transform: translateX(-50%);
  transform-origin: center;
  transition: 0.4s ease;
}
.l-nav_trigger .l-nav_trigger-line span:nth-of-type(1) {
  top: 0;
}
.l-nav_trigger .l-nav_trigger-line span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.l-nav_trigger .l-nav_trigger-line span:nth-of-type(3) {
  top: calc(100% - 3px);
}
.l-nav_trigger p {
  color: #366ECB;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-nav_trigger p {
    font-size: 1.1rem;
  }
}
.l-nav_trigger.is-open .l-nav_trigger-line span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-nav_trigger.is-open .l-nav_trigger-line span:nth-of-type(2) {
  opacity: 0;
}
.l-nav_trigger.is-open .l-nav_trigger-line span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-nav_trigger.is-open p {
  display: none;
}

/*===================================
	フッター
=====================================*/
/* l-footer
-------------------------------------*/
.l-footer {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 50%, #e3e3e3 100%);
  z-index: 1;	/* MTL Aki added */
}
.l-footer .l-footer_pagetop {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer_pagetop {
    display: block;
    width: 100%;
  }
}
.l-footer .l-footer_pagetop a {
  display: block;
  width: 100%;
  height: 46px;
  background: #E5E5E5;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.l-footer .l-footer_pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  aspect-ratio: 1/1;
  background-image: url(../img/common/arrow01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateX(-50%) rotate(-90deg);
}
.l-footer .l-footer__inner {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 45px 0;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer__inner {
    padding: 30px 0 40px;
  }
}
.l-footer .l-footer__inner .l-footer_nav__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 75px;
}
.l-footer .l-footer__inner .l-footer_logo {
  width: 300px;
}
.l-footer .l-footer__inner .l-footer_logo a {
  display: block;
  width: 100%;
}
.l-footer .l-footer__inner .l-footer_nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em 2em;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  color: #366ECB;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer__inner .l-footer_nav {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer__inner .l-footer_nav {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .l-footer .l-footer__inner .l-footer_nav li {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer__inner .l-footer_nav li a {
    text-decoration: underline;
  }
}
.l-footer .l-footer__inner .l-footer_info {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  color: #366ECB;
  margin-top: 2em;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer__inner .l-footer_info {
    margin-top: 3.5em;
  }
}
.l-footer .l-footer__inner .l-footer_info p > span {
  display: inline-block;
  padding-left: 0.5em;
}
.l-footer .l-footer__inner .l-footer_copy {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  color: #366ECB;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer__inner .l-footer_copy {
    font-size: 1.1rem;
    margin-top: 2em;
  }
}

/*===================================
	animation
=====================================*/
/* フェードイン
-------------------------------------*/
.ani-fadein {
  opacity: 0;
}
.ani-fadein.is-active {
  animation: ani-fadein 0.85s ease both;
}

@keyframes ani-fadein {
  0% {
    transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.ani-fadeinLeft {
  opacity: 0;
}
.ani-fadeinLeft.is-active {
  animation: ani-fadeinB 0.85s ease both;
}

@keyframes ani-fadeinB {
  0% {
    transform: translateX(-6rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* 2025.11 MTL 
-------------------------------------------------------------------------------------- */

/* Variables */
:root {
	/* Colors */
	--ura-text-color: #000000;
	--ura-blue: #366ECB;
	--ura-green: #2AAAA0;
	--ura-gray: #989898;
	--ura-gradation: linear-gradient(120deg, #2B91DB 0 7%, #2B91DB, #51A8CF, #6DB8C7, #7EC2C2, #84C6C1 96% 100%);
	--ura-pink-gradation: linear-gradient(120deg, #DEE7F4 0 7%, #F2BEA3 96% 100%);
}

/* Child-Page Common */
main.lower-page {
	z-index: 1;
}
main.lower-page::before {
	z-index: -1;
}
.lower-page section .inner,
#my-activity .inner {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
}
.l-header_logo.is-current {
	width: 226px !important;
}
.l-header_logo.is-current a {
	padding: 13px 13px 18px !important;
}
.child_header {
	position: relative;
	height: 340px;
	background: url(../../assets/img/common/mv_childpage.png)no-repeat right bottom/ cover;
	margin-bottom: 68px;
}
.child_header picture {
	display: block;
}
.child_header .inner {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.child_header .inner .page_title {
	color: var(--ura-blue);
	font-size: 4rem;	/* 40px */
	letter-spacing: 0.05em;
}

.lower-page section h2:not(.has_gradation),
#my-activity.article h1 {
	color: var(--ura-blue);
	font-size: 3rem;
	text-align: center;
	line-height: 1;
	margin-bottom: 50px;
}
.lower-page section h2:not(.has_gradation)::after,
#my-activity.article h1::after {
	content: "";
	display: block;
	width: 200px;
	height: 2px;
	background-color: var(--ura-blue);
	margin: 34px auto 0;
}
.lower-page section h2 .ttl {
	display: block;
	font-size: 2rem;	/* 20px */
	line-height: 1;
}
.lower-page section h2 .sub {
	display: block;
	font-size: 1.3rem;	/* 13px */
	margin-top: 10px;
}
.lower-page section h2 .thin {
	font-weight: 400;
}
.lower-page section h2.has_gradation {
	color: white;
	line-height: 1;
	text-align: center;
	background: var(--ura-gradation);
	border-radius: 5px;
	padding: 7px 20px;
}

.lower-page section p {
	font-size: 1.7rem;	/* 17px */
	line-height: 2.1176;	/* 17/36 */
}
.lower-page section picture {
	display: block;
}

.pagemenu {
	margin-bottom: 80px;
}
.pagemenu ul, .pagemenu ul > li {
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: solid 1px var(--ura-blue);
}
.pagemenu ul > li {
	width: calc(100% / 4);
	height: 85px;
	flex-direction: column;
	border-left: 0;
	border-right: solid 1px var(--ura-blue);
}
.pagemenu ul > li a {
	display: block;
	color: var(--ura-blue);
	font-size: 2.2rem;	/* 22px */
	font-weight: 600;
	text-align: center; /* Mac 2025.12 */
	text-wrap: balance; /* Mac 2025.12 */
}
.pagemenu ul > li a::after {
	content: "";
	display: block;
	background: url(../../assets/img/common/ic_arrow_down.svg)no-repeat center/ cover;
	width: 18px;
	height: 10px;
	margin: 14px auto 0;
}

.linkbtn {
	display: block;
	color: white;
	background: url(../../assets/img/common/ic_arrow_white.svg)no-repeat center right 30px,var(--ura-gradation);
	text-align: center;
	font-weight: 500;
	line-height: 76px;
	border-radius: 38px;
}
.linkbtn.pink {
	color: var(--ura-blue);
	background: url(../../assets/img/common/ic_arrow_blue.svg)no-repeat center right 30px,var(--ura-pink-gradation);
}
.sponly {
	display: none;
}
/* careerpass - URAのキャリアパス */
#career_process, #career_assessment, #career_raise {
	margin-bottom: 150px;
}
:is(#career_process, #career_assessment, #career_raise) p {
	margin-bottom: 35px;
}
#career_raise h2.has_gradation {
	text-align: left;
	padding: 20px 30px 16px;
	margin-bottom: 40px;	/* 2025.12 Aki added from FD */
}
#career_raise h2.has_gradation .ttl {
	margin-bottom: 13px;
}
#career_raise p.notice {
	font-size: 1.5rem;	/* 15px */
	text-align: center;
	color: var(--ura-green);
	margin-bottom: 15px;
}
#career_interview {
	background-color: white;
	border-radius: 60px;
	padding-top: 130px;
	padding-bottom: 95px;
	margin-bottom: 110px;
}
.lower-page section#career_interview h2:not(.has_gradation) {
	margin-bottom: 71px;
}
#career_interview .wrapper {
	display: flex;
	align-items: flex-start;
	gap: 0 60px;
}
#career_interview .wrapper img {
	width: 260px;
	height: auto;
}
#career_interview .wrapper .wrap {
}
#career_interview .wrap p {
	font-size: 1.6rem;	/* 16px */
	line-height: 2;	/* 16/32 */
}
#career_interview .wrap b {
	color: var(--ura-blue);
}
#career_interview .wrap p.position {
	color: var(--ura-blue);
	font-weight: 500;
	line-height: 1;
}
#career_interview .wrap p.name {
	color: var(--ura-blue);
	font-size: 2.5rem;	/* 25px */
	font-weight: 600;
	margin: 10px 0 12px;
}
#career_interview .wrap p.job {
	display: inline-block;
	color: white;
	background-color: var(--ura-blue);
	line-height: 1.5;
	border-radius: 5px;
	padding: 0 10px;
	font-weight: 600;
}
#career_interview .wrap .faq_wrap {
	margin-top: 25px;
}
#career_interview .faq_wrap p.question {
	margin-bottom: 23px;
}
#career_interview .faq_wrap p.answer {
	margin-bottom: 33px;
}
#career_interview .link {
	margin-top: 42px;
}
#career_faq {
	margin-bottom: 60px;
}
#career_faq p.question {
	color: var(--ura-blue);
	font-size: 1.8rem;	/* 18px */
	font-weight: 600;
	letter-spacing: 0.03em;
	margin-bottom: 8px;
}
#career_faq p.question::before {
	content: "Q.";
	display: inline-block;
	font-size: 2.2rem;	/* 22px */
	margin-right: 12px;
}
#career_faq p.answer {
	display: flex;
	letter-spacing: normal;
	line-height: 1.875;	/* 16/30 */
	margin-bottom: 13px;
}
#career_faq p.answer::before {
	content: "A.";
	display: inline-block;
	font-weight: 600;
	margin-right: 19px;
}


/* service - 主なマネジメントサービス */
main.lower-page.service .child_header {
	background-image: url(../../assets/img/common/mv_childpage_service.png);
}
#service_menu {
	margin-bottom: 65px;
}
#service_menu .inner {
	max-width: 1180px;
}
#service_menu .p-service_list {
	gap: 20px !important;
}
#service_menu .p-service_list__item {
	grid-row: none !important;
	background: url(../../assets/img/common/ic_arrow_white_down.svg)no-repeat center bottom 19px, var(--ura-blue) !important;
	padding: 0px !important;
}
#service_menu .p-service_list__item a {
	display: block;
	padding: 32px 20px 40px;
}
.service_detail {
	width: 90.2777%;	/* 1300/1440 */
	max-width: 1300px;
	background: white;
	border-radius: 40px;
	padding: 53px 0 50px;
	margin: 0 auto 40px;
}
.service_detail .inner {
}
.service_detail h3 {
	display: flex;
	gap: 0 24px;
	margin-bottom: 25px;
}
.service_detail h3 img {
	width: 70px;
	height: auto;
	flex-shrink: 0;
	margin: 0;
}
.service_detail h3 span {
	color: var(--ura-blue);
	font-size: 3.0rem;	/* 30px */
}
.service_detail .inner p {
	line-height: 1.8823;	/* 17/32 */
	margin-bottom: 25px;
}
.service_detail h4 {
	color: var(--ura-blue);
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-bottom: 5px;
}
.service_detail h4::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background-color: var(--ura-blue);
}
.service_detail ul.service_list {
	list-style: disc;
	margin-left: 2.3rem;
	margin-bottom: 30px;
}
.service_detail ul.service_list > li {
}
.service_detail ul.service_list >li::marker {
	color: var(--ura-blue);
}
.service_detail .link {
	margin-top: 49px;
}
#service_06 {
	margin-bottom: 85px;
}

/* activity 活動一覧 */
main.lower-page.activity .child_header {
	background-image: url(../../assets/img/common/mv_childpage_activity.png);
}
main.lower-page.activity::before {
	content: none;
}
#activity_categories {
	margin-bottom: 40px;
}
#activity_categories h3 {
	color: var(--ura-blue);
	font-size: 2.2rem;	/* 22px */
	margin-bottom: 20px;
}
#activity_categories ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 10px;
}
#activity_categories ul > li {
}
#activity_categories ul > li a {
	display: inline-block;
	color: var(--ura-blue);
	background-color: white;
	font-size: 1.6rem;	/* 16px */
	font-weight: 500;
	border: solid 1px var(--ura-blue);
	line-height: 30px;
	border-radius: 15px;
	padding: 0 15px;
}
#activity_categories ul > li a.current {
	color: white;
	background-color: var(--ura-blue);
}
#my-activity {
}
ul.activity-list {
}
ul.activity-list > li.news_item {
	border-bottom: solid 1px #366ECB;
	padding: 22px 10px;
}
ul:is(.p-activity_list, .activity-list) > li .date,
#my-activity.article .date {
	color: var(--ura-gray);
	font-size: 1.4rem;	/* 14px */
	font-weight: 500;
	float: left;
	margin-right: 14px;
	margin-top: 2px;
}
ul:is(.p-activity_list, .activity-list) > li .new {
	float: left;
	color: red;
	font-weight: 500;
	margin-right: 15px;
}
ul.categories {
	display: flex;
	gap: 0 5px;
}
ul.categories > li {
}
ul.categories > li a {
	display: inline-block;
	font-size: 1.4rem;	/* 14px */
	color: var(--ura-blue);
	background-color: white;
	font-weight: 500;
	border: solid 1px var(--ura-blue);
	border-radius: 10px;
	line-height: 20px;
	padding: 0 10px;
}
ul.activity-list > li .title {
	clear: both;
	font-size: 1.8rem;	/* 18px */
	font-weight: 500;
	margin-top: 5px;
}

@media (hover: hover) and (pointer: fine) {
	.p-activity .p-activity__inner .p-activity_ttl__wrap .p-activity_category_list .p-activity_category_list__item a:hover,
	#activity_categories ul > li a:hover,
	ul.categories > li a:hover {
		color: white;
		background-color: var(--ura-blue);
		opacity: 1;
	}
	ul.activity-list > li .title a:hover {
		opacity: 0.3;
		text-decoration: underline;
	}
}

/* activity個別 */
#my-activity.article {
	background: url(../../assets/img/common/bg_activity_single.png)no-repeat left -80px top -160px;
}
#my-activity.article .inner {
	max-width: 690px;
}
#my-activity.article h1 {
	font-size: 2rem;	/* was 2.2rem / 20px */
	text-align: left;
	line-height: 2.1;	/* 20/42 */
	padding-top: 190px;
	margin-bottom: 23px;
}
#my-activity.article h1::after {
	width: 100%;
	margin-top: 30px;	/* was 45px */
}
#my-activity.article .article-body {
	margin-top: 20px;
}
#my-activity.article .article-body p:not(:empty) {
	font-size: 1.6rem;	/* 16px */
	line-height: 2;	/* 16/2 3*/
	margin-bottom: 35px;
}
#my-activity.article .article-body figure {
	margin-bottom: 40px;
}
#my-activity.article .article-body figure figcaption {
	text-align: center;
	font-size: 1.5rem;	/* 15px */
	font-weight: 500;	/* Aki from chkHTML */
	margin-top: 10px;	/* Aki from chkHTML */
}
#my-activity.article .link {
	width: 537px;
	display: flex;
	justify-content: center;
	margin: 85px auto 0;
}
#my-activity.article .link span {
	width: calc(100% / 3);
}
#my-activity.article .link a {
	color: var(--ura-blue);
	font-weight: 500;
	text-decoration: underline;
}
#my-activity.article .link :is(.prev-article, .next-article) img {
	display: inline-block;
	width: 7px;
	height: auto;
	margin: 0 14px;
}
#my-activity.article .link .prev-article img {
	transform: rotate(180deg);
}
#my-activity.article .link .top-article {
	text-align: center;
}
#my-activity.article .link .next-article {
	text-align: right;
}
#my-activity.article .article-body img {
	width: auto;
	max-width: 100%;
}



/* for SP */
@media screen and (max-width: 767px) {

	.child_header {
		background-image: url(../../assets/img/common/sp/mv_childpage.png);
		height: 200px;
		margin-bottom: 20px;
	}
	main.lower-page.service .child_header {
		background-image: url(../../assets/img/common/sp/mv_childpage_service.png);
	}
	main.lower-page.activity .child_header {
		background-image: url(../../assets/img/common/sp/mv_childpage_activity.png);
	}
	.child_header .inner {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		padding-top: 103px;
		text-align: center;
	}
	.child_header .inner .page_title {
		font-size: 2.2rem;
		letter-spacing: 0;
	}
	.pagemenu {
		margin-bottom: 30px;
	}
	.pagemenu ul > li {
		justify-content: flex-end;
	}
	.pagemenu ul > li a {
		font-size: 1.4rem;
		text-align: center;
		text-wrap: pretty;
		line-height: calc(19/14);
	}
	.pagemenu ul > li a::after {
		margin: 14px auto 10px;
		height: 7px;
		width: 12.5px;
	}

	.lower-page section h2,
	.lower-page section h2:not(.has_gradation) {
		font-size: 2.4rem;
		letter-spacing: 0.08em;
		line-height: calc(40/24);
		margin-bottom: 30px;
	}
	.lower-page section h2:not(.has_gradation)::after,
	#my-activity.article h1::after {
		margin: 25px auto 0;
	}
	.lower-page section#career_interview h2:not(.has_gradation) {
		margin-bottom: 50px;
	}
	.lower-page section h2 .ttl {
		font-size: 1.8rem;
		line-height: calc(30/18);
		letter-spacing: 0;
	}
	.lower-page section h2 .sub {
		letter-spacing: 0;
	}
	.lower-page section p {
		font-size: 1.6rem;
		line-height: calc(30/16);
	}
	.lower-page section .picture_inner {
	}
	.lower-page section .picture_inner picture {

	}
	.lower-page section .picture_inner picture img {
	}
	.linkbtn {
		line-height: 60px;
	}
	.pconly {
		display: none;
	}
	.sponly {
		display: block;
	}
	.l-nav_menu .l-nav_container .l-nav__inner {
		padding-left: 17.066666%;
		padding-right: 0;
	}


	/* careerpass - URAのキャリアパス */
	#career_process {
		margin-bottom: 80px;
	}
	#career_process picture {
		overflow-x: scroll;
	}
	#career_process picture::-webkit-scrollbar,
	#career_raise picture::-webkit-scrollbar {
		height: 10px;
	}
	#career_process picture::-webkit-scrollbar-track,
	#career_raise picture::-webkit-scrollbar-track {
		background: #FFFFFF;
		border-radius: 11px;
	}
	#career_process picture::-webkit-scrollbar-thumb,
	#career_raise picture::-webkit-scrollbar-thumb {
		background: var(--ura-blue);
		border-radius: 11px;
	}
	#career_process picture img {
		max-width: none;
		height: 510px;
		width: auto;
		margin-bottom: 30px;
	}
	#career_process p {
		margin-bottom: 47.5px;
	}
	#career_process h2.has_gradation {
		margin-bottom: 0;
	}
	#career_process h2.has_gradation .date {
		text-align: right;
		font-size: 1.3rem;
		line-height: calc(36/13);
		font-weight: normal;
		letter-spacing: 0;
	}
	#career_assessment {
		margin-bottom: 80px;
	}
	#career_assessment p {
		margin-bottom: 24px;
	}
	#career_assessment h3.sponly {
		font-size: 1.6rem;
		line-height: calc(22/16);
		color: var(--ura-blue);
		margin-bottom: 11px;
	}
	#career_raise {
	margin-bottom: 50px;
	}
	career_raise p {
		margin-bottom: 30px;
	}
	#career_raise picture {
		overflow-x: scroll;
	}
	#career_raise picture img {
		max-width: none;
		height: 500px;
		width: auto;
		margin-bottom: 22.7px;
	}
	#career_raise h2.has_gradation,
	#career_raise p.notice {
		margin-bottom: 11px;
	}
	#career_raise p.notice {
		text-align: left;
	}
	#career_raise h2.has_gradation .ttl {
		margin-bottom: 0;
	}
	#career_raise .salary_raise {
		background: white;
		margin: 30px auto 22px;
		border-radius: 20px;
		padding: 15px 17px 13px 18px;
	}
	#career_raise .salary_raise h3 {
		padding-top: 9px;
		font-size: 1.6rem;
		line-height: calc(26/16);
	}
	#career_raise .salary_raise ul {
		list-style: disc;
		margin-left: 25px;
		margin-bottom: 13px;
	}
	#career_raise .salary_raise p {
		margin-bottom: 9px;
		font-size: 1.5rem;
		line-height: calc(26/15);
	}
	#career_raise .salary_raise p span.note {
		font-size: 1.3rem;
		line-height: calc(20/13);
	}
	#career_raise .salary_raise_extra h4 {
		font-size: 1.5rem;
		line-height: calc(36/15);
	}
	#career_raise .salary_raise_extra p {
		font-size: 1.4rem;
		line-height: calc(23/14);
		margin-bottom: 0;
	}
	#career_interview {
		padding-top: 60px;
		padding-bottom: 50px;
		margin-bottom: 60px;
	}
	#career_interview .wrapper {
		flex-direction: column;
		gap: 61px;
	}
	#career_interview .faq_wrap p.question {
		margin-bottom: 20px;
	}
	#career_interview .faq_wrap p.answer {
		margin-bottom: 30px;
	}
	#career_interview .faq_wrap p.answer:last-of-type {
		margin-bottom: 50px;
	}
	#career_interview .link {
		margin-top: 0;
	}
	#career_faq {
		margin-bottom: 28px;
	}
	#career_faq p.question {
		line-height: calc(28/18);
		display: flex;
		align-items: flex-start;
		margin-bottom: 11px;
	}
	#career_faq p.question::before {
		line-height: calc(28/22);
	}
	#career_faq p.answer {
		margin-bottom: 24px;
	}

	/* service - 主なマネージメントサービス */
	#service_menu {
		margin-bottom: 36px;
	}
	#service_menu .inner {
		width: 92%;
	}
	#service_menu .inner ul {
		display: flex;
		flex-direction: column;
		gap: 10px!important;
		margin-top: 20px;
	}
	#service_menu .p-service_list__item {
		height: 60px;
		background: url(../../assets/img/common/ic_arrow_white_down.svg)no-repeat right 6% center, var(--ura-blue) !important;
	}
	#service_menu .p-service_list__item a {
		padding: 15px 38px 15px 22px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 5.2%;
	}
	#service_menu .p-service_list__item .item-icon {
		margin-inline: revert;
		height: 30px;
		width: auto;
	}
	#service_menu .p-service_list__item .item-ttl {
		margin-top: 0;
		font-size: 1.6rem;
		text-wrap: balance;
	}
	.service_detail {
		padding: 40px 0 30px;
		width: 94.66666667%;
		margin: 0 auto 20px;
	}
	.service_detail h3 {
		flex-direction: column;
		align-items: center;
		margin-bottom: 30px;
		gap: 13px;
	}
	.service_detail h3 img {
		height: 40px;
		width: auto;
	}
	.service_detail h3 span {
		font-size: 2.2rem;
		line-height: calc(36/22);
	}
	.service_detail .inner p {
		line-height: calc(32/16);
	}
	.service_detail h4 {
		line-height: calc(32/16);
	}
	.service_detail ul.service_list {
		margin-bottom: 20px;
	}
	.service_detail ul.service_list > li {
		line-height: calc(30/16);
	}
	.service_detail .link {
		margin-top: 38px;
	}
	#service_06 {
		margin-bottom: 40px;
	}
	/* Activity_categories 活動一覧 */
	#activity_categories {
		margin-bottom: 5px;
	}
	#activity_categories h3 {
		line-height: calc(21.6/22);
	}
	#activity_categories ul {
		gap: 10px;
	}
	ul.activity-list > li .title {
		font-size: 1.7rem;
		line-height: calc(20.4/17);
	}
	ul.categories {
		flex-wrap: wrap;
	}
	/* Activity_event 活動詳細 */
	#my-activity.article h1 {
		padding-top: 108px;
		font-size: 1.8rem;
		line-height: calc(35/18);
		margin-bottom: 17.5px;
	}
	#my-activity.article h1::after {
		margin: 31px auto 0;
	}
	#my-activity.article .link {
		width: auto;
	}
	.lower-page section .inner, 
	#my-activity .inner {
		width: 89.333333%;
	}
	ul.activity-list > li.news_item {
		padding: 25px 40px 30px 0;
	}
	ul.activity-list > li.news_item p.title {
	}
	ul.activity-list > li.news_item p.title a {
		font-size: 1.6rem;
		line-height: calc(28/16);
		text-decoration: underline;
	}
	ul:is(.p-activity_list, .activity-list) > li .date,
	#my-activity.article .date {
		margin-right: 10.5px;
	}
}



