@charset "utf-8";

/*======================================
  カラー変数
  ※ サイトごとに色コードを変更する
======================================*/
:root {
	--c_rd: #B10000;
	--c_bl: #374689;
	--c_ye: #FFF93C;
	--c_or: #F39800;
	--c_gr: #299888;
	--c_gr2: #28543C;
	--c_gy: #E6E6E6;
	--c_be: #F6F4EE;
	--c_pk: #C66F8F;
	--c_br: #856A42;
	--c_pl: #82488B;
	--c_wh: #fff;
	--c_bk: #000;
}

/*--------------------------------------
  カラーユーティリティクラス
--------------------------------------*/
.clr-rd  { color: var(--c_rd)  !important; }
.clr-bl  { color: var(--c_bl)  !important; }
.clr-ye  { color: var(--c_ye)  !important; }
.clr-or  { color: var(--c_or)  !important; }
.clr-gr  { color: var(--c_gr)  !important; }
.clr-gr2 { color: var(--c_gr2) !important; }
.clr-gy  { color: var(--c_gy)  !important; }
.clr-be  { color: var(--c_be)  !important; }
.clr-pk  { color: var(--c_pk)  !important; }
.clr-br  { color: var(--c_br)  !important; }
.clr-pl  { color: var(--c_pl)  !important; }
.clr-wh  { color: var(--c_wh)  !important; }
.clr-bk  { color: var(--c_bk)  !important; }

.bg-rd  { background-color: var(--c_rd)  !important; }
.bg-bl  { background-color: var(--c_bl)  !important; }
.bg-ye  { background-color: var(--c_ye)  !important; }
.bg-or  { background-color: var(--c_or)  !important; }
.bg-gr  { background-color: var(--c_gr)  !important; }
.bg-gr2 { background-color: var(--c_gr2) !important; }
.bg-gy  { background-color: var(--c_gy)  !important; }
.bg-be  { background-color: var(--c_be)  !important; }
.bg-pk  { background-color: var(--c_pk)  !important; }
.bg-br  { background-color: var(--c_br)  !important; }
.bg-pl  { background-color: var(--c_pl)  !important; }
.bg-wh  { background-color: var(--c_wh)  !important; }
.bg-bk  { background-color: var(--c_bk)  !important; }


/*======================================
  基本設定
======================================*/
* {
	min-height: 0;
	min-width: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px; /* ※サイトごとに変更 */
	transition: .2s;
}

html.wf-active {
	visibility: visible;
}

html, body {
	width: 100%;
}

body {
	/* ※ フォントはサイトごとに変更 */
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
}

body, td, th {
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-all;
}

h2, h3, h4, h5, h6, strong {
	font-weight: 500;
	line-height: 1.5;
}

th {
	font-weight: 400;
}

