body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300;
	background-color: #fff;
}
a {
	color: #ba38f5;
}
a:hover {
	color: #aaa;
}

/*loading*/
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ff5900;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 40000;
}
#loader-wrapper.loaded {
	opacity: 0;
	visibility: hidden;
}
.loader {
  width: 50px;
  height: 50px;
  border: 10px solid #fff;
  border-top: 10px solid #FFF326;
  border-radius: 50%;
  animation: spin 1s linear infinite; /* アニメーション指定 */
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#loader-wrapper p {
  margin-top: 15px;
  font-family: "Roboto";
  color: #FFF326;
}




#wrapper {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 0 auto;
 	width: calc(100% - 40px);
}

.scroll_nav_wrap {
	position: fixed;
	width: 100%;
	height: 80px;
	top: -80px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	padding: 20px 0 0 0;
	z-index: 40000;
	transition: all 0.3s;
}
@media screen and (max-width: 750px) {
.scroll_nav_wrap {
	height: 110px;
	top: -110px;
}
}

.scroll_nav_wrap.is-show {
  top: 0;
}
#scroll_nav {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
#scroll_nav .scroll_ttl {
	position: absolute;
	display: flex;
	width: 100%;
	max-width: 500px;
	left: 16px;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	font-style: normal;
	font-variation-settings: "XROT" 0, "YROT" 0;
	color: #000;
}
#scroll_nav .scroll_ttl a {
	color: #000;
}
#scroll_nav .scroll_ttl a:hover {
	color: #aaa;
}
#scroll_nav ul {
	position: absolute;
	display: flex;
	width: 100%;
	max-width: 350px;
	top:10px;
	right: 0;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-size: 18px;
	font-style: normal;
	line-height: 1.2;
	font-variation-settings: "XROT" 0, "YROT" 0;
	color: #ba38f5;
}
@media screen and (max-width: 750px) {
#scroll_nav ul {
	top: 50px;
	right: 0;
}
}
	
#scroll_nav ul li {
	border-bottom: 1px solid #555;
	margin: 0 24px 0 0;
	padding: 0 16px 0 0;
}
#scroll_nav ul li a:hover {
	color: #aaa;	
}
#scroll_nav ul li:hover {
	border-bottom: 1px solid #aaa;
}



/*/////header/////*/


/*コンテンツがふわっとあらわれるやつ*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); /* 20px下から開始 */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 元の位置へ */
  }
}


/* 初期状態（画面外にあるとき） */
.js-fade-up {
  opacity: 0;
  transform: translateY(10px); /* 20px下に沈んでおく */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* 0.8秒かけて変化 */
}

/* 画面内に入ったとき（JavaScriptでこのクラスをつける） */
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
}


header {
	position: absolute;
	width: 100%;
	max-width: 1200px;
	height: 80px;
	z-index: 30000;
}

header h1.logo {
	position: absolute;
	width: 100%;
	max-width: 450px;
	top: 0;
	left: 0;
	background-color: #fc861e;
	border-radius: 0 0 15px 15px;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-size: clamp(16px, 3.5vw, 24px);
	font-weight: 400;
	font-style: normal
	font-variation-settings: "XROT" 0, "YROT" 0;
	color:#fff;
	text-align: center;
	white-space: nowrap;
	z-index: 9000;
}
header .h_nav {
	position: absolute;
	width: 100%;
	max-width: 500px;
	height: 50px;
	top: 50px;
	right: 0;
	background-color: #fff;
	border-radius: 0 0 0 15px;
	padding: 7px 0 0 0;
}
@media screen and (max-width: 500px) {
header .h_nav {
	border-radius: 0;
}
}
.h_nav ul {
	display: flex;
	width: 100%;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-size: 20px;
	font-weight: 300;
	font-style: normal;
	font-variation-settings: "XROT" 0, "YROT" 0;
	color: #ba38f5;
	margin: 0 auto;
}
.h_nav ul li {
	flex: 1;
	text-align: center;
}
.h_nav ul li a:hover {
	color: #5c5c5c;
}

