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

/*----------------------------------------------------------

共通css

----------------------------------------------------------*/
@font-face {
  font-family: 'BokutachinoGothic2Bold';
  src: url("../font/Boku2-Bold.otf")format('opentype');
  font-weight: bold;
  font-style: normal;
  /* 念のため、読み込みを最適化 */
  font-display: swap;
}
/*リセット
-----------------------------*/
html{
	width: 100%;
}
body{
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 18px;
	min-width: 1100px;
    overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
}
p {
    line-height: 1.8;
    letter-spacing: 0;
}
body *{
	box-sizing: border-box;
}
a{
	color: #2370BF;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*リセット（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
	body{
		font-size: 14px;
		min-width: 100%;
	}
    p {
        line-height: 1.5;
    }
}
/* 表示非表示切り替え
-----------------------------*/
/* SP */
@media screen and (max-width:768px) {
	.-u-SpNonePcBlock {
		display: none;
	}
	.-u-SpNonePcinline {
		display: none;
	}
	.-u-PcNoneSpBlock {
		display: block;
	}
	.-u-PcNoneSpinline {
		display: inline;
	}
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ロゴ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.logo{
    background-color: #1a1a1a;
    padding: 1.5em 0 1.5em 1.5em;
	z-index: 999;
}
.logobox img{
    width: auto;
    height: 2.8em;
}
@media screen and (max-width:768px) {
    .logo {
        padding: 1.9em 0 1.9em 1.5em;
    }
    .logobox img {
        height: 2.5em;
    }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
メインビジュアル　トップテキスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.mv {
    max-width: 73vw;
    margin: 0 auto;
    position: relative;
}
.mv img{
    width: 100%;
}
p.imgtitle {
    text-align: right;
    font-size: 0.95em;
    font-weight: 500;
    padding-right: 4.4em;
}
img.back-img {
    position: absolute;
    top: -300px;
    right: -50px;
    width: auto;
    height: 440px;
    z-index: 1;
    opacity: 0.4;
}
.catchcopy {
    margin: 30px 0 50px;
    font-size: 1.36em;/*  or  font-size: 17px;*/
    font-weight: 500;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
メインビジュアル　トップテキスト　スマホ対応
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width:768px){
    img.back-img {
        position: absolute;
        top: -195px;
        right: -70px;
        width: auto !important;
        height: 280px;
        z-index: 1;
    }
    .catchcopy {
        margin-bottom: 0px;
        font-size: 16px;
    }
    .mv {
        max-width: 1400px;
        width: 87%;
        text-align: center;
    }
    .mv img {
        width: 100%;
    }
}
/*----------------------------------------------------------
　ページトップボタン
----------------------------------------------------------*/
#page_top {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 60px;
    right: 36px;
    cursor: pointer;
    z-index: 1;
}
#page_top img{
	width: 55px;
    height: auto;
}
/* SP */
@media screen and (max-width:768px) {
	#page_top{
		width: 45px;
		height: 60px;
		bottom: 25px;
		right: 27px;
        cursor: pointer;
	}
    #page_top img{
        width: 55px;
    }
}

/*----------------------------------------------------------
　ヘッダー
----------------------------------------------------------*/
/*サイトタイトルなど
-----------------------------*/

.mv-img img{
    width: 100%;
    height: 500px;
}

/*サイトタイトルなど（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
	body{
		font-size: 14px;
	}
}

/*ナビゲーション
-----------------------------*/
/* --- ボタン自体の基本スタイル調整 --- */
.header_box_top {
    position: relative; 
}
.menu-button {
    position: fixed;
    top: 125px;
    right: 45px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    z-index: 1001;
}
.menu-button input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    display: block !important; 
    margin: 0;
    padding: 0;
    z-index: 2;
}
.button-content {
    position: relative;
    z-index: 1; 
    pointer-events: none; /* マウスイベントをinputに透過させる */
}
.hamburger {
    width: 40px;
    height: 26px;
    margin: 0 auto 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3.5px;
    background-color: #c9c9c9; 
    transition: all 0.3s ease;
}
.menu-text {
    display: block;
    font-size: 12px;
    letter-spacing: 0;
    color: #c9c9c9;
    
}
/* 1本目 */
.menu-button.active .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
/* 2本目（消す） */
.menu-button.active .hamburger span:nth-child(2) {
    opacity: 0;
}
/* 3本目 */
.menu-button.active .hamburger span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}
/* ナビゲーションの表示連動（activeがついたら表示） */
.nav.active {
    transform: translateX(0) !important;
}
.nav {
    position: fixed;
    top: -10%;
    right: -370px;
    width: 760px;
    height: 120vh;
    background: #000;
    border-radius: 50%;
    transform: translateX(100%);
    transition: transform .3s ease; 
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}
.nav.active {
    transform: translateX(0);
}
.nav__list {
    display: flex;
    flex-direction: column;
    width: 190px;
    margin: 0;
    padding: 0;
    margin-right: 30px;
    list-style: none;
    position: absolute;
    right: 54%;
}
.nav__link {
    display: block;
    padding: 0.4em 0;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 200;
    text-decoration: none;
    background-image: url("../images/arrow-02-right-small-white.svg");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center right 25%; 
}
.nav__link:hover {
    color: #d92f16; 
    background-image: url("../images/arrow-02-right-small-red.svg"); 
}
.nav__link.top {
    font-size: 36px;
    font-weight: 200;
}

