@charset "utf-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
}
body {
	background: url(../images/body_bg.png);
}
.w_base {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}
.w_base02 {
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: none;
}

.hd_bg .hd-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hd_bg .swiper-slide {
  width: 100%;
  height: 100%;
}

.hd_bg .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hd {
	position: relative;
	height: 160px;
}

.hd_logo{
  padding: 25px;
}
.hd_logo a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.hd_logo a:hover {
  color: #ffffff;
  text-decoration: none;
}


.page_hd_bg {
	position: relative;
	background: url(../images/hd_bg.png)  top center;
	background-size: cover;
}
.page_hd {
	position: relative;
	height: 120px;
}
.page_hd_logo {
  padding-top: 25px;
}
.page_hd_logo a:hover {
  color: #ffffff;
  text-decoration: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
	position: absolute;
	top: 30px;
	right: 30px;
}
.nav {
}
.nav_list {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin: 0 0 10px;
}
.nav_list>li {
	position: relative;
	z-index: 1000
}
.nav_list>li>a {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.nav_list>li a:after {
	content: "/";
	display: inline-block;
	margin: 0 5px;
	color: #fff;
}
.nav_list>li:last-of-type a:after {
	content: "";
	margin: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
}
.con_bg h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	padding: 30px 0;
	background-color: #f0f0f0;
	background-size: cover;
}
.con_bg h1 span {
	display: inline-block;
	margin: 0 0 0 15px;
	font-size: 22px;
	font-weight: normal;
}
.con {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 30px;
	background: #fff;
}
.main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: url(../images/ft_bg.png) no-repeat;
	background-size: cover;
}
.ft {
	position: relative;
	padding: 30px 30px 10px;
}

.ft_logo{
  padding: 25px 0;
}
.ft_logo a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.ft_logo a:hover {
  color: #ffffff;
  text-decoration: none;
}


.ft_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 70px;
}
.ft_con .ft_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0 0;
}
.ft_con .ft_nav .ft_nav_list>li {
	margin: 0 0 5px
}
.ft_con .ft_nav .ft_nav_list>li>a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}
.ft_con .ft_bnr {
    position: relative;
    width: 540px;
}
.ft_con .ft_bnr ul {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.ft_con .ft_bnr ul>li {
	width: calc(100% / 3 - 5px);
}
.ft_con .ft_bnr ul>li>a {
	position: relative;
	display: block;
	padding: 10px 5px;
	background: #fff;
	color: #636363;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.ft_con .ft_bnr ul>li>a:after {
	position: absolute;
	top: 0;
	right: 5px;
	content: url(../images/icon_elink_gray.png);
}
.ft_copy {
	color: #fff;
	font-size: 12px;
	text-align: center;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	position: absolute;
	top: 30px;
	right: 10px;
	width: 30px;
	height: 70px;
	z-index: 100;
}
.pt_btn {
	border-radius: 50%;
	color: #FFF;
	cursor: pointer;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	font-size: 15px;
	font-weight: bold;
	height: 100%;
	line-height: 1.3;
	opacity: 0.8;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	width: 100%;
}
.pt_btn:before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50% ,0);
	content: url(../images/pt_arrow.png);
}
.pt_btn:hover {
	opacity: 0.6;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_hd {
  position: relative;
  z-index: 2; /* スライダーより前面に */
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.index_hd .eyecatch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
	z-index: 3;
}
.index_hd .eyecatch span {
	display: block;
    font-family: 'Roboto', sans-serif;
	font-size: 82px;
	margin: 0 0 10px;
}
.index_hd .fuwafuwa {
	-webkit-animation: fuwafuwa 1.8s linear infinite;
	animation: fuwafuwa 1.8s linear infinite;
}
@keyframes fuwafuwa {
	0% {
		margin-bottom:-4px;
		opacity:1;
	}
	50% {
		margin-bottom:4px;
		opacity:0.7;
	}
	100% {
		margin-bottom:-4px;
		opacity:1;
	}
}
.index_hd .button_down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50% ,0);
	display: block;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	z-index: 100;
	transition: All 0.5s ease;
}
.index_hd .button_down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50% ,0);
	display: block;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	z-index: 100;
	transition: All 0.5s ease;
}
.index_hd .button_down:after {
	content: url(../images/pt_arrow.png);
	display: block;
	transform: rotate(-180deg);
}

.index_info {
	margin: 0 0 50px;
}
.index_info h2 {
	color: #001746;
	font-size: 50px;
    font-family: 'Roboto', sans-serif;
	margin-bottom: 0px
}
.index_info h2 span {
	display: block;
	margin: -15px 0 0;
	font-size: 16px;
	font-weight: normal;
}
.index_info_con {
	display: flex;
	flex-wrap: wrap;
	margin: 40px 0 0;
}
.index_info_con dl {
	display: flex;
	width: 100%;
	margin: 0 0 40px;
}
.index_info_con dl dt {
	display: flex;
	align-items: center;
	height: 86px;
	padding: 10px 6px;
	background: #001746;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 26px;
	text-align: center;
}
.index_info_con dl dt span {
	display: block;
    font-size: 16px;
}
.index_info_con dl dd {
	margin: 0 0 0 10px;
	font-size: 18px;
}
.index_info_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.index_info_new:before {
	content: "NEW"
}