#wrap_inner {
	position: relative;
	max-width: 1200px;
	min-height: 780px;
	top: 70px;
	background-color: #fc861e;
	border-radius: 30px;
}
.title_logo {
	position: absolute;
	width:280px;
	top: 50%;
	left: 50%;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	color: #fff;
	font-size: 52px;
	font-weight: 800;
	text-shadow: #7d3705 1px 0 5px;
	text-align: justify;
	text-align-last: justify;
	text-justify: inter-character;
	line-height: 1.5;
	white-space: nowrap;
 	transform: translate(-50%, -50%);
 	z-index: 8000;
}
.top_p01 {
	position: absolute;
	top:10%;
	right:3%;
 	z-index: 7998;
}
.top_p02 {
	position: absolute;
	top:60%;
	right:2%;
 	z-index: 7999;
}
.top_p03 {
	position: absolute;
	top:45%;
	left:4%;
 	z-index: 7997;
}
.maru01 {
	content: "";
	position: absolute;
	top:15%;
	left:16%;
	width: 9rem;
	height: 9rem;
	background-color: #fff;
	border-radius: 50%;
 	z-index: 7996;
}
.maru02 {
	content: "";
	position: absolute;
	top:11%;
	left:12%;
	width: 3.5rem;
	height: 3.5rem;
	background-color: #fff;
	border-radius: 50%;
 	z-index: 7995;
}
.maru03 {
	content: "";
	position: absolute;
	top:85%;
	left:72%;
	width: 5rem;
	height: 5rem;
	background-color: #fff;
	border-radius: 50%;
 	z-index: 7994;
}
@media screen and (max-width: 650px) {
.top_p01 {
	display: none;
}
.top_p02 {
	width: 50%;
	top: 60%;
	left:40%;
}
.top_p03 {
	width: 50%;
	top: 20%;
	left: 4%;
}
.maru01 {
	top:12%;
	left:50%;
	width: 8rem;
	height: 8rem;
}
.maru03 {
	top:86%;
	left:40%;
	width: 4rem;
	height: 4rem;
}
}



/*/////contents/////*/
#contents_wrap {
	width: auto;
	background-image: linear-gradient(0deg, #ffb762, #fc861e);
	margin:280px 0 0 0;
	padding: 180px 2% 0 2%;
}
.contents_inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	color: #373737;
}
.about h2,.work h2,.contact h2,.news h2 {
	border-bottom: 2px dotted #fff;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-size: 3em;
	font-weight:400;
	font-style: normal;
	font-variation-settings: "XROT" 0, "YROT" 0;
	color:#fff;
	line-height: 1;
	padding: 40px 0 5px 0;
	margin: 0 0 16px;
}
.news h2 {
	margin: 0 0 24px 0;
	
}
.desc {
	margin: 0 0 48px 0;
}
/*about*/
.about {
	margin: 0 0 96px 0;
}
.about_box {
	display: flex;
}
.about_img {
	width: 100%;
	max-width: 500px;
	margin: 0 70px 0 0;
}
.about_img img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 650px) {
.about_box {
	flex-direction: column;
	align-items: center;
}
.about_img {
	width: 100%;
	max-width: 500px;
	margin: 0;
}
.about_img img {
	max-width: 90%;
	height: auto;
	margin: 0 auto;
}
}

.about_text {
	width: 100%;
	max-width: 400px;
	margin: 40px 0 0 0;

}
.about_text h3 {
	font-size: 2rem;
	font-weight:600;
	color:#fff;
	white-space: nowrap;
	margin: 0 0 24px 0;
}
.about_text p {
	margin: 0 0 16px 0;
}

/*work*/
.work {
	margin: 0 0 80px 0;
}
.work_box {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1000px;
	gap:20px;
}
.work_contents {
	width: 50%;
	max-width: 490px;
	background-color: #fff;
	border-radius: 30px;
	padding: 20px 0;
}
@media screen and (max-width: 750px) {
	
	.work_box {
		flex-direction: column;
		align-items: center;
	}
	.work_contents {
		width: 100%;
		max-width: 1000px;
	}
}
.work_contents a {
	display: inline-block;
	opacity: 1;
	transition: opacity 0.3s ease;
}
.work_contents a:hover {
	opacity: 0.8;
}
.work_contents p {
	padding: 0 20px 4px;
}
.work_contents h3 {
	font-size: 1.2rem;
	font-weight: 600;
	border-bottom: 1px dotted #999;
	line-height: 1.2;
	margin: 0 20px;
	padding: 0 0 4px 0; 
}
.work_contents ul {
	display: flex;
	padding: 0 20px;
}
.work_contents ul li {
	padding: 0 8px 0 0;
}

