@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("sanitize.css"); 

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("../../../../cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");


/*全体の設定
---------------------------------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
html,body {
	height: 100%;
	font-size: 16px;
	min-height: 100vh;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*画面幅900px以上の追加指定ここまで*/


body {
	font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "游ゴシック体", "Yu Gothic", "YuGothic", sans-serif !important;
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	line-height: 2;		/*行間*/
    margin: 0;
	animation: opa1 0.3s 0.5s both;	/*0.5秒の間だけ非表示にし、その後0.3秒かけてフェードイン表示。上部のメインメニューのデフォルトが一瞬見えてしまうのを回避する為の応急措置です。*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {
    max-width: 800px;
    width: 100%;
    margin: 30px auto;
    display: block;
}
/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: 3rem;
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #000;		/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	color: #00173d;	/*文字色*/
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header{
	border-top: 6px solid #2472bc;
}
.hedaer_wrap{
	align-items: center;
	padding: 0;
	height: 90px;
	z-index: 1;
	width: 100%;
	max-width: 1300px;
	background: #FFF;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
header nav ul{
    display: flex;
    justify-content: end;
}
/* ナビゲーション全体 */
nav {
    display: flex;
    justify-content: space-between; 
    align-items: stretch;
	height: 100%;
}
.nav_menu_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
	margin-right: 15px;
}
.sub_menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}
.sub_menu li a {
    text-decoration: none;
    font-size: 14px;
}
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
	align-items: center;
}
.menu li {
	position: relative;
}
.menu li a {
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
}
.menu li a:last-of-type {
    padding-right: 0;
}
.menu li:last-child a{
	color: #2472bc;
	font-size: 1.5em;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
}
.mobile-nav .menu li:last-child a{
    font-weight: normal;
}
.menu li:last-child a::before {
    content: "\f879";
    font-family: "Font Awesome 5 Free";
    font-weight: 900; 
    color: #2472bc;
    margin-right: 8px; 
    font-size: 18px; 
	display: inline-block;
    vertical-align: middle;
    padding-bottom: 4px;
}
.menu li a.current::after{
    display: block;
    text-align: center;
    content: "▼";
    position: absolute;
    left: 56%;
    transform: translateX(-50%);
    bottom: -5px;
    font-size: 10px;
    color: #2472bc;
    line-height: 1;
}
.menu li a.no_current::after{
	display: none;
}
.mail_btn {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center; /* メニューと高さを揃える */
	background: linear-gradient(0deg, #08aad7 0%, #2f71b5 70%, #2472bc 100%);
	line-height: 1.5;
}
.mail_btn li a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 5px;
	font-size: 14px;
}
.mail_btn li a::before{
	content: '\f0e0';
	font-family: 'Font Awesome 5 Free';
	font-weight: normal;
    display: block;
    text-align: center;
    font-size: 1.5em;
}
.sub_menu li::before {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
    margin-right: 8px; /* マークとテキストの間隔 */
    font-size: 14px; /* サイズ調整 */
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    line-height: 2.3;
}
/* `.sub_menu` の2番目の `li` の後ろにアイコンを追加 */
.sub_menu li:nth-child(2)::after {
    content: "\f0ac"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900; 
    margin-left: 8px;
    font-size: 14px; 
    display: inline-block;
    vertical-align: middle; 
}
@media (max-width: 1165px) {
    .nav {
        display: none; /* 最初は非表示 */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #222;
        padding: 10px 0;
        text-align: center;
    }
    .nav.active {
        display: flex; 
    }
    .nav ul {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav li {
        list-style: none;
        padding: 15px 0;
    }

    .nav a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
}
.hamburger {
    display:none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    background: #2472bc;
    cursor: pointer;
    position: fixed;
    top: 0;
    right:0;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 60%;
    height: 1px;
    background: white;
    margin: 6px 0;
    transition: 0.3s;
}
@media (max-width: 1165px) {
    .hamburger {
        display: flex; /* スマホで表示 */
        position: absolute;
        top: 0;
        right: 0;
    }
}
@media (max-width: 1325px) {
    .hedaer_wrap {
        padding: 0 20px;
        box-sizing: border-box;
    }
}
@media (max-width: 600px) {
    .hedaer_wrap{
        height: 69px;
		padding: 0 10px;
        box-sizing: border-box;
    }
	.hamburger{
		height: 75px;
		width: 75px;
        box-sizing: border-box;
	}
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
	max-width: 600px;
    height: 100vh;
    background: #fff;
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    display: block;
}
@media (max-width: 600px) {
    .mobile-nav {
		padding-top: 82px;
	}
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
	display: block;
}
.mobile-nav li {
    padding: 10px 0;
}
.mobile-nav a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    display: block;
}
.mobile-nav.active {
    right: 0; 
}
.mobile-nav .menu li{
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    width: 95%;
    margin: auto;
}
.mobile-nav .menu li:last-child{
	border-bottom: none;
}
.mobile-nav .manu li a{
	padding-left: 0;
}
.mobile-nav .sub_menu{
	display: flex;
	justify-content: center;
}
.mobile-nav .sub_menu li{
	display: flex;
	justify-content: center;
}
.mobile-nav .sub_menu li::before{
	float: none;
	color: #232323;
	line-height: 2;
}
.sub_menu li:nth-child(2)::after {
	color: #232323;
}
.mobile-nav .bottom_btn {
    display: block;
    width: 95%;
	margin: auto;
}
.bottom_btn li {
    width: 100%;
}
.bottom_btn .tel {
	background: linear-gradient(0deg, #ffffff 0%, #dfe0e0 70%, #cacaca 100%);
}
.bottom_btn .tel a{
	font-size: 1.5em;
	font-family: "Oswald", sans-serif;
}
.bottom_btn .mail_btn {
    height: 69px;
    line-height: inherit;
}
.bottom_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.bottom_btn .tel a::before {
    content: "\f879";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #2472bc;
    margin-right: 8px;
    font-size: 18px;
    display: inline-block;
}
.bottom_btn .mail_btn a{
	color: #fff;
}
.bottom_btn .mail_btn a::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: normal;
    text-align: center;
    font-size: 1em;
    margin-right: 6px;
	color: #fff;
}

@media (max-width: 1165px) {
    .hamburger {
        display: flex;
    }
    .nav {
        display: none;
    }
	.menu li:last-child a {
		color: initial;
		font-size: initial;
		font-family: initial;
	}
	.menu li:last-child a::before {
        content: none; 
    }
}

/*ロゴ*/
.logo {
	max-width: 50%;
	width: 399px;
}
.logo img {display: block;width:auto;}

.logo a{
	display: flex;
	justify-items: center;
    align-items: center;
    text-decoration: none;
}
.logo p{
    color: #000;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 0.8;
}
.logo p span{
	font-size: 0.5em;
	font-weight: normal;
}
@media screen and (max-width:600px) {
.logo{
    max-width: 70%;
	z-index: 1002;
}
}


