@charset "utf-8";
html{
	overflow-x: hidden;
	scroll-behavior: smooth;
}
/* ボディ設定*/
body {
	-webkit-text-size-adjust: none;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
 	font-size: 18px;
	line-height: 30px;
	color: #000000;
  	text-align:left;
  	margin: 0;
  	padding: 0;
	background-color: #fff;
}

h1,h2,h3,h4,h5,h6,p,ul,li,dl, dt, dd{
  	margin: 0;
  	padding: 0;
}

li img,dt img,dd img{
	vertical-align:bottom;
}
ol, ul {
	list-style:none;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align:middle;
	border:0px;
}

/* リンクの色 */
A {
	COLOR: #003b82;
	text-decoration: none;
}
A:link {
	COLOR: #003b82;
}
A:visited {
	COLOR: #003b82;
}
A:active {
	COLOR: #547cab;
}
A:hover {
	COLOR: #547cab;
}


/*Clearfix*/

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.clearfix {
	zoom: 1;
}


/*全体の枠
---------------------------------------------------------------------------*/
#wrapper{
	width:100%;
	background-color: #fff;
	padding: 50px 0;
}

img {
	transition: 1.0s ;
}
a:hover img{
    opacity: 0.7;
}
* {
	box-sizing: border-box;
}

/*ヘッダー
---------------------------------------------------------------------------*/
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.8); /* 白色80%透過 */
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	backdrop-filter: blur(4px); /* 背景を少しぼかすと見た目がきれい */
}

.logo img {
	width: 242px;
	height: 36px;
	object-fit: contain;
}

/*メイン画像
---------------------------------------------------------------------------*/
#header{
	width:100%;
	height: 100vh;
	position: relative;
} 
#header:before{
	content: '';
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height: 100vh;
	/*背景画像設定*/
	background:url("../images/main.jpg")  no-repeat center;
	background-size:cover;
}

.main-title01{
	position: absolute;
	top: 12vh;
	left: 5%;
	width: 163px;
}
.main-title02{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 92%;
	text-align: center;
}
.main-title03{
	position: absolute;
	bottom: 8vh;
	right: 5%;
	width: 163px;
}
.main-title04{
	position: absolute;
	bottom: 12vh;
	left: 50%;
	transform: translateX(-50%);
	width: 760px;
	height: 64px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: -0.1em;
	text-align: center;
}
/*1110以下 1110*/
@media screen and (max-width: 1450px) {
	.main-title01{
		  left: 3%;
		  width: 120px;
	}
	.main-title02{
		  width: 92%;
	}
	.main-title03{
		  right: 3%;
		  width: 120px;
	}
	.main-title04{
		  bottom: 12vh;
		  width: 700px;
		  height: 64px;
		  font-size: 34px;
	}
}
/*1110以下 930*/
@media all and (max-width:1200px){
	.main-title01{
		  left: 3%;
		  width: 120px;
	}
	.main-title02{
		  width: 92%;
	}
	.main-title03{
		  right: 3%;
		  width: 120px;
	}
	.main-title04{
		  bottom: 12vh;
		  width: 600px;
		  height: 64px;
		  font-size: 28px;
	}
}
/*930以下 690 文字サイズ変わる*/
@media all and (max-width:992px){
	.main-title01{
		  left: 3%;
		  width: 100px;
	}
	.main-title02{
		  width: 92%;
	}
	.main-title03{
		  right: 3%;
		  width: 100px;
	}
	.main-title04{
		  bottom: 26vh;
		  width: 86%;
		  height: 64px;
		  font-size: 20px;
	}
}
/*690以下 510*/
@media all and (max-width:768px){
	.main-title01{
		  left: 3%;
		  width: 80px;
      		top: 10vh;
	}
	.main-title02{
		  width: 92%;
	}
	.main-title03{
		  right: 3%;
		  width: 80px;
      		bottom: 10vh;
	}
	.main-title04{
		  bottom: 22vh;
		  width: 80%;
		  height: 64px;
		  font-size: 18px;
	}
}

