@charset "utf-8";
:root {
  --color-main1: #005cca;
  --color-main2: #00296a;
  --color-sub1: #E6EBED;
  --color-sub2: #1E5D8D;
  --color-sub3: #1E8D3F;
  --color-sub4: #682595;
  --color-sub5: #C75300;
  --color-blk1: #333333;
  --color-blk2: #737373;
	--color-blk3: #cccccc;
  --color-blk4: #E9E9E9;
  --color-wht: #FFFFFF;
  --color-gr1: linear-gradient(to right, #FFA200, #FFE872);
  --color-gr2: linear-gradient(to right, #005CCA, #00296A);
  --margin-big: 120px;
  --margin-middle: 60px;
  --margin-small: 20px;
  --margin-col: 40px;
  --container-w1: 60px;
  --container-w2: 30px;
  --header-hight: 80px;
}
@media screen and (max-width: 768px) {
  :root {
    --margin-big: 60px;
    --margin-middle: 30px;
    --margin-col: 20px;
    --container-w1: 30px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --margin-big: 40px;
    --margin-middle: 20px;
    --container-w1: 20px;
    --container-w2: 20px;
  }
}
/*====================================================================
　Commons
====================================================================*/
html, body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  html, body {
    font-size: 16px;
  }
}
body{
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1.8;
  color: var(--color-main2);
  background: #FFF;
  font-weight: 400;
}
img {
  display: block;
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
::-webkit-full-page-media, :future, :root img{
  image-rendering: auto;
}
svg {
  fill: currentColor;
  max-width: 100%;
}
p {
	margin: var(--margin-small) 0;
}
input, 
button, 
select, 
textarea {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}
input, 
select, 
textarea {
  background: #FFF;
}
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}
/*
link
---------------------------------------------------------*/
a {
	transition: all .3s ease;
}
a:link {
	color: var(--color-main1);
	text-decoration: none;
}
a:visited {
	color: var(--color-main1);
	text-decoration: none;
}
a:hover {
  opacity: .6;
	text-decoration: underline;
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
main a[href$=".pdf"]:not([class])::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/img/common/ico_link_pdf.svg) center center / auto 100% no-repeat;
	margin-top: -0.2em;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}
main a[href$=".doc"]:not([class])::after,
main a[href$=".docx"]:not([class])::after{
	content: "";
	background: url(/img/common/ico_link_word.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[href$=".xls"]:not([class])::after,
main a[href$=".xlsx"]:not([class])::after{
	content: "";
	background: url(/img/common/ico_link_excel.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[target="__blank"]:not([class]):not(a[href$=".pdf"]):not(a[href$=".doc"]):not(a[href$=".docx"]):not(a[href$=".xls"]):not(a[href$=".xlsx"])::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/img/common/ico_link_external01.svg) center center / auto 100% no-repeat;
	margin-top: -0.2em;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}
main .iconnone a[href$=".pdf"]::after,
main .iconnone a[href$=".doc"]::after,
main .iconnone a[href$=".docx"]::after,
main .iconnone a[href$=".xls"]::after,
main .iconnone a[href$=".xlsx"]::after,
main .iconnone a[target="__blank"]::after{
  display: none;
}
/*
navskip
---------------------------------------------------------*/
.navskip { display: none; }
/*====================================================================
Layout……各ページを構成するサイト全体で共通したエリアを管理
====================================================================*/
/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.l-pagetop.contact {
  bottom: 90px;
  right: 15px;
}
.l-pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-main1);
	border-radius: 50%;
  color: var(--color-wht);
}
.l-pagetop a:hover {
  text-decoration: none !important;
}
/*----------------------------------------*/
.l-container01 {
  margin: var(--margin-big) 0;
  overflow-x: hidden;
}
.l-container01:first-child {
  margin: var(--margin-middle) 0 var(--margin-big);
}
.l-container01.bg01 {
  background: var(--color-sub1);
  margin: 0;
  padding: var(--margin-big) 0;
}
.l-container01.bg__contact {
  background: var(--color-sub1);
  margin: 0;
  padding: var(--margin-middle) 0;
}
/*----------------------------------------*/
.l-section01 {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  padding: 0 160px;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .l-section01 {
    padding: 0 15px;
  }
}

.l-section02 {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 1620px) {
  .l-section02 {
    padding: 0 160px;
  }
}
@media screen and (max-width: 1080px) {
  .l-section02 {
    padding: 0 15px;
  }
}

.l-section03 {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1080px) {
  .l-section03 {
    padding: 0 15px;
  }
}

.l-section04 {
  padding: 0;
  margin: 0;
}

/*----------------------------------------*/
.l-footer{
  border-top: 1px solid var(--color-sub1);
  background-color: var(--color-sub1);
  padding: 80px 160px;
}

.l-footer address{
  display: flex;
  flex-direction: column;
}
.l-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-main2);
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.l-footer__nav ul li {
  margin: 0 40px 20px 0;
}
.l-footer__nav a {
  position: relative;
  color: var(--color-main2);
  font-weight: 700;
  padding-right: 2em;
}
.l-footer__nav a::after {
  position: absolute;
  content: "";
  display: block;
  background: url(/img/common/ico_right_arrow02.svg) no-repeat;
  width: 20px;
  height: 20px;
  top: 3px;
  right: 5px;
}

