@charset "utf-8";


/* responsive Start */
/*===================================================================== */


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

.spnone{display: none!important;}
.pcnone{display: inherit!important;}



/*=====================================================================
header
======================================================================= */

header {
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    line-height:1;
    z-index: 11;
    position: fixed;
}

header .head_logo{width: 142px; position: fixed; top: 26px; left: 5%; opacity: 0; visibility: hidden; z-index:10;}
header img{width: 100%;}

header .menu_inner{display: none;}

.text-wrap {
  position: relative;
  height: 1em;
  overflow: hidden;
  display: block;
}

.text-wrap .inner {
  display: block;
    height: calc(2em + 10px);/*cloneのmargin-top分を追加で*/
  transition: transform 0.18s cubic-bezier(0.79,0.14,0.15,0.86);
}

.text-wrap .text {
  display: block;
  height: 1em; /* 1行分 */
}

.text-wrap .original,
.text-wrap .clone {
  display: block;
}
.text-wrap .clone {
    margin-top: 10px;
  color: #e7380d;
}




/*=====================================================================
00. ハンバーガーメニュー
======================================================================= */

.menublock{
    width: 100%;
    min-width: 100%;
	position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
}
.menuarea{ width:64px; height: 32px;  text-align: center; display: block; z-index: 99999; position: absolute; top: 20px; right: 5%;}
.menuarea a{width:64px; height: 32px; padding:0; display: block; background-color: #e7380d; border-radius: 5px; transition: all 0.3s ease;}
.menuarea a:hover{background-color: #e7380d; transition: all 0.1s ease;}
    

/* ハンバーガーメニュー*/
.menu-line,
.menu-line span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-line {
  position: relative;
	z-index: 2;
  top:4px;
  width: 30px;
  height:10px;
}
.menu-line span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
transition: all 0.3s ease;

}
.menu-line span:nth-of-type(1) {
  top: 0;
}
.menu-line span:nth-of-type(2) {
  top: 6px;
}
.menu-line span:nth-of-type(3) {
  top: 12px;
}

/* アニメーション*/
.menu-trigger.active span:nth-of-type(1) {
  transform:translateY(6px) rotate(20deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity:0; transform:scaleX(0);
}
.menu-trigger.active span:nth-of-type(3) {
    transform:translateY(-6px) rotate(-20deg);
}


/*=====================================================================
00. ドロワーメニュー
======================================================================= */

#navigation {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-width: 100%;
  min-height: auto;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.5s ease;
  z-index: 999;
  display: block;
  align-items: initial;
  justify-content: initial;
  pointer-events: none;
  overflow: auto;
}

#navigation.active {
  background: rgba(0, 0, 0, 0.8); /* activeで黒半透明背景フェードイン */
    pointer-events: auto; /* active中のみクリック可能にする */

}

.navigation_inner {
  width: 90%;
  height: auto;
  border-radius: 6px;
  margin: 5.1% auto 0 auto;
  background: #FFF;
  clip-path: inset(0 0 100% 0); /* 初期状態は上下方向に隠す */
  transition: clip-path 0.5s ease;
    
    box-sizing: border-box;
    padding: 0 0 0 0;
    display: block;
    position: relative;
}

#navigation.active .navigation_inner {
  clip-path: inset(0 0 0 0); /* active時は全面表示 */
}

.navigation_inner .left_img{
    display: none;
    /*
    width: 100%;
    height: 200px;
    overflow: hidden;
*/
}
    /*
.navigation_inner .left_img img{
    width: 100%;
    vertical-align: top;
  height: 100%;
  object-fit: contain;
}*/


.navigation_inner .right_menu{
    width: 100%;
    font-weight: 600;
    display: block;
    box-sizing: border-box;
    padding: 6% 0 13% 10%;
}


.navigation_inner .right_menu .rm_inner{
    width: 100%;
}


.right_menu_ttl{
    font-size: 38px;
    color: #e7380d;
    letter-spacing: .01em;
    line-height: 1;
}

.right_menu_ttl {
  overflow:hidden; /* マスクの役目 */
  margin:1.0rem 0;
}
.right_menu_ttl span {
  display:inline-block;
  transform:translateY(100%); /* 下に隠す */
  opacity:0;
  transition:transform .8s cubic-bezier(0.77, 0, 0.175, 1),
  opacity .6s ease;
}

/* 開くとき順番に出す */
#navigation.active .right_menu_ttl:nth-child(1) span{transition-delay:.03s;}
#navigation.active .right_menu_ttl:nth-child(2) span{transition-delay:.06s;}
#navigation.active .right_menu_ttl span {
  transform:translateY(0);
  opacity:1;
}

