/* CSS Document */

/*共通設定*/
body {
	color: #333;
	letter-spacing: 0.05rem;
	font-size: 16px;
	/*font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";*/
	font-family: "Sawarabi Gothic";
	position: relative;
}
html {
  scroll-padding-top: 90px;
}
@media (max-width:480px) {
	body {
		font-size: 14px;
	}
}


@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/*.h2 {
	text-align: center;
}*/
h2 {
	color: #4b4948;
	/*text-align: center;*/
	font-weight: 600;
	position: relative;
	display: inline-block;
	/*padding: 0 55px;*/
	padding-bottom: 2.5px;
	margin: 25px 0 25px;
	/*border-bottom: 2px solid #4b4948;*/
	letter-spacing: 0.15rem;
	font-size: 30px;
	line-height: 1.5;
}
h2 span {
	color: #990080;
	font-size: 20px;
	letter-spacing: 0.05rem;
}
@media (max-width:480px) {
	h2 {
		font-size: 20px;
		margin: 5px 0 5px;
	}
	h2 span {
		font-size: 16px;
	}
}

/*header-------------------------------------------------------------------------------------------------------------------------------------------------------*/
header {
	position: sticky;
	top: 0vh;
	background: #fff;
	z-index: 10;
}
.header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*z-index: 999;*/
}
@media screen and (min-width: 1070px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  padding: 25px 45px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
  z-index: 20;
}
@media (max-width:1280px) {
	.header__inner {
		padding: 25px 10px;
	}
}
@media (max-width:1070px) {
	.header__inner {
		padding: 20px;
	}
}


/* ヘッダーのロゴ部分 */
.header-title h1 {
	/*font-weight: normal;*/
}
.header-title a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	padding-left: 25px;
}
.header-title a:hover {
	opacity: 0.5;
}
.header-title a p {
	font-size: 24px;
	letter-spacing: 0.05rem;
	line-height:1.5;
	display: flex;
}


.header-title a p span {
	font-size: 10px;
	letter-spacing: 0.05rem;
}
.header__title img {
  max-width: 100px;
  padding-right: 10px;
	object-fit: cover;
}

@media (max-width:1070px) {
	.header-title a {
		padding-left: 0px;
	}
}
@media (max-width:480px) {
	.header-title a p {
		font-size: 18px;
	}
	.header-title img {
		width: 70px;
	}
}

/* ヘッダーのナビ部分 */
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
  }

@media (max-width:1070px) {
	.header__nav {
	  position: fixed;
	  right: 0;
	  left: 0;
	  top: 50px;
	  height: 100vh;
	  transform: translateX(100%); 
	  background-color: #fff; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
	  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
	  display: flex;
	  font-weight: normal;
	}
}

.nav__items {
  margin: 100px auto auto;
}

@media screen and (min-width: 1070px) {
  .nav__items {
    margin: initial;
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;
  }
}

.nav-items__item {
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;

}
@media (max-width:1070px) {
	.nav-items__item {
		padding: 0;
	}
}

@media screen and (min-width: 1070px) {
  .nav-items__item:before {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 0;
	
  }
  .nav-items__item:hover:before {
    opacity: 1;
  }
}

.nav-items .nav-items__item{
	list-style: none;
}


