/*--------------------------------
ヘッダー
---------------------------------*/
header {
	color: #444;
	background-color: rgba(255,255,255,9);
}
/*--------------------------------
ページ
---------------------------------*/

.pageTitle {
	padding: 135px 0 0 0;
	height: 245px;
	margin: 0;
}

.about .pageTitle { background: url(../img/aboutTitle_bg.jpg) center center / cover no-repeat;}
.program .pageTitle { background: url(../img/programTitle_bg.jpg) center center / cover no-repeat;}
.interview .pageTitle { background: url(../img/interviewTitle_bg.jpg) center center / cover no-repeat;}

.pageTitle h1 {
	color: #FFF;
	text-align: center;
	font-size: 2.8rem;
	font-weight: 800;
	position: relative;
}
.pageTitle h1::after {
	content: "";
	width: 1px;
	height: 70px;
	position: absolute;
	bottom: -90px;
	left: 50%;
	right: 50%;
	margin: auto;
}

.about .pageTitle h1::after { background-color: #6A2D07;}
.program .pageTitle h1::after { background-color: #F2A75B;}
.interview .pageTitle h1::after { background-color: #A4AF90;}

section h2 {
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	margin: 0 0 35px 50px;
	position: relative;
}

section h2::before {
	content: "";
	display: block;
	width: 60px;
	height: 40px;
	position: absolute;
	left: -80px;
	top: -5px;
}

.PageWrap {
	margin: 70px 0;
}

/*--------------------------------
about
---------------------------------*/
.about1 {
}

.about1 h1 {
	font-weight: 500;
	font-size: 2.6rem;
}

.about1 h1::after {
	content: "";
	display: block;
	width: 250px;
	height: 1px;
	margin: 30px 0 30px auto;
	background-color: #C3B2A7;
}

.about1 ul li:first-child {
	width: 47%;
}
.about1 ul li:last-child {
	width: 50%;
}

.about1 ul li:last-child img {
	opacity: 0;
	animation-name: aboutIMGfadein;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode:forwards;
}

@keyframes aboutIMGfadein {
	0% {
	   opacity: 0;
	   transform: translateX(40px);
	}
	100% {
	   opacity: 1;
	   transform: translateX(0);
	}
}

.about2 {
}

.about section h2 {
	color: #6A2D07;
}

.about section h2::before {
	background-color: #C3B2A7;
}

.about2 ul {
	justify-content: space-between;
	flex-wrap: wrap;
}

.about2 ul::after {
    content: "";
    display: block;
    width: 32%;
}

.about2 ul li {
	width: 32%;
	height: auto;
	margin-bottom: 2%;
	text-align: center;
	font-size: 1.4rem;
	color: #666;
}

.about2 ul li img {
	width: 100%;
	margin-bottom: 5px;
}

.about3 ul li:first-child {
	width: 40%;
}

.about3 ul li:last-child {
	width: 55%;
}

.about3 ul li p:nth-child(2) {
	font-weight: 700;
}

.about3 ul li span {
	display: inline-block;
	width: 100%;
	text-align: right;
	margin: 20px 0;
	font-size: 1.8rem;
	font-weight: 500;
}

.about3 ul li small {
	font-weight: 400;
	margin-right: 15px;
}


.about4 h3 {
	width: 70%;
	margin: 0 auto 30px auto;
	padding: 10px 20px;
	text-align: center;
	background-color: #6A2D07;
	color: #FFF;
	font-size: 1.8rem;
}

.about4 ul {
	justify-content: space-between;
	flex-wrap: wrap;
}

.about4 ul li {
	width: 31%;
	height: auto;
	padding-top: 19.333%;
	margin-bottom: 4%;
	border: 1px solid #C3B2A7;
	position: relative;
	transition: .3s all;
	background-size: 85%;
	background-position: center center;
	background-repeat: no-repeat;
}

.about4 ul li:nth-child(1) { background-image: url(../img/about4-illu1.jpg);}
.about4 ul li:nth-child(2) { background-image: url(../img/about4-illu2.jpg);}
.about4 ul li:nth-child(3) { background-image: url(../img/about4-illu3.jpg);}
.about4 ul li:nth-child(4) { background-image: url(../img/about4-illu4.jpg);}
.about4 ul li:nth-child(5) { background-image: url(../img/about4-illu5.jpg);}
.about4 ul li:nth-child(6) { background-image: url(../img/about4-illu6.jpg);}

.about4 ul li:hover {
	background-size: 95%;
	transition: .3s all;
}

.about4 ul li p {
	display: block;
	width: 95%;
	padding: 10px 0;
	font-size: 1.4rem;
	background-color: #C3B2A7;
	text-align: center;
	color: #FFF;
	font-weight: 500;
	position: absolute;
	bottom:-20px;
	left: 50%;
	transform: translate(-50%,0);
}


/*--------------------------------
program
---------------------------------*/
.program1 {
}

.program section h2 {
	color: #444444;
}

.program section h2::before {
	background-color: #F2A75B;
}

.program1 img {
	display: block;
	width: 80%;
	margin: 0 auto;
}

.program1 .job4 {
	width: 90%;
	margin: 40px auto 0 auto;
	border: 1px solid #CAB0A3;
	border-radius: 10px;
	padding: 14px 20px;
	text-align: center;
	color: #CAB0A3;
}

.program1 .job4 ul {
	margin-top: 20px;
}

.program1 .job4 ul li {
	display: flex;
	flex-direction: column;
	width: 24%;
}

.program1 .job4 ul li span {
	display: block;
	flex-grow: 1;
	padding: 10% 1%;
	border-radius: 10px;
	color: #FFF;
}
.program1 .job4 ul li:nth-child(1) { color: #A1B08D;}
.program1 .job4 ul li:nth-child(2) { color: #98CED6;}
.program1 .job4 ul li:nth-child(3) { color: #FFBFD2;}
.program1 .job4 ul li:nth-child(4) { color: #AAAAAA;}

.program1 .job4 ul li:nth-child(1) span { background: #A1B08D;}
.program1 .job4 ul li:nth-child(2) span { background: #98CED6;}
.program1 .job4 ul li:nth-child(3) span { background: #FFBFD2;}
.program1 .job4 ul li:nth-child(4) span { background: #AAAAAA;}



.program1 .job4 h3 {
	font-size: 1.6rem;
}

.program1 .job4 ul li i {
	margin-left: 5px;

}
.program2 ul + ul {
	margin-top: 40px;
}

.program2 ul li {
	display: flex;
	box-sizing: border-box;
}
.program2 ul li:nth-child(1) { width: 18%;}
.program2 ul li:nth-child(2) { width: 41%;}
.program2 ul li:nth-child(3) { width: 41%;}

.pgmTerm {
	background-color: #F5F3F2;
	text-align:center;
	justify-content: center;
	align-items: center;
}
.pgmDetail {
	padding: 2% 3%;
}

.pgmDetail > dl {
	display: flex;
	width: 100%;
}
.pgmDetail > dl > dt {
	display: block;
	width: 130px;
}
.pgmDetail > dl > dd {
	display: block;
	width: 100%;
	padding: 0;
}

.pgmDetail > dl > dd p {
	display: block;
	margin: 0;
}

.pgmPoint {
	border: 1px solid #C3B2A7;
	align-items: center;
	padding: 3%;
	position: relative;
}

.pgmPoint::before {
	content: "ポイント";
	display: block;
	position: absolute;
	left: -15px;
	top: -5px;
	background-color: #CFAFA1;
	color: #FFF;
	padding: 3px 25px;
	font-size: 1.4rem;
	font-weight: 500;
	rotate: -10deg;
}

.program2 ul:last-child > .pgmDetail {
	width: 82%;
} 


.pgmTime dl + dl {
	margin-top: 10px;
}

.pgmTime dl dt, .pgmTime dl dd {
	display: inline-block;
	vertical-align:top;
	font-weight: 500;
}

.pgmTime dl dt {
	width: 120px;
	font-weight: 400;
}

.pgmTime dl dd {
	width: 70%;
}
.pgmTime dt::before {
	font-family: "Font Awesome 6 Free";
	content:'\f017';
	color: #CAB0A3;
	margin-right: 25px;
}

.pgmTime dl dd span {
	display: block;
	font-weight: 500;
	font-size: 1.4rem;
	margin-left: 2rem;
	color: #777777;
}

.program3 ul, .program4 ul {
	align-items: stretch;
}

.program3 ul li:nth-child(1), .program4 ul li:nth-child(1) {
	width: 60%;
}
.program3 ul li:nth-child(2), .program4 ul li:nth-child(2) {
	width: 40%;
}

.program3 ul li:nth-child(2) {
	background: url(../img/programTime-1.jpg) center center / cover no-repeat;
}

.program4 ul li:nth-child(2) {
	background: url(../img/programTime-2.jpg) center center / cover no-repeat;
}




/*--------------------------------
interview
---------------------------------*/
.interview {
}

.interview section h2 {
	color: #444444;
}

.interview section h2::before {
	background-color: #A4AF90;
}

.interviewWrap {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px auto;
  }
  /*タブのスタイル*/
  .tab_interview {
	width: 32.3%;
	margin: 0 .5% 50px .5%;
	height: 55px;
	line-height: 1.3;
	font-size: 1.6rem;
	text-align: center;
	border: 1px solid #AAAAAA;
	color: #AAAAAA;
	display: table;
	vertical-align: middle;
	float: left;
	text-align: center;
	transition: all 0.2s ease;
  }

  .tab_interview p {
	display: table-cell;
	text-align: center;
  vertical-align: middle;
  }

  .tab_interview:hover {
	opacity: 0.75;
  }
  /*ラジオボタンを全て消す*/
  input[name="tab_menu"] {
	display: none;
  }
  /*タブ切り替えの中身のスタイル*/
  .tab_contents {
	display: none;
	padding: 0;
	margin: 6px;
	clear: both;
	overflow: hidden;
	transition: .5s opacity;
  }
  /*選択されているタブを表示*/
  #interview01:checked ~ #interview01,
  #interview02:checked ~ #interview02,
  #interview03:checked ~ #interview03 {
	display: block;
  }
  /*選択されているタブのスタイル*/
  .interviewWrap input:checked + .tab_interview {
	border: 1px solid #A4AF90;
	background-color: #A4AF90;
	color: #FFF;
	position: relative;
  }

  .interviewWrap input:checked + .tab_interview::after {
	content: "";
	display: block;
	position: absolute;
	bottom:-40px;
	left: 50%;
	transform: translate(-50%,0);
	margin: auto;
	font-family: "Font Awesome 6 Free";
	content:'\f078';
	font-weight: 900;
	padding-right: 3px;
	color: #A4AF90;
	font-size: 200%;
  }


  .readMsg {
	width: 100%;
	height: 330px;
	margin-bottom: 20px;
}

  .contents01 .readMsg {
	background: url(../img/interviewpic-1.jpg) right center / cover no-repeat;
	background-size: 520px;
	animation-name: interviewIMGfadein;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode:forwards;
}

  .contents02 .readMsg {
	background: url(../img/interviewpic-3.jpg) right center / cover no-repeat;
	background-size: 520px;
	animation-name: interviewIMGfadein;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode:forwards;
  }
  .contents03 .readMsg {
	background: url(../img/interviewpic-5.jpg) right center / cover no-repeat;
	background-size: 520px;
	animation-name: interviewIMGfadein;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode:forwards;
  }

@keyframes interviewIMGfadein {
	0% {
	   opacity: 0;
	   transform: translateY(40px);
	}
	100% {
	   opacity: 1;
	   transform: translateY(0);
	}
}	

  .readMsg h3 {
	padding: 4% 0;
	box-sizing: border-box;
	font-size: 3.0rem;
	letter-spacing: .2rem;
	font-weight: 700;
  }

  .interviewTxt {
	padding: 0 5%;
  }

  .interviewTxt img {
	width: 400px;
	margin: 0 0 30px 40px;
	float: right;
  }
  .interviewTxt h4 {
	font-weight: 700;
	color: #6A2D07;
	font-size: 1.6rem;
  }

  .interviewTxt p {
	margin: 10px 0 30px 0;
  }

  .interview2 {
	height: auto;
	padding-top: 50.3333%;
	background: url(../img/allstaff.jpg) center center / cover no-repeat;
	margin-bottom: 50px;
  }

  .interview3 .surveyWrap {
	position: relative;
	padding: 7% 3% 3% 3%;
	width: 90%;
	margin: 0 auto;
	border: 1px solid #f5d5da;
	border-radius: 15px;
  }

  .interview3 .surveyWrap h3 {
	width: 70%;
	margin: 0 auto;
	font-weight: 500;
	font-size: 2.0rem;
	height: 70px;
	line-height: 70px;
	text-align: center;
	position: absolute;
	top: -35px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 99;
  }

  .interview3 .surveyWrap h3::before{
	background-color: rgba(255,255,255,0.5);  /* 文字部分背景色・透過度 */
	border-radius: 5px;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 5px;
	z-index: -1;
	}

	.interview3 .surveyWrap h3::after{
		background: repeating-linear-gradient(-45deg, #f5d5da, #f5d5da 5px, #fcf0f1 0, #fcf0f1 10px); /* ストライプの色 */
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: -2;
	}

  .interview3 .surveyWrap ul {
	flex-wrap: wrap;
	align-items: stretch;
  }

  .interview3 .surveyWrap ul li {
	width: 32%;
	margin-bottom: 3.5%;
  }
  .interview3 .surveyWrap .QA {

  }

  .interview3 .surveyWrap .QA h4 {
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 30px;
	padding: 3% 0;
	background-color: #A4AF90;
	color: #FFF;
	border-radius: 10px;
	position: relative;
  }

  .interview3 .surveyWrap .QA h4::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 10px solid #A4AF90;
  }

  .interview3 .surveyWrap .QA p {
	margin: 0 5%; 
	line-height: 1.5;
	margin-bottom: 10px;
  }

  .interview3 .spot {
	margin-top: 20px;
  }

  .interview3 .spot h5 {
	text-align: center;
	color: #CAB0A3;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dotted #CAB0A3;
  }
  .interview3 .spot h5 i {
	font-size: 200%;
  }
  .interview3 .spot ul.spotlist {
	justify-content: space-between;
	justify-content: center;
	flex-wrap: wrap;
  }
  .interview3 .spot .spotlist li {
	width: 180px;
	margin: 2%;
	font-size: 1.3rem;
	text-align: center;
	position: relative;
  }
  .interview3 .spot .spotlist li img {
	width: 100%;
	border-radius: 50%;
  }
  .interview3 .spot .spotlist li .spotTag1 { background-color: #B8C9A5; }
  .interview3 .spot .spotlist li .spotTag2 { background-color: #F2CB60; }
  .interview3 .spot .spotlist li .spotTag3 { background-color: #A3CDD5; }
  .interview3 .spot .spotlist li .spotTag4 { background-color: #E3A9B9; }

  .interview3 .spot .spotlist li span {
	position: absolute;
	left: -10px;
	top: 10px;
	rotate: -15deg;
	padding: 3px 12px;
	color: #FFF;
  }
  .interview3 .spot .spotlist li p {
	display: block;
	width: 180px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	background-color: #FFF;
	border: 1px solid #AAA;
  }


/*--------------------------------
application
---------------------------------*/

.application {
}

.application .pageTitle {
	margin-top: -40px;
	margin-bottom: 0px;
}

.application .pageTitle h1 {
	display: block;
	width: 100%;
	margin: 0 auto;
	background: none;
	color: #444;
	padding-bottom: 25px;
	font-size: 2.8rem;
}
.application .pageTitle h1::after {
	content: "";
	display: block;
	width: 100px;
	margin: 30px auto 0 auto;
	height: 7px;
	background-color: #6A2D07;
	position: static;
}



.application .PageWrap {
	width: 100%;
	padding: 0;
	margin: 40px auto 50px auto;
}

.application1 p {
	width: 80%;
	margin: 0 auto 40px auto;
}

.appWrap {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px auto;
  }
  /*タブのスタイル*/
  .tab_app {
	width: 24%;
	margin: 0 .5% 70px .5%;
	height: 70px;
	line-height: 70px;
	text-align: center;
	display: block;
	float: left;
	color: #444;
	text-align: center;
	transition: all 0.2s ease;
  }

  .tab_app01 { border: 1px solid #A4AF90; }
  .tab_app02 { border: 1px solid #74A0BC; }
  .tab_app03 { border: 1px solid #F8C2D2; }
  .tab_app04 { border: 1px solid #DDDDDD; }

  .tab_app:hover {
	opacity: 0.75;
  }
  /*ラジオボタンを全て消す*/
  input[name="tab_menu"] {
	display: none;
  }
  /*タブ切り替えの中身のスタイル*/
  .tab_contents {
	display: none;
	padding: 0;
	margin: 6px;
	clear: both;
	overflow: hidden;
	transition: .5s opacity;
  }
  /*選択されているタブを表示*/
  #app01:checked ~ #app01,
  #app02:checked ~ #app02,
  #app03:checked ~ #app03,
  #app04:checked ~ #app04 {
	display: block;
	animation-name: tabContentsfadein;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode:forwards;
  }

@keyframes tabContentsfadein {
	0% {
	   opacity: 0;
	   transform: translateY(-40px);
	}
	100% {
	   opacity: 1;
	   transform: translateY(0);
	}
}	



  /*選択されているタブのスタイル*/
  .appWrap input:checked + .tab_app {
	color: #FFF;
	position: relative;
  }
  .appWrap input:checked + .tab_app01 {
	border: 1px solid #A4AF90;
	background-color: #A4AF90;
  }
  .appWrap input:checked + .tab_app02 {
	border: 1px solid #74A0BC;
	background-color: #74A0BC;
  }
  .appWrap input:checked + .tab_app03 {
	border: 1px solid #F8C2D2;
	background-color: #F8C2D2;
  }
  .appWrap input:checked + .tab_app04 {
	border: 1px solid #888888;
	background-color: #888888;
  }

  .appWrap input:checked + .tab_app::after {
	content: "";
	display: block;
	position: absolute;
	bottom:-50px;
	left: 50%;
	transform: translate(-50%,0);
	margin: auto;
	font-family: "Font Awesome 6 Free";
	content:'\f078';
	font-weight: 900;
	padding-right: 3px;
	font-size: 200%;
  }

  .appWrap input:checked + .tab_app01::after { color: #A4AF90; }
  .appWrap input:checked + .tab_app02::after { color: #74A0BC; }
  .appWrap input:checked + .tab_app03::after { color: #F8C2D2; }
  .appWrap input:checked + .tab_app04::after { color: #888888; }

  .application h3 {
	font-weight: 500;
	font-size: 3.0rem;
	line-height: 2;
	border-bottom: 1px solid #CCC;
  }

  .application .contents01 h3 {
	color: #A4AF90;
	border-bottom: 1px solid #A4AF90;
  }
  .application .contents02 h3 {
	color: #74A0BC;
	border-bottom: 1px solid #74A0BC;
  }
  .application .contents03 h3 {
	color: #F8C2D2;
	border-bottom: 1px solid #F8C2D2;
  }
  .application .contents04 h3 {
	color: #888888;
	border-bottom: 1px solid #888888;
  }

  .appDetail {
	width: 90%;
	margin: 30px auto auto;
  }

  .appDetailBox {
	margin-bottom: 30px;
  }

  .appDetail .appDetailBox h4 {
	font-size: 2.0rem;
	font-weight: 500;
	margin-bottom: 10px;
  }

  .appDetail .appDetailBox ul li {
	width: 48%;
  }

  .appDetail .appDetailBox ul li p {
	padding: 0;
	margin: 0 0 0 50px;
  }

  .contents01 .appDetailBox ul li { color: #A4AF90;}
  .contents02 .appDetailBox ul li { color: #74A0BC;}
  .contents03 .appDetailBox ul li { color: #F8C2D2;}
  .contents04 .appDetailBox ul li { color: #888888;}

  .appDetail ul.jobDetailWrap {
	border: 1px solid #CCC;
  }

  .appDetail ul.jobDetailWrap li:nth-child(1) {
	width: 20%;
	color: #FFF;
	position: relative;
	text-align: center;
  }
  .appDetail ul.jobDetailWrap li:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #A1B08D;
}

.contents01 .appDetail ul.jobDetailWrap li:nth-child(1) { background-color: #A1B08D;}
.contents02 .appDetail ul.jobDetailWrap li:nth-child(1) { background-color: #74A0BC;}
.contents03 .appDetail ul.jobDetailWrap li:nth-child(1) { background-color: #F8C2D2;}
.contents04 .appDetail ul.jobDetailWrap li:nth-child(1) { background-color: #888888;}

.contents01 .appDetail ul.jobDetailWrap li:nth-child(1)::before  { border-left: 15px solid #A1B08D;}
.contents02 .appDetail ul.jobDetailWrap li:nth-child(1)::before  { border-left: 15px solid #74A0BC;}
.contents03 .appDetail ul.jobDetailWrap li:nth-child(1)::before  { border-left: 15px solid #F8C2D2;}
.contents04 .appDetail ul.jobDetailWrap li:nth-child(1)::before  { border-left: 15px solid #888888;}


  .appDetail ul.jobDetailWrap li:nth-child(1) h5 {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:100%;
  }

  .appDetail ul.jobDetailWrap li:nth-child(2) {
	width: 80%;
	align-items: center;
	padding: 4% 4% 4% 10%;
  }
  .contents01 .appDetail ul.jobDetailWrap li:nth-child(2) {color: #A1B08D;}
  .contents02 .appDetail ul.jobDetailWrap li:nth-child(2) {color: #74A0BC;}
  .contents03 .appDetail ul.jobDetailWrap li:nth-child(2) {color: #F8C2D2;}
  .contents04 .appDetail ul.jobDetailWrap li:nth-child(2) {color: #888888;}

  .appDetail ul.jobDetailWrap li:nth-child(2) dl + dl {
	margin-top: 15px;
  }
  .appDetail ul.jobDetailWrap li:nth-child(2) dt,
  .appDetail ul.jobDetailWrap li:nth-child(2) dd {
	display: inline-block;
	vertical-align: top;
  }

  .appDetail ul.jobDetailWrap li:nth-child(2) dt {
	width: 200px;
	font-weight: 500;
  }

  .appDetail p.jobDetailTxt {
	width: 100%;
	font-size: 1.4rem;
	margin-top: 5px;
	text-align: center;
  }
  .contents01 .appDetail p.jobDetailTxt {color: #A1B08D;}
  .contents02 .appDetail p.jobDetailTxt {color: #74A0BC;}
  .contents03 .appDetail p.jobDetailTxt {color: #F8C2D2;}
  .contents04 .appDetail p.jobDetailTxt {color: #888888;}


.requirement dl {
	margin-top: 20px;
	display: flex;
}

.requirement dl + dl {
	margin-top: 10px;
}

.requirement dt, .requirement dd{
	display: flex;
	align-items: center;

}

.requirement dt {
	background-color: #F4F4F4;
	padding: 25px;
	text-align: center;
	font-weight: 500;
	width: 30%;
	justify-content: center;
  }
  
.requirement dd {
	width: calc(100% - 30%);
	padding: 10px 0 10px 50px;
 }

.application2 {
	width: 600px;
	margin: 0 auto;
	text-align: center;

} 

.application2 a {
	display: block;
	width: 100%;
	padding: 20px;
	background-color: #f6ab00;
	color: #FFF;
	font-size: 2.0rem;
	font-weight: 700;
	border-radius: 10px;
}
.application2 a:hover {
	background-color: #888;
}
.application2 a i {
	padding-left: 10px;
	transition: .3s all;
}

.application2 a:hover i {
	padding-left: 20px;
	transition: .3s all;
}



@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {

	.PageWrap {
		margin: 50px 0;
	}
	
	.pageTitle {
		padding-top: 85px;
		height: 150px;
	}

	.pageTitle h1 {
		font-size: 2.4rem;
	}

	.pageTitle h1::after {
		height: 50px;
		bottom: -65px;
	}

	.about1 {
		background: url(../img/aboutMessage_bg.jpg) right 50px / cover no-repeat;
		background-size: 35%;
	}

	.about1 ul li:first-child {
		width: 60%;
	}

	.about1 ul li:last-child {
		display: none;
	}

	.about1 h2 {
		font-size: 2.0rem;
	}

	.about1 h2::after {
		margin: 15px 0 15px auto;
	}

	.about1 p br {
		display: none;
	}
	
	.about2 ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.about2 ul::after {
		content: "";
		display: none;
	}
	
	.about2 ul li {
		width: 48%;
		margin-bottom: 3%;
		font-size: 1.2rem;
	}

	.about3 ul li:first-child {
		width: 70%;
		margin: 0 auto 20px auto;
	}
	.about3 ul li:last-child {
		width: 100%;
	}
	.about4 h3 {
		width: 100%;
		margin-bottom: 4%;
	}
	.about4 ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		text-align: center;
	}
	
	.about4 ul li {
		width: 48%;
		padding-top: 33.333%;
		margin-bottom: 4%;
		text-align: center;
	}

	.program1 .job4 {
		width: 100%;
		padding: 2% 1%;
	}
	.program1 .job4 ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		align-items: stretch;
	}
	.program1 .job4 ul li {
		width:49%;
		margin-bottom: 3%;
	}
	
	.program1 .job4 ul li span {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 100%;
		height: 70px;
		vertical-align: middle;
		border-radius: 10px;
		padding: 20px 5px;
		margin: 10px 0;
		color: #FFF;
	}
	.program2 ul li:nth-child(1) { width: 100%;}
	.program2 ul li:nth-child(2) { width: 100%;}
	.program2 ul li:nth-child(3) { width: 90%;}
	
	.program2 ul li:nth-child(1) { 
		padding: 20px;
	}

	.pgmDetail {
		padding: 4% 3%;
	}
	.pgmDetail > dl > dd p {
		display: inline;
		padding-right: 15px;
	}

	.pgmPoint {
		padding: 9% 5% 5% 5%;
		text-align: justify;
		margin: 0 auto;
		background-color: #CAB0A3;
		color: #FFF;
		border-radius: 10px;
	}

	.pgmPoint::before {
		border: 1px solid #CAB0A3;
		background-color: #FFF;
		color: #CAB0A3;
		box-shadow: 2px 5px 5px rgba(0, 0, 0, .1);
	}

	.program2 ul:last-child > .pgmDetail {
		width: 100%;
	} 

	.program3 ul li:nth-child(1), .program4 ul li:nth-child(1) {
		width: 100%;
	}
	.program3 ul li:nth-child(2), .program4 ul li:nth-child(2) {
		width: 100%;
		height: 300px;
		margin-top: 30px;
		border-radius: 10px;
	}
	
	.program3 ul li:nth-child(2) {
		background: url(../img/programTime-1.jpg) center center / cover no-repeat;
	}
	
	.program4 ul li:nth-child(2) {
		background: url(../img/programTime-2.jpg) center center / cover no-repeat;
	}
	.pgmTime dl dt, .pgmTime dl dd {
		display: inline-block;
		vertical-align:top;
		font-weight: 500;
	}
	
	.pgmTime dl dt {
		width: 100px;
	}
	
	.pgmTime dl dd {
		display: inline;
	}

	.pgmTime dl dd span {
		display: block;
		margin-left: 110px;
	}
	.pgmTime dt::before {
		margin-right: 10px;
	}


	.readMsg {
		width: 100%;
		height: 380px;
	}
	
	  .contents01 .readMsg {
		background: url(../img/interviewpic-1.jpg) bottom right / cover no-repeat;
		background-size: 450px;
	}
	.contents02 .readMsg {
		background: url(../img/interviewpic-3.jpg) bottom right / cover no-repeat;
		background-size: 450px;
	}
	.contents03 .readMsg {
		background: url(../img/interviewpic-5.jpg) bottom right / cover no-repeat;
		background-size: 450px;
	}

	.readMsg h3 {
		padding: 0 0;
		box-sizing: border-box;
		font-size: 4.0333vw;
		letter-spacing: .2rem;
		font-weight: 700;
		margin-bottom: 20px;
	  }


	.interview2 {
		height: auto;
		padding-top: 50.3333%;
		background: url(../img/allstaff.jpg) center center / cover no-repeat;
		margin-bottom: 10%;
	  }

	.interview3 .surveyWrap {
		width: 100%;
	}

	.interview3 .surveyWrap h3 {
		width: 90%;
		height: 50px;
		line-height: 50px;
		font-size: 1.6rem;
		top: -25px;
	}

	.interview3 .surveyWrap ul {
		display: flex;
	}
	.interview3 .surveyWrap ul li {
		width: 48%;
	}

	.interview3 .spot ul.spotlist {
		display: flex;
		justify-content: space-between;
		justify-content: center;
		flex-wrap: wrap;
	  }
	  .interview3 .spot .spotlist li {
		width: 45%;
		margin: 2%;
		font-size: 1.0rem;
		text-align: center;
		position: relative;
	  }
	.interview3 .spot .spotlist li p {
		width: 100%;
		font-size: 1.3rem;
	  }
	
  .application .pageTitle h1 {
		width: 120px;
		padding-bottom: 3%;
		font-size: 2.2rem;
	}
	
	.application1 p {
		width: 80%;
		margin: 0 auto 5% auto;
	}
	.appWrap {
		width: 100%;
		padding: 0;
		margin: 0 auto 50px auto;
	  }
	  /*タブのスタイル*/
	  .tab_app {
		width: 48%;
		margin: 0 1% 20px 1%;
		height: 50px;
		line-height: 50px;
	  }

	  /*タブ切り替えの中身のスタイル*/
	  .tab_contents {
		padding-top: 20px;
	  }
	
	  .appWrap input:checked + .tab_app::after {
		content: "";
		display: none;
	  }

	  .application h3 {
		font-size: 2.0rem;
	  }
	
	  .appDetail {
		width: 95%;
		margin: 30px auto auto;
	  }

	  .appDetail .appDetailBox h4 {
		font-size: 1.6rem;
	  }
	
	  .appDetail .appDetailBox ul li {
		width: 100%;
	  }
	
	  .appDetail .appDetailBox ul li p {
		width: 100%;
		margin: 0 0 5px 0;
	  }
	  .appDetail .appDetailBox ul li p:before {
		content: "・";
	  }

	  .appDetail ul.jobDetailWrap li:nth-child(1) {
		width: 100%;
		height: 50px;
		color: #FFF;
		position: relative;
		text-align: center;
	  }
	  .appDetail ul.jobDetailWrap li:nth-child(1)::before {
	  content: "";
	  display: none;
	}
	
	.appDetail ul.jobDetailWrap li:nth-child(2) {
		width: 100%;
		padding: 4% 4% 4% 10%;
	  }

	  .appDetail ul.jobDetailWrap li:nth-child(2) dt {
		width: 190px;
	  }
	  .appDetail ul.jobDetailWrap li:nth-child(2) dt::before {
		content: "";
		font-family: "Font Awesome 6 Free";
  content:'\f303';
  font-weight: 700;
  padding-right: 5px;
	  }

	  .appDetail ul.jobDetailWrap li:nth-child(2) dd {
		width: 50%;
	  }
	
	  .appDetail p.jobDetailTxt {
		width: 90%;
		margin: 5px auto 40px auto;
		font-size: 1.2rem;
		text-align: left;
	  }
	
	
	.requirement dl + dl {
		margin-top: 10px;
	}
	
	.requirement dt {
		padding: 10px;
		font-weight: 500;
		width: 140px;
	  }
	  
	.requirement dd {
		width: calc(100% - 140px);
		padding: 10px 0 10px 5%;
	 }
	
	.application2 {
		width: 90%;
	} 

}

@media screen and (max-width: 540px) {
	.pageTitle {
		padding-top: 90px;
		height: 150px;
	}
	
	.pageTitle h1 {
		font-size: 2.0rem;
	}

	.pageTitle h1::after {
		height: 40px;
		bottom: -55px;
	}

	.about1 {
		background: none;
	}

	.about1 h2::after {
		width: 70%;
	}
	.about1 ul li:first-child {
		width: 100%;
	}
	.about1 ul li:last-child {
		display: block;
		width: 100%;
	}

	.about1 ul li:last-child img {
		width: 100%;
		height: 160px;
		object-fit: cover;
	}
	.about4 ul li {
		margin-bottom: 6%;
	}
	.about4 ul li p {
		font-size: 2.33333vw;
	}
	
	.tab_interview {
		width: 33.3333333%;
		margin: 0 0 50px -1px;
		font-size: 1.4rem;
	  }


	.readMsg {
		width: 100%;
		height: 330px;
		margin-bottom: 0;
	}
	
	.contents01 .readMsg {
		background: url(../img/interviewpic-1.jpg) bottom right / cover no-repeat;
		background-size: 350px;
		background-position: 100px;
	}
	.contents02 .readMsg {
		background: url(../img/interviewpic-3.jpg) bottom right / cover no-repeat;
		background-size: 350px;
		background-position: 100px;
	}
	.contents03 .readMsg {
		background: url(../img/interviewpic-5.jpg) bottom right / cover no-repeat;
		background-size: 350px;
		background-position: 100px;
	}

	.readMsg h3 {
		padding: 0 0;
		box-sizing: border-box;
		font-size: 4.0333vw;
		letter-spacing: .2rem;
		font-weight: 700;
		margin-bottom: 20px;
	  }


	.interview3 .surveyWrap {
		padding-top: 50px;
	}
	.interview3 .surveyWrap ul li {
		width: 100%;
		margin-bottom: 3.5%;
	}

	.application1 p {
		width: 95%;
		margin: 0 auto 8% auto;
	}
	.appDetail ul.jobDetailWrap li:nth-child(2) {
		width: 100%;
	  }
	
	  .appDetail ul.jobDetailWrap li:nth-child(2) dt {
		width: 100%;
		font-weight: 700;
	  }

	  .appDetail ul.jobDetailWrap li:nth-child(2) dd {
		width: 100%;
		margin-left: 40px;

	  }
	
	  .requirement dt {
		padding: 10px 5px;
		width: 100px;
		font-size: 1.4rem;
	  }
	  
	.requirement dd {
		width: calc(100% - 100px);
		padding: 10px 0 10px 5%;
	 }
	
}