/* 閉じるとき逆順で下に戻す */
#navigation.closing .right_menu_ttl span {
  transform:translateY(100%);
  opacity:1;
}
#navigation.closing .right_menu_ttl:nth-child(2) span{transition-delay:.03s;}
#navigation.closing .right_menu_ttl:nth-child(1) span{transition-delay:.06s;}


.right_menu_ttl.second{margin-top:10%;}


.navigation_inner ul {
  list-style:none;
  margin:9% 0 0 0;
  padding:0 0 0 0;
}


.navigation_inner li {
  margin:22px 0 0 0;
}

.navigation_inner a{
    width:auto;
    text-decoration: none;
    display: inline-block;
    letter-spacing: .02em;
    line-height:1;
    transition: all .25s ease;
    position: relative;
    box-sizing: border-box;
}

.navigation_inner .btn_lv01 a{font-size: 18px; font-weight: 700; position: relative; padding-left: 20px;}
.navigation_inner .btn_lv01 a::before{
    content: "●";
    position: absolute;
    color: #e7380d;
    font-size: 18px;
    left: 0;
    top: -2px;
}

.navigation_inner .btn_lv02 {padding-left:24px; font-weight: 600; }
.navigation_inner .btn_lv02 a{font-size: 16px; position: relative; padding-left: 34px;}
.navigation_inner .btn_lv02 a::before{
    content: "";
    position: absolute;
    width: 22px;
    height: 1px;
    background: #000;
    left: 0;
    top: 6px;
}

.navigation_inner .btn_lv03 a{font-size: 16px; font-weight: 600; position: relative; padding-left: 20px;}
.navigation_inner .btn_lv03 a::before{
    content: "●";
    position: absolute;
    color: #e7380d;
    font-size: 18px;
    left: 0;
    top: -3px;
}



/* 通常時：上下に並んだ中の上側を見せる */
.navigation_inner a .inner {
  transform: translateY(0%);
}

/* hover時：内側が上にスライド → 下の文字が表示される */
.navigation_inner a:hover .inner {
   transform: translateY(calc(-1em - 10px));
}


.navigation_inner .submenu{
    width: 100%;
    padding-top:5%;
}

.navigation_inner .submenu li{
    margin-bottom: 20px;
}

.navigation_inner .submenu .privacy a{
    font-size: 13px;
    color: #606060;
    transition: all 0.2s ease;
}

.navigation_inner .submenu .privacy a:hover{
    color: #e7380d;
    transition: all 0.1s ease;
}


/*=====================================================================
wrap
======================================================================= */

.wrap{position: relative; min-width: 100%; }


/* シャッターのスタイル */
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: 9999;
}


/*=====================================================================
トップページ
======================================================================= */

.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

.slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 1;
}

.slideshow .slide.active {
  opacity: 1;
}

.slideshow picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 初期ズーム状態 */
.zoom-img {
  transform: scale(1.6);
  will-change: transform;
}


/*タイトル周り
------------------------------------------------------------------------ */

.ttl_area{
    position: absolute; 
    right: inherit;
    left: 5%;
    top: 47%;
    transform: translateY(-48%);
    z-index: 10; 
    text-align: left;
}
.ttl_area .v_area_logo{width: 190px; display: inline-block; margin-bottom: 20px;}
.ttl_area .v_area_logo img{width: 100%;}

.ttl_area .v_area_ttl{font-size: 37px; font-weight: 700; letter-spacing: .04em; line-height: 1; color: #fff; margin-bottom: 15px;}
.ttl_area .v_area_ttl{ text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); }

.carning01{letter-spacing: -.06em; font-feature-settings: "kern" 1;}

