@charset "utf-8";
/* Simple fluid media*/
img, object, embed{
}
*,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,fieldset,input,textarea,p,th,td,address,figure{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    vertical-align: baseline;
    /*    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';*/
    line-height: 1;
    background-repeat: no-repeat;
    background-size: contain;
    letter-spacing: 0em;
}
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  color: #fff;
  background: var(--color-theme);
}

::selection {
  color: #fff;
  background: var(--color-theme);
}


/* IE 6 does not support max-width so default to width 100% */
img {
	width:100%;
	height: auto;
}
/*font*/
.font_min{
	/*font-family: 'Noto Serif JP', serif;*/
	font-family:"Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.font_go{
    font-family: 'Noto Sans JP', sans-serif;
}
.font_sofia{
	font-family: sofia-pro, sans-serif;	
}


.vertical {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    width: 100%;
}

/*reset */
html, body {
  height:100%;
}
body{
    width: 100%;
	
}
a,svg,img,.hover_anm{
    transition: all  0.3s ease;
}
a:hover{
    text-decoration: none;
}
html { 
	font-size:1.3333333333vw;
}
#pagetop {
	overflow: hidden;
}


.fluidheight{
	height: 100%;
}
.pc480{
	visibility:hidden;
	display: none;
}
body .pc768{
	visibility:hidden;
	display: none;
}
body .pc768_1600{
	visibility:hidden;
	display: none;
}
body .pc1600{
	visibility:hidden;
	display: none;
}

.pc1000{
	display: none;
}
.pc1200{
	display: none;
}

.sp1200{
	display: block;
}
.sp1400{
    display: block;	
}
.pc1400 {
    display: none;
}







.color_black{
	color: #221815;
}
.color_white{
    color: #FFFFFF;
}
.color_orange{
	color: #fa7748;
}
.color_blue{
	color: #282f78;
}
.color_yellow{
	color: #ffea00;
}
.color_gray{
	color: #7B7B7B;
}
.color_blue_half {
    color: #e9eaf1;
}
.color_orange_half {
    color: #fef1ec;
}
.color_grad {
  /* 1. 背景にグラデーションを設定 */
  background: linear-gradient(
    to right, 
    /* 左側の色: #282f78、不透明度 10% (0.1) */
    rgba(40, 47, 120, 0.1),
    /* 右側の色: #fa7748、不透明度 10% (0.1) */
    rgba(250, 119, 72, 0.1)
  );
  
  /* 2. 背景をテキストの形にクリップ（切り抜く）*/
  -webkit-background-clip: text; /* Safari/Chrome 用のベンダープレフィックス */
  background-clip: text;

  /* 3. テキストの色を透明にして、背景のグラデーションが見えるようにする */
  color: transparent;

  /* その他のスタイル（フォントサイズなど） */
  font-size: 48px;
  font-weight: bold;
}



.header{
	transition: all 0.6s;
	position: fixed;
	width: 100%;
	z-index: 1000;
	backdrop-filter: blur(50px);
	background-color: rgba(255,255,255,0.20);
	opacity: 0;
	height: 60px;
}
.header.header_active{
	background-color: transparent;
	backdrop-filter: blur(0px);
}

/*　上に上がる動き　*/

.header.UpMove{
	animation: UpAnime 0.5s forwards;
}

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

/*　下に下がる動き　*/

.header.DownMove{
	animation: DownAnime 0.5s forwards;
	opacity: 1;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}


.head {
    position: relative;
    z-index: 999;
    padding-left: 14px;
}
.head_flex {
	display: flex;
	justify-content: space-between;
	align-items: normal;
}
.logo {
	width: 310px;
	height: 60px;
	display: flex;
	align-items: center;
}
.logo_foot {
    width: 200px;
    height: auto;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}
.logo a {
    display: block;
}
.logo_img{
	width: 130px;
}
.logo_txt{
	padding-bottom: 5px;
	font-size: 10px;
}

.head_l01_flex {
    display: flex;
	align-items: center;
	width: 80%;
    justify-content: end;
}

.openbtn_box {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	border-radius: 100px;
	border: 2px solid #282f78;
}
.openbtn_wrap{
	padding-top: 6px;
	padding-right: 20px;
	padding-left: 6px;
	padding-bottom: 6px;
}




/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*動き*/
    transition: all 0.6s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    visibility: hidden;
	backdrop-filter: blur(50px);
    background-color: rgba(255, 255, 255, 0.10);
	opacity: 0;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
	right: 0;
	visibility: visible;
	opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    /*position: fixed;*/
    position: relative;	
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.g-navin {
    text-align: center;
    width: 100%;
	transition: 0.1s;
	visibility: hidden;
	opacity: 0;
}
.panelactive .g-navin {
	padding-bottom: 90px;
	visibility: visible;
	opacity: 1;
}



/*リストのレイアウト設定*/
.scroll_no{
	overflow-y: hidden;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1{
    /*    position: fixed;*/
    z-index: 9999;/*ボタンを最前面に*/
    cursor: pointer;
    width: 44px;
    height: 44px;
    filter: invert(20%);
    position: relative;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 11px;
    height: 2px;
    background-color: #282f78;
    width: 50%;
  }


.openbtn1 span:nth-of-type(1) {
  top:18px; 
}

.openbtn1 span:nth-of-type(2) {
  top:28px;
  opacity: 0;	
}

.openbtn1 span:nth-of-type(3) {
  top:24px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 16px;
    left: 11px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 28px;
    left: 11px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}



.link_orange {
    background-color: #fa7748;
    color: #FFFFFF;
    border: 2px solid #fa7748;
	border-radius: 200px;
	padding-top: 0.7em;
	padding-right: 1.5em;
	padding-left: 1.5em;
	padding-bottom: 0.7em;
	border: 2px solid #fa7748;
	-webkit-box-shadow: 0px 3px 0px 0px #c85a33;
	box-shadow: 0px 3px 0px 0px #c85a33;
	display: block;
}
.link_orange svg{
    fill: #FFFFFF;
}
.link_orange02 {
    background-color: #fa7748;
    color: #FFFFFF;
    border: 2px solid #fa7748;
	border-radius: 200px;
	padding-right: 1.5em;
	padding-left: 1.5em;
	border: 2px solid #fa7748;
	-webkit-box-shadow: 0px 5px 0px 0px #c85a33;
	box-shadow: 0px 5px 0px 0px #c85a33;
	display: block;
}
.link_orange02 svg{
    fill: #FFFFFF;
}
.link_white02 {
    background-color: #fff;
    color: #2f417f;
    border: 2px solid #2f417f;
	border-radius: 200px;
	padding-right: 1.5em;
	padding-left: 1.5em;
	border: 2px solid #2f417f;
	-webkit-box-shadow: 0px 5px 0px 0px #0d102f;
	box-shadow: 0px 5px 0px 0px #0d102f;
	display: block;
}
.link_white02 svg{
    fill: #2f417f;
}
.link_blue02 {
    background-color: #2f417f;
	color: #FFFFFF;
    border: 2px solid #2f417f;
	border-radius: 200px;
	padding-right: 1.5em;
	padding-left: 1.5em;
	border: 2px solid #2f417f;
	-webkit-box-shadow: 0px 5px 0px 0px #0d102f;
	box-shadow: 0px 5px 0px 0px #0d102f;
	display: block;
}
.link_blue02 svg{
    fill: #FFFFFF;
}
.book_cv_btn .arrow_svg{
	height: 1.5em;
	width: 1.5em;
	position: absolute;
	right: 2em;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
}
.book_cv_btn .arrow_svg_right{
	transform: translateY(-50%) rotate(0deg);
}

.book_cv_btn .book_svg{
    height: 5em;
    width: 5em;
    position: absolute;
    left: 3em;
    top: 50%;
    transform: translateY(-50%);
    fill: transparent;
    stroke: #fff;
    stroke-width: 4;
}

.link_blue {
	background-color: #2f417f;
	color: #FFFFFF;
	border-radius: 200px;
	padding-top: 0.7em;
	padding-right: 1.5em;
	padding-left: 1.5em;
	padding-bottom: 0.7em;
	border: 2px solid #2f417f;
	-webkit-box-shadow: 0px 3px 0px 0px #0d102f;
	box-shadow: 0px 3px 0px 0px #0d102f;
	display: block;
}
.link_blue svg{
    fill: #FFFFFF;
}
.link_white {
    background-color: #FFFFFF;
    color: #2b2b2b;
    border: 2px solid #2b2b2b;
}
.link_white svg{
    fill: #2b2b2b;
}


.btn_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.btn_arrow .arrow_svg {
    width: 6px;
    height: 6px;
	position: absolute;
	right: 15px;
	top:50%;
	transform: translateY(-50%);
}
img.emoji {
  width: 1em !important;            /* 文字サイズに合わせる（16px相当）*/
  height: 1em !important;
  max-width: none !important;        /* グローバルの max-width:100% を打ち消し */
  display: inline-block;             /* 行内で扱う */
}




footer {
	padding-top: 6em;
	padding-right: 2em;
	padding-left: 2em;
	padding-bottom: 6em;
}
.pd_top02 {
    padding-top: 2em;
}
.pd_top04 {
	padding-top: 4em;
	margin-left: auto;
	margin-right: auto;
}
.pd_top06 {
    padding-top: 6em;
}
.pd_top08 {
	padding-top: 8em;
}
.pd_top10 {
	padding-top: 10em;
}
.pd_top12 {
	padding-top: 12em;
}
.pd_btm02 {
    padding-bottom: 2em;
}
.pd_btm04 {
    padding-bottom: 4em;
}
.pd_btm06 {
    padding-bottom: 6em;
}
.pd_btm08 {
    padding-bottom: 8em;
}
.pd_btm10 {
    padding-bottom: 10em;
}
.pd_btm12 {
    padding-bottom: 12em;
}
.mgn_top02{
	margin-top: 2em;
}
.mgn_top04{
	margin-top: 4em;
}
.mgn_top08{
	margin-top: 6em;
}
.mgn_top06{
	margin-top: 6em;
}
.mgn_btm02{
	margin-bottom: 2em;
}
.mgn_btm04{
	margin-bottom: 4em;
}
.mgn_btm06{
	margin-bottom: 6em;
}
.mgn_btm08{
	margin-bottom: 6em;
}
.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    gap: 1rem;
}
.marquee-inner {
    animation: marquee 90s linear infinite;
	margin-right: -1em;
}
@keyframes marquee {
  0%   { translate: 0; }
  100% { translate: calc(-100% - 1rem); }
}
/* 逆向き版 */
.marquee02 {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 1rem;
}
.marquee02 .marquee-inner {
  animation: marquee 90s linear infinite reverse; /* ← 逆向きにする */
  margin-left: -1em;  /* 余白の食い込み方向を反転（必要なら） */
  margin-right: 0;
}


