@charset "UTF-8";

html {
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
	scroll-padding-top: 70px;
 	scroll-behavior: smooth;
}

/* 初期状態（透明） */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

/* JavaScriptで.visibleクラスが追加されたら発火 */
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/*********************************

デバイス

**********************************/
@media screen and (max-width:768px) {
	.spnone {
		display: none !important;
	}
}

@media screen and (min-width:769px) {
	.pcnone {
		display: none !important;
	}
}

.center {
	text-align: center;
}

.mg-0auto {
	margin: 0 auto;
}

.relative {
	position: relative;
}

.img {
	width: 100%;
	object-fit: contain;
}

.is-container {
	width: clamp(320px, 83.3vw, 1320px);
	margin: 0 auto;
}


.content {
	width: clamp(320px, 83.3vw, 1200px);
	margin: 0 auto;
}

@media screen and (max-width:769px) {
	.sp-container{
		width: 92vw;
	}
}


@media screen and (max-width:1320px) {
	header .pc-header {
		display: none;
	}
}

@media screen and (min-width:1321px) {
	header .mobile-header {
		display: none;
	}

}

/* 共通の見出し */
/* h2 */
h2.h2-line {
	width: fit-content;
	background: transparent;
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: normal;
	font-size: 70px;
	line-height: 84px;
	text-align: center;
	color: #24303b;
	margin: 0 auto;
}
h2.h2-line.cl-fff{
	color: #fff;
}
h2.h2-line span {
	display: block;
	margin-top: -6.2px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	font-size: 24px;
	line-height: 48px;
	text-align: center;
	color: #24303b;

}
h2.h2-line span.cl-fff{
	color: #fff;
}

h2.h2-line::before {
	display: block;
	content: "";
	width: 14.61px;
	height: 77.31px;
	background-image: url(../image/diagonal-line.svg);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0 auto -20px;
}
/* lineがsideにあるh2 */
h2.h2-line.side{
	position: relative;
	margin: 0;
		padding-left: 31px;

}
h2.h2-line.side::before{
	position: absolute;
    top: 20px;
    left: 0px;
		display: block;
	content: "";
	width: 14.61px;
	height: 77.31px;
	background-image: url(../image/diagonal-line.svg);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0;
	padding: 10px;

}
h2.h2-line.side.interview-top163{
	margin-top: 163px;
}
@media screen and (max-width:768px) {
	h2.h2-line {
	font-size: 5rem;
	line-height: 18px;
}
h2.h2-line span {
	margin-top: 6px;
	font-size: 1.5rem;
	line-height: 1.3;
}

h2.h2-line::before {
	display: block;
	content: "";
width: 10.91px;
height: 57.73px;
	background-image: url(../image/sp--diagonal-line.svg);
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0 auto -3px;
	padding: 0 8px 0;
}
/* lineがsideにあるh2 */
h2.h2-line.side{
	position: relative;
	margin: 0;
		padding-left: 31px;

}
h2.h2-line.side::before{
	position: absolute;
    top: 20px;
    left: 0px;
		display: block;
	content: "";
	width: 14.61px;
	height: 77.31px;
	background-image: url(../image/diagonal-line.svg);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0;

}
h2.h2-line.side.interview-top163{
	margin-top: 163px;
}
}
/*モーダルウインドウ*/
/* モーダル全体のスタイル（初期状態は非表示） */
.modal-window {
    display: none; /* 初期状態では非表示 */
    position: fixed; 
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7); /* 背景を半透明の黒にする */
}

/* モーダルの中身（コンテンツ）のスタイル */
.modal-content {
	position: relative;
    background-color: #fefefe;
    margin: 70px auto;
    padding: 60px 64px 46px;
    border: 1px solid #18479c;
width: clamp(320px, 83vw, 910px);
}

/* 閉じるボタンのスタイル */
.close-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 41px;
height: 41px;
background: #24303b;
    color: #fff;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
	text-align: center;
}