/*フッダー
---------------------------------------------------------------------------*/
.footer-haikei{
	background-color: #fff;
}
.footer-box{
	width: 100%;
	background-color: #fff;
	margin: auto;
	text-align: center;
	padding: 20px 0px 10px;
}

.copy_center{
	text-align: center;
	padding-bottom: 100px;
}

/*ページトップ
---------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 65px;
	right: 20px;
	z-index: 999;
}
#page-top img {
	width: 60px;
	height: auto;
}
#page-top a {
	text-decoration: none;
}
#page-top a:hover {
	text-decoration: none;
}

#page-top a:hover img {
	opacity:0.5;
	filter:Alpha(opacity=80);
}

/*スマホ用フッターバー
---------------------------------------------------------------------------*/

.contactNav_Pc {
    display: block;
}
.contactNav_Sp {
    display: none;
}
@media all and (max-width:768px){
    .contactNav_Pc {
        display: none;
    }
    .contactNav_Sp {
        display: block;
    }
    .footerBar_Sp {
        padding: 0px;
        background:rgba(255,255,255,0.9);
        position: fixed;
        bottom: 0;
        width: 100%;
        text-align: center;
    }
    .footerBar_Sp img {
        max-width: 300px;
		margin: auto;
    }
    .footerBar_Sp_Box_Top  {
        padding-bottom: 10px;
    }
    .footerBar_Sp_Box_Bottom ul{
		width: 100%;
		margin: 0 auto 0px;
    }
}


/* 下からふわ
---------------------------------------------------------------------------*/
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/*スクロールアップ*/
.scroll_up {
  transition: 1.0s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}


/*全体
---------------------------------------------------------------------------*/

/*改行*/
@media screen and (max-width: 560px){
.br-pc {display: none; }
}
@media screen and (min-width: 560px){
.br-sp {display: none; }
}

/*インデント*/
.txt-indent{
	padding-left: 1em;
	text-indent: -1em;
}

/*常時ボタン
---------------------------------------------------------------------------*/
@media (min-width: 768px) {
    .yoko-bo-sp{
      display: none;
	}
}
@media (max-width: 768px) {
  .yoko-bo-pc{
    display: none;
  }
	.yoko-bo-sp{
		display: block;
	}
}
/*横のボタン*/
.moushikomi-button {
  all: unset;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  width: 60px;
  height: 300px;
  background-color: #ff4600;
  color: #fff;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-align: center;
  display: block;
  padding: 10px 10px 10px 0px;
  box-sizing: border-box;
}
.moushikomi-button img {
  width: 24px;
  margin: 10px 8px 0 auto;    /* 上に余白を入れて中央寄せ */
}

/*セクション
---------------------------------------------------------------------------*/
.sec-w, .sec-g, .sec-o{
	padding: 100px 0;
}
.sec-news{
	padding: 0 0 100px;
}
.sec-g{
	background-color: #f2f2f2;
}
.sec-o{
	background-color: #f2f2d3;
}

h2{
	font-size: 72px;
	line-height: 72px;
	font-weight: 600;
	text-align: center;
	letter-spacing: -0.1em;
	width: 92%;
	margin: 0 auto 50px;
}
h3{
	font-size: 50px;
	line-height: 50px;
	font-weight: 600;
	text-align: center;
	width: 92%;
	margin: 0 auto 50px;
}
/*1110以下 1110*/
@media screen and (max-width: 1450px) {
	h2{
		font-size: 60px;
		line-height: 60px;
	}
	h3{
		font-size: 45px;
		line-height: 45px;
	}
}
/*1110以下 930*/
@media all and (max-width:1200px){
	h2{
		font-size: 55px;
		line-height: 55px;
	}
	h3{
		font-size: 40px;
		line-height: 40px;
	}
}
/*930以下 690 文字サイズ変わる*/
@media all and (max-width:992px){
	h2{
		font-size: 50px;
		line-height: 50px;
	}
	h3{
		font-size: 35px;
		line-height: 35px;
	}
}
/*690以下 510*/
@media all and (max-width:768px){
	h2{
		font-size: 45px;
		line-height: 45px;
	}
	h3{
		font-size: 30px;
		line-height: 30px;
	}
}
/*510以下 92%*/
@media all and (max-width:576px){
	h2{
		font-size: 40px;
		line-height: 40px;
	}
	h3{
		font-size: 25px;
		line-height: 25px;
	}
}

