@charset "utf-8";
/*
Theme Name: GeneratePress
Description: サイト全体のカスタムCSS
Version: 1.0
*/
body,h1,h2,h3,h4,h5,p,li,dd,dt,td,th,a{
	font-family:"Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
	font-weight: <weight>;
  font-style: normal;
	color:#222222;
	margin:0;
}
body:not(.home) .entry-content h1,body:not(.home) .entry-content h2,body:not(.home) .entry-content h3,body:not(.home) .entry-content h4,body:not(.home) .entry-content p{
    margin: 1em 0 1em;
} 
h4 {
    font-weight:500;
    font-size: 1.3em;
	line-height:1.8;
}
h1,h2,h3{
	font-weight: 500;
	line-height:1.8;
}
h1{
	font-size:25px;
}
h2{
	font-size:25px;
}
h3{
	font-size: 18px;
}
h4{
	font-size: 16px;
}
ul{
	margin:0;
	list-style: none;
}
p,li,dd,dt,td,th{
	font-size: 15px;
	line-height:1.8;
}
p{
	line-height: 1.8;
}
a{
	line-height: 1.8;
	font-size: 15px;
	transition:opacity 0.4s ease;
}
a:hover{
	opacity: 0.7;
}
.generate-back-to-top__show{
	border: 1px solid #fff;
}
.page .entry-header{
	background:url(/wp/wp-content/uploads/2025/06/title-bg2.jpg)no-repeat;
	background-position: bottom center;
	background-size: cover;
	padding:20px 0 40px 0;
	margin-bottom:100px;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
}
.page .entry-title{
	position: relative;
  display: block;
	text-align: center;
  /*margin-bottom: 100px;*/
	margin-bottom:0;
	color:#fff;
}
.page .entry-title:before{
	content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #6dafd6;
  border-radius: 2px;
}
.content-title-h3{
	padding:1em 10px 1em 1em;
	position: relative;
	overflow: hidden;
	color:#3e7fa5;
	line-height: 1.5;
background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(253,255,255,0.97) 4%,rgba(62,127,165,0.2) 100%);
}
.content-title-h3:before{
	content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-width: 18px 18px 0 0;
  border-style: solid;
  border-color: #83bfe2 #fff #83bfe2;
}
#menu-menu-footer1 > li{
	border-bottom:1px dotted rgba(255,255,255,0.5);
	padding: 7px 0;
	margin-bottom:0;
}
#menu-menu-footer1 .sub-menu li a{
	color:#ccc;
}
@media only screen and (min-width: 768px) {
	h1{
	font-size:30px;
}
	h2{
		font-size:30px;
	}
	h3{
		font-size:23px;
	}
	h4{
		font-size: 18px;
	}
	.content-title-h3:before{
  border-width: 20px 20px 0 0;
}
}
@media only screen and (min-width: 1024px) {
	h1{
	font-size:40px;
}
	h2{
		font-size:40px;
	}
	h3{
		font-size:28px;
	}
	h4{
		font-size: 20px;
	}
	.entry-title{
  margin-bottom: 10%;
}
	#menu-menu-footer1 > li > a{
	font-size:17px;
	display: block;
}
#menu-menu-footer1 .sub-menu{
	display: flex;
	flex-wrap: wrap;
	gap:15px;
}
#menu-menu-footer1 .sub-menu li a{
	font-size:14px;
}
}
.smp,.smp768,.smp1024{
	display: block !important;
}
.pc,.pc768,.pc1024{
	display: none !important;
}
.event{
	pointer-events: auto;
}
.tablepress td ul {
    margin-left: 1.5em;
    list-style: disc;
}
.tablepress td ul li {
    list-style-type: disc;
}
/**ハンバーガーメニュー**/
body.no-scroll{
		overflow:hidden;
	padding-right: var(--scrollbar-width);
	}
.hamburger-btn{
			position: fixed;
			top:0;
			right:0;
			width:60px;
			height:60px;
			background-color:#83bfe2;
			z-index: 1000;
	cursor: pointer;
		}
		.hamburger-btn i{
			position: absolute;
			top:20px;
	        left:10px;
			width:40px;
			height: 2px;
			background:#fff;
			transition: .5s;
		}
		.hamburger-btn i:nth-of-type(1){
			top:20px;
		}
		.hamburger-btn i:nth-of-type(2){
			top:30px;
		}
		.hamburger-btn i:nth-of-type(3){
			top:40px;
		}
		.hamburger-btn.active i:nth-of-type(1){
			transform:translateY(10px) rotate(45deg);
		}
		.hamburger-btn.active i:nth-of-type(2){
			opacity: 0;
		}
		.hamburger-btn.active i:nth-of-type(3){
			transform:translateY(-10px) rotate(-45deg);
		}
.hamburger-btn span{
	color:#fff;
	font-size: 11px;
	display: none;
}
		.menu-container{
			/*position: fixed;
			top:0;
			right:0;
			left:0;
			bottom:0;
			background:#eee;
			color:#333;
			z-index: 9;
			opacity: 0;
			pointer-events: none;
			transition: .5s;*/
			
			position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 100%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
max-height: 100vh;
		}
		.menu-container.active{
			/*opacity: 1;
			pointer-events: auto;*/
			right: 0;
		}
		.item{
			width:92%;
			max-width:100%;
			margin:120px 3% 30px 5%;
		}
.menu-container .hamburger > li{
	position: relative;
	padding-left:1.7em;
	border-bottom: dotted 1px #666;
}
.menu-container .hamburger > li:before{
	content:'■';
	width:1em;
	font-size: 1.2em;
	color:#83bfe2;
	position: absolute;
    left: 0;
    top: 8px;
}
.menu-container .hamburger > li > a{
	line-height:2.3;
	font-size: 20px;
	display: block;
	text-decoration: none;
}
.menu-container .hamburger .sub-menu{
	margin-left:10px;
}
.menu-container .hamburger .sub-menu a{
	line-height:2.3;
	font-size: 18px;
}
#site-navigation.main-navigation{
	display: none;
}
@media only screen and (min-width: 1025px) {
	.header-wrap{
		display:none;
	}
	.menu-container{
		display:none;
	}
	#site-navigation.main-navigation{
	display: block;
}
}
/**ハンバーガーメニュー//**/
/* TOPページスライダー全体 */
   .main-slider.swiper {
      width: 100%;
      max-width: 100%;
      height:100vh;
      overflow: hidden;
      margin: auto;
    }