.sp{
	display: none;
}
	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:632px) {
	.sp{
		display: inherit;
	}
	.pc{
		display: none;
	}
	}/*画面幅632px以下の追加指定ここまで*/


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	margin: 0 ;	
}
/*-------------------------------------------------------------------------*/
/*スライダー*/
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
  }
  
  .slick-list {
	position: relative;
	overflow: hidden !important;
	display: block;
	margin: 0;
	padding: 0;
  }
  .slick-list:focus {
	outline: none;
  }
  .slick-list.dragging {
	cursor: pointer;
	cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
  }
  
  .slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
  }
  .slick-track:before, .slick-track:after {
	content: "";
	display: table;
  }
  .slick-track:after {
	clear: both;
  }
  .slick-loading .slick-track {
	visibility: hidden;
  }
  
  .slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
  }
  [dir="rtl"] .slick-slide {
	float: right;
  }
  .slick-slide img {
	display: block;
  }
  .slick-slide.slick-loading img {
	display: none;
  }
  .slick-slide.dragging img {
	pointer-events: none;
  }
  .slick-initialized .slick-slide {
	display: block;
  }
  .slick-loading .slick-slide {
	visibility: hidden;
  }
  .slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
  }
  
  .slick-arrow.slick-hidden {
	display: none;
  }

  .hero {
	width: 100%;
	background: #fff;
	position: relative;
  }
  .hero .hero__textwrap {
	position: absolute;
	width: 100%;
	height: 350px;
	z-index: 2;
	display: flex;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.3);
  }
  @media (min-width: 481px) {
	.hero .hero__textwrap {
	  height: 500px;
	}
  }
  @media (min-width: 769px) {
	.hero .hero__textwrap {
	  height: 650px;
	}
  }
  .hero .hero__textwrap .hero__text {
	position: relative;
	width: 95%;
	color: #fff;
	margin: 0 auto;
	padding: 20px 5%;
	letter-spacing: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
  }
  @media (min-width: 481px) {
	.hero .hero__textwrap .hero__text {
	  padding: 20px 6%;
	}
  }
  @media (min-width: 769px) {
	.hero .hero__textwrap .hero__text {
	  padding: 30px 7%;
	}
  }
  @media (min-width: 1460px) {
	.hero .hero__textwrap .hero__text {
		max-width: 1100px;
        width: 95%;
	}
  }
  .hero .hero__textwrap .hero__text .hero__text01 {
	font-size: 7.5vw;
	line-height: 1;
	font-weight: bold;
	text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.9);
	text-align: center;
	margin-bottom: 0;
	margin-top: 0;
  }
  @media (min-width: 781px) {
	.hero .hero__textwrap .hero__text .hero__text01 {
	  font-size: 32px;
	}
  }
  @media (min-width: 992px) {
	.hero .hero__textwrap .hero__text .hero__text01 {
		font-size: 40px;
    }
  }
  @media (max-width: 780px) {
	.hero .hero__textwrap .hero__text .hero__text01 {
	  font-size: 26px;
	}
  }
  .hero .hero__textwrap .hero__text .hero__text02 {
	font-size: 16px;
	line-height: 1.6;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.9);
	letter-spacing: 1px;
  }
  @media (max-width: 632px) {
	.hero .hero__textwrap .hero__text .hero__text01 {
		line-height: 1.5;
		text-align: left;
	}
	.hero .hero__textwrap .hero__text .hero__text02 {
		font-size: 14px;
		text-align: left;
	}
  }
  .hero .hero__wrap {
	width: 100%;
	margin: 0 auto;
	position: relative;
	height: 380px;
	overflow: hidden;
  }
  @media (min-width: 481px) {
	.hero .hero__wrap {
	  height: 550px;
	}
  }
  @media (min-width: 769px) {
	.hero .hero__wrap {
	  height: 700px;
	}
  }
  .hero .hero__wrap .hero__list {
	margin: 0 auto;
	padding: 0;
  }
  .hero .hero__wrap .hero__list .hero__item {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 350px;
  }
  @media (min-width: 481px) {
	.hero .hero__wrap .hero__list .hero__item {
	  height: 500px;
	}
  }
  @media (min-width: 769px) {
	.hero .hero__wrap .hero__list .hero__item {
	  height: 650px;
	}
  }
  .hero .hero__wrap .hero__list .hero__item.hero_img01 {
	background-image: url(../images/slide1.jpg);
  }
  @media (min-width: 481px) {
	.hero .hero__wrap .hero__list .hero__item.hero_img01 {
	  background-image: url(../images/slide1.jpg);
	}
  }
  .hero .hero__wrap .hero__list .hero__item.hero_img02 {
	background-image: url(../images/slide2.jpg);
	background-position-x: 75%;
  }
  @media (min-width: 481px) {
	.hero .hero__wrap .hero__list .hero__item.hero_img02 {
	  background-image: url(../images/slide2.jpg);
	  background-position: left;
	}
  }
  .hero .hero__wrap .hero__list .hero__item.hero_img03 {
	background-image: url(../images/slide3.jpg);
	background-position-x: 80%;
  }
  @media (min-width: 481px) {
	.hero .hero__wrap .hero__list .hero__item.hero_img03 {
	  background-image: url(../images/slide3.jpg);
	  background-position: right;
	}
  }
  .hero .hero__wrap .hero__list .hero__item.hero_img04 {
	background-image: url(../images/slide4.jpg);
  }
  @media (min-width: 481px) {
	.hero .hero__wrap .hero__list .hero__item.hero_img04 {
	  background-image: url(../images/slide4.jpg);
	}
  }
  .hero .hero__wrap .hero__list .hero__item img {
	width: 100%;
	height: auto;
  }
  @media print {
	.hero .hero__wrap .hero__list .hero__item img {
	  width: 100vw;
	}
  }
  
  @keyframes fadeimg {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(1.1);
	}
  }
  .slick-dots {
    position: absolute;
    bottom: -35px !important; /* ナビゲーションの位置を調整 */
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.slick-dots li {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.slick-dots li button:before{
	background-color: #555;
	height: 4px !important;
} 
.slick-dots li button:before {
    font-family: cursive;
    content: '' !important;
}
.slick-dots li.slick-active button:before {
    color: #666 !important;
}

/*コンテンツ枠
---------------------------------------------------------------------------*/
.contents{
	margin-top: 20px;
}
.contents_inner{
	width: 100%;
	max-width: 1300px;
	display: block;
	margin: auto;
    position: relative;
}
/*h2タグ
---------------------------------------------------------------------------*/
/*h2タグ全体*/
.contents h2 {
	text-align: center;
	margin: 0 0 3rem;
	font-size: 2.5em;
	letter-spacing: 0.2em;
	position: relative;	
	color:#0050c8;
	font-weight:bold;
	line-height: 1.5;
}
.contents h2 span {
	font-size:16px;
	display: block;
	color: #000;
    letter-spacing: normal;
}
@media (max-width: 500px) {
    .contents h2 {
        font-size:1.8em;
    }
}
/*about us-----------------------*/
.ab_flex_box{
	display: flex;
	align-items: center;
	justify-content:space-around;
	justify-items: start;
	margin-bottom: 90px;
}
@media (max-width: 650px) {
	.ab_flex_box{
		flex-wrap: wrap;
	}
	.link_container {
		margin-bottom: 30px;
	}
}

.link_container{
    display: inline-block;
    text-decoration: none;
    position: relative;
}
.link {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 260px; 
}
.link img {
    width: 100%;
    height: auto;
    display: block;
}
.link_text {
    color: #000;
    font-size: 16px;
	margin: 10px auto 16px !important;
    transition: transform 0.3s ease;
}
.link::before {
    content: "";
    width: 36px;
    height: 9px;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    transform: skew(45deg);
    position: absolute;
    bottom: 0;
    left: 42%;
    margin: auto;
    transition: transform 0.3s ease;
}
.link_container:hover .link::before {
    transform: skew(45deg) translateX(10px);
    border-bottom: solid 1px #0050c8;
    border-right: solid 1px #0050c8;
}
.link_container:hover .link_text {
    color: #0050c8;
}
/*映像-----------------------*/
.mv_catch{
    font-size: 16px;
    display: block;
    color: #000;
	text-align: center;
	margin-bottom: 20px;
}
.mv_flex_box{
	display: flex;
	align-items: center;
	justify-content:space-around;
	justify-items: start;
	margin-bottom: 90px;
}
@media (max-width: 650px) {
	.mv_flex_box{
		flex-wrap: wrap;
	}
}
.mv_flex_box .link_container{
	width: 30%;
	position: relative;
	overflow: hidden;
}
@media (max-width: 560px) {
	.mv_flex_box .link_container {
		width: 90%;
		margin-bottom: 20px;
	}
}
.mv img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.link_container:hover .mv img {
    transform: scale(1.1); /* 10%拡大 */
}
.mv_flex_box .link_container::after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 27px;
    line-height: 1;
    color: rgba(255, 255, 255, 1);
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
/*モーダルウィンドウ----------*/
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.5s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .video-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
  }
  .video-content video {
    width: 100%;
    height: auto;
    display: block;
  }
  .close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
  }

