/* 採用応募ボタンsolid021 */
.button_solid021 a {
  background: #F7AD2E;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 0px 3px 0px ;
  max-width: 100%;
  padding: 10px 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  border-radius: 50px;
  border-bottom: 4px solid #EF810F;
  overflow: hidden;
}
.button_solid021 a:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.button_solid021 a:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.button_solid021 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-48%);
  position: absolute;
  top: 48%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}	

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}


/*タイムライン*/
.timeline-001__section {
  position: relative;
  padding: 0 1.5em 1.5em 2em;
}
.timeline-001__section:not(:last-child)::before, .timeline-001__section::after {
  position: absolute;
  content: '';
}
.timeline-001__section:not(:last-child)::before {
  bottom: 0;
  left: 7px;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: #d6dde3;
}
.timeline-001__section::after {
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #2589d0;
}
.timeline-001__content {
  border-bottom: dashed 1px #c6cdd3;
  padding-bottom: 1.5em;
}
.timeline-001__label {
  margin-bottom: .1em;
  color: #bcbfc7;
  font-size: .85em;
}
.timeline-001__title {
  color: #333333;
  font-size: 1.05em;
  font-weight: 600;
  margin: 0 auto .5em;
}


.contents_main {
  margin: 94px 70px 100px;
}
@media screen and (max-width: 520px) {
  .contents_main {
    margin: 70px 30px;
  }
}
.main_title {
  position: relative;
  height: 20vh;
}
@media screen and (max-width: 520px) {
.main_title {
    margin-bottom: 50px;
}
}
.main_title > h2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(1.3rem, 4vw, 2.3rem);
}
.main_contents_title {
  position: relative;
  height: 1vh;
  display: grid;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  color: #ffffff;
  background-color: #5f7ea4;
}

.main_contents_title.--top{
  background-color: inherit;
}
.main_contents_title > h3 {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
}
.main_contents_title > h3 > span {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  display: flex;
  justify-content: center;
}
.main_contents_title ul.main_contents_navi {
  position: absolute;
  right: 3%;
  /* top: 18vh; */
  /* bottom: 17vh; */
}
.main_contents_title ul.main_contents_navi.--top {
  top: 18vh;
}
.main_contents_title ul.main_contents_navi li {
  text-align: end;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: #fff 0px 0 2px, #fff 0px 0 2px;
  line-height: 3.5rem;
  position: relative;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
.main_contents_title ul.main_contents_navi li > a {
  transition-duration: 0.5s;
  display: block;
}
.main_contents_title ul.main_contents_navi li > a:hover {
  opacity: 0.7;
  transform: scale(0.9);
  right: auto;
}
.main_contents_title ul.main_contents_navi li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 15px;
  width: 15px;
  height: 15px;
  right: -40%;
  border: 3px solid #000;
  background-color: #ffffff;
}
.main_contents_title ul.main_contents_navi li:not(:last-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -40%;
  transform: translateX(-50%);
  height: 100%;
  border-right: 3px solid #000;
  width: 12px;
}
@media screen and (max-height: 700px) {
  .main_contents_title ul.main_contents_navi li {
    line-height: 3.5rem;
  }
}
@media screen and (max-height: 390px) {
  .main_title, .main_contents_title {
    height: 150px;
  }
  .main_contents_title ul.main_contents_navi li {
    line-height: 3rem;
  }
}
@media screen and (max-width: 520px) {
  .main_contents_title {
    position: initial;
  }

  
  .main_contents_title ul.main_contents_navi {
    position: absolute;
    display: flex;
    /* top: 0vh; */
    /* top: calc(70px + 26vh); */
    right: initial;
    padding: 10px 0 10px 30px;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    z-index: 2;
    gap: 20px;
    background-color: #fff;
  }

  .main_contents_title ul.main_contents_navi.--top{
    top:auto;
  }
  .main_contents_title ul.main_contents_navi li {
    /* min-width: 120px; */
    line-height: initial;
    display: flex;
    align-items: center;
    text-shadow: none;
  }
  .main_contents_title ul.main_contents_navi li::after {
    display: none;
  }
  .main_contents_title ul.main_contents_navi li:not(:last-of-type)::before {
    display: none;
  }
  .main_contents_title ul.main_contents_navi li > a {
    padding: 6px 15px;
    border-radius: 25px;
    color: #fff;
    background-color: #676767;
  }
}
.main_contents_column {
  margin-top: 60px;
  display: grid;
}
.main_contents_column1 {
  box-shadow: 0px 0px;
  justify-items: center;
  background-color: #fbfbfb;
  -webkit-box-shadow: 0px 0px;
}
.column1_wrap {
  width: 90%;
}

