@charset "utf-8";
@import url("slide.css");
@import url("inview.css");
/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--text-color: #111;	
}
/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}
/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.8);}
	100% {opacity: 1;transform: scale(1);}
}
/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 14px;
}
	@media screen and (min-width:900px) {
		html, body {
			font-size: 15px;
		}
	}
body {
	margin: 0;
	padding:0;
	font-family: YakuHanJP-Noto, "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
	font-optical-sizing: auto;
	-webkit-text-size-adjust: none;
	background: #fefefe;	
	color: var(--text-color);
	line-height: 2;	
}
/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
table {border-collapse:collapse;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
section {
	padding: 0 2% 10rem;
}
.section {
    padding-top: 10rem;
}
a {
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
}
body:not(.home) #container {
	height: 100%;
	display: flex;
	flex-direction: column;	
	justify-content: space-between;
}
header {
	display: flex;		
	align-items: center;		
	justify-content: space-between;
	height: 80px;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
  position: absolute;
  z-index: 10;
  width: 100%;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
	border-top: 5px solid #EDE8E4;
}
	@media screen and (min-width:900px) {
	#menubar {
		position: fixed;	
		top: 0;
    right: 0;
    z-index: 10000;
	}
	nav.head-menu {
    padding: 15px 80px;
    background-color: #EDE8E4;
	}
	}