/*products
---------------------------------------------------------------------------*/
.products_wrap{
    background-image: url("../images/product_back.jpg");
	width: 100%;
    display: block;
	background-size: cover;
}
@supports (background-image: url("../images/product_back.webp")) {
    .products_wrap{
        background-image: url("../images/product_back.webp");
    }
}
.products_wrap .contents_inner{
	padding: 56px 0;
}
.products_wrap h2{
	color: #fff;
}
.products_wrap h2 span{
	color: #fff;
}
.pr_flex_box{
	display: flex;
	align-items: center;
	justify-content:space-around;
	justify-items: start;
	margin-bottom:7px;
}
@media (max-width: 650px) {
	.pr_flex_box{
		flex-wrap: wrap;
	}
}
.pr_flex_box .link_container{
	width: 45%;
	position: relative;
}
@media (max-width: 560px) {
	.pr_flex_box .link_container {
		width: 90%;
		margin-bottom: 60px;
	}
}
.pd{
	overflow: hidden;
	border-radius: 16px;
    border: 2px solid #fff;
	position: relative;
}
.pd img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.pd p{
	position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    width: 80%;
	line-height: 1.5;
}
.pd p span{
	font-size: 14px;
	display: block;
	font-weight: normal;
}
.link_container:hover .pd img {
    transform: scale(1.1); /* 10%拡大 */
}
.pr_flex_box .link_text{
	color: #fff;
	text-align: center;
	line-height: 1.5;
}
.pr_flex_box .link_text span{
	display: block;
	font-size: 14px;
}
.pr_flex_box .link_container:hover .link_text {
    color: #fff;
}
.products_wrap .link_container::before {
    content: "";
    width: 50px;
    height: 9px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: skew(45deg);
    position: absolute;
    bottom: -15px;
    left: 44%;
    margin: auto;
    transition: transform 0.3s ease;
}
.products_wrap .link_container:hover::before {
    transform: translateX(10px) skew(45deg);
}

/*news_location
---------------------------------------------------------------------------*/
.wide{
	max-width: 1300px;
}
.news_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
    justify-items: start;
	margin: 90px auto
}
.news_box h2{
	color: #000;
	letter-spacing: normal;
	font-weight: normal;
    line-height: 1.3;
	font-size: 2em;
	margin-bottom: 20px;
}
.news_inner,.location{
	width: 46%;
}
.news{
    padding-left: 0;
    list-style: none;
}
.news .news__item {
    border-bottom:1px solid #a6a4a4;
    padding-top: 20px;
    padding-bottom: 18px;
    line-height: 1.6em;
}
.news .news__item .news__item__date {
    margin-bottom: 6px;
}
.news__item__text::before {
    content: "≫";
    color: #ff0000;
    font-size: 1em;
    margin-right: 8px;
    display: inline-block;
}
.news_box iframe {
    width: 100%;
    height: 300px;
}
.sns_icon{
	display: flex;
	justify-content: cenrer;
    margin-top: 30px;
	gap: 13px;
}
.sns_icon img{
	width: 45px;
}
@media (min-width: 769px) {
    .news .news__item .news__row {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: stretch;
        align-items: stretch;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    .news .news__item .news__item__date {
        margin-bottom: 0px;
        width: 27%;
    }
}
@media (max-width: 560px) {
	.news_inner, .location {
		width: 95%;
	}
	.news_box {
		width: 95%;
	}
	.news_inner{
		margin-bottom: 63px;
	}
}

/*contact
---------------------------------------------------------------------------*/
.contact_wrap{
	background-color:#e6f5ff;
	padding: 60px 0;
}
.contact_flex_box{
    display: flex;
    align-items: center;
    justify-content: space-around;
    justify-items: start;
	text-align: center;
	flex-wrap: wrap;
}
.contact_flex_box a{
	text-decoration: none;
	padding-top: 33px;
}
.contact_flex_box a:hover{
	color:#fff;
}
.tel_box,.mail_box{
    border-radius: 16px;
	background-color: #0050c8;
	color: #fff;
	width: 45%;
    position: relative;
	height: 200px;
    font-weight: bold;
}
@media (max-width: 560px) {
	.contact_flex_box {
		margin-top: 63px;
	}
	.tel_box,.mail_box{
		width: 90%;
		margin-bottom: 60px;
	}
	.contact_wrap {
		padding: 60px 0 0;
	}
}
.number{
	font-family: "Oswald", sans-serif;
    font-weight: bold;
	font-size: 2.5em;
	margin-bottom: 0;
	margin-top: 20px;
    line-height: 1;
}
.number span{
    font-size: 26px;
    font-weight: normal;
}
.open_time{
	font-size: 14px;
	font-weight: normal;
    line-height: 1;
}
.kochira{
	font-size: 1.5em;
}
.tel_box::before {
    content: "\f095"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    font-size: 2.5em;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    width: 90px;
    height: 90px;
    background-color: #fff;
    color: #0050c8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #0050c8;
}
.mail_box::before {
    content: "\f0e0"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: normal;
    font-size: 2.5em;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-color: #fff;
    color: #0050c8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #0050c8;
}
.kochira::before {
    content: "";
    width: 50px;
    height: 9px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: skew(45deg);
    position: absolute;
    bottom: 36px;
    left: 44%;
    margin: auto;
    transition: transform 0.3s ease;
}
.kochira:hover::before {
    transform: translateX(10px) skew(45deg);
}

/*最下部コンテンツ
---------------------------------------------------------------------------*/
.bottom_content{
	max-width: 1300px;
	display: flex;
	justify-content: space-between;
	padding: 0 10px 20px;
}
.bottom_content a{
	text-decoration: none;
}
.breadcrumbs{
	font-size: 14px;
}
.scroll_top {
    display: inline-block;
    padding: 10px 16px;
    background-color: #888;
    color: #fff;
    text-decoration: none;
    font-size: 36px;
    line-height: 1.2;
    transition: background-color 0.3s ease;
}
.scroll_top:hover {
    background-color: #666;
	color: #fff;
}


/*フッターメニュー
---------------------------------------------------------------------------*/
.footer_contents{
	background: #f2f5f2;
}
.footer_inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 0;
}
.footer_nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	align-items: start;
}
.footer_group {
    width: 20%;
    text-align: left;
}
.footer_group h3 {
    font-size: 14px;
    margin-bottom: 10px;
}
.footer_group h3::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px; 
    font-size: 14px;
}
.footer_group ul {
    list-style: none;
    padding: 0;
}
.footer_group ul li {
    margin-bottom: 5px;
}
.footer_group ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}
.footer_group ul li a::before {
    content: "ー";
    margin-right: 8px; 
    font-size: 14px;
}
.footer_links {
    width: 20%;
    margin-bottom: 20px;
	margin-top: 7px;
    text-align: left;
}
.footer_links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
	display: block;
    line-height: 3;
}
.footer_links a::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px; 
    font-size: 14px;
}
.footer_logo {
    width: 20%;
    text-align: center;
    margin-top: 7px;
	display: flex;
	justify-content: flex-end;
    gap: 30px;
}
.footer_logo a{
	font-size: 14px;
	color: #000;
	text-decoration: none;
}
.footer_logo a::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px; 
    font-size: 14px;
}
.footer_logo img {
    width: 60px;
    height: auto;
}
.mv_sns{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mv_box{
    width: 50%;
	display: flex;
    gap: 10px;
}
.mv_box img{
    width: 30%;
    display: block;
    cursor: pointer;
}
.sns_box{
    display: flex;
    gap: 16px;
}
.footer_contents02{
	background-color: #333333;
}
.footer_contents02 .footer_inner{
    padding: 20px 0;
}
.footer_contents02 ul{
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    font-size: 14px;
	margin: 0;
}
.footer_contents02 ul a{
	color: #fff;
	text-decoration: none;
}
.footer_contents02 ul a::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight:900;
    margin-right: 8px; 
    font-size: 14px;
}
.footer_contents03{
	background-color: #000;
}
.footer_contents03 img{
	display: block;
	margin: auto;
	width: auto;
	max-width: 300px;
}
footer{
	text-align: center;
	padding: 20px 0;
}
footer p{
	line-height: 1;
	margin: 0 auto;
}
@media (max-width: 950px) {
	.footer_nav {
		width: 95%;
        margin: auto;
	}
	.footer_group {
		width: 30%;
	}
	.mv_sns {
		width: 95%;
		margin: auto;
	}
	.footer_contents02 .footer_inner {
		width: 95%;
	}
}
@media (max-width: 768px) {
    .footer_inner {
		width: 100%;
		margin: 0 auto;
		padding: 30px 0;
	}
	.footer_group {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }
	.footer_links {
		width: 100%;
		display: block;
	}
	.footer_logo {
		width: 100%;
		display: block;
	}
	.footer_logo img {
		display: none;
	}
	.mv_box {
		width: 100%;
		justify-content: center;
	}
	.sns_box {
		margin-top: 15px;
		margin: 15px auto;
	}
}
@media (max-width: 500px) {
	.footer_links {
        margin-bottom: 0;
    }
	.footer_logo {
        margin-top: 0;
        text-align: left;
        margin-left: 10px;
    }
	.mv_sns {
        width: 95%;
        margin: 30px auto 0;
        flex-wrap: wrap;
    }
	.footer_contents02 .footer_inner {
        width: 95%;
        padding: 10px 0;
    }
	.footer_contents02 ul {
		display: block;
	}
	.footer_inner {
        padding: 20px 0;
    }
	.footer_contents03 img {
		max-width: 230px;
	}
	footer p {
		font-size: 9px;
	}
}
footer{
	text-align: center;
}