/* ナビのリンク */
.nav-items__item a {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  text-decoration: none;
  color: #333;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
.nav-items__item a:hover {
	/*opacity: 0.5;*/
	color: #990080;
}

/*電話リンク　*/
.tel-link {
	line-height: 1;
	text-align: center;
	list-style: none;
	padding-left: 25px;
}
.tel-link a {
	text-decoration: none;
	color: #333;
}
.tel-link span {
	font-size: 26px;
	color: #990080;
    font-weight: bold;
}
.tel-link p {
	font-size: 12px;
	display: inline-block;
	text-align: center;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
/*.tel-link:hover {
	opacity: 0.5;
}*/
@media (max-width:1070px) {
	.tel-link {
		padding: 0 0 25px;
	}
}

/*ナビお問い合わせボタン*/

.h-contact a {
	display: block;
	color: #fff;
	background: #990080;
	padding: 10px 15px;
	text-decoration: none;
	border-radius: 5px;
}

@media screen and (min-width: 1070px) {
	.nav-items__item a {
	   margin-bottom: 0;
	   font-size: 16px;
    }
	.h-contact a{
	display: none;
	}
}

/* ハンバーガーメニュー ----------------------------- */

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 1070px) {
  /*PC時非表示にする*/
  .hamburger {
    display: none;
  }
}

.header__hamburger {
  width: 30px;
  height: 100%;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
  cursor: pointer;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #333;
  position: relative;
  transition: ease .4s; 
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 7px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/*ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
/*.header__hamburger.active {
	position: fixed;
	right: 20px;
}*/

.hamburger.active span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}

/*ヘッダーをスクロールしたとき*/
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/*カレント*/
.current a,.current-2 a{
	color: #2999c4;
}




/*トップイメージ-------------------------------------------------------------------------------------------*/
.top-img {
	padding-bottom: 50px;
/*	padding-top: 50px;*/
	width: 100%;
	margin: 0 auto;
		position: relative;

}
.top-img img {
	width: 100%;
	right: 0;
	object-fit: cover;
	max-height: 900px;
}
.top-img .top-p {
	position: absolute;
	right: 2%;
	bottom:15%;
	
}
.top-img .top-p p {
	font-size: 24px;
	line-height: 1.75;
	
}
.top-img .top-p p span {
	font-size: 46px;
	font-weight: 600;
	letter-spacing: 1rem;
	padding-bottom: 25px;
	display: inline-block;
	color: #2c3e57;
	text-shadow: 2px 2px 15px #fff ,
-2px 2px 15px #fff ,
2px -2px 10px #fff ,
-2px -2px 10px #fff;
}
.top-img .top-p a {
	text-decoration: none;
	background: #990080;
	color: #fff;
	padding: 7.5px 15px;
	border-radius: 5px;
	margin-top: 35px;
	display: inline-block;
}
.top-img .top-p a:hover {
	opacity: 0.75;
}

.top-img .top-p img{width: 550px;}

@media (max-width:1280px) {
	.top-img .top-p p span {
		font-size: 32px;
		letter-spacing: 0.75rem;
	}
}
@media (max-width:780px) {
	.top-img {
		flex-direction: column-reverse;
	}
	.top-img img {
		width: 100%;
		margin: 0 0 0 auto;
	}
	.top-img .top-p {
		/*width: 100%;*/
		margin:  0 auto 0 0;
	}
	.top-img .top-p img{width: 180px;}
}
@media (max-width:480px) {
	.top-img {
		flex-direction: column;
		padding-top: 15px;
		width: 100%;
	}
	.top-img img {
		width: 100%;
		/*padding-top: 50px;*/
	}
	.top-img .top-p {
		padding-top: 50px;
		text-align: center;
		width: 95%;
		margin: 0 auto;
	}
	.top-img .top-p p {
		font-size: 12px;
	}
	.top-img .top-p p span {
		font-size: 26px;
		letter-spacing: 0.5rem;
		font-weight: bold;
	}
}

/*.top-img img {
	padding-bottom: 75px;
}

.top-img p {
	text-align: center;
	line-height: 2.5;
	letter-spacing: 0.05rem;
	width: 80%;
	margin: 0 auto;
}

.top-img p span {
	font-size: 28px;
	letter-spacing: 0.3rem;
	padding-bottom: 25px;
	display: inline-block;
}
.top-img p span br {
	display: none;
}

@media (max-width:480px) {
	.top-img {
		padding-bottom: 40px;
	}
	.top-img img {
		padding-bottom: 40px;
	}
	.top-img p {
		width: 85%;
	}
	.top-img p span {
		font-size: 22px;
		letter-spacing: 0.05rem;
		line-height: 2;
	}
	.top-img p span br {
		display: block;
	}
}*/

/*事業について-------------------------------------------------------------------------------------------*/
#service {
	padding: 100px 0 150px;
	background: #f3f8fe;
}
#service .h2 {
	width: 80%;
	margin: 0 auto;
	text-align: center;
}


#service .a-flex{width: 100%;
justify-content: center;gap:15px;
padding-top: 15px;}


#service .a-flex img {
	width: auto;
}

.s-intro {
	width: 80%;
	margin: 0 auto;
	font-weight: bold;
	font-size: 24px;
	letter-spacing: 0.1rem;
}
.s-container {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 50px;
}
.s-container .contents {
	width: 100%;
	text-align: center;
}
.s-container .contents p {
	padding-top: 20px;
	letter-spacing: 0.05rem;
	line-height: 1.5;
	font-size: 15px;
	color: grey;
	margin-bottom: 10px;
}
.s-container .contents p span {
	font-weight: 600;
	padding-bottom: 10px;
	display: inline-block;
	font-size: 24px;
	color: #333;
}


.contents_p {font-size: 20px!important;
font-weight: normal!important;
}

@media (max-width:1024px) {

#service .a-flex img{width: 50%;}}

@media (max-width:780px) {
	#service {
		padding: 100px 0;
	}
	.s-container .contents {
		width: 70%;
		padding-bottom: 20px;
		
	}
	#service .a-flex{padding:3%;}
	#service .s-container{justify-content: center;}
	#service .a-flex img{width: 80%;}
}
@media (max-width:480px) {
	#service {
		padding: 50px 0 75px;
	}
	.s-container .contents {
		width: 100%;
	}
	.s-container .contents p {
		font-size: 13px;
		padding-bottom: 0px;
		margin-bottom: 0px;
	}
	.s-container{padding: 0px;}
	.s-container .contents p span{font-size: 18px;padding-bottom: 0px;}
	#service .a-flex{
