@import url(https://fonts.googleapis.com/css?family=Pacifico);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans);

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

body{
	font: 14px/1.9 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif 'Noto Sans JP', sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	color: #000;
	background: #fff;
}
p{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: normal;
	line-height: 42px;
}
a{
	color: #0066ff;
	text-decoration: none;
}

a:hover, .active{
  text-decoration: underline;
}

a:active, a:focus,input:active, input:focus{outline:0;}



/* ハンバーガー
------------------------------------------------------------*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition     : all 0.3s ease-in-out;
  transition        : all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay     : 0.6s;
  transition-delay        : 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(2){
  width: 0px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.hamburger.active span:nth-child(1){
  -webkit-transform: translateY(4px);
  -ms-transform    : translateY(4px);
  -o-transform     : translateY(4px);
  transform        : translateY(4px);
}

.hamburger.active span:nth-child(3){
  -webkit-transform: translateY(-16px) rotate(90deg);
  -ms-transform: translateY(-16px) rotate(90deg);
  -o-transform : translateY(-16px) rotate(90deg);
  transform    : translateY(-16px) rotate(90deg);
}


nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.9s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}


/* ヘッダー
------------------------------------------------------------*/
#header{
  min-height: 100vh; /* 全画面表示 */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/main_bg.jpg);
}

#header h1{
	width: 60%;
	background-color: rgba(255,255,255,0.50);
}
#header h1 p{
	font-size: 24px;
	color: #B94134;
	letter-spacing: 3px;
	vertical-align: bottom;
	text-align: center;
}
#header h1 img{
	width: 85%;
	padding: 20px 0 0 20px;
	display: inline-block;
}

#header .mainsp-ttl{
	display: none;
}

#header .main .main-sec{
	text-align: center;
	position:relative;
	top: 9.5vh;
}

/* main
------------------------------------------------------------*/



/* フッター
------------------------------------------------------------*/
#footer{
	clear: both;
	padding: 50px 10px 50px 0;
	text-align: center;
	font-size: 12px;
}
.footlogo{
	width: 380px;
	display: inline-block;
}
.footlogo p{
	text-align: center;
}

.footer-nav li{
	display: inline-block;
	padding: 20px;
	font-size: 150%;
}
.footer-nav li a{
	color: #666;
}


/* 共通
------------------------------------------------------------*/
h1, h2{
	font-family: 'Josefin Sans', 'Noto Sans JP',serif;
}

img{
}

section{clear:both;margin: 100px auto;}

section h2{
	font-size: 24px;
	letter-spacing: 3px;
	font-weight:normal;
	text-align: center;
	font-weight: bold;
}

section p{
	font-size: 120%;
}

.inner{
	width: 94%;
	margin: 0 auto;
	padding-bottom: 50px;
}

.col2 li{
	display: inline-block;
	width: 100%;
  	margin: 20px 0 20px 0;
}

.wrap1{
	clear: both;
	width: 1000px;
	margin: 0 auto;
}

.wrap2{
	clear: both;
	width: 1200px;
	margin: 0 auto;
	background:url("../../../rectuit_sozai/images/sec02-bg.png") no-repeat;
	background-position:center bottom;
}

.wrap3{
	clear: both;
	width: 1200px;
	margin: 0 auto;
}

h3 span{
background: linear-gradient(transparent 60%, rgba(255,255,255,0.3) 60%);
font-weight: bold;
letter-spacing: 5px;
}

/* SEC01 VISION
------------------------------------------------------------*/

#sec01 .sec{
	margin-top: 100px;
}
#sec01 .sec1-1bg{
	background:url("../images/sec01-bg01.jpg") no-repeat right;
}
#sec01 .sec1-2bg{
	background:url("../images/sec01-bg02.jpg") no-repeat left;
}
#sec01 .sec1-3bg{
	background:url("../images/sec01-bg03.jpg") no-repeat right;
}
#sec01 .sec1-4bg{
	background:url("../images/sec01-bg04.jpg") no-repeat left;
}

#sec01 .sec-dtl1,#sec01 .sec-dtl3{
	background: rgba(42,123,211,0.9);
	border-top-right-radius: 80px;
	-webkit-border-top-right-radius: 80px;
	-moz-border-radius-topright: 80px;
	width: 70%;
	margin-top: 30px;
	padding-top: 10px;
	color: #fff;
}

