@charset "utf-8";
/* CSS Document */

.sub_main {
    width: 100%;
    height: 0;
    padding-top: 480px;
    position: relative;
    clip-path: url(#myClip2);
}
.sub_main .slide {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    transition: opacity 1s;
}
.sub_main .slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/*メイン　スライド　追加
---------------------------------------------------------------------------*/
.sub_main-txt-1 {
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    color: white;
    font-size: 40px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px #333, -2px 2px 10px #333, 2px -2px 10px #333, -2px -2px 10px #333;
}



/*下層ページ共通
---------------------------------------------------------------------------*/
.sub-mainContents {
    flex: 1 0 auto;
    overflow-x: hidden;
    padding: 3vw 0 0!important;
}

/*sec-1st==================================================*/
.sec-1st {
	overflow-x: visible;
	position: relative;
	background: var(--sub-cr);	/*背景色*/
	padding: var(--space-large);	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	margin-top: 0vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

/*ボックス上部の大きな装飾テキスト*/
.sec-1st .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: var(--sub-cr);		/*文字色*/
	font-size: 7vw;		/*下の.sec-1stのmargin-topと合わせる*/
	line-height: 1;
}

/*ボックスの左上イラスト（1つ目）*/
.sec-1st .illust1 {
	position: absolute;
	right: 6vw;		/*右からの配置場所*/
	top: 5vw;		/*上からの配置場所*/
	width: 36vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
	transform: rotate(-10deg);	/*左に20度回転*/
}


/*テキストボックス*/
.sec-1st .text {
	margin-bottom: 5rem;	/*下に5文字分の余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.sec-1st {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	
	.sec-1st > * {flex: 1;}

	/*ボックスの左上イラスト（1つ目）*/
	.sec-1st .illust1 {
		rignt: auto;
		left: 3vw;		/*左からの配置場所*/
		top: -13vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 32vw;	/*イラストの幅。*/
	}



	/*テキストボックスの上の小さなイラスト*/
	.sec-1st h2 img {
		width: 5vw;	/*幅*/
	}

	.sec-1st .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.sec-1st .image {
	position: relative;
}

/*画像の角を少し丸くする指定*/
.sec-1st .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.sec-1st .image img:nth-of-type(1) {
	width: 65%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.sec-1st .image img:nth-of-type(2) {
	width: 40%;	/*画像の幅*/
}
.sec-1st .image img:nth-of-type(2) {
	position: absolute;
	right: 10%;	/*画像ブロックに対して右側からの配置場所*/
	top: 15vw;	/*画像ブロックに対して上からの配置場所*/
}

/*sec-odd====================================================*/
.sec-odd {
	overflow-x: visible;
	position: relative;
	background: var(--sub-cr);	/*背景色*/
	padding: var(--space-large);	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	margin-top: 2vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

/*ボックス上部の大きな装飾テキスト*/
.sec-odd .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: var(--sub-cr);		/*文字色*/
	font-size: 7vw;		/*下の.sec-oddのmargin-topと合わせる*/
	line-height: 1;
}

/*ボックスの左上イラスト（1つ目）*/
.sec-odd .illust1 {
	position: absolute;
	right: 6vw;		/*右からの配置場所*/
	top: 5vw;		/*上からの配置場所*/
	width: 36vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
	transform: rotate(-10deg);	/*左に20度回転*/
}


/*テキストボックス*/
.sec-odd .text {
	margin-bottom: 5rem;	/*下に5文字分の余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

    .sec-odd {
        display: flex;
        gap: 5vw;
        border-radius:0 20vw 0 20vw;
        flex-direction: row-reverse;
    }
	
	.sec-odd > * {flex: 1;}

	/*テキストボックスの上の小さなイラスト*/
	.sec-odd h2 img {
		width: 5vw;	/*幅*/
	}

	.sec-odd .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.sec-odd .image {
	position: relative;
}

/*画像の角を少し丸くする指定*/
.sec-odd .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.sec-odd .image img:nth-of-type(1) {
	width: 65%;	/*画像の幅*/
	position: absolute;
	right:10%;	/*画像ブロックに対して右側からの配置場所*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.sec-odd .image img:nth-of-type(2) {
	width: 40%;	/*画像の幅*/
}
.sec-odd .image img:nth-of-type(2) {
	position: absolute;
	left: 0;	/*画像ブロックに対して右側からの配置場所*/
	top: 15vw;	/*画像ブロックに対して上からの配置場所*/
}


/*sec-even==================================================*/
.sec-even {
	overflow-x: visible;
	position: relative;
	background: var(--sub-cr);	/*背景色*/
	padding: var(--space-large);	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	margin-top: 2vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

/*ボックス上部の大きな装飾テキスト*/
.sec-even .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: var(--sub-cr);		/*文字色*/
	font-size: 7vw;		/*下の.sec-evenのmargin-topと合わせる*/
	line-height: 1;
}

/*ボックスの左上イラスト（1つ目）*/
.sec-even .illust1 {
	position: absolute;
	right: 6vw;		/*右からの配置場所*/
	top: 5vw;		/*上からの配置場所*/
	width: 36vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
	transform: rotate(-10deg);	/*左に20度回転*/
}


/*テキストボックス*/
.sec-even .text {
	margin-bottom: 5rem;	/*下に5文字分の余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.sec-even {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	
	.sec-even > * {flex: 1;}

	/*ボックスの左上イラスト（1つ目）*/
	.sec-even .illust1 {
		rignt: auto;
		left: 3vw;		/*左からの配置場所*/
		top: -13vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 32vw;	/*イラストの幅。*/
	}



	/*テキストボックスの上の小さなイラスト*/
	.sec-even h2 img {
		width: 5vw;	/*幅*/
	}

	.sec-even .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.sec-even .image {
	position: relative;
}

/*画像の角を少し丸くする指定*/
.sec-even .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.sec-even .image img:nth-of-type(1) {
	width: 65%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.sec-even .image img:nth-of-type(2) {
	width: 40%;	/*画像の幅*/
}
.sec-even .image img:nth-of-type(2) {
	position: absolute;
	right: 10%;	/*画像ブロックに対して右側からの配置場所*/
	top: 15vw;	/*画像ブロックに対して上からの配置場所*/
}


.sec-1col {
    background: var(--sub-cr);
    color: var(--p-cr);
    position: relative;
    margin-top: 10vw;
    border-radius: 0 8vw 0 0;
}



/*事務所概要のテーブル
------------------------------------------------*/
table.brwsr2 {
margin: 0 auto;
width: 100%;
border: none;
border-top: solid 1px #666;
border-bottom: solid 1px #666;
border-collapse: separate;
border-spacing: 0 10px;
background: rgba(255,255,255,0.3);
}

table.brwsr2 th {
vertical-align: middle;
height: 53px;
width: 30%;
border-right: solid 1px #666;
margin: 0;
text-align: center;
color: #333;
font-size: 16px;
font-weight: bold;
}

table.brwsr2 td.data {
padding: 0 0 0 20px;
margin: 0;
height: 53px;
width: 100px;
border: none;
color: #666;
font-size: 12px;
line-height: 16px;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
}

table.brwsr2 td:fst-child {
padding: 0 0 0 10px;
vertical-align: middle;
}

table.brwsr2 td.bar {
height: 1px;
width: 100%;
border-top: solid 1px #34495e;
}


/*スタッフ募集のテーブル
------------------------------------------------*/
.table_design03 {
border-collapse: collapse;
width: 100%;
max-width: 700px;
}
.table_design03 th, .table_design03 td {
border-bottom: 2px solid #c1c7c6;
padding: 1em;
}
.table_design03 th {
border-bottom: 2px solid var(--p-cr);;
font-weight: bold;
text-align: center;
width: 20%;
min-width: 4em;
}
.sub-bnr-contact {
    margin: 3vw 0 0 0;
}



/*事務所概要
---------------------------------------------------------------------------*/
.name {
    text-align: right;
}
.greeting-prf1 {
    width: 45% !important;
}
.greeting-prf2 {
    width: 70% !important;
}

/*業務案内
---------------------------------------------------------------------------*/
.taiou-Area{
    text-align: center;
    padding-bottom: 30px;
}
dl.business-dl {
	margin:0;
	padding:.5em;
	width:100%;
	background: rgba(255,255,255,0.3);
	font-size:16px;
}
dt.business-dt{
	margin:0;
	padding:.5em;
	font-weight:bold;
	background-color:var(--p-cr); 
	color: #fff;
}
dd.business-dd{
	margin:0;
	padding:0;
	padding-top:.5em;
	padding-bottom:.5em;
}
dd .business-dl-txt1 {
	padding-left:.5em;
	border-left:1.5px solid var(--p-cr);
	font-size:14px;clear:both;
}
.list-design {
  list-style: none;
  padding: 0;
}
.list-design li {
    background: #E8E5DF;
    border-bottom: 2px solid #DDD;
    border-left: 12px solid var(--p-cr);
    margin-bottom: 5px;
    padding: .5em;
}

.fee-tit {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 0.4em;
	text-align: center;
	display: block;
}

.fee-tbl-tit {
    font-size: 16px;
    font-weight: 600;
    width: 80%;
    border-collapse: collapse;
    margin: 20px auto 0;
}
.fee-tbl{
  width: 80%;
  border-collapse: collapse;
  margin: 0 auto 20px;
}

.fee-tbl tr{
  border-bottom: solid 2px white;
}

.fee-tbl tr:last-child{
  border-bottom: none;
}

.fee-tbl th {
    position: relative;
    width: 30%;
    background-color: #93B5B5;
    color: #000;
    text-align: center;
    padding: 10px 0;
}
.fee-tbl td{
  text-align: left;
  width: 30%;
  text-align: center;
  background-color: #E8E5DF;
  padding: 10px 0;
}





.access_wrapper {
    overflow: hidden;
    clear: both;
    width: 80%;
    margin: 0 auto 50px ;
}
.office_tit {
    width: 100%;
    margin: 30px 0 30px 0;
    color: var(--p-cr);
    font-size: 24px;
    font-weight: 700;
}
.access_table {
    width: 48%;
}

.float_L{
	float:left;
}
.float_R{
	float:right;
}
.access_view {
    width: 48%;
}
.access_wrapper_stview {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;    
width: 100%;
}
 
.access_wrapper_stview iframe,
.access_wrapper_stview object,
.access_wrapper_stview embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.access_wrapper_map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    width: 90%;
    margin: 0 auto 50px;
}
.access_wrapper_map iframe,
.access_wrapper_map object,
.access_wrapper_map embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}




/* aタグのリセットCSS（不要な場合、セレクタごと削除してください） */
a {
  color: inherit;
  text-decoration: none;
}

/* buttonタグのリセットCSS（不要な場合、セレクタごと削除してください） */
button {
  padding: 0;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

/* ボタンのスタイル */
.buttonOutlineGradient {
    position: absolute;
    bottom: -70px;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 475px;
    height: 64px;
    padding: 2px;
    font-size: 16px;
    font-weight: 700;	
    text-align: center;
    overflow-wrap: anywhere;
    background: linear-gradient(135deg, #6fa24a, #15a1cc);
    border-radius: 32px;
}

.buttonOutlineGradient::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, #6fa24a, #15a1cc);
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
  opacity: 0;
  filter: blur(8px);
}

.buttonOutlineGradient_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #000;
    background-color: var(--sub-cr);
    border-radius: 32px;
}

@media (any-hover: hover) {
  .buttonOutlineGradient::before {
    transition: opacity 0.2s;
  }

  .buttonOutlineGradient:hover::before {
    opacity: 1;
  }
}







/*◼️ 1280px~（大型PC） */
@media screen and (min-width:76em) {}
/*◼️ 1200px（タブレット横・PC）　*/
@media screen and ( max-width:75em) {}
/*◼️ 900px~1199px（タブレット縦横）　*/
@media screen and (min-width:56.25em) and ( max-width:74.9375em) {}
/*◼️ 500px~899px タブレット（縦）＆モバイル（横） */
@media screen and (min-width:31.25em) and ( max-width:56.1875em) {}
/*◼️ ~480px（モバイル縦） */
@media screen and ( max-width:31.1875em) {
.sub_main {
    padding-top: 230px;	
}
.sub_main-txt-1 {
    top: 37%;
    font-size: 30px;
}
.greeting-Sec{
	height: 1400px;
}
.recruitment-Sec{
	height: 1150px;
}	
.fixed-height-Sec{
	height: 1080px;
}		
.sec-1st .image img:nth-of-type(2) {
    right: 3%;
    top: 24vw;
}
.sec-odd .image img:nth-of-type(1) {
    right: 0%;
}
.sec-even .image img:nth-of-type(2) {
    right: 0%;
    top: 15vw;
}	
.buttonOutlineGradient {
    bottom: -100vw;
}
table.brwsr2 th {
    padding-right: 15px;
}
.float_L,.float_R {
    float: none;
}
.access_table {
    width: 100%;
}
.access_view {
    width: 100%;
    margin-top: 50px;
}	
	
}/*===@media screen and ( max-width:31.1875em) END========================*/