.marguee_img {
	font-weight: 600;
	color: #FFFFFF;
	display: flex;
	align-items: flex-end;
	width: 390vw;
	padding-top: 0.2em;
	justify-content: space-around;
	max-width: 3000px;
	margin-bottom: 1em;
}
.marguee_img img {
	width: 7.8%;
	display: block;
	height: 10em;
	object-fit: contain;
	-webkit-box-shadow: 0px 0px 10px rgba(220,220,220,0.43);
	box-shadow: 0px 0px 10px rgba(220,220,220,0.43);
}
/* cv marguee */
.marquee_cv {
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	gap: 1rem;
	margin-bottom: 2em;
}
.marquee-inner_cv {
    animation: marquee_cv 90s linear infinite;
	margin-right: -1em;
}
@keyframes marquee_cv {
  0%   { translate: 0; }
  100% { translate: calc(-100% - 1rem); }
}
/* 逆向き版 */
.marquee02_cv {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 1rem;
}
.marquee02_cv .marquee-inner_cv {
  animation: marquee_cv 90s linear infinite reverse; /* ← 逆向きにする */
  margin-left: -1em;  /* 余白の食い込み方向を反転（必要なら） */
  margin-right: 0;
}


.marguee_img_cv {
	font-weight: 600;
	color: #FFFFFF;
	display: flex;
	align-items: flex-end;
	width: 200vw;
	padding-top: 0.2em;
	justify-content: space-around;
	max-width: 1500px;
}
.marguee_img_cv img {
	display: block;
	height: auto;
	object-fit: contain;
	padding-left: 2em;
}
.marguee_ft {
	font-weight: 600;
	color: #FFFFFF;
	font-size: 40em;
	width: 390vw;
	padding-top: 0.2em;
	max-width: 3000px;
	margin-bottom: 1em;
	opacity: 0.15;
	mix-blend-mode: multiply;
}



