@charset "utf-8";

/* 
last: 2024.3.22
*/

/*フォント設定*/
html{
	font-size: 10px; /* initial 10px */
}
body {
  font-family: "Noto Sans JP", "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体","ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
  font-size: 1.6rem;
  /* default font-size 16px */
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

/*----------------------------------------------------------
/* リセット・基本定義
-----------------------------------------------------------*/
*{
  box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* 段落 */
p {
  margin: 0.5em 0 1.5em 0;
}

/* アンカー */
a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: #5d5959;
}
a:active,
a:hover {
  text-decoration: underline;
}
.ud-none{
  text-decoration: none !important;
}

/*** イメージ ***/
img {
  max-width: 100%;
  height: auto;
}

.indent1 {
  padding-left: 1em;
  text-indent: -1em;
}

/* スモールデバイスでボタンタップ時の枠線OFF */
*:focus {
  outline: none;
}

/* 要素表示制御 */
.dp-none{
  display: none !important;
}
.dp-inline{
  display: inline !important;
}
.dp-block{
  display: block !important;
}
.dp-inline-block{
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
}
@media print, (min-width: 768px) {
.dp-md-none{
  display: none !important;
}
.dp-md-block{
  display: block !important;
}
}
@media screen and (min-width: 1280px) {
}


/*-------------------------------------------------------------------
/*  包含
--------------------------------------------------------------------*/
body{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* 全包含 */
article {
  margin: 0 auto 0;
  padding:0 15px 60px 15px;
  width: 100%;
}
/* コンテンツ包含 */
section{
  margin: 0 auto 0;
  padding:0 0 0 0;
  width:100%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
article > section:nth-of-type(n+2){
  margin-top: 60px;
}
}
@media print, (min-width: 768px) {
article > section:nth-of-type(n+2){
  margin-top: 80px;
}
}
@media screen and (min-width: 1280px) {
/* 全包含 */
article {
  padding:0 15px 80px 15px;
}
}

/*-------------------------------------------------------------------
/*  見出し
--------------------------------------------------------------------*/
h1{
  margin: 0 0 0 0;
  font-size:2rem;
}
h2{
  margin: 0 0 30px 0;
  padding:0 0 5px 0;
  width:100%;
  max-width: 1000px;
}
h2 > span{
  display: inline-block;
  margin: 0 0 0 0;
  padding:10px 15px;
  font-size:1.8rem;
  color:#fff;
  background-color: #5d5959;
}
@media screen and (max-width: 767px) {
}
@media print, (min-width: 768px) {
h1{
  margin: 0 0 0 0;
  font-size:2.4rem;
}
h2 > span{
  font-size:2rem;
}
}
@media screen and (min-width: 1280px) {
h2{
  padding:0 0 5px 0;
}
}


/*-------------------------------------------------------------------
/*  GLナビ／スモールデバイス
--------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
/* PC用非表示 */
.hd-inner .global-navi-sd{
  display: none !important;
}
/* SPナビOPENボタン */
.sdmenu-btn {
  display: block;
  position: fixed;
  top:5px;
  right:15px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  opacity: 0.7;
  transition: 0.2s ease-in-out;
  z-index: 100;
}
.sdmenu-btn:hover {
  opacity: 1;
}
.sdmenu-btn span {
  display: block;
  position: absolute;
  width: 40px;
  height: 5px;
  left: 0;
  background: #5d5959;
  border:solid 1px #fff;
  transition: 0.2s ease-in-out;
}
.sdmenu-btn span:nth-child(1) {
  top: 5px;
}
.sdmenu-btn span:nth-child(2) {
  top: 22px;
}
.sdmenu-btn span:nth-child(3) {
  top: 39px;
}
.sdmenu-btn.active span:nth-child(1) {
  top: 20px;
  left: 0;
  transform: rotate(-45deg);
}
.sdmenu-btn.active span:nth-child(2),
.sdmenu-btn.active span:nth-child(3) {
  top: 20px;
  transform: rotate(45deg);
}

/** ウインドウオープン **/
.global-navi-sd.active{
  transform: translateX(0%);
  opacity: 1;
  z-index: 1;
}
/** 基本設定／メニュー包含 **/
.global-navi-sd{
  position: fixed;
  top: 70px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 0 20px 0;
  width: 100%;
  height: 50vh;
  text-align: center;
  background: rgba(93, 89, 89, 0.8);
  transform: translateX(100%);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  box-shadow: 0px 6px 14px -6px rgba(0, 0, 0, 0.3);
  z-index: -1;
}
/*** メニュー ***/
/* 包含 */
.global-navi-sd > ul{
  margin: 0 auto;
  width:100%;
}
.global-navi-sd > ul li:nth-of-type(n+2){
  margin-top: 10px;
}
.global-navi-sd > ul li a{
  text-decoration: none !important;
  display: block;
  padding: 20px;
  color:#fff;
  transition: all .2s ease-out;
}
.global-navi-sd > ul li a:hover{
  background-color: rgba(93, 89, 89, 1);
}
}

/*-------------------------------------------------------------------
/*  GLナビ／ラージデバイス
--------------------------------------------------------------------*/
@media print, (min-width: 768px) {
.global-navi-ld{
  margin: 0 0 0 0;
  width:50%;
  text-align: right;
  color:#5d5959;
}
}


/*-------------------------------------------------------------------
/* ヘッダー
--------------------------------------------------------------------*/
header{
  margin: 0 auto 20px;
  padding:10px 15px;
  width:100%;
  max-width: 1000px;
}
.hd-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width:100%;
}
@media screen and (max-width: 767px) {
}
@media print, (min-width: 768px) {
}
@media screen and (min-width: 1280px) {
header{
  padding:10px 0;
}
}