#sec01 .sec-dtl1::before,#sec01 .sec-dtl3::before{
	background: url("../images/sec01-1arrow.png") no-repeat left;
	background-size: 95%;
	position: absolute;
	right: -100px;
	font-size: 60px;
	padding: 50px 700px 50px 70px;
}

#sec01 .sec-dtl2,#sec01 .sec-dtl4{
	text-align: right;
	background: rgba(42,171,211,0.90);
	border-top-left-radius: 80px;
	-webkit-border-top-left-radius: 80px;
	-moz-border-radius-topleft: 80px;
	width: 70%;
	margin: 0 0 0 auto;
	margin-top: 30px;
	padding-top: 10px;
	color: #fff;
}
#sec01 .sec-dtl2::before,#sec01 .sec-dtl4::before{
	background: url("../images/sec01-2arrow.png") no-repeat left;
	background-size: 95%;
	position: absolute;
	left: -100px;
	font-size: 60px;
	padding: 53px 100px 53px 730px;
}

#sec01 .sec1-1::before{
	content:"01";
}
#sec01 .sec1-2::before{
	content:"02";
}
#sec01 .sec1-3::before{
	content:"03";
}
#sec01 .sec1-4::before{
	content:"04";
}



#sec01 h3{
	padding: 100px 0 30px 0;
	font-size: 38px;
	letter-spacing: 3px;
}
#sec01 h3::first-letter {
  font-size: 200%;
}
#sec01 .sectxt{
	padding: 0 60px 60px 60px;
	font-size: 24px;
	letter-spacing: 5px;
}


/* SEC02
------------------------------------------------------------*/

#sec02 .sec{
	width: 40%;
	display: inline-block;
	padding: 3% 4.5%;
	position: relative;
}
#sec02 h3{
	padding: 100px 0 30px 0;
	font-size: 38px;
	letter-spacing: 5px;
	color: #2a93d4;
}

#sec02 .sec .sectxt{
	background:rgba(0,0,0,0.20);
	width: 60%;
	font-size: 16px;
	z-index: 2;
	padding: 7%;
	letter-spacing: 3px;
	text-shadow:
		#fff 2px 0px 0px, #fff -2px 0px 0px,
    #fff 0px -2px 0px, #fff 0px 2px 0px,
    #fff 2px 2px 0px, #fff -2px 2px 0px,
    #fff 2px -2px 0px, #fff -2px -2px 0px,
    #fff 1px 2px 0px, #fff -1px 2px 0px,
    #fff 1px -2px 0px, #fff -1px -2px 0px,
    #fff 2px 1px 0px, #fff -2px 1px 0px,
    #fff 2px -1px 0px, #fff -2px -1px 0px,
    #fff 1px 1px 0px, #fff -1px 1px 0px,
    #fff 1px -1px 0px, #fff -1px -1px 0px;
}
#sec02 .sec img{
	position: absolute;
  bottom: -30px;
  right: 30px;
	z-index: -1;
}

/* SEC03 SERVICE MESSAGE STORY
------------------------------------------------------------*/
#sec03{
	padding-top: 100px;
	padding-bottom: 100px;
}

#sec03 .sec{
	width: 28%;
	display: inline-block;
	padding: 2%;
	position: relative;
}
#sec03 h3{
	padding: 10px 0;
	font-size: 28px;
	border-bottom:1px solid #ddd;
	letter-spacing: 5px;
	color: #2a93d4;
}

#sec03 .sec3-2{
	padding-top: 0px;
}
#sec03 .sec3-3{
	padding-top: 0px;
}


/* SEC04 STORY & SUCCESS
------------------------------------------------------------*/
#sec04{
	background: url("../images/sec04-bg.png") no-repeat top center;
	background-size: 140%;
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 3.5rem 0 0.5rem 0;
}

#sec04 h2 {
  font-size: 30px;
  font-size: 3rem;
  position: relative;
  text-align: center;
	color: #125488;
}

#sec04 h2 span {
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
}

#sec04 h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #3dd9d6;
}

#sec04 h3 {
  font-size: 20px;
  font-size: 2rem;
  position: relative;
  padding: 5rem 0 3rem 0;
  text-align: center;
	color: #2a93d4;	
}

#sec04 img{
	width: 30%;
	display: inline-block;
}

#sec04 .massage{
	width: 60%;
	display: inline-block;
	padding: 4%;
	padding-bottom: 5rem;
	font-size: 16px;
}
#sec04 h4 {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
	margin-bottom: 30px;
}


/* SEC05 PROFILE
------------------------------------------------------------*/
#sec05{
	margin-bottom: 12rem;
}

