/*
Theme Name: JRCA
Theme URI: https://reskilling.or.jp/
Author: 一般社団法人 日本リスキリングキャリアコンサルタント協議会
Author URI: JRCAは、デジタルと共生するプロフェッショナルを育成。わたしたちは、自己実現のための土台を築き、成長の旅路に翼をさずけます。
Tags: リスキリング, JRCA
Version: 2024.5
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: JRCA

BlankSlate WordPress Theme 2011-2024
BlankSlate is distributed under the terms of the GNU GPL
*/

/* reset.css */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-width: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* common */
html {scroll-behavior: smooth;}
:root {
    --main-primary: #1F4C83;
	 --main-gradient: linear-gradient(90deg, #1F4C83 0%, #509FFF 100%)
}
a {transition: 0.3s ease-in-out;}
p {
    font-size: 1.1rem;
    color: #313131;
    line-height: 2.53;
    letter-spacing: 2px;
}

/* btn */
a.primaryBtn {
    background: #fff;
    color: var(--main-primary);
    font-size: 1.1rem;
    padding: 16px 70px 19px 70px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
    position: relative;
    font-weight: 500;
}
a.primaryBtn:after {
    content: "\E5df";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 49%;
    transform: translateY(-50%);
    font-size: 1.7rem;
    transition: 0.3s ease-in-out;
}
a.primaryBtn:hover {
    opacity: 0.8;
}
a.primaryBtn:hover:after {
    right: 8px;
}
a.secondaryBtn {
    background: var(--main-gradient);
    color: #fff;
    font-size: 0.95rem;
    padding: 12px 70px 15px 70px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
    position: relative;
}
a.secondaryBtn:after {
    content: "\E5df";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 48%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    transition: 0.3s ease-in-out;
}
a.secondaryBtn:hover {
    opacity: 0.8;
}
a.secondaryBtn:hover:after {
    right: 8px;
}

/* animetion */
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
  background: var(--main-gradient, linear-gradient(90deg, #1F4C83 0%, #509FFF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--main-primary);
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}


/* header */
header#header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 10;
	 transition: 0.3s ease-in-out;
}
header#header:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.25);
}
.header__inner {
    width: 100%;
    padding: 12px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
a.header__logo {
    position: relative;
}
a.header__logo:hover {
    opacity: 0.7;
}
.header__inner--right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
	 transition: 0.3s ease-in-out;
}
ul.header__inner--rightList {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    align-items: center;
}
ul.header__inner--rightList li a {
    color: var(--main-primary);
    letter-spacing: 1.2px;
    position: relative;
    padding: 8px 12px;
}
ul.header__inner--rightList li a:before {
    content: "";
    width: 1px;
    height: 25px;
    position: absolute;
    background: var(--main-primary);
    right: -20px;
    transform: rotate3d(1, 1, 1, 45deg);
    opacity: 0.3;
}
ul.header__inner--rightList li:last-child a:before {
    content: none;
}
ul.header__inner--rightList li a:hover {
    color: #65C8FF;
}

/* header resize */
header#header .header__inner--right {
    opacity: 0;
    pointer-events: none;
}
header#header.resize .header__inner--right {
    opacity: 1;
    pointer-events: auto;
}
header#header.resize {
    position: fixed;
}
header#header a.header__logo {
    width: 240px;
    transition: 1s ease-in-out;
}
header#header.resize a.header__logo {
    width: 160px;
}

a.header__logo img {
	 width: 100%;
}

header#header.resize:before {
    opacity: 1;
}