.main-slider.swiper .swiper-wrapper{
	margin:0;
}
   /* 各スライド */
    .main-slider .swiper-slide {
      position: relative;
    }
    /* 画像スタイルとズームアニメーション */
    .main-slider .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      transition: transform 7s ease;
    }

    /* ズーム拡大用クラス */
    .swiper-slide-visible img.zoomed {
      transform: scale(1.1);
    }

    /* テキストキャプション */
    .slide-caption {
      position: absolute;
      top:35%;
      left: 8%;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0,0,0,0.6);
      /*opacity: 0;*/
      transform: translateY(20px);
      transition: all 1s ease;
      z-index: 2;
    }

    .slide-caption h2 {
      font-size:28px;
      margin: 0 0 1rem;
		color:#fff;
		line-height: 1.7;
    }

    .slide-caption .btn {
      display: inline-block;
      padding: 10px 24px;
      background: #fff;
      color: #000;
      text-decoration: none;
      font-weight: bold;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .slide-caption .btn:hover {
      background: #f0f0f0;
    }

    /* 表示中のスライドでキャプションを表示 */
    .swiper-slide-active .slide-caption {
      opacity: 1;
      transform: translateY(0);
    }
@media (min-width: 768px) {
	.slide-caption h2 {
		font-size:38px;
	}
}
@media (min-width: 1024px) {
	.slide-caption h2 {
		font-size:50px;
	}
}
@media (min-width: 1200px) {
	.slide-caption {
		left:18%;
	}
}
/**TOPページスライダー全体//おわり**/
/**ヘッダー**/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
	 margin: auto;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}
