@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/* CSS Document */
/**********************************************************************リセット*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
	font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
	line-height: 1.7;
	color: #333;
	background-color: #fff;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**********************************************************************リセットここまで*/


/**********************************************************************ヘッダー*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ef8200;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.header-inner {
  max-width: 1080px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: 0.5s;
	color: #fff;
}

.main-nav a:hover {
  transform: scale(1.15);
	opacity: 0.7;
}

.main-nav a.nav-btn {
  border: 2px solid #f18a00;
  padding: 8px 40px;
  border-radius: 30px;
  color: #ef8200;
  font-weight: bold;
	background: #fff;
}
.nav-btn a{
  color: #ef8200;
}
.nav-btn:hover {
  background: #f18a00;
  color: #fff;
}

/**********************************************************************ハンバーガー */
/* ===============================
  PC用（ハンバーガーは非表示）
=============================== */
.hamburger {
  display: none;
}


/* ===============================
  モバイル用
=============================== */
@media (max-width: 767px) {

  /* ヘッダーのオレンジ帯を消す */
  .site-header {
    background: none;
    box-shadow: none;
    height: 0;
  }

  .header-inner {
    padding: 0;
  }

  /* PCロゴを消す */
  .logo.pc {
    display: none;
  }

  /* -----------------------------
    ハンバーガー本体
  ----------------------------- */
  .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: #ef8200;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .hamburger span {
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  width: 28px;
	  height: 3px;
	  background: #fff;
	  transform: translate(-50%, -50%);
	  transition: .4s;
	}

  .hamburger span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-8px);
}
.hamburger span:nth-child(2) {
  transform: translate(-50%, -50%);
}
.hamburger span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(8px);
}


  .hamburger.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}


  /* -----------------------------
    メニュー（全画面）
  ----------------------------- */
  .main-nav {
    position: fixed;
    inset: 0;
    background: #ef8200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: .4s;
    z-index: 999;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav a {
    color: #fff;
    font-size: 22px;
  }

  .main-nav a.nav-btn {
    background: #fff;
    color: #ef8200;
  }
}

/**********************************************************************HERO*/
.hero {
  height: 100vh;
	max-height: 630px;
  background: url("../img/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
	padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-logo img {
  width: 180px;
  margin: 0 auto 40px;
}

.hero h1 {
  font-size: 32px;
  line-height: 1.8;
  color: #fff;
  font-weight: bold;
  margin-bottom: 40px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-btn {
  display: inline-block;
  padding: 14px 80px;
  border-radius: 40px;
  background: #f18a00;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: scale(1.05);
  background: #ff9a1f;
}


/**********************************************************************SECTION*/
.section {
  padding: 80px 20px;
}

.bg-light {
  background: #f7f7f7;
}

.container {
  max-width: 960px;
  margin: auto;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 16px;
}

.cta {
  padding: 100px 20px;
  text-align: center;
}

.cta-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 60px;
  background: #333;
  color: #fff;
  text-decoration: none;
  transition: transform .2s;
}

.btn:hover {
  transform: scale(1.05);
}

/********************************************************************** TRIANGLE BACKGROUND ===== */
.triangle-bg {
  background-color: #fafafa;
  background-image:
    linear-gradient(135deg, rgba(255,165,0,.15) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,165,0,.15) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,165,0,.15) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,165,0,.15) 25%, transparent 25%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

/********************************************************************** FADE ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/**********************************************************************TopMessage*/

.topmessage {
  position: relative;
  overflow: hidden;
	background: #f4f4f4;
	z-index: 0;
}
.topmessage-inner{
  position: relative;
  z-index: 1;
	
  max-width: 1080px;
  margin: 0 auto;
  min-height: 400px;
  padding: 120px 0 120px;
}
.tm-title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  position: absolute;
  top: -12px;
  right: 0;
  font-size: 130px;
  font-weight: 800;
  color: #ef8200;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
}
.topmessage-inner>div{
	padding-top: 50px;
}
.tm-lead {
  display: inline-block;
  background: #fff;
  padding: 0;
  line-height: 1;
  font-size: 32px;
  font-weight: 600;
  z-index: 5;
	margin-bottom: 15px;
}

.tm-name {
  font-size: 18px;
  letter-spacing: 0.1em;
  z-index: 5;
}


/* ボタン */
.tm-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 80px;
  background: #f18a00;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: 10;
}


.tm-btn:hover {
  opacity: 0.8;
}