.close-btn:hover,
.close-btn:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* JavaScriptで表示させる時に適用するクラス */
.is-active {
    display: block;
}
.modal-flex{
display: flex;
justify-content: space-between;
	align-items: flex-start;
}
.modal-flex img{
	width: 35%;
	object-fit: cover;
	position: sticky;
	top: 60px;
}
.modal-detail-box{
	width: 60%;
	overflow-y: auto;
}
.modal-title{
display: flex;
    justify-content: flex-start;
    align-items: center;
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 28px;
line-height: 40px;
text-align: left;
color: #19479c;
margin-bottom: 15px;
}
.modal-title::before{
	content: "";
	display: inline-block;
    width: 13px; 
    height: 40px;
	background-image: url("../image/diagonal-line.svg");
	background-repeat: no-repeat;
	background-size: cover;
    margin-right: 8px; 
}
.modal-division{
	font-family: "Noto Sans JP", sans-serif;
font-weight: normal;
font-size: 16px;
letter-spacing: 0.03em;
line-height: 28px;
text-align: left;
color: #231815;
	margin-bottom: 2px;
}
.modal-name{
	font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 20px;
letter-spacing: 0.03em;
line-height: 34px;
text-align: left;
color: #231815;
	margin-bottom: 18px;
}
.modal-flex-right{
	width: 100%;
	border-top: 1px solid #ccc;
	padding: 20px 0 23px;
}
.modal-detail-q{
	font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 24px;
line-height: 34px;
text-align: left;
color: #19479c;
	margin-bottom: 18px;
}
.modal-detail-q span{
	display: inline-block;
	width: 36px;
height: 36px;
background: #18479c;
	border-radius: 100vh;
	font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 24px;
line-height: 32px;
text-align: center;
color: #fff;
margin-right: 10px;
}
.modal-detail-a{
font-family: "Noto Sans JP", sans-serif;
font-weight: normal;
font-size: 18px;
line-height: 32px;
text-align: left;
color: #24303b;

}
@media screen and (max-width: 768px) {
.modal-window {
    display: none; /* 初期状態では非表示 */
    position: fixed; 
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7); /* 背景を半透明の黒にする */
}

/* モーダルの中身（コンテンツ）のスタイル */
.modal-content {
	position: relative;
    background-color: #fefefe;
    margin: 80px auto;
    padding: 61px 20px 30px;
width: 92%;
	}

/* 閉じるボタンのスタイル */
.close-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
height: 32px;
background: #24303b;
    color: #fff;
    float: right;
    font-size: 20px;
    font-weight: bold;
	line-height: 32px;
    cursor: pointer;
	text-align: center;
}

.close-btn:hover,
.close-btn:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* JavaScriptで表示させる時に適用するクラス */
.is-active {
    display: block;
}
.modal-flex{
	position: relative;
display: block;
}
.modal-flex img{
	position: absolute;
        top: -30px;
        right: 0;
        width: 48%;
        height: 245px;
        object-fit: cover;
        object-position: top;
}
.modal-detail-box{
	width: 100%;
}
.modal-title{
	width: 48%;
display: flex;
    justify-content: flex-start;
    align-items: flex-start;
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 18px;
line-height: 26px;
text-align: left;
color: #19479c;
margin-bottom: 30px;
}
.modal-title::before{
	content: "";
	display: inline-block;
width: 20px;
height: 50.19px;
	background-image: url("../image/diagonal-line.svg");
	background-repeat: no-repeat;
	background-size: contain;
    margin-right: 8px; 
}
.modal-division{
		width: 48%;
font-family: "Noto Sans JP", sans-serif;
font-weight: normal;
font-size: 14px;
letter-spacing: 0.03em;
line-height: 24px;
text-align: left;
color: #231815;
	margin-bottom: 2px;
}
.modal-name{
		width: 48%;
	font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 16px;
letter-spacing: 0.03em;
line-height: 28px;
text-align: left;
color: #231815;
	margin-bottom: 36px;
}
.modal-flex-right{
	width: 100%;
	border-top: 1px solid #ccc;
	padding: 14px 0 19px;
}
.modal-detail-q{
	display: flex;
	justify-content: flex-start;
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 16px;
line-height: 21px;
text-align: left;
color: #19479c;
	margin-bottom: 11px;
}
.modal-detail-q span{
display: flex;
        width: 25px;
        height: 25px;
        background: #18479c;
        border-radius: 100vh;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: bold;
        font-size: 14px;
        text-align: center;
        color: #fff;
        justify-content: center;
        align-items: center;
	padding: 12px;}
