@charset "utf-8";
/* CSS Document */

/**********************************************************/
/* リセット */
/**********************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	vertical-align: baseline;
	box-sizing:border-box;
	image-rendering: -webkit-optimize-contrast;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}


ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

ol {
  list-style-type: none;
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}

dl, dt, dd {
	margin: 0;
	padding: 0;
}


table{
    border-collapse: collapse; 
    border-spacing:0;
}

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

.clear {
	clear:both;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

.inline_block {  
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}

img {
  max-width: 100%;
	display: block;
	object-fit: cover;
	vertical-align:bottom;
	image-rendering: -webkit-optimize-contrast;
}

a {
	color:#444;
	text-decoration: none;
}


/*************** PC・SP共通ベース ***************/

:root {
	--navy:#16316A;
  --orange:#FF4500;
	--sky:#00CEF3;
}
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  width: 100%;
	background:#FFF;
	color: #111;
  font-size:1.6rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
	line-height: 2;
	letter-spacing: 0.05em;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
.ship {
	font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
.jaka {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 400;
}


/* ページの先頭に戻る(すべてのページ) */

.pagetop {
  display: none;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.pagetop a {
  display: block;
}
.pagetop a img {
  display: block;
}

/* google map */

.gmap {
	position: relative;
	padding-bottom: 46.875%;
	height: 0;
	overflow: hidden;
}
.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ページ内アンカー */

.anchor{
    display: block;
    padding-top: 150px;
    margin-top: -150px;
}


/* 下部スライドギャラリー */

.slider {
  width: 100%;
  overflow: hidden;
	background: #FFF;
}
.slider-row {
  overflow: hidden;
}
.slider-row.right {
	margin-bottom: 8px;
}

/* 共通トラック */
.slider-track {
  display: flex;
  width: max-content;
	gap:0 8px;
}

/* 画像 */
.slider-track img {
  width: 340px;
  height: 225px;
  flex-shrink: 0;
}

/* 上段：右へ */
.slider-row.right .slider-track {
  animation: scroll-right 30s linear infinite;
}

/* 下段：左へ */
.slider-row.left .slider-track {
  animation: scroll-left 30s linear infinite;
}

/* 左へ流れる */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 右へ流れる */
@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

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

.slider-row.right {
	margin-bottom: 4px;
}

/* 共通トラック */
.slider-track {
	gap:0 4px;
}

/* 画像 */
.slider-track img {
  width: 180px;
  height: 135px;
}

}


@media screen and (min-width:768px), print{
/**********************************************************/
/* ベース部分 */
/**********************************************************/

body {
	min-width:1180px;
  overflow: hidden;
}
.pc_none,.hidden {
	display:none !important;
}
a[href^="tel:"] {
    pointer-events: none;
}


/**********************************************************/
/* ヘッダー */
/**********************************************************/

header {
  background: var(--navy);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width:95%;
	height:60px;
	border-radius: 30px;
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
}
.nav_menu {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sub_menu {
	display: none;
}
.site_name {
	width: 102px;
	height: 32px;
	margin-left: 40px;
}
.site_name a {
	width: 100%;
	height: 100%;
  display: block;
	background: url("../images/header/logo.svg") no-repeat center / cover;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.headerNav {
	height: 60px;
	display: flex;
	justify-content:space-between;
	gap:0 30px;
	margin-left: 30px;
}
.headerNav li {
	height: 100%;
	text-align: center;
}
.headerNav li a {
	height: 100%;
	color: #FFF;
	display: flex;
	align-items: center;
	letter-spacing: 0.05em;
	line-height: 1.2;
}
.headerNav .to_tel {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	background: url("../images/header/icon_tel.svg") no-repeat left center / 28px;
	padding-left: 38px;
}
.headerNav .to_contact {
	font-family: 'Zen Kaku Gothic Antique';
	font-weight: 700;
	background: var(--orange) left 15px center / 28px;;
	border-radius: 0 30px 30px 0;
	padding: 0 25px 0 25px;
}
.headerNav a:hover {
	opacity: 0.7;
	transition: 0.3s;
}



/**********************************************************/
/* メインビュー・キービジュアル */
/**********************************************************/

.kv{
	width: 100%;
	height: 460px;
  padding: 0;
	position: relative;
}
.kv img {
	width: 100%;
	height: 460px;
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: -1;
}

.kv_link_btn {
	width: 280px;
	height: 120px;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 10;
}
.kv_link_btn a {
	font-size: 1.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	padding-left: 60px;
	width: 100%;
	height: 60px;
}
.to_recruit {
	color: #000;
	background: url("../images/icon_bg_recruit.svg") no-repeat left 15px center / 28px,
							url( "../images/arrow_bk.svg") no-repeat right 15px center / 24px,
							var(--sky);
}
.to_attachment {
	color: #FFF;
	background: url( "../images/icon_bg_attachment.svg") no-repeat left 15px center / 24px,
							url( "../images/arrow_wh.svg") no-repeat right 15px center / 24px,
							var(--navy);
}
.kv_link_btn a:hover {
	filter: grayscale(80);
	transition: 0.3s;
}


/**********************************************************/
/*  メインエリア */
/**********************************************************/

main {
	width:100%;
	display:block;
}

section {
	width:100%;
	position:relative;
}
main .inner {
  width: 1080px;
  margin: 0 auto;
  position: relative;
}


/* ページメニュー */

.menu_section {
	position: relative;
}
.page_menu {
	width: 160px;
	position: absolute;
	top: 0;
	left: 0;
}
.page_menu li {
	height: 30px;
}
.page_menu li a {
	color: rgba(255, 255, 255, 1);
	font-size: 1.4rem;
	display: block;
	width: 100%;
	height: 100%;
	padding-left: 16px;
	line-height: 30px;
	letter-spacing: 0;
}
.page_menu li a:hover {
	color: var(--navy);
	background: #FFF;
	transition: 0.3s;
}


/* 見出し・本文・リスト設定 */

h1 {
}

h2 {
}

.align_right {
	text-align: right;
}
.align_center {
	text-align: center;
}


/**********************************************************/
/* テーブル */
/**********************************************************/

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 10px;
	border-block: solid 1px #373737;
}

th {
	text-align: center;
  vertical-align: middle;
	border-block: solid 1px #373737;
}

td {
  text-align: center;
  vertical-align: middle;
	border-block: solid 1px #373737;
}


/**********************************************************/
/* フッター */
/**********************************************************/

footer {
	width:100%;
	background: #FFF;
}
.footer_inner {
	background: var(--navy);
	width: 95%;
	margin: 0 auto;
	padding: 80px 0 32px;
	border-radius: 16px 16px 0 0;
}
.footer_content {
	width: 1080px;
	margin: 0 auto;
	color: #FFF;
}
.footer_menu {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: solid 1px rgba(255,255,255,0.6);
	padding-bottom: 38px;
}
.footer_content a {
	display: block;
	color: #FFF;
	opacity: 0.85;
}
.footer_content a.footer_banner_link {
	opacity: 1;
}
.footer_content a img {
	opacity: 1;
}
.footer_content a:hover {
	text-decoration: underline;
}
.footer_logo {
	display: block;
	width: 140px;
}
.footer_nav {
	display: flex;
	justify-content: space-between;
	gap: 0 80px;
}
.nav_area {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap:24px 0;
}
.nav_area .ship {
	font-size: 1.8rem;
	margin-bottom: 5px;
}
.nav_area ul li {
	line-height: 1.85;
}
.nav_area ul li a {
	font-weight: 400;
}

.footer_info,
.footer_copy{
	display: flex;
	justify-content: space-between;
	opacity: 0.8;
}
.footer_info {
	padding: 20px 0 30px;
}
.footer_info dl dt {
	margin-bottom: 5px;
	opacity: 1;
}
.footer_info dl dt span {
	font-size: 1.3rem;
	display: inline-block;
	margin-left: 0.5em;
}
.footer_info dl dd {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.75;
}

.footer_copy a {
	font-size: 1.4rem;
	font-weight: 400;
}
.footer_banner {
	width: 240px;
}
.footer_banner_link:hover {
	filter: grayscale(0.8);
	transition: 0.3s;
}


}