.site-header.scrolled {
  background-color:rgba(255,255,255,0.7);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	height: 60px;
}
.inside-header {
  max-width: 100%;
  margin: 0 auto;
  padding:10px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo{
	/*width:320px;*/
	max-width:65%;
	position: relative;
	z-index: 300;
}
.site-header .header-image{
		max-height: 40px;
  object-fit: cover;
  width: auto;
  max-width: none;
	}
.main-navigation.sub-menu-right ul {
  display: flex;
  gap: 5px;
  list-style: none;
}
.home .main-navigation .main-nav ul li a{
	color:#fff;
}
.home .main-navigation .main-nav ul.sub-menu li a{
	color:#000;
}
.scrolled .main-navigation .main-nav ul li a,body:not(.home) .main-navigation .main-nav ul li a{
	color:#222;
}
.main-navigation .main-nav ul ul li a{
	padding:15px 10px;
}
.scrolled .main-navigation .main-nav ul ul li a{
	background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.scrolled .main-navigation .main-nav ul li[class*="current-menu-"] > a{
	color:#3e7fa5;
}
.main-navigation.sub-menu-right ul .sub-menu{
	display: block;
	background: rgba(255,255,255,0.8);
}
@media (min-width: 1024px) {
	.site-header.scrolled{
		height:auto;
	}
	.site-logo{
	background:rgba(255,255,255,0.8);
		padding: 5px 10px;
		width: 344px;
        max-width: 25%;
}
.scrolled .site-logo{
	background:none;
}
	.site-header .header-image{
		max-height:none;
		max-width:100%;
	}
	.main-navigation .main-nav ul li.info a{
		background:#3e7fa5;
		color:#fff !important;
		border-radius: 50px;
	}
}
/**ヘッダー//おわり**/
/**全体とTOPページ**/
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.denwa-icon{
	position: relative;
	z-index: 300;
}
.denwa-icon img{
	width: 35px;
    position: fixed;
    top: 10px;
    right: 75px;
}
.home.separate-containers .inside-article{
	padding:0 40px;
}
.site-content{
	padding-top:70px !important;
}
.page-id-21 .site-content{
	display: block;
}
.home .entry-header{
	display: none;
}
.page .entry-content{
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
}
.home .entry-content{
	margin-top:0;
}
.inside-footer-widgets h2{
	text-decoration: underline;
  text-decoration-color: #83bfe2;
  text-underline-offset: 5px;
	margin-bottom:20px;
}
.sekai1{
	width:100%;
	max-width:100%;
}
.sekai2{
	width:100%;
	max-width:100%;
	padding:0 10px;
	box-sizing: border-box;
}
.sekai1 h2{
	font-size: 25px;
	display: flex;
	flex-direction: column;
	color: #253b4c;
	margin-bottom:80px;
	padding:0 10px;
	box-sizing: border-box;
}
.sekai1 h2 span{
	font-size:0.6em;
	color:#dfe9f1;
}
.sekai-img{
	border-radius: 15px 0 0 15px;
	aspect-ratio: 16 / 9;
        object-fit: cover;
	width:645px;
	max-width:90%;
	margin:0 0 50px auto;
	display: block;
}
.sekai2 h3{
		font-size:18px;
	margin-bottom:30px;
	}
.sekai2 p{
	line-height: 3.5;
}
.top-topics h2{
	/*color:#19367a;*/
	color:#83bfe2;
}
.top-topics .midashi-news h2{
	color:#222;
}
.top-topics h2 > span{
	font-size:0.3em;
	margin:0 15px;
	color:#a0c5dc;
}
.top-topics h2 > span > span{
	font-size:0.6em;
	color:#dfe9f1;
	margin-left:5px;
}
.top-news-wrap{
	padding:0 20px;
	width: 1000px;
	box-sizing: border-box;
        max-width: 100%;
	margin:0 auto;
	padding: 15px 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}
.allcat-post{
	border-bottom:2px solid #a0c5dc;
        padding: 7px;
        margin-bottom: 20px;
}
.allcat-post a h3{
		line-height:1.6;
		font-weight: normal;
	font-size: 14px;
	display: flex;
		justify-content: space-between;
}
.allcat-post a h3 span{
	margin-left:15px;
	font-weight: bold;
	color:#3558aa;
}
.card_time{
		color:#666;
		font-size: 13px;
	margin-bottom:10px;
	}
.card_time2{
	font-size:13px;
}
.toptitle-flex{
	margin:0 auto;
	width: 1240px;
	max-width:100%;
	padding:70px 20px 20px;
	box-sizing: border-box;
}
.to-ichiran{
	background:rgba(233,233,241,0.5);
	border-radius: 100px;
	border:1px solid #dfe9f1;
	text-align: center;
	width:120px;
	display: flex;
    justify-content: center;
	align-items: center;
	margin-bottom:20px;
	margin-left:auto;
	font-size:12px;
}
.to-ichiran span{
	margin-left:20px;
	font-size: 1.5em;
}
.top-products-wrap.swiper{
	width: 100%;
}
.top-products-wrap.swiper > .swiper-wrapper{
	display: flex;
	width: auto;
}
.products-post.swiper-slide{
	flex-shrink: 0;
}
.products-post.swiper-slide img{
	width: 100%;
  transition: transform 0.3s ease;
}
.products-post.swiper-slide:hover img{
	transform: scale(1.05);
}
.top-products{
	padding:20px;
	max-width:100%;
	box-sizing: border-box;
	margin-bottom:100px;
}
.post-thumbnail{
	max-width: 600px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
	width: 100%;
}
.post-thumbnail img{
	width: 100%;
  height: 100%;
  object-fit: cover;
}
.time-name2 h3{
	font-size:14px;
	font-weight: normal;
	line-height:1.6;
}
.swiper-yajirushi{
	position: absolute;
    width: 350px;
    max-width: 90%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -40px;
}
.top-products .swiper-button-prev,
.top-products .swiper-button-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  /*background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;*/
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.top-products .swiper-button-prev {
  left: 10px;
}
.top-products .swiper-button-next {
  right: 10px;
}
/* 矢印アイコンを白く（Swiper v9以降で必要な場合） */
.top-products .swiper-button-prev::after,
.top-products .swiper-button-next::after {
  color: #3e7fa5;
  font-size: 30px;
}
.toptitle-block{
	margin-bottom:20px;
	padding: 10px 0 10px 0;
        box-sizing: border-box;
}
.toptitle-block h3{
	font-size: 15px;
	margin-bottom:10px;
}
.top-products-cat{
	max-width:100%;
}
.top-products-cat li a{
	position: relative;
	color:#fff;
	display: block;
	background: #3e7fa5;
    padding: 3px 7px;
    border-radius: 7px;
	line-height:1.8;
}
.top-products-cat li a:before{
	content:'●';
width:1.2em;
	margin-right:10px;
	font-size: 0.9em;
}
.top-products-cat li a:after{
	content:'\21C0';
	width:1.2em;
	position: absolute;
	right:7px;
}
.top-products-cat .products-subcat{
	margin-left: 5px;
}
.top-products-cat .products-subcat li a{
	background:#83bfe2;
}
.top-products-cat .products-subcat li a:before{
	font-size:0.8em;
}
.post-cat-link{
	font-size:13px;
	background:#dfe9f1;
	padding: 1px 5px;
    border-radius: 5px;
    color: #3e7fa5 !important;
	border: 1px solid #eee;
}
.contact-bottom{
	background: #3e7fa5;
	padding-bottom: 50px;
	border-top: 5px solid #f5f5f5;
}
.contact-flex{
	width:1160px;
	max-width:95%;
	box-sizing: border-box;
	background:#6dafd6;
	margin:0 auto;
}
.contact-wrap1{
		border-bottom:1px solid rgba(233,233,241,0.3);
	}
.contact-flex > div{
	width:100%;
	padding:20px 20px;
}
.contact-flex h2,.contact-flex h3,.contact-flex h4,.contact-flex p,.contact-flex a{
	color:#fff;
}
.contact-wrap1 h3,.contact-wrap2 h3{
	font-size:18px;
}
.contact-wrap1 h4,.contact-wrap2 h4{
	font-size:15px;
	font-weight: normal;
}
.form-kochira{
	font-size:16px;
	line-height: 2.5;
	border:1px solid #f5f5f5;
	display: block;
    width: max-content;
    max-width: 100%;
    padding: 5px 20px;
    margin-bottom: 15px;
}
.form-kochira span{
	margin-left:15px;
}
.tel-kochira{
	font-size:28px;
}
.tel-kochira span{
	margin-right:10px;
	font-size:0.7em;
}
.toppara-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 100px 0;
    /*background: #A0C5DC;*/
  }

  .toppara-container {
    display: flex;
	  align-items: center;
	  flex-wrap: nowrap;
    gap: 20px;
    /*width: max-content;*/
    will-change: transform;
    transition: transform 0.1s ease-out;
	  animation: scroll 30s linear infinite;
	   min-width: 200%;
  }
.toppara-box {
  position: relative;
  width: 230px !important;
  height: auto;
  overflow: hidden;
	flex: 0 0 auto;
  padding: 0;
  white-space: nowrap;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* 同じ内容を2回並べているから半分動かす */
}
.toppara-box.toppara-small{
	width:150px;
}
  .toppara-img {
    width: 100%;
    height: auto;
	  aspect-ratio: 1 / 1;
	  display: block;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
.toppara-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  pointer-events: none;
}
.text-container-wrap h2{
	margin-bottom:20px;
	font-family: "Hina Mincho", serif;
	font-weight: 500;
}
.text-container {
	font-size: 1.3rem;
	font-family: "Hina Mincho", serif;
	font-weight: 500;
    }
    .char {
      /*opacity: 0;
      display: inline-block;
		transition: opacity 0.3s ease;
     animation: fadeIn 0.05s forwards;*/
		/*transform: translateY(20px);
  display: inline-block;
  animation: fadeInUp 0.5s forwards;*/
    }
.start-animation .char {
  /*opacity: 1;
  transform: translateY(0);*/
}




/*#animatedText:not(.start-animation) .char {
  opacity: 0;
  transform: translateY(20px);
}*/

/* 表示されたらアニメーション */
/*#animatedText.start-animation .char {
  animation: fadeInUp 0.5s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}*/




/* 各文字の初期状態 */
.char {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  animation: fadeInUp 0.5s ease forwards;
}

/* アニメーション定義 */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .start-animationが付いたときだけアニメーション実行 */
#animatedText:not(.start-animation) .char {
  animation: none !important; /* アニメーションを一旦無効化 */
}