/*パンくず
---------------------------------------------------------------------------*/
.bread_contents{
	margin-bottom: 60px;
	padding: 10px 20px;
}
@media (min-width: 1326px) {
    .bread_contents{
		margin-bottom: 70px;
		padding: 10px 0;
	}
}
.bread_contents .breadcrumbs{
	margin: 0;
}
.bread_contents .breadcrumbs a{
	text-decoration: none;
}
.breadcrumbs span::before{
    content: ">";
    margin: 0 8px;
    font-size: 14px;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/*ページ共通タイトル
---------------------------------------------------------------------------*/
.content_title{
	width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
	height: 200px;
	padding: 0 20px;
    box-sizing: border-box;
}
@media (min-width: 1326px) {
    .content_title{
		padding: 0 0;
    }
}
.content_title01 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
	z-index: 3;
    position: relative;
	letter-spacing: 3px;
	font-weight: normal;
}
@media (max-width: 630px) {
	.content_title{
		height: 125px;
	}
}
/*page header img
---------------------------------------------------------------------------*/
.company-img{
	background-image: url('../images/company/header.jpg');
	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.company-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to right, #0050c8 25%, #0050c8 11%, rgba(36, 114, 188, 0) 60%, rgba(36, 114, 188, 0) 80%, transparent 100%);
	z-index: 0;
}
.pr-img{
	background-image: url('../images/product/header.jpg');
	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.pr-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to right, #0050c8 25%, #0050c8 11%, rgba(36, 114, 188, 0) 60%, rgba(36, 114, 188, 0) 80%, transparent 100%);
	z-index: 0;
}
.tec-img{
	background-image: url('../images/technology/header.jpg');
	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.tec-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to right, #0050c8 25%, #0050c8 11%, rgba(36, 114, 188, 0) 60%, rgba(36, 114, 188, 0) 80%, transparent 100%);
	z-index: 0;
}