.topmessage-inner img {
  height: 80%;
  max-height: 400px;
  position: absolute;
	left: auto;
	right: 0;
	top: auto;
	bottom: 0;
	z-index: 100;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .topmessage-inner {
    flex-direction: column;
    text-align: center;
	  padding: 50px 0 130px;
  }
  .topmessage-inner img{
    position: relative;
  }

  .tm-title {
    font-size: 80px;
	left: 0;
	right: auto;
	top: 0;
  }
	.tm-lead {
	  display: inline-block;
	  background: none;
	  padding: 0;
	  line-height: 1.2;
	  font-size: 28px;
	  font-weight: 600;
	  z-index: 5;
		margin-bottom: 15px;
	}
	.topmessage-inner img{
		width: 80%;
		margin: 0 auto;
	}
}

/**********************************************************************TopMessage下部*/

.topmessage-bottom {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 70px 40px;
  overflow:hidden;
}

.tm-desc {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 2;
  font-size: 16px;
}

/* 3カラム */
.tm-features {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.tm-feature {
  width: 33.333%;
}
/* モバイル */
@media (max-width: 900px) {
  .tm-features {
    flex-direction: column;
  }

  .tm-feature {
    width: 100%;
  }
	.tm-desc{
		text-align: justify;
	}
}


.tm-feature h3 {
  font-size: 20px;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 6px 0;
  z-index: 1;
}

/* 右端まで伸びるオレンジ帯 */
.tm-feature h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 30%;
  width: 100%;
  height: 20%;
  background: #f18a00;
  z-index: -1;
}



/* 左右の固定背景 */
.topmessage-bottom::before,
.topmessage-bottom::after{
  content:"";
  position:absolute;
  top:0;
  height:100%;
  background-repeat:no-repeat;
}

/* 左側 */
.topmessage-bottom::before{
	width: 400px;
  left:0;
  background-image:url("../img/bagimg01.svg");
}

/* 右側 */
.topmessage-bottom::after{
	width: 580px;
  right:0;
  background-image:url("../img/bagimg02.svg");
}





/**********************************************************************WECAN*/
.wecan{
  background:#fdebd8;
  padding:120px 0;
  position:relative;
  overflow:hidden;
}

.wecan-inner{
  max-width:1080px;
  margin:0 auto;
  text-align:center;
  padding:0 20px;
  position:relative;
}

.wecan-bg{
  position:absolute;
  left:-50px;
  top:-40px;
  font-size:180px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight:800;
  color:#fff;
  line-height:1;
  pointer-events:none;
}

.wecan h2{
  font-size:32px;
  color:#f08a00;
  margin-bottom:30px;
  position:relative;
  z-index:2;
}

.wecan p{
  font-size:16px;
  margin-bottom:60px;
  position:relative;
  z-index:2;
}

/* カード */

.wecan-grid{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap:25px;
  margin-bottom:60px;
}
@media (max-width: 767px){
  .wecan-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.wecan-item{
  text-align:center;
}

.wecan-item img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  border-radius:5px;
  box-shadow:0 10px 20px rgba(0,0,0,.1);
  transition:.4s;
}

.wecan-item img:hover{
  transform:scale(1.05);
}

.wecan-item h3{
  margin-top:15px;
  font-size:18px;
  color:#f08a00;
}

/* ボタン */

.btn-orange{
  display:inline-block;
  background:#f08a00;
  color:#fff;
  padding:14px 80px;
  border-radius:40px;
  font-weight: bold;
  font-size:16px;
  transition:.3s;
}

.btn-orange:hover{
  background:#e07700;
  transform:scale(1.05);
}


/**********************************************************************CTA*/
.cta{
  position:relative;
  padding:120px 20px;
  overflow:hidden;
  background:#fff;
}

.cta::before{
  content:"";
  position:absolute;
  inset:-120%;
  z-index:0;
  pointer-events:none;

  background-image:url("../img/tri.svg");
  background-repeat:repeat;
  background-size:600px 600px;

  /* タイルのズレでリズムを出す */
  background-position:0 0;

  /* 45度回転 */
  transform:rotate(45deg);
  transform-origin:center;

  /* スクロール固定 */
  background-attachment:fixed;
}

.cta > *{
  position:relative;
  z-index:1;
}


.cta-inner{
  max-width:1080px;
  margin:0 auto;
  text-align:center;
  position:relative;
  z-index:2;
}