/* mv */
section#mv {
    display: block;
    position: relative;
    height: 1400px;
}
.mv__video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    pointer-events: none;
}
.mv__video video {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.mv__inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 220px;
    max-width: 1100px;
    margin: 0 auto;
	 width: 100%;
}
.mv__inner--top {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
p.mv__inner--topNameJp {
    text-align: center;
    color: var(--main-primary);
}
p.mv__inner--topNameEn {
    text-align: center;
    color: var(--main-primary);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
}
.mv__inner--top h1 {
    background: var(--main-gradient, linear-gradient(90deg, #1F4C83 0%, #509FFF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 6.6px;
    color: var(--main-gradient);
}
.mv__inner--middle {
    margin-top: -20px;
}
.mv__inner--middle img {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
.mv__inner--bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mv__inner--bottom h2 {
    background: var(--main-gradient, linear-gradient(90deg, #1F4C83 0%, #509FFF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    font-size: 3rem;
    letter-spacing: 4px;
    font-weight: 700;
}
.mv__inner--bottom p {
    text-align: center;
    color: var(--main-primary);
}
.mv__inner--bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    pointer-events: none;
}

/* about */
.aboutus__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}
.aboutus__inner--left {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
p.headingTop {
    position: relative;
    padding-left: 60px;
    color: #65C8FF;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: "Roboto", sans-serif;
}
p.headingTop:before {
    content: "";
    width: 45px;
    height: 1px;
    background: #65C8FF;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.heading h2 {
    background: var(--main-gradient, linear-gradient(90deg, #1F4C83 0%, #509FFF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    width: fit-content;
    font-size: 3rem;
    letter-spacing: 4px;
    font-weight: 700;
}
.aboutus__inner--right {
    width: 400px;
}

/* attempt */
section#attemptTop {
    display: block;
    height: 500px;
    position: relative;
    z-index: 2;
}
section#attemptTop img {
    object-fit: cover;
    height: 500px;
    width: 100%;
}
section#attemptBottom {
    background: #F5FEFF;
    margin-top: -200px;
    position: relative;
}
section#attemptBottom:before {
    content: "";
    width: 600px;
    height: 100%;
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}
.attemptBottom__inner {
    background: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    padding-top: 80px;
    z-index: 4;
}
ul.attemptBottom__inner--list {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
	 padding-bottom: 120px;
}
ul.attemptBottom__inner--list li {
    background: #FFF;
    box-shadow: 4px 4px 18px 0px rgba(0, 130, 203, 0.15);
    padding: 50px 45px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
	 gap: 16px;
}
img.symbolLine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
ul.attemptBottom__inner--list li h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    letter-spacing: 3.6px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-primary);
}
ul.attemptBottom__inner--list li p {
    line-height: 1.85;
}

/* composition */
section#composition {
    background: linear-gradient(90deg, #0F95F5 0%, #2978D8 100%);
}
.composition__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0 90px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.composition__inner .heading h2 {
    color: #fff;
    background-clip: initial;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: none;
}
.composition__inner--message {
    background: #fff;
    position: relative;
    margin-right: calc(50% - 50vw);
    position: relative;
    display: flex;
    justify-content: flex-start;
}
.composition__inner--message:after {
    content: "";
    width: 650px;
    height: 300px;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../jrca/asset/img/composition_bg.svg) no-repeat;
    object-fit: cover;
    pointer-events: none;
}
.composition__inner--messageInner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-bottom: 80px;
}
.composition__inner--messageInnerTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.composition__inner--messageInnerTopRight {
    display: flex;
    flex-direction: column;
}
.composition__inner--messageInnerTopRight h3 {
    font-weight: 500;
    font-size: 5.5rem;
    font-family: "Roboto", sans-serif;
    letter-spacing: 2.2px;
    color: var(--main-primary);
}
.composition__inner--messageInnerTopRight p {
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 11px;
    font-weight: 600;
    font-size: 1.7rem;
    align-items: end;
}
.composition__inner--messageInnerTopRight p:before {
    content: "";
    width: 80px;
    height: 1px;
    background: #aaa;
    position: absolute;
    top: 50%;
    right: 150px;
}
.composition__inner--messageInnerTopRight p span {
    font-weight: 400;
    color: #707070;
    font-size: 0.8rem;
}
.composition__inner--messageInnerBottom {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}
.composition__inner--messageInnerBottom h4 {
    color: var(--main-primary);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 2.5px;
}
.composition__inner--messageInnerBottomMessage {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.composition__inner--messageInnerBottomMessage p {
    font-size: 1rem;
    letter-spacing: 1px;
}
.composition__inner--all {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.composition__inner--all p {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
}


/* newws */
section#news {
    background: #E6FBFF;
    position: relative;
    padding: 120px 0;
}
.news__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 5px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.news__inner .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.news__inner .heading h2 {
    color: var(--future-primary);
    position: relative;
}
.news__inner .heading h2:after {
    content: "";
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--future-primary);
}
ul.news__inner--list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
ul.news__inner--list li a {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    border-top: solid 1px #ddd;
    gap: 10px;
    position: relative;
}
ul.news__inner--list li:last-child a {
    border-bottom: solid 1px #ddd;
}
ul.news__inner--list li a:hover {
    background: rgb(249,249,249);
    background: radial-gradient(circle, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%);
}
span.date {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--main-primary);
    font-family: "Roboto", sans-serif;
}
ul.news__inner--list li a h3 {
    font-size: 1.1rem;
    letter-spacing: 1.1px;
    color: #080004;
}
ul.news__inner--list li a:after {
    content: "\E5e1";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: 0.3s ease-in-out;
    opacity: 0.4;
}
ul.news__inner--list li a:hover:after {
    right: 15px;
    opacity: 0.7;
}
section#news a.primaryBtn {
    width: fit-content;
    margin: 0 auto;
}

