/* 共通css */
/* 全体のリセット（必要に応じて） */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.new_page {
    font-family: "Noto Sans JP", sans-serif;
}
.pc_on{
	display:block;
}
.sp_on{
	display:none;
}
p:empty{
	display:none;
}
header a,
footer a {
    transition: 0.6s;
}

header a:hover,
footer a:hover {
	color:#1A88D6;
}

.site-header {
    width: 100%;
    height: 62px;
    /* 画像の比率に合わせた目安 */
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
    /* 左側の余白 */
}
@media (max-width: 1440px) {
.header-container {
    padding-left: max(20px, calc(50% - 700px));
}
}
/* ロゴ */
.logo img {
    height: 46px;
    /* サイズは適宜調整 */
    display: block;
}

.sp_nav_open,
.sp_menu_text {
    display: none;
}

/* ナビゲーション */
.main-nav {
    margin-left: auto;
    /* 右寄せにする */
    margin-right: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    /* 項目間の距離 */
}

.main-nav a {
    text-decoration: none;
    color: #344052;
    font-size: 15px;
    font-weight: 500;
}

/* 採用情報ボタン（グラデーションと斜めライン） */
.recruit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 200px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    /* 青のグラデーション */
	background: linear-gradient(to right, #022E6B, #1A88D6);
}
 header a.recruit-btn:hover{
	color: #fff;
	 opacity: 0.6;
}
.recruit-btn span {
    font-size: 16px;
}

/* 右側の矢印アイコン（CSSで作成） */
.arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
position: absolute;
    right: 16px;
}

/* フッター全体 */
.main-footer {
    background-color: #fff;
    padding: 60px 0 40px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
}

.footer-container {
    width: 1280px;
    margin: 0 auto;
    max-width: calc(100% - 80px);
}

/* 上段レイアウト */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #344052;
}

.footer-logo img {
    height: 46px;
    /* ロゴのサイズ調整 */
    width: auto;
}

.footer-main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-main-nav a {
    text-decoration: none;
    color: #344052;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

/* 下段レイアウト */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.copyright {
    font-size: 12px;
    color: #344052;
}

.footer-sub-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-sub-nav a {
    text-decoration: none;
color: #344052;
    font-size: 12px;
    transition: color 0.3s;
}

.top-link {
    width: 70px;
    height: 70px;

    right: 20px;
    position: fixed;
    bottom: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.top-link a {
    background: #0a265c;
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transform: rotate(-90deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-link.is-show {
    opacity: 1;
    visibility: visible;
}

.top-link .arrow-right {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: -5px;
    transition: border-color 0.3s;
}

/* スマホ対応の調整 */
@media (max-width: 768px) {
	.site-header{
height: 80px;
	}	
	.pc_on{
	display:none;
}
.sp_on{
	display:block;
}
    .recruit-btn {
        display: none;
    }

    .header-container {
        padding-left: 15px;
        justify-content: space-between;
        height: 100%;
    }

    .sp_nav_open {
        display: block;
        height: 100%;
        width: auto;
        cursor: pointer;
        transition: 0.6s;
    }

    .site-header.is-active {
        background: #E3ECFA;
        /* メニューと同じ色に変更 */
    }

    .main-nav {
        position: fixed;
        top: 80px;
        /* ヘッダーの高さ分下げる */
        right: -100%;
        /* 最初は右側に隠す */
        width: 100%;
        height: calc(100% - 80px);
        /* 全体からヘッダー分を引く */
        background: #E3ECFA;
        /* ここをメインカラーに */
        transition: right 0.4s ease;
        /* スライドのアニメーション */
        z-index: 999;
        overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
        margin-right: 0;
        padding: 0 15px;
    }

    /* 表示状態 */
    .main-nav.is-active {

        right: 0;
    }

    /* リストを縦並びに */
    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
padding-top: 55px;
        list-style: none;
        gap: 0;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #344052;
        padding: 15px 0;
        line-height: 1;
    }

    .main-nav ul li a {
        color: #344052;
        font-size: 16px;
        text-decoration: none;
        line-height: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
		line-height: 26px;
    }
	.main-nav ul li a:hover {
		    color: #1A88D6;
	}
        .main-nav  ul li a::after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid #344052;
        border-right: 2px solid #344052;
        transform: rotate(45deg);
        margin-right: 5px;
    }

    .sp_menu_text.is-active {
        display: block;
                background: linear-gradient(to right, #022E6B, #1A88D6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 32px;
        font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
margin-top: 75px;
        font-weight: 500;
        line-height: 1.6;
		        padding-bottom: 100px;
    }

    /* スクロール禁止用クラス */
    body.no-scroll {
        overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    }

    /* フッター */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 2px;
        border-bottom: 0;
    }

    .footer-main-nav ul {
        flex-wrap: wrap;
        gap: 15px 25px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        /* スマホではコピーライトを一番下に */
        align-items: flex-start;
        gap: 40px;
    }

    .footer-sub-nav ul {
        flex-wrap: wrap;
        gap: 20px 15px;
    }

    .main-footer {
        padding: 80px 0 40px;
    }

    .footer-container {
        padding: 0 20px;
		max-width: 100%;
    }

    .footer-main-nav {
        width: 100%;
    }

    .footer-main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0;
        list-style: none;
        gap: 0;
    }

    .footer-main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #344052;
        padding: 15px 0;
        line-height: 1;
    }

    .footer-main-nav ul li a {
        color: #344052;
        font-size: 16px;
        text-decoration: none;
        line-height: 1;
        display: flex;
        /* blockからflexに変更 */
        justify-content: space-between;
        /* 文字は左、アイコンは右に */
        align-items: center;
        /* 垂直方向の中央揃え */
        width: 100%;
		line-height: 26px;
    }
	.footer-main-nav ul li a:hover{
		    color: #1A88D6;
	}

    .footer-main-nav ul li a::after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid #344052;
        border-right: 2px solid #344052;
        transform: rotate(45deg);
        margin-right: 5px;
    }

    .footer-sub-nav li {
        width: 100%;
    }

    .top-link {
        width: 50px;
        height: 50px;
        right: 10px;
        bottom: 30px;
    }

    .top-link a {
        width: 50px;
        height: 50px;
    }
}