@media (min-width: 769px) {
    .company-img::before{
		background: linear-gradient(to right, #0050c8 10%, #0050c8 11%, rgba(36, 114, 188, 0) 50%, rgba(36, 114, 188, 0) 80%, transparent 100%);
    }
    .pr-img::before{
		background: linear-gradient(to right, #0050c8 10%, #0050c8 11%, rgba(36, 114, 188, 0) 50%, rgba(36, 114, 188, 0) 80%, transparent 100%);
    }
    .tec-img::before{
		background: linear-gradient(to right, #0050c8 10%, #0050c8 11%, rgba(36, 114, 188, 0) 50%, rgba(36, 114, 188, 0) 80%, transparent 100%);
    }
}
.company{
	display: flex;
	justify-content: space-between;
	margin-bottom: 90px;
}

/*---------サブメニュー---------*/
.sub_nav {
    width: 260px;
}
.pg_menu{
	margin-top: 0;
	width: 100%;
    list-style: none;
    padding-left: 0;
}
.pg_menu li{
	border-bottom: #b3b3b3 solid 1px;
	padding: 10px;
}
.pg_menu li a{
	text-decoration: none;
	color:#000;
}
.pg_menu li a::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 14px;
	color: #0064c8;
}
/*---------企業情報top---------*/
.company{
	padding: 0 20px;
}
@media (min-width: 1326px) {
    .company{
        padding: 0 0;
    }
}
.company h3{
    border-bottom: 1px solid #e6e6e6;
    position: relative;
	color: #0050c8;
	margin-top: 0;
}
.company h3:before {
    content: "";
    width: 25%;
    border-bottom: 4px solid #0050c8;
    position: absolute;
    left: 0;
    bottom: -3px;
}
.company h3:nth-child(n+2){
	margin-top: 66px;
}
.message{
	display: flex;
	width: 74%;
	align-items: self-end;
}
.message img{
	margin-left: 30px;
}
.message .name{
    text-align: right;
    margin-top: 60px;
	font-weight: bold;
}
@media (max-width: 1105px) {
    .message{
        width: 69%;
    }
    }
@media (max-width: 940px) {
    .message{
        width: 66%;
    }
    }
@media (max-width: 850px) {
    .company {
		display: block;
	}
	.message {
		width: 100%;
		margin-bottom: 60px;
	}
}
@media (max-width: 650px) {
	.content_title01 {
		font-size: 1.3rem;
	}
	.company h3:before {
		width: 50%;
	}
    .message {
        display: block;
    }
	.message img {
		margin: auto;
		display: block;
	}
	.message img.pc {
		display: none;
	}
	.sub_nav {
		width: 100%;
	}
	.message .name {
		text-align: right;
		margin-top: 30px;
		margin-right: 20px;
		font-weight: bold;
	}
}

/*---------会社概要-----------*/
.company_ov{
	width: 70%;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	margin-top: 30px;
    border-top: 1px solid #ddd;
  }  
  .company-table th,
  .company-table td {
	padding: 20px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #ddd;
  }  
  .company-table th {
	background: #f5f5f5;
	width: 30%;
	font-weight: bold;
  }  
  .company-table td {
	width: 70%;
  } 
  .company_ov .flex {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
    gap: 60px;
}
.map_btn {
    width: 66px;
    display: inline-block;
    border: 1px solid;
    padding: 5px;
    text-align: center;
    line-height: 1;
    border-radius: 35px;
	text-decoration:none;
	margin-left: 30px;
}
.company_ov .flex .btn{
    position: relative;
    display: block;
    width: 330px;
    padding: 20px;
    border: 1px solid;
    height: 72px;
    text-decoration: none;
}
.company_ov .flex .btn::before {
    content: "";
    width: 36px;
    height: 9px;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    transform: skew(45deg);
    position: absolute;
    bottom: 47%;
    right: 10%;
    margin: auto;
    transition: transform 0.3s ease;
}
.company_ov .flex .btn:hover::before {
    transform: skew(45deg) translateX(5px);
}
.company_ov .flex img {
	width: 50%;
}
@media (max-width: 850px) {
    .company_ov{
		width: 100%;
	}
	.company_ov .flex{
		display: block;
		margin-bottom: 30px;
	}
	.company_ov .flex img{
		margin:30px auto;
		display: block;
	}
	.map_btn {
		margin-left: 0;
	}
} 
@media (max-width: 768px) {
  .company-table th,
  .company-table td {
	padding: 15px 10px;
  }
}

@media (max-width: 480px) {
	.company-table {
		border: 1px solid #ddd;
	}
  .company-table tr:first-of-type th{
	  border-top: none;
  }
  .company-table th,
  .company-table td {
	display: block;
	width: 100%;
	padding: 10px;
	border-bottom: none;
	border-top: 1px solid #ddd;
  }
	.company-table tr {
	display: block;
  }
  .map_btn {
	  padding-bottom: 8px;
  }
  .company_ov .flex .btn {
    width: 100%;
  }
  .company_ov .flex img {
	width: 100%;
	border-radius: 16px;
	}
}
.text_area{
    width: 100%;
}
/*---------三井化学EMSのあゆみ-----------*/
.history_flex{
	display: flex;
	align-items: start;
}
.history_flex img{
    width: 50%;
    margin-bottom: 30px;
}
.hs_img{
	width: auto;
	max-width: 100%;
	margin: 30px auto;
}
@media (max-width: 1125px) {
	.history_flex img{
		margin-top: 25px;
	}
}
@media (max-width: 1125px) {
	.history_flex img{
		width: 45%;
		margin-bottom: 0;
		margin-top: 25px;
		margin-right: 20px;
	}
}
@media (max-width: 750px) {
	.history_flex{
		display: block;
	}
	.history_flex img{
		margin:0 auto;
		width: 100%;
	}
	.hs_img{
		width: 100%;
		margin-left: 0 !important;
	}
}

/*---------5s活動-----------*/
.img_5s{
    width: auto;
    max-width: 600px;
    display: block;
    margin: 30px auto !important;
}
@media (max-width: 750px) {
	.img_5s{
		width: auto;
		max-width: 100%;
	}
}
/*事業・製品
---------------------------------------------------------------------------*/
.text_area h2{
    text-align: left;
    color: #000;
    font-size: 1.5em;
    letter-spacing: normal;
}
.pd_img{
    width: auto;
    max-width: 100%;
    margin: auto;
    display: block;
}
.photo_flex{
    display: flex;
    align-items: start;
}
.photo_flex ul li{
    margin-bottom: 1em;
}
.photo_text {
    padding-left: 1em;
    font-weight: bold;
}
@media (max-width: 940px) {
	.photo_flex{
        display: block;
        margin-bottom: 30px;
    }
}
@media (max-width: 500px) {
    .photo_flex ul{
        padding-left: 0.6em;
    }
	.photo_text {
        padding-left:0;
    }
}
/*LSI-----------*/
.lsi_img{
    margin: 30px auto;
    width: auto;
    max-width: 100%;
    display: block;
}
/*factory------*/
.fct_img{
    margin: 30px auto !important;
    width: 100%;
    display: block;
    border: 1px solid #000;
}

/*技術開発
---------------------------------------------------------------------------*/
.about_technology{
    display: flex;
    width: 74%;
    align-items: self-start;
}
@media (max-width: 1105px) {
    .about_technology{
        width: 69%;
    }
}
@media (max-width: 940px) {
    .about_technology{
        width: 66%;
    }
}
@media (max-width: 850px) {
    .about_technology{
        width: 100%;
        margin-bottom: 60px;
    }
}
@media (max-width: 650px) {
    .about_technology{
        display: block;
    }
}

/*採用情報
---------------------------------------------------------------------------*/
.recruit_title{
    background-color: #0050c8;
    overflow: hidden;
}
.recruit_title h2{
    margin: 0.1em auto;
    color: #ffff00;
    letter-spacing: 4px;
}
@media (max-width: 1325px) {
    .recruit_title h2,.recruit{
        padding: 0 20px;
    }
}
@media (max-width:560px) {
    .recruit_title h2{
        font-size: 16px;
    }
}
.recruit_header,.environment-img{
    background-image: url(../images/recruit/header.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    height:400px;
}
@media (max-width:1080px) {
    .recruit_header,.environment-img{
        height:288px;
    }
}
@media (max-width:785px) {
    .recruit_header,.environment-img{
        height:205px;
    }
}
@media (max-width:560px) {
    .recruit_header{
        height:145px;
    }
}
@media (max-width:400px) {
    .recruit_header{
        height:106px;
    }
}
.recruit_catch{
    background-color: #147ede;
    overflow: hidden;
    padding: 40px 0 60px;
    text-align: center;
    color: #fff;
}
.recruit_catch h2{
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-size: 2.5em;
    line-height: 1.5;
}
@media (max-width:600px) {
    .recruit_catch{
        padding: 25px 0 26px;
    }
    .recruit_catch h2{
        font-size: 2em;
    }
}
@media (max-width:500px) {
    .recruit_catch h2{
        font-size: 1.5em;
        margin: 0;
    }
}
.recruit_sub_nav{
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -60px;
}
.bread_contents .recruit_sub_nav{
    justify-content: flex-end;
    margin-top: -90px;
}
@media (max-width:1055px) {
    .bread_contents .recruit_sub_nav {
        justify-content: center;
        margin-top: 0;
    }
}
.recruit_sub_nav ul{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
}
.recruit_sub_nav ul li {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 160px;
    height: 160px;
    background-color: #0050c8;
    border-radius: 50%;
    position: relative;
    text-align: center;
    color: #fff;
  }
    .recruit_sub_nav ul li a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 30px;
    line-height: 1.3;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-5%); 
  }
  .recruit_sub_nav ul li a::before{
    content: "";
    width: 40px;
    height: 9px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: skew(45deg);
    position: absolute;
    bottom: 23px;
    left: 35%;
    margin: auto;
    transition: transform 0.3s ease;
  }
  .recruit_sub_nav ul li a:hover::before {
    transform: skew(45deg) translateX(5px);
  }
  .recruit_sub_nav ul li a .mini {
    display: block;
    font-size: 0.6em;
  }
  .recruit_sub_nav ul li a .yellow {
    color: yellow;
  }
  

.recruit_sub_nav ul li.current a {
    position: relative;
    display: inline-block;
    padding-top: 45px;
}
.recruit_sub_nav ul li.current a::before{
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #0050c8;
    border-top: 1px solid #0050c8;
    transform: rotate(-135deg);
    position: absolute;
    bottom: 20px;
    left: 47%;
    transform-origin: center;
}
.recruit_sub_nav ul li.current a::after {
    content: "";
    width: 1px;
    height: 26px;
    background-color: #0050c8;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.recruit_sub_nav ul li.current {
    background: #fff;
    border: #0050c8 1px solid;
}
.recruit_sub_nav ul li.current a,
.recruit_sub_nav ul li.current a .yellow {
    color: #0050c8;
}
  
@media (max-width:500px) {
    .recruit_sub_nav ul li {
        width: 150px;
        height: 150px;
      }
}
.rec_top{
    letter-spacing: normal !important;
    margin-top: 90px !important;
}
@media (max-width:500px) {
.rec_top {
    font-size: 1.5em !important;
}
}
.recruit-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 auto 90px;
  }
  .recruit-menu li {
    position: relative;
    padding: 0 50px;
    text-align: center;
  }
  .recruit-menu li:not(:last-child)::after {
    content: "｜";
    position: absolute;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    color: #333;
    font-size: 35px;
  }
  .recruit-menu li a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    position: relative;
    padding-bottom: 20px;
    font-size: 1.2em;
  }
  .recruit-menu li a::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom:-16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #ffa400;
  }
  .recruit-menu li.left-border::before {
    content: "｜";
    position: absolute;
    left: -10px;
    top: 35%;
    transform: translateY(-50%);
    color: #333;
    font-size: 35px;
  }
  .recruit-menu li.right-border::after {
    content: "｜";
    position: absolute;
    right: -10px;
    top: 35%;
    transform: translateY(-50%);
    color: #333;
    font-size: 35px;
  }
  .recruit-menu li.right-border{
    padding-left: 25px;
  }

  /*はたらく環境
  ------------------------*/