/*ナビゲーション（スマホ）
-----------------------------*/
@media screen and (max-width:768px){

    .menu-button {
        top: 20px;
        right: 20px;
    }
    .button-content {
        padding: 7px 5px 4px;
        background-color: #1a1a1a;
        border-radius: 4px;
    }
    .hamburger span {
        background-color: #FFF;
    }
    .menu-text {
        font-size: 9px;
        color: #fff;
    }
    .nav {
        right: 0;
        width: 100%;
        height: 100vh;
        border-radius: 0;
        display: block;
        top: 0;
    }
    .nav__list {
        right: 0;
        width: 100%;
        display: block;
        margin-right: 0;
        padding: 50px 90px 0 110px;    
    }
    .nav__link {
        padding: 6px 0;
        background-size: 7px;
        background-position: center right 15%;
    }
    .nav__link.top {
        font-size: 40px;
    }
    .nav__link.news,.nav__link.about,.nav__link.openings, .nav__link.recruit,.nav__link.technology,.nav__link.facilities {
        background-position: center right 45%;
    }
    .nav__link.news,.nav__link.about,.nav__link.openings, .nav__link.recruit,.nav__link.technology,.nav__link.facilities,.nav__link.what,.nav__link.entry {
        font-size: 13px;
    }

    .nav__link.what,.nav__link.entry {
        background-position: center right 30%;
    }
    img.hamburger__icon {
        width: 40px;
    }
}


/*----------------------------------------------------------
　フッダ　ベース：黒　ロゴ：白ver
----------------------------------------------------------*/
.only_what{
	background-color: #fff;
	padding-top: 6em;
}
/*プライバシーポリシー
-----------------------------*/
.account-wrap {
    width: 1000px;
    margin: 0 auto 2em;
    text-align: right;
}
.account-wrap img{
    height: 30px !important;
}
.account-wrap a {
    padding-left: 2em;
    cursor: pointer;
}
.account-wrap a.textiner{
    color: #b2b2b2;
    text-decoration: none;
	font-size: 13px;
	font-weight: 500;
}
.footer_2col_wrap.cf {
}
.wrap{
    width: 600px;
    margin: 0 auto;
    padding: 60px 0;
}
.footer_box_top{
	background-color: #1a1a1a;
}
.footer_box_top .sec_title{
	color: #FFFFFF;
}
.footer_box_top address{
	font-style: normal;
	color: #FFFFFF;
	font-size: .95em;
    text-align: center;
    margin-bottom: 40px;
	margin-bottom: 1.5em;
}
.address_name{
	margin: 0;
	font-size: 1.5em;
    text-align: center;
}
.address_name img{
    width: 300px;
}
.address_text{
    font-size: 0.73em;
    letter-spacing: 0.03em;
	margin-bottom: 0;
    line-height: 1.6em;
    text-align: center;
}
.map_wrap {
    line-height: 0.7;
}
.map_wrap a.btn-google{
    color: #fff;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 0.7em;
}
.footer-nav{
    width: 100%;
    margin-top: 0.1em;
	border-top: 1.5px solid #fff;
}
.footer-nav ul{
    display: flex;
    justify-content: center;
	align-items: center;
    list-style: none;
    padding: 2em 0;
    margin: 0 0 10px 0;
}
.footer-nav ul li{
    padding: 0 15px;
    text-align: center;
	font-size: 0.73em;
    position: relative; 
	letter-spacing: 0.05em;
	
}
/* PC用区切り線 */
.footer-nav ul li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    width: 1px;
    height: 0.9em;
    background-color: #fff;
}
.footer-nav ul li a{
	color: #fff;
    text-decoration: none;
}
.footer-nav ul li a:hover{
    color: #d92f16;
}

