@charset "UTF-8";

/* ============================
  基本設定
============================ */
:root {
  /* テキストカラー */
  --txt-dark: #333;
  /* テキストカラー薄色 */
  --txt-light: #fff;
  /* メインカラー */
  --color-main: #58afe3;
  /* メインカラー薄色 */
  --color-light: #efefef;
  /* サブカラー */
  --color-sub: #ff0000;
  /* フッターカラー */
  --color-footer:#000;
  --txt-footer: #fff;
  /* コンテンツ幅 */
  --width-inner: min(1080px, 100%);
  /* 狭いコンテンツ幅 */
  --width-narrow: min(810px, 100%);
  /* セリフフォント */
  --font-serif: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;

}

html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--txt-dark);
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 810px) {
  body {
    font-size: 1.6rem;
  }
}
/* PC / SP */
@media screen and (min-width: 811px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 810px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

.backtotop{
	display:flex;
	align-items:center;
	justify-content:center;
	background-color:var(--color-main);
	width:60px;
	height:60px;
	color:#fff;
	text-align:center;
	border-radius:50%;
	position:fixed;
	bottom:10%;
	right:5%;
	z-index:70;
	font-size:20px;
	border:1px solid var(--color-main);
	transition:all 0.3s;
  opacity: 0;
	padding-top:7px;
  pointer-events: none;
  transform: translateY(8px);
}
.backtotop.is-show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .backtotop{ transition: none; }
}
.backtotop::after{
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	width:12px;
	height:12px;
	display:block;
	content:'';
	transform:rotate(-45deg);
	top:12px;
	left: calc(50% - 6px);
	position:absolute;
}
@media (hover: hover){
	.backtotop:hover{
		background-color:#fff;
		color:var(--color-main);
		transition:all 0.3s;
	}
.backtotop:hover::after{
	border-top:1px solid var(--color-main);
	border-right:1px solid var(--color-main);
}
}
section {
  padding-top: 80px;
}
/* section bg */
section.bg-main{
  background: var(--color-main);
  color: #fff;
  padding-bottom: 80px;
  margin-bottom:50px;
}
@media screen and (max-width:810px){
section.bg-main{
  padding-bottom: 0;
  margin-bottom:0;
}
}
section.bg-left {
  position: relative;
  background: #fff;
  padding-bottom: 80px;
}
/* 左側の色面だけを擬似要素で作る */
section.bg-left::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 70%;
  background: #EEF9FF;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 0;
}
section.bg-left > .inner {
  position: relative;
  z-index: 1;
}
section.bg-right {
  position: relative;
  background: #fff;
  padding-bottom: 80px;
}
section.bg-right::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 70%;
  background: #EEF9FF;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 0;
}
section.bg-right > .inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 810px) {
  section.bg-left,
  section.bg-right{
    background: #EEF9FF;
    padding: 0 0 40px;
  }
  section.bg-left:before,
  section.bg-right:before{
    border-radius:0;
  }
}

/*//   text   //*/
h1 {
  line-height: 1;
}

h2 {
  color: var(--txt-dark);
  line-height: 1;
  font-weight: normal;
  padding-left: .3em;
}
h2 span{
  text-indent: -0.05em;
  font-weight: bold;
  display: block;
  border-bottom: 1px solid var(--txt-dark);
  line-height: 0.78;
  margin-bottom: 0.3em;
  text-transform: capitalize;
}
h2.kv_txt{
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  color:#fff;
}
h2 span.ims{
/*   color: var(--txt-dark); */
  color:#fff;
  line-height: 1;
  font-weight: normal;
  padding-left: .3em;
}
@media screen and (min-width: 811px) {
  h2 {
    font-size: 1.6rem;
    margin: 0 calc(50% - 50vw) 60px 0;
  }
  h2 span{
    font-size: 13rem;
  }
}

h2 + p {
  text-align: center;
}

.page h2,
.single h2 {
  margin-top: 120px;
}
.page h2 span,
.single h2 span{
  border-bottom: none;
  line-height:1;
}
@media screen and (min-width: 811px) {
  .page h2 span,
  .single h2 span{
    font-size: 10rem;
  }
h2 span.ims{
    font-size: 26px;
    margin: 0;
	line-height:1;
	font-weight:bold;
}
}
@media screen and (max-width: 810px) {
  h2 {
    font-size: 4.26vw;
    margin: 0 calc(50% - 50vw) 40px 0;
  }
  h2 span{
	margin-top:-50px;
    font-size: 14.93vw;
  }
  .title-txt h2 span{
    font-size: 8vw;
  }
	h2 span.ims {
    font-size: 14px;
  }
}
@media (max-width:810px){
	h2.ims{
		margin-top:70px;
		line-height:1;
	}
  h2 span.ims{ margin-top:0; display:block; line-height:14px; }
  /* .ims の次の見出し行にも負マージンをかけない */
  h2 span.ims + br + span{ margin-top:-15px;}
}
h3 {
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 810px) {
  h3 {
    font-size: 6.41vw;
  }
}

h4 {
  font-weight: normal;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 810px) {
  h4 {
    font-size: 6.41vw;
    padding: 1em 0;
    margin: 0 auto;
  }
}

p + p{
  margin-top: 1em;
}

p > span{
  color: var(--color-main);
}

img {
  width: 100%;
  height: auto;
}

a {
  color: #3E362D;
  text-decoration: none;
}
.tac {
  text-align: center;
  margin: 0 auto;
}

.fb{
  font-weight: bold;
}