.recruit_title_inner {
    width: 100%;
    max-width: 1200px;
    height: 100%; /* 高さがある場合に中央配置するために必要 */
    display: flex; /* Flexbox有効化 */
    align-items: center; /* 縦中央揃え */
    justify-content: flex-start; /* 左揃え */
    margin: auto;
    position: relative;
}

.environment-img{
    background-image: url(../images/recruit/header01.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.environment-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0050c8; /* 青い色 */
    clip-path:polygon(0% 0%, 33% 0, 25% 100%, 0% 100%);
    z-index: 1;
    pointer-events: none;
}
.environment-img .content_title01{
    font-size: 3rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: normal;
}
.environment-img h2 .yellow{
    color: yellow;
}
.environment-img h2 .mini{
    display: block;
    font-weight: bold;
    font-size: 2rem;
}
@media (max-width:795px) {
    .environment-img .content_title01 {
        font-size: 2rem;
    }
    .environment-img h2 .mini {
        font-size: 1.5rem;
    }
}
@media (max-width:575px) {
    .environment-img .content_title01 {
        font-size:2rem;
    }
    .environment-img h2 .mini {
        font-size: 1.2rem;
    }
}

@media (max-width:450px) {
    .recruit_topnav {
        padding: 0;
    }
    .recruit_sub_nav ul li {
        width: 130px;
        height: 130px;
    }
    .recruit_sub_nav ul li a {
        font-size: 25px;
    }
    .recruit_sub_nav ul li.current a {
        padding-top: 39px;
    }
    .recruit_sub_nav ul li.current a::after {
        bottom: 8px;
        left: 51%;
    }
    .recruit_sub_nav ul li.current a::before {
        bottom: 10px;
        left: 47%;
    }
    .environment-img::before {
        clip-path: polygon(0% 0%, 58% 0, 31% 100%, 0% 100%);
    }
}
.recruit h3{
    font-size: 2em;
    text-align: center;
}
@media (max-width:650px) {
    .recruit h3{
        font-size: 1.5em;
        line-height: 1.3;
    }
}
.folder-box {
    position: relative;
    background-color: #e6f5ff;
    border-radius: 8px;
    padding: 40px 20px 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.folder-box::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    width: 20%;
    height: 62px;
    background-color: #e6f5ff;
    border-radius: 8px 8px 0 0;
    clip-path: polygon(
        0 0,
        86% 0,
        100% 100%,
        0% 100%
    );
}
@media (max-width:500px) {
.folder-box::before {
    top: -21px;
    height: 30px;
}
}
.enviroment_article{
    width: 46%;
    padding: 20px;
}
@media (max-width:650px) {
    .enviroment_article{
        width: 100%;
        padding: 0;
    }
}
.enviroment_article dl {
    border-bottom: 1px solid #fff;
}
.enviroment_article dl dt{
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-top: 60px;
}
.enviroment_article dl  dt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-image: url('../images/recruit/icon01.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.enviroment_article .article02  dt::before {
    background-image: url('../images/recruit/icon02.png');
}
.enviroment_article .article03  dt::before {
    background-image: url('../images/recruit/icon03.png');
}
.enviroment_article .article04  dt::before {
    background-image: url('../images/recruit/icon04.png');
}
.enviroment_article .article05  dt::before {
    background-image: url('../images/recruit/icon05.png');
}
.enviroment_article .article06  dt::before {
    background-image: url('../images/recruit/icon06.png');
}

.enviroment_article dl dd{
    padding: 10px 20px;
}
.enviroment_article dl dd:nth-of-type(odd) {
    background-color: #fff;
    border-radius: 8px;
}
/*募集要項
-------------*/
.back_blue{
    background-color: #0050c8;
    padding: 60px 20px;
    margin: 120px auto;
}
.back_blue h2{
    color: #fff;
    letter-spacing: normal;
}
@media (max-width: 500px) {
    .back_blue h2{
        font-size: 1.5em;
    }
}
.applicant{
    background-color: #fff;
    display: block;
    padding: 10px 20px 20px !important;
    width: 46%;
    text-align: left;
}
.applicant p{
    font-weight: bold;
    font-size: 1.3em;
    color: #000;
}
.applicant p span{
    display: block;
    font-size: 0.8em;
    font-weight: normal;
    text-indent: 2em;
}
.applicant p::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 1.3em;
    color: #ffa400;
}
@media (max-width:912px) {
    .applicant{
        width: 49%;
    }
}
@media (max-width:800px) {
    .applicant{
        width: 100%;
        margin-bottom: 10px;
    }
    .applicant p {
        margin: 0;
        line-height: 1.8;
    }
}
@media (max-width:500px) {
    .applicant {
        padding: 10px 10px 20px !important;
    }
    .applicant p span {
    text-indent: 0;
    }
}
/*募集要項
---------------------------------*/
.requirements{
    background-color: #0050c8;
    overflow: hidden;
}
.requirements .recruit_title_inner {
    justify-content: center;
    position: relative;
}
.abs{
    position: absolute;
    left: 0;
    bottom: -4px;
    color: #fff;
    font-size: 5em;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    margin: 0;
    line-height: 1;
}
@media (max-width:645px) {
    .abs {
        font-size: 4em;
    }
}
@media (max-width:500px) {
    .abs {
        font-size: 3em;
    }
}
.tabs {
    width: 100%;
    margin: 0 auto 60px;
  }
  .tab-menu  {
    display: flex;
    justify-content: start;
    list-style: none;
    padding: 0;
    margin: 0;
}
  .tab-menu li {
    cursor: pointer;
    padding: 15px 66px;
    border: 1px solid #00aaff;
    background-color: #fff;
    color: #00aaff;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
    font-size: 1.5em;
  }
  .tab-menu li.active {
    background-color: #00aaff;
    color: #fff;
    font-weight: bold;
    font-size: 1.6em;
  }
  .tab-contents {
    background-color: #00aaff;
    padding: 30px;
  }
  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: block;
    color: #fff;
  }
    