/* footer */
footer#footer {
    position: relative;
    display: block;
}
footer#footer:before {
    content: "";
    width: 100%;
    height: 14px;
    background: url(../jrca/asset/img/symbol_line.svg) no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
}
.footer__inner {
    padding-top: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 70px 0;
}
.footer__inner--left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer__inner--left a {
    width: fit-content;
}
.footer__inner--left a:hover {
    opacity: 0.6;
}
.footer__inner--left a img {
    width: 240px;
}
.footer__inner--left p {
    color: #707070;
    font-size: 0.8rem;
    line-height: 1.7;
}
.footer__inner--right {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 25px;
}
ul.footer__inner--rightList {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}
ul.footer__inner--rightList li a {
    color: var(--main-primary);
    letter-spacing: 1.2px;
    position: relative;
}
ul.footer__inner--rightList li a:after {
    content: "";
    width: 1px;
    height: 25px;
    position: absolute;
    background: var(--main-primary);
    right: -20px;
    transform: rotate3d(1, 1, 1, 45deg);
    opacity: 0.3;
}
ul.footer__inner--rightList li:last-child a:after {
    content: none;
}
ul.footer__inner--rightList li a:hover {
    color: #65C8FF;
}
.footer__inner--bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: solid 1px #ddd;
    padding: 6px 0;
}
.footer__inner--bottom p {
    font-size: 0.8rem;
    color: #aaa;
}

/* floating */
/*親要素 */
#floatingMenu {
    position: fixed;
    bottom: 90px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 100;
}
/* 子要素 */
.flObj {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    transition: all 0.5s ease;
    position: relative;
	 cursor: pointer;
}
/* 子要素のテキスト */
.flObj p {
    margin: 0;
    background: #FFF;
    padding: 11px 20px 13px;
    font-size: 0.9rem;
    border-radius: 3px;
    position: relative;
    filter: drop-shadow(0px 0px 3px #ccc);
    color: var(--main-primary);
}
.flObj p:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -10px;
    border: 10px solid transparent;
    border-left: 10px solid #FFF;
}
/* 子要素のリンク */
.flObj a {
    background: var(--main-gradient);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    box-shadow: 0 0 6px 0 rgb(0 0 0 / 10%), 0 4px 5px 0 rgb(0 0 0 / 16%);
    position: relative;
    font-size: 1.2rem;
}
.flObj.middle .wpulikefixed {
	 transition: 0.3s;	
}
/* aタグのhover時 */
.flObj.top a:hover, .flObj.middle a:hover {
    opacity: 0.8;
}
/* FontAwesomeアイコンのスタイル */
.flObj a i {
    color: #FFF;
}
/* ＋アイコン */
.flObj.bottom a:before {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    color: #FFF;
    content: "\E5cd";
    font-family: 'Material Icons';
    font-size: 1.8rem;
}
/* クリック後の親要素 */
#floatingMenu.notshow {
    gap: 0;
}
/* クリック前の各メニュー */
div#floatingMenu.notshow > .flObj.top, div#floatingMenu.notshow > .flObj.middle {
    gap: 0;
    margin-bottom: -54px;
}
/* クリック前のテキスト */
div#floatingMenu.notshow > .flObj.top p, div#floatingMenu.notshow > .flObj.middle p {
    display: none;
}
/* クリック前のメニューの影 */
div#floatingMenu.notshow > .flObj.top a, div#floatingMenu.notshow > .flObj.middle a {
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 15%), 0 1px 2px 0 rgb(0 0 0 / 22%);
}
/* クリック前のFontawesomeアイコン */
div#floatingMenu.notshow .flObj.bottom a:before {
    content: "\e5d2";
}
.flObj span.material-icons {
    color: #fff;
    font-size: 1.9rem;
}