#sec05 table{
  width: 100%;
  border-collapse: collapse;
  font-size: 22px;
  font-size: 1.4rem;
	margin-top: 60px;
}

#sec05 table tr{
  border-bottom: solid 2px white;
}

#sec05 table tr:last-child{
  border-bottom: none;
}

#sec05 table th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #2a93d4;
  color: white;
  padding: 30px 0;
  padding-left:50px;
}

#sec05 table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #2a93d4;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

#sec05 table td{
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding-left:50px;
}

#sec05 h2 {
  font-size: 30px;
  font-size: 3rem;
  position: relative;
  text-align: center;
	color: #125488;
}

#sec05 h2 span {
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
}

#sec05 h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #3dd9d6;
}

/* SEC06 FORM
------------------------------------------------------------*/
#sec06{
	background: #add9d8;
	padding: 6rem 0;
}

#sec06 h2 {
  font-size: 30px;
  font-size: 3rem;
  position: relative;
  text-align: center;
	color: #125488;
}

#sec06 h2 span {
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
}

#sec06 h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #3dd9d6;
}


#sec06 .Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  #sec06 .Form {
    margin-top: 40px;
  }
}
#sec06 .Form-Item {
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 90%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  #sec06 .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
#sec06 .Form-Item:nth-child(5) {

}
#sec06 .Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  #sec06 .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
#sec06 .Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  #sec06 .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
#sec06 .Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: rgba(209,91,52,1.00);
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  #sec06 .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
#sec06 .Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
#sec06 .year {display: inline;}

@media screen and (max-width: 480px) {
  #sec06 .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
#sec06 .Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  #sec06 .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
#sec06 .Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #545454;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  #sec06 .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}


#map{
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}

#map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}

.col1 p{
	display: block;
}

.btn,
a.btn,
button.btn {
	width: 100%;
	text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 2rem 0rem;
	margin: 0 auto;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

.contact-btn,
a.contact-btn {
  color: #fff;
  background: rgba(35,65,170,0.70);
}
.contact-btn:hover,
a.contact-btn:hover {
  color: #ddd;
  background: rgba(35,65,170,0.50);
}

.fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 1rem;
}
.btn--radius,
a.btn--radius,
button.btn--radius
{
    border-radius: 100vh;
}

/* RESPONSIVE 設定
------------------------------------------------------------*/


/* main viewの調整
------------------------------------------------------------*/

@media screen and (min-width: 1600px) {
	#sec01 h3{
		padding: 100px 0 30px 0;
		font-size: 44px;
	}
	#sec01 h3{
		padding: 100px 0 30px 0;
		font-size: 44px;
	}
	#sec01 .sectxt{
		padding: 0 120px 60px 120px;
		font-size: 26px;
	}
}

@media only screen and (min-width: 800px){
	#header .logo{
		width: 32%;
		display: inline-block;
		vertical-align: middle;
		margin-top: 2vh;
	}
	#header .main .main-sec{
		top: 30vh;
	}
}

/* section01の調整
------------------------------------------------------------*/

@media screen and (max-width: 799px) {
	.logo{
		display:inherit;
	}
}

@media screen and (max-width: 1280px) {
	#header h1{
	}
	#header h1 p{
		font-size: 20px;
		letter-spacing: 1px;
		padding-left: 18px;
		padding-bottom: 5px;
	}
	
	#sec01 .sec1-1bg .sec1-1::before,#sec01 .sec1-3bg .sec1-3::before{
		right: -300px;
	}
	#sec01 .sec1-2bg .sec1-2::before,#sec01 .sec1-4bg .sec1-4::before{
		left: -300px;
	}
}



/* レスポンシブの調整
------------------------------------------------------------*/