.cta h2{
  color:#f08a00;
  font-size:32px;
  margin-bottom:25px;
}

.cta p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:50px;
}

.cta-btn{
  display:inline-block;
  background:#f08a00;
  color:#fff;
  padding:14px 80px;
  border-radius:40px;
  font-weight: bold;
  font-size:16px;
  transition:.3s;
}

.cta-btn:hover{
  background:#e07700;
  transform:scale(1.08);
}


/**********************************************************************フッター*/
.site-footer{
  background:#f08a00;
  color:#fff;
  padding:80px 20px 60px;
}

.footer-inner{
  max-width:1080px;
  margin:0 auto;
}

.footer-logo{
  text-align:center;
  margin-bottom:60px;
}

.footer-logo img{
  max-width:160px;
  margin:0 auto;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.footer-company{
  text-align:left;
  font-size:14px;
  line-height:1.9;
}

.footer-type{
  font-size:16px;
  margin-bottom:10px;
}

.footer-name{
  font-size:20px;
  font-weight:bold;
}

.footer-tel{
  font-size:22px;
  font-weight:bold;
	line-height: 1;
  margin-bottom:20px;
}

.footer-area h3{
  font-size:18px;
  margin-bottom:20px;
}

.footer-area ul{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 40px;
  list-style:none;
}

.footer-area li{
  font-size:14px;
}

/* モバイル */
@media(max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
  .footer-area ul{
    grid-template-columns:1fr;
  }
}



/**********************************************************************フェード*/

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/**************************************************************************************************************下層頁共通*/
.sec-inner{
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	display: flex;
}
.topimg{
	height: 350px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
h4{
	display: inline-block;
	width: 100%;
	color: #fff;
	font-size: 64px;
	text-align: center;
	margin-top: 150px;
}

/* モバイル */
@media(max-width:768px){
	h4{
		font-size: 36px;
	}
	.sec-inner{
		flex-direction: column;
	}
}


/**************************************************************************************************************topmessage*/

#message .topimg{
	background-image: url("../img/topmassage-top.jpg");
}
#message h1{
	text-align: center;
	font-size: 36px;
	color: #ef8200;
	margin: 50px auto;
}
#message .massege{
	background: #ef8200;
	padding-top: 50px;
	align-items: flex-end;
}
#message .massege a{
	color: #fff;
	text-align: justify;
	display: inline-block;
	margin-bottom: 20px;
	line-height: 1.7;
}
#message .massege img{
	width: 260px;
}

.massege-2{
  background: url("../img/massege-back02.jpg") center/cover no-repeat;
  padding: 140px 0;
}

.massege-2 .sec-inner{
  display: flex;
  flex-direction: column;   /* 縦に並べる */
  gap: 80px;
}

.massege-2 .sec-inner > div{
  position: relative;
  padding: 40px 50px;
}

/* 白いカード */
.massege-2 .sec-inner > div::before{
  content:"";
  position:absolute;
  inset:0;
  background:#fff;
  z-index:1;
}

/* オレンジの影 */
.massege-2 .sec-inner > div::after{
  content:"";
  position:absolute;
  inset:0;
  transform: translate(18px,18px);
  background:#f08a00;
  z-index:0;
}

/* 文字を最前面へ */
.massege-2 .sec-inner > div > *{
  position: relative;
  z-index:2;
}

/* 左右に振る */
.massege-2 .sec-inner > div:nth-child(odd){
  align-self: flex-start;
}

.massege-2 .sec-inner > div:nth-child(even){
  align-self: flex-end;
}

/* 見出し */
.massege-2 h2{
  color:#f08a00;
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}

/* 本文 */
.massege-2 p{
  font-size:14px;
  line-height:2;
}

/* モバイル */
@media(max-width:768px){
	#message h1{
		font-size: 32px;
		line-height: 1.4;
	}
	#message .massege .sec-inner{
		flex-direction: column;
		padding: 0 5%;
	}
	#message .massege img{
		width: 70%;
		margin: 0 auto;
	}
  .massege-2{
    padding:80px 20px;
  }

  .massege-2 .sec-inner > div{
    width:95%;
    padding:30px;
  }
	.massege-2 .sec-inner > div p{
		text-align: justify;
	}

  .massege-2 .sec-inner > div::after{
    right:-10px;
    bottom:-10px;
	transform: translate(5px,5px);
  }

  .massege-2 .sec-inner > div:nth-child(even),
  .massege-2 .sec-inner > div:nth-child(odd){
    align-self: stretch;
  }
}