.modal-detail-a{
font-family: "Noto Sans JP", sans-serif;
font-weight: normal;
font-size: 16px;
line-height: 26px;
text-align: left;
color: #24303b;

}
}
/*sliderのカウント*/
.arrow-num-flex {
  width: 140px;
  height: 42px;
  display: flex;
  gap: 18px;
  align-items: center;
  position: absolute;
  top: -64px;
  right: 0;
}
.arrow-num-flex .arrow-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arrow-num-flex .prev-arrow,
.arrow-num-flex .next-arrow {
  display: block;
  width: 42px;
  height: 42px;
  background: transparent;
  background: coral;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.arrow-num-flex .prev-arrow {
  transform: rotate(180deg);
  margin-right: 10px;
}
.arrow-num-flex .prev-arrow::before,
.arrow-num-flex .next-arrow::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.arrow-num-flex .slick-num {
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21.6px;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 768px) {
	.arrow-num-flex {
  width: 140px;
  height: 42px;
  display: flex;
  gap: 18px;
  align-items: center;
  position: absolute;
top: auto;
        right: 35%;
        bottom: -60px;}
.arrow-num-flex .arrow-box,
.interview-arrow-num-flex .interview-arrow-box,
.ul--another-arrow-num-flex .ul--anotherarrow-box,
	.ul-h3-arrow-num-flex.pcnone .ul-h3arrow-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arrow-num-flex .prev-arrow,
.arrow-num-flex .next-arrow {
  display: block;
  width: 42px;
  height: 42px;
  background: transparent;
  background: coral;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.arrow-num-flex .prev-arrow {
  transform: rotate(180deg);
  margin-right: 10px;
}
.arrow-num-flex .prev-arrow::before,
.arrow-num-flex .next-arrow::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.arrow-num-flex .slick-num {
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21.6px;
  text-align: left;
  color: #fff;
}

}
@media screen and (max-width: 768px) {
  /* 共通：次・戻るボタンの外枠 */
  .ul-h3-arrow-num-flex
	{
    width: 109px;
    height: 33px;
    display: flex;
    gap: 18px;
    align-items: center;
    position: absolute;
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
	z-index: 1;
  }
.ul--another-arrow-num-flex{
    width: 109px;
    height: 33px;
    display: flex;
    gap: 18px;
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

	.interview-arrow-num-flex{
		width: 109px;
    height: 33px;
    display: flex;
    gap: 18px;
    align-items: center;
    position: absolute;
    bottom: -53px;
    left: 50%;
    transform: translateX(-50%);

	}
  /* 矢印ボタン */

  .ul-h3arrow-box .next-arrow,
  .ul--anotherarrow-box .next-arrow,
  .interview-arrow-box .next-arrow,
	  .ul-h3arrow-box .prev-arrow,
 .ul--anotherarrow-box .prev-arrow,
	.interview-arrow-box .prev-arrow{
    display: block;
    width: 32px;
    height: 32px;
    background: #f15a24;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  	}
	
  /* 左矢印の回転とマージン */
  .ul-h3-arrow-num-flex .prev-arrow,
  .ul--another-arrow-num-flex .prev-arrow,
	  .interview-arrow-num-flex .prev-arrow {
    transform: rotate(180deg);
    margin-right: 10px;
  }

  /* 矢印の中身（白い線） */
  .ul-h3arrow-box .prev-arrow::before,
  .ul-h3arrow-box .next-arrow::before,
  .ul--anotherarrow-box .prev-arrow::before,
  .ul--anotherarrow-box .next-arrow::before,
	 .interview-arrow-box .prev-arrow::before,
  .interview-arrow-box .next-arrow::before {

    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
  }

  /* ページ番号表示 */
  .ul-h3-arrow-num-flex .slick-num,
  .ul--another-arrow-num-flex .slick-num,
	.interview-arrow-num-flex .slick-num {
    display: flex;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 17px;
    text-align: left;
    color: #24303b;
  }
}
/*wp内のCSS*/
span.underline-text {
    text-decoration: underline; 
    border-bottom: 2px solid #000;
}
/*hover*/
header .pc-header nav .menu li a:hover,
header .pc-header nav ul li.menu-tel a:hover{
	opacity: 0.6;
}
header .pc-header nav li.menu-entry a:hover {
    background: #fff;
    color: #f15924;
}