/* トップに戻るボタン */
a.backToTop {
    background: #65C8FF;
    width: 54px;
    height: 54px;
    position: fixed;
    opacity: 0;
    z-index: 999;
    border-radius: 9999px;
    display: inline-block;
    transition: opacity 0.8s;
    pointer-events: none;
    bottom: 20px;
    right: 18px;
}
/* 上三角 */
a.backToTop:before {
    display: inline-block;
    color: #FFF;
    line-height: 1;
    width: 0.8rem;
    height: 0.8em;
    border: 0.2em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    content: "";
    z-index: 1000;
    opacity: 1;
    left: 50%;
    top: 55%;
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg);
}
/* hover時 */
a.backToTop:hover {
    opacity: 0.8 !important;
}

/* certifications */
section#pagehead {
    height: 500px;
    background: #F5FEFF;
    position: relative;
}
section#pagehead:after {
    content: "";
    width: 650px;
    height: 300px;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../jrca/asset/img/composition_bg.svg) no-repeat;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}
.pagehead__inner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.pagehead__inner h1 {
    background: var(--main-gradient, linear-gradient(90deg, #1F4C83 0%, #509FFF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    font-size: 2.6rem;
    letter-spacing: 4px;
    font-weight: 700;
}

/* certification__inner */
.certification__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 0;
    display: flex;
    gap: 60px;
    flex-direction: column;
}
.certification__inner--bottom {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

/* ラインマーカー */
.lineMarker.scroll-in{
background-position: -100% 0.7rem;
}

.lineMarker {
background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,250,90) 10%);
background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,250,90) 10%);
background-image: linear-gradient(left, transparent 50%, rgb(255,250,90) 10%);
background-repeat: repeat-x;
background-size: 200% .7em;
background-position: 0 .8em;
transition: all 1.2s ease;
font-weight: bold;
}

/* required */
section#required {
    position: relative;
}
.required__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 130px;
    display: flex;
    gap: 60px;
    flex-direction: column;
}
.required__inner--top h2 {
    text-align: justify;
}
.required__inner--bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.careersskill {
    background: #FFF;
    box-shadow: 4px 4px 18px 0px rgba(0, 130, 203, 0.15);
    width: 45%;
    flex-direction: column;
    display: flex;
}
.careersskill h3 {
    display: flex;
    justify-content: center;
    text-align: center;
    background: #707070;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 18px 0px;
    letter-spacing: 2px;
    line-height: 1.63;
}
ul.careersskill__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 40px;
}
ul.careersskill__list li {
    padding-left: 35px;
    position: relative;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
}
ul.careersskill__list li:before {
    content: "\E876";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    color: #707070;
    left: 0;
    top: 3px;
    font-size: 1.5rem;
}
.careersskill.requiredSkill h3 {
    background: var(--main-primary);
}
ul.careersskill__list li.parentCat {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-bottom: solid 1px #ddd;
    padding-bottom: 20px;
}
ul.careersskill__list li.parentCat:before {
	content: none;
}
li.parentCat h4 {
    color: var(--main-primary);
    font-weight: 600;
    font-size: 1.3rem;
}
ul.careersskill__list--inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
ul.careersskill__list--inner li:before {
    color: var(--main-primary);
}
ul.careersskill__list li.parentCat:last-child {
    border: none;
    padding-bottom: 0;
}
section#required:after {
    content: "";
    width: 100%;
    height: 800px;
    background: url(../jrca/asset/img/require_bg.svg) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-size: cover;
}
.careersskillPlus {
    display: flex;
}
.required__inner--bottomUnder p {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-primary);
}