a {
	color: #000;
	outline: none;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

img {
	max-width: 100%;
	height: auto;
}

.fo-notoserif {
	font-family: "Noto Serif JP", serif;
}
.fo-notosan {
	font-family: "Noto Sans JP", sans-serif;
}
.txt-lh {
	line-height: 2;
}

.wow {
	visibility: hidden;
}


/*======================================
  フォーム
======================================*/
input, select, textarea {
	padding: 5px 10px;
	border: 1px solid #ccc;
	margin: 2px;
	background: #fff;
}

input[type=radio],
input[type=checkbox] {
	margin: 0 5px 0 0;
	width: auto;
}

label {
	display: inline-block;
}

input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

.formbox {
	text-align: left;
}

.formbox dl {
	padding: 0 0 4rem;
}

.formbox dt {
	text-align: left;
	margin-bottom: 1rem;
}

.formbox dd input,
.formbox dd select,
.formbox dd textarea {
	font-size: 1.6rem;
	padding: 1.5rem;
	border-radius: 5px;
	border: none;
	width: 100%;
	font-weight: 400;
	background: var(--c_gy);
}

.formbox ._txtarea01 {
	width: 100%;
	height: 20rem;
}

.formbox input[type=checkbox],
.formbox input[type=radio] {
	vertical-align: top;
	margin: 0 1rem 0 0;
	width: 1.8rem;
	height: 1.8rem;
	flex-shrink: 0;
}

.formbox label {
	display: flex;
	align-items: center;
}

.formbox dd label {
	margin-bottom: 1rem;
	display: inline-flex;
}

.privacybox {
	background: #fff;
	padding: 2rem;
	border: 1px solid #ccc;
	height: 20rem;
	overflow: auto;
	font-size: 1.4rem;
	margin: 0 0 3rem;
	text-align: left;
}

.hissu {
	display: inline-block;
	padding: 0 1rem;
	background: var(--c_rd);
	color: #fff;
	margin: 0 0 0 1rem;
	font-size: 80%;
	border-radius: 3px;
}

.nini {
	display: inline-block;
	padding: 0 1rem;
	background: #A1A1A1;
	color: #fff;
	margin: 0 1rem 0 0;
	font-size: 80%;
	border-radius: 3px;
}

form .linkbtn01,
form .linkbtn02 {
	text-align: center;
	color: #fff;
	font-size: 2rem;
	padding: 2rem 3rem;
	background: var(--c_gr);
	cursor: pointer;
	display: inline-block;
	margin: 0 10px 5px;
	border-radius: 10px;
}

.linkbtn02 {
	color: #666;
}

/* MW WP Form 確認画面切り替え */
.mw_wp_form_confirm .confirmtxt { display: block; }
.mw_wp_form_confirm .input-show { display: none; }
.mw_wp_form_input .input-confirm { display: none; }


/*======================================
  レイアウト
  ※ max-width・padding はサイトごとに変更
======================================*/
.wrap {
	overflow-x: hidden;
}

/* ※サイトごとに変更 */
.mainbody {
	max-width: 120rem;
	margin: 0 auto;
}

.mainbody2 {
	max-width: 90rem;
	margin: 0 auto;
}

.mainbody3 {
	max-width: 100rem;
	margin: 0 auto;
}

/* ※サイトごとに変更 */
.contents {
	padding: 10rem 0;
}

.width100 { width: 100%; }
.onlysp   { display: none; }
.none     { display: none; }
.block    { display: block; }
.uline    { text-decoration: underline; }

.boxBgWrap {
	display: inline-block;
	position: relative;
	z-index: 1;
}


/*======================================
  ヘッダー
  ※ 高さ・背景色・ロゴ装飾はサイトごとに変更
======================================*/
.headerwrap {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: .5s;
	 background: #fff;
	 box-shadow: 0px 0px 10px -5px #777777;
}

.home .headerwrap {
	
}
.headerwrap.change-color {
    
}

.headerwrap a {
     color: #000!important;
}

.header {
	height: 10rem; /* ※サイトごとに変更 */
	padding: 0 4rem;
}

.header .logo a {
	display: block;
	z-index: 2;
	position: relative;
	color: #fff;
	white-space: nowrap;
}

.header h1 {
	font-size: 2rem;
}
.header h1 small {
	font-size: 1.4rem;
	margin: 0 1rem 0 1rem;
}

.gnavi {
	
}

.gnavi a {
	font-weight: 400;
	margin: 0 1.4rem;
	font-size: 1.4rem;
	white-space: nowrap;
	color: #fff;
	
}

.gnavi ._insta {
	margin-left: .6rem;
}

.gnavi ._insta img {

}

.menubtn {
	display: none;
}

.menu-icon span {
	position: relative;
	display: block;
	width: 2rem;
	height: 2px;
	background: currentColor;
	color: #fff;
}
.menu-icon span::before,
.menu-icon span::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
}
.menu-icon span::before {
	top: -0.6rem;
}
.menu-icon span::after {
	top: 0.6rem;
}


/*======================================
  スマホメニュー
======================================*/
.smenu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99990;
	width: 90%;
	height: 100%;
	transition: all .2s ease-in;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	padding: 1rem 0;
	background:#fff;
	backdrop-filter: blur(20px);
	transform: translateX(25px);
	opacity: 0;
	visibility: hidden;
}