.mv {
	background: linear-gradient(to right,
  rgba(40, 47, 120, 0.1),
  rgba(250, 119, 72, 0.1)
	);
	position: relative;
	min-height: 600px;	
}
.top_main_bk {
	position: absolute;
	width: 100%;
	right: 0px;
	bottom: 0px;
	z-index: -1;
}
.mv_box_flex {
	padding-top: 70px;
	padding-right: 2em;
	padding-left: 2em;
	padding-bottom: 2em;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
.mv_ttl01 {
	font-size: 2.7em;
	font-style: italic;
	font-weight: 900;
	padding-bottom: 0.5em;
	padding-left: 1em;
}
.font_italic{
	font-style: italic;
}
.font_big {
	font-size: 1.3em;
}
.font_big02 {
	font-size: 2em;
}
.mv_ttl02 {
	font-size: 4em;
	font-weight: 700;
	margin-bottom: 0.5em;
	margin-left: 0.5em;
}
.label_grad {
	background: linear-gradient(to right, #282f78, #fa7748);
	display: inline-block;
	padding: 0.2em;
}
.label_blue {
	background: #282f78;
	display: inline-block;
	padding: 0.2em;
}
.label_orange {
	background: #fa7748;
	display: inline-block;
	padding: 0.2em;
}
.maker_yellow{
	background:-webkit-linear-gradient(transparent 60%, #ff6 60%);
	background:-o-linear-gradient(transparent 60%, #ff6 60%);
	background:linear-gradient(transparent 60%, #ff6 60%);
}

.mv_tab {
	font-size: 1.8em;
    line-height: 2;
    padding-left: 0.8em;
    font-weight: 600;
}
.mv_tab_txt {
	display: inline-block;
	padding-top: 0.2em;
	padding-right: 0.4em;
	padding-left: 0.4em;
	padding-bottom: 0.2em;
	border-radius: 100px;
	background-color: rgba(255,255,255,0.50);
	margin-right: 0.3em;
}
.mv_icon_flex {
	display: flex;
	justify-content: space-evenly;
	padding-bottom: 2em;
	padding-top: 2em;
}
.mv_icon {
	width: 32%;
}
.mv_box02 {
	position: relative;
}
.mv_img02 {
	position: absolute;
	width: 30%;
	display: block;
	z-index: 2;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}
.mv_cv_btn {
	font-weight: 900;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.d_cv_btn {
	font-weight: 900;
	position: relative;
	text-align: center;
	cursor: pointer;
}
.book_cv_btn {
	font-weight: 900;
	position: relative;
	text-align: center;
}
.mv_cv_pop{
  color:#000;
  background:#fff;
  font-size:2em;
  text-align:center;
  padding:0.4em 0.8em;
  font-weight:700;
  position:absolute;
  left:50%;
  transform:translate(-50%, -50%);
  width:23em;
  border-radius:12px;            /* 吹き出しっぽく角丸 */
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  z-index:10;
}
.d_cv_pop{
  background:#fff;
  font-size:1.8em;
  text-align:center;
  padding:0.4em 0.8em;
  font-weight:700;
  position:absolute;
  left:50%;
  top:0;
  transform:translate(-50%, -50%);
  width:23em;
  border-radius:12px;            /* 吹き出しっぽく角丸 */
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  z-index:10;
}

/* 吹き出しの“しっぽ”（下向き） */
.mv_cv_pop::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-9px;                  /* 本体の外に出す */
  transform:translateX(-50%);
  width:0;
  height:0;
  border-width:10px 10px 0 10px; /* 下向き三角形 */
  border-style:solid;
  border-color:#fff transparent transparent transparent; /* 三角の色＝背景色 */
}
.d_cv_pop::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-9px;                  /* 本体の外に出す */
  transform:translateX(-50%);
  width:0;
  height:0;
  border-width:10px 10px 0 10px; /* 下向き三角形 */
  border-style:solid;
  border-color:#fff transparent transparent transparent; /* 三角の色＝背景色 */
}
.mv_cv_photo {
	width: 10em;
	height: 10em;
	border: 2px solid #FFFFFF;
	border-radius: 200px;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}
.nav_cv_photo {
	width: 2em;
	height: 2em;
	border: 2px solid #FFFFFF;
	border-radius: 200px;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}
.d_cv_photo {
	width: 8em;
	height: 8em;
	border: 2px solid #FFFFFF;
	border-radius: 200px;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}
.mv_cv_txt {
	font-size: 4em;
	padding-top: 1em;
	padding-right: 0.5em;
	padding-left: 0.5em;
	padding-bottom: 1em;
	text-align: center;
}
.d_cv_txt {
	font-size: 3em;
	padding-top: 1em;
	padding-right: 0.5em;
	padding-left: 0.5em;
	padding-bottom: 1em;
	text-align: center;
}
.mv_cv_btn svg {
	fill:#fff;
	width: 8px;
	height: 8px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: rotate(90deg) translateY(-50%);
	z-index: 3;
}
.mv_cv_btn svg.arrow_svg_right {
	transform: rotate(0deg) translateY(-50%);	
}

.d_cv_btn svg.mado {
	fill:#fff;
	width: 8px;
	height: 8px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: rotate(90deg) translateY(-50%);
	z-index: 3;
}
.mv_cv_box {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 650px;
	padding-top: 8em;
	padding-bottom: 4em;
	position: relative;
}
.d_cv_box {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 650px;
	padding-top: 8em;
	padding-bottom: 4em;
}
.release_box {
	border-radius: 10px;
	background-color: #eeeeee;
	font-size: 3em;
	text-align: center;
	font-weight: 700;
	line-height: 1.5;
	width: 80%;
	margin-left: auto;
	padding: 1em;
	margin-right: auto;
	max-width: 650px;
	position: relative;
	margin-bottom: 1em;
}

/* 吹き出しの“しっぽ”（下向き） */
.release_box::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-9px;                  /* 本体の外に出す */
  transform:translateX(-50%);
  width:0;
  height:0;
  border-width:10px 10px 0 10px; /* 下向き三角形 */
  border-style:solid;
  border-color:#eeeeee transparent transparent transparent; /* 三角の色＝背景色 */
  z-index: 10;

}
.kadai {
	background-color: #eeeeee;
	position: relative;
	--tri-h: 6em;          /* 三角の高さ */
	--tri-color: #eeeeee;      /* 三角の色 */
	--tri-overlap: 1px;     /* 本体へ重ねる量（境目消し） */
	margin-bottom: 6em;
}
/* 下向き三角（最下部にくっつける） */
.kadai::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  /* 高さ＋オーバーラップ分だけ確保して、 */
  height: calc(var(--tri-h) + var(--tri-overlap));
  /* 下端を 1px(=--tri-overlap) だけ上にずらして被せる */
  bottom: calc(-1 * var(--tri-h) + var(--tri-overlap));
  background: var(--tri-color);
  /* 下向き三角形 */
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  /* アンチエイリアスの微ブレ防止（任意） */
  transform: translateZ(0);
}
.kadai_pop {
	background-color: #282f78;
	color: #FFFFFF;
	font-size: 3em;
	text-align: center;
	padding: 1em;
	border-radius: 100px;
	font-weight: 700;
	position: relative;
	width: 16em;
	margin-left: auto;
	margin-right: auto;
}
.kadai_ttl {
	text-align: center;
	font-size: 5em;
	font-weight: 800;
	margin-top: 0.5em;
}
.kadai_img {
	margin: 0 auto;
	width: 95%;
	max-width: 1500px;
}


/* 吹き出しの“しっぽ”（下向き） */
.kadai_pop::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-9px;                  /* 本体の外に出す */
  transform:translateX(-50%);
  width:0;
  height:0;
  border-width:10px 10px 0 10px; /* 下向き三角形 */
  border-style:solid;
  border-color:#282f78 transparent transparent transparent; /* 三角の色＝背景色 */
  z-index: 10;

}
.kaiketsu_ttl {
	font-size: 4em;
	text-align: center;
	font-weight: 700;
	line-height: 1.5;
}
.arrow_down01 {
	width: 20%;
	margin: 0 auto;
	display: block;
	max-width: 80px;
}
.about_ttl {
	font-size: 8em;
	font-weight: 900;
	text-align: center;
	padding-bottom: 0.5em;
}
.about_ttl02 {
	font-weight: 700;
	font-size: 4em;
	text-align: center;
	line-height: 1.5;
}
.aboutsys_img {
	margin: 0 auto;
	max-width: 1000px;
	width: 90%;
}
.aboutsys_arrow01 {
	margin: 0 auto;
	width: 50%;
	max-width: 350px;
	position: relative;
	z-index: 2;
	margin-top: -3em;

}
.aboutsys02_img_box {
	padding-top: 4em;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 4em;
	background-color: #eeeeee;
	margin-top: -2em;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	max-width: 1000px;
}
.about_swp_card {
	padding: 4em;
	display: flex;
	border-radius: 10px;
	border: 1px solid #282f78;
	align-items: center;
}
.about_swp_icon {
	width: 25%;
}
.about_swp_cnt {
	padding-left: 3em;
	flex: 1;
}
.about_swp_ttl {
	font-size: 3em;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: 0.5em;
}
.about_swp_txt {
	font-size: 2.5em;
	line-height: 1.7;
	text-align: left;
}
.about_swp_kome {
	font-size: 12px;
	text-align: right;
	margin: 0 auto;
	padding-top: 1em;
	max-width: 1400px;
}
.sys_map_box {
	padding-top: 6em;
	padding-right: 2em;
	padding-left: 2em;
	padding-bottom: 2em;
	background-color: #eeeeee;
	margin: 0 auto;
	max-width: 1200px;
}
.sys_map_ttl {
	font-size: 4em;
	text-align: center;
	font-weight: 800;
	padding-bottom: 1em;
}
.sys_map_txt {
	font-size: 3em;
	text-align: center;
	line-height: 1.7;
	font-weight: 700;
}
.hikaku_ttl {
	font-size: 4em;
	padding-top: 1em;
	padding-bottom: 1em;
	text-align: center;
	background-color: #2F417F;
	font-weight: 700;
}
.hikaku_tbl_box {
	margin: 0 auto;
	width: 95%;
	overflow-x: hidden;
	max-width: 1240px;
	display: flex;
	align-items: stretch;
}
.hikaku_tbl_box02 {
	margin: 0 auto;
	width: 95%;
	overflow-x: hidden;
	max-width: 1385px;
	display: flex;
	align-items: stretch;
}
.hikaku_head {
	width: auto;
	height: 70em;

}
.hikaku_head02 {
	width: auto;
	height: 36em;

}
.hikaku_body {
	flex: 1;
	overflow-x:scroll;
}
.hikaku_body_img {
	width: auto;
	height: 70em;
}
.hikaku_body_img02 {
	width: auto;
	height: 36em;
}

/* 横スクロール土台（すでにあるなら不要） */
.hint_box {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ヒントの“レイヤー”自体は全体を覆うが、背景は付けず中心にだけピルを置く */
.scroll-hint {
  position: absolute;
  inset: 0;                      /* 基準はボックス全体 */
  display: flex;
  align-items: center;           /* 中央（上下） */
  justify-content: center;       /* 中央（左右） */
  pointer-events: none;          /* 操作を邪魔しない */
  z-index: 5;
  animation: fadeIn .35s ease both;
}

/* 位置変更（必要に応じて付け替え） */
.scroll-hint.-top     { align-items: flex-start; padding-top: 10px; }
.scroll-hint.-bottom  { align-items: flex-end;   padding-bottom: 10px; }
.scroll-hint.-left    { justify-content: flex-start;  padding-left: 10px; }
.scroll-hint.-right   { justify-content: flex-end;    padding-right: 10px; }

/* ピル（ボタン風） */
.scroll-hint__pill {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	pointer-events: none;          /* ヒントなのでクリック不可のまま。クリック可能にしたいなら外す */
	padding: .6em 1.0em;
	border-radius: 9999px;         /* しっかり丸い角 */
	font-size: clamp(12px, 2.2vw, 14px);
	font-weight: 700;
	line-height: 1;
	color: #fff;                   /* 白文字 */
	background-color: rgba(47,65,127,0.39);           /* 濃いめの青（ブランドに合わせて変更可） */
	box-shadow: 0 8px 16px rgba(0, 0, 0, .18),   /* 落ち影でボタン感 */
    0 2px 4px rgba(0, 0, 0, .12),
    inset 0 1px 0 rgba(255,255,255,.2); /* 上側のハイライトで立体感 */
	/* ほんのり出現感（任意） */
	transform: translateZ(0) scale(1);
	transition: transform .25s ease, opacity .25s ease;
}

/* アイコンは少し大きめのまま */
.scroll-hint__icon {
  font-size: 1.15em;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}


/* アイコンを左右にスウェイ（ゆらす） */
.scroll-hint__icon,
.scroll-hint__text {
  display: inline-block;
  transform: translateX(0);
  animation: sway 1.2s ease-in-out infinite;
}

/* スクロールしたら消える */
.scroll-hint.is-hide {
  animation: fadeOut .35s ease forwards;
}
/* キーフレーム */
@keyframes sway {
  0%   { transform: translateX(-8px); }
  50%  { transform: translateX(8px); }
  100% { transform: translateX(-8px); }
}
@keyframes fadeIn {
  from { opacity: 0 }
  to   { opacity: 1 }
}
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden }
}

