@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Lateef&family=Rock+Salt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Lateef&family=Quicksand:wght@500&family=Rock+Salt&display=swap');
/*================================================
 *  CSSリセット
 ================================================*/
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,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 15px;
	font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	letter-spacing: .05em;
  color: #555;
	background-color: #f7f7f7;
}
#content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 5%;
}
a{
  color: #555;
	text-decoration: none;
}
a:hover{
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
	list-style: none;
}
li {
	margin-left: 0;
}
h2.log_ttl {
	font-size: 25px;
	text-align: center;
	line-height: 1.5;
	color: #5d5555;
	margin-bottom: 25px;
}
h2.log_ttl span {
	font-style: italic;
	font-size: 50px;
	text-transform: capitalize;
	letter-spacing: 0.05em;
}
.top {
	padding-top: 3em;
}
@media screen and (max-width:768px) {
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
  }
  body {
		font-size: 14px;
  }
	#content {
		width: 100%;
		padding-left: 20px;
    padding-right: 20px;
  }
}
/*================================================
 *  ヘッダー
 ================================================*/
header {
  width: 100%;
  z-index: 100;
  top: 0;
  box-sizing: border-box;
  padding: 10px;
}
header .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.logo_img {
	width: 200px;
}
/* inner-left */
header .inner-left {
  width: 30%;
  position: relative;
}
/* inner-right */
header .inner-right {
  width: 70%;
}
nav.gnav ul {
  text-align: right;
}
nav.gnav ul li {
  display: inline-block;
  padding: 0 12px;
  text-align: center;
}
nav.gnav ul li span {
	font-family: 'Quicksand', sans-serif;
	font-size: 15px;
	text-transform: uppercase;
}
/* changeNav */
header.changeNav {
	background-color: rgba(255,255,255,0.8);
	transition: .5s;
 }