/*お問い合わせ・フッダ（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
    .account-wrap {
        width: auto;
        margin: -55px auto 40px;
        padding: 0 15px;
    }
    .wrap {
        gap: 20px;
        width: 100%;
        padding: 30px 0;
        align-items: center;
        flex-direction: column-reverse;
    }
    .map_wrap iframe {
        padding: 0 20px;
    }
	.address_name{
		margin: 0 0 30px;
	}
	.address_name img{
		width: 315px;
	}
    .address_text{
    	font-size: 0.92em;
    }
    .map_wrap {
        line-height: 1.3;
    }
    .map_wrap a.btn-google{
        font-size: 0.8em;
    }
    .footer-nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
		row-gap: 20px;
        padding: 1.5em 0;
        list-style: none;
    }
    .footer-nav ul li {
        font-size: 0.9em;
        padding: 0;
        text-align: center;
        position: relative;
        
        display: flex;
        align-items: center;
        justify-content: center;
    }
	/* SP用区切り線 */
	.footer-nav ul li::before,
    .footer-nav ul li + li::before {
        content: none; 
    }
    .footer-nav ul li:nth-child(even)::before {
        content: "";
        position: absolute;
        right: 0; 
        top: 50%;
        transform: translateY(-50%); /* 上下中央配置 */
        
        width: 1px;        /* 線の太さ */
        height: 0.8em;     /* 線の高さ（文字より少し小さめ） */
        background-color: #fff; /* 線の色 */
    }
    .footer-nav {
        margin-top: 0px;
    }
}
/*コピーライトなど
-----------------------------*/

.footer__copyright {
    color: #FFFFFF;
    text-align: center;
    font-size: 0.63em;
    margin: 0;
}
/*コピーライトなど（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
	.footer_box_bottom{
		width: 100%;
		min-height: auto;
		line-height: 40px;
		padding: 0;
		margin: 0;
		text-align: center;
	}
	.copyright {
		margin: 0;
		padding: 0;
		float: none;
		display: block;
	}
    .footer__copyright {
        padding: 20px 0 10px;
    }
}

/*メインビジュアル
-----------------------------*/

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-slider::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1897 / 228; 
    background-image: url("../../images/slide-back.webp?20260617");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    z-index: 10; 
    pointer-events: none;
}
.hero-slider .swiper-pagination {
    display: none;
}
.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.4;
    margin: 0 6px;
    border-radius: 50%;
}
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}
.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-logo {
    position: absolute;
    top: 0px;
    left: 30px;
    z-index: 20;
}
.hero-logo img {
    height: 60px;
    width: auto;
}
.swiper-slide {
    position: relative;
}
.swiper-slide::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 21.5%;
    transform: translateX(-50%);
    width: 100%; 
    height: 470px;
    background-image: url("../../images/catch-img-only2.webp?20260617");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 10; 
    opacity: 0;
}

.swiper-slide.no-animation::after {
    opacity: 1;
}
.swiper-slide.run-first-animation::after {
    animation: fadeInCatch 3.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.8s;  /*0.8秒遅らせる */
}
@keyframes fadeInCatch {
    from {
        opacity: 0;
        filter: blur(7px); 
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}
@media screen and (max-width: 768px) {
    .swiper-slide.three-set img, .swiper-slide.two-set img{
        width: 140%;
    }
    .hero-logo img {
        height: 25px;
    }
    .hero-text h1 {
        font-size: 11px;
    }
    .hero-logo {
        top: -15px;
        left: 10px;
    }
    .hero-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }  
    .hero-slider .swiper-pagination {
        bottom: 8px !important;
    }
}
@media screen and (max-width: 400px) {
    .swiper-slide::after{
        height: 290px;
        top: 25%;
    }
}
/*----------------------------------------------------------
　共通パーツ 幅
----------------------------------------------------------*/
/*wide100%
-----------------------------*/
.wrap_all{
	width: 100%;
	margin: 0;
	padding: 100px 60px 100px;
}
/*wide100%（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
	.wrap_all{
		padding: 50px 0 50px;
	}
}
/*wide1000px
-----------------------------*/
.wrap_m{
    width: 1000px;
    margin: 0 auto;
    padding: 100px 0 0;
}
/*wide800px
-----------------------------*/
.wrap_s{
	width: 800px;
	margin: 0 auto;
	padding: 100px 0 100px;
}
/*リセット（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
	.wrap_m,.wrap_s{
		width: 100%;
		margin: 0 auto;
		padding: 50px 24.7px 50px;
	}
    .titleiner{
        padding-top: 20px;
    }
}

/*----------------------------------------------------------
　共通パーツ 見出しスタイル
----------------------------------------------------------*/
/*ページタイトル
-----------------------------*/
h1{
    font-size: 3em;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}