/* ============================
  header
============================ */
h1 a{
	display:inline;
	font-size:18px;
	color:#373582;
}
header {
  position: -webkit-fixed;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  top: 0;
	width: 100%;
  z-index: 100;
  background-color: #fff;
  transition: 0.5s;
}
header.top-page{
	background-color:#fff;
	
}
@media screen and (min-width: 810.1px) {
	header {
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
	}
}
#header.remove {
  top: -100px;
  user-select: none;
}
header h1 {
  
}
header h1 img{
	display:inline;
	height:40px;
	width:auto;
	margin-right:5px;
}
@media screen and (max-width: 810px) {
  header{
    padding: 12px 20px;
  }
  header h1 {
    width: min(25.64vw, 120px);
  }
	header h1 img{
		height:20px;
	}
}
#header.scrolled {
	background-color: rgba(255, 255, 255, 0.6);
}
header h1 {
  width: min(21.875vw, 240px);
}
@media screen and (max-width: 810px) {
  header{
    padding: 12px 20px;
  }
  header h1 {
    width: min(49.382vw, 280px);
	 z-index: 50;
  }
	#header.scrolled {
		background-color: rgba(255, 255, 255, 0.6);
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
	}
}
@media screen and (max-width: 810px) {
  header nav {
    margin-left: 100%;
    padding: 80px 10% 40px 10%;
    width: 100vw;
    height: 100vh;
    z-index: 30;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    transition: all 0.4s;
  }
}
header nav ul#menu {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 810px) {
  header nav ul#menu {
    flex-direction: column;
  }
}
header nav ul#menu li {
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  height: 30px;
}
@media screen and (max-width: 810px) {
  header nav ul#menu li {
    width: 100%;
    height: auto;
  }
}
header nav ul#menu li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1em;
	transition:all 0.3s;
	font-size:16px;
}
header nav ul#menu li:not(:last-child) a{
	position:relative;
}
header nav ul#menu li:not(:last-child) a:hover::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
@media screen and (min-width: 810.1px) {
    header nav ul#menu li:not(:last-child) a::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: #373582;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform .3s;
    }
}
@media screen and (max-width: 810px) {
  header nav ul#menu li a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 1em 0;
  }

}
header nav ul#menu li a:hover {
  color: #373582;
	transition:all 0.3s;
}
header nav ul#menu li:last-child {
  margin-left: 2em;
}
header nav ul#menu li:last-child a {
  background: #373582;
border:1px solid #373582;
  color: #fff;
  border-radius: 40px;
  transition:0.3s all;
}
header nav ul#menu li:last-child a:hover {
  background: transparent;
  color: #373582;
  transition:0.3s all;
}
header .nav_btn {
  display: none;
}
@media screen and (max-width: 810px) {
  header nav ul#menu li:last-child {
    margin-top: 2em;
	 margin-left: 0;
  }
	header nav ul#menu li:last-child a {
    padding: 1em 0;
  }

  header .nav_btn {
    display: block;
    width: min(8vw, 32px);
    height: 20px;
    z-index: 30;
    position: relative;
  }
}
header .nav_btn .hamburger_line {
  transition: all 0.6s;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
	left: 0;
}
header .nav_btn .hamburger_line1 {
  top: 0px;
}
header .nav_btn .hamburger_line2 {
  top: 8px;
}
header .nav_btn .hamburger_line3 {
	  top: 16px;
}

body.nav_open{
  height: 100%;
  overflow: hidden;
}

.nav_open header nav {
  margin-left: 0;
  transition: all 0.4s;
}
.nav_open header .hamburger_line1 {
  top: 12px;
  transform: rotate(45deg);
}
.nav_open header .hamburger_line2 {
  width: 0;
}
.nav_open header .hamburger_line3 {
  top: 12px;
  transform: rotate(-45deg);
}



/* ============================
  footer
============================ */
footer {
  background: var(--color-footer);
  color: var(--txt-footer);
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 810px) {
  footer {
    font-size: 1.2rem;
  }
}

/* pagetop */
footer .pagetop {
  position: absolute;

  font-size: 1.2rem;
  overflow: visible;
}
.pagetop-link {
  display: block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  white-space: nowrap;
  margin-left: 100%;
  color: #fff;
}
.pagetop-link::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 0;
  border-top: 1px solid #fff;
  vertical-align: middle;
  margin: 1px 10px 0 0;
}

@media all and (min-width: 811px) {
  .pagetop {
    top: -40px;
    right: 40px;
    font-size: 1.5rem;
  }
  .pagetop-link::before {
    width: 80px;
  }
}@media all and (max-width: 810px) {
  .pagetop {
    top: -20px;
    right: 20px;
    font-size: 1.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .pagetop-link:hover::before {
    -webkit-animation: pagetopLine 1.2s cubic-bezier(1, 0, 0, 1) 1;
    animation: pagetopLine 1.2s cubic-bezier(1, 0, 0, 1) 1;
  }
}
@keyframes pagetopLine {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  50.1% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }
}
/* footer contents */
footer .inner{
  padding: 40px 0;
}
@media screen and (max-width: 810px) {
  footer .inner{
    padding: 20px 0;
  }
}
footer .ft-wrap {
  display: flex;
  justify-content: space-between;
}
footer .ft-wrap .ft-logo {
  width: 80%;
  max-width:87px;
  margin-bottom: 15px;
}
@media screen and (max-width: 810px) {
  footer .ft-wrap {
    flex-direction: column;
  }
  footer .ft-wrap .ft-logo {
    width: 80%;
    margin: 0 auto 20px;
  }
}

footer .ft-wrap > div:not(.ft-info){
  display: flex;
  flex-direction: column;
}
footer .ft-wrap .ft-info p {
  margin-top: .5em;
  font-size: .8em;
}
footer .ft-wrap .ft-info .name {
  font-size: 1em;
}
@media screen and (max-width: 810px) {
  footer .ft-wrap .ft-info .name {
    font-size: 1.2rem;
  }
}
footer .ft-wrap .ft-btn a{
  margin-top: 1em;
  font-size: .8em;
  display: block;
  color: rgba(255,255,255, .4);
  border: 1px solid rgba(255, 255, 255, .4);
  text-align: center;
  padding: .2em 0;
}
footer .ft-wrap .ft-btn a:hover{
  background-color: rgba(255, 255, 255, .05);
}
@media screen and (max-width: 810px) {
  footer .ft-wrap .ft-btn a{
    padding: .4em 0;
  }
}
footer .ft-wrap ul li {
  margin: 1em 1em 0 0;
}
footer .ft-wrap ul li a {
  color: var(--txt-footer);
}

@media screen and (min-width: 811px) {
  footer .ft-wrap ul.ft-menu{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
    width: 20em;
  }
}
@media screen and (max-width: 810px) {
  footer .ft-wrap ul.ft-menu{
    display: none;
  }
}

footer .ft-wrap ul.ft-link{
  display: flex;
  margin-top: auto;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
  font-size: 1.1rem;
}
@media screen and (max-width: 810px) {
  footer .ft-wrap ul.ft-link{
    justify-content: center;
  }
}
footer .ft-wrap ul.ft-link li + li{
  border-left: 1px solid var(--txt-footer);
  padding-left: 1em;
}

footer .copy {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 24px;
}
@media screen and (max-width: 810px) {
  footer .copy {
    font-size: 1.0rem;
  }
}

/*//   swiper   //*/
.swiper{
	margin-top:56px;
}
.swiper-slide {
  position: relative;
}

@media screen and (max-width: 810px) {
  .swiper-slide > img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: calc(100vh - 40px);
  }
}