/* 動きが苦手なユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .scroll-hint__icon,
  .scroll-hint__text { animation: none; }
}

.flow_icon {
	margin: 0 auto;
	max-width: 800px;
	width: 95%;
}
.line_top {
	border-top: 1px solid #eeeeee;
}
.sub_ttl {
	font-size: 2em;
	text-align: center;
	font-weight: 700;
}
.sub_ttl02 {
	font-size: 4em;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}
.detail_btn_flex {
	display: flex;
	padding-top: 2em;
	padding-bottom: 2em;
	justify-content: center;
	flex-wrap: wrap;
	align-items: stretch;
}

.detail_btn {
	font-size: 2.5em;
	text-align: center;
	font-weight: 700;
	border-radius: 10px;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 3px #E1E1E1;
	box-shadow: 0px 3px #E1E1E1;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 2%;
	display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
	cursor: pointer;
}
.detail_btn.active {
	background-color: #ffddd1;
	-webkit-box-shadow: 0px 3px #fa7748;
	box-shadow: 0px 3px #fa7748;
	color: #fa7748;
}
.detail_img {
	position: relative;
}
.detail_disp {
    position: absolute;
    width: 87%;
    height: 100%;
    top: 3.3%;
    left: 6.5%;
}
.detail_disp_img {
	display: none;
}

.detail_disp_img.active {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}
.detail_flex {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}






.sub_lead {
	font-size: 2.5em;
	text-align: center;
	font-weight: 500;
	line-height: 1.7;
	padding-bottom: 2em;
}
.detail_yubi {
	font-size: 3em;
	text-align: center;
	font-weight: 700;
}
.detail_finger {
	display: inline-block;
	width: 3em;
    margin-left: 0.5em;
	transform: rotate(-125deg)
}


.value_flex {
	margin: 0 auto;
	max-width: 800px;
	width: 95%;
}
.value_box {
	border-radius: 10px;
	background-color: #e9eaf1;
	padding: 3em;
	position: relative;
	overflow: hidden;
	margin-bottom: 2%;
}
.value_num {
	font-size: 35em;
	color: #f2f3f7;
	position: absolute;
	top: -0.04em;
	right: -0.09em;
	line-height: 0.6;
	font-weight: 900;
}
.value_f {
	position: relative;
	padding-top: 2em;
	display: flex;
}
.value_ttl {
	font-size: 4em;
	text-align: center;
	line-height: 1.5;
	flex: 1;
	font-weight: 700;
}
.value_img {
	width: 20%;
}
.value_lead {
	font-size: 2.5em;
	text-align: left;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

  .wave-hero{
    --bg-start:#e9eaf1;
    --bg-end:#fef1ec;

    --bottom-strip-start:#e9eaf1;
    --bottom-strip-end:#fef1ec;

    --bottom-wave-fill: rgba(255,255,255,.90);

    --wave-depth: 7em;

    min-height: none;
    padding: 10em 2em;
    /*display: grid;
    place-items: center;*/
    text-align: center;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;

    background: linear-gradient(90deg, var(--bg-start), var(--bg-end));
  }

  .wave-hero::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height: var(--wave-depth);
    background: linear-gradient(90deg, var(--bottom-strip-start), var(--bottom-strip-end));
    z-index: 0;
  }

  .wave-hero h1{
    margin: 0 0 8px;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 600;
  }
  .wave-hero p{
    margin: 0;
    font-size: clamp(16px, 2vw, 18px);
    opacity: .85;
  }

  .wave-hero > *:not(.wave){
    position: relative;
    z-index: 2;
  }

  .wave{
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--wave-depth);
    pointer-events: none;
    z-index: 1;
    color: var(--bottom-wave-fill);
  }

  .wave-top{ top: 0; }
  .wave-bottom{
    bottom: -1px;
    transform: rotate(0deg);
    transform-origin: center;
  }
.merit_flex   {
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 6em;
	width: 95%;
	max-width: 800px;
	position: relative;
}
.merit_num {
	font-size: 35em;
	position: absolute;
	top: -0.3em;
    left: -0.1em;
}
.merit_flex02 .merit_num {
	left: auto;
	right: -0.1em;
}

