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

/*画面全体の設定*/
body,
html {
	scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0 auto;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.25;
	letter-spacing: 0.1em;
	font-size: 15px;
	color: #1F232A;
}


section {
	display: block;
	padding-top: 75px;
	padding-bottom: 75px;
	width: 100%;
}

.inner {
	max-width: 1220px;
	width: 96%;
	margin: 0 auto;
}

.over-area{
  color: white;
  text-align: center;
	position: relative;
}
.over-area:before{
  content: "";
  position: fixed; /* 重要 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vw;
  z-index: -1; /* 重要 */
  background-image: url("../img/kv.JPG");
  background-size: cover;
  background-repeat:no-repeat;
	background-position: center center;
}
.under-area{
  position: relative;
  z-index: 1;
  width: 100%;
  //height: 100vw;
  text-align: center;
  //padding-top: 200px;
  background: #ddd;
}

.area {
    overflow: hidden;
    width: 100%;
    heght: 100vh;
    padding: 5% 0;
}
/*--固定背景の設定--*/
.cd-fixed-bg {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
}

/*--固定背景02--*/
.cd-fixed-bg.cd-bg-2  {
  background-image: url("../img/bg.JPG");
}


.sp-only {display: none}
@media only screen and (min-width : 641px) and (max-width : 1008px){
	/*tablet用のcssを記述*/
	
	.over-area:before{
		height: 100%;
	}
.sp-only {display: none}
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
.sp-only {display: block}
	.over-area:before{
		height: 100%;
	}
}


/*--------------
font 要素
--------------*/
h1 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}
.h2-wrap {
	width: 100%;
	text-align: center
}
h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 80px auto;
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
h2:before, h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
h2:before {
  left:0;
}
h2:after {
  right: 0;
}
.roboto {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2em
}

h2.__white:before, h2.__white:after {
	background-color: #fff
}
.__white {
	color: #fff
}

h3 {
	font-size: 22px;
	color: #1B448B;
	font-weight: 700;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}

/*--------------
header 要素
--------------*/

.header {
  background-color: white;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}


/* ヘッダーのロゴ部分 */
.header__title {
  width: 52px;
}


@media screen and (min-width: 960px) {
  .header__title {
    width: 52px;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .4s;
}



.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}



/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
  color: black;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}



/* ハンバーガーメニュー */

.header__hamburger {
  width: 30px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	.header {
		height: 60px;
	}
	
}



.btn-forn {
	background-color: #1B448B;
	padding: 0.5em 1em;
	border-radius: 50vh;
	color: #fff;
    position: absolute;
    right: 75px;
    top: 8px;
}



/*--------------
kv 要素
--------------*/
section.kv {
    height: 100vh;
}
.kv-txt-area {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.kv-txt {
	font-size: 19px;
	margin-bottom: 50px
}

.kv-ttl {
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 50px
}

.kv-txt-area ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.kv-txt-area ul li ~ li {
	margin-left: 20px;
}

.kv-txt-area ul li {
	width: 200px;
	color: #1F232A;
	border-radius: 50vh;
	background-color: #fff;
	border: 1px solid #1F232A;
	padding:0.7em 0;
}


.scroll-container {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 0;
    left: 50%;
    transform: translate(0, -300%);
}
.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
	.kv-txt {
    	font-size: 17px;
	}
	
	.kv-txt-area {
		width: 100%;
	}
	
	.kv-txt-area ul{
    	flex-direction: column;
	}
	
	.kv-txt-area ul li {
   		margin: 0 0 1em 0;
	}
	
	.kv-txt-area ul li ~ li {
		margin-left: 0px;
	}
	
	
}


/*--------------
悩み 要素
--------------*/


.nayami-list {
	max-width: 500px;
	width: 90%;
	margin: 0 auto;
    margin-bottom: 70px;
}

.nayami-list li ~ li {
	margin-top: 20px;
}
.nayami {
	font-size: 18px;
	font-weight: 700;
	border: 1px solid #1F232A;
	background-color: #fff;
	border-radius: 50vh;
	width: 100%;
	text-align: left;
	padding: 1em 2em;
}

.nayami p::before {
	content: "";
	display: inline-block;
	background: url("../img/check.png") no-repeat;
	width: 21px;
	height: 14px;
	background-size: contain;
	padding-right: 2em;
}