/*ボタンアニメーション*/
/*
.c-btn {
  cursor: pointer;
  transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
 
.c-btn {
  color: #fff;
  font-weight: bold;
  max-width: 300px;
  padding: 15px 40px;
  text-align: center;
}
.c-btn {
  background: linear-gradient(90deg, #022E6B 0%, #1A88D6 50%, #022E6B 100%);
  background-size: 200% 100%;
  border: none;
}
.c-btn:hover {
  background-position: 100% 0;
}
.c-btn2 {

  color: #fff;
  display: block;
  font-weight: bold;
  max-width: 300px;
  padding: 15px 40px;
  text-align: center;
  color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 0;
    background-image: linear-gradient(90deg,  #022E6B 50%, transparent 50%);
    background-position: 100%;
    background-size: 250%;
    color: #fff;
    text-decoration: none;
    transition: all .7s;
}

.c-btn2:hover {
    background-position: 0;
    color: #fff;
     border: 1px solid #022E6B;
}
*/

/* --- パンくずリスト --- */
.breadcrumb {
    font-size: 12px;
    background: #fff;
    margin: 16px 80px 0;
    line-height: 19px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
}

.breadcrumb li+li::before {
    content: "|";
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb a {
    color: #344052;
    text-decoration: none;
    font-weight: 600;
    transition: 0.6s;
}

.breadcrumb a:hover {
    color: #1A88D6;
}
/* --- 下部バナーエリア 横2列--- */
.bottom-nav {
    display: flex;
}

.bottom-nav .nav-card {
    flex: 1;
    height: 400px;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}
.bottom-nav .nav-card.recruit {
	background: url(https://www.omik.co.jp/wp/wp-content/themes/solaris_tcd088-child/img/renewal/greeting/banner_recruit_720x400_pc.png) center/cover;
}
.bottom-nav .nav-card.contact {
	background: url(https://www.omik.co.jp/wp/wp-content/themes/solaris_tcd088-child/img/renewal/greeting/banner_inquiry_720x400_pc.png) center/cover;
}
.bottom-nav .nav-card-overlay {
    padding: 80px;
}

.bottom-nav .nav-card h3 {
    font-size: 48px;
    margin-bottom: 30px;
    font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
    line-height: 1;
	font-weight: 500;
}

.bottom-nav .nav-card p {
    font-size: 16px;
    line-height: 1.6;
	    font-weight: 500;
}

.bottom-nav .contact-arrow-circle {
    width: 80px;
    height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    right: 80px;
    bottom: 80px;
    transition: background 0.4s ease;
}

.bottom-nav .arrow-right {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: -5px;
    transition: border-color 0.3s;
    left: calc(50% - 2px);
    top: calc(50% - 5px);
    position: absolute;
}

.bottom-nav .nav-card:hover .contact-arrow-circle {
    background: #fff;
}



.bottom-nav .nav-card:hover .arrow-right {
    color: #0a265c;
    border-top: 2px solid #0a265c;
    border-right: 2px solid #0a265c;
}

@media (max-width: 768px) {
    /* パンくず */
        .breadcrumb {
        margin: 16px 20px 0;
    }

    /* --- 下部バナーエリア 横2列--- */
    .bottom-nav {
        flex-direction: column;
    }

    .bottom-nav .nav-card {
        flex: initial;
        height: 320px;
    }

    .bottom-nav .nav-card h3 {
        font-size: 32px;
        line-height: 51px;
        margin-bottom: 5px;
    }

    .bottom-nav .nav-card-overlay {
        padding: 40px 20px;
    }

    .bottom-nav .contact-arrow-circle {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
    }
}