.top-specialists h3{
	font-size:14px;
	font-weight: normal;
}
.top-compete .compete-text{
	padding:0 10px;
}
.top-compete .compete-text p {
	font-weight: normal;
	line-height:3.5;
	font-size:15px;
}
.top-compete img{
	border-radius:0 15px 15px 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 645px;
    max-width: 90%;
    margin: 0 auto 50px 0;
    display: block;
}
.home .site-content{
	padding-bottom:0;
	padding-top:0 !important;
}
.home #contact-bottom-wrap{
	background: #A0C5DC;
	background:url(/wp/wp-content/uploads/2025/05/ao-bg.jpg)no-repeat;
	padding-top:100px;
}
body:not(.home) #contact-bottom-wrap{
	margin-top:100px;
}
.csr-flex,.bcp-flex{
	margin-bottom:100px;
}
.csr-flex dt h2,.bcp-flex dt h2{
	font-size:30px;
	font-weight: 500;
	line-height: 1;
	color:#83bfe2;
	margin-bottom: 30px;
}
.csr-flex dd p,.bcp-flex dd p{
	line-height:3;
}
.top-csr img,.top-bcp img{
	display: block;
	margin:100px auto 0;
	border-radius: 15px;
	width: 600px;
    max-width: 80%;
}
.address-f p{
	color:#f5f5f5;
}
@media (min-width: 370px) {
	.sekai1 h2{
		font-size:28px;
	}
}
@media (min-width: 480px) {
	.smp{
		display: none !important;
	}
	.pc{
		display: block !important;
	}
}
@media (min-width: 768px) {
	.smp768{
	display:none !important;
}
.pc768{
	display: block !important;
}
	.event{
	pointer-events: none;
}
	.post-thumbnail{
		overflow: hidden;
  display: inline-block;
	}
	.post-thumbnail img{
		transition: transform 0.3s ease;
  display: block; /* インライン要素の余白対策 */
  width: 100%;
	}
	.post-thumbnail img:hover{
		transform: scale(1.1);
	}
	.sekai1 h2{
		font-size:33px;
	}
	.sekai2 h3{
		font-size:20px;
	}
	.toppara-container{
		gap: 50px;
	}
	.text-container{
		font-size: 2rem;
	}
	.top-specialists h3{
	font-size:16px;
}
.csr-flex dt h2,.bcp-flex dt h2{
	font-size:40px;
}
}
@media (min-width: 1024px) {
.smp1024{
	display:none !important;
}
.pc1024{
	display:block !important;
}
	.site-content{
	padding-top:120px !important;
}
	.top-sekaie{
	display: flex;
	flex-direction:row-reverse;
	justify-content:space-between;
}
	.sekai1{
	width:50%;
}
	.sekai1 h2{
		margin-bottom:100px;
		font-size: 36px;
	}
	.sekai-img{
		position: absolute;
  top: 40%;
  right: 0;
  width: 47vw;
		max-width:auto;
		aspect-ratio: 13 / 9;
	}
.sekai2{
	width:50%;
	padding-right:5%;
	box-sizing: border-box;
}
	.sekai2 h3{
		font-size:26px;
	}
	.sekai2 p{
		font-size: 18px;
		margin-top:100px;
	}
	.top-topics h2{
	margin-bottom:0;
		letter-spacing: 5px;
}
	.top-news-wrap{
		margin:0 auto;
	}
	.allcat-post{
		margin-bottom:30px;
	}
	.allcat-post a{
		display: flex;
	}
	.allcat-post a h3{
		font-size:15px;
		width:88%;
	}
	.card_time{
		margin-right: 30px;
		margin-bottom:0;
	}
	.toptitle-flex{
		display: flex;
		align-items: center;
		justify-content: center;
		padding:100px 40px 40px;
	}
	.top-topics .toptitle-flex{
		flex-wrap:wrap;
	}
	.to-ichiran{
		margin-left:30px;
		margin-bottom:0;
		width:150px;
		font-size:14px;
	}
	.top-products{
		padding:0 40px 40px 40px;
		display: flex;
		align-items: flex-start;
		overflow: hidden;
	}
	.top-products-cat{
	width:230px;
}
	.top-products-cat li a{
		padding:10px 7px;
	}
	.time-name2 h3{
		font-size:16px;
	}
	.toptitle-block{
		width:230px;
	margin-right:30px;
		margin-bottom:0;
		position: relative;
	}
	.swiper-yajirushi{
    width: 170px;
		max-width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -60px;
	}
	.top-products .swiper-button-prev,
.top-products .swiper-button-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
	background:none;
  /*background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;*/
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.top-products .swiper-button-prev {
  left: 10px;
}
.top-products .swiper-button-next {
  right: 10px;
}
/* 矢印アイコンを白く（Swiper v9以降で必要な場合） */
.top-products .swiper-button-prev::after,
.top-products .swiper-button-next::after {
  font-size: 40px;
}
	.top-products-wrap.swiper{
		flex: 1;
		width:110%;
		overflow: hidden;
        overflow: clip;
	}
	.toptitle-block h3{
	font-size: 17px;
}
	.contact-flex{
	display:flex;
}
	.contact-flex > div{
	width:50%;
	padding:40px 40px;
}
.contact-wrap2 > div:first-of-type{
	border-right:1px solid rgba(233,233,241,0.3);
}
	.contact-wrap1 h3,.contact-wrap2 h3{
	font-size:20px;
}
.contact-wrap1 h4,.contact-wrap2 h4{
	font-size:16px;
}
.form-kochira{
	font-size:20px;
}
.tel-kochira{
	font-size:35px;
}
	.toppara-wrapper{
		padding:200px 0;
	}
	.toppara-container{
		gap: 80px;
	}
	.toppara-box {
  width: 350px !important;
}
.toppara-box.toppara-small{
	width:230px;
}
	.text-container-wrap h2{
		text-align: center;
		font-size: clamp(1.2rem, 5vw, 3.2rem);
	}
.text-container {
      font-size: clamp(1.2rem, 5vw, 3.2rem);
	text-align: center;
	 white-space: nowrap;
    }
	.top-specialists h3{
	text-align: center;
}
	.top-compete{
		display: flex;
		align-items: center;
	}
	.top-compete img{
    width: 47vw;
    max-width:none;
		aspect-ratio: 13 / 9;
		margin-bottom:0;
}
	.top-compete .compete-text{
		flex: 1;
		margin-left:50px;
		padding:0;
	}
	.home #contact-bottom-wrap{
		padding-top:200px;
	}
	.csr-flex,.bcp-flex{
	margin-bottom:10%;
		display: flex;
}
	.bcp-flex{
		flex-direction:row-reverse;
	}
	.csr-flex dt,.bcp-flex dt{
		width:40%;
		padding-right:40px;
		box-sizing: border-box;
	}
.csr-flex dt h2,.bcp-flex dt h2{
	font-size:80px;
	letter-spacing: 10px;
}
	.bcp-flex dt h2{
		text-align: right;
	}
	.csr-flex dd,.bcp-flex dd{
		flex: 1;
	}
	.top-csr img,.top-bcp img{
		width:1000px;
	}
	.top-compete .compete-text p {
		font-size:18px;
	}
	}