/*-------------------------------------------------------------------
/* MV
--------------------------------------------------------------------*/
.main-visual{
  margin: 0 auto 0;
  width:100%;
  max-width: 1000px;
  text-align: center;
}
@media screen and (max-width: 767px) {
}
@media print, (min-width: 768px) {
}
@media screen and (min-width: 1280px) {
.main-visual img{
  display: none;
}
.main-visual{
  width:100%;
  height:666px;
  background: url('./images/main-visual_ld.jpg') center 100px no-repeat;
  background-attachment: fixed;
}
}


/*-------------------------------------------------------------------
/* メインタイトル
--------------------------------------------------------------------*/
.main-title{
  margin: 0 auto 40px;
  padding:40px 0 20px 0;
  text-align: center;
  font-size:2rem;
  font-weight: bold;
  color:#000;
}
@media print, (min-width: 768px) {
.main-title{
  padding:80px 0 20px 0;
  margin: 0 auto 80px;
  font-size:3rem;
  border-top: solid 1px #5d5959;
}
}


/*-------------------------------------------------------------------
/* 事業紹介
--------------------------------------------------------------------*/
#intro p span{
  font-weight: bold;
}
@media screen and (max-width: 767px) {
}
@media print, (min-width: 768px) {
}
@media screen and (min-width: 1280px) {
}


/*-------------------------------------------------------------------
/* 会社概要
--------------------------------------------------------------------*/
.cp-summary{
  border-collapse:collapse;
  margin: 0 0 0 0;
  width:100%;
}
.cp-summary tr th,
.cp-summary tr td{
  padding:15px 8px;
}
.cp-summary tr th{
  text-align: left;
  border-top: solid 2px #5d5959;
  border-bottom: solid 2px #5d5959;
}
.cp-summary tr:nth-of-type(even) td{
  background-color: #d9d9d9;
}
@media screen and (max-width: 767px) {
.cp-summary tr th:nth-child(1),
.cp-summary tr td:nth-child(1){
  width:20%;
}
.cp-summary tr td{
  font-size:1.3rem;
}
}
@media print, (min-width: 768px) {
.cp-summary tr th,
.cp-summary tr td{
  padding:15px 20px;
  width:50%;
}
}
@media screen and (min-width: 1280px) {
}


/*-------------------------------------------------------------------
/* お問い合わせ
--------------------------------------------------------------------*/
.contact a{
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width:195px;
  color:#0c0d3a;
  transition: all 0.2s ease-out;
}
.contact a:hover{
  background-color: #ededed;
}
.contact a span{
  display: block;
  margin-left: 15px;
  transform: rotateZ(90deg);
}
@media screen and (max-width: 767px) {
}


/*-------------------------------------------------------------------
/* フッター
--------------------------------------------------------------------*/
footer{
  margin: 0 auto 0;
  padding:15px 15px 30px;
  width:100%;
  color:#fff;
  background-color: #5d5959;
}
.ft-inner{
  position: relative;
  margin: 0 auto 0;
  padding:0 0;
  width:100%;
  max-width: 1000px;
}
.ft-inner .ft-cp-name{
  margin: 0 0 15px 0;
}

.ft-inner .ft-navi a{
  font-size:1.3rem;
  color:#fff;
}

.ft-inner .info{
  margin: 0 0 0 0;
  font-size:1.3rem;
}
/* ページTOPボタン */
.pagetop-btn {
  text-decoration: none !important;
  display: none;
  position: fixed;
  right:0;
  bottom:27%;
  padding:6px 12px;
  line-height: 1.1;
  text-align: center;
  color:#fff !important;
  background-color: #5d5959;
  opacity: 0.7;
  border:solid 1px #fff;
  transition: all 0.2s ease-out;
}
.pagetop-btn:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
.ft-inner .ft-navi{
  margin: 0 0 30px 0;
  text-align: center;
}
}
@media print, (min-width: 768px) {
.ft-inner{
  padding:0 15px;
}
.ft-inner .ft-navi{
  position: absolute;
  top:0 ;
  right:15px;
  margin: 0 0 0 0;
}
/* ページTOPボタン */
.pagetop-btn {
  right:2%;
  bottom:20%;
}
}
@media screen and (min-width: 1280px) {
footer{
  padding:20px 0 40px 0;
}
}