.smenu.active {
	opacity: 1;
	transform: translateX(0);
	visibility: visible;
}

.spnavi {
	margin: 0 0 3rem;
}

.spmenu {
	margin: 0 0 4rem;
}
.spmenu ul{
	margin-bottom: 2rem;
}

.spnavi li a {
	display: block;
	color: #000;
	border-bottom: 1px solid #ccc;
	padding: 1rem 0;
	text-align: left;
	position: relative;
}

.spnavi li a::after {

	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;


	display: inline-block;
  content: "";
  width: 1.8rem;
  height: 1rem;
  background: url(../img/arrow01.svg) no-repeat bottom center;
    background-size: auto;
  background-size: contain;
  margin-left: 1rem;
}

.spclose {
	text-align: right;
}

.spclose a {
	font-size: 2rem;
	background: #fff;
	line-height: 1;
	height: 3rem;
	width: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #323232;
}


.spmenu ._contact a{
	background: #3246D2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 2rem;
}
.spmenu ._contact img{
	margin-right: 1rem;
}


/*======================================
  フッター
  ※ 構造・背景はサイトごとに変更
======================================*/
.footerwrap {
	background:url(../img/bg_footer.jpg) no-repeat top center;
	background-size: cover;
	color: #fff;
}
.footerwrap a{
	color: #fff;
}
.footer{
	margin-bottom: 4rem;
}

.footleft{
	text-align: left;
}

.footlogo {
	margin: 0 0 5rem;
}

.footlogo h2 {
	font-size: 2rem;
	letter-spacing: .1em;
}
.footinfo{
	letter-spacing: .1em;
	font-size: 1.4rem;
	margin-bottom: 3rem;
}
.footleft ._contact a{
	font-weight: 500;
	border-bottom: 1px solid #fff;
	padding-bottom: .5rem;
  display: inline-block;
}

.footright{
	flex-basis: 43%;
}

.footnavi li {
	text-align: left;
	padding: 2rem 0;
	font-size: 1.4rem;
}

.copyright {
	font-size: 1.2rem;
	text-align: left;
	
}


.fixedbtn{
	position: fixed;
	top: 30%;
	right: 0;
	margin: auto;
	z-index: 100;
}
.fixedbtn a{
	background: #3246D2;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	letter-spacing: .1em;
	font-size: 120%;
}
.fixedbtn img{
	margin-bottom: 1rem;
}




/*======================================
  サイト固有スタイル
  ※ ここ以降にサイトごとのスタイルを追記する
======================================*/

/*top**/
.mainvisualwrap {
  position: relative;
  overflow:hidden;
  height: 75rem;
  width: 100%;
  margin-top: 10rem;;
}