padding-top: 5px;}
	#service .a-flex img{width: auto;}

}


/*会社概要------------------------------------------------------------------------------------------------*/
#about {
	padding: 100px 0 150px;
	background: #f3f8fe;
}
#about .h2 {
	width: 80%;
	margin: 0 auto;
	text-align: center;
}

/*代表挨拶*/
.aisatsu {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.aisatsu img {
	width: 30%;
}
.aisatsu p {
	width: 65%;
}
.aisatsu p span {
	font-weight: 600;
	font-size: 24px;
}

.greeting {
	width: 80%;
	margin: 0 auto;
}
.greeting p {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.greeting p span {
	font-weight: bold;
	font-size: 26px;
	width: 200px;
}
.greeting p br {
	display: none;
}

/*概要*/
.gaiyou-flex {
	display: flex;
	width: 60%;
	margin: 0 auto;
	justify-content: space-between;
	padding: 30px 0 50px;
}
.gaiyou {
	width: 47.5%;
	/*margin: 0 auto;*/
}
.gaiyou dl {
	display: flex;
	padding: 10px 0 30px;
}
.gaiyou dl dt {
	width: 25%;
	font-weight: 600;
}
.gaiyou dl dd {
	width: 75%;
	letter-spacing: 0.1rem;
}
.gaiyou dl dd a {
	text-decoration: none;
	color: #082f50;
}

@media (max-width:480px) {
	#about {
		padding: 50px 0 100px;
	}
	.gaiyou-flex {
		display: block;
		width: 80%;
		padding-top: 10px;
	}
	.gaiyou {
		width: 100%;
	}
	.gaiyou dl {
		justify-content: space-between;
	}
	.gaiyou dl dd {
		width: 70%;
	}
	.gaiyou dl dd span {
		display: none;
	}
}

/*写真*/
.a-flex {
	display: flex;
gap:5%;
	width: 80%;
	margin: 0 auto;
	padding-top: 50px;
}
.a-flex img {
	width: 30%;
	object-fit: contain;
}

@media (max-width:480px) {
	.a-flex {
		display: block;
		padding-top: 5px;
	}
	.a-flex img {
		width: 100%;
		padding: 25px 0;
	}
}

/*マップ*/
.map {
	width: 60%;
	margin: 0 auto;
}
.map iframe {
	width: 100%;
	height: 400px;
}
.map p {
	padding-top: 15px;
}


/*お知らせ------------------------------------------------------------------------------------------------*/
#message {
	padding: 100px 0 150px;
	background: #fff;
	/*background: #FDF5E6;*/
}
#message .h2 {
	width: 80%;
	margin: 0 auto;
	text-align: center;
}
.message {
	text-align: center;
	font-size: 20px;
	margin: 0 auto;
	width: 800px;
}

@media (max-width:780px) {
	.news {
		display: block;
	}
	.message {
		width: 100%;
		padding-bottom: 15px;
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 480px) {
	.message {
		padding: 10px 10px 25px;
	}
	#message h2 {
		padding-bottom: 10px;
	}
	.news-date {
		width: 95px;
	}
	.news-label a {
		font-size: 12px;
		height: 20px;
		line-height: 20px;
		padding: 0 10px;
		border-radius: 3px;
		margin-left: 10px;
	}
	#message {
    padding: 10px 0 10px;
}
	.map{width: 80%;}
}



/*よくあるお問い合わせ-------------------------------------------------------------------------------------*/
#works {
	padding: 100px 0;
}
#works .h2 {
	width: 80%;
	margin: 0 auto;
	text-align: center;
}
#works p{text-align: center;
margin-top: 15px;}