.swiper .swiper-txt{
	font-size: clamp(5rem, 9.12vw, 16rem);
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translate( 0, -50%);
	color: #fff;
	text-align: left;
  line-height: 1;
	z-index: 20;
	text-shadow: 0 0 8px rgba(0, 0, 0, .3);
  font-weight: bold;
}
.swiper-txt span{
  display: block;
  font-size: 0.15em;
  margin-top: 1em;
}
.swiper-slide-prev img,
.swiper-slide-active img,
.swiper-slide-duplicate-active img {
  animation: zoom-in linear 12s forwards;
}
/* .swiper-slide-active .swiper-txt {
  -webkit-animation: slide-in 2s 0.5s both;
          animation: slide-in 2s 0.5s both;
}
@media screen and (max-width: 810px) {
  .swiper-slide-active .swiper-txt {
    -webkit-animation: none;
            animation: none;
  }
}
.swiper-slide-active .swiper-txt span {
  -webkit-animation: fade-in 2.5s 2s both;
          animation: fade-in 2.5s 2s both;
}
@media screen and (max-width: 810px) {
  .swiper-slide-active .swiper-txt span {
    -webkit-animation: fade-in 2.5s 1s both;
            animation: fade-in 2.5s 1s both;
  }
} */

/*//   button   //*/
.btn {
  margin-top: 40px;
  text-align: center;
}
.btn a {
  color: rgb(55, 53, 130);
  display: block;
  padding: 0.5em;
  border: 1px solid rgb(55, 53, 130);
  position: relative;
  transition: all 0.3s;
  border-radius:100px;
}
.btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  width: 40px;
  height: 1px;
  background: rgb(55, 53, 130);
  transition: all 0.3s;
}
.btn a::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 10%;
  width: 10px;
  height: 1px;
  background: rgb(55, 53, 130);
  transform: rotate(35deg);
  transition: all 0.3s;
}
.btn a:hover {
  background: rgb(55, 53, 130);
	color:#fff;
	border: 1px solid rgb(55, 53, 130);
	transition:0.3s;
}
.btn a:hover::before {
  right: 8%;
  background-color:#fff;
}
.btn a:hover::after {
  right: 8%;
  background-color:#fff;
}
.txt-link{
  line-height: 1.6;
}

section > .btn {
  width: 60%;
  margin: 40px auto 0;
}
@media screen and (max-width: 810px) {
  section > .btn{
    width: 100%;
  }
}

.btn-color a{
  display: block;
  color: var(--color-main);
  background: #fff;
  padding: .5em 4em .5em 2em;
  border-radius: 100px;
}
@media screen and (max-width: 810px) {
  .btn-color a{
    width: 100%;
    margin-top: 20px;
  }
}
span.arrow {
  position: relative;
  display: inline-block;
  /* width: 1.8em;
  height: 1.8em;
  background: #fff;
  border-radius: 50%; */
  vertical-align: middle;
  margin-left: 1em;
}
span.arrow::before,
span.arrow::after{
  position: absolute;
  content: "";
  right: -40px;
  transition: all 0.3s;
}
span.arrow::before{
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-main);
}
span.arrow::after{
  top: calc(50% - 3px);
  width: 10px;
  height: 1px;
  background: var(--color-main);
  transform: rotate(35deg);
}
a:hover span.arrow::before {
  right: -48px;
}
a:hover span.arrow::after {
  right: -48px;
}

/* ============================
  contents
============================ */
.inner {
  width: min(84%, 1200px);
  margin-inline: auto;
}

/* flex-wrap */
.right-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin: 0 calc(50% - 50vw) 40px 0;
}
@media screen and (max-width: 810px) {
  .right-wrap {
    flex-direction: column;
    margin: 0 calc(50% - 50vw) 0;
  }
}
.right-wrap .img-box {
  width: 50%;
}
.right-wrap .img-box img{
	border-radius:10px 0 0 10px;
}
.right-wrap .txt-box {
  width: 45%;
  margin-right: 5%;
}
@media screen and (max-width: 810px) {
  .right-wrap .img-box {
    width: 100%;
  }
  .right-wrap .txt-box {
    max-width: 80%;
    width: 100%;
    margin: 40px auto 0;
  }
  .right-wrap .img-box img{
		border-radius:0;
	}
}

.left-wrap{
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px calc(50% - 50vw);
}
@media screen and (max-width: 810px) {
  .left-wrap {
    flex-direction: column;
    margin: 0 calc(50% - 50vw) 0;
  }
}
.left-wrap .img-box{
  width: 50%;
}
.left-wrap .img-box img{
	border-radius:0 10px 10px 0;
}
.left-wrap .txt-box{
  width: 45%;
  margin-left: 5%;
}
.left-wrap .txt-box .tac{
  text-align:left;
}
@media screen and (max-width: 810px) {
  .left-wrap .img-box {
    width: 100%;
  }
  .left-wrap .txt-box {
    max-width: 80%;
    width: 100%;
    margin: 40px auto 0;
  }
	.left-wrap .img-box img{
		border-radius:0;
	}
}
.wrap{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:10vw;
}
@media screen and (max-width: 810px) {
	.wrap{
		grid-template-columns:1fr;
	}
}
.txt-box h3{
  text-align: left;
	line-height:1.5;
}
.signature{
  margin-top: 4em;
  text-align: right;
}
.signature span{
  color: #333;
  font-size: .8em;
  margin-right: 1em;
}

/* contactus */
.toform{ 
  margin-top: 80px;
  width: 100%;
  background: var(--color-main);
}
.toform .inner{
  position: relative;
}
.toform h2{
  margin-top: 0;
  position: absolute;
  top: -6px;
  left: 0;
  color: var(--color-main);
  z-index: 1;
}
.toform h2 span{
  font-size: 13rem;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3),-1px 1px 0 rgba(255, 255, 255, 0.3),1px -1px 0 rgba(255, 255, 255, 0.3),-1px -1px 0 rgba(255, 255, 255, 0.3);
  border: none;
  line-height: 10rem;
}
.toform .toform-wrap{
  position: relative;
  padding: 100px 40px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 810px) {
  .toform h2{
    top: -3px;
  }
  .toform h2 span{
    font-size: 14.93vw;
  line-height:1;
	  margin-top:-5px
  }
  .toform .toform-wrap{
    padding: 60px 0;
    z-index: 20;
    flex-direction: column;
  }
}

.toform .toform-txt{
  background: url(../img/ico_mail.svg) no-repeat left center;
  background-size: 2.5em;
  padding-left: 4em;
  line-height: 1.8;
  color:#fff;
}
@media screen and (max-width: 810px) {
  .toform .toform-txt{
    background: url(../img/ico_mail.svg) no-repeat center top;
    background-size: 2.5em;
    padding-left: 0;
    padding-top: 2em;
    line-height: 1.8;
    text-align: center;
  }
}
.toform p + p{ margin-top: 0;}