.ttl_area .v_area_en{font-size: 15px; font-family: Arial, Helvetica, "sans-serif"; color: #e7380d; letter-spacing: .02em; line-height: 1;}


/*採用ボタン
------------------------------------------------------------------------ */
.recuit_btn{
    position:absolute;
    bottom: 5%;
    left: 5%;
    z-index: 10;
}
.recuit_btn a{
    width: 126px;
    display: block;
    background: #e7380d;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .06em;
    text-decoration: none;
    padding: 11px 0 11px 16px;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s ease;
    background-image: url("../images/arrow01.png");
    background-repeat: no-repeat;
    background-size: 22px auto;
    background-position: top 7px right 10px;
    
}

.recuit_btn a:hover{background-color: #e7380d; transition: all 0.1s ease;}


/*.scroll_down
------------------------------------------------------------------------ */

.scroll_down {
	position: absolute;
	bottom: 0;
	right: 5%;
	z-index: 99;
	width: 26px;
	height: 100px; 
    
}

.scroll_down .txt {
    font-family:Arial, Helvetica, "sans-serif";
    font-weight: bold;
  display: block;
	color: #FFF;
    font-size: 10px;
  transform: rotate(90deg) scale(0.9);
  transform-origin: 0 100%;
  width: 120px;
  height: 22px;
  letter-spacing: 0.1em;
	margin: -42px 0 0 2px;
  line-height: 1;
}

.scroll_down a{
    display: block;
    width: 40px;
	text-decoration: none;
}

.scroll_down a:hover {
	opacity: 0.8;
	transition: 0.1s ease-out;
}


.scroll_down .bar {
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 1px;
  height: 120px;
  background-color: #FFF; }

.scroll_down .bar i {
	display: block;
	position: absolute;
	width: 1px;
	background-color: #e7380d; }


/*=====================================================================
inner
======================================================================= */

#index_inner{box-sizing: border-box; width: 100%; margin: 0 0 0 0; overflow: hidden;}
#detail_inner{box-sizing: border-box; width: 100%; margin: 0 0 10% 0; overflow: hidden;}


/*=====================================================================
TOP　About
======================================================================= */

.index_about{display: block; box-sizing: border-box; margin-top: 74px;}

/* スライドエリア */

.img_slide {
  width: 90%;
    height: 168px;
  position: relative;
  overflow: hidden;
    box-sizing: border-box;
}
.slide_wrap {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slide_wrap li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1; 
  z-index: 0;
  clip-path: inset(0 100% 0 0);
  transition: none; /* opacity変化なし */
    overflow: hidden;
}

.slide_wrap li img {
    width: 100%;
  display: block;
}

.slide_wrap li.active {
z-index: 1;
  clip-path: inset(0 0% 0 0);
}

/* コピーエリア */
.index_about_body{width: 100%; box-sizing: border-box; padding:8% 0 10% 10%;}

.body_inner{}

.body_inner .ttl {
  font-size: 46px;
  color: #e7380d;
  letter-spacing: .01em;
  line-height: 1;
  overflow: hidden;
  margin: 0 0;
}

.body_inner .ttl .reveal {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.body_inner .ttl .jp{
    font-size: 14px;
  font-weight: 600;
    color: #1e1e1e;
    margin-left: 20px;
}

.body_inner .point{font-size:13px; color: #e7380d; letter-spacing: .01em; line-height: 1; font-weight: 500; margin-top: 15%; position: relative;}
.body_inner .point::after{
    content: "";
    width: 100%;
    height: 1px;
    background: #e7380d;
    position: absolute;
    top: 6px;
    left: 130px;
}
.body_inner .purpus_title{font-size:32px; line-height: 160%; letter-spacing: .05em;  font-weight: 700; color: #1e1e1e; margin-top: 10%;}
.body_inner  .purpus_copy{font-size:15px; line-height: 220%; letter-spacing: .03em; font-weight: 600; color: #1e1e1e; margin-top: 20px; padding-right:7%;}

/*ボタン
------------------------------------------------------------------------ */
.index_about_body .btn_inner{width: 100%; text-align: right; margin-top: 8%;}
    
.btn_inner{width: 100%; text-align: right; margin-top: 12%;}

.static_btn{
    display: inline-block;
    margin-right:8%;
}
.static_btn a{
    width: 190px;
    display: block;
    background: #e7380d;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .06em;
    text-decoration: none;
    padding: 18px 0 18px 22px;
    box-sizing: border-box;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s ease;
    background-image: url("../images/arrow01.png");
    background-repeat: no-repeat;
    background-size: 25px auto;
    background-position: top 13px right 14px;
    
}

.static_btn a:hover{background-color: #e7380d; transition: all 0.1s ease;}


/*企業情報
------------------------------------------------------------------------ */
.index_company{width: 90%; margin:0 0 0 10%; position: relative;}

.index_company .roopvisual{width: 100%; overflow: hidden; position: relative;}
.roopimg {
  display: flex;
  width: 200%; /* 画像2枚を横並びに配置するため */
  height: 100%;
}
.roopimg img {
  width: 50%;  /* 横並び2枚で100%埋める */
  height: 100%;
  object-fit: cover;
}


.index_company .point{
    width: 100%;
    margin-bottom: 13%;
    display: inline-block;
    font-size:13px; color: #e7380d; letter-spacing: .01em; line-height: 1; font-weight: 500; 
    position: relative;
    bottom:0;
    left: 0;
    transform: rotate(0deg); 
}
.index_company .point::after{
    content: "";
    width: 100%;
    height: 1px;
    background: #e7380d;
    position: absolute;
    top: 6px;
    left: 130px;
}

/*Business
------------------------------------------------------------------------ */

.index_business{width: 100%; margin:13% 0 0 0;}

.index_business_body .ttl{padding-left: 10%;}

.body_inner .busi_title{font-size:22px; line-height: 180%; letter-spacing: .05em;  font-weight: 700; color: #1e1e1e; 
    margin-top: 15%; text-align: left; position: relative; padding-left: 10%;}

.body_inner .busi_title::before{
    content: "";
    width: 90%;
    height: 1px;
    background: #e7380d;
    position: absolute;
    top: -30px;
    left: 10%;
}

.index_business_body .static_btn{margin-right:0; display: block;}
.index_business_body .static_btn a{width: 100%; }

.b_category{
    width: 100%;
    background: url( "../images/business_bg_sp.jpg") no-repeat;
    background-size: auto 100%!important;
    background-position: top center;
    overflow: hidden;
    margin-top: 10%;

/*　box要素縦中央 */
 display: -webkit-block;
 display: block;
 -webkit-align-items: baseline;
 align-items:baseline;
 -webkit-justify-content: center;
 justify-content:center;

        
    box-sizing: border-box;
    padding: 10% 10%;
    position: relative;

}

.bg_logo01,
.bg_logo02 {
  position: absolute;
  display: flex;
  width: max-content;
}

.bg_logo01 {
  top: 0;
  left: 0;
}

.bg_logo02 {
  bottom: 0;
  right: 0;
  flex-direction: row-reverse;
}

.slide-top img,
.slide-bottom img {
  width: 100vw; /* 必要なら調整 */
  flex-shrink: 0;
  height: auto;
}


.b_category .cate01,.b_category .cate02{
    max-width: 100%;
    width: 100%;
    background: #FFF;
    border: 3px solid #e7380d;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 25px;
    position: relative;
    z-index: 2;
}

    .b_category .cate01{margin-bottom: 10%;}
    

.b_category .cate_ttl{color: #e7380d; border-bottom: 1px solid #e7380d; padding-bottom: 18px; margin-bottom: 20px;}
.b_category .cate_ttl .jp{width: 50%; float: left; font-size: 20px; font-weight: 600; letter-spacing: .02em;}
.b_category .cate_ttl .en{width: 50%; float: left;text-align: right;font-family: Arial, Helvetica, "sans-serif"; font-size: 11px; display: inline-block; 
    font-weight: normal; letter-spacing: 0em; padding-top: 12px;}

.b_category .cate_body{font-size: 14px; line-height: 220%; margin-bottom: 20px;}
    


/*メイチュウの強み
------------------------------------------------------------------------ */
.index_strong{width: 100%; margin:12% 0 0 0; position: relative;}

.strong_title{font-size:20px; line-height: 180%; letter-spacing: .05em;  font-weight: 700; color: #1e1e1e; margin:0 0 10% 10%;}

.index_strong .item_inner{display: flex; gap:1px!important; }
.index_strong .item_inner .item{flex: 1; overflow: hidden; position: relative;}
.index_strong .item_inner .item img{width: 100%; vertical-align: top;}

.item_ttl{
    width: 100%; 
    padding: 3px 0 5px 8px; 
    box-sizing: border-box; 
    font-size: 14px; 
    font-weight: 500; 
    letter-spacing: .04em; 
    background:#e7380d; 
    color: #FFF; 

    background-image:url("../images/arrow02.png");
    background-repeat: no-repeat;
    background-position: top 11px right 12px;
    background-size: 12px auto;
    
    position: absolute; 
    bottom: 0; 
    left: 0; 
    display: inline-block; 
    z-index: 10;
}

.index_strong .point{
    display: block;
    font-size:12px; color: #e7380d; letter-spacing: .01em; line-height: 1; font-weight: 500; 
    position: relative;
    top:0;
    left: 0;
    transform: rotate(0); 
    margin:0 0 10% 10%;
}
.index_strong .point::after{
    content: "";
    width: 100%;
    height: 1px;
    background: #e7380d;
    position: absolute;
    top: 6px;
    left: 120px;
}



/*=====================================================================
TOP　news
======================================================================= */

#news{width: 100%; margin: 0; padding: 10% 0 12% 0;}
.news_area{box-sizing: border-box; width: 80%; margin: 0 auto;}
.news_area .ttl{width: 100%; float: none; font-size:16px; letter-spacing: .04em; margin-bottom: 20px;}
.news_area .body{width: 100%; float: none; }
.news_area .body ul{padding: 0; margin: 0;}
.news_area .body li{border-bottom: 1px solid #000; padding:0 0 20px 0; margin:0 0 20px 0;}
.news_area .body li:last-child{ margin-bottom: 0;}

.news_area .body .date{font-size: 12px; margin-bottom: 5px; font-weight: 500; letter-spacing: .04em;}
.news_area .body a{font-size: 14px; letter-spacing: .04em; text-decoration: none; position: relative;}
.news_area .body a::after{
  position: absolute;
  bottom: -7px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .2s;
}
.news_area .body a:hover::after{
  transform-origin: left top;
  transform: scale(1, 1);
}

/* 一覧 */

.pages_news{width: 70%; margin: 0 auto; padding: 90px 0 0 0;}
.pages_news .news_area{box-sizing: border-box; width: 100%; margin: 0;}
.pages_news .news_area .body{width: 100%;}

/*=====================================================================
固定ページ　共通
======================================================================= */

.page_visual{width:100%; position: relative; overflow: hidden;}
.page_visual img{width:100%; vertical-align: top;}

/*ズーム用*/
.zoom-out-element{  transform: scale(1.6);  will-change: transform;}

.page_ttl{
    padding: 5% 10% 0 5%; 
    border-top-right-radius: 15px;
    background: #FFF; 
    position: absolute; 
    bottom: -7px; 
    left: 0;
}

.page_ttl::after{
    content: "";
    background:url("../images/pagettl_parts.png") no-repeat;
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 7px;
    right: -14.5px;
}

.page_ttl .en{font-size: 38px; letter-spacing: .01em; line-height: 1.1; color: #e7380d;}
.page_ttl .jp{font-size: 13px; letter-spacing: .02em; font-weight: 700; margin-bottom: 6px; padding-left: 17px; position: relative; color: #222222;}
.page_ttl .jp::before{content: "●"; font-size: 15px; color:#e7380d; position: absolute; top: 1px; left: 0;}


.page_ttl_area{width: 100%; margin: 15% auto 0 auto; position: relative;}
.page_ttl_area .pagettl{padding-left:13%; position: relative;}
.page_ttl_area .pagettl::before{content: ""; width:5%; height: 1px; background: #000; position: absolute; top: 11px; left:5%;}
.page_ttl_area .pagettl .jp{font-size: 25px; line-height: 1; font-weight: 700; color: #222222; letter-spacing: .02em;}
.page_ttl_area .pagettl .en{font-size: 11px; color:#e7380d; letter-spacing: -.01em; margin-top: 8px;}

/* サブページのタイトル */
.page_ttl_area.sub{width: 100%; margin: 84px auto 0 auto; position: relative;}
.page_ttl_area.sub .pagettl{padding-left:6%;}
.page_ttl_area.sub .pagettl::before{content: none;}
.page_ttl_area.sub .pagettl .jp{font-size: 28px; line-height: 1; font-weight: 700; color: #222222; letter-spacing: .02em;}
.page_ttl_area.sub .pagettl .en{font-size: 12px; color:#e7380d; letter-spacing: -.01em; margin:0 0 15px 0; position: relative; display: inline-block;}
.page_ttl_area.sub .pagettl .en::before{content: ""; width:40px; height: 1px; background: #e7380d; position: absolute; top:8px; right:-64px;}



.page_ttl_area .btnarea{width: 95%; margin: 10% 5% 0 0; position: relative; right: inherit; top: inherit; display: inline-block; text-align: right;}
/* サブページの時のマージン */
.page_ttl_area.sub .btnarea{width: 95%;  margin: 8% 0 0 0; position: relative; right: inherit; top: inherit; display: inline-block; text-align: right;}


.page_ttl_area .btnarea .page_btn{display: inline-block; width: 47.5%;}
.page_ttl_area .btnarea .page_btn a{
    font-size: 13px; 
    text-align: left;
    line-height: 1; 
    letter-spacing: .04em; 
    text-decoration: none; 
    font-weight: 600; 
    
    padding:0 0 18px 30px;
    margin-left:0;
    
    display: block;
  position: relative;
    z-index: 9;
    
    border-bottom: 3px solid #e7380d;
    background:url("../images/arrow03.png") no-repeat;
    background-size: 18px auto;
    background-position: top 0 left 0;
}

.page_ttl_area .btnarea .page_btn a::after{
  position: absolute;
    z-index: 10;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #DDD;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.page_ttl_area .btnarea .page_btn a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

    .page_ttl_area .btnarea .page_btn a:last-child{margin-left:5%;}
    
    
.page_ttl_area .btnarea .page_btn .text-wrap{padding-top: 3px;}

/* 通常時：上下に並んだ中の上側を見せる */
.page_btn a .inner {
  transform: translateY(0%);
}

/* hover時：内側が上にスライド → 下の文字が表示される */
.page_btn a:hover .inner {
   transform: translateY(calc(-1em - 10px));
}

/*=====================================================================
固定ページ　About
======================================================================= */

.purpus_area {width: 100%; display: inherit; margin-top:10%; }
.purpus_area .left{width: 100%; text-align: left; box-sizing: border-box; padding:0 0 0 10%; margin-bottom: 10%;}
.purpus_area .left img{width: 100%; min-width:100%; vertical-align: top;}
.purpus_area .right{width: 100%; box-sizing: border-box; padding: 0 0 0 10%;
 display: block;
}

.purpus_area .body_inner .point{margin-top: 0;}
.purpus_area .body_inner .point:not(:first-of-type) {margin-top:30px;}

.purpus_area .body_inner .purpus_title{font-size:33px; line-height: 160%; letter-spacing: .05em;  margin-top: 24px;}
.purpus_area .body_inner .purpus_title02{font-size:22px; line-height: 180%; letter-spacing: .05em;  margin-top: 22px; font-weight:700;}
.purpus_area .body_inner .purpus_copy{font-size:15px; line-height: 220%; letter-spacing: .03em; margin: 20px 0 36px 0; font-weight: 600;}
.purpus_area .body_inner .purpus_copy02{font-size:16px; line-height: 1; letter-spacing: .03em; margin-top: 36px; font-weight: 600}
.purpus_area .body_inner .purpus_copy02 ul{margin: 0; padding: 0;}
.purpus_area .body_inner .purpus_copy02 li{margin:0 0 25px 0;}
.purpus_area .body_inner .purpus_copy02 li:last-child{margin-bottom: 0;}

.newlogo_area{width: 90%; margin:20% auto 0 auto; position: relative;}
.newlogo_area .pagettl{padding:0 0 80px 23px; position: relative;}
.newlogo_area .pagettl::before{content: ""; width:3px; height: 80px; background: #e7380d; position: absolute; top: 0; left: 0;}
.newlogo_area .pagettl .jp{font-size: 22px; line-height: 1; font-weight: 700; color: #222222; letter-spacing: .02em;}
.newlogo_area .pagettl .en{font-size: 11px; color:#e7380d; letter-spacing: -.01em; margin-top: 8px;}


.logo_info{width: 90%; margin: 0 auto;}

.logo_info .image{width: 90%; margin: 0 auto 40px auto;}
.logo_info .image img{width: 100%; vertical-align: top;}
.logo_info .title{font-weight: 700; line-height: 1; font-size: 16px; color:#e7380d; text-align: center; position: relative; padding-bottom: 18px; margin-bottom: 30px;}
.logo_info .title::after{
    content: "";
    width: 60%;
    height: 1px;
    background: #e7380d;
    position: absolute;
    bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.logo_info .body{font-weight: 500; line-height: 220%; font-size: 15px;}


.logo_info.mark{margin: 40px auto 0 auto;}

.logo_info.mark .image{width: 45%; margin: 0 auto 40px auto;}


/*=====================================================================
固定ページ　企業情報
======================================================================= */


.company_area{width: 90%; margin:8% auto 0 auto; position: relative;}

.company_area .ttl_en{font-size: 38px; color: #f9e3df; letter-spacing: -.01em; line-height: 115%;}

.company_area .point{font-size:14px; color: #e7380d; letter-spacing: .01em; line-height: 1; font-weight: 500; margin-top: 10%; position: relative;}
.company_area .point::after{
    content: "";
    width: calc(100% - 120px);
    height: 1px;
    background: #e7380d;
    position: absolute;
    top: 6px;
    right: 0px;
}

.company_area dl {
    display: grid; 
    grid-template-columns:110px 1fr; 
    row-gap: 0; 
    font-size: 14px; 
    letter-spacing:.02em; 
    color: #222222;
    margin: 8% 0 10% 0;
}
.company_area dt {width: 200px; font-weight: bold; margin: 0; line-height: 160%; }
.company_area dt span{font-size: 10px;}

.company_area dt{
      margin: 0;
      padding: 20px 0 20px 0;
      border-bottom: none;
    border-bottom: 1px solid #eaeaea;
    }
.company_area dd {
      margin: 0;
      padding: 20px 0 20px 0;
      border-bottom: 1px solid #eaeaea;
    }


.company_area dd {line-height: 220%; }

.company_area dd span{font-weight: bold; }
.company_area dd span.clients{font-size: 13px; line-height:200%; font-weight: normal; display: inline-block; margin-bottom: 6px;}

.company_area dl.second{margin: 0 0 0 0; }
.company_area dl.second dt {width: 200px; font-weight: normal; margin: 0;}
.company_area dl.second dt,dl.second dd {
      margin: 0;
      padding: 0 0 0 0;
      border-bottom: none;
    }


.company_area dl.history{
    grid-template-columns: 1fr; 
    margin: 5% 0 0 0;
}
.company_area dl.history dt{
    font-size: 38px; 
    color: #b4b5b4;
    line-height: 1; 
      font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
    border-bottom:none; 
    width: 100%;
}
.company_area dl.history dt span{
    font-size: 14px;
    font-weight: bold;
    margin-left: 6px;
}

.company_area dl.history dt {
      margin: 0;
      padding: 28px 0 0 0;
      border-bottom: none;
}
.company_area dl.history dd {
      margin: 0;
      padding: 20px 0 28px 0;
      border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    line-height: 200%;
}

.company_area dl.history dd{
}


.company_area .accssmap{width: 80%; margin: 10% auto 10% auto;}
.company_area .accssmap iframe{width: 100%; height: 290px;}


/*=====================================================================
固定ページ　Business
======================================================================= */

.business_area{text-align: center; font-size: 14px; margin: 100px 0 0 0; line-height: 180%;}


/*=====================================================================
お知らせ
======================================================================= */

.article_area{width: 60%; margin: 0 auto 0 auto; padding-top: 100px; position: relative;}
.article_ttl{font-size: 26px; font-weight: 700; line-height: 150%; border-bottom: 1px solid #eaeaea; padding-bottom: 30px; margin-bottom: 30px;}
.article_date{font-size: 12px; text-align: right; font-family: Arial, Helvetica, "sans-serif"; margin-bottom: 30px;}
.article_body{font-size: 15px; letter-spacing: .02em; line-height: 220%;}

.article_body img{margin: 0 auto 30px auto; display: block; vertical-align: top;}

.article_body img {
  display: block;
  margin: 2.5em auto 2.5em auto;
vertical-align: top;
}

.article_body img + .article_body img {
  margin-top: 0; /* 画像が続くときは上マージンなし */
}

/*=====================================================================
Footer Recruit
======================================================================= */

.recruit_area{width: 90%; margin: 0 auto; background-color: #e7380d; display: block;}
.recruit_area img{width: 100%; vertical-align: top;}

.recruit_left{width: 100%; flex-shrink: 0;}
.recruit_center{
    color: #FFF;
  display: block;
}
.recruit_center .ttl{font-size: 38px; line-height: 1; letter-spacing:0; text-align: center; margin-top: 6%;}
.recruit_center .ttl p{margin: 0; padding: 0; font-size: 13px; letter-spacing:.02em; text-align: center; margin-top: 8px;}
.recruit_center .copy{text-align: center; line-height: 160%; font-size: 24px; letter-spacing: -.04em; margin-top: 7%;}
.recruit_center .copy .lv1{letter-spacing: .12em;}
.recruit_center .copy .lv2{letter-spacing: -.18em;}
.recruit_center .copy .lv3{letter-spacing: .04em;}

.recruit_center .body{width: 85%; margin: 0 auto; font-size: 13px; line-height: 180%; font-weight: 500; margin-top: 6%;}

.recruit_center .static_btn{
    display: block;
    margin:8% auto 8% auto; 
}
.recruit_center .static_btn a{
    width: 85%;
    display: block;
    background: #FFF;
    border-radius: 6px;
    color: #e7380d;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .06em;
    text-decoration: none;
    padding: 16px 0 16px 18px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s ease;
    background-image: url("../images/arrow03.png");
    background-repeat: no-repeat;
    background-size: 20px auto;
    background-position: top 12px right 12px;
    
}

.recruit_center .static_btn a:hover{background-color: #c4c4c4; transition: all 0.1s ease;}



.recruit_right{width: 100%; flex-shrink: 0;}


/*=====================================================================
Footer
======================================================================= */

footer{
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: #e7380d;
    box-sizing: border-box;
    padding: 15% 0 15% 5%;
    margin-top: 10%;
}

footer .menu_inner{display: none;}


footer .footsub{color: #FFF; font-size: 12px; letter-spacing: .02em; font-weight: 500;}

footer .footsub .footlogo{width: 128px; margin-bottom:30px;}
footer .footsub .footlogo img{width: 100%;}

footer .footsub .address{color: #FFF; font-size: 12px; letter-spacing: .02em; line-height: 200%; margin-bottom: 38px;}
footer .footsub .address a{color: #FFF; text-decoration: none;}

footer .footsub .privacy{font-size: 12px; letter-spacing: .02em; line-height: 1; margin-bottom: 18px;}
footer .footsub .privacy a{color: #FFF; text-decoration: none; transition: all 0.3s ease; position: relative;}
footer .footsub .privacy a::after{
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #FFF;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .2s;
}
footer .footsub .privacy a:hover::after{
  transform-origin: left top;
  transform: scale(1, 1);
}


footer .footsub .copyright{font-family: Arial, Helvetica, "sans-serif"; font-size: 10px; letter-spacing: .02em; }



footer .pagetop{position: absolute; right: 5%; top: -22px;}
footer .pagetop a{width: 46px; height: 44px; background: #c4c4c4; border-radius: 6px; transition: all 0.3s ease; 
/*　box要素縦中央 */
 display: -webkit-flex;
 display: flex;
 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: center; /* 横方向右揃え（Safari用） */
 justify-content: center; /* 横方向右揃え */
}
footer .pagetop a img{width: 5px;}
footer .pagetop a:hover{background: #a8a8a8; transition: all 0.2s ease;}



/*=====================================================================
Animation
======================================================================= */

/* hover
------------------------------------------------------------------------ */
a.mo_fade{transition: all 0.3s ease;}
a.mo_fade:hover{opacity: 0.5; transition: all 0.2s ease;}

a.mo_fade2{transition: all 0.3s ease;}
a.mo_fade2:hover{opacity: 0.75; transition: all 0.2s ease;}



/* Newsサムネイル　hover拡大
------------------------------------------------------------------------ */

/* Hover Image */
a.hoverimg {
  display: block;
  transition: 0.3s ease-out;
    transform: scale(1.0);
}

a.hoverimg:hover {
  transform: scale(1.06);
  opacity: 0.75;
	transition: 0.15s ease-out;
}


/* スプリットテキスト */
.char-wrap {
  display:inline-block;
  overflow:hidden;
  vertical-align:bottom;
}
.char {
  display:inline-block;
  transform:translateY(100%);
  will-change:transform;
  white-space:pre;
}

.char.animate {
  animation-name:slideUp;
  animation-duration:0.6s;/* アニメーション間隔 */
  animation-fill-mode:forwards;
  animation-timing-function:cubic-bezier(.22,.9,.35,1);
  /* animation-delay はJSで付ける */
}
.sr-only {
  position:absolute!important;
  width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}


/* Povacy */
.privacy_wrap{width: 90%; margin: 0 auto 0 auto; padding-top: 10%; position: relative; z-index: 4;}

.privacy h2{font-size: 21px; font-weight: bold; border-bottom: 1px solid #DDD; padding-bottom: 30px; margin-bottom: 20px;}
.privacy .privacy_block{font-size: 15px; line-height: 200%; border-bottom: 1px solid #DDD; padding-bottom: 20px; margin-bottom: 20px;}
.privacy .privacy_block:last-child{border-bottom: none; padding-bottom: 0; margin-bottom: 0;}
.privacy .privacy_block .prv_ttl{font-size: 17px; line-height: 200%; font-weight: bold;}
.privacy .privacy_block span{font-weight: bold;}

    .privacy .privacy_block p{margin: 0; padding: 0;}

/* 404
------------------------------------------------------------------------ */

.notfoundttl {width: 100%; text-align: center; font-size: 30px; color: #646464; letter-spacing:-.03em; margin:140px 0 30px 0;}

.notfound_btn{width: 90%; margin: 0 auto 60px auto;}

.notfound_btn  a{
	 width: 100%; 
	height: 50px;
    font-size:15px;
    line-height: 1;
    font-weight: 500;
	background-color: #e7380d; 
	text-align: center; text-decoration: none;color: #FFF; 
	transition: all 0.3s ease;
/*　box要素縦中央 */
 display: -webkit-flex;
 display: flex;
 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
 justify-content: center; /* 横方向中央揃え */

}

.notfound_btn  a:hover{background-color: #c4c4c4; color: #FFF; transition: all 0.1s ease;}


}
/* responsive End */
/*===================================================================== */


@keyframes slideUp {
  from {transform:translateY(100%);}
  to   {transform:translateY(0%);}
}