@media screen and (max-width:480px) {
 
	/*　この位置に記述する　 スマホ時に幅広く　*/
	.column1_wrap {
		width: 110%;   
		
	}
  .main_contents_column {
    justify-content: center;
}
}


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

.kaisha_column.main_contents_column1 {
    justify-items: initial;
}
.main_contents_title ul.main_contents_navi {
    padding: 10px;
    gap: 10px;
  }
}




.main_contents_column2 {
  width: 100%;
  gap: 2%;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.main_contents_column2 > img {
  width: 100%;
  height: 300px;
}
.main_contents_column3 {
  width: 100%;
  gap: 2%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.main_contents_column3 > img {
  width: 100%;
  height: 300px;
}
.main_contents_column4 {
  width: 100%;
  gap: 2%;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.main_contents_column4 > img {
  width: 100%;
  height: 160px;
}
.main_contents_info {
  margin-top: 50px;
  display: flex;
}
.main_contents_info dt {
  width: 20%;
  max-width: 350px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
}
.main_contents_info dt>span{
  position: relative;
  display: inline-block;
}
.main_contents_info dt>span:after {
  position: absolute;
  content: "";
  width: 100%;
  background-color: #000;
  height: 3px;
  /* top: 5rem; */
  bottom: -22%;
  left: 50%;
  transform: translateX(-50%);
}
.main_contents_info dd {
  /* padding: 0 0 0 50px; */
  width: 70%;
  margin-top: 50px;
}
.link_wrapper {
  margin-top: -150px;
  padding-top: 94px;
}
@media screen and (max-height: 820px) {
.main_contents_info dt {
  width: 20%;
}
.main_contents_info dd {
  width: 100%;
}
}
@media screen and (max-width: 520px) {
  .main_contents_info {
    flex-direction: column;
  }
  .main_contents_info dd {
    padding: 50px 0 0;
    width: 100%;
  }
  .main_contents_info dt {
    font-size: 1.8rem;
    width: 50%;
    max-width: 230px;
  }
  .main_contents_info dt::after {
    top: 4rem;
  }
}
/*# 会社概要テーブル */
.kara {
  height: 50px;
}
.kara2 {
  height: 10px;
}
.kaisha {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.kaisha th, .kaisha td {
  border: 1px solid #ccc;
  padding: 20px;
}
.kaisha th {
  font-weight: bold;
  background-color: #dedede;
}
@media screen and (max-width: 767px) {
  .kaisha, .kaisha tr, .kaisha td, .kaisha th {
    display: block;
  }
  .kaisha th {
    width: auto;
  }
}
/*画面横断ライン*/
#body-inside {
  overflow-x: hidden;
}
.orverwidth {
  height: 1vh;
  display: grid;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  color: #ffffff;
  background-color: #5f7ea4;
}
.orverwidth {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
}
/*空けるスペース*/
.waku {
  padding: 20px;
  margin-bottom: 10px;
  border: 0px solid #333333;
  background: #fff8dc
}
.waku2 {
  padding: 10px;
  margin-bottom: 0px;
}
.midashi {
  padding: 0.25em 0.5em; /*上下 左右の余白*/
  color: #494949; /*文字色*/
  background: transparent; /*背景透明に*/
  border-left: solid 5px #5f7ea4; /*左線*/
  font-size: 1.5em;
	margin :  0px 0px 25px 0px;  ;
}
.tsumeru {
 
	margin : 0px 0px -30px 0px;  ;
}
.tsumeru2 {
 
	margin : 0px 0px -40px 0px;  ;
}


	
.btn-gradient-radius {
  display: inline-block;
  padding: 15px 20px;
  margin: 0 0 10px 0px;
  border-radius: 30px;
  text-decoration: none;
  color: #FFF;
  background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
  transition: .4s;
  width: 100%;
  text-align: center;
}
.btn-gradient-radius:hover {
  background-image: linear-gradient(45deg, #FFC107 0%, #f76a35 100%);
}

/* 詳細はこちらボタン */
.button001 a {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button001 a:hover {
  background: #313131;
  color: #FFF;
}
.button001 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #313131;
  border-right: 3px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
  border-color: #FFF;
}
/* 画像hover effect */
.img_wrap {
  margin: 0 auto;
  overflow: hidden;
}
.img_wrap img {
  width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.img_wrap:hover img {
  opacity: 0.6;
  transition-duration: 0.3s;
}
/* 吹き出し */
/* 全体 */
.sb-box {
    position: relative;
    overflow: hidden;
}
/* アイコン画像 */
.icon-img {
    position: absolute;
    overflow: hidden;
    top: 0; /* 画像の位置を上から0に */
    width: 80px; /* 画像の幅 */
    height: 80px; /* 画像の高さ */
}
/* アイコン画像（左） */
.icon-img-left {
    left: 0; /* 画像の位置を左から0に */
}
/* アイコン画像（右） */
.icon-img-right {
    right: 0; /* 画像の位置を右から0に */
}
/* アイコン画像 */
.icon-img img {
    border-radius: 50%; /* 画像を丸く表示する */
    border: 2px solid #eee; /* 画像の縁取りの太さとカラー */
}
/* アイコンネーム */
.icon-name {
    position: absolute;
    width: 80px; /* ネームの最大幅を画像と同じに */
    text-align: center; /* ネームの位置をセンターに */
    top: 83px; /* ネームの位置を上から83に */
    color: #777; /* ネームのカラー */
    font-size: 10px; /* ネームのフォントサイズ */
}
/* アイコンネーム（左） */
.icon-name-left {
    left: 0; /* ネームの位置を左から0に */
}
/* アイコンネーム（右） */
.icon-name-right {
    right: 0; /* ネームの位置を右から0に */
}
/* 吹き出し */
.sb-side {
    position: relative;
    float: left;
    margin: 0 105px 40px 105px; /* 吹き出しの上下左右の余白 */
}
.sb-side-right {
    float: right;
}
/* 吹き出し内のテキスト */
.sb-txt {
    position: relative;
    border: 2px solid #eee; /* 吹き出しの縁取りの太さとカラー */
    border-radius: 6px; /* 吹き出しを角丸に */
    background: #fff; /* 吹き出しの背景色 */
    color: #333; /* 吹き出し内のテキストのカラー */
    font-size: 15px; /* 吹き出し内のフォントサイズ */
    line-height: 1.7; /* 吹き出し内のテキストが2行以上になった時の行間 */
    padding: 18px; /* 吹き出し内の上下左右の余白 */
}
.sb-txt > p:last-of-type {
    padding-bottom: 0; /* 吹き出し内のテキストを改行した場合、最後のpタグにpadding-bottomをつけない */
    margin-bottom: 0; /* 吹き出し内のテキストを改行した場合、最後のpタグにmargin-bottomをつけない */
}
/* 吹き出しの三角 */
.sb-txt:before {
    content: "";
    position: absolute;
    border-style: solid;
    top: 16px; /* 吹き出し内の三角の位置 */
    z-index: 1;
}
.sb-txt:after {
    content: "";
    position: absolute;
    border-style: solid;
    top: 15px; /* beforeより-1px */
    z-index: 0; /* beforeより-1 */
}
/* 吹き出しの三角（左） */
.sb-txt-left:before {
    left: -7px;
    border-width: 7px 10px 7px 0;
    border-color: transparent #fff transparent transparent; /* 背景色と同じカラーに */
}
.sb-txt-left:after {
    left: -10px; /* beforeより-3px */
    border-width: 8px 10px 8px 0; /* beforeより上下+1px */
    border-color: transparent #eee transparent transparent; /* 縁取りと同じカラーに */
}
/* 吹き出しの三角（右） */
.sb-txt-right:before {
    right: -7px;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #fff; /* 背景色と同じカラーに */
}
.sb-txt-right:after {
    right: -10px; /* beforeより-3px */
    border-width: 8px 0 8px 10px; /* beforeより上下+1px */
    border-color: transparent transparent transparent #eee; /* 縁取りと同じカラーに */
}

/* 767px（iPad）以下 */

@media (max-width: 800px) {
/* アイコン画像 */
.icon-img {
    width: 60px; /* 画像の幅を-20px */
    height: 60px; /* 画像の高さを-20px */
}
/* アイコンネーム */
.icon-name {
    width: 60px; /* 画像の幅に合わせて-20px */
    top: 62px; /* ネームの位置を上から62に */
    font-size: 9px; /* ネームのフォントサイズを-1px */
}
/* 吹き出し（左） */
.sb-side-left {
    margin: 0 0 30px 78px; /* 吹き出し（左）の上下左右の余白を狭く */
}
/* 吹き出し（右） */
.sb-side-right {
    margin: 0 78px 30px 0; /* 吹き出し（右）の上下左右の余白を狭く */
}
/* 吹き出し内のテキスト */
.sb-txt {
    padding: 12px; /* 吹き出し内の上下左右の余白を-6px */
}
}
.title {
    font-family: 'Rampart One', cursive;
    color: blue;
    font-size: 2em;
}
/* 吹き出しEND */

/* スマホ時の改行 */
.br-sp {
  display: none;
}

@media (max-width: 600px) {
  .br-sp {
    display: block;
  }
	
	/* ストライプBOX */
	.box21 {
margin: 2em auto;
padding:2em;/*内側余白*/
background-image: repeating-linear-gradient(-45deg,#f2f3f7 0, #f2f3f7 3px,transparent 3px,transparent 6px);/*ストライプ*/
}