/*--------------
あいさつ 要素
--------------*/
.message {
	background-color:  #E5F4FF;
}
.msg-area-wrap {
	max-width: 700px;
	width: 95%;
	margin: 80px auto;
	display: flex;
	justify-content: space-between;
	align-items: center
}
.msg-img {
	width: 33%;
}
.msg-img img {
	border-radius: 33px;
}
.msg-txt-area {
	width: 62%;
	text-align: left;
}

.katagaki {
	margin-bottom: 1em;
	font-size: 12px;
}


.name {
	color: #1B448B;
	font-weight: 700;
	font-size: 23px;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #292929;
}

.msg-txt {
	font-size: 16px;
	line-height: 1.5em
	
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {

	.msg-area-wrap {
		flex-direction: column;
	}
	.msg-txt-area {
		display: contents;
	}
	.msg-img {
		width: 80%;
	}
	
	
}
	
	
	
	
	
/*--------------
実績 要素
--------------*/
.jisseki {
	background-color: rgba(27,68,139,0.85)
}
.jisseki-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 880px;
	width: 95%;
	margin: 0 auto  80px;
}
.jisseki-list-box {
	width: 48%;
	text-align: center;
	background-color: #fff;
	border-radius: 15px;
	padding: 2em 1em;
	margin-bottom: 20px;
}
.jisseki-ttl {
	color: #1B448B;
	font-size: 16px;
	font-weight: 700;
	
}
.jisseki-ttx {
	color: #1B448B;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 1em;
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {

	.jisseki-list {
    display: flex;
    overflow-x: scroll;
		flex-wrap: nowrap;
	}
	.jisseki-list-box {
    flex-shrink: 0;
    width: 85%;
    margin-right: 20px;
	}
	
	.jisseki-ttl {
		width: 100%;
	}
}




/*--------------
コンサルティング内容 要素
--------------*/
.consul-box-area {
	width: 100%;
	margin: 0 auto 80px;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.consul-box {
	width: 30%;
}

.cst-ttl {
	background-color: #1B448B;
	color: #fff;
	text-align: center;
	border-radius: 20px 20px 0 0;
	padding: 1em 0;
	font-size: 18px;
}
.cst-txt {
	background-color: #fff;
	border-radius: 0 0 20px 20px;
	padding: 2em 1em;
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	.consul-box-area{
    	flex-direction: column;
	}
	.consul-box {
		width: 97%;
		margin: 0 auto 30px;
	}
}



/*--------------
他社比較 要素
--------------*/
.hikaku {
	background-color: #E5F4FF;
}


.table-wrap {
	max-width: 680px;
	width: 95%;
	margin: 0 auto 80px;
}

table , td, th {
	//border: 1px solid #595959;
	border-collapse: collapse;
	width: 100%;
}
tr {
}

td, th {
	padding: 1em 0;
	width: 30px;
	height: 25px;
	border:  2px solid #595959;
	width: fit-content
}

th {
	background: #EFEFEF;
	text-align: center;
	vertical-align: middle;
	font-weight: 700;
}
td {
	background-color: #fff;
	text-align: center;
	vertical-align: middle;
}

.haji {
	background-color: transparent;
	border-top: none;
	border-left: none;
}
.tousya-txt {
	font-weight: 700;
	font-size:1.2em;
}

.border01 {
	border-top:  4px solid #E20000;
	border-right:  4px solid #E20000;
	border-left:  4px solid #E20000;
}

.hikaku-btm-txt {
    background: #fff;
    padding: 1em 3em;
    margin-top: 50px;
    width: max-content;
    margin: 50px auto;
}

.border02 {
	border-right:  4px solid #E20000;
	border-left:  4px solid #E20000;
}

.border03 {
	border-bottom:  4px solid #E20000;
	border-right:  4px solid #E20000;
	border-left:  4px solid #E20000;
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
	
	.hikaku {
		padding-bottom: 75px;
	}
	
	.table-wrap {
	  overflow-x: scroll;
	}
	.table {
	  width: 800px;
	}
	.table th,
	.table td {
	}
	.hikaku-btm-txt {
		text-align: center;
		padding: 1em 1em;
		margin: 0 auto;
	}
	
}



/*--------------
サービス内容 要素
--------------*/

.service{
	background-color: #fff;
}

.svc-area {
	max-width: 800px;
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.svc-box {
	position: relative;
	width: 48.5%;
	border-radius: 8px;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.3);
	padding: 5em 1em 2em 1em;
	margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.svc-box.__01 {
	width: 100%;
	display: flex;
    flex-direction:row;
	justify-content: space-between;
}
.svc-box.__01 .svc-ttl {
	width: 49%;
	text-align: center;
}

.svc-box.__01 .svc-txt {
	width: 49%;
}

.svc-no {
	position: absolute;
	background-color: #1B448B;
	border-radius: 0 0 13px 13px;
	top: 0;
	left: 50%;
	width: 50%;
	transform: translate(-50%,0);
	padding: 0.5em 0;
}


.svc-box.__01 .svc-no {
	width: 25%;
}

.svc-no p {
	color: #fff;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	text-align: center;
}

.svc-ttl {
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 0.8em;
}

.new::before {
	content: "新サービス";
	background-color: #E20000;
	display: block;
	border-radius: 50vh;
	font-size: 14px;
	color: #fff;
	text-align: center;
	margin: 0 auto;
	width: fit-content;
	padding: 5px 1em;
	margin-bottom: 5px;
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	.svc-box.__01 .svc-ttl {
		width: 100%;
	}
	.svc-box.__01 {
		flex-direction: column;
    	width: 90%;
		
	}
	
	.svc-box.__01 .svc-txt {
		width: 100%;
	}
	.svc-ttl, .svc-txt {
		width: 100%;
	}
	.svc-box {
    	width: 90%;
		margin: 0 auto;
		margin-bottom: 30px;
		flex-direction: column;
	}
	
	
	
	
	
}





/*--------------
お問い合わせ 要素
--------------*/
.form {
  background: linear-gradient(180deg, #fff 0%, #fff 30%, #E5F4FF 30%, #E5F4FF 100%);
}

.form-wrap {
	max-width: 850px;
	width: 92%;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
	border-radius: 24px;
	background-color: #fff;
	margin: 0px auto;
}

.form-txt {
    max-width: 800px;
    width: 90%;
    margin: 0px auto;
    padding: 0px 0 50px 0;	
}






/*--フォームのデザイン要素------------*/
.formTable {
	max-width: 800px;
	width: 90%;
	margin: 0px auto;
    padding: 50px 0;
}

.formTable dt {
	font-size: 18px;
	font-weight: 700;
}

.formTable .must::after {
	content: "必須";
	background-color: #E20000;
	border-radius: 100vh;
	font-size: 10px;
	padding: 3px 19px;
	color: #fff;
	margin-bottom: 5px;
	margin-left: 8px;
}

.formTable dd {
	background-color: #F7F7F7;
	border-radius: 8px;
	margin-bottom: 45px;
	margin-top:6px;
	padding: 8px;
}

.formTable dd.policy {
	border: 0;
	margin: 0 auto;
	width:max-content;
	padding: 0;
    background-color: transparent;
}

.form-btn-area:hover {
  background-color: #052153;
}
.forn-input {
  position: absolute;
  top: 0;
  left: 0;
  //width: 100%;
  //height: 100%;
  opacity: 0;
  cursor: pointer;
}

input {
	width: 100%;
    padding: 7px;
}

textarea {
width:100%;
}

.policy {
	background: #fff;
}
.policy a {
	text-decoration: underline;
}
.form-btn-area {
	background-color: #1B448B;
	width: fit-content;
	padding: 1em 2em;
	border-radius: 11px;
	margin: 20px auto;
}
.form-btn-item {
	color: #fff;
	text-align: center;
	font-size: 20px;
}


.form-btn-item span {
	display: block;
	font-size: 0.5em
}

/*--------------
モーダル 要素
--------------*/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 78px 10px 0px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 30px 30px 2em;
  border-radius:12px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c!important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38!important
}


/*** モーダル内の要素 ***/
.pp-ttl-area {
	margin-bottom: 30px;
}

.pp-ttl {
	font-weight: 700
}

.pp-txt-area {
	margin: 20px 0;
}
.pp-subttl {
	font-size: 14px;
	font-weight: 700;
	margin: 24px 0 15px;
}
.pp-txt {
	text-align: left;
	font-size: 12px;
	color: #535353;
    margin-top: 1em;
    line-height: 1.5em;
	
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}

/*--------------
footer 要素
--------------*/

footer {
	background-color: #fff;
	text-align: center;
	font-size: 10px;
	padding: 30px 0;
}