@media (min-width: 1160px) {
	.contact-flex{
		max-width:100%;
}
}
@media (min-width: 1200px) {
	.sekai1 h2{
		font-size:45px;
	}
	.top-topics h2{
	font-size: 50px;
}
	.top-specialists h3{
	font-size:20px;
}
	.csr-flex dt h2,.bcp-flex dt h2{
	font-size:100px;
}
	.csr-flex dd p,.bcp-flex dd p{
		line-height:3.5;
		font-size: 16px;
	}
}
/**全体とTOPページ//おわり**/
/**カテゴリーページ**/
.category .site-content h1{
	margin:30px 0 100px;
	font-size: 40px;
	color:#3e7fa5;
	display: inline-block;
	background: linear-gradient(90deg, #3e7fa5 0%, #6dafd6 40%, #90c8e3 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}
.category .site-content{
	display: block;
	padding:70px 10px 10px !important;
	box-sizing: border-box;
}
.category main{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.category main article{
	width: calc(50% - 5px);
  box-sizing: border-box;
	padding:10px;
	background:rgba(109,175,214,0.2);
	position: relative;
}
.category-title{
	position: absolute;
	background:#3e7fa5;
	top:5px;
	right:5px;
	border-radius: 50px;
	font-size: 13px;
	padding:2px 7px;
	color:#f5f5f5;
}
.cate-thumb{
	width:100%;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-repeat:no-repeat;
	background-position:center center;
}
.category main article .meta li{
	font-size: 13px;
	text-align: right;
	color:#666;
}
.category main article .article-title a{
	line-height:1.5;
	display: block;
	padding-top:10px;
}
.pagenation{
	margin:100px 0;
}
.pagenation .page-numbers{
	display: flex;
	justify-content: center;
	gap: 10px;
}
@media (min-width: 768px) {
	.category .site-content{
	padding:70px 30px !important;
}
	.category main article{
		padding:50px 20px;
	}
	.pagenation{
	margin:150px 0;
}
}
@media (min-width: 1024px) {
	.category main article{
		padding:10% 7%;
	}
	.category .site-content h1{
		font-size: 60px;
		margin: 50px 0 100px;
		letter-spacing: 5px;
		padding-left:15px;
	}
	.category-title{
	top:20px;
	right:20px;
	font-size: 15px;
		padding: 3px 10px;
}
	.pagenation .page-numbers{
	gap: 20px;
}
}
@media (min-width: 1200px) {
	.category .site-content{
	padding:100px 40px !important;
}
	.category .site-content h1{
		font-size: 80px;
	}
	.pagenation .page-numbers{
	gap: 30px;
}
}
/**カテゴリーページ//おわり**/
/**記事投稿ページ**/
.single .featured-image,.single .byline,.single .entry-meta,.comments-area{
	display: none;
}
.single .entry-title:first-letter{
	color:#6dafd6;
}
.single.one-container .site-content{
	display: block;
}
.single .container .site-content .content-area{
	width:100%;
}
.single.one-container.right-sidebar .site-main{
	margin-right:0;
}
#right-sidebar.is-right-sidebar{
	width:auto;
}
#right-sidebar.is-right-sidebar .post-category-title{
	font-size:15px;
	padding-left:20px;
	border-left:5px solid #3e7fa5;
	margin-bottom:30px;
	line-height:2;
}
.single .entry-content h3{
	text-decoration: underline;
  text-decoration-color: #3e7fa5;
  text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}
.single .entry-content h2{
	color:#3e7fa5;
}
.single .grid-container{
	max-width:100%;
}
.single .footer-widgets-container.grid-container{
	max-width:1580px;
}
.single .site-content{
	max-width:1500px;
	margin:0 auto;
}
.category-post-list1 li{
	background: rgba(109, 175, 214, 0.1);
	padding: 7px;
	border-bottom:1px solid #3e7fa5;
	border-left: 1px solid #3e7fa5;
}
.category-post-list1 li img{
	width:80px;
	height:80px;
}
.category-post-list1 li a{
	flex: 1;
	line-height:1.6;
}
.category-post-list1 li a span{
	display: inline-block;
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
}
.category-post-list2 li{
	background:rgba(109,175,214,0.2);
	margin-bottom:5px;
	border-radius: 5px;
/*border: 1px solid #3e7fa5;*/
}
.category-post-list2 li.parent-cat{
	/*background: linear-gradient(135deg,  rgba(62,127,165,0.6) 0%,rgba(45,194,239,0.6) 53%,rgba(79,132,163,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	background:#3e7fa5;
}
.category-post-list2 li.child-cat{
	width:97%;
	margin-left:auto;
	/*background: linear-gradient(135deg,  rgba(62,127,165,0.3) 0%,rgba(45,194,239,0.3) 53%,rgba(79,132,163,0.5) 100%);*/
	background:#83bfe2;
}
.category-post-list2 li a{
	line-height:1.6;
    box-sizing: border-box;
    display: block;
    color: #fff;
	position: relative;
	font-weight: 500;
	position: relative;
}
.category-post-list2 li.parent-cat a{
	padding: 25px 40px 25px 20px;
	color:#fff;
}
.category-post-list2 li.child-cat a{
	padding: 15px 40px 15px 20px;
}
.category-post-list2 li a span{
	position: absolute;
	right:15px;
}
.category-post-list2 li a:before{
	content: '●';
    width: 1.2em;
    margin-right: 10px;
    font-size: 0.8em;
    display: inline-block;
}
.alsus-side,.recruitment-img{
	display: block;
	text-align: center;
}
.single .site-main .banner-single{
	display: flex;
	align-items: center;
	flex-direction: column;
	gap:15px;
	max-width:100%;
	margin:100px 0;
}
.single .site-main .banner-single a{
	display: block;
	max-width:100%;
	width:400px;
}
.tags-wrap{
	margin-top:30px;
}
.tags-wrap .tag-item{
	border:1px solid #ccc;
	border-radius: 5px;
	padding: 5px;
	margin:0 5px 5px 0;
	color:#6dafd6;
	font-size: 14px;
	display: inline-block;
}
@media (min-width: 1024px) {
	.single.one-container .site-content{
	display: flex;
}
	.single .container .site-content .content-area{
	width:70%;
}
.single.one-container.right-sidebar .site-main{
	margin-right:40px;
}
	#right-sidebar.is-right-sidebar{
	width:30%;
		position: relative;
		overflow: visible;
}
	#right-sidebar.is-right-sidebar .post-category-title{
		font-size:22px;
	}
	.category-post-list2 li a{
		font-size: 18px;
	}
	#media_image-3,#media_image-6{
		padding:0;
	}
	.single .site-main .banner-single{
	flex-direction:row;
	justify-content: center;
}
.single .site-main .banner-single a{
	max-width:48%;
}
}
@media (min-width: 1200px) {
	.category-post-list2 li a{
		font-size: 20px;
	}
}
/**記事投稿ページ//おわり**/
/**タグ一覧ページ**/
.tag-archive .archive-title{
	font-size:40px;
	margin: 50px 0 50px;
}
.tag .tag-archive{
	max-width:100%;
}
.archive-post-list{
	display: flex;
	flex-wrap: wrap;
	gap:4%;
	max-width:100%;
}
.archive-post-list .archive-post-item{
	width:48%;
	margin-bottom:4%;
}
.archive-post-list .archive-post-item .post-title{
	font-size:15px;
}
.tag-archive .archive-post-item .post-thumbnail img{
	aspect-ratio: 300 / 225;
}
.archive-post-item .post-tags .post-tag{
	border:1px solid #ccc;
	border-radius: 5px;
	padding:0 2px;
	margin:0 2px 2px 0;
	display: inline-block;
	color:#6dafd6;
	font-size:12px;
}
@media (min-width: 1024px) {
.tag-archive .archive-title{
	padding-left: 15px;
}
.archive-post-list{
	gap:3%;
	}
.archive-post-list .archive-post-item{
	width:31.3%;
	margin-bottom:3%;
}
}
/**タグ一覧ページ//おわり**/
/**お取引までの流れ**/
.flow-textbg p{
	line-height: 2.3;
}
.flow-textbg img{
	width:60%;
	display: block;
	margin:auto;
}
.flow-nagare .nagare,.technology-tokui .nagare{
	margin: 0;
}
.flow-nagare .nagare > li,.technology-tokui .nagare > li{
	display: flex;
    flex-direction: column-reverse;
}
.flow-nagare .nagare > li:not(:last-of-type){
	padding-bottom:40px;
	margin-bottom:70px;
	position: relative;
	border-bottom:3px solid #eee;
}
.flow-nagare .nagare > li:not(:last-of-type):before{
	content:'';
	width:80px;
	height:35px;
	position: absolute;
	bottom:-35px;
	left:0;
	right:0;
	margin:auto;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	background:#eee;
}
.technology-tokui .nagare > li:before{
	display: none;
}
.flow-nagare .nagare > li img,.technology-tokui .nagare > li img{
	border: 5px solid #f3f3f3;
	width: 410px;
	max-width: 80%;
	box-sizing: border-box;
    margin: 0 auto 20px;
    display: block;
}
.flow-nagare .nagare > li h3,.technology-tokui .nagare > li h3{
	color:#3e7fa5;
	display: flex;
		align-items: center;
		gap:15px;
		font-size:20px;
		margin:0 0 30px 0;
}
.flow-nagare .nagare > li h3 span{
	padding:10px;
		width:60px;
		box-sizing: border-box;
		border:1px solid #3e7fa5;
		color:#3e7fa5;
		display: flex;
		align-items: center;
		justify-content: center;
}
.flow-nagare .nagare > li h4{
	font-size:14px;
	border-bottom: 3px solid #eee;
}
.flow-nagare .nagare > li > div{
	margin-bottom:20px;
}
.flow-nagare .nagare > li > div ul li{
		list-style:disc;
		padding-left:0;
		margin-left: 1.5em;
	}