.sec-news h3{
	color: #698c00;
	margin-bottom: 30px;
}

.text-center{
	text-align: center;
	width: 92%;
	margin: auto;
}


/*NEWS
---------------------------------------------------------------------------*/
.post-new::before {
  content: 'NEW';
  display: inline-block;
  background-color: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
  animation: flashNew 3s infinite; /* 6秒で1ループ */
	margin-left: 10px;
}

/* 表示3秒 → 消える → 表示再開 */
@keyframes flashNew {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  91% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


.news-section {
	max-width: 1000px;
	margin: auto;
	border-top: 1px solid #ccc;
}

.news-item {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
}

.news-date {
	width: 180px;
}

.news-category {
	width: 100px;
	font-size: 14px;
	background-color: #e5e5e5;
	text-align: center;
	padding: 2px 8px;
	margin-right: 35px;
}

.news-title {
	flex: 1;
}
@media (max-width: 1200px) {
	.news-section {
		max-width: 92%;
	}
}
@media (max-width: 600px) {
	.news-item {
		flex-direction: column;
		gap: 6px;
		width: 92%;
		margin: auto;
	}

	.news-date,
	.news-category,
	.news-title {
		width: 100%;
	}

	.news-category {
		display: inline-block;
		width: auto;
		margin-right: 0;
	}
}


/*紙とデジタルの比較
---------------------------------------------------------------------------*/
.table-container {
  max-width: 1200px;
  margin: 0 auto 50px;
  border-collapse: collapse;
  width: 100%;
  display: block;
  overflow-x: auto;
}
.tb-title{
	font-weight: bold;
	font-size: 21px;
	text-align: center;
}
.table-container table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.table-container thead tr {
  border-bottom: 1px solid #000;
}

.table-container th, .table-container td {
  padding: 16px;
  vertical-align: top;
}

.table-container th {
  font-weight: bold;
  font-size: 21px;
  background-color: #fff;
	text-align: center;
}

.table-container td {
  font-size: 18px;
}

.table-container tbody tr:nth-child(even) {
  background-color: #fff;
}

.table-container th:not(:first-child), td:not(:first-child) {
  border-left: 1px solid #000;
}


@media (max-width: 1440px) {
	.table-container {
	  max-width: 92%;
	  margin: 0 auto 30px;
	}
}

/* モバイル対応：テーブルを縦に並べる */
@media (max-width: 768px) {
	.tb-title{
		font-weight: bold;
		font-size: 21px;
		text-align: left;
	}
	
	.table-container th:not(:first-child), .table-container td:not(:first-child) {
	  border-left: none;
	}
  .table-container table, .table-container thead, .table-container tbody, .table-container th, .table-container td, .table-container tr {
	display: block;
  }

  .table-container thead {
	display: none;
  }

  .table-container tbody tr {
	margin-bottom: 16px;
	border-bottom: none;
	background: #fff;
  }

  .table-container td {
	border: none;
	border-bottom: 1px solid #000;
	position: relative;
	padding-left: 28%;
  }

  .table-container td::before {
	content: attr(data-label);
	position: absolute;
	left: 16px;
	top: 16px;
	  font-size: 16px;
	font-weight: bold;
	white-space: nowrap;
  }
}

/*会社案内の特徴の丸
---------------------------------------------------------------------------*/
.maru-container {
  max-width: 1440px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.circle {
  width: 456px;
  height: 456px;
  background-color: #fff;
  border: 5px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 38px;
  padding: 40px;
  box-sizing: border-box;
  line-height: 1.4;
}

/*1110以下 1110*/
@media screen and (max-width: 1450px) {
	.maru-container{
		width: 1110px;
	}
	.circle {
	  width: 356px;
	  height: 356px;
	  font-size: 32px;
	  padding: 40px;
	  line-height: 1.4;
	}
}
/*1110以下 930*/
@media all and (max-width:1200px){
	.maru-container{
		width: 930px;
	}
	.circle {
	  width: 296px;
	  height: 296px;
	  font-size: 26px;
	  padding: 15px;
	  line-height: 1.4;
	}
}
/*930以下 690 文字サイズ変わる*/
@media all and (max-width:992px){
	.maru-container{
		width: 690px;
	}
	.circle {
	  width: 216px;
	  height: 216px;
	  font-size: 24px;
	  padding: 1px;
	  line-height: 1.4;
	}
}
/*690以下 510*/
@media all and (max-width:768px){
	.maru-container{
		width: 510px;
	}
	.circle {
	  width: 156px;
	  height: 156px;
	  font-size: 18px;
	  padding: 1px;
	  line-height: 1.4;
	}

}
/*510以下 92%*/
@media all and (max-width:576px){
	.maru-container{
		width: 92%;
		flex-direction: column;
		align-items: center;
	}
	.circle {
	  width: 216px;
	  height: 216px;
	  font-size: 22px;
	  padding: 15px;
	  line-height: 1.4;
	}

}

/*導入事例・お客様の声
---------------------------------------------------------------------------*/
.jirei-container {
  max-width: 1440px;
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.jirei-box {
  width: 47%;
  background-color: #fff;
  border: 5px solid #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  line-height: 1.4;
}
.jirei-box h4{
	font-size: 35px;
	font-weight: normal;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid #000;
	padding-bottom: 10px;
}
.jirei-box h5{
	font-size: 28px;
	font-weight: normal;
	padding: 20px;
}
.jirei-txt{
	width: 100%;
	background-color: #f2f2f2;
	padding: 10px;
	
}
/*1110以下 1110*/
@media screen and (max-width: 1450px) {
	.jirei-container{
		width: 1110px;
	}
	.jirei-box h4{
		font-size: 35px;
	}
	.jirei-box h5{
		font-size: 28px;
	}
}
/*1110以下 930*/
@media all and (max-width:1200px){
	.jirei-container{
		width: 930px;
	}
	.jirei-box h4{
		font-size: 35px;
	}
	.jirei-box h5{
		font-size: 28px;
	}
}
/*930以下 690 文字サイズ変わる*/
@media all and (max-width:992px){
	.jirei-container{
		width: 690px;
	}
	.jirei-box h4{
		font-size: 30px;
	}
	.jirei-box h5{
		font-size: 20px;
	}
}
/*690以下 510*/
@media all and (max-width:768px){
	.jirei-container{
		width: 92%;
		flex-direction: column;
		align-items: center;
	}
	.jirei-box {
	  width: 100%;
	}
	.jirei-box h4{
		font-size: 28px;
	}
	.jirei-box h5{
		font-size: 20px;
	}
}

/*料金プラン
---------------------------------------------------------------------------*/
.color-kami{
	background-color: #e49120;
}
.color-deji{
	background-color: #44a730;
}
.color-kasu{
	background-color: #3563a8;
}
.plan-container {
  max-width: 1440px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.plan-box {
  width: 32%;
  background-color: #fff;
  border: 5px solid #ccc;
  text-align: center;
  padding: 0px;
  line-height: 1.4;
}
.plan-box h4{
	color: #fff;
	font-size: 42px;
	font-weight: bold;
	width: 100%;
	text-align: center;
	padding: 60px 0;
}
.plan-box h5{
	font-size: 32px;
	font-weight: bold;
	padding: 20px;
	width: 100%;
	background-color: #f2f2f2;
}
.plan-txt{
	font-size: 52px;
	font-weight: bold;
	width: 100%;
	background-color: #fff;
	padding: 40px 0;
	color: #d01d00;
}
/*1110以下 1110*/
@media screen and (max-width: 1450px) {
	.plan-container{
		width: 1110px;
	}
	.plan-box h4{
		font-size: 35px;
	}
	.plan-box h5{
		font-size: 28px;
	}
	.plan-txt{
		font-size: 35px;
	}
}
/*1110以下 930*/
@media all and (max-width:1200px){
	.plan-box {
		width: 31%;
	}
	.plan-container{
		width: 930px;
	}
	.plan-box h4{
		font-size: 30px;
		padding: 30px 0;
	}
	.plan-box h5{
		font-size: 25px;
		padding: 15px 0;
	}
	.plan-txt{
		font-size: 32px;
		padding: 25px 0;
	}
}
/*930以下 690 文字サイズ変わる*/
@media all and (max-width:992px){
	.plan-container{
		width: 690px;
	}
	.plan-box h4{
		font-size: 24px;
		padding: 25px 0;
	}
	.plan-box h5{
		font-size: 18px;
		padding: 20px 0;
	}
	.plan-txt{
		font-size: 25px;
		padding: 20px 0;
	}
}
/*690以下 510*/
@media all and (max-width:768px){
	.plan-container{
		width: 92%;
		flex-direction: column;
		align-items: center;
	}
	.plan-box {
	  width: 100%;
	}
	.plan-box h4{
		font-size: 24px;
		padding: 20px 0;
	}
	.plan-box h5{
		font-size: 20px;
		padding: 10px 0;
	}
	.plan-txt{
		font-size: 28px;
		padding: 20px 0;
	}
}

/*制作のフロー
---------------------------------------------------------------------------*/
.flow-table {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.flow-table th,
.flow-table td {
  padding: 5px;
  text-align: center;
	vertical-align: middle;
	border: none;
  border-bottom: 1px solid #b2b2b2;
	background-color: #fff;
}

.flow-table thead th {
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
}

.flow-table thead th:nth-child(1) {
  background-color: #e49120;
}

.flow-table thead th:nth-child(2) {
  background-color: transparent;
}

.flow-table thead th:nth-child(3) {
  background-color: #44a730;
}

.circle-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #3563a8;
  color: #fff;
  font-size: 32px;
  line-height: 56px;
  text-align: center;
}

/*1110以下 1110*/
@media screen and (max-width: 1450px) {
	.flow-table{
		width: 1110px;
	}
}
/*1110以下 930*/
@media all and (max-width:1200px){
	.flow-table {
		width: 930px;
	}
}
/*930以下 690 文字サイズ変わる*/
@media all and (max-width:992px){
	.flow-table{
		width: 690px;
	}
	.flow-table thead th {
	  padding: 5px;
	  color: white;
	  font-weight: bold;
	  font-size: 20px;
	}
	.circle-number {
	  display: inline-block;
	  width: 40px;
	  height: 40px;
	  border-radius: 50%;
	  background-color: #3563a8;
	  color: #fff;
	  font-size: 24px;
	  line-height: 36px;
	  text-align: center;
	}
}
/*690以下 510*/
@media all and (max-width:768px){
	.flow-table{
		width: 92%;
	}
}

/*よくある質問
---------------------------------------------------------------------------*/
.faq-container {
  max-width: 1440px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid transparent;
}

.faq-question {
  background-color: #3563a8;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: flex-start; /* ← 中央から左詰めに */
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  position: relative;
}

.faq-question::before {
  content: "Q";
  margin-right: 30px;
  font-weight: bold;
}

.faq-toggle {
  font-size: 24px;
  margin-left: auto; /* ← プラス記号を右端に */
  transition: transform 0.3s;
}


.faq-answer {
  display: none;
  background-color: #fff;
  border: 1px solid #3563a8;
  border-top: none;
  padding: 20px 50px;
  color: #000;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  content: "－";
}

/*1110以下 1110*/
@media screen and (max-width: 1450px) {
	.faq-container {
	  width:92%;
	}
	.faq-answer {
	  padding: 20px;
	}
}

/*お問い合わせ
---------------------------------------------------------------------------*/
.contact-container{
  max-width: 1110px;
  margin: 0 auto;
}
/*1110以下 1110*/
@media screen and (max-width: 1100px) {
	.contact-container {
	  width:92%;
	}
}