.mvslider {
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.mvslider.slick-initialized {
    opacity: 1;
    transition: opacity .6s ease;
}

  .mvslider figure{
  display: flex;
   align-items: center;
    justify-content: center;
    height: 75rem;
  }
.mvslider figcaption{
		position: absolute;
		right: 3rem;
		bottom: 2rem;
		color: #fff;
		font-size: 1.5rem;
		font-weight: 400;

}


 /* .mvslider .slick-slide .onlysp{
      display: none;
  }*/
  
.mvslider img {
  width: 100%;
  height: 100%;
 /* max-width: 100%;
  min-height: 820px;
  min-width: 1920px;*/
  object-fit: cover;
  align-self: center;
}
.mvcont{
    position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
     color: #fff;
     z-index: 100;
	
	 display: flex;
	 align-items: center;
	 justify-content: center;
	

}
.mvcont h2{
    font-size: 3rem;
    letter-spacing: .5rem;   
	font-weight: 400; 
}

/**news**/
.title01{
	color:#9B9B9B ;
	font-size: 2rem;
	margin-bottom: 8rem;
}
.title02{
	letter-spacing: .2em;
	border-left: 1px solid #000;
	padding-left: .5rem;
	font-size: 2.2rem;
}
.title02._wh{

	border-color: #fff;
	color: #fff;
}
.topnewswarap {
	align-items: flex-start;
}

.topnewstitle {
	flex-shrink: 0;
	width: 20rem;
	text-align: left;
}

.topnewscont {
	flex: 1;
	text-align: left;
}

.newslist {
	margin-bottom: 4rem;

}

.newslist:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.newslist .date {
	color: #9B9B9B;
	margin-bottom: 1rem;
	letter-spacing: .1em;
}

.newslist h4 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

.newslist p {
	font-size: 1.4rem;
}

/**理念**/
.topmaintitle{
	flex-basis: 8%;
}
.topmaincont{
	flex-basis: 92%;

}
.toprinenwrap{
	text-align: left;
	position: relative;
	padding-bottom: 22rem;
}
.toprinenwrap h4{
	font-size: 3rem;
	margin-bottom: 3rem;
	margin-top: -1rem;
	font-feature-settings: "palt";
	
}
.toprinenwrap h4 .tsume{
	letter-spacing: -.13em;
}
.toprinenwrap .txt-lh{
	line-height: 2.2;
}


.philosophyimg01 {
position: absolute;
  right: 7rem;
  top: 14rem;
  width: 31rem;
}

.philosophyimg02 {
position: absolute;
  right: -6rem;
  top: 30rem;
  width: 22rem;
  z-index: 2;
}

.philosophyimg03 {
position: absolute;
  right: 32rem;
  top: 40rem;
  width: 24rem;
  z-index: 2;
}

/**強味**/
.identitywrap{
	background:#323232 ;
}
.identitywrap figure{
	text-align: right;
	margin-bottom: -7rem;
}
.identitywrap .identitybox:nth-child(2) figure img{
	margin-right: -3rem;
}
.identitybox img{
	max-height: 27rem;
}

.identitybox {
	color: #fff;
	text-align: left;
	flex-basis: 31%;
}
.identitybox h4 {
	font-size: 2rem;
}
.identitybox h4 big{
	font-size: 200%;
}



.identitybox ._cont{
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	padding: 3rem;
	min-height: 28rem;
}
.identitybox ._cont h5{
		font-size:1.6rem;
		margin-bottom: 2rem;
		line-height: 1.7;
		font-weight: 400;
}
.identitybox ._cont p{
	font-size: 1.4rem;;
}

/**works**/
.workslistwrap{
	gap: 2.2rem;
}
.workslist{
		flex-basis: 32%;
		margin: 0 0% 4rem;
}
.workslist ._img{
	margin-bottom: 1rem;
	cursor: pointer;
	
}
.workslist ._img figure{
	overflow: hidden;

}
.workslist ._img img {
transition: transform .6s ease;
width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}


.workslist ._img:hover img {
  transform: scale(1.1);
  opacity:1;
}

.workslist p{
	text-align: left;
}


/*popup
---------------------------------------------------------*/
.swindow-wrapper {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 6rem 1rem;
  text-align: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease-in, visibility .2s ease-in;
}

.swindow-wrapper.is-show {
  opacity: 1;
  visibility: visible;
}

.swindow-wrapper::after {
  display: inline-block;
  width: 0;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: "";
}

.swindow-overlay {
  z-index: 10;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  backdrop-filter: blur(10px);
}
.swindow-overlay:hover {
	opacity:1;
	filter: alpha(opacity=100);
}

.swindow-window {
  position: relative;
  z-index: 20;
  display: inline-block;
  width: 100%;
   max-width: 120rem;
  margin: 0 auto;

  vertical-align: middle;
  text-align: left;
}

.swindow-content {
  background: #fff;
  margin: 0 auto;
  padding: 5rem;
  position: relative;
}

.swindow-wrapper .swindow-close {
  z-index: 20;
  display: inline-block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  top:-3rem;
  position: absolute;
  right: 0;
  font-size: 5rem;
  line-height: 0;;

}

.popworks {
  display: none;
}

.popworks.is-show {
  display: block;
}

.popworks h3{
	font-size:2.4rem ;
	margin-bottom: 4rem;
	text-align: left;
}

.workdtlwrap {
	align-items: stretch;
}

.workdtlwrap ._mainphoto {
	flex: 0 0 57%;
}

.workdtlwrap ._mainphoto figure {
	height: 100%;
}

.workdtlwrap ._mainphoto img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.workdtlwrap ._cont {
	flex: 0 0 40%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
}
.workdtlwrap ._cont ._txt{
	font-size: 1.4rem;
}


.workdtlwrap ._subphoto ul {
	margin: 0 -1%;
}

.workdtlwrap ._subphoto li {
	width: 48%;
	margin: 0 1%;
}

.workdtlwrap ._subphoto img {
	width: 100%;
	display: block;
}

.popmorebtn {
	position: absolute;
	right: 5rem;
	top: 5rem;

}


.btn01{
	display: inline-flex;
	align-items: baseline;
	color: #6C6C6C;
	letter-spacing: .05em;
}
.btn01:after{
	display: block;
	content: "";
	width: 2.4rem;
height: 1rem;
background:url(../img/arrow01.svg) no-repeat bottom center;
background-size: contain;
margin-left: 1rem;
}
.btn01._wh:after{
	background-image:url(../img/arrow01_wh.svg) ;
}






.workotherwrap dl{
	flex-basis: 23%;
	margin: 0 1% 4rem;
}
.workotherwrap dt{
	margin-bottom: 1rem;
}
.workotherwrap dd{
	font-size: 90%;
}

/**flow**/
.flowwrap{
	background:url(../img/top/bg_flow.jpg) no-repeat center center;
	background-size: cover;
}
.flowbox {
	background: #fff;
	padding: 4rem;
	margin-bottom: 2rem;
}
.flowbox ._num{
	flex-basis: 12%;
	border-right: 1px solid #000;
	font-size: 4rem;
	color: #868686;
	min-height: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.flowbox h4{
	flex-basis: 20%;
	font-size: 2rem;
}
.flowbox ._txt{
	flex-basis: 64%;
	text-align: left;
	font-size: 1.4rem;
}


/**faq**/
.faqbox{
	text-align: left;
	border-top: 1px solid #ccc;
}
.faqbox._active{
	background: #6A6A6A;
	color: #fff;
}

.faqbox:last-child{
	border-bottom: 1px solid #ccc;
}

.faqbox ._title{
	padding: 3rem 8rem;
	position: relative;
	cursor: pointer;
}
.faqbox ._title:before{
	content: "Q";
	font-size:2rem;
	position: absolute;
	left: 3rem;
	top: 50%;
	line-height: 1;
	transform: translateY(-50%);
}
.faqbox ._title:after{
	content: "+";
	font-size:4rem;
	position: absolute;
	right: 3rem;
	top: 50%;
	line-height: 1;
	transform: translateY(-50%);
	color: #666;
	font-family: 'Courier New', Courier, monospace;
}
.faqbox._active ._title:after{
	color: #fff;
	content: "-";
}

.faqbox ._cont{
	margin:  0rem 8rem;
	padding: 3rem 0;
	border-top: 1px dotted #fff;
	position: relative;
	display: none;
}


.faqbox ._cont:before{
	content: "A";
	font-size:2rem;
	position: absolute;
	left: -5rem;
	top: 50%;
	line-height: 1;
	transform: translateY(-50%);
}

/**お問い合わせ**/
.topcotactwrap{
	position: relative;
	display: block;
}
.topcotactwrap:hover{
	opacity: 1;
}

.topcotactwrap .title01{
	margin-bottom: 3rem;
}

.topcontacttitle{
	margin-bottom: 3rem;
}
.topcontacttitle .title02{
	border-right: 1px solid #fff;
	padding: 1rem;
}


.topcontactimg01,
.topcontactimg02{
	position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  object-fit: cover;
  z-index: -1;
  transition: filter .6s ease;
}

.topcontactimg01{
	left: 0;
}

.topcontactimg02{
	right: 0;
}

.topcotactwrap:hover .topcontactimg01,
.topcotactwrap:hover .topcontactimg02{
	filter: brightness(.6);
	opacity:1;
	filter: alpha(opacity=100);
}



/**company**/
.companybox{
	position: relative;
	
}
.companyinfo{
	max-width: 57rem;
}
.table01{
	width: 100%;
	border-top: 1px solid #ccc;
	border-collapse: collapse;
	margin-bottom: 1rem;

}
.table01 th,
.table01 td{
	border-bottom: 1px solid #ccc;
	padding: 3rem;
	text-align: left;
}

.companyimg01{
	position: absolute;
	top: 3rem;
	right: 2rem;
	width: 27.5rem;
}

.companyimg02{
	position: absolute;
	top: 18.3rem;
	right: 17.8rem;
	width: 21.4rem;
	z-index: 2;
}

.companyimg03{
	position: absolute;
	top: 39.4rem;
	right: 7rem;
	width: 16.5rem;
	z-index: 2;
}




/**flowphoto**/
.topflowphoto li{
    padding:2rem;
}
.topflowphoto li img{
   max-height:16.5rem ; 
}
.topflowphoto li:nth-child(even){
		margin-top: 3rem;;
}

.topflowphoto {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}

.topflowphoto ul {
    display: flex;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}
@keyframes scrollLogos {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}





/*======================================
  PC専用追加スタイル
======================================*/
@media print, screen and (min-width: 621px) {

	img {
		image-rendering: -webkit-optimize-contrast;
	}

	.gnavi {
		display: block !important;
	}

	.mwidth50 { width: 100%; max-width: 50%; }
	.mwidth40 { width: 100%; max-width: 41%; }
	.mwidth30 { width: 100%; max-width: 31%; }
	.mwidth60 { width: 100%; max-width: 65%; }
	.mwidth25 { width: 100%; max-width: 23%; }
	.mwidth20 { width: 100%; max-width: 18%; }

}



@media screen and (max-width: 1350px) {
	html {
		font-size: .7407407vw;
	}
    .mainbody{
        max-width: 95%;
    }
}



/*@media screen and (max-width: 768px) {*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {



}




/*======================================
  スマートフォン用
  ※ ブレークポイント・font-size はサイトごとに変更
======================================*/
@media screen and (max-width: 620px) {

	html {
		font-size: 2.7777777vw; /* 360px基準 ※サイトごとに変更 */
	}

	body {
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.slick-slider {
		touch-action: pan-y;
	}

	.mainbody,
	.mainbody2,
	.mainbody3 {
		margin: 0 2rem;
		width: auto;
	}

	.contents {
		padding: 5rem 0; /* ※サイトごとに変更 */
	}

	/* ヘッダー */
	.header {
		height: 6rem; /* ※サイトごとに変更 */
		padding: 0 1rem;
	}
.header h1{
	font-size: 1.6rem;;
}
.header h1 small{
	font-size: 1.2rem;;
}
	.header h1 img {
		max-height: 2rem;
	}

	.headright {
		display: none;
	}

	.menubtn ,
	.headerwrap.change-color .menubtn {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff !important;
		font-size: 200%;
		width: 3rem;
		height: 3rem;
		background: #323232;
		line-height: 1;
	}

	/* フッター */
	.footer {
		display: block;
	}


	.footnavi {
		display: none;
	}






.footer{
	margin-bottom: 3rem;
}

.footleft{
	text-align: center;
}

.footlogo {
	margin: 0 0 2rem;
}

.footlogo img{
	max-height: 2rem;
	margin-right: 1rem;
}

.footlogo h2 {
	font-size: 1.6rem;
	text-align: center;
	
}
.footinfo{
	font-size: 1.2rem;
	margin: auto;
	margin-bottom: 2rem;
	display: inline-block;
	
}
.footleft ._contact{
		text-align: center;
}
.footleft ._contact a{

}

.footright{
	flex-basis: 40%;
}

.footnavi li {
	text-align: left;
	padding: 1.5rem 0;
}

.copyright {
	font-size: 1rem;
	text-align: center;
	
}


.fixedbtn{
	
	top: auto;
	bottom: 0;
	right: auto;
	width: 100%;
	
	display: none;
	
}
.fixedbtn a{
	padding: 1rem;
	writing-mode: horizontal-tb;
}
.fixedbtn img{
	margin:0 1rem 0 0;
}



/*======================================
  サイト固有スタイル
  ※ ここ以降にサイトごとのスタイルを追記する
======================================*/

/*top**/
.mainvisualwrap {
  height: 60rem;
  margin-top: 6rem;
}

.mvslider ._s01 img {
 object-position: 35% center; /* 左右 上下 の順。例: 30% center で左寄り */
}
.mvslider ._s02 img {
 object-position: 40% center; /* 左右 上下 の順。例: 30% center で左寄り */
}
.mvslider ._s03 img {
 object-position: 0% center; /* 左右 上下 の順。例: 30% center で左寄り */
}
.mvslider ._s04 img {
 object-position: center center; /* 左右 上下 の順。例: 30% center で左寄り */
}


  .mvslider figure{
  height: 60rem;
  }
.mvslider figcaption{
		right: 2rem;
		bottom: 2rem;
		font-size: 1.2rem;
}

.mvcont h2{
    font-size: 2rem;
}

/**news**/
.title01{
	font-size: 2rem;
	margin-bottom: 4rem;
	
}
.title02{
	padding-left: .5rem;
	writing-mode:horizontal-tb;
	text-align: center;
	border: none;
	border-bottom:1px solid #000;
	padding: .5rem;
	margin-bottom: 3rem;
	display: inline-block;
	font-size: 1.8rem;

}
.title02._wh{
	border-color: #fff;
	color: #fff;
}
.topnewswarap {
	align-items: flex-start;
	display: block;
	
}

.topnewstitle {
	width: auto;
	text-align: center;
	
}



.newslist {
	margin-bottom: 2rem;

}

.newslist .date {
	margin-bottom: 1rem;
}

.newslist h4 {
	font-size: 1.6rem;
}

.newslist p {
	font-size: 1.2rem;
}



/**理念**/
.topmaincont {
	display: block;;
}


.topmaintitle{
	
}
.topmaincont{
	
}
.toprinenwrap{

	padding-bottom: 0;
}
.toprinenwrap h4{
	font-size: 1.6rem;
	margin-bottom: 3rem;;
}




	.philosophyimg01,
	.philosophyimg02,
	.philosophyimg03 {
		position: static;
		width: 50%;
		margin: 0 0 2rem;
	}
		.philosophyimg01{
			width: 80%;;
		}

	.philosophyimg02{
		display: block;
		margin-left: auto;
		margin-top: -5rem;
	}


	
/**強味**/
.identityboxwrap {
	display: block;
}
.identitywrap figure{
	text-align: right;
	margin-bottom: -7rem;
}
.identitywrap .identitybox:nth-child(2) figure img{
	margin-right: -1rem;
}

.identitybox {
	margin-bottom: 5rem;
}
.identitybox img {
  max-height: 20rem;
}
.identitybox h4 {
	font-size: 1.6rem;
}

.identitybox ._cont{
	padding: 3rem;
	min-height: auto;
}
.identitybox ._cont h5{
		font-size:1.4rem;
}
.identitybox ._cont p{
	font-size: 1.2rem;;
}



/**works**/
.workslistwrap{
	display: block;
}
.workslist{
		margin: 0 0 2rem;
}
.workslist ._img{
	margin-bottom: 1rem;
}

/*popup
---------------------------------------------------------*/
.swindow-wrapper {
  padding: 6rem 1rem;

}



.swindow-content {
  background: #fff;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
      max-height: 90vh;
  overflow: auto;

}

.swindow-wrapper .swindow-close {
  top: 3rem;
  right: 1rem;
  font-size: 3rem;
  color: #000;
}

.popworks h3{
	font-size:1.6rem ;
	margin-bottom: 2rem;
}

	/* 実績詳細ポップアップ */
	.workdtlwrap {
		display: block;
	}

	.workdtlwrap ._mainphoto {
		margin-bottom: 2rem;
	}

	.workdtlwrap ._mainphoto figure,
	.workdtlwrap ._mainphoto img {
		height: auto;
	}
.workdtlwrap ._cont ._txt{
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

	.workdtlwrap ._cont {
		display: block;
		margin-bottom: 2rem;
	}



/*
.workdtlwrap ._mainphoto figure {
	height: 100%;
}

.workdtlwrap ._mainphoto img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.workdtlwrap ._cont {
	flex: 0 0 40%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
}
.workdtlwrap ._cont ._txt{
	font-size: 1.4rem;
}


.workdtlwrap ._subphoto ul {
	margin: 0 -1%;
}

.workdtlwrap ._subphoto li {
	width: 48%;
	margin: 0 1%;
}

.workdtlwrap ._subphoto img {
	width: 100%;
	display: block;
}


	*/


.popmorebtn {
	position: static;
	right: auto;
	top: auto;
	text-align: center;

}






.workotherwrap dl{
	flex-basis: 48%;
	margin: 0 1% 2rem;
}
.workotherwrap dt{
	margin-bottom: 1rem;
}
.workotherwrap dd{
	font-size: 80%;
}




/**flow**/

.flowbox {
	padding: 2rem;
	margin-bottom: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	
}
.flowbox ._num{
	font-size: 2.5rem;
	min-height: auto;
	flex-basis: 16%;
	line-height: 1;
	padding-bottom: .2rem;



}
.flowbox h4{
	font-size: 2rem;
	flex-basis: 30%;
	margin-right: 3rem;



}
.flowbox ._txt{
	font-size: 1.2rem;
	flex-basis: 100%;
	padding-top: 2rem;
}


/**faq**/


.faqbox:last-child{

}

.faqbox ._title{
	padding: 2rem 4rem;
	position: relative;
}
.faqbox ._title:before{
	font-size:1.6rem;
	left: 1.5rem;
}
.faqbox ._title:after{
	content: "+";
	font-size:2rem;
	right: 1.5rem;
}


.faqbox ._cont{
	margin:  0rem 2rem 0 4rem;
	padding: 2rem 0;
}


.faqbox ._cont:before{
	font-size:1.6rem;
	left: -2.5rem;
}

/**お問い合わせ**/
.topcotactwrap{
	position: relative;
	display: block;
}
.topcotactwrap:hover{
	opacity: 1;
}

.topcotactwrap .title01{
	margin-bottom: 2rem;
}

.topcontacttitle{
	margin-bottom: 0rem;
}
.topcontacttitle .title02{
	border-right: none;
	border-top: 1px solid #fff;
}




/**company**/

.companyinfo{
	margin-bottom: 3rem;
}
.table01{
	width: 100%;
	border-top: 1px solid #ccc;
	border-collapse: collapse;
	margin-bottom: 1rem;

}
.table01 th,
.table01 td{
	padding: 1rem;
	font-size: 95%;
}
.table01 th{
	white-space: nowrap
}


.companybox ._img{
	text-align: left;
}

	.companyimg01,
	.companyimg02,
	.companyimg03 {
    position: static;
    width: 50%;
    margin: 0 0 2rem;
  }
	.companyimg01{
			width: 80%;;
		}

	.companyimg02{
		display: block;
		margin-left: auto;
		margin-top: -5rem;
	}




/**flowphoto**/
.topflowphoto li{
    padding:1rem;
}
.topflowphoto li img{
   max-height:10rem ; 
}
.topflowphoto li:nth-child(even){
		margin-top: 2rem;;
}



























	/* 表示切り替え */
	.onlypc   { display: none; }
	.onlysp   { display: block; }
	.spblock  { display: block; }
	.spcenter { text-align: center; }

	.onlysp._inlineblock {
		display: inline-block;
	}








	/* フォーム */
	form .linkbtn01,
	form .linkbtn02 {
		font-size: 1.6rem;
		padding: 1rem 2rem;
	}

}