.flow-nagare .nagare > li > div p,.technology-tokui .nagare > li > div p{
	margin:0;
}
.nagare .nagare-form{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:25px;
	background:#3e7fa5;
	color:#fff;
	border-radius: 100px;
	line-height: 45px;
	width:max-content;
	padding: 0 15px;
    margin-top: 10px;
}
@media (min-width: 1024px) {
	.flow-textbg{
		/*display: flex;
		justify-content: space-between;
		align-items: center;*/
	}
	.flow-textbg p{
		flex: 1;
	}
	.flow-textbg img{
	width:40%;
		object-fit: cover;
}
	.flow-nagare .nagare > li{
		align-items: flex-start;
		flex-direction: row;
		gap:30px;
	}
	.flow-nagare .nagare > li img{
		width:410px;
		max-width:48%;
		object-fit: cover;
		border: 10px solid #f3f3f3;
		margin:0;
	}
	.flow-nagare .nagare > li > div{
		flex: 1;
	}
	.flow-nagare .nagare > li h4{
		font-size: 16px;
		margin-bottom:20px;
	}
}
@media (min-width: 1400px) {
	.flow-textbg{
		/*gap:30px;*/
	}
}
/**お取引までの流れ//**/
/**お問い合わせ**/
.form-contact dl dt.hissu{
	position: relative;
	display: flex;
	gap:10px;
	align-items: center;
}
.form-contact dl dt{
	display:flex;
}
.form-contact dl dt.hissu:after{
	content:'必須';
	width: 3em;
    background: #3e7fa5;
    color: #fff;
    font-size: 0.7em;
    text-align: center;
    padding: 0 2px;
}
.form-contact input.soushin{
	background:#3e7fa5;
	width:200px;
	margin:30px auto;
	display: block;
    line-height: 2.5;
}
.form-contact .kangei-kengaku{
	display:flex;
	flex-direction:column;
	align-items:center;
}
.contact-thanks p{
	display: flex;
	justify-content: center;
}
@media (min-width: 1024px) {
	.contact-text p{
		text-align: center;
	}
	.form-contact dl{
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		gap:20px;
	}
	.form-contact dl dt{
		width:250px;
		max-width:25%;
	}
	.form-contact dl dt.hissu{
		justify-content: space-between;
	}
	.form-contact dl dd{
		width:730px;
		max-width:73%;
	}
}
/**お問い合わせ//**/
/**会社概要**/
.company-text h3{
	font-family: "Hina Mincho", serif;
	font-weight: 500;
	text-align:left;
	line-height: 1.8;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.company-text h3 span{
	font-size: 1.5em;
	color:#DAA520;
}
.scroll-ya{
	text-align: right;
}
.company1{
	overflow: auto;
}
.company1 .table-company{
	width: 100%;
	max-width: 900px;
	border: 1px solid #ddd;
}
.company1 .table-company td{
	box-sizing: border-box;
}
.company1 .table-company .column-1{
	min-width: 80px;
    width: 20%;
    font-size: 12px;
	background: rgba(131, 191, 226, 0.1);
}
.company1 .table-company .column-2,.company1 .table-company .column-3{
	width:80%;
}
.company2 h2{
	position: relative;
	display: flex;
	align-items: center;
	gap:20px;
	justify-content: center;
	text-align: center;
}
.company2 h2:before,.company2 h2:after{
	content:'';
	height:3px;
	width:30px;
	background:#3e7fa5;
	border-radius: 3px;
}
.company3 .table-company-2{
	border:1px solid #ddd;
}
.company3 .table-company-2 td{
	box-sizing: border-box;
}
.company3 .table-company-2 .column-1{
	background: rgba(131, 191, 226, 0.1);
	vertical-align: middle;
	width:20%;
}
.company3 .table-company-2 .column-2{
	width:80%;
}
.company3 iframe{
	height:50vw;
}
@media (min-width: 680px) {
	.scroll-ya{
		display: none;
	}
	.company1 .table-company{
		width:100%;
	max-width:100%;
}
}
	@media (min-width: 768px) {
		.company2 h2:before,.company2 h2:after{
	height:5px;
	width:40px;
}
		.company3 iframe{
	height:400px;
}
	}
	@media (min-width: 1024px) {
		.company-text h3{
			text-align: center;
		}
	}
/**会社概要//**/
/**導入設備**/
	.system1{
		overflow: auto;
	}
	.system1 .system-table{
		width:900px;
		margin:0 auto;
		border:solid #ddd 1px;
	}
	.system1 .system-table.tablepress>:where(thead,tfoot)>tr>*{
		background: rgba(131, 191, 226, 0.1);
	}
	.system1 .system-table td,.system1 .system-table th{
		box-sizing: border-box;
		border-right: 1px solid #ddd;
	}
	.system1 .system-table th{
		text-align: center;
	}
	.system1 .system-table .column-1,.system1 .system-table .column-3{
		width: 6%;
		text-align: center;
	}
	.system1 .system-table .column-2{
		width:48%;
	}
	.system1 .system-table .column-4,.system1 .system-table .column-5{
		width:20%;
	}
.system-img img{
	max-width:560px;
	margin:0 auto;
	display: block;
}
.system-ichiran ul{
	display: flex;
	flex-wrap: wrap;
	margin:0 auto;
}
.system-ichiran ul li{
	display: flex;
	flex-direction: column;
	width:46%;
	margin:0 2% 20px;
	padding-bottom:20px;
	position: relative;
}
.system-ichiran ul li:after{
	content:'';
	width:85%;
	height:2px;
	background:#eee;
	border-radius: 2px;
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}
.system-item{
	margin-bottom:2px;
}
.system-header {
  width: 100%;
  border: none;
  padding:13px 13px 13px 25px;
  text-align: left;
  cursor: pointer;
  font-size: 1.1em;
  border-bottom: 1px solid #ccc;
  color: #3e7fa5;
  background: #f8f8f8;
	position: relative;
}
.system-header:hover,
.system-header:focus {
  opacity: 0.8;
	background:#f8f8f8;
	color:#3e7fa5;
}
.system-header::before {
  content: '▶';
  position: absolute;
  left: 3px;
    top: 25px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.system-header.active::before {
  transform: translateY(-50%) rotate(90deg);
}
.system-content {
  max-height: 0;
  overflow: hidden;
  background-color: #f2f8fc;
  border-bottom: 1px solid #ddd;
  transition: max-height 0.4s ease;
}
.system-content-inner {
  padding: 1em 0;
}
.system-header.active + .system-content {
  max-height: 1000px;
}
.scroll-yoko{
	font-size:12px;
	text-align: right;
	display:none;
}
.table-course{
	overflow-x: auto;
    max-width: 100%;
}
.tablepress.system-table4,.tablepress.system-table5{
	/*width:500px;*/
	margin:0 auto;
	border:1px solid #ddd;
	table-layout: fixed;
}
.tablepress.system-table4 th,.tablepress.system-table5 th{
	text-align: center !important;
	box-sizing: border-box;
}
.tablepress.system-table4 td,.tablepress.system-table5 td{
	box-sizing: border-box;
	text-align: center;
}
.tablepress.system-table4 .column-1,.tablepress.system-table5 .column-1{
	width:25%;
	text-align: left;
	border-right:1px solid #ddd;
	font-size:10px;
}
.tablepress.system-table4 .column-1 {
	width:40%;
}
.tablepress.system-table4 .column-2{
	width:25%;
	border-right:1px solid #ddd;
	font-size:10px;
}
.tablepress.system-table4 .column-3{
	width:10%;
	border-right:1px solid #ddd;
	font-size:10px;
}
.tablepress.system-table4 .column-4{
	width:25%;
	font-size:10px;
}
.tablepress.system-table5 .column-2{
	border-right:1px solid #ddd;
}
.tablepress.system-table5 .column-2,.tablepress.system-table5 .column-3{
	width:25%;
	font-size:10px;
}
@media (min-width: 500px) {
	.system-header{
		padding: 13px 13px 13px 45px;
	}
	.system-header::before{
		left:15px;
	}
	.scroll-yoko{
		display: none;
	}
	.tablepress.system-table4,.tablepress.system-table5{
		width:90%;
	}
	.company1 .table-company .column-1{
    font-size: 14px;
}
}
	@media (min-width: 680px) {
		.system1 .system-table{
		width:100%;
	max-width:100%;
}
		.system-ichiran ul li{
	width:31.3%;
	margin:0 1% 30px;
	padding-bottom:30px;
}
		.tablepress.system-table4 .column-1,.tablepress.system-table5 .column-1{
	font-size:14px;
}
.tablepress.system-table4 .column-2{
	font-size:14px;
}
.tablepress.system-table4 .column-3{
	font-size:14px;
}
.tablepress.system-table4 .column-4{
	font-size:14px;
}
.tablepress.system-table5 .column-2,.tablepress.system-table5 .column-3{
	font-size:14px;
}
	}
@media (min-width: 1200px) {
	.tablepress.system-table4 .column-1{
	width:40%;
}
.tablepress.system-table4 .column-2{
	width:35%;
}
.tablepress.system-table4 .column-3{
	width:7%;
}
	.tablepress.system-table4 .column-4{
	width:18%;
}
}
/**導入設備//**/
/**個人情報の取扱いについて**/
.policy ol{
	list-style:decimal;
	margin-left:1.5em;
}
.policy ol h4{
	text-decoration: underline;
	text-underline-offset: 5px;
  text-decoration-color:#3e7fa5;
  text-decoration-thickness: 2px;
}
.policy ol > li{
	margin-bottom:20px;
}
/**個人情報の取扱いについて//**/
/**採用情報**/
#recruitment-wrap .post-job{
	padding:15px 0;
	border-bottom:2px solid #ddd;
	box-sizing: border-box;
}
#recruitment-wrap .post-job h2, #recruitment-wrap .post-job h2 a{
	margin:1em 0 0.5em;
	font-size:30px;
}
#recruitment-wrap .post-job a{
	display: block;
}
#recruitment-wrap .post-job .txt1-field{
	margin-top:10px;
}
#recruitment-wrap .post-job .category-title{
	position:static;
	margin-right: 2px;
}
#recruitment-wrap .post-job .category-job1{
	background:#2273c9;
}
#recruitment-wrap .post-job .category-job2{
	background:#058c4b;
}
#recruitment-wrap .post-job .category-job3{
	background:#d65f04;
}
#recruitment-wrap .post-job .kochira-job{
	width:max-content;
	max-width:100%;
	box-sizing: border-box;
	padding:5px 15px;
	border:1px solid #ddd;
	border-radius: 5px;
	margin-left:auto;
}
#recruitment-wrap .post-job .kochira-job span{
	margin-left:10px;
}
.job-button {
  margin: 30px 0;
}
a.job-link{
	font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: block;
  padding: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
	color: #fff;
  background: #3e7fa5;
  -webkit-box-shadow: 0 5px 0 #07537f;
  box-shadow: 0 5px 0 #07537f;
	margin:100px auto 0;
    width: 450px;
    max-width:100%;
}
a.job-link span:not(.job-ya){
	font-size:15px;
  position: absolute;
  top: -10px;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.2rem 0;
  color: #3e7fa5;
  border: 2px solid #3e7fa5;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.job-link:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #3e7fa5;
  -webkit-box-shadow: 0 2px 0 #07537f;
  box-shadow: 0 2px 0 #07537f;
}