/*contact*/
.contact {
	margin: 0 0 80px 0;
}
.form {
	width: 100%;
	max-width: 600px;
	background-color: #fff;
	border-radius: 15px;
	margin: 0 auto;
	padding: 8% 13%;
}
.form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 24px 0;
}
.form_label {
  font-weight: 600;

}
.form_control {
	width: 100%;
	border:1px solid #333;
	margin: 0 0 24px 0;
	padding: 4px;
}
.hissu {
	color: #f00;
	font-size: 0.8rem;
	padding: 0 0 0 4px;
}
.btn {
	border: 1px solid #333;
	background-color: #fff;
	border-radius: 5px;
	transition: transform 0.3s ease,opacity 0.3s ease;
	cursor: pointer;
	text-align: center;
	padding: 2px 10px;
}
.btn:hover {
	opacity: 0.6;
	transform: translateY(2px) translateX(2px);
}

#form_comp_wrap {
	width: auto;
	background-image: linear-gradient(0deg, #ffb762, #ff752b);
	padding: 80px 0 80px 0;
}
.form_comp_inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	color: #373737;
}
.form_comp_inner h2 {
	border-bottom: 2px dotted #fff;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-size: 3em;
	font-weight:400;
	font-style: normal;
	font-variation-settings: "XROT" 0, "YROT" 0;
	color:#fff;
	line-height: 1;
	padding: 80px 0 5px 0;
	margin: 0 0 40px 0;
}

/*news*/
.news {
	padding: 0 0 80px 0;
}
.news a {
	color: #ba38f5;
}
.news a:hover {
	color: #5c5c5c;
}
.news dl {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border-radius: 30px;
	padding: 5%;
}
.news dl dt {
	width: 15%;
	border-bottom: 1px dotted #ffb762;
	font-weight: 700;
	font-size: 0.9em;
	color: #ff752b;
	margin: 0 0 8px 0;
	padding: 0 0 2px 0;
}
.news dl dd {
	width: 85%;
	border-bottom: 1px dotted #ffb762;
	margin: 0 0 8px 0;
	padding: 0 0 2px 0;
}
@media screen and (max-width:650px) {
	
	.news dl {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.news dl dt {
		width: 100%;
		border-bottom: none;
		margin: 0 0 2px 0;
		padding: 0;
	}
	.news dl dd {
		width: 100%;
	}
}


/*/////footer/////*/
#footer_wrapper {
	background-image: url(../img/footer_bg.png);
	background-repeat: no-repeat;
	background-position: top;
	display: flex;
	width: 100%;
	min-height: 200px;
}
#footer_inner {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px 0 20px;
}
footer {
	position: absolute;
	width: 100%;
	max-width: 350px;
	white-space: nowrap;
	margin: 20px 0;
}
footer h4 {
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-size: 20px;
	font-weight: 800;
	font-style: normal;
	font-variation-settings: "XROT" 0, "YROT" 0;
}
footer h4 a {
	color: #000;
}
footer h4 a:hover {
	color: #555;
}
.copy {
	font-size: 0.8rem;
}
.footer_nav {
	position: absolute;
	right: 0;
	width: 100%;
	max-width: 350px;
	margin: 30px 0;
}
.footer_nav ul {
	display: flex;
}
.footer_nav ul li {
	flex: 1;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-size: 1.2em;
	font-weight: 200;
	color: #ba38f5;
	border-bottom: 1px solid #555;
	margin: 0 16px 0 0;
}
.footer_nav ul li a {
	color: #ba38f5;
}
.footer_nav ul li a:hover {
	color: #555;
}
.footer_nav ul li:hover {
	border-bottom: 1px solid #aaa;
}

@media screen and (max-width: 650px) {
footer {
	position: relative;
	margin: 20px auto 0 auto;
}
.footer_nav {
	position: relative;
	margin: 20px auto 20px auto;
}
.footer_nav ul {
	width: 90%;
	flex-direction: column; 
	margin: 0 auto 80px;
}
}