/*//   page   //*/
.title-wrap{
	position:relative;
}
.title-txt{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translate(0, -50%);
}
.title-breadcrumbs{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
@media screen and (max-width: 810px) {
	.title-txt{
		top: 40%;
	}
	.title-img {
		aspect-ratio: 6 / 4;
		overflow: hidden;
	}
	.title-img img{
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.new-graduate-title-img img{
		object-position: 65% center;
	}
}
.fullwidth {
  margin: 0 calc(50% - 50vw);
}

.profile {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  font-size: 1.8rem;
}
@media screen and (max-width: 810px) {
  .profile {
    font-size: 1.8rem;
  }
}
.profile dt {
  clear: both;
  float: left;
  width: 8em;
  padding-left: 2em;
}
.profile dd {
  margin-bottom: 16px;
  padding-bottom:16px;
  border-bottom: 1px solid #ccc;
  padding-right: 2em;
}
@media screen and (min-width: 811px) {
  .profile dd {
    padding-left: 8em;
  }
}
@media screen and (max-width: 810px) {
	.profile dt {
  clear: none;
  float: none;
  padding-left: 8px;
	}
  .profile dd {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.gglmap{
  position: relative;
  height: 0;
  padding-bottom: 30%;
}
@media screen and (max-width: 810px) {
  .gglmap{
    padding-bottom: 100%;
  }
}
.gglmap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*//   LIST   //*/
.list{
  display: flex;
  flex-wrap: wrap;
  gap: 40px 5%;
  line-height: 1.6;
  margin-bottom: 80px;
}
@media screen and (max-width: 810px) {
  .list {
    flex-direction: column;
  }
}

.list.col3 li {
  width: calc(90% / 3);
}
@media screen and (max-width: 810px) {
  .list.col3 li {
    width: 100%;
  }
}

.list.col2 li{
  width: calc(95% / 2);
}
@media screen and (max-width: 810px) {
  .list.col2 li{
    width: 100%;
  }
}

.list.col1{
  width: 80%;
  margin: 0 auto;
}
.list.col1 li{
  width: 100%;
  display: flex;
  gap: 1em 2em;
}
.list.col1 li p:first-child{
  min-width: 8em;
}

@media screen and (max-width: 810px) {
  .list.col1{
    width: 100%;
  }
  .list.col1 li{
    width: 100%;
    display: block;
  }
  .list.col1 li p:first-child{
    min-width: 100%;
  }
}

.date{
  color: var(--color-main);
}
.ttl{
  font-weight: bold;
}
.ttl + p{
  font-size: .8em;
}

.list div{
  margin-bottom: 1em;
}
.list div img{
  border-radius: 12px;
}
.col2 p + p,
.col3 p + p,{
  margin-top: .5em;
}

.col1 p + p{
  margin-top: 0;
}



.list-tbl{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.list-tbl dt{
  width: 30%;
  border-bottom: 1px dotted #ccc;
}
.list-tbl dd{
  width: 70%;
  border-bottom: 1px dotted #ccc;
}

/* timeline */
.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 60%;
  margin: 0 auto;
}

.timeline dt {
    width: 8em;
    padding: 0.5em;
    color: var(--color-main);
}

.timeline dd {
  width: calc(100% - 8em);
  padding: 0.5em 0 0.5em 2em;
  border-left: 3px solid var(--color-main);
  position: relative;
}
.timeline dd::before {
  content: '●';
  line-height: 1;
  position: absolute;
  left: -14px;
  top: .1em;
  font-size: 40px;
  color: var(--color-main);
}
@media screen and (max-width: 810px) {
  .timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .timeline dt {
      width: 6.5em;
      padding: 0.5em 0;
      color: var(--color-main);
  }
  
  .timeline dd {
    width: calc(100% - 7.5em);
    padding: 0.5em 0 0.5em 1em;
    border-left: 3px solid var(--color-main);
    position: relative;
  }
  .timeline dd::before {
    content: '●';
    line-height: 1;
    position: absolute;
    left: -14px;
    top: .1em;
    font-size: 40px;
    color: var(--color-main);
  }
}
/* ============================
  contact
============================ */
.contact {
  width: 60%;
  margin: 24px auto;
}
@media screen and (max-width: 810px) {
  .contact {
    width: 100%;
  }
}
.contact dl {
  margin: 40px 0;
}
.contact dl dt {
  margin-top: 1em;
}
.contact dl dt span {
  color: var(--color-main);
}
.contact p {
  text-align: center;
}
.bk-light{
  background: var(--color-light);
  border-radius: 4px;
  padding: .5em 1em;
}

/*//   FORM   //*/
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea,
select {
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  padding: 0.1em .5em;
  color: #555;
  background: var(--color-light);
  text-align: left;
  border-radius: 4px;
  border: none;
}
input[type=radio] {
  display: none;
}
input[type="radio"] + span:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: .5em;
  background: #fff;
  border-radius: 50%;
  background-clip: content-box;
  border: 4px solid #fff;
}
input[type="radio"]:checked + span:before {
  background: var(--color-main);
}

input[type=checkbox] {
  border: 1px solid #434343;
  margin-right: 1em;
}

input[type=submit] {
  font-family: inherit;
  line-height: 1;
  font-size: 1.4vw;
  width: 60%;
  margin: 40px auto 80px;
  background: var(--color-main);
  color: #fff;
  padding: 1em 0;
  cursor: pointer;
  border: none;
  border-radius: 100px;
}
@media screen and (max-width: 810px) {
  input[type=submit] {
    font-size: 5.12vw;
    width: 100%;
  }
}


/*//   single   //*/
.single section{
  padding-top: 1em;
  margin:0 0 80px;
}
.single .date{
  font-size: .8em;
  text-align: right;
}
.single h3{
  text-align: left;
  margin: 0 calc(50% - 50vw) 60px 0;
  border-bottom: 1px solid #333;
}
.single img{
  margin: 40px auto;
}
/*//   pagefeed   //*/
.pagefeed{
  display: flex;
  justify-content: space-between;
}
.pagefeed a{
  font-size: .8em;
  color: #333;
}
.pagefeed a:hover{
  color: var(--color-main);
}
/*//   pagenum   //*/
.pagenum{
	font-size: 1.4rem;
	margin: 40px auto 0;
	text-align: center;
}
span.page-numbers,
a.page-numbers{
	display: inline-block;
	border: 1px solid var(--color-main);
	text-align: center;
	line-height: 32px;
	height: 32px;
	width: 32px;
	border-radius: 100%;
	color: #fff;
	background: var(--color-main);
	margin-right: 8px;
}
.page-numbers{
	display:flex;
	justify-content:center;
}
span.page-numbers.current{
	color: var(--color-main);
	background: #fff;
}
a.prev.page-numbers,
a.next.page-numbers{
	border: none;
	width: auto;
	color: var(--color-main);
	background: none;
}
/*//   notfound   //*/
.notfound{
	margin: 0 0 80px;
}
.notfound .btn{
	width: 50%;
	margin: 40px auto 0;
}
@media screen and (max-width: 810px) {
	.notfound .btn{
		width: 100%;
	}
}
/* ============================
  animation
============================ */
@-webkit-keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* アニメーション設定 */
.smooth {
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.smooth.is-animated {
  clip-path: inset(0);
}

.inner .target *:not(h2):not(h2 span) {
  opacity: 0;
  transform: translateY(30px);
}

.inner .target *:not(h2).is-active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s;
}
/* ぱんくず */
.breadcrumbs{
	text-align: right;
	font-size: 1.0rem;
	margin-bottom: 1em;
	color:#fff;
}
.breadcrumbs a{
	color:#fff;
}
.breadcrumbs　a:hover{
	text-decoration: underline;
}
/* モーダル設定 */
.modalbk{
  cursor: pointer;
  position:fixed;
  top:0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color:rgba(0,0,0,0.8);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index: 99;
}
#zoom {
  display:none;       
}
.modalbk img{
  width: 50%;
  border: 8px solid #fff;
  border-radius: 8px;
}
@media screen and (max-width: 810px) {
  .modalbk img{
    width: 90%;
  }
}
.zoomup {
  animation:zoom-up 0.3s ease-out;
}
@keyframes zoom-up {
  from {
    transform:scale(0);
  }
}
/* --- トップページ
----------------------------------------- */
.swiper-txt .first_letter{
	display:inline;
	color: var(--color-main);
	font-size: clamp(5rem, 9.12vw, 16rem);
}
.index_company p{
	font-size:30px;
	font-weight:bold;
	text-align:center;
}
.index_company p span{
	display:inline-block;
	background-color:var(--txt-dark);
	color:#fff;
	padding: 0 8px;
	line-height:38px;
}

/* --- /トップページ
----------------------------------------- */
/* --- ニュース
----------------------------------------- */
.news_section .thamb{
	width:100%;
	aspect-ratio: 500 / 310;
}
.news_section .thamb img{
	width:100%;
	height:100%;
	object-fit:cover;
}
/* --- /ニュース
----------------------------------------- */
/* --- 会社概要
----------------------------------------- */
.concept_section img{
	max-width:500px;
	margin:30px auto;
}
.concept_section p{
	font-size:30px;
	font-weight:bold;
	text-align:center;
}
.concept_section p span{
	font-size:30px;
	background-color:#000;
	display:inlin-block;
	color:#fff;
	line-height:36px;
	padding:0 8px;
}
@media screen and (max-width: 810px){
	.concept_section p{
	font-size:6.2vw;
	text-align:center;
	}
.concept_section p span{
	font-size:6.2vw;
	margin-left:2px;
	margin-right:2px;
}
}
/* --- /会社概要
----------------------------------------- */
/* --- 採用ページ
----------------------------------------- */
.recruit_wrapper{
	margin-top:100px;
}
.recruit_wrapper a{
	color:var(--color-main);
}
.recruit_col2{
	display:grid;
	text-align:center;
	grid-template-columns:1fr 1fr;
	gap:40px 5%;
	width:100%;
}
@media screen and (max-width:810px){
	.recruit_col2{
	grid-template-columns:1fr;
}
}
.recruit_title_img{
	border-radius:12px;
	width:100%;
	height:auto;
	aspect-ratio:500 / 310;
	overflow:hidden;
}
.recruit_title_img img{
	object-fit:cover;
}
.recruit_col4{
	display:grid;
	text-align:center;
	grid-template-columns:1fr 1fr 1fr 1fr;
	gap:40px 5%;
	width:100%;
}
@media screen and (max-width:810px){
	.recruit_col4{
	grid-template-columns:1fr 1fr;
}
}
.recruit_col4 .recruit_title_img{
	border-radius:12px;
	width:100%;
	height:auto;
	aspect-ratio:1 / 1;
	overflow:hidden;
}

/* --- 採用ページ
----------------------------------------- */
.recruit_table{
	border:none;
	border-spacing:0;
	margin:auto;
	font-size:16px;
	margin-top:30px;
	width:60%;
}
@media screen and (max-width:810px){
	.recruit_table{
		width:auto;
	}
}
.recruit_table th{
	border-bottom:1px solid var(--color-main);
	padding:10px;
	text-align:left;
	min-width:100px;
}
.recruit_table td{
	border-bottom:1px solid #CCC;
	padding: 10px;
}
.recruit_table .mynavi_bn{
	display:block;
	max-width: 200px;
}
.job_description_table{
	margin:auto;
	font-size:16px;
	border-spacing:0;
	width:60%;
	margin-top:50px;
}
@media screen and (max-width:810px){
	.job_description_table{
	width:auto;
}
}
.job_description_table .title{
	font-size:20px;
	border-bottom: 2px solid var(--color-main);
	padding-bottom:5px;
	text-align:center;
}
.job_description_table th{
	border-bottom: 1px solid var(--color-main);
	padding:10px;
	text-align:left;
}
.job_description_table td{
	border-bottom:1px solid #ddd;
	padding:10px;
}
.rct-ft{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top:120px;
}
#recruit .rct-ft{ margin-top: 60px;}
.rct-top li{
	position: relative;
	width: 48%;
	margin: 0 0 30px;
}
.rct-ft li{
	position: relative;
	width: 32%;
	margin: 0 0 20px;
}
.rct-top li img,
.rct-ft li img{
	width: 100%;
}
.rct-top li span{
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 0 10px;
}
.rct-ft li span{
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 0 10px;
}
.rct-top li a span,
.rct-ft li a span{ font-weight: normal;}
@media only screen and (max-width: 644px){
	.rct-top li{
		position: relative;
		width: 100%;
		margin: 0 0 10px;
	}
	.rct-ft li{
		width: 48%;
	}
	.rct-top li span{
		font-size: 18px;
	}
}
/* ---------------------------------------------------------
採用情報
------------------------------------------------------------*/
.rct-main{
	position: relative;
	width: 100%;
}
.rct-main p{
	position: absolute;
	left: 50%;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-weight: bold;
	font-size: 3.6vw;
	white-space: nowrap;
	color: #333;
}
.environment{ margin-bottom:60px;}
.environment h3{
	background: #f9f9f9;
	color: #58afe4;
	font-size: 26px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 40px;
	padding: 10px 0;
	border-bottom: none;
	letter-spacing: 0.1em;
}
.environment h4{
	margin: 0;
	padding: 0;
	font-size:20px;
	font-weight:bold;
}
.environment p{ margin: 0;}
.environment ul{ margin: 0;}
.environment ul li{list-style: inside; padding: 0;}
.environment .note{
	display: block;
	font-size: 1.8rem;
	text-indent: -1.8rem;
	padding-left: 1.8rem;
}
@media only screen and (max-width: 644px){
	.environment h3{
		font-size: 24px;
		margin: 0 0 40px;
	}
}
.rct-wrap{
	margin-top: 60px;
	border: 1px solid #58afe4;
}
.rct-frame{
	padding:0 40px 40px;
}
@media only screen and (max-width: 644px){
	.rct-wrap{
		margin-top: 40px;
	}
	.rct-frame{
		padding:0 20px 20px;
	}
}
.rct-top,
.rct-ft{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.environment .rct-ft{ margin-top: 60px;}
.rct-top li{
	position: relative;
	width: 48%;
	margin: 0 0 30px;
}
.rct-ft li{
	position: relative;
	width: 32%;
	margin: 0 0 20px;
}
.rct-top li img,
.rct-ft li img{
	width: 100%;
}
.rct-ft li img{
	border-radius:12px;
}
.rct-top li span{
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 0 10px;
}
.rct-ft li span{
	position: absolute;
	top: 50%;
	right: 2px;
	transform: translateY(-50%);
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 0 10px;
}
.rct-top li a span,
.rct-ft li a span{ font-weight: normal;}
@media only screen and (max-width: 644px){
	.rct-top li{
		position: relative;
		width: 100%;
		margin: 0 0 10px;
	}
	.rct-ft li{
		width: 48%;
	}
	.rct-top li span{
		font-size: 18px;
	}
	.rct-ft li span{
		font-size:12px;
		padding:0 5px;
	}
}
/* -------- 働く環境 -------- */
.rct-work dl dt{
	color: #58afe4;
	font-size: 20px;
	font-weight: bold;
}
.rct-work dl dd{
	margin-bottom: 20px;
}

.rct-box{
	background: #f5f5f5;
	padding: 10px;
	margin-top: 10px;
}
.rct-box span{
	border: 1px solid #000;
	padding: 5px;
}
.rct-box .time{
	width: 50%;
	text-align: center;
	margin: 10px auto 0;
}
@media only screen and (max-width: 644px){
	.rct-box span{
		display: block;
	}
	.rct-box .time{
		width: 90%;
	}
}

.rct-work table{
	margin: 0 0 60px;
}
.rct-work table th{
	background: #58afe4;
	color: #fff;
	vertical-align: middle;
}
.rct-work table .tac{text-align: center; vertical-align: middle;}
.rct-ex{
	background: #f5f5f5;
	padding: 20px;
}
.rct-step{
	display: flex;
	justify-content: space-between;
}
.rct-step .profile{
	width: 35%;
}
.rct-step ul{
	width: 58%;
}
#recruit .rct-step ul li{
	border: 1px solid #ccc;
	padding: 10px;
	background: #fff;
	position: relative;
	text-align: center;
	height:35px;
}
.rct-step ul li:not(:last-child){
	margin-bottom: 60px;
}
.rct-step ul li:not(:last-child):before{
	position: absolute;
    left: 50%;
    content: "";
    bottom: -35px;
    width: 30px;
    height: 30px;
    border-top: 2px solid #58afe4;
    border-right: 2px solid #58afe4;
    transform: translate(-50%, 0) rotate(135deg);
}
.rct-step ul li span{
	position: absolute;
	top: 50%;
	left:10px;
	display: inline-block;
	font-size: 18px;
	background: #58afe4;
	color: #fff;
	padding: 0 10px;
	margin-right: 40px;
	transform: translateY(-50%);
}
.post .rct-step ul li p{
	position: absolute;
	top: calc(50% - 14px);
	left:105px;
}
@media only screen and (max-width: 644px){
	.rct-ex{
		padding: 10px;
	}
	.rct-step{
		flex-direction: column;
	}
	.rct-step .profile{
		width: 100%;
		margin: 0 auto;
		text-align: right;
	}
	.rct-step ul{
		width: 100%;
	}
	#recruit .rct-step ul li{
		border: 1px solid #ccc;
		padding: 5px 5px 5px 6em;
		height: 30px;
		background: #fff;
		position: relative;
		text-align: left;
	}
	.rct-step ul li span{
		position: absolute;
		top: 0;
		left:0;
		height: 36px;
		display: inline-block;
		font-size: 16px;
		background: #58afe4;
		color: #fff;
		padding: 2px 5px;
		margin-right: 0;
		transform: translateY(0);
	}
	.post .rct-step ul li p{
	left:70px;
}
}

/* 追加 */
.archive_thumbnail{
	overflow:hidden;
	width:200px;
	height:150px;
}
.news_archive{
	width:100%;
}
.news_archive a{
	color:#000;
}
.news_archive tr{
	display:block;
	padding-top:10px;
	padding-bottom:10px;
	border-bottom:1px solid #000;
}
.news_archive tr:first-child{
	border-top:1px solid #000;
}
.news_archive th{
	width:20%;
}
.news_archive td h2{
	margin-bottom:10px;
}
.news_archive th img{
	max-width:200px;
	max-height:150px;
	object-fit:cover;
}
.news_archive th img:hover{
 	transform:scale(1.2,1.2);
	transition:0.5s all;
}
.news_archive td{
	color:#000;
	vertical-align:middle;
	padding-left:20px;
}
.news_archive td div{
	height:auto;
}

.archive_thumbnail td{
	width:200px;
}

h2{
	font-weight:bold;
	margin-bottom:5px;
}
h2.first {
	text-decoration:none;
	color:#000;
}

.news_leadsentence{
	height: 140px;
}
@media screen and (max-width: 876px){
	.news_leadsentence{
		height:auto;
	}
}
.news_archive_title{
	color:#000;
	text-align:center;
}
.news_archive_title img{
	width:170px;
	height:auto;
}
.news_archive_title:hover{
	opacity:0.6;
}
.archive_title{
	font-size:13px;
}
/* 育休制度 */
.kurumin_box{
	border: 1px solid #333;
	padding:16px 32px;
	margin-top:10px;
	margin-bottom: 20px;
}
/* ---------------------------------------------------------
/採用情報
------------------------------------------------------------*/
/* --- 働く環境
----------------------------------------- */
.company_system{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap:20px;
	font-size:14px;
	margin-top:50px;
	margin-bottom:50px;
}
.company_system .card{
	border-radius: 5px;
	box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.2);
	padding: 15px;
	text-align: justify;
	margin-bottom:30px;
	border:1px solid var(--color-main);
}
@media screen and (max-width: 810px){
	.company_system{
	grid-template-columns: 1fr;
}
	.company_system .card{
	margin-bottom:5px;
}
}
.company_system h3{
	font-size:22px;
	text-align:left;
	margin-bottom:0;
	color: var(--color-main);
}
.ojt_wrapper{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	font-size:16px;
}
.ojt_wrapper .title{
	text-align:center;
	font-size:26px;
	color:var(--color-main);
	font-weight:bold;
	margin-bottom:10px;
}
@media screen and (max-width: 810px){
	.ojt_wrapper{
	grid-template-columns: 1fr;
	}
	.ojt_wrapper .title{
		margin-bottom:0;
		padding-bottom:10px;
	}
}
.ojt_wrapper .job_training{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media screen and (max-width: 810px){
	.ojt_wrapper .job_training{
	grid-template-columns: 1fr;
	}
}
.ojt_wrapper .ojt_img{
	border-radius:5px;
	overflow:hidden;
	aspect-ratio: 1 / 1;
}
.ojt_wrapper .ojt_img img{
	object-fit: cover;
}
.ojt_wrapper .job_training .card{
	border-radius: 5px;
	box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.2);
	padding: 15px;
	text-align: justify;
	border:1px solid var(--color-main);
}
.ojt_wrapper .job_training h4{
	font-size:22px;
	margin-bottom:0;
	font-weight:bold;
	color: var(--color-main);
}
.ojt_wrapper .job_training p{
	line-height:1.5;
	font-size:14px;
}
.ojt_card{
	border-radius: 5px;
	box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.2);
	padding: 15px;
	text-align: justify;
	margin-bottom:20px;
	border:1px solid var(--color-main);
}
.ojt_card h3{
	margin-bottom:0;
	color: var(--color-main);
	font-size:22px;
}
.ojt_card p{
	line-height:1.5;
	font-size:14px;
}
.work_life_wrapper{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
	margin-bottom:20px;
}
.work_life_title{
	margin-top:60px;
	margin-bottom:20px;
    color: var(--color-main);
    font-size: 26px;
	font-weight:bold;
}
@media screen and (max-width: 810px){
	.work_life_wrapper{
	grid-template-columns: 1fr;
	}
.ojt_card h3{
	font-size:20px;
	line-height:1.2;
	margin-bottom:10px;
	text-align:left;
}
}
.work_life_wrapper .card{
	border-radius: 5px;
	box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.2);
	padding: 15px;
	border:1px solid var(--color-main);
}
.work_life_wrapper h4{
	font-size:22px;
	font-weight:bold;
	color: var(--color-main);
	margin-bottom:0;
}
.work_life_wrapper p{
	font-size: 14px;
	line-height: 1;
}
.work_life_wrapper2{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap:20px;
	font-size:16px;
}
@media screen and (max-width:810px){
	.work_life_wrapper2{
	grid-template-columns: 1fr;
	}
}
.work_life_wrapper2 .card{
	border-radius: 5px;
	box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.2);
	padding:20px;
	border:1px solid var(--color-main);
}
.work_life_wrapper2 .border{
	border:1px solid #ddd;
	padding:10px;
	margin-bottom:20px;
}
.work_life_wrapper2 .card h4{
	font-size:24px;
	color: var(--color-main);
	font-weight:bold;
}
.work_life_wrapper2 .card img{
	width:80%;
	margin:auto;
}
.work_life_wrapper2 .card p{
	margin-top:0;
	margin-bottom:10px;
	line-height:1.5;
}
/* --- キャリアパス
----------------------------------------- */
.career_path{
	font-size:16px;
	border:1px solid var(--color-main);
	margin-top:60px;
	padding-top:0;
}
.career_path p{
	margin-left:40px;
}
.career_path table{
	width:calc(100% - 80px);
	border-collapse: collapse;
	margin:30px 40px 20px 40px;
}
.environment .career_path li{
	list-style:none;
}
@media screen and (max-width:810px){
.career_path p{
	margin:10px;
}
.career_path table{
	width:calc(100% - 20px);
	margin:10px;
}
}
.career_path th{
	border-bottom:1px solid  var(--color-main);
}
.career_path td{
	border-bottom:1px solid  #ddd;
	padding:10px;
}
.career_path tr td:nth-child(3){
	text-align:center;
}
.career-profile {
  display: flex;
  gap: 40px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  margin: 50px auto;
}
.career-profile h5{
	margin-bottom:10px;
	font-size:16px;
}
@media screen and (max-width: 810px){
	.career-profile{
		display:grid;
		grid-template-columns:1fr;
		padding: 15px;
	}
}
.profile-card {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.profile-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.profile-info h2 {
  font-size: 18px;
	margin: 0 0 18px 0;
	text-align:left;
	line-height:1.5;
}
.join, .edu {
  color: #555;
  font-size: 14px;
  text-align:left;
	margin-top:0;
}
.career-timeline {
  flex: 2;
  padding: 20px;
}
.career-timeline h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
	text-align:left;
}
.career-timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--color-main);
}
.career-timeline li {
  margin: 20px 0;
  padding-left: 20px!important;
  position: relative;
}
.career-timeline li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-main);
  border-radius: 50%;
  position: absolute;
  left: -6px;
  top: 14px;
}
.year {
  font-weight: bold;
  color: var(--color-main);
  display: block;
  margin-bottom: 5px;
}
.detail {
  font-size: 14px;
  color: #333;
}
.rct-job{
	display:grid;
	grid-template-columns:30% 70%;
	margin-bottom:30px;
}
@media screen and (max-width:810px){
	.rct-job{
		grid-template-columns:1fr;
	}
}
.rct-job img{
	max-width:300px;
	margin: 0 auto 30px auto;
	border-radius:12px;
}
/* -------- 求める人物 -------- */
#recruit .rct-person{
	max-width:900px;
	margin:100px auto 0 auto;
}
#recruit .rct-person img{
	max-width:60%;
	margin:30px auto auto auto;
}
#recruit .rct-person h3{
	padding: 0;
	margin: 0 0 20px;
	background: none;
	text-align: left;
	font-size: 32px;
	line-height: 1.4;
	letter-spacing: 0;
}
#recruit .rct-person.first h3{
	text-align: center;
	font-size: 40px;
}
#recruit .rct-person h3 span {
    background:linear-gradient(transparent 65%, #fbfb81 65%);
}
.rct-person.first{
	text-align: center;
}
.rct-person img{ margin-top: 40px; }
.rct-person-wrap{
	display: flex;
	justify-content: space-between;
	margin: 40px 0;
	border-top: 1px dotted #ccc;
}
.rct-person-wrap > div{
	width: calc(45% - 1px);
	padding-top: 40px;
}
.rct-person-wrap > div:first-child{
	border-right: 1px dotted #ccc;
	padding-right: 5%;
	margin-right: 5%;
}