a.job-link:hover:before {
  left: 2rem;
}
.page-template-recruitment-page .jib-info {
	margin-top: 1em;
}
@media (min-width: 1024px) {
	#recruitment-wrap .post-job{
		padding:15px;
	}
	#recruitment-wrap .post-job h2,#recruitment-wrap .post-job h2 a{
		font-size:30px;
	}
	a.job-link{
		font-size:20px;
	}
	a.job-link span:not(.job-ya){
		font-size:18px;
	}
}
/**採用情報//**/
/**三罡技研の取り組み**/
.iso-button ul{
	display: flex;
	gap:20px;
	flex-direction: column;
	align-items: center;
}
.iso-button ul li{
	width:400px;
	max-width:90%;
}
.iso-button ul li a{
	background:#83bfe2;
	color:#fff;
	display: block;
	line-height: 4em;
	text-align: center;
}
.iso-button ul li a:hover{
	opacity: 0.8;
}
.iso-button ul li a span{
	margin-left:15px;
}
.bcplogo{
	border: 3px solid #83bfe2;
	padding: 15px;
	width:1024px;
	max-width:100%;
	margin:0 auto;
	box-sizing: border-box;
}
.bcplogo > div{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:25px;
}
.bcplogo img{
	max-height:200px;
}
.activities-bcp ol{
	margin-left:20px;
}
.activities-bcp ol li > strong{
	font-size:1.15em;
}
.policy-name {
  display: flex;
	flex-direction: column;
	align-items: center;
	gap:0.5%;
  list-style: none;
  padding: 0;
}
.policy-name li {
  padding: 5px 16px;
  cursor: pointer;
	width:300px;
	border:1px solid;
    box-sizing: border-box;
	font-size:13px;
	margin-bottom: 5px !important;
	display: flex;
	justify-content: space-between;
	font-size: 16px;
}
.policy-name li:first-child{
	border-color:#83bfe2;
}
.policy-name li:nth-child(2){
	border-color:#98eac4;
}
.policy-name li:last-child{
	border-color:#f4b261;
}
.policy-name li.active:first-child {
  background:rgba(0,173,221,0.1);
}
.policy-name li.active:nth-child(2) {
  background:rgba(123,214,4,0.1);
}
.policy-name li.active:last-child {
  background:rgba(244,178,97,0.1);
}
.policy-tab {
  display: none;
  margin-top: 10px;
	padding:0;
}
.policy-tab.active {
  display: block;
}
.policy-tab > h3{
	padding-left:15px;
	box-sizing: border-box;
	line-height: 1.4;
}
#tab1.policy-tab > h3{
	border-left:#83bfe2 3px solid;
}
#tab2.policy-tab > h3{
	border-left:#98eac4 3px solid;
}
#tab3.policy-tab > h3{
	border-left:#f4b261 3px solid;
}
.policy-tab > h3:not(:first-of-type){
	margin-top:50px !important;
}
.policy-tab ol{
	margin-left: 20px;
}
.policy-tab ol li > strong{
	font-size: 1.15em;
}
.top-news-section {
    display: inline-block;
    width: 100%;
}
@media (min-width: 1024px) {
	.iso-button ul{
		flex-direction: row;
		justify-content: center;
	}
	.iso-button ul li a{
		font-size:18px;
	}
	.bcplogo{
		border: 5px solid #83bfe2;
	}
	.bcplogo > div{
		flex-direction: row;
		justify-content: center;
	}
	.activities-bcp ol h3{
	font-size:23px;
}
	.policy-name {
  display: flex;
	flex-wrap: wrap;
		flex-direction: row;
	align-items: flex-start;
		justify-content: center;
	gap:3%;
}
.policy-name li {
	width:30%;
	padding: 10px 16px;
	border-width: 2px;
	font-size: 18px;
}
	.policy-tab > h3{
	border-left-width:6px !important;
}
.top-news-section {
    width: 65%;
}
}
/**三罡技研の取り組み//**/
.time-name {
    min-width: 100px;
}

.grecaptcha-badge {
    bottom: 85px !important;
}