.tab-contents dl{
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.tab-contents dl dt{
    max-width: 190px;
    width: 20%;
    border-top: 1px solid #fff;
    padding: 20px;
    font-weight: bold;
}
.tab-contents dl dd{
    width: 80%;
    border-top: 1px solid #fff;
    padding: 20px;
}

@media (max-width: 800px) {
    .tab-menu li {
        padding: 15px;
        font-size: 1.2em;
    }
    .tab-contents dl {
        display: block;
    }
    .tab-contents dl dt {
        max-width: initial;
        width: 100%;
        padding: 20px 20px 0;
    }
    .tab-contents dl dd {
        width: 100%;
        border-top: none;
        padding: 10px 20px 20px;
    }
    .tab-contents {
        padding: 10px;
    }
  }
  .requirements_info{
    font-size: 2em !important;
  }
  @media (max-width: 500px) {
  .requirements_info {
    font-size: 1.5em !important;
    margin-bottom: 0 !important;
  }
  .tab-menu li {
    padding: 15px;
    font-size: 1em;
    font-weight: normal;
    }
    .tab-menu li.active {
        font-size: 1.2em;
        font-weight: normal;
    }
}
  .requirements_box .tel_box,.requirements_box .mail_box {
    border-radius: 16px;
    background-color: #fff;
    color: #0050c8;
    width: 45%;
    position: relative;
    height: 250px;
    font-weight: bold;
    padding-top: 44px;
}
.requirements_box .contact_flex_box a:hover{
	color:#0050c8;
}
.requirements_box .kochira::before {
    content: "";
    width: 50px;
    height: 9px;
    border-bottom: solid 1px #0050c8;
    border-right: solid 1px #0050c8;
    transform: skew(45deg);
    position: absolute;
    bottom: 65px;
    left: 44%;
    margin: auto;
    transition: transform 0.3s ease;
}
@media (max-width: 730px) {
    .requirements_box .tel_box, .requirements_box .mail_box {
        width: 100%;
        margin-bottom: 39px;
        margin-top: 39px;
    }
}
@media (max-width: 500px) {
    .requirements_box .contact_flex_box{
        margin-top: 23px;
    }
}
.btm0{
    margin-bottom: 0 !important;
}
@media (max-width: 500px) {
    .btm0 {
        padding-bottom: 20px;
    }
}
.requirements_bottom .btn {
    position: relative;
    display: block;
    width: 330px;
    padding: 20px;
    border: 1px solid;
    height: 72px;
    text-decoration: none;
    margin: 67px auto;
    text-align: center;
    color: #000;
}
.requirements_bottom .btn::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 14px;
    color: #ffa400;
}
/*延岡
-----------------------*/
.nobeoka_header{
    background-image: url(../images/recruit/header02.jpg);
}
.nobeoka_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 130px;
}
.nobeoka_flex:nth-of-type(even) {
    flex-direction: row-reverse;
}
.nobeoka_flex img{
    width:57%;
}
.nobeoka_flex .text_box{
    width: 40%;
}
.nobeoka_flex .text_box h4{
    text-align: center;
    border-bottom: 1px solid;
    font-size: 1.3em;
}
@media (max-width: 800px) {
    .nobeoka_flex{
        display: block;
    }
    .nobeoka_flex .text_box,.nobeoka_flex img{
        width: 100%;
    }
    .nobeoka_flex .text_box{
        margin: 30px auto;
    }
}


/*人々
-----------------------*/
.people_header{
    background-image: url(../images/recruit/header03.jpg);
}
.center_wrapper {
    display: flex;
    justify-content: center;
}
.people_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}
.pepole_contents{
    width: 30%;
    text-decoration: none;
    max-width: 350px;
}
.people_txt{
	text-align: center;
}
.rounded-heading{
    display: block;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 30px;
    color: #000;
    text-align: center;
    white-space: nowrap;
    margin: 60px auto 30px;
    width: 90%;
    max-width: 510px;
}

.date_box {
    color: #fff;
    text-decoration: none;
    display: flex;
}
.date_box .dept{
    background-color: #000;
    padding: 0 10px;
}
.date_box .old{
    background-color: #ff5e87;
    padding: 0 10px;
}
.speech-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin:200px 0 30px;
}

.speech-bubble {
  background-color: #ffa400;
  color: white;
  padding: 10px 20px;
  border-radius: 3px;
  position: relative;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  font-size: 1.5em;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 8px 0;
  border-style: solid;
  border-color: #ffa400 transparent transparent transparent;
}
.speech_title{
	color: #ffa400;
	margin-bottom: 0;
}
p.speech_txt {
    text-align: center;
}
@media (max-width: 750px) {
    .pepole_contents {
        width: 45%;
        margin-bottom: 20px;
    }
    .speech-container {
	  display: block;
  		margin:90px 0 30px;
	}
	.speech-bubble {
    margin-bottom: 20px;
    font-size: 1em;
	}

}
@media (max-width: 500px) {
    .pepole_contents {
        width: 100%;
        max-width: max-content;
    }
    .people_txt{
	text-align:left;
	}
}

@media (min-width: 1225px) {
    .speech-bubble {
    width: 30%;
    max-width: 363px;
}
}


/*Interview
-----------------------*/
.top_flex{
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 15px;
}

.top_flex .message{
    position: relative;
    padding: .5em .7em .4em;
    border-bottom: 1px solid #000;
    color: #333333;
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.6;
    width: 57%;
}
  
.top_flex .message::before{
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #000;
    content: '';
    z-index: 1;
}
.top_flex .message::after {
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 33px;
    height: 16px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #ffffff;
    content: '';
    z-index: 2;
}
  
.top_flex .mark p{
    display: block;
    border: 1px solid;
    padding: 0px 50px;
    border-radius: 25px;
}
.people_wrap .people_flex{
    display: flex;
    align-items: start;
    margin: 60px auto;
    border-bottom: 1px solid;
    padding-bottom: 60px;
}
.people_wrap .people_flex:last-child{
    border-bottom: none;
    margin-bottom: 132px;
}