#recruit .rct-person ul li{
	list-style: disc inside;
	padding: 0 0 0 1em;
	text-indent: -1em;
}

@media only screen and (max-width: 644px){
	#recruit .rct-person.first h3{
		text-align: left;
		font-size: 32px;
	}
	.rct-person.first{
		text-align: left;
	}
	.rct-person img{ 
		width: 80%;
		margin: 20px 10%;
	}
	.rct-person-wrap{
		flex-direction: column;
		margin: 0 0;
		border-top: none;
	}
	.rct-person-wrap > div{
		width: 100%;
		padding-top: 40px;
		border-top: 1px dotted #ccc;
	}
	.rct-person-wrap > div:first-child{
		border-right: none;
		padding-right: 0;
		margin-right: 0;
	}
}
/* --- /求める人物 
----------------------------------------- */
/* --- 製品情報
----------------------------------------- */
.products-info-page .bg-main{
	background-color:#fff;
}
.products-info-page .bg-main .inner p{
	color:#000;
	font-size:30px;
}
@media screen and (max-width:810px){
	.products-info-page .bg-main .inner p{
	font-size:24px;
}
}
.product-info-txt-list h3{
	font-feature-settings:"palt";
}
.product-info-txt-list p{
	text-indent:-20px;
	margin-left:20px;
}
.products-info-page h4{
	color:#000;
	font-size:28px;
	border-bottom:1px solid #CACACA;
}
@media screen and (max-width:810px){
	.products-info-page h4{
		padding:0;
		margin-bottom:30px;
	}
}
.product-info-function-list dl{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap:15px;
}
.product-info-function-list dt{
	background-color:var(--color-main);
	color:#fff;
	width:calc(30% - 15px);
	max-width:125px;
	padding-top:5px;
	padding-bottom:5px;
	text-align:center;
	font-size:20px;
	font-weight:bold;
}
.product-info-function-list dd{
	width:100%;
	max-width:calc(100% - 140px);
	color:#333;
	line-height:50px;
}
@media screen and (max-width:810px){
.product-info-function-list dl{
	display:grid;
	grid-template-columns:1fr;
}
.product-info-function-list dt,
.product-info-function-list dd{
	width:100%;
	max-width:100%;
}}
.product-info-table{
	color:#333;
	display:grid;
	grid-template-columns:calc(80% - 20px) calc(20% - 30px);
	gap:50px;
}
.product-info-table table{
	text-align:center;
	border-spacing:0;
	height:100%;
}
.product-info-table table tbody{
	height:100%;
}
.product-info-table table tr{
	display:grid;
	grid-template-columns:1fr 1fr;
	height:33%;
}
.product-info-table table tr th,
.product-info-table table tr td{
	display:flex;
	align-items:center;
	justify-content:center;
}
@media screen and (max-width:810px){
.product-info-table table tr{
	grid-template-columns:1fr;
    text-align: center;
    font-size: 20px;
	border:none;
}
.product-info-table table tr th,
.product-info-table table tr td{
    padding-top: 5px;
    padding-bottom: 5px;
	border:none;
}
	.product-info-table table tr th{
    font-weight: bold;
	}
	.product-info-table{
		gap:0;
	}
}
@media screen and (max-width:810px){
.product-info-table img{
	max-width:200px;
	margin:auto;
}
.product-info-function-list dd{
	line-height:1.5;
}
.product-info-table{
	grid-template-columns:1fr;
}
.product-info-table table{
	margin-bottom:30px;
}
.product-info-table table tr{
	height:auto;
}
}
.product-info-table table th{
	background-color:var(--color-main);
	color:#fff;
	border-bottom:1px solid #fff;
}
.product-info-table table td{
	border:1px solid #ddd;
}
.rakuraku-wrapper{
	margin-top:50px;
	display:flex;
	gap:30px;
}
.rakuraku-wrapper a{
	width:30%;
	border:1px solid #ddd;
}
@media screen and (max-width:810px){
	.rakuraku-wrapper a{
		width:50%;
	}
}
/* --- /製品情報
----------------------------------------- */
/* --- お問い合わせ
----------------------------------------- */
.contact .note{
	border:1px solid #ddd;
	padding:8px;
	margin-bottom:20px;
}
.contact .note li{
	font-size:14px;
	text-indent:-14px;
	margin-left:14px;
}
/* --- /お問い合わせ
----------------------------------------- */
/* --- プライバシーポリシーページ
----------------------------------------- */
.privacy-policy-main{
	margin-bottom:50px;
}
.privacy-policy-main p{
	text-align:left;
	font-size:16px;
}
.privacy-policy-main li{
	text-indent:-16px;
	margin-left:20px;
	padding-left:16px;
}
.page .privacy-policy-main h2.title span{
	font-size:30px;
}
/* --- /プライバシーポリシーページ
----------------------------------------- */
/* --- sitemap
----------------------------------------- */
.sitemap-wrapper{
	display:grid;
	grid-template-columns:auto auto;
	gap:30px;
	margin:auto auto 50px auto;
	width:auto;
	max-width: 700px;
}
.sitemap{
	max-width:200px;
}
.sitemap li{
	max-width:200px;
	font-weight:bold;
}
.sitemap li.sub{
	margin-left:1.8rem;
	font-weight:normal;
}
@media screen and (max-width:810px){
	.sitemap-wrapper{
	grid-template-columns:auto auto;
	}
	.sitemap li.sub{
	margin-left:1.6rem;
	}
}
/* --- 
----------------------------------------- */
@media screen and (max-width: 810px) {
    section.bussiness_top{
	margin-top:0;
	padding-top:40px;
	padding-bottom:40px;
}
}

/* --- 事業内容
----------------------------------------- */
.bussiness_products_img{
	max-width:300px;
	height:auto;
	margin:30px auto;
}
.bussiness_products_img img{
	width:100%;
	height:auto;
}