/**************************************************************************************************************work*/

#work .topimg{
	background-image: url("../img/work-top.jpg");
}
#work h1{
	text-align: center;
	font-size: 36px;
	color: #ef8200;
	margin: 50px auto;
}
#work .wecan01>p{
	text-align: center;
	margin-bottom: 50px;
	font-size: 18px;
}
#work .wecan01 .sec-inner{
	justify-content: center;
	column-gap: 30px;
	padding-bottom: 100px;
}

#work .wecan02-a{
	background: #fdf2e5;
}
#work .wecan-contents{
	padding: 50px;
}

#work .wecan-contents p{
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 15px;
}

#work .wecan-contents td{
	padding: 5px 20px 5px 0px;
	line-height: 1.2;
}
#work .wecan-contents td:first-child{
	color: #ef8200;
	font-weight: 700;
}
#work .wecan02-b .sec-inner{
	flex-direction: row-reverse;
	justify-content: space-between;
}


/* モバイル */
@media(max-width:768px){
	.wecan01{
		padding: 0 5%;
	}
	#work h1{
		margin: 30px auto;
	}
	#work .wecan01>p{
		text-align: justify;
	}
	.wecan-contents{
		padding: 10%;
	}
	.wecan-contents td{
		display: block;
		padding: 5px 0px 5px;
		width: 100%;
	}
	.wecan-contents td:first-child{
		margin-top: 15px;
	}
	.wecan02-b .sec-inner{
		flex-direction: column;
	}



}


/**************************************************************************************************************about*/

#about .topimg{
	background-image: url("../img/about-top.jpg");
	background-position: center 70%;
}
#about h1{
	text-align: center;
	font-size: 36px;
	color: #ef8200;
	margin: 50px auto;
}

#about .about-con table{
	border-collapse: collapse; /* セルの境界線を結合 */
	border-spacing: 0;      /* セルの間隔を0にする（通常border-collapseで十分） */
	width: 100%;
}
#about .about-con table tr.about-a{
	background: #fdf2e5;
}
#about .about-con table td{
	width: 50%;
	padding: 5px 10px;
	border: none;
}
#about .about-con table td:first-child{
	text-align: right;
	font-weight: 700;
}
#about .map{
	width: 100%;
	height: 250px;
	margin: 50px 0;
}
#about .about-con02{
	background: #fdf2e5;
	padding: 50px;
}

#about .about-con02 h5{
	text-align: center;
	font-size: 36px;
	color: #ef8200;
	margin-bottom: 30px;
}

#about .about-con02 ul{
	display: flex;
	justify-content: center;
	width: 100%;
}
#about .about-con02 ul li{
  list-style: none; /* 点を消す */
	margin: 0 10px;
	font-weight: 600;
	font-size: 18px;
}


/* モバイル */
@media(max-width:768px){
	#about .topimg{
		background-size: 300%;
		background-position: center 100%;
	}
	#about h1{
		margin: 30px auto;
	}
	#about .about-con02 ul{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	#about .about-con02 ul li{
		width: 40%;		
	}
	#about .about-con table td:first-child{
		width: 30%;
	}
}


/**************************************************************************************************************contact*/

#contact .topimg{
	background-image: url("../img/contact-topimg.jpg");
	background-position: center 30%;
}
#contact h1{
	text-align: center;
	font-size: 36px;
	color: #ef8200;
	margin: 50px auto;
}



















.mob{
	display: none;
}
/**********************************************************************モバイル用*/

@media screen and (max-width: 767px) {
	.mob{
		display: block;
	}
	  .nav {
		display: none;
	  }

	  .hamburger {
		display: block;
	  }

	.cta{
		background-attachment: scroll;
	  }
	.hero{
		max-height: none;
	}
	.hero h1{
		line-height: 1.3;
	}
	.tm-btn {
	  display: inline-block;
	  margin-top: 30px auto 0;
	  padding: 14px 80px;
	  background: #f18a00;
	  color: #fff;
	  border-radius: 40px;
	  text-decoration: none;
	  font-weight: bold;
	  transition: 0.3s;
	  position: relative;
	  left: auto;
	  bottom: 0;
	  transform: translateX(-50%);
	  z-index: 10;
	}
	.cta-inner p{
	  text-align: justify;
	}

	.pc{
		display: none;
	}
}