#logo img {
	display: block;
	width: 270px;
	position: relative;
	top: 73px;
  left: 70px;
}
/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}
/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}
/*3本バーをデフォルトで非表示*/
#menubar-hdr.display-none {display: none;}
/*ドロップダウンをデフォルトで非表示*/
.ddmenu-parent ul {display: none;}
/*ドロップダウンの親メニューのカーソル表示を変更*/
a.ddmenu {cursor: default;}
/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}
/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
	display: flex;	
	font-size: 0.85rem;
	gap: 0.5rem;		
}
/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
	border-radius: 100px;	
	margin: 0.2rem 1rem;	
	font-size: 14px;
	color: #111;
	position: relative;
  display: inline-block;
}
.large-screen #menubar li a::after,#footermenu li a::after {
	content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #C14D4D;
  transition: width 0.3s ease;
	}
	.large-screen #menubar li a:hover::after,#footermenu li a:hover::after {
  width: 100%;
}
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
}
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
}
.large-screen #menubar ul ul a {
	margin-top: 0.4rem;
}
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 140px;
	background: #EDE8E4;
	animation: animation1 0.5s ease-out forwards;
}
.small-screen #menubar nav ul li {
	border-radius: 5px;
  padding: 5px;
  text-align: center;
}
.small-screen #menubar a {
	padding: 1rem;
}
.small-screen #menubar, .small-screen #menubar a {
	color: #111;
}
#menubar .sh {
	font-weight: normal;
	padding: 1rem 2rem 2rem;
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar-hdr {
		animation: opa1 0s 1.2s both;		
    position: fixed;
    z-index: 101;
    cursor: pointer;
    right: 0vw;
    top: 0vw;
    padding: 26px 20px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #EDE8E4;
}
/*バー１本あたりの設定*/
#menubar-hdr span {
	display: block;
	transition:  0.7s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #333;	/*線の幅、線種、色*/
}
/*×印が出ている状態の3本バーの背景色*/
#menubar-hdr.ham {
	background: #fff;
}
/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar-hdr.ham span:nth-of-type(1),
#menubar-hdr.ham span:nth-of-type(2) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}
/*×印が出ている状態の設定。※１本目のバー。*/
#menubar-hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 2px);	
}
/*×印が出ている状態の設定。※３本目のバー。*/
#menubar-hdr.ham span:nth-of-type(2){
	transform: rotate(-45deg) translate(3.4px, -1px);
}
footer {
	padding: 20px;
	font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
	border-bottom: 5px solid #EDE8E4;
	overflow: hidden;
	position: relative;
}
#footermenu {
  padding: 20px 0;
  text-align: left;
  font-size: 14px;
}
#footermenu li {
	display: inline-block;
	padding: 0 15px;
}
.footer-sns {
	padding: 0 15px;	
}
.footer-sns li a:hover {
	color: #C14D4D;
}
#footermenu li a {
	position: relative;
  display: inline-block;
}
footer a {
	color: inherit;
	text-decoration: none;
}
.footer-logo {
	width: 210px;
	margin: 0 15px 35px 15px;
}
footer small {
	text-align: center;
	display: block;
	font-size: 12px;
	padding-top: 40px;
}
footer::before {
  content: "DESIGN WOO";
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 12rem;
  color: rgba(237, 232, 228, 0.5);
  white-space: nowrap;
  pointer-events: none; 
  z-index: -1;
}
.top-news {
  width: 75%;
}
dl.news-list  {
  max-width: 700px;
  position: relative;
	margin: 0;
}
.news-list dt {
	width: 25%;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.news-list dt::after {
  position: absolute;
  content: "／";
  top: 0;
  right: 17px;
	color: #BFAF9A;
}
.news-list dd {
  width: 75%;
  padding-bottom: 10px;
}
.news-link {
	color: initial;
}
.pagetop-show {display: block;}
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	position: fixed;	
	right: 20px;		
	bottom: 0;
	color: #111;	
	font-size: 1.5rem;	
	line-height: 60px;
}
	.top-en {
		font-family: "Marcellus", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 12px;
	}
	.top-ja {
    font-size: 22px;
		font-weight: 500;
		padding-bottom: 10px;
	}
	.top-title {
		padding-left: 70px;
	}
	.top-txt {
		padding-top: 30px;
	}
	.logo-a {
	  font-size: 160px;
    line-height: 120px;
	}
	.logo-b {
		font-size: 100px;
    position: relative;
    right: 14px;
	}
	.logo-c {
	  font-size: 100px;
    position: relative;
    right: 54px;
	}
	.top-cts {
		height: 95vh;
		background-color: #EDE8E4;
	}
	.top-img {
		height: 70vh;
		background-image: url(../img/top.webp);
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		color: #333;
		font-size: 14px;
	}
	.loading {
  position: fixed;
  inset: 0;
  z-index: 2000;
  height: 100svh;
	background-color: #EDE8E4;
	clip-path: inset(0 0 0 0); /* ←これが重要 */
  transition: clip-path 0.6s ease;
	overflow: hidden;
}
.loading-inner {
  width: 100%;
  height: inherit;
  display: grid;
  place-content: center;
  row-gap: 10px;
}
.loading-logo {
  margin: 0 auto;
  width: min(200px, 100%);
}
.contents {
  height: 100svh;
  display: grid;
  place-items: center;
}
.wrap {
	max-width: 1080px;
  margin: 0 auto;
}
.left-back {
	border-left: 40px solid #EDE8E4;
}
.all-back {
	background-color: #EDE8E4;
}
.top-page-left {
  width: 25%;
  /* margin: 0 30px; */
	position: relative;
}
.top-page-title {
	font-family: "Marcellus", serif;
	text-transform: uppercase; 
	font-size: 50px;
	margin: 0;
	padding-bottom: 60px;
	line-height: 45px;
}
.top-service {
	position: relative;
	width: 75%;
}
.top-service::before {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #EDE8E4;
}
.top-service-title {
	font-size: 23px;
	font-weight: 500;
	margin: 0;
	padding-bottom: 30px;
	font-weight: bold;
}
 .top-service-num-collect {
		width: 25%;
		text-align: center;
 }
 .top-service-collect {
		width: 80%;
		padding-right: 130px;
 }
.top-service-num {
	font-size: 150px;
  font-family: "Marcellus", serif;
  line-height: 11rem;
 }