.people_flex:nth-of-type(even) {
    flex-direction: row-reverse;
}
.theme{
    width: 30%;
    text-align: center;
    position: relative;
}
.theme_text{
    width: 63%;
}
.theme p{
    background-color: #0050c8;
    padding: 15px 0;
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
}
  
  .theme p::before,
  .theme p::after,
  .theme p span.arrow-head {
    position: absolute;
    content: "";
  }
  
  .people_flex:nth-of-type(even) .theme p::before {
    /* 左矢印用のスタイル */
    bottom: -38px;
    right: calc(39% - 10px); /* 右基準に */
    left: auto;
    width: 20px;
    height: 10px;
    background-color: #0050c8;
  }
  
  .people_flex:nth-of-type(even) .theme p::after {
    bottom: -34px;
    right: 37%;
    left: auto;
    width: 86px;
    height: 1px;
    background-color: #0050c8;
  }
  
  .people_flex:nth-of-type(even) .theme p span.arrow-head {
    bottom: -36px;
    right: calc(35% + 75px);
    left: auto;
    width: 18px;
    height: 10px;
    border-top: 1px solid #0050c8;
    transform: rotate(-40deg); /* 左向き */
  }
  
  .people_flex:nth-of-type(odd) .theme p::before {
    bottom: -38px;
    left: calc(39% - 10px);
    width: 20px;
    height: 10px;
    background-color: #0050c8;
  }
  
  .people_flex:nth-of-type(odd) .theme p::after {
    bottom: -34px;
    left: 37%;
    width: 86px;
    height: 1px;
    background-color: #0050c8;
  }
  
  .people_flex:nth-of-type(odd) .theme p span.arrow-head {
    bottom: -36px;
    left: calc(35% + 75px);
    width: 18px;
    height: 10px;
    border-top: 1px solid #0050c8;
    transform: rotate(40deg); /* 右向き */
  }

  .recruit_btm_nav {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -60px;
}
.recruit_btm_nav ul {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
}
.recruit_btm_nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    background-color: #0050c8;
    border-radius: 50%;
    position: relative;
    text-align: center;
    color: #fff;
}
.recruit_btm_nav ul li a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 30px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-5%);
}
.recruit_btm_nav ul li a .mini {
    display: block;
    font-size: 0.6em;
}
  .recruit_btm_nav ul li a::before{
    content: "";
    width: 40px;
    height: 9px;
    border-bottom: solid 1px #fff;
    border-left: solid 1px #fff;
    transform: skew(-45deg);
    position: absolute;
    bottom: 45px;
    left: 39%;
    margin: auto;
    transition: transform 0.3s ease;
}
.recruit_btm_nav ul li a:hover::before {
    transform: skew(-45deg) translateX(-5px);
  }  

@media (max-width: 935px) {
    .top_flex {
        display: block;
    }
    .top_flex .message {
        width: 100%;
    }
    .top_flex .mark p {
        display: inline-block;
    }
    .people_wrap .people_flex {
        display: block;
    }
    .theme {
        width: 100%;
        margin-bottom: 66px;
    }
  .people_flex::before,
  .people_flex::after,
  .people_flex p::before,
  .people_flex p::after,
  .people_flex .arrow-head {
    display: none;
    content: none;
  }
  .theme_text {
    width: 100%;
    }
}
@media (max-width: 500px) {
    .theme {
        margin-bottom: 25px;
    }
    .top_flex .message {
        margin-bottom: 15px;
    }
    .people_wrap .people_flex {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
}



/*サイトのご利用について
---------------------------*/
.site_info{
    background-image: url(../images/siteinfo/header.jpg);
}
.site_info .content_title01{
    letter-spacing: normal;
}
.site_info_contents{
    padding: 0 20px;
    margin-bottom: 200px;
}
@media (min-width: 1326px) {
    .site_info_contents{
        padding: 0 0;
    }
}
.site_info_contents dl{
    margin: 60px auto 120px;
}
.site_info_contents dl dt{
    font-weight: bold;
}
.site_info_contents dl dd{
    margin-bottom: 30px;
}
/*個人情報及び特定個人情報の保護について
---------------------------*/
.site_info_contents h3 {
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    color: #0050c8;
    margin-top: 0;
    margin-top: 60px;
}
.site_info_contents h3:before {
    content: "";
    width: 25%;
    border-bottom: 4px solid #0050c8;
    position: absolute;
    left: 0;
    bottom: -3px;
}
.site_info_contents .mini{
    display: inline-block;
    font-size: 0.8em;
    font-weight: normal;
}
.yougo{
    font-size: 0.9em;
}
.site_info_contents table {
    width: 100%;
    border: 1px solid #b4b4b4;
    border-right: none;
}
.table .table__th:first-of-type {
    border-left: none;
}
.table .table__th.th-center {
    text-align: center;
}
.table .table__th {
    background: #e6e6e6;
    border: 1px solid #b4b4b4;
    border-top: none;
    border-bottom: none;
    padding: 10px 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.table .table__td-t {
    border: 1px solid #b4b4b4;
    padding: 10px 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*サイトマップ
---------------------------------*/
.sitemap {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  .sitemap h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .sitemap-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
  }
  .sitemap-list > li {
    margin-bottom: 20px;
    width: 33%;
  }
  .sitemap-list > li > a {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: #0050c8;
    display: inline-block;
    padding: 10px 0;
    transition: color 0.3s;
  }
  .sitemap-list > li > a:hover {
    color: #003f9a;
  }
  .sitemap-list li ul {
    list-style: none;
    padding-left: 20px;
  }
  .sitemap-list li ul li {
    margin-bottom: 10px;
  }
  .sitemap-list li ul li a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }
  .sitemap-list li ul li a:hover {
    color: #0050c8;
  }
  
  @media (max-width: 600px) {
    .sitemap-list > li {
        width: 100%;
    }
    .sitemap {
      padding: 20px 10px;
    }
    .sitemap h1 {
      font-size: 1.5rem;
    }
    .sitemap-list > li > a {
        font-size: 0.9rem;
    }
  }
  .sitemap-list li ul li a::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 14px;
}
/*お問い合わせフォーム
-----------------------------------------*/
.contact-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .tableBox {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  .tableBox th, .tableBox td {
    border: 1px solid #ddd;
    padding: 12px;
  }
  
  .tableBox th {
    width: 30%;
    background: #f5f5f5;
    text-align: left;
  }
  
  .tableBox td input,
  .tableBox td textarea,
  .tableBox td select {
    width: 95%;
    padding: 8px;
    font-size: 1em;
  }
  
  .need {
    color: red;
    font-size: 0.9em;
  }
  
  .privacy-policy {
    border: 1px solid #ccc;
    margin-bottom: 20px;
  }
  
  .scroll-box {
    max-height: 200px;
    overflow-y: scroll;
    padding: 10px;
    background-color: #fafafa;
    font-size: 0.9em;
  }
  
  .checkbox1 {
    margin-bottom: 20px;
  }
  
  .button_div {
    text-align: center;
  }
  
  .button {
    background-color: #0050c8;
    color: #fff;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }
  
  .button:hover {
    background-color: #003c99;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .tableBox,
    .tableBox tbody,
    .tableBox tr,
    .tableBox th,
    .tableBox td {
      display: block;
      width: 100%;
      border: none !important;
    }
  
    .tableBox tr {
      margin-bottom: 20px;
    }
  
    .tableBox th {
      background: #f5f5f5;
      font-weight: bold;
      border: none;
      padding: 10px;
    }
  
    .tableBox td {
      border: none;
      padding: 10px 0;
    }
  
    /* 入力欄やセレクトボックスの調整 */
    .tableBox td input,
    .tableBox td textarea,
    .tableBox td select {
      width: 100%; /* 100%に変更 */
      box-sizing: border-box;
    }
  
    /* 必須項目のマーク位置調整 */
    .tableBox .need {
      display: inline-block;
      margin-left: 5px;
    }
  }
  