.l-footer__address {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}
.l-footer__address a > img {
  width: 40%;
}
.l-footer__address > p {
  display: flex;
  align-items: flex-end;
}
.l-footer__address > div > img {
  width: 50%;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .l-footer{
    padding: 40px;
  }
}
@media screen and (max-width: 840px) {
  .l-footer__address {
    flex-direction: column;
  }
  .l-footer__address > div > img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__inner{
    flex-direction: column-reverse;
  }
  .l-footer__logo{
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .l-footer__logo img{
    margin: auto;
  }
  .l-footer__nav{
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  .l-footer__nav ul li {
    margin: 0 20px 10px 0;
  }
}
@media screen and (max-width: 560px) {
  .l-footer__address a > img {
    width: 70%;
  }
  .l-footer__address > div > img {
    width: 70%;
  }
}
/*----------------------------------------*/
.l-sub__nav__title{
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 700;
}
.l-sub__nav__menu{
  margin-left: 20px;
}
.l-sub__nav__menu > li{
  margin-bottom: 10px;
}
.l-sub__nav__menu > li a{
  color: var(--color-main1);
}
@media screen and (max-width: 1080px) {
  .l-sub__nav__menu{
    margin-left: 0;
    padding: 20px;
    border-top: 1px solid var(--color-sub1);
    border-bottom: 1px solid var(--color-sub1);
  }
}
/*----------------------------------------*/
.l-2column{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1240px;
  width: 100%;
  margin: var(--margin-middle) auto var(--margin-big);
  padding: 0 var(--container-w1);
}
.l-2column__main{
  width: 75%;
}
.l-2column__main .l-container01:first-child{
  margin-top: 0;
  margin-bottom: 0;
}
.l-2column__sub{
  width: calc(25% - 40px);
  border-left: 1px solid var(--color-sub1);
}
@media screen and (max-width: 1080px) {
  .l-2column__main{
    width: 100%;
  }
  .l-2column__sub{
    width: 100%;
    border: none;
    margin-top: var(--margin-big);
  }
}
/*----------------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
}
.l-row__reverse {
  flex-direction: row-reverse;
}
.l-row__center {
  align-items: center;
}
.l-row__jcenter {
  justify-content: center;
}
.l-row__jspaceb {
  justify-content: space-between;
}
.l-row__childflex1 {
  flex: 1;
}

.l-row .col_img_txt{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-row .col_img_txt > li {
  margin: 0 calc(var(--margin-col) / 2);
}
.l-row .col_img_txt > li:first-child {
  margin-left: 0;
}
.l-row .col_img_txt > li:last-child {
  margin-right: 0;
}
.l-row .col_img_txt > li img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-row .col_img_txt{
    display: block;
  }
  .l-row .col_img_txt > li {
    margin: 0;
  }
  .l-row .col_img_txt > li:first-child {
    margin-bottom: var(--margin-col);
  }
  .l-row .col_img_txt > li:last-child {
    margin: 0;
  }
  .l-row .col_img_txt > li img {
    margin: auto;
  }
}

.l-row .col0{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-row .col0 > li {
  margin: 0 calc(var(--margin-col) / 2);
}
.l-row .col0 > li:first-child {
  margin-left: 0;
}
.l-row .col0 > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .l-row .col0{
    display: block;
  }
  .l-row .col0 > li {
    margin: 0;
  }
  .l-row .col0 > li:first-child {
    margin-bottom: var(--margin-col);
  }
  .l-row .col0 > li:last-child {
    margin: 0;
  }
}
.l-row .col2{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2 > li {
  width: calc(100% / 2 - (var(--margin-col) / 2));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col2 > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .l-row .col2 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col2__2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2__2 > li {
  margin-bottom: var(--margin-col);
}
.l-row .col2__2 > li.text > p {
  margin: initial;
}
.l-row .col2__2 > li.text {
  width: calc(( (100% / 3) * 2 ) - (var(--margin-col) / 2));
}
.l-row .col2__2 > li.img {
  width: calc(( (100% / 3) * 1 ) - (var(--margin-col) / 2));
}
@media screen and (max-width: 480px) {
  .l-row .col2__2 > li.text {
    width: 100%;
  }
  .l-row .col2__2 > li.img {
    width: 100%;
  }
}
.l-row .col3{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col3 > li {
  width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col3 > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .l-row .col3 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col3 > li:nth-child(odd) {
    margin-right: var(--margin-col);
  }
  .l-row .col3 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col3 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col4{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col4 > li {
  width: calc(100% / 4 - ((var(--margin-col) * 3 ) / 4));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col4 > li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col4 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col4 > li:nth-child(4n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col4 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col4 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col5{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col5 > li {
  width: calc(100% / 5 - ((var(--margin-col) * 4 ) / 5));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col5 > li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col5 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col5 > li:nth-child(5n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col5 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col5 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col6{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col6 > li {
  width: calc(100% / 6 - ((var(--margin-col) * 5 ) / 6));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col6 > li:nth-child(6n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col6 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col6 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col6 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col6 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
/*====================================================================
Project……再利用予定のないプロジェクト固有のスタイルを管理
====================================================================*/
/* p-topmassage */
.p-topmassage {
  margin-top: 80px;
}
.p-topmassage__box {
  position: relative;
  padding: 100px 0;
}
.p-topmassage__box::before {
  content: "About";
  position: absolute;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 8rem;
  font-weight: 500;
  color: var(--color-main1);
  opacity: 0.2;
  top: 0;
  right: 0;
  z-index: 1;
}
.p-topmassage__img {
  width: 50%;
}
.p-topmassage__text {
  position: absolute;
  width: 50%;
  top: 22%;
  right: 40px;
  padding: 60px;
  background-color: #fff;
}
.p-topmassage__text::before,
.p-topmassage__text::after {
    content:'';
    width: 60px;
    height: 60px;
    position: absolute;
    display: inline-block;
}
.p-topmassage__text::before {
    border-left: solid 2px var(--color-main1);
    border-top: solid 2px var(--color-main1);
    top: 30px;
    left: 30px;
}
.p-topmassage__text::after {
    border-right: solid 2px var(--color-main1);
    border-bottom: solid 2px var(--color-main1);
    bottom: 30px;
    right: 30px;
}
.p-topmassage__text p {
  font-size: 1.3em;
  line-height: 2.5;
  color: var(--color-main1);
  margin: 0;
}
.p-topmassage__text p span {
  display: inline-block;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 2;
}
@media screen and (max-width: 1560px) {
  .p-topmassage__text p {
    line-height: 2;
    font-size: 1.1em;
  }
  .p-topmassage__text p span {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 1180px) {
  .p-topmassage__box {
    padding: 50px 0 100px;
  }
  .p-topmassage__text {
    width: 55%;
    right: 0;
  }
}
@media screen and (max-width: 1080px) {
  .p-topmassage__box {
    min-height: 820px;
  }
  .p-topmassage__box::before {
    top: 23%;
  }
  .p-topmassage__text {
    position: static;
    width: 85%;
    top: auto;
    bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-topmassage__box {
    min-height: 1000px;
  }
  .p-topmassage__box::before {
    top: -90px;
  }
  .p-topmassage__img {
    width: 100%;
  }
  .p-topmassage__text {
    width: 100%;
    bottom: auto;
  }
}
@media screen and (max-width: 560px) {
  .p-topmassage__box {
    min-height: 770px;
    padding: 50px 0 0;
  }
  .p-topmassage__box::before {
    font-size: 4rem;
    top: -30px;
  }
  .p-topmassage__text::before,
  .p-topmassage__text::after {
    width: 30px;
    height: 30px;
  }
  .p-topmassage__text::before {
    top: 15px;
    left: 15px;
  }
  .p-topmassage__text::after {
    bottom: 15px;
    right: 15px;
  }
  .p-topmassage__text {
    padding: 30px;
  }
  .p-topmassage__text p {
    line-height: 2;
    font-size: 1em;
  }
  .p-topmassage__text p span {
    font-size: 1.1em;
  }
}

/* p-topics */
.l-section01.p-topics {
  overflow: visible;
}
.p-topics h2::before {
  content: "Topics";
  position: absolute;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 8rem;
  font-weight: 500;
  color: var(--color-main1);
  opacity: 0.2;
  top: -100px;
  left: 0;
  z-index: 1;
}
.p-topics ul li {
  border-bottom: 1px solid var(--color-blk3);
}
.p-topics a {
  display: flex;
  align-items: center;
  color: var(--color-main2);
  padding: 15px;
}
.p-topics a:hover {
  text-decoration: none;
}
.p-topics a .category {
  width: 10em;
  text-align: center;
  padding: 5px 15px;
  border: 1px solid var(--color-main1);
  color: var(--color-main1);
}
.p-topics a .text {
  width: 60em;
  margin-left: 4em;
  font-size: 1.2em;
}
@media screen and (max-width: 810px) {
  .p-topics a {
    flex-direction: column;
  }
  .p-topics a .category {
    width: 100%;
  }
  .p-topics a .text {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 560px) {
  .p-topics h2::before {
    font-size: 4rem;
    top: -60px;
  }
  .p-topics a .text {
    font-size: 1em;
  }
}

/* p-topsolution */
.l-section02.p-topsolution {
  position: relative;
  overflow: visible;
}
.p-topsolution::before {
  content: "Service";
  position: absolute;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 8rem;
  font-weight: 500;
  color: var(--color-main1);
  opacity: 0.2;
  top: -180px;
  right: 0;
}
/* .p-topsolution__maintitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.p-topsolution__maintitle > div {
  display: block;
  z-index: 1;
}
.p-topsolution__maintitle h2 {
  margin-bottom: 40px;
} */
.p-topsolution__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
  gap: 20px;
}
.p-topsolution__item {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 800px;
  min-height: 350px;
  overflow: hidden;
}
.p-topsolution__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  z-index: 1;
  color: #fff;
  padding: 40px;
}
.p-topsolution__item a:hover {
  opacity: 1;
  text-decoration: none;
}
.p-topsolution__item::before {
  position: absolute;
	content: "";
	display: block;
	width: 40px;
	height: 40px;
  bottom: 40px;
  right: 40px;
  background: url("/img/common/ico_right_arrow01.svg") no-repeat;
  z-index: 1;
}
.p-topsolution__item:hover::before {
  background: url("/img/common/ico_right_arrow02.svg") no-repeat;
}
.p-topsolution__item::after {
  content: "";
  position: absolute;
  width: 100%;
  min-height: 400px;
  top: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  transform: scale(1);
}
.p-topsolution__item.solution01::after {
  background: url(/img/top/pic_top02.jpg) center center no-repeat;
}
.p-topsolution__item.solution02::after {
  background: url(/img/top/pic_top03.jpg) center center no-repeat;
}
.p-topsolution__item.solution03::after {
  background: url(/img/top/pic_top04.jpg) center center no-repeat;
}
.p-topsolution__item.solution04::after {
  background: url(/img/top/pic_top05.jpg) center center no-repeat;
}
.p-topsolution__item .p-topsolution__title {
  font-size: 1.5em;
  font-weight: 700;
}
.p-topsolution__item:hover::after {
  transform: scale(1.05); /* ホバー時にズーム */
}
.p-topsolution__item .p-topsolution__text {
  font-weight: 700;
}
@media screen and (max-width: 1620px) {
  .p-topsolution__item {
    width: calc(100% / 2 - 10px);
  }
}
@media screen and (max-width: 1430px) {
  .p-topsolution__item .p-topsolution__text {
    min-height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .p-topsolution::before {
    top: -120px;
  }
  .p-topsolution__maintitle {
    flex-wrap: wrap;
  }
  .p-topsolution__maintitle > div {
    width: 100%!important;
  }
  .p-topsolution__maintitle > div:first-child {
    margin-right: 0;
  }
  .p-topsolution__maintitle h2 {
    margin-bottom: 0;
  }
  .p-topsolution__maintitle h2.c-title08 {
    position: relative;
    font-size: 2rem;    
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 40px;
  }
  .p-topsolution__maintitle h2.c-title08::after {
    position: absolute;
    content: "";
    display: block;
    left: 50%;
    transform: translateX(-50%);
    width: 1em;
    height: 3px;
    background: url(/img/common/line_gradation_01.svg);
    bottom: -10px;
  }
  .p-topsolution__box {
    margin-top: 40px;
  }
  .p-topsolution__item {
    width: 100%;
  }
  .p-topsolution__item::before {
    bottom: 10px;
    right: 10px;
  }
  .p-topsolution__item .p-topsolution__text {
    min-height: auto;
  }
}
@media screen and (max-width: 560px) {
  .p-topsolution__item .p-topsolution__title {
    font-size: 1.4em;
  }
  .p-topsolution__item .p-topsolution__text {
    font-size: 1em;
  }
  .p-topsolution::before {
    font-size: 4rem;
    top: -65px;
  }
}

/* p-topimgbox */
.p-topimgbox__flex {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-topimgbox__flex {
    flex-wrap: wrap;
  }
  .p-topimgbox__flex > div {
    width: 50%;
  }
  .p-topimgbox__flex > div > img {
    width: 100%;
  }
}

/* p-toprecruit */
.p-toprecruit {
  position: relative;
}
.p-toprecruit::before {
  content: "Recruit";
  position: absolute;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 8rem;
  font-weight: 500;
  color: var(--color-main1);
  opacity: 0.2;
  top: -160px;
  left: 0;
  z-index: 2;
}
.p-toprecruit a:hover {
  opacity: 1;
  text-decoration: none;
}
.p-toprecruit__bg {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 480px;
  padding: 80px;
  overflow: hidden;
}
.p-toprecruit__bg > * {
  position: relative;
  z-index: 1;
}
.p-toprecruit__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/top/bnr_top01.jpg") center center / cover no-repeat;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  transform: scale(1);
  z-index: 0;
}
.p-toprecruit__bg:hover::after {
  transform: scale(1.05);
}
.p-toprecruit__bnr {
  width: 100%;
  color: #fff;
  font-weight: 700;
}
.p-toprecruit__bnr h3 {
  font-size: 2.5em;
}
.p-toprecruit__text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 830px) {
  .p-toprecruit::after {
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url(/img/common/ico_right_arrow04.svg) no-repeat;
    right: 35px;
    bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-toprecruit__bg {
    padding: 40px;
  }
  .p-toprecruit__bnr h3 {
    font-size: 1.8em;
  }
  .p-toprecruit__text p:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 560px) {
  .p-toprecruit__bg {
    min-height: 380px;
  }
  .p-toprecruit::before {
    font-size: 4rem;
    top: -80px;
  }
  .p-toprecruit__text p {
    line-height: 1.5;
    font-weight: 500;
  }
}

/* p-company */
.p-company__subtitle.character_fadein .text {
  font-size: 1.8rem;
}
.p-company p {
  font-size: 1.2em;
  line-height: 2.5;
}
.p-company-massage__box {
  display: flex;
}
.p-company-massage__img {
  width: 35%;
  max-width: 350px;
  flex-shrink: 0;
}
.p-company-massage__text {
  width: auto;
  padding-left: 40px;
}
.p-company-massage__text p {
  font-size: 1.2em;
  margin-top: 0;
}
.p-company-access__item {
  margin-top: 20px;
}
.p-company-access__item > p {
  margin-bottom: 0;
}
.p-company-access__flex {
  display: flex;
  justify-content: space-between;
}
.p-company-access__flex > div:last-child {
  width: 40%;
  margin-top: 1.8em;
  flex-shrink: 0;
}
.p-company-access__car div:not(:last-child) {
  margin-bottom: 10px;
}
.p-company-access__car div span:first-child {
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .p-company-massage__text {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-company__subtitle.character_fadein .text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 560px) {
  .p-company p {
    font-size: 1rem;
    line-height: 2;
  }
  .p-company-massage__box {
    flex-direction: column;
  }
  .p-company-massage__img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .p-company-massage__text {
    margin-top: 20px;
    padding: 0;
  }
  .p-company-massage__text p {
    font-size: 1em;
  }
  .p-company-access__flex {
    flex-direction: column;
  }
  .p-company-access__flex > div:last-child {
    width: 100%;
  }
}

/* p-numbers */
.p-numbers p {
  text-align: center;
  font-size: 1.2em;
  line-height: 2.5;
}
.p-numbers-lineup .p-numbers-lineup__ico {
  width: 100px;
  margin: 10px auto 20px;
}
.p-numbers-lineup .p-numbers-lineup__commute {
  width: 100%;
}
.p-numbers-lineup__value {
  line-height: 1;
}
.p-numbers-lineup__gender .p-numbers-lineup__value,
.p-numbers-lineup__commute .p-numbers-lineup__value {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 10px;
}
.p-numbers-lineup__value .item {
  font-size: 1.2em;
  font-weight: 700;
}
.p-numbers-lineup__box ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
.p-numbers-lineup__box ul > li {
  width: calc((100% - 40px) / 3);
  text-align: center;
  border: 2px solid var(--color-main2);
  box-sizing: border-box;
  padding: 20px;
}
.p-numbers-lineup__box ul > li h4 {
  font-size: 2em;
  font-weight: 700;
}
.p-numbers-lineup__box ul > li .number {
  font-size: 4em;
  font-weight: 700;
  color: var(--color-main1);
}
.p-numbers-lineup__box ul > li .unit {
  font-size: 2em;
  font-weight: 700;
}
@media screen and (max-width: 850px) {
  .p-numbers-lineup__box ul > li {
    width: calc((100% - 20px) / 2);
  }
  .p-numbers-lineup .p-numbers-lineup__gender {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .p-numbers p {
    font-size: 1em;
  }
  .p-numbers-lineup__box ul > li {
    width: 100%;
  }
  .p-numbers-lineup__commute .p-numbers-lineup__value .p-numbers-lineup__value__box {
    width: 50%;
  }
  .p-numbers-lineup__value__box.mt20 {
    margin-top: 20px;
  }
}

/* p-solution */
.p-solution__box {
  display: flex;
  align-items: stretch;
}
.p-solution__box > div {
  width: 50%;
}
.p-solution__title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  padding: 120px;
}
.p-solution__title::before,
.p-solution__title::after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  display: inline-block;
}
.p-solution__title::before {
  border-left: solid 2px #fff;
  border-top: solid 2px #fff;
  top: 40px;
  left: 40px;
}
.p-solution__title::after {
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  bottom: 40px;
  right: 40px;
}
.p-solution.package .p-solution__title {
  background-color: var(--color-sub2);
}
.p-solution.network .p-solution__title {
  background-color: var(--color-sub3);
}
.p-solution.outsourcing .p-solution__title {
  background-color: var(--color-sub4);
}
.p-solution.it .p-solution__title {
  background-color: var(--color-sub5);
}
.p-solution__title h2 {
  font-size: 1.8em;
}
.p-solution__title p {
  font-size: 1.2em;
}
.p-solution__img {
  display: flex;
  align-items: stretch;
  height: auto;
}
.p-solution__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 1320px) {
  .p-solution__title {
    padding: 60px
  }
  .p-solution__title::before {
    top: 20px;
    left: 20px;
  }
  .p-solution__title::after {
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__box {
    flex-direction: column-reverse;
  }
  .p-solution__box > div {
    width: 100%;
  }
  .p-solution__title h2 {
    font-size: 1.4em;
  }
  .p-solution__title p {
    font-size: 1em;
  }
}

/* p-solution-content */
.p-solution-content .c-btn01 {
  min-width: 350px;
}
.p-solution-content__preamble {
  margin-top: 40px;
}
.p-solution-content__text p:first-child{
  color: var(--color-main1);
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 0;
}
.p-solution-content .c-btn01 {
  width: 30%;
}
.p-solution-content__detail {
  margin-top: 80px;
}
@media screen and (max-width: 620px) {
  .p-solution-content {
    margin-top: 40px;
  }
  .p-solution-content__img {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
.p-solution-content .c-btn01 {
    width: 100%;
    min-width: auto;
  }
  .p-solution-content__detail {
    margin-top: 40px;
  }
}

/* p-recruit-massage */
.p-recruit-massage {
  position: relative;
  padding-bottom: 440px;
  overflow: hidden;
  padding: 0 160px 440px;
  overflow: hidden;
  max-width: 1620px;
}
.p-recruit-massage p {
	line-height: 2.5;
  font-size: 1.3em;
	margin: 100px 0;
  text-align: center;
}
.p-recruit-massage__img {
  position: absolute;
  right: 0;
}
.p-recruit-massage__img img {
  width: 90%;
}
@media screen and (max-width: 1080px) {
  .p-recruit-massage {
    padding: 0 40px 300px;
  }
  .p-recruit-massage__img {
    right: -230px;
  }
  .p-recruit-massage__img img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-massage {
    padding-bottom: 240px;
  }
  .p-recruit-massage p {
    font-size: 1em;
    line-height: 2.3;
    margin: 60px 0;
  }
  .p-recruit-massage__img {
    right: -420px;
  }
  .p-recruit-massage__img img {
    width: 50%;
  }
}
@media screen and (max-width: 540px) {
  .p-recruit-massage__img {
    right: -580px;
  }
  .p-recruit-massage__img img {
    width: 35%;
  }
}
@media screen and (max-width: 490px) {
  .p-recruit-massage {
    padding-bottom: 100px;
  }
}

/* p-job-introduction */
.p-job-introduction__item > div {
	margin-top: 80px;
	padding: 80px;
}
.p-job-introduction__box01 {
	background-color: #fff;
	display: flex;
	align-items: center;
}
.p-job-introduction__box01 .p-job-introduction__text {
	margin-left: 80px;
}
.p-job-introduction__box01 .p-job-introduction__text p:first-child {
	font-size: 2.5em;
}
.p-job-introduction__box01 .p-job-introduction__text p:nth-child(2) {
  font-size: 1.5em;
	margin-top: 40px;
}
.p-job-introduction__box01 p {
	font-weight: bold;
}
.p-job-introduction__item > div.p-job-introduction__box02 {
	background-color: #ECECEC;
	margin-top: 0;
}
.p-job-introduction__box02 ul li {
	position: relative;
	padding-left: 40px;
}
.p-job-introduction__box02 ul li:not(:last-child) {
	margin-bottom: 40px;
}
.p-job-introduction__box02 ul li::before {
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px; /* 線の太さ */
    height: 100%;
    background: var(--color-main1);
    display: block;
}
.p-job-introduction__box02 ul li p:first-child {
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 10px;
}
.p-job-introduction__box02 ul li p:nth-child(2) {
	font-size: 18px;
}
@media screen and (max-width: 1080px) {
	.p-job-introduction__item > div {
		padding: 60px;
	}
	.p-job-introduction__box01 {
		flex-direction: column;
	}
  .p-job-introduction__box01 .p-job-introduction__img {
    display: flex;
    justify-content: center;
    width: 50%;
  }
	.p-job-introduction__box01 .p-job-introduction__text {
		margin-left: 0;
	}
	.p-job-introduction__box01 .p-job-introduction__text p:nth-child(2) {
		margin-top: 20px;
	}
}
@media screen and (max-width: 768px) {
  .p-job-introduction__box01 .p-job-introduction__text p:first-child {
    font-size: 1.8em;
  }
  .p-job-introduction__box01 .p-job-introduction__text p:nth-child(2) {
    font-size: 1em;
    margin-top: 20px;
  }
  .p-job-introduction__box02 ul li {
    padding-left: 20px;
  }
  .p-job-introduction__box02 ul li p:first-child {
    font-size: 1.3em;
  }
  .p-job-introduction__box02 ul li p:nth-child(2) {
    font-size: 1em;
  }
}
@media screen and (max-width: 540px) {
  .p-job-introduction__item > div {
    margin-top: 40px;
		padding: 30px;
	}
}

/* p-numbers-bitec */
.p-numbers-bitec > div{
	padding: 40px 80px;
  margin-top: 80px;
}
a.p-numbers-bitec:hover {
  opacity: 1;
  text-decoration: none;
}
a.p-numbers-bitec:hover
.p-numbers-bitec p {
	color: #fff;
	font-weight: bold;
}
.p-numbers-bitec p:first-child {
	font-size: 2.5em;
  margin-top: 0;
}
.p-numbers-bitec p:nth-child(2) {
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-numbers-bitec p:first-child {
    font-size: 1.8em;
  }
  .p-numbers-bitec > div{
    margin-top: 40px;
    padding: 40px;
  }
}

/* p-interview */
.p-interview .p-interview__item {
	display: flex;
}

.p-interview .p-interview__item:first-child {
	margin-top: 80px;
}

.p-interview .p-interview__item:nth-child(odd) {
	flex-direction: row-reverse;
}

.p-interview .p-interview__item .p-interview__img,
.p-interview .p-interview__item .p-interview__text {
	width: 50%;
}

.p-interview .p-interview__item .p-interview__img img {
	width: 100%;
	height: 100%;
    object-fit: cover;
    display: block;
    flex: 1 1 auto;
}

.p-interview .p-interview__item .p-interview__text {
	position: relative;
	display: flex;
  flex-direction: column;
  justify-content: space-evenly;
	background-color: var(--color-main1);
	padding: 80px;
	box-sizing: border-box;
}

.p-interview .p-interview__item .p-interview__text::before,
.p-interview .p-interview__item .p-interview__text::after {
    content:'';
    width: 60px;
    height: 60px;
    position: absolute;
    display: inline-block;
}

.p-interview .p-interview__item .p-interview__text::before {
    border-left: solid 2px #fff;
    border-top: solid 2px #fff;
    top: 40px;
    left: 40px;
}

.p-interview .p-interview__item .p-interview__text::after {
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    bottom: 40px;
    right: 40px;
}

.p-interview .p-interview__item .p-interview__text p {
	color: #fff;
	font-weight: bold;
}

.p-interview .p-interview__item .p-interview__text p:first-child {
	font-size: 1.6em;
}

.p-interview .p-interview__item .p-interview__text p:nth-child(2) {
	font-size: 1.1em;
	text-align: right;
	margin-top: 20px;
}
.p-interview .p-interview__item .p-interview__text p:nth-child(2) span {
  font-size: 1.4em;
}

@media screen and (max-width: 1220px) {
	.p-interview .p-interview__item,
	.p-interview .p-interview__item:nth-child(odd) {
		flex-direction: column;
	}
	.p-interview .p-interview__item .p-interview__img,
	.p-interview .p-interview__item .p-interview__text {
		width: 100%;
	}
	.p-interview .p-interview__item:not(:first-child) .p-interview__img {
		margin-top: 40px;
	}
}
@media screen and (max-width: 560px) {
  .p-interview .p-interview__item .p-interview__text::before,
  .p-interview .p-interview__item .p-interview__text::after {
    width: 30px;
    height: 30px;
}
  .p-interview .p-interview__item .p-interview__text::before {
    top: 15px;
    left: 15px;
  }
  .p-interview .p-interview__item .p-interview__text::after {
    bottom: 15px;
    right: 15px;
  }
  .p-interview .p-interview__item .p-interview__text {
    padding: 30px;
  }
  .p-interview .p-interview__item .p-interview__text p:first-child {
    font-size: 1.3em;
    margin: 10px 0;
  }
  .p-interview .p-interview__item .p-interview__text p:nth-child(2) {
    font-size: 1em;
    margin: 10px 0;
  }
}

/* p-personality */
.p-personality .p-personality__box {
	display: flex;
	margin-top: 40px;
	padding-left: 2em;
}
.p-personality .p-personality__box ul li {
	font-size: 1.5em;
	list-style-type: disc;
	font-weight: bold;
	line-height: 2;
}
@media screen and (max-width: 560px) {
  .p-personality .p-personality__box {
    padding-left: 1.5em;
  }
  .p-personality .p-personality__box ul li {
    font-size: 1.2em;
  }
}

/* p-requirements */
.p-requirements .p-requirements__box01 .p-requirements__item {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.p-requirements .p-requirements__box01 ul {
	display: flex;
    flex-wrap: wrap;
    gap: 30px;
	margin-top: 40px;
}
.p-requirements .p-requirements__box01 ul li {
	display: flex;
	align-items: center;
	width: calc(100% / 3 - 20px);
	font-size: 1.3em;
	font-weight: bold;
  line-height: 2;
  border: 1px solid var(--color-main2);
  padding: 20px;
  box-sizing: border-box;  
}
.p-requirements .p-requirements__box01 p {
	margin-top: 40px;
  font-size: 1.2em;
	font-weight: bold;
}
.p-requirements .p-requirements__box02 {
	margin-top: 120px;
}
.p-requirements .p-requirements__box02 h3 {
	font-size: 1.8em;
    font-weight: bold;
	margin: 40px 0 10px;
}
@media screen and (max-width: 970px) {
  .p-requirements .p-requirements__box01 ul {
    justify-content: space-between;
  }
  .p-requirements .p-requirements__box01 ul li {
    width: calc(100% / 2 - 15px);
  }
  .p-requirements .p-requirements__box02 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 650px) {
  .p-requirements .p-requirements__box01 ul {
    margin-top: 0;
  }
  .p-requirements .p-requirements__box01 ul li {
    width: 100%;
    font-size: 1em;
    padding: 15px;
  }
  .p-requirements .p-requirements__box01 p {
    margin-top: 20px;
    font-size: 1em;
  }
  .p-requirements .p-requirements__box02 h3 {
    font-size: 1.3em;
  }
}

/* p-selection */
.p-selection .p-selection__box ul {
	display: flex;
	justify-content: center;
    margin-top: 80px;
}

.p-selection .p-selection__box ul li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
	width: 25%;
	font-size: 1.3em;
	font-weight: bold;
	background-color: #fff;
	padding: 50px;
}

.p-selection .p-selection__box ul li:not(:last-child) {
	margin-right: 40px;
}

.p-selection .p-selection__box ul li:not(:last-child)::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 40px;
	background: url("/img/common/ico_triangle02.svg") no-repeat;
	right: -40px;
}

@media screen and (max-width: 1200px) {
	.p-selection .p-selection__box ul {
		flex-direction: column;
	}
	.p-selection .p-selection__box ul li {
		width: 100%;
		box-sizing: border-box;
	}
	.p-selection .p-selection__box ul li:not(:last-child) {
		margin: 0 0 40px;
	}
	.p-selection .p-selection__box ul li:not(:last-child)::after {
		right: 47%;
        bottom: -40px;
		transform: rotate(90deg);
	}
}
@media screen and (max-width: 650px) {
  .p-selection .p-selection__box ul {
    margin-top: 40px;
  }
}

/* p-recinterview */
@media screen and (max-width: 1620px) {
  .p-recinterview {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1080px) {
  .p-recinterview {
    padding: 0 15px;
  }
}
.p-interview-content {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.p-interview-content-reverse {
	flex-direction: row-reverse;
}
.p-interview-content .p-interview-content__item01,
.p-interview-content .p-interview-content__item02 {
	width: 50%;
  box-sizing: border-box;
}
.p-interview-content .p-interview-content__item01 {
  position: relative;
  background-color: #fff;
  padding: 80px;
}
.p-interview-content .p-interview-content__item01::before,
.p-interview-content .p-interview-content__item01::after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  display: inline-block;
}
.p-interview-content .p-interview-content__item01::before {
  border-left: solid 2px #00296A;
  border-top: solid 2px #00296A;
  top: 40px;
  left: 40px;
}
.p-interview-content .p-interview-content__item01::after {
  border-right: solid 2px #00296A;
  border-bottom: solid 2px #00296A;
  bottom: 40px;
  right: 40px;
}
.p-interview-content__item01 > h2 {
  display: inline-block;
  color: #fff;
  background-color: var(--color-main1);
  padding: 5px 10px;
}
.p-interview-content .p-interview-subtitle p {
  display: inline-block;
  font-size: 1.6em;
  font-weight: bold;
  margin: 20px 0 0;
}
.p-interview-content .p-interview-content__text p {
  line-height: 2;
}
.p-interview-content .p-interview-content__text p:not(:last-child) {
  margin-bottom: 20px;
}
.p-interview-content .p-interview-content__item02 {
  padding-top: 40px;
}
.p-interview-content .p-interview-content__item02 img {
	width: 100%;
}
.p-interview-content-reverse .p-interview-content__item02 {
	left: 0;
}
@media screen and (max-width: 1180px) {
  .p-interview-content .p-interview-content__item01 {
    padding: 40px;
  }
  .p-interview-content .p-interview-content__item01::before {
    top: 20px;
    left: 20px;
  }
  .p-interview-content .p-interview-content__item01::after {
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 860px) {
  .p-interview-content {
    flex-direction: column-reverse;
  }
  .p-interview-content .p-interview-content__item01,
  .p-interview-content .p-interview-content__item02 {
    width: 100%;
  }
  .p-interview-content .p-interview-content__item01 {
    padding: 30px 20px;
  }
  .p-interview-content .p-interview-content__item01::before {
    top: 10px;
    left: 0;
  }
  .p-interview-content .p-interview-content__item01::after {
    bottom: 10px;
    right: 0;
  }
  .p-interview-content .p-interview-subtitle p {
    font-size: 1.4em;
  }
}

/* p-interview-private */
.p-interview-private__box .p-interview-private__item {
	position: relative;
  padding: 40px;
  margin-top: -15px;
	border: 2px solid #00296A;
}
.p-interview-private__box h2 {
	font-family: "Montserrat", sans-serif;
    font-size: 3em;
    font-style: italic;
	color: #005CCA;
}
.p-interview-private__item p {
  margin: 0;
}
.p-interview-private__box .p-interview-private__title {
	font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 860px) {
  .p-interview-private__box .p-interview-private__item {
    padding: 30px;
  }
}

/* p-contact */
.p-contact .p-contact__box {
	position: relative;
	background-color: var(--color-main2);
	padding: 80px;
	text-align: center;
}
.p-contact .p-contact__box::before,
.p-contact .p-contact__box::after {
  content:'';
  width: 60px;
  height: 60px;
  position: absolute;
  display: inline-block;
}
.p-contact .p-contact__box::before {
  border-left: solid 2px #F9D72C;
  border-top: solid 2px #F9D72C;
  top: 40px;
  left: 40px;
}
.p-contact .p-contact__box::after {
  border-right: solid 2px #F9D72C;
  border-bottom: solid 2px #F9D72C;
  bottom: 40px;
  right: 40px;
}
.p-contact p {
	color: #fff;
	font-size: 1.3em;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-contact .p-contact__box {
    padding: 40px;
  }
  .p-contact p {
    font-size: 1.2em;
    margin: 20px 0;
  }
}
@media screen and (max-width: 560px) {
  .p-contact .p-contact__box {
    padding: 20px;
  }
  .p-contact .p-contact__box::before,
  .p-contact .p-contact__box::after {
    width: 30px;
    height: 30px;
  }
  .p-contact .p-contact__box::before {
    top: 15px;
    left: 15px;
  }
  .p-contact .p-contact__box::after {
    bottom: 15px;
    right: 15px;
  }
  .p-contact p {
    font-size: 1em;
    margin: 10px 0;
  }
}

/*-------------------------------------------*/
.p-topics > li {
  border-bottom: 1px solid var(--color-sub1);
}
.p-topics > li:last-child {
  border-bottom: none;
}
.p-topics > li > a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  padding: 10px 0 20px;
  color: var(--color-blk1) !important;
}
.p-topics > li > a:first-child {
  padding: 0 0 20px;
}
.p-topics > li > a > .day {
  margin: 10px 20px 0 0;
}
.p-topics > li > a > .category {
  margin: 10px 20px 0 0;
  padding: 0 5px;
  background: var(--color-sub2);
  width: 10em;
  text-align: center;
  font-size: 0.8em;
}
.p-topics > li > a > .title {
  width: 100%;
  margin: 10px 0 0 0;
  color: var(--color-main1) !important;
  font-weight: 500;
}
.p-topics > li > a:hover > .title {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .p-topics > li > a > .title {
    flex: auto;
    width: 100%;
  }
}
/*----------------------------------------*/
.p-pager ul {
  display: flex;
  justify-content: center;
  margin: var(--margin-big) 0 0;
  flex-wrap: wrap;
}
.p-pager li {
  margin: 0 5px 10px;
}
.p-pager li a {
  text-decoration: none;
  color: var(--color-main1);
  border: 2px solid var(--color-main1);
  background: #fff;
  padding: 0.5em 1em;
  display: inline-block;
}
.p-pager li a:hover {
  opacity: 0.6;
}
.p-pager li.active a {
  font-weight: bold;
  background: var(--color-main1);
  color: #FFF;
}

.p-pager02 {
  display: flex;
  justify-content: center;
}
.p-pager02 .c-btn01__left {
  margin-right: 10px;
}
.p-pager02 .c-btn01 {
  margin-left: 10px;
}
@media screen and (max-width: 560px) {
  .p-pager02 .c-btn01 a {
    padding: 10px 60px 10px 20px;
  }
  .p-pager02 .c-btn01__left a {
    padding: 10px 20px 10px 60px;
  }
}
@media screen and (max-width: 475px) {
  .p-pager02 {
    flex-direction: column;
    align-items: center;
  }
  .p-pager02 .c-btn01 {
    width: 80%;
    margin-left: 0;
  }
  .p-pager02 .c-btn01__left {
    margin: 0 0 10px;
  }
}
/*----------------------------------------*/
.p-map iframe{
  width: 100%;
  height: 50vh;
  border: none;
}
/*----------------------------------------*/
.p-pageimage{
	width: 100%;
	min-height: 390px;
  margin-top: var(--header-hight);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.p-pageimage.main01 {
	background: url(/img/common/pic_pagetitle01.jpg) center center / cover no-repeat;
}
.p-pageimage.main02 {
	background: url(/img/common/pic_pagetitle02.jpg) center center / cover no-repeat;
}
.p-pageimage.main03 {
	background: url(/img/common/pic_pagetitle03.jpg) center center / cover no-repeat;
}
.p-pageimage.main04 {
	background: url(/img/common/pic_pagetitle04.jpg) center center / cover no-repeat;
}
.p-pageimage.main05 {
	background: url(/img/common/pic_pagetitle05.jpg) 70% center / cover no-repeat;
}
.p-pageimage.main06 {
	background: url(/img/common/pic_pagetitle06.jpg) center center / cover no-repeat;
}
.p-pageimage.main07 {
	background: url(/img/common/pic_pagetitle07.jpg) center center / cover no-repeat;
}
.p-pageimage.main08 {
	background: url(/img/common/pic_pagetitle08.jpg) center center / cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-pageimage {
    min-height: 270px;
  }
}
@media screen and (max-width: 490px) {
  .p-pageimage.main01 {
    background: url(/img/common/pic_pagetitle01.jpg) 55% center / cover no-repeat;
  }
  .p-pageimage.main08 {
    background: url(/img/common/pic_pagetitle08.jpg) 70% center / cover no-repeat;
  }
}
.p-pageimage::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(255 255 255), rgb(255 255 255 / 15%), rgb(255 255 255 / 0%));
}
.p-pageimage__bg > h2{
  position: relative;
  font-size: 3.2em;
  font-weight: 700;
  margin-left: 160px;
  z-index: 2;
}
.p-pageimage__bg > h2::after {
  position: absolute;
  content: "";
  display: block;
  width: 1em;
  height: 3px;
  background: url("/img/common/line_gradation_01.svg");
  bottom: 0;
}
.p-pageimage__bg > p{
  margin: 20px 0 0;
  text-align: center;
  font-size: 1.2em;
}
@media screen and (max-width: 1080px) {
  .p-pageimage::after {
    background: linear-gradient(to top, rgb(255 255 255), rgb(255 255 255 / 60%), rgb(255 255 255 / 0%));
  }
  .p-pageimage.main01::after {
    background: linear-gradient(to top, rgb(255 255 255), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%));
  }
  .p-pageimage__bg > h2 {
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-pageimage__bg > h2 {
    font-size: 2em;
    margin: 20px;
  }
}

.p-pageimage02{
	width: 100%;
	min-height: 390px;
  margin-top: var(--header-hight);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.p-pageimage02__bg {
  width: 100%;
  margin: 0 160px;
}
.p-pageimage02__bg div > h2 {
  position: relative;
  font-size: 3.2em;
  font-weight: 700;
  z-index: 2;
}
.p-pageimage02__bg div.title__package > h2::first-letter {
  color: var(--color-sub2);
}
.p-pageimage02__bg div.title__network > h2::first-letter {
  color: var(--color-sub3);
}
.p-pageimage02__bg div.title__outsourcing > h2::first-letter {
  color: var(--color-sub4);
}
.p-pageimage02__bg div.title__it > h2::first-letter {
  color: var(--color-sub5);
}
.p-pageimage02__bg div > h2::after {
  position: absolute;
  content: "";
  display: block;
  width: 1em;
  height: 3px;
  background: url("/img/common/line_gradation_01.svg");
  bottom: 0;
}
.p-pageimage02__bg div > p{
  margin: 20px 0 0;
  font-size: 1em;
}
@media screen and (max-width: 1270px) {
  .p-pageimage02.solution02 .p-pageimage02__bg div > h2 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 1180px) {
  .p-pageimage02__bg div > h2 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 1080px) {
  .p-pageimage02__bg {
    margin: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-pageimage02__bg {
    flex-direction: column-reverse;
  }
  .p-pageimage02__bg div > h2{
    font-size: 2em;
  }
}

.p-pageimage03 {
	width: 100%;
  min-height: 600px;
	height: calc(85vh - var(--header-hight));
  margin-top: var(--header-hight);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.p-pageimage03.interview01 {
	background: url(/img/recruit/interview/pic_interview_title01.jpg) center center / cover no-repeat;
}
.p-pageimage03.interview02 {
  background: url(/img/recruit/interview/pic_interview_title02.jpg) center center / cover no-repeat;
}
.p-pageimage03.interview03 {
  background: url(/img/recruit/interview/pic_interview_title03.jpg) center center / cover no-repeat;
}
.p-pageimage03__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.p-pageimage03__item01 span {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 500;
  font-style: italic;
  color: var(--color-main1);
  margin-left: 160px;
}
.p-pageimage03__item01 p {
  font-size: 3em;
  font-weight: bold;
  background-color: #fff;
  padding: 40px 20px 40px 150px;
  margin: 0;
  line-height: 1.4;
}
.p-pageimage03__item02 {
  margin: 20px 160px 0;
}
.p-pageimage03__item02 p {
  font-size: 1.3em;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}
.p-pageimage03__item02 p span {
  font-size: 1.3em;
}
.p-pageimage03__item03 {
  position: absolute;
  bottom: 20px;
  left: 160px;
}
.p-pageimage03__item03 span {
  font-size: 0.8em;
}
@media screen and (max-width: 1280px) {
  .p-pageimage03__item01 p {
    font-size: 2.5em;
    padding: 30px 0px 30px 40px;
  }
  .p-pageimage03__item01 span {
    margin-left: 40px;
  }
  .p-pageimage03__item02 {
    margin: 20px 0 0 40px;
  }
  .p-pageimage03__item03 {
    left: 40px;
  }
}
@media screen and (max-width: 860px) {
  .p-pageimage03 {
    min-height: 400px;
  }
  .p-pageimage03.interview01 {
    background: url(/img/recruit/interview/pic_interview_title01.jpg) 70% 100% / cover no-repeat;
  }
  .p-pageimage03.interview02 {
    background: url(/img/recruit/interview/pic_interview_title02.jpg) 70% 100% / cover no-repeat;
  }
  .p-pageimage03.interview03 {
    background: url(/img/recruit/interview/pic_interview_title03.jpg) 70% 100% / cover no-repeat;
  }
  .p-pageimage03__box {
    position: absolute;
    bottom: 40px;
    min-width: 430px;
  }
  .p-pageimage03__item01 p {
    font-size: 1.4em;
    padding: 15px 0 15px 40px;
  }
  .p-pageimage03__item01 span {
    font-size: 1.5em;
  }
  .p-pageimage03__item02 {
    font-size: .8em;
    margin-top: 5px;
  }
  .p-pageimage03__item02 p,
  .p-pageimage03__item03 span {
    color: #fff;
  }
  .p-pageimage03__item03 {
    bottom: -30px;
  }
}
@media screen and (max-width: 520px) {
  .p-pageimage03 {
    min-height: 670px;
  }
  .p-pageimage03.interview01 {
    background: url(/img/recruit/interview/pic_interview_title01.jpg) 70% 0 / 250% no-repeat;
  }
  .p-pageimage03.interview02 {
    background: url(/img/recruit/interview/pic_interview_title02.jpg) 70% 0 / 250% no-repeat;
  }
  .p-pageimage03.interview03 {
    background: url(/img/recruit/interview/pic_interview_title03.jpg) 70% 0 / 250% no-repeat;
  }
   .p-pageimage03__box {
    top: 60%;
    bottom: auto;
    right: 0;
    left: 0;
    min-width: auto;
    margin: 10px 40px;
   }
   .interview03 .p-pageimage03__box {
      top: 58%;
    }
   .p-pageimage03__item01 p {
    padding: 0;
   }
   .p-pageimage03__item01 span {
    margin: 0;
   }
   .p-pageimage03__item02 p,
  .p-pageimage03__item03 span {
    color: var(--color-main2);
  }
   .p-pageimage03__item02 {
    margin-left: 0;
   }
   .p-pageimage03__item03 {
    bottom: -50px;
    left: 0;
   }
}
@media screen and (max-width: 460px) {
  .p-pageimage03__box {
    top: 55%;
  }
  .interview03 .p-pageimage03__box {
    top: 53%;
  }
  .p-pageimage03__item03 {
    bottom: -80px;
  }
}
@media screen and (max-width: 420px) {
  .p-pageimage03__box,
  .interview03 .p-pageimage03__box {
    top: 50%;
  }
}
@media screen and (max-width: 390px) {
  .p-pageimage03 {
    min-height: 650px;
  }
  .p-pageimage03__box,
  .interview03 .p-pageimage03__box {
    top: 48%;
  }
  .p-pageimage03__item03 {
    bottom: -30%;
  }
}
@media screen and (max-width: 360px) {
  .interview03 .p-pageimage03__box {
    top: 43%;
  }
}
@media screen and (max-width: 340px) {
  .p-pageimage03__box,
  .interview03 .p-pageimage03__box {
    top: 40%;
  }
}
/*----------------------------------------*/
.p-breadcrumb {
  width: 100%;
  padding: 20px 160px;
  position: sticky;
  top: var(--header-hight, 80px); /* ←ヘッダー分だけ下げる */
  background: #fff;
  z-index: 20;
  box-shadow: 0 4px 16px -8px rgba(0,0,0,0.12);
}
.p-breadcrumb__item {
  display: inline;
  font-size: 0.9rem;
  text-decoration: none;
}
.p-breadcrumb__item:not(:last-child):after {
  content: "／";
  font-weight: 700;
  margin: 0 .5em;
  color: var(--color-main1);
}
.p-breadcrumb__item a {
  margin-right: 5px;
  font-weight: 400;
  color: var(--color-main2) !important;
}
.p-breadcrumb__item:last-child a {
  pointer-events: none;
  color: var(--color-main1) !important;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .p-breadcrumb {
    padding: 10px 20px;
  }
}
/*----------------------------------------*/
/* form-nav */
.p-formstep {
  display: flex;
  flex-wrap: wrap;
}
.p-formstep > li {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 13px 0;
    line-height: 1.5;
    background: var(--color-sub1);
    color: #999999;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.p-formstep > li > .nm {
  width: 100%;
  display: block;
  font-weight: 700;
}
.p-formstep > li > .tx {
  width: 100%;
  display: block;
}
.p-formstep > li:not(:last-child)::before,
.p-formstep > li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid var(--color-sub1);
    margin: auto;
}
.p-formstep > li:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}
@media screen and (max-width: 480px) {
  .p-formstep {
    display: block;
  }
  .p-formstep > li:not(:last-child)::before,
  .p-formstep > li:not(:last-child)::after {
    display: none;
  }
  .p-formstep > li {
    border-bottom: 1px solid #FFFFFF;
}
}
/* active */
.p-formstep > li.fs__active {
  background: var(--color-main1);
  color: #FFF;
}
.p-formstep > li.fs__active:not(:last-child)::after {
  border-left-color: var(--color-main1);
}
.p-formstep > li.fs__active:not(:last-child)::before {
  border-left: none;
}
/*----------------------------------------*/
.p-form__bg{
  border: 1px solid var(--color-sub1);
  padding: var(--container-w1) 150px;
}
.p-form{
  margin: auto;
}
.p-formexplanation {
  padding: 0 150px;
}
@media screen and (max-width: 1080px) {
  .p-formexplanation{
    padding: var(--container-w1) 40px;
  }
}
@media screen and (max-width: 480px) {
  .p-formexplanation{
    padding: var(--container-w1) 20px;
  }
}
.p-input{
  width: 100%;
  display: block;
  margin-bottom: 60px ;
}
.p-input > .title__area{
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
}
.p-input > .input__area{
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-input > .input__area > .nowrap{
  display: flex;
  align-items: center;
}
.p-input > .input__area .attached{
  margin-right: 10px;
  margin-left: 10px;
}
.p-input > .input__area .attached__f{
  margin-right: 10px;
}
.p-input > .input__area .btn__search {
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .p-input > .input__area .btn__search {
    margin: 20px 0 0;
  }
}
.input__flex1{
  flex: 1;
}
.input__error{
  width: 100%;
  color:#DE1963;
  font-weight: 700;
}
.input__width01{
  width: 5em;
}
.input__width02{
  width: 8em;
}
.input__width03{
  width: 10em;
}
input[type="text"]::placeholder {
  color: var(--color-blk2);
}
@media screen and (max-width: 480px) {
  .p-input{
    display: block;
    margin-bottom: 40px;
  }
  .p-input > .title__area{
    margin-bottom: .8em;
  }
  .input__width01{
    width: 100%;
  }
  .input__width02{
    width: 200%;
  }
  .input__width03{
    width: 100%;
  }
}
/*必須・任意*/
.p-required{
  background: var(--color-main1);
  color: var(--color-wht);
  font-size: 0.8em;
  padding: .2em .5em;
  display: flex;
  align-items: center;
  margin-right: .5em;
}
.p-required.any{
  background: var(--color-blk3);
  color: var(--color-blk1);
}
/*ツールチップ　ヒント*/
.p-tooltip .tip__ico{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  display: block;
  cursor: pointer;
}
.p-tooltip .tip__ico:hover{
  opacity: .6;
}
.p-tooltip .tip__ico::before{
  content: "？";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-main1);
  border-radius: calc(1em * 1.8);
  color: var(--color-wht);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.p-tooltip .tip__text{
  width: max-content;
  max-width: 100%;
  background: var(--color-blk4);
  font-size: 0.8em;
  padding: .5em .8em;
  position: absolute;
  bottom: calc(1.7em * 1.8);
  right: 0;
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(0 , 0) ;
  transition: all .3s;
  z-index: 10;
}
.p-tooltip .tip__text::after{
  content: "";
  position: absolute;
  bottom: -10px;
  right: calc((1em * 1.8) / 3);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid var(--color-blk4);
  border-bottom: 0;
}
.p-tooltip .tip__text > p{
  margin: .5em 0;
}
.p-tooltip .tip__ico:hover + .tip__text{
  display: block;
  transform: scale(1 , 1);
  opacity: 1;
}
/*セレクトボックス*/
.p-input select{
  border: 1px solid var(--color-blk2);
  display: inline-block;
  padding: .3em .5em;
  line-height: 1.8;
  width: 100%;
}
.p-input select:focus{
  border: 1px solid var(--color-main1);
}
/*テキストエリア*/
.p-input textarea{
  border: 1px solid var(--color-blk2);
  padding: .3em .5em;
  line-height: 1.8;
  height: 8em;
}
.p-input textarea:focus{
  border: 1px solid var(--color-main1);
}
/*その他*/
.p-input input[type="file"]{
  cursor: pointer;
  width: 18em;
}
/*入力フォームまわり*/
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]){
  border: 1px solid var(--color-blk2);
  padding: .3em .5em;
  line-height: 1.8;
}
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]):focus{
  border: 1px solid var(--color-main1);
}
/*ラジオボタン・チェックボックス*/
.p-checklist{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -1em;
}
.p-checklist > li{
  margin: 0 1em 1em 0;
  position: relative;
  display: flex;
}
.p-checklist label{
  display: inline-block;
  line-height: 1;
  margin-left: 1.2em;
  cursor: pointer;
}
.p-checklist input[type="radio"]{
  all: initial;
  background: url(/img/common/ico_radio01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
}
.p-checklist input[type="radio"]:checked{
  background: url(/img/common/ico_radio01_2.svg) center center / 100% auto no-repeat;
}
.p-checklist input[type="checkbox"]{
  all: initial;
  background: url(/img/common/ico_checkbox01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
}
.p-checklist input[type="checkbox"]:checked{
  background: url(/img/common/ico_checkbox01_2.svg) center center / 100% auto no-repeat;
}
/*送信ボタン・リセットボタン*/
.p-formbutton{
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-formbutton > button,
.p-formbutton > input{
  margin: 0 .5em;
}
@media screen and (max-width: 1080px) {
  .p-form__bg{
    padding: var(--container-w1) 40px;
  }
}
@media screen and (max-width: 480px) {
  .p-form__bg{
    padding: var(--container-w1) 20px;
  }
}
/*-------------------------------------------*/
.p-categorylist{
  border: 1px solid var(--color-main2);
  padding: var(--margin-col);
}
.p-categorylist__inner{
  display: flex;
  align-items: center;
}
.p-categorylist__title{
  font-size: 1.8em;
  font-weight: 700;
  margin-right: var(--margin-col);
}
.p-categorylist__list{
  flex: 1;
}
.p-categorylist__list > ul{
  display: flex;
  flex-wrap: wrap;
}
.p-categorylist__list > ul > li{
  margin: 10px 10px 10px 0;
}
.p-categorylist__list > ul > li > a{
  display: inline-block;
  padding: 8px 10px 7px;
  line-height: 1.2;
  border: 1px solid var(--color-main1);
  color: #fff;
  background: var(--color-main1);
  font-size: 1.2rem;
}
.p-categorylist__list > ul > li > a:hover{
  opacity: 1;
  text-decoration: none;
  border: 1px solid var(--color-main1);
  background: #fff;
  color: var(--color-main1);
}
.p-categorylist__list > ul > li > a.active{
  border: 1px solid var(--color-main1);
  background: #fff;
  color: var(--color-main1);
}

@media screen and (max-width: 768px) {
  .p-categorylist__title{
    font-size: 1.2em;
    margin-right: 0;
  }
  .p-categorylist__inner{
    display: block;
  }
  .p-categorylist__list > ul > li{
    margin: 10px 10px 0 0;
  }
  .p-categorylist__list > ul > li > a{
    font-size: 1rem;
  }
}
/*-------------------------------------------*/
.p-notfound {
  margin-top: 40px;
}
.p-notfound__title span {
  font-size: 7rem;
}
.p-notfound__subtitle {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 810px) {
  .p-notfound {
    margin-top: 40px;
  }
  .p-notfound__title span {
    font-size: 3rem;
    font-weight: 700;
  }
  .p-notfound__subtitle {
    font-size: 1.5rem;
  }
  .p-notfound__text {
    margin: 20px 40px;
  }
  .p-notfound .c-btn01 {
    width: 80%;
  }
  .p-notfound .u-ml20 {
    margin-left: 0!important;
    margin-top: 20px;
  }
}
@media screen and (max-width: 560px) {
  .p-notfound {
    margin-top: 0;
  }
}

/* p-sitemap */
.p-sitemap .p-sitemap__box {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 40px;
}
.p-sitemap .p-sitemap__box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px; /* 必要に応じて調整 */
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.p-sitemap .p-sitemap__box ul > li {
  width: calc(50% - 20px); /* gapが20pxの場合、2列で10pxずつ引く */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-sitemap .p-sitemap__box ul > li > div {
  margin: 10px 0;
}
.p-sitemap .p-sitemap__box h4 {
  font-size: 1.5em;
}
.p-sitemap .p-sitemap__box a {
  color: var(--color-main2);
}
@media screen and (max-width: 560px) {
  .p-sitemap .p-sitemap__box ul > li {
    width: 100%;
  }
}

/*-------------------------------------------*/
/*====================================================================
Component……再利用可能な小さな単位のモジュールを管理（ボタンなど）
====================================================================*/
/*-------------------------------------------*/
.c-btn-icon01{
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn-icon01 > .icon{
  margin-right: 0.5em;
  display: inline-block;
}
.c-btn-icon01 > .icon img{
  width: 1.2em;
}
.c-btn-icon01 > .text{
  line-height: 1.4;
  display: inline-block;
}
.c-btn01 {
	display: flex;
  justify-content: center;
  margin-top: 20px;
}
.c-btn01 a {
	position: relative;
  width: 100%;
  text-align: center;
	font-weight: bold;
  color: var(--color-main1)!important;
	border: 2px solid var(--color-main1);
  background-color: #fff;
  padding: 15px 60px 15px 40px;
}
.c-btn01__left a {
  padding: 15px 40px 15px 60px;
}
.c-btn01 a::after {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("/img/common/ico_right_arrow02.svg") no-repeat;
	top: 25%;
  right: 5px;
}
.c-btn01__left a::after {
	background: url("/img/common/ico_right_arrow02.svg") no-repeat;
  transform: rotate(180deg);
  top: 25%;
  left: 5px;
}
.c-btn01 a:hover {
	color: #fff!important;
  background-color: var(--color-main1);
  border: 2px solid var(--color-main1);
  opacity: 1;
	transition: all .6s;
  text-decoration: none;
}
.c-btn01 a:hover::after {
	background: url("/img/common/ico_right_arrow01.svg") no-repeat;
}
.p-interview .c-btn01 a {
	border: 2px solid #fff;
}
.p-interview .c-btn01 a:hover {
  border: 2px solid #fff;
}
@media screen and (max-width: 560px) {
  .c-btn01 {
    margin-top: 0;
  }
  .c-btn01 a {
    padding: 10px 50px 10px 20px;
  }
}

.c-btn02 {
	display: flex;
  justify-content: center;
  margin: 20px 0;
}
.c-btn02 a {
	position: relative;
	font-size: 1.3em;
	font-weight: bold;
  color: var(--color-main2)!important;
	border: 1px solid var(--color-main2);
	background: var(--color-gr1);
  padding: 20px 100px 20px 80px;
}
.c-btn02 a::after {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("/img/common/ico_right_arrow05.svg") no-repeat;
	top: 30%;
  right: 15px;
}
.c-btn02 a:hover {
  text-decoration: none;
	color: #FFE872!important;
  border: 1px solid #FFE872;
  background: linear-gradient(to right, #00296A, #00296A);
  opacity: 1;
	transition: color .6s, border .6s;
}
.c-btn02 a:hover::after {
	background: url("/img/common/ico_right_arrow04.svg") no-repeat;
}
@media screen and (max-width: 560px) {
  .c-btn02 a {
    padding: 10px 80px 10px 40px;
    font-size: 1em;
  }
  .c-btn02 a::after {
    top: 25%;
  }
}

.c-btn03 {
	display: flex;
  justify-content: center;
  margin-top: 20px;
}
.c-btn03 a {
	position: relative;
	font-weight: bold;
  color: #fff!important;
  background: var(--color-gr2);
  padding: 15px 60px 15px 40px;
  border: 2px solid transparent; 
  border-image: var(--color-gr2) 1;
  transition: all .6s;
}
.c-btn03 a::after {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("/img/common/ico_right_arrow04.svg") no-repeat;
	top: 25%;
  right: 10px;
}
.c-btn03 a:hover {
  color: transparent;
  background: var(--color-gr2);
  border: 2px solid;
  border-image: var(--color-gr2) 1;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  opacity: 1;
  transition: all .6s;
}
.c-btn03 a:hover::after {
  background: url("/img/common/ico_right_arrow03.svg") no-repeat;
}
.p-topics .c-btn03 {
  margin-top: 40px
}

.c-btn04 {
	display: flex;
  justify-content: center;
}
.c-btn04 span {
	position: relative;
  display: block;
  width: 100%;
	font-weight: bold;
  color: var(--color-main2)!important;
  border: 2px solid var(--color-main2);
  background-color: #fff;
  padding: 15px 60px 15px 40px;
}
.c-btn04 span::after {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("/img/common/ico_right_arrow03.svg") no-repeat;
	top: 25%;
  right: 10px;
}
a:hover .c-btn04 span {
	color: #fff!important;
  background-color: var(--color-main2);
  border: 2px solid #fff;
  opacity: 1;
	transition: all .6s;
  text-decoration: none;
}
a:hover .c-btn04 span::after {
	background: url("/img/common/ico_right_arrow04.svg") no-repeat;
}
@media screen and (max-width: 830px) {
  .p-toprecruit .c-btn04 {
    display: none;
  }
}

.c-formbtn01{
  background: var(--color-main1);
  color: var(--color-wht);
  padding: 0.5em 2em;
  cursor: pointer;
}
.c-formbtn01:hover{
  opacity: .6;
}
.c-formbtn02{
  background: var(--color-blk4);
  color: var(--color-blk1);
  padding: 0.5em 2em;
  cursor: pointer;
}
.c-formbtn02:hover{
  opacity: .6;
}
.c-formbtn03{
  background: var(--color-main1);
  color: #fff;
  padding: 0.3em 1em;
  cursor: pointer;
}
.c-formbtn03:hover{
  opacity: .6;
}
/*----------------------------------------*/
.c-link__list li {
  display: block;
  position: relative;
  padding-left: 1em;
}
.c-link__list li:before {
  position: absolute;
  left: 0;
  content: ">";
  font-weight: 700;
  font-size: 1em;
}
.c-link__list li:after {
  display: none;
}
/*----------------------------------------*/
.c-box01{
  padding: 1em;
  border: 1px solid var(--color-blk2);
}
.c-box01 > p{
  margin: 0;
}
/*----------------------------------------*/
.c-title01{
  position: relative;
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.c-title01::after {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 3px;
  background: url("/img/common/line_gradation_01.svg");
  bottom: -10px;
}
@media screen and (max-width: 768px) {
  .c-title01 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.c-title02 {
	color: #fff;
	font-size: 2.2em;
	font-weight: bold;
}
.c-title02 span {
	font-family: "Montserrat", sans-serif;
	color: #F9D72C;
	font-size: 2em;
	font-style: Italic;
	font-weight: 500;
}
.c-title02::after {
	display: none;
}
@media screen and (max-width: 768px) {
  .c-title02 {
    font-size: 2em;
  }
  .c-title02 span {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 560px) {
  .c-title02 {
    font-size: 1.4em;
  }
  .c-title02 span {
    font-size: 1.2em;
  }
}
.c-title03 {
  position: relative;
  font-size: 2em;
  font-weight: 700;
  padding-bottom: 8px;
  scroll-margin-top: 170px;
}
.c-title03::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-gr2);
  display: block;
}
@media screen and (max-width: 768px) {
  .c-title03 {
    font-size: 1.5em;
  }
}
.c-title04{
  position: relative;
  font-size: 1.5em;
  font-weight: 700;
  padding-left: 3em;
  margin: 1em 0;
  position: relative;
}
.c-title04::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.5em;
  height: 2px;
  background: var(--color-gr2);
  display: block;
}
@media screen and (max-width: 768px) {
  .c-title04 {
    padding-left: 2em;
  }
  .c-title04::before {
    width: 1.5em;
  }
}
.c-title05{
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  background: var(--color-sub1);
}
.c-title06{
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  margin: 1em 0;
  position: relative;
  border-left: 10px solid var(--color-main1);
}
.c-title07{
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  border: 1px solid var(--color-main1);
}
@media screen and (max-width: 768px) {
  .c-title04,.c-title05,.c-title06,.c-title07 {
    font-size: 1.3em;
  }
}
.c-title08 {
  position: relative;
  font-size: 3.2em;
  font-weight: 700;
}
.c-title08::after {
  position: absolute;
  content: "";
  display: block;
  width: 1em;
  height: 3px;
  background: url(/img/common/line_gradation_01.svg);
  bottom: 0;
}
/*----------------------------------------*/
.c-bnr01 {
	position: relative;
	background: url("/img/common/bnr_bg01.png") no-repeat;
  color: #fff;
  font-weight: 700;
  overflow: hidden; 
}
.c-bnr01::after {
	position: absolute;
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url("/img/common/ico_right_arrow01.svg") no-repeat;
	top: 50%;
  right: 120px;
}
.c-bnr01:hover::after {
  background: url("/img/common/ico_right_arrow02.svg") no-repeat;
}
@media screen and (max-width: 768px) {
  .c-bnr01 {
    background-position: center center;
  }
  .c-bnr01::after {
    top: auto;
    right: 10px;
    bottom: 10px;
  }
}
/*----------------------------------------*/
.c-ul__disc {
  list-style-type: none;
}
.c-ul__disc > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.c-ul__disc > li:before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  background: var(--color-main2);
  border-radius: 10px;
  width: 0.5em;
  height: 0.5em;
}
.c-ul__number {
  list-style: decimal;
  padding-left: 1em;
}
.c-ul__number > li {
  margin-bottom: 0.5em;
}
.c-ul__number > li::marker {
  color: var(--color-main2);
}
/*-------------------------------------------*/
.c-page__anchor{
  display: block;
  width: 90%;
  min-width: 80%;
  margin: 0 auto;
  margin-top: 40px;
}
.c-page__anchor > ul{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.c-page__anchor > ul > li {
  position: relative;
  margin: 10px 20px 0 0;
}
.c-page__anchor.col3 > ul > li {
  width: calc((100% - 40px) / 3);
}
.c-page__anchor.col2 > ul > li {
  width: calc((100% - 20px) / 2);
}
.c-page__anchor.col2 > ul > li:last-child,
.c-page__anchor > ul > li:nth-child(3n) {
  margin: 10px 0 0 0;
}
.c-page__anchor > ul > li a {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  background-color: var(--color-sub2);
  padding: 0.5em 1.5em 0.5em 3em;
}
.c-page__anchor > ul > li a:hover {
  opacity: 1;
}
.p-solution.package .c-page__anchor > ul > li a {
  background-color: var(--color-sub2)
}
.p-solution.package .c-page__anchor > ul > li a:hover {
  border: 2px solid var(--color-sub2);
  color: var(--color-sub2);
  background-color: #fff;
}
.p-solution.network .c-page__anchor > ul > li a {
  background-color: var(--color-sub3)
}
.p-solution.network .c-page__anchor > ul > li a:hover {
  border: 2px solid var(--color-sub3);
  color: var(--color-sub3);
  background-color: #fff;
}
.p-solution.outsourcing .c-page__anchor > ul > li a {
  background-color: var(--color-sub4)
}
.p-solution.outsourcing .c-page__anchor > ul > li a:hover {
  border: 2px solid var(--color-sub4);
  color: var(--color-sub4);
  background-color: #fff;
}
.p-solution.it .c-page__anchor > ul > li a {
  background-color: var(--color-sub5)
}
.p-solution.it .c-page__anchor > ul > li a:hover {
  border: 2px solid var(--color-sub5);
  color: var(--color-sub5);
  background-color: #fff;
}
.c-page__anchor > ul > li:not(:last-child) a {
  margin-right: 20px;
}
.c-page__anchor > ul > li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 40%;
  left: 8px;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #FFFFFF transparent transparent transparent;
}
.p-solution.package .c-page__anchor > ul > li a:hover::before {
  border-color: var(--color-sub2) transparent transparent transparent;
}
.p-solution.network .c-page__anchor > ul > li a:hover::before {
  border-color: var(--color-sub3) transparent transparent transparent;
}
.p-solution.outsourcing .c-page__anchor > ul > li a:hover::before {
  border-color: var(--color-sub4) transparent transparent transparent;
}
.p-solution.it .c-page__anchor > ul > li a:hover::before {
  border-color: var(--color-sub5) transparent transparent transparent;
}
.c-page__anchor > ul > li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1370px) {
  .c-page__anchor.col3 > ul > li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 1180px) {
  .c-page__anchor {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-page__anchor > ul > li {
    width: calc((100% - 20px) / 2);
  }
  .c-page__anchor > ul > li:nth-child(3n) {
    margin: 10px 20px 0 0;
  }
  .c-page__anchor > ul > li:nth-child(2n) {
    margin: 10px 0px 0 0;
  }
}
@media screen and (max-width: 670px) {
  .c-page__anchor > ul > li {
    width: 100%!important;
    margin: 10px 0 0 0!important;
  }
}

.c-page__anchor02 .c-page__anchor__inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.c-page__anchor02 .c-page__anchor__inner > li {
  width: calc(50% - 10px); /* gapが20pxの場合、2列で10pxずつ引く */
  display: flex;
  flex-direction: column;
  height: auto; 
} 
.c-page__anchor02 .c-page__anchor__inner > li a {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  font-size: 1.4rem;
  background-color: #fff;
  border: 2px solid var(--color-main1);
  color: var(--color-main1);
  padding: 20px;
}
.c-page__anchor02 > ul > li a span {
  font-weight: 700;
  padding-left: 2.5rem;
}
.c-page__anchor02 > ul > li a span:before {
  position: absolute;
  content: "";
  display: block;
  background: url(/img/common/ico_right_arrow02.svg) no-repeat;
  width: 30px;
  height: 30px;
  top: 26px;
  left: 15px;
}
.c-page__anchor02 > ul > li a:hover {
  text-decoration: none;
  color: #fff!important;
  opacity: 1;
  background-color: var(--color-main1);
}
.c-page__anchor02 > ul > li a:hover span::before {
  background: url(/img/common/ico_right_arrow01.svg) no-repeat;
}
.c-page__anchor02 > ul > li a p {
  font-size: 1rem;
  margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
  .c-page__anchor02 .c-page__anchor__inner > li {
    width: 100%;
  }
}
#sol01.p-solution,
#sol02.p-solution,
#sol03.p-solution,
#sol04.p-solution,
#sol05.p-solution,
#sol06.p-solution,
#sol07.p-solution,
.p-solution-content #anc01,
.p-solution-content #anc02,
.p-solution-content #anc03,
.p-solution-content #anc04,
.p-solution-content #anc05,
.p-solution-content #anc06,
.p-solution-content #anc07,
.p-solution-content #anc08,
.p-solution-content #anc09,
.p-solution-content #anc10,
.p-solution-content #anc11,
.p-solution-content #anc12 {
  margin-top: -80px!important;
  padding-top: 80px!important;
}
/*----------------------------------------*/
.c-table01 {
	width: 100%;
}

.c-table01 th,
.c-table01 td {
	font-size: 1.2em;
	padding: 20px;
	vertical-align: middle;
	border: 1px solid;
	box-sizing: border-box;
}

.c-table01 th {
	width: 25%;
	font-weight: bold;
    text-align: center;
	background-color: var(--color-sub1);
}

@media screen and (max-width: 1080px) {
	.c-table01 th,
  .c-table01 td {
		display: block;
		width: 100%;
	}
}
@media screen and (max-width: 650px) {
  .c-table01 th,
  .c-table01 td {
    font-size: 1em;
    padding: 15px;
  }
}

/*-------------------------------------------*/
.c-topics{
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-main2);
}
a:has( > .c-topics ){
  text-decoration: none;
  display: block;
}
.c-topics__img{
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.c-topics__img > img{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 100%;
  object-fit: cover;
}
.c-topics__text{
  padding: 15px;
}
.c-topics__text > h3{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.5em;
  font-weight: 500;
  color: var(--color-main2);
}
.c-topics__text__category{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-topics__text__category > span{
  margin: 0 5px 5px 0;
  padding: 0 5px;
  border: 1px solid var(--color-main1);
  color: var(--color-main1);
  background-color: #fff;
  text-align: center;
  font-size: 0.8em;
}
.c-topics__text__category > span.day{
  background: none;
  padding: 0;
  margin-right: 10px;
  font-size: 1em;
}

/*-------------------------------------------*/
.c-support-download a {
  display: inline-block;
}
.c-support-procedure > div {
  margin: 40px 0;
}
.c-support-procedure > div:nth-child(3) > div {
  width: 50%;
}

@media screen and (max-width: 1080px) {
  .c-support-procedure > div:nth-child(3) > div {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .c-support-procedure > div:nth-child(3) > div {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .c-support-procedure > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/*-------------------------------------------*/
/*====================================================================
.article__area…記事部分の装飾まとめ
====================================================================*/
.article__area a:not([class]):link{
  color: var(--color-main1);
}
.article__area a:not([class]):visited{
  color: var(--color-main1);
}
.article__area img:not([class]){
  height: initial !important;
}
img.ccc{
  border: 1px solid #000;
}
.c-title100{
  font-size: 2em;
  font-weight: 700;
  text-align: left;
  margin: 140px 0 1.5em 0;
  position: relative;
  border-bottom: 1px solid var(--color-blk3);
  padding: .5em .5em .6em;
  line-height: 1;
  color: #FFF;
  background: var(--color-blk1);
  border-radius: 10px 0 0 0;
}
.l-section01 .c-title100:first-child{
  margin: 0 0 1.5em 0;
}
.article__area a:not([class]):link{
  color: var(--color-main1);
}
.article__area a:not([class]):visited{
  color: var(--color-main1);
}
.article__area .c-btn01 a {
  width: 50%!important;
}
@media screen and (max-width: 500px) {
  .article__area .c-btn01 a {
    width: 100%!important;
  }
}
.article__area h1:not([class]) {
  margin: var(--margin-big) 0 60px;
  font-size: 2.2em;
  font-weight: 900;
  border-bottom: 1px solid var(--color-blk3);
  padding-bottom: 20px;
  position: relative;
}
.article__area h1:not([class]) div > span {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-main1);
  border: 1px solid var(--color-main1);
  padding: 5px 10px;
}
.article__area h1:not([class]) div > span.date {
  color: var(--color-main2);
  border: none;
  font-weight: 700;
  padding: 0;
  margin-left: 20px;
}
.article__area h2:not([class]){
  margin: var(--margin-big) 0 60px;
  font-size: 2.2em;
  font-weight: 900;
  position: relative;
}
.article__area h3:not([class]){
  margin: var(--margin-middle) 0 1em;
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  position: relative;
  border-left: 6px solid var(--color-main1);
}
.article__area h4:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}
.article__area h4:not([class])::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-sub1);
}
.article__area h4:not([class])::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-main1);
}
.article__area h5:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}
.article__area h5:not([class]) > span{
  display: inline-block;
  border: 1px solid var(--color-main1);
  padding: 0.5em 1em;
}
.article__area h6:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
  padding: 0.5em 1em;
  background: var(--color-sub1);
}
.article__area h1:first-child,
.article__area h2:first-child{
  margin-top: 0;
}
.article__area h1:not([class]) + h1:not([class]),
.article__area h1:not([class]) + h2:not([class]),
.article__area h1:not([class]) + h3:not([class]),
.article__area h1:not([class]) + h4:not([class]),
.article__area h1:not([class]) + h5:not([class]),
.article__area h1:not([class]) + h6:not([class]),
.article__area h2:not([class]) + h2:not([class]),
.article__area h2:not([class]) + h3:not([class]),
.article__area h2:not([class]) + h4:not([class]),
.article__area h2:not([class]) + h5:not([class]),
.article__area h2:not([class]) + h6:not([class])
{margin-top: 40px;}
.article__area h3:not([class]) + h3:not([class]),
.article__area h3:not([class]) + h4:not([class]),
.article__area h3:not([class]) + h5:not([class]),
.article__area h3:not([class]) + h6:not([class]),
.article__area h4:not([class]) + h4:not([class]),
.article__area h4:not([class]) + h5:not([class]),
.article__area h4:not([class]) + h6:not([class]),
.article__area h5:not([class]) + h5:not([class]),
.article__area h5:not([class]) + h6:not([class])
{margin-top: 40px;}
@media screen and (max-width: 768px) {
  .article__area h1:first-child {
    margin-bottom: 40px;
  }
  .article__area h2:first-child{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .article__area h1:not([class]) div > span {
    font-size: 1rem;
  }
  .article__area h1:not([class]) br,
  .article__area h2:not([class]) br,
  .article__area h3:not([class]) br,
  .article__area h4:not([class]) br,
  .article__area h5:not([class]) br,
  .article__area h6:not([class]) br{
    display: none;
  }
  .article__area h1:not([class]),
  .article__area h2:not([class]){
    font-size: 2rem;
    line-height: 1.5;
  }
  .article__area h3:not([class]){
    line-height: 2;
  }
  .article__area h3:not([class]) > span{
    font-size: 1.6rem;
  }
  .article__area h4:not([class]){
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .article__area h5:not([class]){
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .article__area h6:not([class]){
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.article__area ul:not([class]){
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}
.article__area ul:not([class]) > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul:not([class]) > li:before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  background: var(--color-main1);
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
.article__area ul.checklist{
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}
.article__area ul.checklist > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul.checklist > li:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--color-main1);
  border-bottom: 2px solid var(--color-main1);
  transform: rotate(315deg);
}
.article__area ol:not([class]) {
  list-style: decimal;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
  padding-left: 1em;
}
.article__area ol:not([class]) > li {
  margin-bottom: 0.5em;
}
.article__area ol:not([class]) > li::marker {
  font-weight: 700;
  color: var(--color-main1);
}
.article__area ol:not([class]) > li::before {
  color: var(--color-blk1);
}
.article__area table:not([class]) {
  width: 100%;
}
.article__area table:not([class]) th,
.article__area table:not([class]) td {
  border: 1px solid var(--color-main2);
  padding: .5em;
}
.article__area table:not([class]) th{
  background: var(--color-sub1);
  width: 0;
  white-space: nowrap;
}
.article__area table:not([class]) th + th,
.article__area table:not([class]) th:has(+ th){
  background: var(--color-sub1);
  width: auto;
  white-space:initial;
}
/*====================================================================
Utility…調整のための便利クラスなどを管理
====================================================================*/
.u-left {  text-align: left !important;}
.u-right {  text-align: right !important;}
.u-center {  text-align: center;}
.u-center--pc {  text-align: center;}
@media screen and (max-width: 768px) {
	.u-center--pc {  text-align: left;}
	.u-center--sp {  text-align: center;}
}
.u-tabbr { display: none; }
.u-spbr { display: none; }
@media screen and (max-width: 768px) {
  .u-pcbr {
    display: none;
  }
  .u-tabbr {
    display: block;
  }
}
@media screen and (max-width: 568px) {
  .u-spbr{
    display: block;
  }
}
.u-lh10{line-height: 1 !important;}
.u-lh12{line-height: 1.2 !important;}
.u-lh14{line-height: 1.4 !important;}
.u-lh16{line-height: 1.6 !important;}
.u-lh18{line-height: 1.8 !important;}
.u-lh20{line-height: 2 !important;}
/*----------------------------------------*/
.u-fnt--bold{font-weight: bold !important;}
.u-fnt--w01{font-weight: 100 !important;}
.u-fnt--w02{font-weight: 200 !important;}
.u-fnt--w03{font-weight: 300 !important;}
.u-fnt--w04{font-weight: 400 !important;}
.u-fnt--w05{font-weight: 500 !important;}
.u-fnt--w06{font-weight: 600 !important;}
.u-fnt--w07{font-weight: 700 !important;}
.u-fnt--w08{font-weight: 800 !important;}
.u-fnt--w09{font-weight: 900 !important;}
/*----------------------------------------*/
.u-fnt--ssss {font-size:0.6em;}
.u-fnt--sss {font-size:0.7em;}
.u-fnt--ss {font-size:0.8em;}
.u-fnt--s {font-size:0.9em;}
.u-fnt--l {font-size:1.1em;}
.u-fnt--ll {font-size:1.2em;}
.u-fnt--lll {font-size:1.4em;}
.u-fnt--llll {font-size:1.6em;}
.u-fnt--lllll {font-size:1.8em;}
.u-fnt--llllll {font-size:2em;}
.u-fnt--lllllll {font-size:2.2em;}
.u-fnt--llllllll {font-size:2.4em;}
.u-fnt--lllllllll {font-size:3em;}
/*----------------------------------------*/
.u-fntcolor--main1 {color: var(--color-main1) !important;}
.u-fntcolor--sub1 {color: #9bd5cc !important;}
.u-fntcolor--red {color: #e41010 !important;}
.u-fntcolor--orange {color: #e48510 !important;}
.u-fntcolor--yellow {color: #e4cf10 !important;}
.u-fntcolor--green {color: #0f9a00 !important;}
.u-fntcolor--blue {color: #1041e4 !important;}
.u-fntcolor--purple {color: #840bc0 !important;}
/*----------------------------------------*/
.u-m--layout01  {margin-top: var(--margin-big) !important;}
.u-m--layout02  {margin-top: var(--margin-middle) !important;}
.u-m--layout03  {margin-top: var(--margin-small) !important;}
.u-m10  {margin: 10px !important;}
.u-m20  {margin: 20px !important;}
.u-m30  {margin: 30px !important;}
.u-m40  {margin: 40px !important;}
.u-m50  {margin: 50px !important;}
.u-m60  {margin: 60px !important;}
.u-m70  {margin: 70px !important;}
.u-m80  {margin: 80px !important;}
.u-m90  {margin: 90px !important;}
.u-m100  {margin: 100px !important;}
.u-mt0  {margin-top: 0 !important;}
.u-mt10 {margin-top: 10px !important;}
.u-mt20 {margin-top: 20px !important;}
.u-mt30 {margin-top: 30px !important;}
.u-mt40 {margin-top: 40px !important;}
.u-mt50 {margin-top: 50px !important;}
.u-mt60 {margin-top: 60px !important;}
.u-mt70 {margin-top: 70px !important;}
.u-mt80 {margin-top: 80px !important;}
.u-mt90 {margin-top: 90px !important;}
.u-mt100 {margin-top: 100px !important;}
.u-mt120 {margin-top: 120px !important;}
.u-mb0  {margin-bottom: 0 !important;}
.u-mb10 {margin-bottom: 10px !important;}
.u-mb20 {margin-bottom: 20px !important;}
.u-mb30 {margin-bottom: 20px !important;}
.u-mb40 {margin-bottom: 40px !important;}
.u-mb50 {margin-bottom: 50px !important;}
.u-mb60 {margin-bottom: 60px !important;}
.u-mb70 {margin-bottom: 70px !important;}
.u-mb80 {margin-bottom: 80px !important;}
.u-mb90 {margin-bottom: 90px !important;}
.u-mb100 {margin-bottom: 100px !important;}
.u-ml0  {margin-left: 0 !important;}
.u-ml10 {margin-left: 10px !important;}
.u-ml20 {margin-left: 20px !important;}
.u-ml30 {margin-left: 30px !important;}
.u-ml40 {margin-left: 40px !important;}
.u-mr0  {margin-right: 0 !important;}
.u-mr10 {margin-right: 10px !important;}
.u-mr20 {margin-right: 20px !important;}
.u-mr30 {margin-right: 30px !important;}
.u-mr40 {margin-right: 40px !important;}
.u-mauto {margin: auto !important;}
.u-m0   {margin: 0 !important;}
/*----------------------------------------*/
.u-p10  {padding: 10px !important;}
.u-p20  {padding: 20px !important;}
.u-p30  {padding: 30px !important;}
.u-p40  {padding: 40px !important;}
.u-p50  {padding: 50px !important;}
.u-p60  {padding: 60px !important;}
.u-p70  {padding: 70px !important;}
.u-p80  {padding: 80px !important;}
.u-p90  {padding: 90px !important;}
.u-p100  {padding: 100px !important;}
.u-pt0  {padding-top: 0 !important;}
.u-pt10 {padding-top: 10px !important;}
.u-pt20 {padding-top: 20px !important;}
.u-pt40 {padding-top: 40px !important;}
.u-pt50 {padding-top: 50px !important;}
.u-pt60 {padding-top: 60px !important;}
.u-pt70 {padding-top: 70px !important;}
.u-pt80 {padding-top: 80px !important;}
.u-pt90 {padding-top: 90px !important;}
.u-pt100 {padding-top: 100px !important;}
.u-pt120 {padding-top: 120px !important;}
.u-pb0  {padding-bottom: 0 !important;}
.u-pb10 {padding-bottom: 10px !important;}
.u-pb20 {padding-bottom: 20px !important;}
.u-pb40 {padding-bottom: 40px !important;}
.u-pb50 {padding-bottom: 50px !important;}
.u-pb60 {padding-bottom: 60px !important;}
.u-pb70 {padding-bottom: 70px !important;}
.u-pb80 {padding-bottom: 80px !important;}
.u-pb90 {padding-bottom: 90px !important;}
.u-pb100 {padding-bottom: 100px !important;}
.u-pl0  {padding-left: 0 !important;}
.u-pl10 {padding-left: 10px !important;}
.u-pl20 {padding-left: 20px !important;}
.u-pl40 {padding-left: 40px !important;}
.u-pr0  {padding-right: 0 !important;}
.u-pr10 {padding-right: 10px !important;}
.u-pr20 {padding-right: 20px !important;}
.u-pr40 {padding-right: 40px !important;}
.u-p0   {padding: 0 !important;}
/*----------------------------------------*/
.u-w100p {  width: 100% !important;}
.u-wauto {  width: auto !important;}
.u-wmx320 {  width: 100% !important;max-width: 320px !important;}
.u-wmx560 {  width: 100% !important;max-width: 560px !important;}
/*----------------------------------------*/
.u-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
/*----------------------------------------*/
.u-border01{border:1px solid var(--color-main1)}
.u-border02{border:2px solid var(--color-main1)}
.u-bordertop01{border-top:1px solid var(--color-main1)}
.u-borderbottom01{border-bottom:1px solid var(--color-main1)}
/*----------------------------------------*/
.u-nolink{pointer-events: none;}
/*====================================================================
animation
====================================================================*/

/*順々に表示する*/
@keyframes Display__order {
	0% { opacity: 0; }
	100% { opacity: 1;filter: blur(0); transform: translateY(0);}
}
.animeTrigger.display__order .order1,
.animeTrigger.display__order .order2,
.animeTrigger.display__order .order3,
.animeTrigger.display__order .order4,
.animeTrigger.display__order .order5,
.animeTrigger.display__order .order6,
.animeTrigger.display__order .order7,
.animeTrigger.display__order .order8,
.animeTrigger.display__order .order9,
.animeTrigger.display__order .order10{
  opacity: 0;
  filter: blur(30px);
  transform: translateY(100px);
}
.animeTrigger.display__order.animetion .order1{
	animation: Display__order 1.2s ease .5s 1 forwards;
}
.animeTrigger.display__order.animetion .order2{
	animation: Display__order 1.2s ease 1s 1 forwards;
}
.animeTrigger.display__order.animetion .order3{
	animation: Display__order 1.2s ease 1.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order4{
	animation: Display__order 1.2s ease 2s 1 forwards;
}
.animeTrigger.display__order.animetion .order5{
	animation: Display__order 1.2s ease 2.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order6{
	animation: Display__order 1.2s ease 3s 1 forwards;
}
.animeTrigger.display__order.animetion .order7{
	animation: Display__order 1.2s ease 3.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order8{
	animation: Display__order 1.2s ease 4s 1 forwards;
}
.animeTrigger.display__order.animetion .order9{
	animation: Display__order 1.2s ease 4.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order10{
	animation: Display__order 1.2s ease 5s 1 forwards;
}
/*フェード*/
@keyframes fade {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fade {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.animeTrigger.a-fade{
  opacity: 0;
}
.animeTrigger.animetion.a-fade{
  animation: fade 1s ease 0s 1 forwards;
}

.fadein-anim {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.fadein-anim.is-show {
  opacity: 1;
  transform: translateX(0);
}

.character_fadein .text {
  font-size: 1em;
  font-weight: bold;
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
@media screen and (max-width: 768px) {
  .character_fadein .text {
    font-size: 2rem;
  }
}

.scroll_in_block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.scroll_in_block.is-show {
  opacity: 1;
  transform: translateY(0);
}

.animation_img {
  opacity: 0;
  transform: translate(50px, -30px) rotate(-14deg); /* 右上から */
  transition: opacity 0.8s, transform 0.8s;
}
.animation_img.is-show {
  opacity: 1;
  transform: translate(0, 0) rotate(-14deg); /* 元の位置へ */
}

.loop_wrap {
  display: flex;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 120px 0;
  aspect-ratio: 1 / 0.194;
  max-height: 440px;
}
.loop_wrap img {
  width: auto;
  height: 100%;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.loop_wrap img:first-child {
  animation: loop 50s -25s linear infinite;
}
.loop_wrap img:last-child {
  animation: loop2 50s linear infinite;
}
@media screen and (max-width: 560px) {
  .loop_wrap {
    margin: 80px 0;
  }
}

.u-zoom-hover {
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.u-zoom-hover:hover {
  transform: scale(1.05);
}

.u-zoom-bg {
  position: relative;
  overflow: hidden;
}
.u-zoom-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: inherit; /* 親のbackgroundを継承 */
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  transform: scale(1);
}
.u-zoom-bg:hover::before {
  transform: scale(1.05);
}

/* 親要素のテキストや子要素を前面に表示 */
.u-zoom-bg > * {
  position: relative;
  z-index: 1;
}
/*====================================================================
print
====================================================================*/
@media print {
	html,body {
    width: 1080px;
    margin: auto;
		-webkit-print-color-adjust: exact;
	}
  header {
		display: none;
	}
}
/*====================================================================
dark mode
====================================================================*/
/* @media (prefers-color-scheme: dark) {
  html全体の色を反転させる
  html {
    filter: invert(1) hue-rotate(180deg);
  }
  画像は再反転させて戻す
  html img {
    filter: invert(1) hue-rotate(180deg);
  }
} */