@media screen and (max-width:768px) {
  header .inner-left {
    width: 70%;
  }
	header .inner-left h1 {
		font-size: 24px;
		padding-left: 14px;
  }
  /* ハンバーガーメニュー */
	nav.global-nav {
	    position: fixed;
	    right: -320px;
	    top: 0;
	    width: 270px;
	    height: 100vh;
			padding-top: 40px;
			background-repeat: no-repeat;
			background-size: cover;
			background-position: center;
	    transition: all .2s ease-out;
	    z-index: 200;
	    overflow-y: auto;
	    padding: 80px 30px 40px 40px;
			background-color: #f7f7f7;
    }
    nav.gnav.global-nav ul li {
			margin-bottom: 15px;
      width: 100%;
      padding: 5px 12px;
      font-size: 13px;
    }
	  .hamburger {
	    position: absolute;
	    right: 10px;
      top: 5px;
	    width: 40px;
	    height: 40px;
	    cursor: pointer;
	    z-index: 300;
	  }
	  .global-nav__list {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	  }
	  .global-nav__item a {
	    display: block;
	    padding: 8px 0;
	    border-bottom: 1px solid #fff;
	    line-height: 1.3;
	  }
	  .global-nav__item a:hover {
	    background-color: #eee;
	  }
	  .hamburger__line {
	    position: absolute;
	    left: -5px;
	    width: 30px;
	    height: 1px;
	    background-color: #5d5555;
	    transition: all .2s ease-out;
	  }
	  .hamburger__line--1 {
	    top: 18px;
	  }
	  .hamburger__line--2 {
	    top: 26px;
	  }
	  .hamburger__line--3 {
	    top: 33px;
	  }
	  .black-bg {
	    position: fixed;
	    left: 0;
	    top: 0;
	    width: 100vw;
	    height: 100vh;
	    z-index: 100;
	    background-color: #000;
	    opacity: 0;
	    visibility: hidden;
	    transition: all .6s;
	    cursor: pointer;
	  }
	  /* 表示された時用のCSS */
	  .nav-open .global-nav {
	    right: 0;
	  }
	  .nav-open .black-bg {
	    opacity: .8;
	    visibility: visible;
	  }
	  .nav-open .hamburger__line--1 {
	    transform: rotate(45deg);
	    top: 20px;
	  }
	  .nav-open .hamburger__line--2 {
	    width: 0;
	    left: 50%;
	  }
	  .nav-open .hamburger__line--3 {
	    transform: rotate(-45deg);
	    top: 20px;
	  }
		.logout_btn {
			margin-top: 5px;
			display: block;
		}
}
section  {
	padding-bottom: 5rem;
	position: relative;
}
.section {
	padding-top: 5rem;
}
.section_log {
	padding-top: 3rem;
}
@media screen and (max-width:768px) {
	section {
		padding-bottom: 3rem;
	}
	.section {
		padding-top: 3rem;
  }
}
/* フォーム */
form {
	margin: 40px auto 50px;
}
label {
display: block;
width: 100%;
margin: 25px 0 8px;
}
input[type="email"], input[type="number"],input[type="text"], input[type="tel"],input[type="date"],input[type="time"],input[type="password"],select {
width: 100%;
display: block;
border: 1px solid #cecece;
outline: none;
height: 3.5rem;
line-height: 1.4rem;
background:#fff;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
font-size: 15px;
padding-left: 10px;
border-radius: 5px;
box-sizing: border-box;
}
textarea {
width: 100%;
display: block;
border: 1px solid #cecece;
outline: none;
background:#fff;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
font-size: 15px;
padding: 10px;
border-radius: 5px;
box-sizing: border-box;
color: #333;
line-height: 1.7;
letter-spacing: .05em;
}
sup {
color:#d65956;
font-size: 11px;
padding-left: 5px;
}
button {
font-size: 14px;
padding: 10px 70px;
border-radius: 5px;
border: 1px solid#5d5555;
background-color:#5d5555;
color: #fff;
letter-spacing: .2em;
white-space: nowrap;
cursor: pointer;
}
button:hover {
background-color: #fff;
color:#68b4a9;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
button.log_btn {
	background-color: #68b4a9;
	border: 1px solid#68b4a9;
}
@media screen and (max-width: 768px) {
	form {
		margin: 20px 15px 30px;
	}
}
/* =======================================================
*footer
* ======================================================= */
footer {
	text-align: center;
	padding: 20px 0;
	position: relative;
}
.copyright {
  font-size: 11px;
}
.log_box {
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
	max-width: 400px;
	height: 400px;
}
.logout_btn {
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 33px;
	border: 1px solid#68b4a9;
	background-color:#68b4a9;
	color: #fff;
	letter-spacing: .2em;
	white-space: nowrap;
	}
	.logout_btn:hover {
	background-color: #fff;
	color:#68b4a9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	}
	.main_btns {
		background-color: #fff;
    padding: 30px;
		border-radius: 20px;
    max-width: 300px;
	}
	.btns_ttl {
		font-weight: bold;
	}
.accordion summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	color: #333333;
	font-weight: 600;
	cursor: pointer;
	font-size: 14px;
	padding: 10px 20px;
	background-color: #eaeaea;
	letter-spacing: .2em;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-bottom: 2px solid #333333;
    border-right: 2px solid #333333;
    content: '';
    transition: transform .3s;
}
.accordion[open] summary::after {
    transform: rotate(225deg);
}
.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}
.accordion[open] p {
    transform: none;
    opacity: 1;
}
.main_table {
	width: 100%;
	margin-top: 25px;
	white-space: nowrap;
	min-width: 850px;
}
.main_table th {
	background-color:#68b4a9;
	color: #fff;
	text-align: left;
	padding: 13px 8px;
	border-bottom: 6px solid #fff;
}
.main_table td {
	background-color:#fff;
	color: #333333;
	padding: 5px 8px;
}
.rl_cts {
	background-color:#fff;
}
.rl_table {
	border-bottom: 1px solid #eaeaea;
	width: 100%;
}
.rl_table td {
	padding: 15px;
}
.delete_btn {
	padding: 10px;
	cursor: pointer;
}
.pub_select {
	height: 44px;
	width: 120px;
}
.th_btn_a {
	width: 145px;
}
.th_btn_b {
	width: 65px;
}
.check {
    border: none;
}
.check label {
    display: flex;
		justify-content: center;
    position: relative;
    cursor: pointer;
		margin: 0;
		top: 4px;
}
.check label::before,
.check label:has(:checked)::after {
    content: '';
}
.check label::before {
	width: 20px;
	height: 20px;
    border-radius: 3px;
    background-color: #eaeaea;	
}
.check label:has(:checked)::before {
    background-color: #68b4a9;
}
.check label:has(:checked)::after {
    position: absolute;
		top: 4px;
    left: 7px;
    transform: rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
}
.check input {
    display: none;
}
td.txt_gre {
	color: #68b4a9;
	font-weight: bold;
}
td.txt_bo {
	font-weight: bold;
}
.rl_td {
	width: 100%;
}
.pagination {
	display: flex;
	gap: 0 8px;
	list-style-type: none;
	padding: 0;
	margin-top: 2rem;
}
.pagination a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	border-radius: 1px;
	background-color: #fff;
	color: #68b4a9;
	border-radius: 3px;
}
.pagination a:not(:hover) {
	text-decoration: none;
}
.pagination .current a {
	background-color: #68b4a9;
	color: #fff;
	pointer-events: none;
}
.main_btn {
	padding: 10px 20px;
	border: 1px solid #68b4a9;
  background-color: #68b4a9;
	margin-right: 10px;
}
/* ポップアップの基本スタイル */
.popup {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 背景を暗くする */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* 他の要素より前に表示 */
  opacity: 0; /* 初期状態では透明 */
  animation: fadeIn 0.5s forwards; /* アニメーションを適用 */
}
/* ポップアップが表示されるアニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8); /* 初期状態は縮んでいる */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* 完全に表示される */
  }
}
/* ポップアップの内容のスタイル */
.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: scale(0.8); /* 初期状態は縮んでいる */
  animation: popIn 0.5s forwards; /* 内容部分のアニメーション */
}
/* ポップアップの内容が表示されるアニメーション */
@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ボタンのスタイル */
.confirmBtn, .cancelBtn {
  padding: 10px 20px;
  margin: 10px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  padding: 9px 17px;
}
/* 「はい」ボタンのスタイル */
.confirmBtn {
  background-color: #68b4a9;
  color: white;
}
.confirmBtn:hover,.cancelBtn:hover {
	background-color: #dddddd;
	color: white;
	border: 1px solid #dddddd;
}
/* 「いいえ」ボタンのスタイル */
.cancelBtn {
  background-color: #fff;
  border: 1px solid #68b4a9;
  color: #68b4a9;
}
.pop_flex {
  display: flex;
}
.dust_img {
  width: 35px;
  height: 36px;
}
.pop_txt {
  font-weight: bold;
  padding-top: 17px;
  padding: 17px 0 10px 0;
	margin: 0;
}
.main_ttl {
	font-size: 25px;
	margin-bottom: 40px;
}
.file-button {
	font-size: 10px;
}
.file-button::file-selector-button {
	font-weight: bold;
	color: #68b4a9;
	background: #fff;
	font-size: 14px;
	border: 0;
	border-radius: 10em;
	padding: 8px 16px;
	text-align: center;
}
.user_table {
	width: 100%;
	margin-top: 25px;
	white-space: nowrap;
}
.user_table th {
	background-color: #68b4a9;
	color: #fff;
	text-align: left;
}
.user_table th,.user_table td {
	padding: 27px 20px;
	border-bottom: 3px solid #f7f7f7;
}
.user_table td { 
	background-color: #fff;
}
.br_a {
	border-radius: 20px 0 0 0;
}
.br_b {
	border-radius: 0 20px 0 0;
}
.br_c {
	border-radius: 0 0 0 20px;
}
.br_d {
	border-radius: 0 0 20px 0;
}
button.previ_btn {
	border: 1px solid#FFA726;
	background-color:#FFA726;
}
button.previ_btn:hover {
	border: 1px solid#FFA726;
	background-color:#fff;
	color: #FFA726;
}
/* ページレイアウト (section.sheet を１ページとする) */
.sheet {
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  page-break-after: always;
  height: 297mm;
  width: 210mm;
  padding-top: 32mm;
  padding-left: 27mm;
  padding-right: 27mm;
	min-width: 900px;
}
/* プレビュー用のスタイル */
  .sheet {
    background: white; /* 背景を白く */
    box-shadow: 0 0.5mm 2mm rgba(0, 0, 0, 0.3); /* ドロップシャドウ */
    margin: 5mm auto;
  }