/*サブタイトルが英語の時はこっち↓*/
.sabtitle1{
    font-size: 0.78em;
    color: #8790a0;
    line-height: 1.5;
    margin: 0 0 0.8rem;
    letter-spacing: 0.9px;
    font-weight: 200;
}
h2{
    font-size: 45px;
    margin: 0;
    line-height: 1;
}
/*サブタイトルが日本語の時はこっち↓*/
.sabtitle2{
    font-size: 0.78em;
    color: #8790a0;
    line-height: 1.5;
    margin: 0.6em 0 0;
    letter-spacing: 0.9px;
    font-weight: 200;
}
.catchcopy {
    margin: 20px 0 40px;
    font-size: 1.2em;
    font-weight: 500;
}

/*ページタイトル（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
    h1{
        font-size: 50px;
        margin: 0;
        line-height: 1.4;
    }
    h2{
        font-size: 35px;
    }
    .sabtitle2 {
        margin: 0.35rem 0;
    }
	.page_title{
		margin: 0;
	}
	.page_title img{
		height: 51px;
	}
   
}

/*セクション見だし
-----------------------------*/
.sec_title{
	padding: 0 0 .5em;
	margin: 0 0 .5em;
	width: 100%;
	font-size: 2em;
	text-align: center;
}
/*セクション見だし（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
	.sec_title{
		margin: 0 0 30px;
	}
}
/*----------------------------------------------------------
　共通パーツ ボタンスタイル
----------------------------------------------------------*/

/*  正円ボタン
-----------------------------*/
.btn_circle{
	width: 100px;
    height: 100px;
    border: 3px solid #d92f16;
    border-radius: 50%;
    background: #d92f16;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
	
    text-decoration: none;
    
	background-image: url("../images/arrow-01-right-small-white.svg");
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: center right 50%;
    z-index: 990;
}
.btn_circle:hover{
    border: 3px solid #d92f16;
    background: #fff;

	background-image: url("../images/arrow-01-right-small-red.svg");
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: center right 50%;
    z-index: 990;
}

/*  角丸ボタン
-----------------------------*/
.btn_angle_circle{	
	width: 220px;
	height: 60px;
    font-size: 17px;
    border: 3px solid #d92f16;
    border-radius: 30px;
    background: #d92f16;
    color: #fff;
	box-sizing: border-box;
    text-decoration: none;
	
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center; 
	
}
.btn_angle_circle::after{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	margin-left: 10px;
	
    background-image: url("../images/arrow-02-right-small-white.svg");
    background-repeat: no-repeat;
    background-size: contain;
	background-position: center;
}
.btn_angle_circle:hover {	
    background: #FFF;
    color: #d92f16;
}
.btn_angle_circle:hover::after {
    background-image: url("../images/arrow-02-right-small-red.svg");
}
.btn_angle_circle a{
	text-decoration: none;
	color: #fff;
}
.btn_angle_circle a:hover{
	color: #d92f16;
}

/*ボタン（スマホ）
-----------------------------*/
@media screen and (max-width:768px){
	.btn{
		margin: 30px 0 0;
	}
	.btn a + a{
		margin: 15px 0 0;
	}
	.btn a{
		font-size: 1.2em;
		min-width: 100%;
        text-align: justify;
	}
	/*  正円ボタン
	-----------------------------*/
	.btn_circle{
		width: 65px;
		height: 65px;
	}
	/*  角丸ボタン
	-----------------------------*/
	.btn_angle_circle {
		width: 180px;
		height: 50px;
		font-size: 13px;
		border-radius: 25px; 
	  }
	  .btn_angle_circle::after {
		width: 10px;
		height: 10px;
		margin-left: 8px;
	  }
}

/*----------------------------------------------------------
　共通パーツ カラム
----------------------------------------------------------*/
html,body{
overflow-x:hidden;
}
p{
    text-align: justify;
}