/* カリキュラム */
.curriculum__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 80px;
    display: flex;
    gap: 60px;
    flex-direction: column;
}
.curriculum__inner--top h2 {
    text-align: justify;
}
.curriculum__inner--bottom {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 1000px;
    margin: 0 auto;
}
.curriculum__inner--bottomUnder p {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-primary);
}

/* director */
.director__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 0 80px;
    display: flex;
    gap: 80px;
    flex-direction: column;
}
ul.director__innerList {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

ul.director__innerList li {
    display: flex;
    background: #FFF;
    box-shadow: 4px 4px 18px 0px rgba(0, 130, 203, 0.15);
    position: relative;
    justify-content: space-between;
    padding: 55px 50px 55px;
}
ul.director__innerList li:before {
    content: "";
    width: 100%;
    height: 9px;
    background: url(../jrca/asset/img/symbol_line.svg) no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
}
.directorImg {
    width: 350px;
    height: 400px;
    position: relative;
}
.directorImg:after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../jrca/asset/img/imgdot.svg) no-repeat;
    position: absolute;
    left: 12px;
    top: 13px;
    background-size: cover;
}
.directorImg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    z-index: 2;
    position: relative;
}
.director__innerList--right {
    width: calc(100% - 350px - 50px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.director__innerList--rightName {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
p.direcorPosition {
    font-size: 0.9rem;
    color: #707070;
}
h2.direcorName {
    font-size: 2.3rem;
    letter-spacing: 2px;
    font-weight: 500;
}
p.direcorNameEn {
    position: relative;
    color: #555;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}
p.direcorCorp {
    line-height: 1.6;
    font-size: 0.8rem;
    color: #707070;
}
.director__innerList--rightText {
    display: flex;
    flex-direction: column;
}
.director__innerList--rightText p {
    font-size: 0.9rem;
    line-height: 2;
}
.director__innerListBottom p {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-primary);
}

/* contact */
section#contact {
    background: #F5FEFF;
}
.contact__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}
.contact__inner--left {
    width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
ul.contact__inner--leftList {
    background: #f9f9f9;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 5px;
}
ul.contact__inner--leftList li {
    padding-left: 30px;
    position: relative;
}
ul.contact__inner--leftList li:before {
    content: "\E876";
    font-family: 'Material Icons';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.2rem;
    transition: 0.3s ease-in-out;
    color: var(--future-primary);
}
.contact__inner--right {
    width: calc(100% - 450px - 70px);
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 1px 22px 0px rgba(21, 0, 53, 0.10);
    padding: 35px 45px;
}

/* contact form */
.contact__inner--right input, .contact__inner--right textarea {
    background: #f9f9f9;
    border-radius: 5px;
    width: 100%;
    border: solid 1px #ddd;
    padding-left: 20px;
    padding-right: 20px;
}
.contact__inner--right input.wpcf7-form-control.wpcf7-submit {
    background: var(--main-gradient);
    width: 220px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    height: 54px;
    color: #fff;
    font-weight: 600;
}

/* 404 */
section#nopage {
    margin-top: 70px;
}
.nopage__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 0;
    gap: 50px;
}
.nopage__inner--bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.nopage__inner--bottom a.primaryBtn {
    width: 240px;
    margin: 0 auto;
    padding: 16px 35px 19px;
    margin-top: 20px;
}

/* privacy */
section#privacy {
    background: #F5FEFF;
    padding: 90px 0 90px;
}
.privacy__head {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0px 60px;
}
.privacy__inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 35px 55px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    border-radius: 5px;
}
.privacy__inner ul {
    list-style: disc;
    display: flex;
    flex-direction: column;
    padding-left: 26px;
    gap: 9px;
}