.clear-element {
  clear: both;
}
div.row_3 {
	padding-bottom: 25px;
	display: flex;
	justify-content: space-between;
}
div.row_3 div.col_1 {
	width: 50%;
	padding-top: 25px;
}
div.row_3 div.col_2 {
  position: relative;
  z-index: 2;
  padding-top: 10mm;
	padding-top: 20px;
	width: 45%;
}
div.row_5 {
	width: 48%;
}
div.row_6 {
	border: 1px solid #e2e2e2;
	padding: 15px;
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}
.note_txt {
	font-size: 12px;
	width: 68%;
}
.note_qr {
	width: 28%;
	font-size: 12px;
	font-weight: bold;
	display: flex;
  flex-direction: column;
  align-items: center;
}
.qr_img {
	width: 100px;
}
.qr_url {
	font-size: 12px;
	font-weight: normal;
	padding-top: 6px;
}
.qr_ttl {
	margin-bottom: 0;
	padding-bottom: 10px;
	font-size: 12px;
}
h2.pre_ttl {
  background: #68b4a9;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 20px;
  color: #ffffff;
	text-align: center;
}
h3.customer_name {
	padding-bottom: 20px;
	font-size: 17px;
}
/* テーブル 総額欄 */
table.summary th {
  font-size: 14pt;
  width: 32mm;
}
table.summary td {
  font-size: 14pt;
  width: 40mm;
}
/* テーブル 明細欄 */
table.detail {
  width: 100%;
}
table.detail tr {
  height: 6mm;
}
table.detail th.item {
  width: 50%;
}
table.detail th.unit_price {
  width: 18%;
}
table.detail th.amount {
  width: 14%;
}
table.detail th.subtotal {
  width: 18%;
}
table.detail th {
	background: #68b4a9;
	color: #fff;
}
table.detail td {
	border-bottom: 1px solid #e2e2e2;
	border-left: 1px solid #e2e2e2;
	border-right: 1px solid #e2e2e2;
}
table.detail th,table.detail td {
	padding: 3px 5px;
	font-size: 12px;
}
.report_logo {
	width: 247px;
	margin-top: 20px;
}
.item_flex {
	display: flex;
	justify-content: space-between;
}
.pre_ul li {
 font-size: 13px;
}
.pre_ul li h3 {
	font-size: 16px;
	padding-bottom: 5px;
}
table.detail td.right_txt {
	height: 372px;
	padding: 10px;
}
.m_txt {
	text-align: center;
}

  /*===========
  scrollbar
  ===========*/
  /*スクロールバー全体の高さ*/
  .scroll-box::-webkit-scrollbar {
    height: 4px;
  }
  /*スクロールバー全体の背景*/
  .scroll-box::-webkit-scrollbar-track {
    background: #eee;
  }
  /*スクロールバーの動く部分*/
  .scroll-box::-webkit-scrollbar-thumb {
    background: #aaa;
    border: none;
  }
  /*スクロールバーの動く部分のホバー（マウスオーバー）*/
  .scroll-box::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
  @media screen and (max-width: 2560px) {
    .scroll-box {
      overflow-x: auto;
    }}
@media screen and (max-width: 768px) {
	.log_box {
		margin: 20px 15px 30px;
		height: 430px;
	}
	h2.log_ttl {
		font-size: 20px;
	}
	button.log_btn {
		padding: 10px 40px;
	}
	.main_btns {
		max-width: 100%;
	}
	.user_table th,.user_table td {
		display: block;
		padding: 17px 20px;
		border-bottom: 0;
	}
	.user_table th {
		background-color: #68b4a9;
		color: #fff;
		text-align: left;
	}
	.br_a {
		border-radius: 20px 20px 0 0;
	}
	.br_b {
    border-radius: 0;
}
.br_c {
	border-radius: 0;
}
.br_d {
	border-radius: 0 0 20px 20px;
}
}
.engword{
	color: #68b4a9;
	text-transform: none!important;
}
@media screen and (max-width: 500px) {
.main_btn {
	margin-right: 0;
    display: block;
    margin-bottom: 15px;
    width: 100%;
}
nav.gnav ul li.logout_wrap {
  display: flex;
  justify-content: center;
}
}