#works .a-flex {align-items: flex-start;}
@media (max-width:480px) {
	#faq {
		padding: 50px 0 100px;
	}
}
.faq-qa {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.qa-008 {
	width: 45%;
	/*margin: 0 auto 2.5em;*/
	padding-top: 25px;
	padding-bottom: 25px;
	letter-spacing: 0.05rem;
	/*background-color: #f2f2f2;*/
	/*border-bottom: 1px solid #808080;*/
}
.qa-008 dt {
    /*color: #333333;*/
	color: #333;
    font-weight: 600;
	/*padding: 0 1.5em;*/
	display: flex;
	align-items: center;
}

.qa-008 dt::before,
.qa-008 dd::before {
    margin-right: 0.8em;
	display: inline-block;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 28px;
}

.qa-008 dt::before {
    content: "Q";
	color: #333;
}

.qa-008 dd {
    /*margin: 0 0 2.5em;*/
    padding: 1em 0 1.5em;
    color: #333333;
	display: flex;
	align-items: center;
}

.qa-008 dd::before {
    content: "A";
	font-weight: bold;
	color: gray;
}

/*お問い合わせボタン*/
.contact-form {
	text-align: center;
	padding-top: 50px;
}
.contact-form a {
	text-decoration: none;
	color: #fff;
	/*border: 1px solid #333;*/
	background: #990080;
	border-radius: 5px;
	padding: 10px 15px;
	/*transition: 0.5s;*/
}
.contact-form a:hover {
	opacity: 0.75;
}
@media (max-width:780px) {
	.faq-qa {
		display: block;
	}
	.qa-008 {
		width: 100%;
	}
	.qa-008 dd {
		padding: 0.5em 0 1em;
		border-bottom: 1px solid #808080;
	}
}
@media (max-width:480px) {
	.qa-008 dt {
		padding: 0;
	}
	.qa-008 dd {
		padding: 1em 0 1em;
	}
	.qa-008 dt::before,
	.qa-008 dd::before {
		font-size: 22px;
	}
}



/*採用情報------------------------------------------------*/
#contact {
	padding: 100px 0 150px;
	background-image: url("../img/bg.webp");
	background-size:cover;
}
#contact .h2 {
	width: 80%;
	margin: 0 auto;
	text-align: center;
}
@media (max-width:480px) {
	#recruit {
		padding: 50px 0;
	}
	
}

.contact {
	/*display: flex;
	justify-content:space-between;*/
	width: 80%;
	margin: 0 auto;
	padding-bottom: 50px;
}


/*.saiyou div .work-1 {
	width: 40px;
}*/
.contact div .saiyou-text {
	text-align: center;
}
.contact div .saiyou-text span {
	font-weight: bold;
	display: inline-block;
	padding-bottom: 15px;
	font-size: 25px;
}
.contact div .saiyou-text .saiyou-link a {
	text-decoration: none;
	color: #fff;
	background: #990080;
	padding: 30px 100px;
	border-radius: 5px;
	margin-top: 25px;
	display: inline-block;
	font-size: 34px;
}
.contact div .saiyou-text .saiyou-link a:hover {
	opacity: 0.75;
}

@media (max-width:900px) {
	.contact div img {
		width: 40%;
	}
	.contact div .saiyou-text {
		width: 100%;
	}
}
@media (max-width:600px) {
	.contact {
		padding-bottom: 0;
	}
	.contact div {
		flex-wrap: wrap;
		padding-bottom: 25px;
	}
	.contact div img {
		width: 100%;
	}
	.contact div .saiyou-text {
		width: 100%;
		padding-top: 25px;
		
	}
	.contact div .saiyou-text span {
		font-size: 20px;
	}
	.contact div .saiyou-text .saiyou-link {
		/*text-align: center;
		display: inline-block;*/
		margin: 0 auto;
	}
	.contact div .saiyou-text .saiyou-link a{font-size: 24px;
	padding: 20px 40px;
   

}
}


/*フッター------------------------------------------------------------------------------------------------*/
footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	background: lightslategray;
	color: #fff;
	padding: 10px 0;
	/*margin-top: 50px;*/
}
.f-adress {
	padding: 10px 40px;
}
.f-adress p {
	font-size: 14px;
	line-height: 1.5;
}
.f-adress p a {
	text-decoration: none;
	color: #fff;
}
.f-adress .f-logo {
	font-size: 24px;
	padding-bottom: 10px;
}
.copyright {
	font-size: 12px;
	padding: 10px 40px;
}

@media (max-width:480px) {
	footer {
		display: block;
		text-align: center;
		padding-top: 25px;
	}
	.f-adress p {
		font-size: 12px;
	}
	.f-adress .f-logo {
		padding-bottom: 25px;
		font-size: 20px;
	}
	.copyright {
		padding-bottom: 0;
		font-size: 10px;
	}
}


/*TOPへ戻るボタン*/
#pagetop {
	height: 50px;/*枠の大きさ*/
	width: 50px;/*枠の大きさ*/
	position:fixed;
	right: 30px;
	bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-pagetop {
	width: 30px;/*矢印の大きさ*/
	height: 30px;/*矢印の大きさ*/
	border-top: 2px solid #082f50;
	border-right: 2px solid #082f50;
	transform: translateY(20%) rotate(-45deg);
	filter: contrast(100);/*背景色によって濃くなる*/
}

@media (max-width:480px) {
	#pagetop {
		right: 20px;
	}
}

.br_sp {
    display: none;
}

@media (max-width: 600px) {
    .br_sp {
        display: block;
    }
}
