/* breadcrumb */
nav#breadcrumb {
    background: #474747;
}
nav#breadcrumb ul {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}
nav#breadcrumb ul li {
    color: rgb(255, 255, 255, .6);
    position: relative;
    font-size: 0.9rem;
    padding: 10px 0;
}
nav#breadcrumb ul li:after {
    content: "▶︎";
    font-size: 0.7rem;
    position: absolute;
    top: 52%;
    right: -26px;
    transform: translateY(-50%);
    opacity: 0.5;
}
nav#breadcrumb ul li:last-child::after {
    content: none;
}
nav#breadcrumb ul li a {
    color: rgb(255, 255, 255, 0.8);
}
nav#breadcrumb ul li a:hover {
    color: rgb(255, 255, 255, 1);
}

/* thanks */
section#thanks {
    background: #F5FEFF;
    padding: 120px 0 120px;
}
.thanks__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.thanks__inner--top .heading {
    display: flex;
    align-items: center;
    width: 100%;
}
.thanks__inner--bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.thanks__inner a.secondaryBtn {
    width: fit-content;
    margin: 0 auto;
}

/* news */
section#pagehead.mini {
    height: 300px;
}
.newsList__inner {
    padding: 120px 0 120px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* news text */
section#newsText {
    margin-top: -140px;
}
.newsText__inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #DDD;
    background: #FFF;
    padding: 45px 55px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}
.newsText__inner--top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.newsText__inner--top:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: -30px;
}
.newsText__inner--top span {
    font-size: 1.3rem;
}
.newsText__inner--top h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
    position: relative;
    color: var(--future-primary);
}
.newsText__inner--bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* navigation */
.navigation {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    padding-bottom: 90px;
}
.nav-link-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-archive-link a {
    border-radius: 5px;
    padding: 12px 25px 15px;
    letter-spacing: 0.8px;
    padding: 16px 35px 19px;
}
.prev-post, .next-post {
    display: block;
}
.prev-post {
    display: flex;
    justify-content: flex-start;
    width: 180px;
}
.next-post {
    display: flex;
    justify-content: flex-end;
    width: 180px;
}
a.prevNews, a.nextNews {
    padding: 12px 25px 15px;
    color: #707070;
    letter-spacing: 0.8px;
    position: relative;
}
a.prevNews:hover, a.nextNews:hover {
    opacity: 0.7;
}
a.prevNews:before {
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 0.9rem;
    opacity: 0.7;
    content: "\E5e0";
    font-family: 'Material Icons';
}
a.nextNews:after {
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 18px;
    font-size: 0.9rem;
    opacity: 0.7;
    content: "\E5e1";
    font-family: 'Material Icons';
}