.index_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index_con>div {
    width: calc(100% / 2 - 30px);
    margin: 0 0 40px;
}
.index_con div h2 {
	color: #001746;
	font-size: 50px;
    font-family: 'Roboto', sans-serif;
	margin-bottom: 20px
}
.index_con div h2 span {
	display: block;
	margin: -15px 0 0;
	font-size: 16px;
	font-weight: normal;
}
.index_con div figure img {
    width: 100%;
}
.index_con div a {
	position: relative;
	display: block;
}
.index_con div a span {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 10px;
	background: #000;
	color: #fff;
	font-size: 35px;
	font-weight: bold;
}
.index_con div .more a {
	position: relative;
	display: block;
	width: 310px;
	margin: 30px 0 0;
	padding: 17px 0;
	font-size: 18px;
	font-weight: bold;
	color: #001746;
	text-align: center;
	text-decoration: none;
	border: 1px solid #001746;
	transition: all 0.5s ease;
}
.index_con div .more a:hover {
	background: #001746;
	color: #fff;
}
.index_con div .more a:after {
	position: absolute;
	right: 10px;
	transform: translate(0, -50%);
	display: inline-block;
	content: url(../images/more_arrow.png);
	width: 22px;
	height: 6px;
	transition: all 0.5s ease;
}
.index_con div .more a:hover:after {
	content: url(../images/more_arrow_ov.png);
}

.index_message {
	padding: 75px 0;
	background: url(../images/index_bg.png);
	background-size: cover;
}
.index_message_eyecatch {
	margin: 0 0 30px;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}
.index_message_eyecatch span {
    display :block;
    margin: 0 0 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 45px;
}
.index_message p {
	padding: 0 50px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
    line-height: 2.2;
}

.index_access {
    padding: 70px 0 0;
}
.index_access h2 {
	color: #001746;
	font-size: 50px;
    font-family: 'Roboto', sans-serif;
	margin-bottom: 0px
}
.index_access h2 span {
	display: block;
	margin: -15px 0 0;
	font-size: 16px;
	font-weight: normal;
}
.index_access p {
	margin: 15px 0 20px;
	font-size: 16px;
}
#index_access_map {
    width: 100%;
    height: 500px;
}
#index_access_map iframe {
    width: 100%;
    height: 100%;
}

.more a {
	position: relative;
	display: block;
	width: 310px;
	margin: 0 auto;
	padding: 17px 0;
	font-size: 18px;
	font-weight: bold;
	color: #001746;
	text-align: center;
	text-decoration: none;
	border: 1px solid #001746;
	transition: all 0.5s ease;
}
.more a:hover {
	background: #001746;
	color: #fff;
}
.more a:after {
	position: absolute;
	right: 10px;
	transform: translate(0, -50%);
	display: inline-block;
	content: url(../images/more_arrow.png);
	width: 22px;
	height: 6px;
	transition: all 0.5s ease;
}
.more a:hover:after {
	content: url(../images/more_arrow_ov.png);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/

.table_design {
border-collapse: collapse;
width: 100%;
}
.table_design th, .table_design td {
border-bottom: 2px solid #c1c7c6;
padding: 1em;
font-size: 1.2em;
}
.table_design th {
border-bottom: 2px solid #001746;;
font-weight: bold;
text-align: center;
width: 20%;
min-width: 4em;
}

/* =========================
   カードレイアウト全体
========================= */
#cardlayout_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2em auto;
    max-width: 960px;
    width: 100%;
}