@media only screen and (max-width: 490px) {
	body{
		width: 490px;
	}
	.wrap1,.wrap2,.wrap3{
		width: 100%;
	}
	#header{
		min-height: 100vh; /* 全画面表示 */
	}
	
	#header{
		background-image:url("../images/mainsp_bg.png");
	}
	#header h1{
		background-color: rgba(255,255,255,0.70);
	}


	#header .logo{
		padding-top: 4vh;
	}

	h2 img{
		width: 80%;
		text-align: center;
	}

	#header .main-ttl{
		display: none;
	}
	#header .mainsp-ttl{
		display:inherit;
		width: 100%;
	}
	#header .main .main-sec{
		top: 18vh;
		width: 80%;
		margin: 0 auto;
	}

	
	
	#sec01 h3{
		padding: 170px 0 30px 0;
		font-size: 32px;
		letter-spacing: 3px;
	}
	#sec01 .sectxt{
		padding: 0 20px 70px 20px;
		font-size: 18px;
		letter-spacing: 5px;
	}


	#sec01 .sec1-1bg .sec1-1{
		background: rgba(42,123,211,0.70);
		border-top-right-radius: 80px;
		-webkit-border-top-right-radius: 80px;
		-moz-border-radius-topright: 80px;
		width: 85%;
		margin-top: 30px;
		padding-top: 30px;
		color: #fff;
	}

	#sec01 .sec1-1bg .sec1-1::before{
		background: url("../images/sec01-1arrow.png") no-repeat left;
		background-size: 220%;
		position: absolute;
		content:"01";
		right: -115px;
		font-size: 50px;
		padding: 40px 180px 40px 70px;
	}

	#sec01 .sec1-2bg .sec1-2{
		text-align: left;
		background: rgba(42,171,211,0.70);
		border-top-left-radius: 80px;
		-webkit-border-top-left-radius: 80px;
		-moz-border-radius-topleft: 80px;
		width: 85%;
		margin: 0 0 0 auto;
		margin-top: 30px;
		padding-top: 10px;
		color: #fff;
	}
	#sec01 .sec1-2bg .sec1-2::before{
		background: url("../images/sec01-2arrow.png") no-repeat right;
		background-size: 220%;
		position: absolute;
		content:"02";
		left: 0;
		font-size: 50px;
		padding: 40px 70px 40px 180px;
	}
	
	#sec01 .sec1-3bg .sec1-3{
		background: rgba(42,123,211,0.70);
		border-top-right-radius: 80px;
		-webkit-border-top-right-radius: 80px;
		-moz-border-radius-topright: 80px;
		width: 85%;
		margin-top: 30px;
		padding-top: 30px;
		color: #fff;
	}

	#sec01 .sec1-3bg .sec1-3::before{
		background: url("../images/sec01-1arrow.png") no-repeat left;
		background-size: 220%;
		position: absolute;
		content:"03";
		right: -115px;
		font-size: 50px;
		padding: 40px 180px 40px 70px;
	}

	#sec01 .sec1-4bg .sec1-4{
		text-align: left;
		background: rgba(42,171,211,0.70);
		border-top-left-radius: 80px;
		-webkit-border-top-left-radius: 80px;
		-moz-border-radius-topleft: 80px;
		width: 85%;
		margin: 0 0 0 auto;
		margin-top: 30px;
		padding-top: 10px;
		color: #fff;
	}
	#sec01 .sec1-4bg .sec1-4::before{
		background: url("../images/sec01-2arrow.png") no-repeat right;
		background-size: 220%;
		position: absolute;
		content:"04";
		left: 0;
		font-size: 50px;
		padding: 40px 70px 40px 180px;
	}

	.wrap2{
		background: none;
	}
	#sec02 h3{
		font-size: 32px;
		letter-spacing: 3px;
	}
	#sec02 .sec{
		width: 90%;
		margin-bottom: 70px;
	}
	#sec02 .sec .sectxt{
		width: 70%;
		font-size: 18px;
		margin: 0 0 0 auto;
	}
	#sec02 .sec img {
    bottom: -110px;
		left: 20px;
	}
	
	#sec03 .sec {
    width: 90%;
    display:inherit;
		margin: 50px auto;
    position: relative;
	}

	#sec04 .wrap3{
		display: block;
	}
	#sec04 img {
    width: 80%;
    display: block;
		margin: 0 auto;
	}
	#sec04 .massage {
		width: 90%;
		display: block;
		margin: 40px auto;
		padding: 0;
		padding-bottom: 5rem;
		font-size: 16px;
	}	
	
	#sec05 table {
    width: 90%;
		margin: 60px auto;
	}
	#sec05 table th {
    width: 30%;
    background-color: #2a93d4;
    color: white;
    padding: 30px 0;
    padding-left: 15px;
	}
	#sec05 table td {
    padding-left: 20px;
	}
}


/*フォームの追加項目*/
.hidden_box {
    margin: 2em 20px;/*前後の余白*/
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
    padding: 7px 12px;
    border: solid 2px #DE5E60;
	font-size: 80%;
	color:  #DE5E60;
    cursor :pointer;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    background: #efefef;
}

/*チェックは見えなくする*/
.hidden_box input.details {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}


/* contact
------------------------------------------------------------*/