@media screen and (max-width: 1200px) {
/* （ここに1200px以下スタイルを記述） */
	/* toppage */
	.aboutus__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.attemptBottom__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.composition__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.composition__inner--messageInner {
    padding-right: 4%;
	}
	.composition__inner--messageInnerTop img {
    max-width: 500px;
	}
	.footer__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* certificate */
	.certification__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.required__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.curriculum__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	nav#breadcrumb {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* director */
	.director__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* privacy */
	.privacy__head {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* contact */
	.contact__inner {
    padding-left: 4%;
    padding-right: 4%;
    gap: 40px;
	}
}

@media screen and (max-width: 1000px) {
/* （ここに1000px以下スタイルを記述） */
	/* header */
	ul.header__inner--rightList {
    gap: 20px;
	}
	ul.header__inner--rightList li a:before {
    right: -10px;
	}
	.header__inner--right a.secondaryBtn {
    padding-left: 40px;
    padding-right: 40px;
	}
	/* toppage */
	p.headingDesc br {
    display: none;
	}
	.aboutus__inner {
    flex-wrap: wrap;
	}
	.aboutus__inner--right {
    display: none;
	}
	.composition__inner--messageInnerTopRight h3 {
    font-size: 3.4rem;
	}
	.composition__inner--messageInnerBottom {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* footer */
	.footer__inner {
    gap: 30px;
    padding-top: 45px;
	}
	.footer__inner--left {
    width: 100%;
    align-items: center;
	}
	.footer__inner--left p {
    text-align: center;
	}
	.footer__inner--right {
    width: 100%;
    align-items: center;
	}
	/* certifi */
	.pagehead__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.pagehead__inner h1 br {
    display: none;
	}
	section#pagehead {
    height: 360px;
	}
	.certification__inner--bottom {
    gap: 40px;
	}
	.heading h2 br {
    display: none;
	}
	.curriculum__inner--bottom {
    width: 100%;
	}
	/* contact */
	.contact__inner {
    flex-direction: column;
	}
	.contact__inner--left {
    width: 100%;
	}
	.contact__inner--right {
    width: 100%;
	}
	/* thanks */
	.thanks__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* 404 */
	.nopage__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
	/* header */
	.header__inner--right {
    display: none;
	}
	.header__inner {
    justify-content: center;
	}
	/* mv */
	.mv__inner {
    padding-left: 4%;
    padding-right: 4%;
    gap: 140px;
    padding-top: 40px;
	}
	.mv__inner--top h1 {
    font-size: 2.6rem;
	}
	.mv__inner--bottom p {
    text-align: left;
	}
	.mv__inner--bottom p br {
    display: none;
	}
	.mv__inner--bottom h2 {
    font-size: 2rem;
	}
	/* heading */
	.heading h2 {
    font-size: 2rem;
	}
	.composition__inner--message {
    margin-right: 0;
	}
	.composition__inner--messageInnerTop img {
    width: 100%;
	}
	section#attemptBottom:before {
    width: 100%;
	}
	.composition__inner--messageInnerTop {
    flex-direction: column;
	}
	.composition__inner--messageInner {
    padding-right: 0;
	}
	.composition__inner--all p br {
    display: none;
	}
	ul.attemptBottom__inner--list li {
    padding: 40px 30px 25px;
    gap: 30px;
	}
	ul.attemptBottom__inner--list li h3 {
    flex-direction: column;
    gap: 8px;
	}
	.composition__inner--messageInnerTop {
    gap: 20px;
	}
	.news__inner {
    padding: 25px;
	}
	ul.footer__inner--rightList {
    flex-direction: column;
    align-items: center;
	}
	ul.footer__inner--rightList li a:after {
    display: none;
	}
	.footer__inner--right {
    gap: 30px;
	}
	.pagehead__inner h1 {
    font-size: 2rem;
	}
	.certification__inner {
    padding-top: 60px;
	 padding-bottom: 60px;
	}
	.certification__inner--bottom {
    flex-direction: column;
	}
	.required__inner--bottom {
    flex-direction: column;
    gap: 30px;
	}
	.careersskill {
    width: 100%;
	}
	.careersskillPlus {
    margin: 0 auto;
	}
	.required__inner--bottomUnder p {
    text-align: left;
	}
	.required__inner--bottomUnder p br {
    display: none;
	}
	.required__inner {
    padding-bottom: 60px;
	}
	.curriculum__inner--bottomUnder p {
    text-align: left;
	}
	.curriculum__inner--bottomUnder p br {
    display: none;
	}
	.newsList__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.catHead__inner {
    width: 100%;
    justify-content: center;
	}
	ul.news__inner--list li a {
    padding: 25px 30px;
	}
	.newsText__inner {
    padding: 8% 6%;
	}
	/* navi */
	.navigation {
    padding-left: 4%;
    padding-right: 4%;
	}
	.nav-link-container {
    gap: 20px;
    position: relative;
    padding-top: 65px;
	}
	.news-archive-link {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	 width: max-content;
	}
	nav#breadcrumb {
    padding-left: 4%;
	}
	nav#breadcrumb ul {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 12px 0px 14px;
    white-space: pre;
    overflow: scroll;
	}
	.privacy__inner {
    padding: 20px 30px;
	}
	.contact__inner--right {
    padding: 20px 25px;
	}
	ul.director__innerList li {
    flex-direction: column;
    padding: 35px;
    gap: 30px;
	}
	.directorImg {
    width: 100%;
	}
	.director__innerList--right {
    width: 100%;
	}
	.director__innerListBottom p {
    text-align: left;
	}
	.director__innerListBottom p br {
    display: none;
	}
	.director__inner {
    padding-top: 60px;
	}
	section#newsText {
    padding-left: 4%;
    padding-right: 4%;
	}
	.thanks__inner--bottom p {
    text-align: left;
	}
	
}