/* =========================
   カード本体
========================= */
.card_list {
    width: 96%;
    margin: 0.5em auto;
    background: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.card_list * {
    text-decoration: none;
}


/* =========================
   画像
========================= */
.card_figure {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card_figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* =========================
   テキスト
========================= */
.card_title {
    font-size: 1.6em;
	margin-top: 0 !important;
    color: #333;
}

.card_text{
	text-align: center;
	padding: 20px;
	color: #001d4f;
}

/* =========================
   カード本体（スマホ：1カラム）
========================= */
.card_list {
    width: 100%;
    margin: 0.5em 0;
    background: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* =========================
   タブレット（2カラム）
========================= */
@media (min-width: 768px) and (max-width: 991px) {
    .card_list {
        width: 48%;
        margin: 1% 0;
    }
}

/* =========================
   PC（3カラム）
========================= */
@media (min-width: 992px) {
    .card_list {
        width: 31.33%;
        margin: 1% 0;
    }
}

/* =========================
   採用情報
========================= */
.recruit{
max-width:900px;
margin:auto;
font-family:sans-serif;
line-height:1.7;
}

.hero{
text-align:center;
padding:80px 20px;
}

.hero_content h1{
font-size:3em;
background-color: initial;
margin-bottom:10px;
}

.lead{
font-size:2em;
font-weight:bold;
margin-bottom: initial !important;
}

.tag{
color:#666;
}

section{
margin:60px 0;
}

.map{
margin-top:30px;
border-radius:8px;
overflow:hidden;
text-align: center;
margin-top: 3em;
}


h2{
font-size:26px;
padding-left:10px;
margin-bottom:25px;
}

/* チェック */
.check_list{
list-style:none;
padding-left:0;
margin:0;
}

.check_list li{
position:relative;
padding-left:32px;
margin-bottom:10px;
}

.check_list li::before{
content:"✓";

position:absolute;
left:0;
top:2px;

width:18px;
height:18px;

border-radius:50%;
border:2px solid #86cddf; /* 丸の線 */

color:#86cddf; /* チェックの色 */

display:flex;
align-items:center;
justify-content:center;

font-size:12px;
font-weight:bold;
background:#fff;
}


/* ◇ */
.diamond_list{
list-style:none;
padding-left:0;
margin-top:10px;
}

.diamond_list li{
position:relative;
padding-left:20px;
margin-bottom:6px;
}

.diamond_list li::before{
content:"◇";
position:absolute;
left:0;
color:#86cddf;
}

.diamond_list li::marker{
content:"";
}
.check_list li::marker{
content:"";
}

.company table{
width:100%;
border-collapse:collapse;
}

.company th,
.company td{
padding:14px 0;
border-bottom:1px dotted #ccc;
}

.company th{
width:160px;
text-align:left;
font-weight:600;
color:#555;
}

.company td{
color:#333;
}

.sp_only{
	display: none;
}

.hero{
position:relative;
min-height:400px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
overflow:hidden;
}

.hero_content{
position:relative;
z-index:2;
}

.hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.4);
z-index:1;
}

.hero_slider {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  overflow:hidden;
}

.hero_slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fadeSlide 15s infinite;
}

.hero_slider .slide:nth-child(1) { animation-delay: 0s; }
.hero_slider .slide:nth-child(2) { animation-delay: 4s; }
.hero_slider .slide:nth-child(3) { animation-delay: 8s; }
.hero_slider .slide:nth-child(4) { animation-delay: 12s; }

@keyframes fadeSlide {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  40%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero_btn{
display:inline-block;
margin:10px;
padding:12px 20px;
background:#001746;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:bold;
font-size: 1.3em;
}



.job{
border:1px solid #ddd;
margin-bottom:15px;
border-radius:6px;
overflow:hidden;
}

.job_body{
padding:20px;
}

.job_body p{
  margin-left: 20px;
}

.photo_slider{
display:flex;
gap:20px;

overflow-x:auto;
scroll-snap-type:x mandatory;

padding-bottom:10px;
}

.photo{
flex:0 0 300px;

scroll-snap-align:start;
}

.photo img{
width:100%;
border-radius:8px;
}

.photo p{
font-size:13px;
text-align:center;
margin-top:8px;
}

/* =========================
   summary 矢印カスタム（iPhone対策）
========================= */
.job summary{
  position: relative;
  padding:15px 15px 15px 40px;
  font-weight:bold;
  cursor:pointer;
  background:#f5f5f5;

  list-style: none;
}

.job summary::-webkit-details-marker{
  display:none;
}

/* ▶ */
.job summary::before{
  content:"";
  position:absolute;
  left:15px;
  top:50%;
  transform:translateY(-50%) rotate(0deg);

  width:0;
  height:0;

  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:8px solid #001746;

  transition:.2s;
}

/* ▼（開いたとき） */
.job[open] summary::before{
  transform:translateY(-50%) rotate(90deg);
}


/* =========================
   CTAセクション専用
========================= */
.cta_section{
  padding: 60px 20px;
  background: #f8f9fb;
}

.cta_section .cta{
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta_section p{
  font-size: clamp(1.6em, 4vw, 2em);
  margin-bottom: 30px;
}

.cta_section .cta_buttons{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta_section .cta_btn{
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  color: #fff;
  transition: .2s;
}

.cta_section .tel{
  background: #001746;
}

.cta_section .mail{
  background: #001746;
}

.cta_section .cta_btn:hover{
  transform: translateY(-2px);
  opacity: 0.9;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;                                                        
	transition: all 0.3s ease
}
.mcon h2 {
	position: relative;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0 0 0.2em;
	font-size: 24px;
	border-bottom: 3px solid #ccc;
}
.mcon h2:after{
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 3px;
	background-color: #001d4f;
}
.mcon h3 {
	margin-top: 16px;
	margin-bottom: 16px;
	padding: 0 0.5em;
	color: #333;
	font-size: 20px;
	border-bottom: 1px dotted #ccc;
}
.mcon h4 {
	font-size: 1.2em;
	margin-bottom: 5px;
	margin-top: 5px;
}
.mcon h5, .mcon h6 {
	font-size: 1.1em;
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em
}
.mcon p {
	margin-bottom: 1em
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}

/* fancybox（プラグイン）スタイル */
.fancybox__carousel {
  padding-top: 40px;
}

.f-thumbs.is-modern .f-thumbs__viewport {
  margin-inline: none;
}