.merit_cnt {
	position: relative;
	z-index: 2;
}
.merit_ttl_flex {
	display: flex;
	align-items: center;
}
.merit_icon {
	display: block;
	width: auto;
	height: 6em;
}
.merit_ttl {
	font-size: 6em;
	font-weight: 700;
	text-align: left;
	padding-left: 0.5em;
}
.merit_tag_box {
	padding-top: 3em;
	padding-bottom: 1em;
}
.merit_tag {
	font-size: 2em;
	text-align: left;
	padding: 0.5em;
	display: inline-block;
	border-radius: 100px;
	background-color: #fa7748;
	margin-right: 0.5em;
	margin-bottom: 0.5em;
	font-weight: 600;
}
.merit_lead {
	font-size: 2.5em;
	text-align: left;
	font-weight: 700;
	line-height: 1.7;
	padding-bottom: 1.5em;
}
.merit_img {
	display: block;
	margin: 0 auto;
	width: 60%;
}
.merit_tag_txt {
	font-weight: 700;
	margin-right: 0.3em;
	font-size: 2em;
}
.voice_flex {
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 2%;
	width: 95%;
	padding: 3em;
	border-radius: 5px;
	background-color: #f6f7fb;
	border: 1px solid #282f78;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row-reverse;
	max-width: 800px;
}
.voice_img {
	width: 30%;
}
.voice_cnt {
	width: 66%;
}
.voice_tag {
	font-size: 1.8em;
	font-weight: 700;
	display: inline;
	background-color: #282f78;
	border-radius: 100px;
	padding-top: 0.3em;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 0.3em;
	color: #FFFFFF;
}
.voice_ttl {
	font-size: 3em;
	line-height: 1.5;
	text-align: left;
	font-weight: 700;
	padding-bottom: 0.3em;
	padding-top: 0.8em;
}
.voice_lead {
	font-size: 2em;
	line-height: 1.7;
	text-align: left;
	padding-bottom: 1em;
}
.voice_cp {
	font-weight: 700;
	font-size: 2em;
	line-height: 1.5;
}
.member_flex {
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	width: 95%;
	max-width: 800px;
}
.member_box {
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 6%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.member_img {
	border-radius: 10px;
	width: 20%;
}
.member_cnt {
	width: 77%;
}
.member_name {
	font-size: 3em;
	font-weight: 700;
	text-align: left;
}
.member_post {
	font-size: 2em;
	font-weight: 700;
	text-align: left;
	padding-bottom: 0.5em;
	padding-top: 0.9em;
	line-height: 1.5;
}
.member_txt {
	font-size: 2em;
	line-height: 1.7;
	text-align: left;
}
.price_wrap {
	margin: 0 auto;
	width: 95%;
	position: relative;
	max-width: 800px;
}
.price_box {
	margin: 0 auto;
	width: 95%;
	position: relative;
	max-width: 1200px;
}
.price_ttl {
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	padding-top: 3%;
	text-align: center;
	font-size: 1.5em;
}
.price_ttl01 {
	display: inline-block;
	background-color: #FFFFFF;
	font-size: 2em;
	font-weight: 700;
	margin-right: 2%;
	padding-top: 0.2em;
	padding-right: 0.5em;
	padding-left: 0.5em;
	padding-bottom: 0.2em;
}
.price_ttl02 {
	font-size: 2.3em;
	text-align: left;
	font-weight: 700;
}
.price_img01 {
	width: 15%;
	position: absolute;
	left: 0px;
	bottom: 0px;
	z-index: 5;
}
.price_img02 {
	width: 7%;
	position: absolute;
	right: 0px;
	bottom: 0px;
	z-index: 5;
}
.price_kome {
	margin-top: 2em;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	width: 87%;
	text-align: right;
	font-size: 10px;
	max-width: 725px;
}
.cv_wrap {
	position: relative;
	background: linear-gradient(to right, rgba(40, 47, 120, 0.1), rgba(250, 119, 72, 0.1));
	padding-right: 4em;
	padding-left: 4em;
	overflow: hidden;
}
.cv_bk  {
	position: absolute;
	bottom: 0px;
	right: 0px;
}
.cv_box {
	border-radius: 10px;
	background-color: rgba(255,255,255,0.95);
	-webkit-box-shadow: 0px 0px 20px rgba(185,185,185,0.16);
	padding-top: 2em;
	padding-right: 2em;
	padding-left: 2em;
	padding-bottom: 4em;
	box-shadow: 0px 0px 20px rgba(185,185,185,0.16);
	position: relative;
	z-index: 3;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.cv_ttl {
	font-size: 4em;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}
.cv_lead {
	font-size: 2em;
	text-align: center;
	font-weight: 700;
	line-height: 1.7;
	padding-top: 1em;
	padding-bottom: 2em;
}
.cv_photo_box {
	position: absolute;
	z-index: 2;
	bottom: 70%;
	left: -20em;
	transform: translateY(50%) rotate(-15deg);
}
.faq_box {
	width: 95%;
	border-radius: 5px;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 2em;
	border: 2px solid #282f78;
	overflow: hidden;
	max-width: 1400px;
	-webkit-box-shadow: 8px 8px rgba(40,47,120,0.08);
	box-shadow: 8px 8px rgba(40,47,120,0.08);
}
.faq_q {
	font-size: 2.5em;
	font-weight: 700;
	padding: 0.9em;
	text-align: left;
	line-height: 1.5;
}
.bk_blue02 {
	background-color: #d4d5e4;
}
.faq_flex {
	display: flex;
	justify-content: flex-start;
	margin: 0 auto;
	align-items: flex-start;
	max-width: 1000px;
}
.faq_icon {
	font-size: 1.5em;
	display: flex;
	border-radius: 200px;
	text-align: center;
	font-weight: 700;
	width: 1.5em;
	height: 1.5em;
	justify-content: center;
	align-items: center;
	padding-bottom: 0.15em;
}
.bk_blue {
	background-color: #282f78;
}
.bk_orange {
	background-color: #fa7748;

}

.faq_ttl {
	font-weight: 700;
	flex: 1;
	padding-left: 0.5em;
	line-height: 1.5;
	padding-top: 0.3em;
}
.a_link {
	color: #fa7748;
	text-decoration: underline;
}
.contact_wrap {
	margin: 0 auto;
	background: linear-gradient(to right, rgba(40, 47, 120, 0.05), rgba(250, 119, 72, 0.05));
	max-width: 1600px;
}
.foot_logo {
	margin: 0 auto;
	display: block;
	width: 30em;
	max-width: 300px;
}
.foot_logo_txt {
	font-size: 1.8em;
	font-weight: 700;
	padding-bottom: 0.5em;
}
.foot_link_flex {
	margin: 0 auto;
	width: 95%;
	max-width: 1800px;
}
.foot_a {
	font-size: 10px;
	text-align: left;
	padding: 0.5em;
	display: inline-block;
	margin-right: 0.5em;
}
.foot_a .blank_svg {
	fill:#000;
	height: 1em;
	width: 1em;
	margin-left: 1em;
}
.foot_copy {
	text-align: center;
	font-size: 10px;
	color: #C9C9C9;
	padding-top: 4em;
	padding-bottom: 4em;
}
.fix_cv_box {
	position: fixed;
	left: 0px;
	bottom: 0px;
	z-index: 10;
	width: 100%;
}
.fix_cv {
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 1em;
	max-width: 800px;
	position: relative;
	/* 1. 本体に背景色と角丸を設定 */
	background-color: #fff;
	color: #333;
	font-size: 1.2em;
	text-align: left;
	border-radius: 10px;
	z-index: 1;
	width: 95%;
}
/* 擬似要素でグラデーションの層を表現 */
.fix_cv::before { /* セレクタを修正 */
    content: '';
    position: absolute;
    z-index: -1; 
    
    /* 線の太さの分だけ外側に広げる（線幅を5pxとする） */
    top: -3px; 
    right: -3px; 
    bottom: -3px; 
    left: -3px; 
    
    /* 擬似要素にグラデーションを設定 */
    background: linear-gradient(to right, #3e4482, #fa7748);
    
    /* 擬似要素の角丸は本体より線幅の分だけ大きくする (10px + 5px = 15px) */
    border-radius: 13px; 
}


.fix_head {
	background: linear-gradient(to right, rgba(40, 47, 120, 1), rgba(250, 119, 72, 1));
	padding-top: 0.5em;
	text-align: center;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding-bottom: 0.5em;
}
.fix_head_txt01 {
	display: inline-block;
	background-color: #FFFFFF;
	font-size: 2.5em;
	padding-top: 0.2em;
	padding-right: 0.4em;
	padding-left: 0.4em;
	padding-bottom: 0.2em;
	font-weight: 700;
	margin-right: 0.5em;
}
.fix_head_txt02 {
	font-size: 3.5em;
	display: inline-block;
	font-weight: 700;
}
.fix_body {
	background-color: #fff; /* 背景色を設定しないとグラデーションが透けて見えます */
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-top: 0.5em;
	padding-right: 0.5em;
	padding-left: 0.5em;
	padding-bottom: 1em;
	text-align: center;
}
.fix_body_flex {
	display: flex;
	justify-content: center;
}
.fix_btn {
	width: 40%;
	margin-left: 1%;
	margin-right: 1%;
	font-size: 2.5em;
	font-weight: 700;
}
.btn_up {
	cursor: pointer;
}
/* fix_cv_boxの基本スタイル（例として固定位置に設定） */
.fix_cv_box {
    /* アニメーションの対象となるプロパティを設定 */
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; /* 変化の速さ */
}
/* 最初の非表示状態: 透明かつ画面下へ移動 */
.fix_cv_box.hidden-init {
    opacity: 0;
    transform: translateY(100px); /* 下へ隠す */
}
/* 表示状態: 不透明で元の位置へ */
.fix_cv_box.visible {
    opacity: 1;
    transform: translateY(0);
}
/* スクロール時の消える状態: 透明かつ画面下へ移動 */
.fix_cv_box.hidden-scroll {
    opacity: 0;
    transform: translateY(100px); /* 再度、下へ隠す */
}
.g-navin_flex {
	margin: 0 auto;
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 800px;
	padding-top: 90px;
	padding-bottom: 1%;
}
.g-navin_a {
	border-radius: 100px;
    border: 2px solid #282f78;
    background-color: #FFFFFF;
    width: 49%;
    margin-bottom: 2%;
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
    color: #282f78;
}
.g-navin_a.nav_link_activ {
	color: #fa7748;
	background-color: #fff5f1;
}
.g-navin_cv_box {
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	width: 90%;
	max-width: 800px;
}
.g-navin_cv02 {
	font-size: 3.5em;
	font-weight: 700;
	margin-bottom: 3%;
	position: relative;
}
.g-navin_cv01 {
	font-size: 3.5em;
	font-weight: 700;
	margin-bottom: 2%;
	position: relative;
}
.thx_box {
	margin: 0 auto;
	border-radius: 10px;
	width: 95%;
	background: linear-gradient(to right, rgba(40, 47, 120, 0.05), rgba(250, 119, 72, 0.05));
	padding-right: 4em;
	padding-left: 4em;
	max-width: 800px;
}
.thx_ttl_eng {
	font-size: 2em;
	text-align: center;
	font-weight: 700;
}
.thx_ttl_j01 {
	text-align: center;
	font-size: 4em;
	font-weight: 700;
	line-height: 1.5;
	padding-top: 0.3em;
}
.thx_wrap {
	padding-top: 90px;
}
.form_cv_btn {
	font-size: 3.5em;
	margin-left: auto;
	margin-right: auto;
	font-weight: 700;
	margin-bottom: 2em;
	width: 70%;
	max-width: 600px;
}
.link_orange.thx_dl_btn {
	font-size: 3.5em;
	margin: 0 auto;
	font-weight: 700;
	text-align: center;
	width: 80%;
	max-width: 600px;
}
.font_small{
	font-size: 0.7em;
	font-weight: 400;
}
.ml_ttl {
	font-size: 4em;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 1em;
}
.modal_cnt {
	overflow-y: auto;
}
.fancybox__content{
	border-radius: 10px !important;
	padding: 20px !important;
	
}
.fancybox__slide{
	padding-top: 100px !important;
	padding-bottom: 0px !important;	
}
.detail_modal_flex {
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.detail_modal_l {
	width: 32%;
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.5;
	padding: 0.5em;
	text-align: center;
	margin-bottom: 1%;
	border-radius: 5px;
	border: 1px solid #D3D3D3;
	display: flex;
	justify-content: center;
	align-items: center;
}
.detail_modal_l > span{
	display: inline-block;           /* 子を“箱”にする */
	text-align: left;                /* 箱の中は左寄せ */
	max-width: 100%;                 /* はみ出し防止 */
	line-height: 1.5;
}

.fancybox__backdrop{
	backdrop-filter: blur(50px) !important;
    background-color: rgba(255, 255, 255, 0.20) !important;
}
.fancybox__content>.carousel__button.is-close {
    color: var(--fancybox-color, #000) !important;
}
.bk_grad {
    background: linear-gradient(to right, rgba(40, 47, 120, 0.1), rgba(250, 119, 72, 0.1));
}
.txt_grad {
    background: linear-gradient(to right, rgba(40, 47, 120, 1), rgba(250, 119, 72, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.txt_logo01{
	height: 1em;
	width: auto;
	display: inline-block;
	margin-right: 0.2em;
	margin-left: 0.2em;
}
.txt_logo02{
	height: 1.5em;
	width: auto;
	display: inline-block;
	margin-right: 0.2em;
	margin-left: 0.2em;
}
.top_seminar_card {
	border-radius: 10px;
	display: block;
	border: 1px solid #282f78;
	background-color: #FFFFFF;
	overflow: hidden;
	position: relative;
}
.top_seminar_box {
	padding: 2em;
}
.top_seminar_tab {
	font-size: 2.5em;
	border-radius: 100px;
	padding: 0.5em;
	text-align: center;
	width: 10em;
	margin-left: auto;
	margin-right: auto;
	font-weight: 700;
}
.top_seminar_tab.tab_open {
	background-color: #FA7748;
	color: #FFFFFF;
}
.semi_finish .top_seminar_tab {
	background-color: #b5b5b5;
	color: #FFFFFF;
}
.top_seminar_b_ttl {
	font-size: 2.8em;
	text-align: left;
	font-weight: 700;
	line-height: 1.5;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
.top_seminar_b_day {
	font-size: 2.5em;
	font-weight: 600;
	text-align: left;
	line-height: 1.5;
	padding-bottom: 0.5em;
}
.top_seminar_b_area {
	font-size: 2.5em;
	font-weight: 600;
	padding-bottom: 0.5em;
}

.semi_area {
	width: 1em;
	height: auto;
	display: inline-block;
	margin-right: 0.3em;
}
.top_seminar_b_lead {
	font-size: 1.8em;
	text-align: left;
	line-height: 1.5;
}
.top_seminar_b_cat_box {
	border-top: 1px solid #e3e4e7;
	padding-top: 2em;
	margin-top: 2em;
}
.top_seminar_b_cat {
	display: inline-block;
	color: #282f78;
	font-size: 2em;
	font-weight: 500;
	border-radius: 3px;
	padding: 0.5em;
	border: 1px solid #282f78;
	background-color: #F4F4F4;
	margin-right: 0.5em;
}
.top_seminar_img {
	position: relative;
}
.top_semi_thx {
	display: none;
}
.semi_finish .top_semi_thx {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: rgba(10,13,46,0.80);
	color: #FFFFFF;
	font-weight: 200;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: flex;
	font-size: 5em;
}
.btn_box {
	width: 90%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.bk_blue_half {
	background-color: #f6f7fb;
}
.top_news_box {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1600px;
}
.top_news_img {
	margin-left: 6em;
    margin-right: auto;
    display: block;
    width: 10%;
    max-width: 100px;
    transform: scale(2.5);
}
.top_news_flex {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
}
.top_news_f {
	background-color: #FFFFFF;
	border-radius: 5px;
	border: 1px solid #282f78;
	overflow: hidden;
	display: flex;
	margin-bottom: 2%;
}
.top_news_sum {
	display: block;
	width: 30%;
	object-fit: cover;
}
.top_news_l {
	flex: 1;
	padding: 2em;
}
.top_news_ttl {
	font-size: 2.5em;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	padding-bottom: 0.3em;
}
.top_news_cat {
	background-color: #282f78;
	display: inline-block;
	font-size: 2em;
	font-weight: 700;
	border-radius: 5px;
	padding: 0.5em;
	margin-right: 0.5em;
}
.top_news_day {
	text-align: right;
	font-size: 1.8em;
	font-weight: 500;
}
.g-navin_ft_link {
	border-top: 2px solid #282f78;
	padding-top: 3em;
	margin-top: 4em;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}
.g-nav_icon_a {
	display: inline-block;
	width: 7em;
	height: 7em;
	border-radius: 100px;
	background-color: #FFFFFF;
	padding: 1.5em;
	border: 1px solid #f4f4f4;
	-webkit-box-shadow: 0px 2px #a8a8a8;
	box-shadow: 0px 2px #a8a8a8;
	margin-left: 1em;
	margin-right: 1em;
}
.g-nav_icon_img {
	display: inline-block;
	width: 100%;
	height: 100%;
}
.foot02_logo_a {
	display: block;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	max-width: 490px;
	margin-bottom: 6em;
}
.ft02_link_flex {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}
.ft02_link_box {
	width: 50%;
}
.ft02_link_a {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    display: block;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 100px;
    padding: 0.8em;
    border: 1px solid #283971;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}
.page_mv {
	position: relative;
	margin-top: -60px;
}

.page_ttl_box {
	text-align: center;
	margin-top: 60px;
	padding-top: 90px;
	padding-bottom: 30px;
}
.page_ttl01 {
	font-size: 1.8em;
	text-align: center;
	font-weight: 600;
	padding-bottom: 0.5em;
}
.page_ttl02 {
	text-align: center;
	font-size: 4em;
	line-height: 1.4;
	font-weight: 700;
}
.page_ttl01,.page_ttl02 {
	opacity: 0;
	transform: translateX(-20px);
	animation: ttlSlideIn .5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ★ page_ttl01 を少し遅らせる */
.page_ttl01 {
	animation-delay: 0.1s;
}

/* ★ page_ttl02 は追いかけるようにさらに遅らせておく */
.page_ttl02 {
	animation-delay: 0.24s;
}

@keyframes ttlSlideIn {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


.ft_bk_mv {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
	object-fit: cover;
}
.page_ttl_line {
	border-bottom: 1px solid #FFFFFF;
}
.ft_ttl02_box {
	padding-top: 4em;
	padding-bottom: 8em;
	margin-left: auto;
	margin-right: auto;
}
.ft_ttl02_txt {
	font-size: 11em;
	font-weight: 700;
	text-align: center;
	line-height: 1.3;
	letter-spacing: 0.2em;
	
}
.ft_ttl_small {
	font-size: 0.8em;
}
.ft_ttl_big02 {
	font-size: 1.5em;
}
.ft_ttl_big01 {
	font-size: 1.2em;
}
.ft_ttl_eng {
	text-align: center;
	font-size: 1.5em;
	font-style: italic;
	padding-top: 1em;
}
.ft_mv_mq {
	width: 100%;
	position: absolute;
	left: 0px;
	top: 50%;
	z-index: -1;
	transform: translateY(-20%);
}
.pankuzu_wrap {
	padding: 2em;
	background-color: #f6f7fb;
}
.pankuzu {
	margin-left: auto;
	margin-right: auto;
	width: 95%;
	max-width: 1800px;
	font-size: 1.6em;
	text-align: left;
	line-height: 1.4;
}
.pankuzu_line {
	padding-left: 1em;
	padding-right: 1em;
}
.pankuzu_a {
	color: #282f78;
	font-weight: 700;
	text-decoration: underline;
}
.sp_flex {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
	position: relative;
}
.sp_f_img {
	width: 50%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4em;
	max-width: 550px;
}
.sp_l_ttl {
	font-size: 5em;
	text-align: left;
	line-height: 1.5;
	font-weight: 900;
	padding-bottom: 0.3em;
}
.sp_l_lead {
	font-size: 2.5em;
	text-align: left;
	line-height: 1.7;
}
.sp_l_num {
	font-size: 35em;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: -1;
	opacity: 0.15;
	font-weight: 900;
	transform: translateX(-0.2em) translateY(-0.1em);
}
.sp_f_line::before {
	content: " ";
	background: linear-gradient(to right, rgba(40, 47, 120, 1), rgba(250, 119, 72, 1));
	opacity: 0.15;
	height: 2px;
	width: 50%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.cp_info_box {
	border-radius: 10px;
	background-color: #f6f7fb;
	border: 1px solid #282f78;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	padding: 4em;
	max-width: 1600px;
	-webkit-box-shadow: 0px 0px 20px rgba(160,160,160,0.20);
	box-shadow: 0px 0px 20px rgba(160,160,160,0.20);
}
.cp_info_dl {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 4em;
	padding-top: 4em;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}
.cp_info_dt {
	font-size: 2.5em;
	text-align: left;
	font-weight: 700;
	line-height: 1.7;
	width: 30%;
}
.cp_info_dd {
	font-size: 2.5em;
	line-height: 1.7;
	width: 70%;
}


.cp_info_line {
	border-bottom: 2px solid #282f78;
}
.sp_l_ttl_sub {
	font-size: 2.5em;
	font-weight: 700;
	text-align: left;
	line-height: 1.3;
	padding-bottom: 0.3em;
}
.cp_ab_ttl01 {
	font-size: 3em;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
}
.cp_ab_ttl_big {
	font-size: 1.4em;
    font-style: italic;
    display: inline-block;
    padding-top: 0.5em;
}
.cp_logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	max-width: 600px;
	margin-bottom: 4em;
}
.cp_ms_img {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1600px;
}
.cp_ms {
	background: linear-gradient(to right, rgba(40, 47, 120, 0.05), rgba(250, 119, 72, 0.05));
}
.pp_box   {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
}
.pp_lead {
	font-size: 2.5em;
	line-height: 1.7;
	text-align: left;
}
.pp_ul li {
	font-size: 2.5em;
	line-height: 1.5;
	padding-bottom: 1em;
}
.pp_ttl {
	font-size: 4em;
	font-weight: 700;
	text-align: left;
	padding-bottom: 0.5em;
	border-bottom: 2px solid #000000;
}
.pp_ul {
	margin-left: 4em;
}
.pp_ttl02 {
	font-size: 2.5em;
	font-weight: 700;
	padding: 1em;
	background-color: #f6f6f6;
	text-align: left;
	margin-bottom: 0.5em;
	line-height: 1.5;
}
.pp_ol {
	margin-left: 4em;
}
.pp_ol li {
	font-size: 2.5em;
	line-height: 1.5;
	padding-bottom: 1em;
}
.pp_ttl03 {
	font-size: 2.5em;
	font-weight: 700;
	text-align: left;
	padding: 1em;
	line-height: 1.5;
	border-left: 5px solid #f6f6f6;
}
.cv_wrap_book {
	background-image: none;
	background-color: none;
}
.contact_mv_wrap {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
}
.contact_ttl {
	font-size: 4em;
	font-weight: 700;
	text-align: center;
}
.contact_lead {
	font-size: 2.5em;
	text-align: left;
	line-height: 1.7;
	padding-top: 2.5em;
	padding-bottom: 2.5em;
}
.cv_lead02 {
	font-size: 3em;
	font-weight: 700;
	text-align: center;
}
.cv_lead02 .arrow_svg {
	width: 7px;
	height: 7px;
	fill:#fa7748;
	transform: rotate(90deg);
	position: absolute;
	top: 71%;
	right: 40px;
}
.contact_btn {
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
}




























































































































































































@media only screen and (min-width: 375px) {	

}
@media only screen and (min-width: 425px) {	

}












/* Tablet Layout: 481px to 767px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {	
.sp480{
	visibility: hidden;
	display: none;
}
.pc480{
	visibility:visible;
	display: block;
}
.btn_up{
	transition: all  0.3s ease;
}
.btn_up:hover{
    transform: translateY(-5px);
}
.btn_up_color:hover{
	background: #fef1ec;
}	
	
.link_orange:hover{
    background-color: #FFFFFF;
    color: #fa7748;
	border: 2px solid #fa7748;
	-webkit-box-shadow: 0px -3px 0px 0px transparent;
	box-shadow: 0px -3px 0px 0px transparent;
	transform: translateY(4px);
}
.link_orange:hover svg{
    fill: #d25e3b;
	transform: translateX(10px) translateY(-50%);
}
.link_orange02:hover{
    background-color: #FFFFFF;
    color: #fa7748;
	border: 2px solid #fa7748;
	-webkit-box-shadow: 0px -3px 0px 0px transparent;
	box-shadow: 0px -3px 0px 0px transparent;
	transform: translateY(4px);
}
.link_orange02:hover svg{
    fill: #d25e3b;
	transform: translateX(10px) translateY(-50%);
}
.mv_cv_btn:hover svg {
	transform: rotate(90deg) translateY(-40%);
}
.mv_cv_btn:hover svg.arrow_svg_right{
	transform: rotate(0deg) translateY(-40%);	
}	
.link_white02:hover{
    background-color: #2f417f;
    color: #fff;
	border: 2px solid #2f417f;
	-webkit-box-shadow: 0px -3px 0px 0px transparent;
	box-shadow: 0px -3px 0px 0px transparent;
	transform: translateY(4px);
}
.link_white02:hover svg{
    fill: #fff;
	transform: translateX(10px) translateY(-50%);
}
.d_cv_btn:hover svg {
	transform: rotate(90deg) translateY(-40%);
}	
.link_blue02:hover{
    background-color: #FFFFFF;
    color: #2f417f;
	border: 2px solid #2f417f;
	-webkit-box-shadow: 0px -3px 0px 0px transparent;
	box-shadow: 0px -3px 0px 0px transparent;
	transform: translateY(4px);
}
.link_blue02:hover svg{
    fill: #2f417f;
}
.book_cv_btn:hover .arrow_svg{
	transform: translateY(-50%) rotate(90deg);
}
.book_cv_btn:hover .arrow_svg_right{
	transform: translateY(-50%) rotate(0deg);
}	
.book_cv_btn:hover .book_svg{
    stroke: #2f417f;
    fill: none;
	transform: translateY(-50%);
}	
		
.link_blue:hover{
    background-color: #FFFFFF;
    color: #2f417f;
	border: 2px solid #2f417f;
	-webkit-box-shadow: 0px -3px 0px 0px transparent;
	box-shadow: 0px -3px 0px 0px transparent;
	transform: translateY(4px);
	
}
.link_blue:hover svg{
    fill: #2f417f;
	transform: translateY(-50%) rotate(90deg);
}	
.a_link:hover {
	color: #2f417f;
	text-decoration: underline;
}	
.g-navin_a:hover{
	border: 2px solid #282f78;
    background-color: #282f78;
	color: #fff;
}
.ft02_link_a:hover {
	color: #fff;
	background-color: #282f78;
}














}
@media only screen and (min-width:768px){
body .sp768{
	visibility:hidden;
	display: none;
}
body .pc768{
    visibility: visible;
    display: block;
}
body .pc768_1600{
    visibility: visible;
    display: block;
}
	
/*========= ナビゲーションのためのCSS ===============*/	
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    /*position: fixed;*/
    position: relative;	
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/

.panelactive .g-navin {
}
.logo {
	width: 180px;
}
.mv_ttl01{
	font-size: 28px;
}
.mv_ttl02{
	font-size: 40px;
}
.mv_tab{
	font-size: 16px;
}
.mv_cv_txt {
	font-size: 40px;
}
.d_cv_txt {
	font-size: 30px;
}	
.mv_cv_photo{
	width:100px;
	height: 100px;
}
.nav_cv_photo{
	width:80px;
	height: 80px;
}	
.d_cv_photo{
	width:80px;
	height: 80px;
}	
.mv_cv_pop{
	font-size: 20px;
}
.d_cv_pop{
	font-size: 16px;
}	
.mv_cv_btn svg{
	width: 12px;
	height: 12px;
}
.d_cv_btn svg{
	width: 12px;
	height: 12px;
}	
.mv_cv_box {
	padding-top: 80px;
	padding-bottom: 40px;
}
.d_cv_box {
	padding-top: 80px;
	padding-bottom: 40px;
}	
	
.release_box {
	font-size: 30px;
}
.kadai_pop {
	font-size: 30px;
}
.kadai_ttl {
	font-size: 60px;
}
.kaiketsu_ttl {
	font-size: 40px;
}
.about_ttl {
	font-size: 80px;
}
.about_ttl02 {
	font-size: 40px;
}
.about_swp_ttl {
	font-size: 30px;
}
.about_swp_txt{
	font-size: 20px;
}
.sys_map_ttl {
	font-size: 40px;
}
.sys_map_txt {
	font-size: 30px;
}
.hikaku_ttl {
	font-size: 40px;
}
.hikaku_head, .hikaku_body_img{
	height: 700px;
}
.hikaku_head02, .hikaku_body_img02{
	height: 360px;
}	
.value_ttl {
	font-size: 40px;
}
.value_lead {
	font-size: 20px;
}
.value_box {
	padding: 40px;
}
.value_num {
	font-size: 350px;
}
.value_f {
	padding-top: 10px;
}
.sub_ttl {
	font-size: 20px;
}
.sub_ttl02 {
	font-size: 40px;
}
.sub_lead {
	font-size: 20px;
}
.detail_btn {
	font-size: 20px;
}
.detail_yubi {
	font-size: 30px;
}
.merit_ttl {
	font-size: 60px;
}
.merit_num {
	font-size: 350px;
}
.merit_tag {
	font-size: 16px;
}
.merit_tag_box {
	padding-top: 30px;
	padding-bottom: 10px;
}
.merit_lead {
	font-size: 20px;
}
.merit_tag_txt {
	font-size: 20px;
}
.merit_icon {
	height: 60px;
}
.voice_tag   {
	font-size: 16px;
}
.voice_ttl {
	font-size: 30px;
}
.voice_lead {
	font-size: 20px;
}
.voice_cp {
	font-size: 20px;
}
.member_name {
	font-size: 30px;
}
.member_post {
	font-size: 20px;
}
.member_txt {
	font-size: 20px;
}
.price_ttl {
	font-size: 15px;
}
.price_img01 {
    width: 11%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 5;
}
.price_img02 {
    width: 6%;
    position: absolute;
    right: 5%;
    bottom: 0px;
    z-index: 5;
}
.book_cv_btn .arrow_svg{
	height: 10px;
	width: 10px;
	right: 20px;
}
.book_cv_btn .book_svg{
    height: 50px;
    width: 50px;
    left: 30px;
}
.cv_ttl {
	font-size: 40px;
}
.cv_lead {
	font-size: 20px;
}
.faq_q {
	padding: 1.2em;
	font-size: 20px;
}
.foot_logo_txt {
	font-size: 18px;
}
.fix_head_txt01 {
	font-size: 24px;
}
.fix_head_txt02 {
	font-size: 35px;
}
.fix_btn {
	font-size: 25px;
}
.fix_head {
	padding: 5px;
}
.fix_body {
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom: 10px;
}
.g-navin_a {
	font-size: 20px;
}
.g-navin_cv02 {
	font-size: 35px;
}
.g-navin_cv01 {
	font-size: 35px;
}
.form_cv_btn {
	font-size: 35px;
}
.link_orange.thx_dl_btn {
	font-size: 35px;
}
.detail_modal_l {
	padding: 1em;
	font-size: 16px;
}
.marguee_img{
	font-size: 8px;
}
.top_semi_thx {
	font-size: 50px;
}
.top_seminar_tab {
	font-size: 20px;
}
.top_seminar_b_ttl {
	font-size: 26px;
}
.top_seminar_b_day {
	font-size: 20px;
}
.top_seminar_b_area {
	font-size: 20px;
}
.top_seminar_b_lead {
	font-size: 12px;
}
.top_seminar_b_cat {
	font-size: 14px;
}
.semi_finish .top_semi_thx{
	font-size: 50px;
}
.top_news_ttl {
	font-size: 20px;
}
.top_news_cat {
	font-size: 16px;
}
.top_news_day {
	font-size: 12px;
}
.g-nav_icon_a{
	width: 60px;
    height: 60px;
	padding: 15px;
}
.ft02_link_a {
	font-size: 20px;
}
.page_ttl01 {
	font-size: 18px;
}
.page_ttl02 {
	font-size: 40px;
}
.pankuzu {
	font-size: 16px;
}
.sp_l_ttl {
	font-size: 50px;
}
.sp_l_lead {
	font-size: 20px;
}
.sp_l_num {
	font-size: 350px;
}
.cp_info_dt {
	font-size: 20px;
}
.cp_info_dd {
	font-size: 20px;
}
.sp_l_ttl_sub {
	font-size: 20px;
}
.pp_lead {
	font-size: 20px;
}
.pp_ul li {
	font-size: 20px;
}
.pp_ol li {
	font-size: 20px;
}	
.pp_ul {
	margin-left: 40px;
}
.pp_ol {
	margin-left: 40px;
}	
.pp_ttl {
	font-size: 40px;
}
.pp_ttl02 {
	font-size: 20px;
}
.pp_ttl03 {
	font-size: 20px;
}
.cv_lead02 {
	font-size: 30px;
}
.contact_ttl {
	font-size: 40px;
}
.contact_lead {
	font-size: 20px;
}











































































	

}


@media only screen and (min-width: 900px) {
html { 
	width:100%;
}

	
	

}

@media only screen and (min-width: 1000px) {
.pc1000{
	display: block;
}
.sp1000{
	display: none;
}

.nav_link_box {
	display: flex;
	align-items: center;
	padding-right: 0.5em;
}
.nav_link_cv {
	display: flex;
}
.head_link_cv {
	margin-left: 0.5em;
	font-weight: 700;
	font-size: 14px;
}
.nav_link_txt{
	margin-right: 1em;
	font-weight: 700;
	font-size: 14px;
	position: relative;
	display: block;
	padding-bottom: 1em;
	padding-top: 1em;
}
.nav_link_txt svg{
	fill:#000;
	height: 8px;
	width: 8px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
}
.nav_link_txt:hover, .nav_link_txt.nav_link_active{
	color: #FA7748;
}
.nav_link_txt:hover svg, .nav_link_txt.nav_link_active svg{
	fill:#FA7748;
	bottom: -2px;
}
.aboutsys02_img_box {
	border-radius: 10px;
}
.fix_cv_box {
	width: 330px;
	left: auto;
	right: 30px;
	bottom: 30px;
}
.fix_cv {
	margin-bottom: 0px;
}
.fix_head_txt02 {
	display: block;
	text-align: center;
	padding-top: 0.1em;
	padding-bottom: 0.1em;
}
.fix_cv_lead {
	font-size: 20px;
	text-align: center;
	font-weight: 700;
	position: relative;
}
.fix_cv_lead .arrow_svg {
	width: 8px;
	height: 8px;
	position: absolute;
	right: 10px;
	top: 50%;
	fill:#fa7748;
	transform: translateY(-25%) rotate(90deg);
}
.fix_cv_lead .arrow_svg_right {
	transform: translateY(-25%) rotate(0deg);
}
.contact_mv_wrap .fix_head_txt02 {
	display:inline-block;
}






	
	

	
	
	

}





@media only screen and (min-width: 1100px) {
.cp_ab_ttl01 {
	font-size: 45px;
}



	
}
@media only screen and (min-width: 1200px) {
html {
}
.pc1200{
	display: block;
}
.sp1200{
	display: none;
}
.logo {
	padding-bottom: 10px;
	padding-top: 10px;
	height: 90px;
}
.head {
    padding-left: 25px;
}
.header{
	height: 100px;
}

.openbtn1{
	height: 50px;
	width: 50px;
}
.openbtn1 span{
	right: 13px;
}	
.openbtn1 span:nth-of-type(1) {
  top:20px; 
}

.openbtn1 span:nth-of-type(2) {
  top:45px;
}

.openbtn1 span:nth-of-type(3) {
  top:28px;
}	
.openbtn1.active span:nth-of-type(1) {
	top:19px;
    left: 13px;
}
.openbtn1.active span:nth-of-type(3){
	top:31px;
    left: 13px;
}

.panelactive .g-navin {
}


.g-navin {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 500;
    top: 0%;
    left: 50%;
    transform: translate(-50%,0%);
    text-align: center;
    width: 100%;
}
.head_link_cv {
	font-size: 18px;
}
.nav_link_txt{
	font-size: 16px;
}
.mv_box_flex{
	padding-top: 120px;
}
.aboutsys_img {
	max-width: 1800px;
}
.aboutsys_img_box {
	background: linear-gradient(to right, #e9eaf1 0%, #e9eaf1 50%, #fef1ec 50%, #fef1ec 100%);
}
.aboutsys02_img_box {
	max-width: 1400px;
	padding-left: 4em;
	padding-right: 4em;
}
.sys_map_box {
	border-radius: 10px;

}
.flow_icon {
	max-width: 1400px;
}
.value_flex {
	max-width: 1500px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.value_box {
	width: 48%;
	margin-bottom: 4%;
}
.merit_flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1600px;
}
.merit_flex02 {
	display: flex;
	flex-direction: row-reverse;
}	
.merit_cnt {
	width: 45%;
	max-width: 660px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 4em;
}
.merit_img {
	margin: 0px;
	width: 46%;
}
.voice_flex_wrap {
	margin: 0 auto;
	max-width: 1600px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.voice_flex {
	width: 48%;
	max-width: none;
}
.member_flex {
	display: flex;
	max-width: 1800px;
	justify-content: space-between;
	align-items: flex-start;
}
.member_box {
	display: block;
	width: 23%;
}
.member_img {
	width: 100%;
	display: block;
	margin-bottom: 1.5em;
}
.member_cnt {
	width: 100%;
}
.price_wrap {
	max-width: 1400px;
}
.price_kome {
	width: 86%;
	max-width: 1140px;
}
.cv_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
}
.cv_img {
	width: 45%;
}
.cv_cnt {
	width: 52%;
}
.cv_photo_box {
	bottom: 40%;
}
.marguee_img_cv {
    width: 300vw;
    max-width: 2000px;	
}
.thx_wrap {
	padding-top: 120px;
}
.yt_box {
	max-width: 1200px;
	margin-left: auto;
	border-radius: 20px;
	margin-right: auto;
}
.top_news_flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1600px;
}
.top_news_f {
	width: 49%;
}
.page_mv {
	margin-top: -100px;
}
.page_ttl_box {
	margin-top: 100px;
    padding-top: 140px;
    padding-bottom: 40px;
}
.sp_flex {
	max-width: 1400px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}
.sp_f_img {
	width: 38%;
	margin-left: 0px;
	margin-right: 0px;
}
.sp_l  {
	width: 57%;
}
.sp_l_num {
    transform: translateX(-0.2em) translateY(-0.3em);
}
.sp_flex_reverse {
	flex-direction: row;
}
.sp_flex_reverse .sp_l_num {
	left:auto;
	right: 0;
	transform: translateX(0.2em) translateY(-0.3em);
}































	
}



@media only screen and (min-width:1300px){
	
	
}


@media only screen and (min-width:1400px){
.pc1400{
	display: block;
}
.sp1400{
	display: none;
}
.nav_link_flex{
	padding-right: 2em;
	display: flex;
}	
.nav_link_txt{
	font-size: 16px;
}
.mv_box_flex {
	display: flex;
	max-width: 1800px;
	align-items: flex-end;
}
.mv_icon_flex{
	padding-bottom: 0;
}
.detail_flex{
	max-width: 1600px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding-top: 4em;
}
.detail_cnt{
	width: 40%;
}
.detail_disp_box{
	flex: 1;
}	
.detail_cnt .sub_ttl, .detail_cnt .sub_ttl02, .detail_cnt .sub_lead {
	text-align: left;
}
.detail_cnt .d_cv_box{
	margin-left: 0;
}
.detail_cnt .detail_finger{
	transform: rotate(15deg);
}
.merit_cnt {
	width: 50%;

}
.contact_wrap {
	border-radius: 20px;
	width: 95%;
}
.site_header .nav_link_txt {
	margin-right: 2em;
	padding-left: 1em;
	font-weight: 700;
}
.site_header .nav_link_txt svg {
	fill: #000;
	height: 8px;
	width: 8px;
	position: absolute;
	bottom: 50%;
	left: 0%;
	transform: translateY(50%) translateX(0) rotate(0deg);
}
.foot02_box {
	display: flex;
	justify-content: space-between;
}
.ft02_l {
	width: 50%;
}
.ft02_link_flex {
	margin-left: 3vw;
	margin-right: auto;
}
.foot02_logo_a {
	margin-left: auto;
	margin-right: 3.5vw;
}
.line_left {
	border-left: 1px solid #e0e0f3;
}
.ft02_l_logo {
	display: flex;
	align-items: center;
}









}
@media only screen and (min-width:1600px){
html { 
	font-size:16px;
}
body .pc768_1600{
    visibility:hidden;
    display: none;
}	
body .pc1600{
    visibility: visible;
    display: block;
}	
.head {
    margin-left: auto;
    margin-right: auto;
}



	
}
@media only screen and (min-width:1800px){

	
}