.top-service-cts-a {
	padding: 0 0 70px 0;
}
.top-service-cts-b {
	padding: 70px 0 0 0;
}
.top-service-btn-space {
 margin-top: 40px;
}
/* 基本スタイル */
.top-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #111;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  overflow: hidden;
	white-space: nowrap;
}
/* 下線アニメーション */
.top-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84%;
  height: 1px;
	background-color: #C14D4D;
  /* background-color: #9C6C6C; */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.top-btn.plan-btn::after {
	  width: 75%;
}
.top-btn.back-btn::after {
	  width: 100%;
}
.top-btn:hover::after {
  transform: scaleX(1);
}
/* 矢印静止状態 */
.arrow-loop,.arrow-loop-r {
  display: inline-block;
  transform: translateX(0);
  opacity: 1;
}
.arrow-loop-back {
	padding: 0 10px;
	border-radius: 30px;
	background-color: #C14D4D;
}
/* ホバー時にアニメーションスタート */
.top-btn:hover .arrow-loop {
  animation: arrowSlider 1.4s ease-in-out infinite;
}
/* アニメーション定義 */
@keyframes arrowSlider {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  60% {
    transform: translateX(12px);
    opacity: 0;
  }
  61% {
    transform: translateX(-12px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ホバー時にアニメーションスタート */
.top-btn:hover .arrow-loop-r {
  animation: arrowSlidel 1.4s ease-in-out infinite;
}
/* アニメーション定義（右から左へ） */
@keyframes arrowSlidel {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  60% {
    transform: translateX(-12px); /* ← 左方向へ */
    opacity: 0;
  }
  61% {
    transform: translateX(12px);  /* ← 右側から戻ってくる */
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.text-center {
	text-align: center;
}
.bottom-border {
	position: relative;
}
.bottom-border::after {
   content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #EDE8E4;
}
.loop {
  display: flex;
  width: 100%;
  overflow: hidden;
	position: relative;
  top: -200px;
}
.loop-text {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 210px;
  overflow: hidden;
  padding-left: 20px;
	color: #fefefe;
  font-family: "Marcellus", serif;
  }
	.loop-text:nth-child(odd) {
  animation: loop 140s -70s linear infinite;
}
.loop-text:nth-child(even) {
  animation: loop2 140s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.top-message {
	position: relative;
	overflow: hidden;
}
.top-message-txt-side {
	position: static;
  width: 52%;
  margin: 15vw 0 0 -10%;
  padding: 6.2vw 3% 10px 0;
  background-color: #fefefe;
  z-index: 1;
}
.top-message-img-side {
	width: 55%;
  padding: 0;
}
.top-message-logo {
	font-family: "Marcellus", serif;
	position: relative;
	display: flex;
	align-items: baseline;
	flex-wrap: nowrap;
	padding-left: 100px;
	}
	.top-message-txt {
		padding: 0 100px;
	}
	.top-message-btn-space {
		padding: 50px 100px 50px 100px;
    display: flex;
    justify-content: flex-end;
	}
	.white-back,.white-back-work,.beige-back-top {
		position: relative;
	}
	.white-back::before {
		content: "";
    position: absolute;
    top: 120px;
    left: 20%;
    width: 80%;
    height: calc(100% - 100px);
    background-color: #fefefe;
  }
	.white-back-work::before {
		content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #fefefe;
  }
	.beige-back-top::before {
		content: "";
    position: absolute;
		top: 15rem;
    left: 0;
    width: 60%;
    height: calc(100% - 200px);
    background-color: #EDE8E4;
	}
	.back-zindex {
		z-index: 1;
    position: relative;
	}
	.arrow-white-icon {
		width: 20px;
		height: 20px;
		position: relative;
		top: -2px;
	}
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}
.br-mobile {
  display: none;
  width: 100%;
  height: 0;
}
.top-works {
	overflow-x: scroll;
  padding-bottom: 50px;
  margin-top: 50px;
  margin-right: calc(50% - 50vw);
	flex-wrap: nowrap;
	display: flex;
}
.top-works::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-thumb {
  background-color: #bdbdbd;
  border-radius: 4px;
}
.top-works-cts {
	list-style: none;
	width: 30%;
	flex-shrink: 0;
	margin-right: 40px;
}
.top-blog {
	margin-top: 50px;
}
.top-blog-cts {
	list-style: none;
	width: 30%;
}
.top-blog-cts a {
	text-decoration: none;
	color: #111;
}
.blog-img {
	margin-bottom: 10px;
}
.blog-tab {
	border: 1px solid #111;
	border-radius: 30px;
	font-size: 12px;
	padding: 2px 5px;
}
.blog-date {
	font-size: 13px;
}
.blog-title {
	font-size: 17px;
	padding-top: 10px;
	font-weight: 500;
}
.page-title {
	font-family: "Marcellus", serif;
	text-transform: uppercase; 
	font-size: 70px;
	margin: 0;
	padding-top: 6rem;
	padding-bottom: 60px;
	line-height: 45px;
}
.page {
	margin-top: 10rem;
	position: relative;
}
.back-logo {
	position: absolute;
	top: 70px;
  right: -235px;
  width: 600px;
	z-index: -1;
}
.plan {
	display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  gap: 30px;
	margin: 60px 0;
}
.plan-list {
  border-color: transparent;
	background-color: #EDE8E4;
	padding: 35px 0 0 0 ;
	display: block;
  position: relative;
}
li {
	list-style: none;
}
.accordion {
  background-color: #BFAF9A;
}
.accordion:not([open]) {
  margin-bottom: 7px;
}
.accordion summary {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #fefefe;
    font-weight: 500;
    cursor: pointer;
		font-size: 14px;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.accordion summary::after {
   transform: translateY(-25%) rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 14px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    transition: transform .3s;
    position: relative;
    top: 2px;
}
.accordion[open] summary::after {
    transform: rotate(225deg);
}
.accordion ul {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0;
    transition: transform .5s, opacity .5s;
		background-color: #fff;
    border: 4px solid #BFAF9A;
}
.accordion ul li {
	font-size: 13px;
	position: relative;
	padding: 10px 10px 10px 15px;
	margin: 0;
  border-bottom: 1px solid #BFAF9A;
}
.bonus-text {
	font-size: 11px;
	display: block;
	text-indent: 12px;
}
.accordion ul li:before { 
  display:inline-block; 
  vertical-align: middle;
  content:'';
  width:1em;
  height: 1em;
  background: #BFAF9A;
  border-radius: 50%;
  margin-right: 8px;
}
.accordion[open] ul {
    transform: none;
    opacity: 1;
}
.plan-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}
.plan-title-en {
	font-size: 15px;
}
.plan-price {
	text-align: center;
	font-size: 25px;
  font-weight: bold;
}
.price-en {
	font-size: 16px;
}
.plan-text {
	font-size: 14px;
	padding: 20px;
}
.plan-ul {
	text-align: center;
	font-size: 14px;
	padding-bottom: 20px;
}
.plan-icon {
	display: flex;
	justify-content: center;
}
.plan-icon-around {
    border-radius: 50%;
    padding: 13px;
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}
.ribbon {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  box-sizing: border-box;
  padding: 0 12px;
  margin: 0;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: white;
  background: #C14D4D;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
	width: 145px;
  text-align: center;
}
.ribbon:before {
  position: absolute;
  content: '';
  top: 0;
  left: -7px;
  border: none;
  height: 38px;
  width: 7px;
  background: #C14D4D;
  border-radius: 5px 0 0 5px;
}
.ribbon:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #402025;
  border-radius: 5px 0 0 5px;
}
.ribbon.basic {
	background: #D9B650;
}
.ribbon.basic:before {
	background: #D9B650;
}
.ribbon.basic:after {
	background: #937b31;
}
.ribbon.premium {
	background: #7E8C69;
}
.ribbon.premium:before {
	background: #7E8C69;
}
.ribbon.premium:after {
	background: #535c45;
}
.hidden {
	overflow: hidden;
}
.plan-page-title {
	font-family: "Marcellus", serif;
	text-transform: uppercase; 
	font-size: 40px;
  margin: 0;
  padding-bottom: 25px;
	line-height: 45px;
}
.cate-title {
	font-size: 17px;
	font-weight: bold;
	padding-bottom: 20px;
}
.cate-icon {
	width: 25px;
	height: 25px;
	margin-right: 5px;
	position: relative;
	top: -2px;
}
.plan-menu {	
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 列数を3にする */
  grid-template-rows: repeat(2, auto);   /* 行数を2にする */
  gap: 15px;
	margin-top: 40px;
}
.plan-menu-list {
	border: 1px solid #BFAF9A;
	padding: 15px;
	margin: 0;
	display: flex;
  align-items: center;
}
.plan-menu-icon {
	width: 25px;
  margin-right: 12px;
}
.plan-sub-title {
	  font-family: "Marcellus", serif;
    text-transform: uppercase;
    font-size: 43px;
    margin: 0;
    line-height: 45px;
		color: #EDE8E4;
		width: 150px;
}
.plan-sub-text {
		width: 65%;
}
.plan-sub-text {
	position: relative;
	padding: 10px 0 50px 50px;
}
.plan-sub-text.btm {
		padding: 40px 0 0 50px;
}
.plan-sub-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #EDE8E4;
}
.bottom-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #EDE8E4;
}
.plan-menu-list {
	margin-bottom: 10px;
}
.profile-cts {
	position: relative;
}
.profile-img {
  max-width: 500px;
  margin: 0 auto 100px;
	display: block;
}
.profile-text {
	max-width: 800px;
	margin: 0 auto;
}
.profile-name {
	position: absolute;
	text-align: right;
  left: 114px;
  bottom: 453px;
}
.profile-company {
  font-size: 32px;
  line-height: 45px;
}
.profile-ja {
	font-size: 22px;
  padding: 5px 0 3px 0;
}
.profile-en {
 font-size: 14px;		
 	color: #C14D4D;
}
.marcellus-font {
	font-family: "Marcellus", serif;
  text-transform: uppercase;
}
.works {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 65px;
  margin: 60px 0;
  justify-items: center; 
  align-items: center; 
}
.works-cts {
	list-style: none;
	width: 85%;
	flex-shrink: 0;
	margin-left: 0;
}
.works-name {
	text-align: center;
	padding-bottom: 15px;
	font-size: 15px;
}
form.contact-form,.contact-form {
	max-width: 700px;
	margin: 40px auto 50px;
	padding: 10px 30px 30px 30px;
}
.comple_box {
	max-width: 700px;
	margin: 30px auto 50px;
	background-color: #fff;
	border-radius: 20px;
	padding: 30px 30px 30px 30px;
}
label.contact_item {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 25px 0 8px;
	font-weight: bold;
}
input[type="email"], input[type="number"],input[type="text"], input[type="tel"],input[type="date"],input[type="time"],select,input[type="password"],input[type="file"] {
	width: 100%;
	display: block;
	border: 2px solid #EDE8E4;
	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: 2px solid #EDE8E4;
	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: #F7F7F7;
	font-size: 12px;
	margin-left: 10px;
	border-radius: 20px;
	background-color: #C14D4D;
	padding: 0 9px;
}
button.contact-btn,input.contact-btn,a.contact-btn {
	font-size: 15px;
	padding: 10px;
	border: 1px solid#C14D4D;
	background-color:#C14D4D;
	color: #fff;
	letter-spacing: .2em;
	border-radius: 33px;
	margin-top: 30px;
	width: 240px;
	cursor: pointer;
}
a.contact-btn { 
	text-decoration: none;
	text-align: center;
	padding: 8px 10px;
}
button:hover,a.contact-btn:hover {
	background-color: #fff;
	color:#5d5555;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
button.contact-btn:hover,a.contact-btn:hover {
	color:#C14D4D;
}
input.contact-btn:hover {
	color: #fff;
}
.contact-form input[type="radio"] {
	accent-color: #888888;
	transform: scale(1.4);
	margin: 0 5px 0px 0;
	appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 2px solid #EDE8E4;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
 .contact-form input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 1.4px;
  left: 1.7px;
  width: 6px;
  height: 6px;
  background: #C14D4D;
  border-radius: 50%;
}
.inquiry label {
	margin-right: 20px;
}
.contact-name {
	padding-bottom: 5px;
}
.cotacnt_back {
  color: #111;
  padding: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
}
p.confirm_txt {
	margin-bottom: 0;
  padding-top: 7px;
}
.contact-btn-space {
	display: flex;
	justify-content: center;
}
.contact_name {
	border-bottom: 1px solid #BCBCBC;
	padding-bottom: 25px;
}
.contact-item.confirm {
	width: 200px;
	border-right: 5px solid #EDE8E4;
}
.confirm-title,.confirm-text {
	text-align: center;
}
.confirm-txt,.contact-item.confirm {
	padding: 15px;	
}
.confirm-box {
	margin: 30px 0;
	background-color: #fff;
	padding: 0 10px;
}
.confirm-back {
	background-color: #EDE8E4;
}
.contact-name.confirm {
	padding-bottom: 0;
}
.contact-border {
	border-top: 10px solid #fff;
  border-bottom: 10px solid #fff;
  height: 100vh;
}
.work-cts {
	margin: 140px auto 0;
	text-align: center;
}
.work-name {
	font-size: 19px;
	padding-bottom: 8px;
}
.work-date {
	font-size: 14px;
}
.work-img {
	max-width: 550px;
	display: block;
	margin: 30px auto;
}
.work-list-cts {
	text-align: center;
}
.work-list,.work-list dt ,.work-list dd {
	display: inline-block;
  line-height: 2.5;
}
.work-list {
	text-align: left;
}
.work-list dt {
    padding-right: 10px;
    position: relative;
}
.work-list dd { 
	margin-left: 0;
}
.work-text {
	border: 5px solid #EDE8E4;
	padding: 20px;
	text-align: left;
	max-width: 800px;
	margin: 20px auto 0;
}
.work-link {
	color: #C14D4D;
	text-decoration: none;
}
.news-link {
	color: #C14D4D;
}
	.work-btn-space {
		padding: 50px 100px 50px 100px;
    display: flex;
    justify-content: center;
	}
.top-works-btn-space {
	position: relative;
  top: 70px;
}
	@media screen and (min-width:901px) {
		.flex {
			display: flex;
		}
		.jc-center {
			justify-content: center;
		}
		.jc-between {
			justify-content: space-between;
		}
		.ai-center {
			align-items: center;
		}
	}
	@media screen and (max-width:900px) {
		.top-cts {
			flex-direction: column;
		}
		.top-message-logo {
			order: 1;
			justify-content: start;
			padding-top: 40px;
		}
		.top-title {
			order: 2;
		}
		#logo img {
			top: 0;
			z-index: 10000;
		}
		.wrap, .widewrap, .narrowwrap {
      width: 100%;
      padding-left: 10px;
      padding-right: 10px;
      box-sizing: border-box;
    }
		#logo img {
			left: 30px;
			top: 10px;
			empty-cells: show;
			width: 200px;
		}
		#mainimg {
			padding-top: 100px;
		}
		.top-title {
			padding-left: 30px;
			padding-right: 30px;
			padding-bottom: 47px;
		}
		.top-img {
			height: 85vh;
			align-items: end;
			background-position: 70%;
		}
		.top-ja {
			font-size: 20px;
			padding-bottom: 18px;
		}
		.loop-text {
			font-size: 100px;
		}
		.loop {
			top: -80px;
		}
		.top-message-img-side {
			width: 100%;
			padding-left: 10%;
			order: 2;
		}
		.top-message-txt-side {
			position: relative;
			width: 90%;
			margin: -7% 0 0 0;
			padding: 6.2vw 3% 10px 0;
			order: 1;
		}
		.top-message-logo {
      padding-left: 18%;
		}
		.top-message-txt {
			padding: 0 0 0 18%;
		}
		.top-message-btn-space {
      padding: 50px 0 50px 0;
		}
		.white-back::before {
			width: 100%;
      height: calc(80% - 100px);
			top: 90px;
      left: 0;
		}
		.top-message {
			display: flex;
			flex-direction: column;
		}
		section {
			padding-bottom: 3rem;
		}
		.section {
			padding-top: 3rem;
		}
		.section-sp {
			padding-top: 5rem;
		}
		.top-service-num {
    	  font-size: 60px;
        text-align: left;
				line-height: 7rem;
		}
		.top-service-cts-a {
      padding: 0 0 50px 60px;
		}
		.top-service-cts-b {
      padding: 50px 0 50px 60px;
		}
		.top-service-collect {
			width: 100%;
			padding-right: 10px;
		}
		.top-page-title {
			font-size: 40px;
			padding-bottom: 40px;
		}
		.beige-back-top::before {
			width: 90%;
		}
		.hidden-sp-none {
			overflow: initial;
		}
		.back-logo {
			top: 200px;
			right: 0;
			width: 300px;
	  }
		.page-title {
			font-size: 50px;
			padding-bottom: 40px;
		}
		.plan-menu {
    	display: block;
		}
		.plan {
    	display: block;
		}
		.plan-list {
    	margin-bottom: 25px;
		}
		.plan-sub-text {
    width: 100%;
		}
		.plan-sub-text {
			padding: 30px 10px 40px 40px;
		}
		.plan-sub-text.btm {
        padding: 30px 10px 0 40px;
    }
		.sp-margin-top-30 {
			margin-top: 30px;
		}
		.profile-name {
      left: 0px;
      bottom: 669px;
			font-size: 25px;
      line-height: 28px;
			text-align: left;
		}
		.profile-ja {
			font-size: 19px;
		}
		.profile-img {
      width: 95%;
			margin: 0 auto 40px;
		}
		.profile-company {
			font-size: 31px;
			line-height: 41px;
		}
		.top-service {
    width: 100%;
		} 
		.top-service-num-collect {
	    text-align: left;
		}
		.top-service-title {
			padding-bottom: 20px;
			font-size: 20px;
		}
		.top-works-cts {
			width: 50%;
    	margin-right: 20px;
		}
		.top-news {
			width: 100%;
		}
		.logo-a {
			font-size: 100px;
		}
		.logo-b,.logo-c {
    	font-size: 65px;
		}
		.logo-b {
    	right: 8px;
		}
		.logo-c {
    	right: 33px;
		}
		.news-list dt {
			width: 110px;
    	text-align: left;
		}
		.news-list dd {
    	width: 100%;
		}
		.work-img {
			width: 100%;
		}
		.work-btn-space {
  	  padding: 40px 0px 50px 0px;
		}
		.work-name {
   	 font-size: 16px;
		}
		.contact-item.confirm {
			display: block;
			border-right: 0;
		}
		.confirm-box {
			padding: 0;
		}
		.confirm-txt {
		border-bottom: 5px solid #EDE8E4;
		padding: 0 15px 15px 15px;
		}
		.inquiry label {
			display: block;
		}
		.profile-text {
			padding-bottom: 3rem;
		}
	}
	@media screen and (min-width:501px) {
		.top-txt-mobile {
			display: none;
		}
		.br-mobile {
			display: none;
		}
		.top-works-btn-space {
			position: relative;
			top: 0;
			margin-top: 50px;
		}
	}
	@media screen and (max-width:500px) {
		.top-img {
			background-image: url(../img/top-mobile.webp);
			background-position: center top;
		}		
		.top-img {
      height: 75vh;
			position: relative;
		}
		.top-ja {
      font-size: 18px;
			line-height: 18px;
			margin-bottom: 35px;
		}
		.top-cts {
    	height: 121vh;
		}
		.loop {
      top: 2px;
		}
		.loop-text {
      font-size: 65px;
    }
	 .br-mobile {
     display: inline-block;
  	}
		.top-title {
    	padding-bottom: 78px;
    }
		.top-txt-pc {
			display: none;
		}
		p.top-txt.top-txt-mobile {
    	padding: 30px 30px 0px 30px;
		}
		.works {
    	display: block;
		}
		.works-cts {
			width: 100%;
			margin-bottom: 40px;
		}
		.top-service-cts-a {
      padding: 0 0 40px 40px;
    }
		.top-service-btn-space {
    	margin-top: 30px;
		}
		.top-service-cts-b {
      padding: 30px 0 40px 40px;
    }
		form.contact-form, .contact-form {
			padding: 10px 10px 30px 10px;
		}
		#footermenu li {
			padding: 7px 15px;
    	display: block;
		}
		footer::before {
			top: 70%;
			left: 0;
			font-size: 5rem;
		}
		.profile-name {
			bottom: 593px;
		}
		.profile-company {
      font-size: 22px;
			line-height: 27px;
		}
		.profile-ja {
        font-size: 16px;
				padding: 5px 0 0 0;
    }
		.loading-logo {
			margin: 0 auto;
			width: min(150px, 100%);
		}
	}



