@charset "utf-8";
/*-------------------------------------*/
/*	トップページ	*/
/*-------------------------------------*/
/*初期アニメーション*/
#opening {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
 background-color:#FFFFFF;
  z-index:1000;
	overflow: hidden;
  animation: fadeOut 0.4s forwards; /*フェードアウト*/
  animation-delay: 2s; 
}
 /*フェードアウトアニメーション*/
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
 /*フェードインアニメーション*/
@keyframes fadeIn {
  0% {
    opacity: 0;
	visibility: hidden;
  }
  100% {
    opacity: 1;
  }
}
#opening .op_img{
  position: absolute;
top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 1100;
	width: 100%;
	max-width: 400px;
}
#opening .op_img img{
	width: 100%;

}
#opening .item {
  position: absolute; /*固定表示*/
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; /*中央配置*/
  width: 0;
  height: 0;
  background: #F5F3F2;
  animation: circle-open 2s linear forwards;
  animation-delay: 0.2s; /*任意の遅延時間*/
	
}
/*円が拡大するアニメーション*/
@keyframes circle-open {
  0% {
    width: 0;
    height: 0;
    border-radius: 50%;
  }
  99% {
    /*ぎりぎりまで正円*/
    width: 99vw;
    height: 99vw;
    border-radius: 50%;
  }
  100% {
    /*全画面*/
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
#opening .op_img{
	width: 50%;
  max-width: 400px;
}
}

/*メインビジュアル*/
.mv{
	width: 100%;
	height: 100vh;
	background: #000;
	position: fixed;
	z-index: -1;
}
.mv video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	z-index: 1;
}
#main_wrap{
  position: relative;
    width: 100%;
    height: 100dvh;
}
#main_wrap .main_sld{
  overflow: hidden;
  border-radius: 100px 0 0 100px;
  width: 50%;
  position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#main_wrap .slick-slide{

}
#main_wrap .main_img{
  width: 100%;
  height: 100dvh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main_img.img01{background-image: url(../images/index/main_img01.jpg);}
.main_img.img02{background-image: url(../images/index/main_img02.jpg);}
.main_img.img03{background-image: url(../images/index/main_img03.jpg);}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 5s linear 0s normal both;
}

#main_wrap .main_ttl{
    max-width: 1100px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#main_wrap .main_ttl h2{
font-family: "Encode Sans", sans-serif;
font-size: 8.0rem;
margin-bottom: 20px;
}
#main_wrap .main_ttl h2 span{
  font-weight: 700;
  text-transform: uppercase;
}
#main_wrap .main_ttl h2 span.gold{
  color: #D1AF76;
}
#main_wrap .main_ttl h2 span.blue02{
  color: #0076C1;
}
#main_wrap .main_ttl h3{
font-size: 3.2rem;
}

/*テキストアニメーション*/
.mv_copy {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin: 0;
  line-height: 0.95;
}

.mv_copy__line {
  display: block;
  overflow: hidden;
  
}

.mv_copy__text {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  font-weight: 700;
}

/* アニメーション開始後 */
.mv_copy.is-animated .mv_copy__text {
  animation: copyRise 0.9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.mv_copy.is-animated .mv_copy__line:nth-child(1) .mv_copy__text {
  animation-delay: 2.5s;
}

.mv_copy.is-animated .mv_copy__line:nth-child(2) .mv_copy__text {
  animation-delay: 2.62s;
}

.mv_copy.is-animated .mv_copy__line:nth-child(3) .mv_copy__text {
  animation-delay: 2.74s;
}

@keyframes copyRise {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.mv_caption {
  margin: 20px 0 0;
  opacity: 0;
  transform: translateY(16px);
}

.mv_caption.is-animated {
  animation: captionFadeUp 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: 3.24s;
}

@keyframes captionFadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



@media screen and (max-width: 1400px){
#main_wrap .main_ttl{
  padding-left: 20px;
    max-width: 1100px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#main_wrap .main_ttl h2{
font-family: "Encode Sans", sans-serif;
font-size: 8.0rem;
margin-bottom: 20px;
}
#main_wrap .main_ttl h3{
font-size: 3.2rem;
}
}
@media screen and (max-width: 1000px){
#main_wrap{
  position: relative;
    width: 100%;
    height: calc( 100dvh - 80px );
}
#main_wrap .main_sld{
  overflow: hidden;
  border-radius: 70px 0 0 70px;
  width: 50%;
}
}
@media screen and (max-width: 768px){
#main_wrap .main_ttl{
  padding: 0 20px;
    max-width: 1100px;
    width: 100%;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
}
#main_wrap .main_ttl h2{
font-family: "Encode Sans", sans-serif;
font-size: 6.0rem;
margin-bottom: 20px;
}
#main_wrap .main_ttl h3{
font-size: 2rem;
}
#main_wrap .main_sld{
  overflow: hidden;
  border-radius: 50px 50px 0 0;
  width: 100%;
    position: absolute;
    bottom: 0;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
#main_wrap .main_img{
  width: 100%;
  height: 50vh;
}
}
@media screen and (max-width: 550px){
#main_wrap .main_ttl h2{
font-family: "Encode Sans", sans-serif;
font-size: 4.0rem;
margin-bottom: 20px;
}
}
/* トップ　スライド02 */
.slick-slider div { transition: none; }
.sld_wrap{
  overflow: hidden;
}
.slid_wrap .slick-slide {
    margin: 20px;
}
/* トップ　会社案内 */
#about .inner{
  background-color: #FFFFFF;
  max-width: 1500px;
  width: 100%;
  border-radius: 50px;
  margin: 0 auto;
  padding:60px 0;
}
#about dl{
  display: flex;
  flex-direction: row-reverse;
}
#about dl dt{
  max-width: 500px;
  width: 100%;
}
#about dl dt img{
  border-radius: 50px;
  overflow: hidden;
}
#about dl dd{
  width: 100%;
  padding-right: 50px;
}
@media screen and (max-width: 1200px) {
#about dl dt{
  max-width: 300px;
  width: 100%;
}
}
@media screen and (max-width: 991px) {
  #about dl{
  flex-direction: column-reverse;
}
#about dl dt{
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
#about dl dd{
  width: 100%;
  padding-right: 0;
  margin-bottom: 40px;
}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 550px) {
  #about dl dt img{
  border-radius: 20px;
}
.slid_wrap .slick-slide {
    margin: 10px;
}
}
/* トップ　事業案内 */
#top #service .service_list a{
display: block;
position: relative;
overflow: hidden;
}
#top #service .service_list a .img{
    width: 100%;
  height: 730px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: transform .6s ease;
}
#top #service .service_list a:hover .img{
  transform: scale(1.1);
}
#top #service .service_list a::before {
  background: rgba(0, 0, 0, .5); /* マスクの色(黒の50%) */
  bottom: 0;
  content: '';
  height: auto;
  left: 0;
  opacity: 0.8; /* 最初は透明（非表示） */
  position: absolute;
  right: 0;
  top: 0;
  transition:  opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
  width: 100%;
  z-index: 1;
}
#top #service .service_list a:hover::before {
  opacity: 0.3;
}
#top #service .service_list a:first-of-type .img{
  background-image: url("../images/index/service_img01.jpg");
}
#top #service .service_list a:nth-of-type(2) .img{
  background-image: url("../images/index/service_img02.jpg");
}
#top #service .service_list a:last-of-type .img{
  background-image: url("../images/index/service_img03.jpg");
}
#top #service .service_list a .inner{
  max-width: 450px;
  width: 100%;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 1;
    text-align: center;
}
#top #service .service_list a .inner h3{
  color: #FFFFFF;
  font-weight: 700;
  font-size: 4.2rem;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#top #service .service_list a .inner p{
  color: #FFFFFF;
  font-size: 1.8rem;
}
@media screen and (max-width: 991px) {
  #top #service .service_list a .img{
    width: 100%;
  height: 500px;
}
#top #service .service_list a .inner{
  max-width: 450px;
  width: 80%;
      position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
}
@media screen and (max-width: 768px) {
  #top #service .service_list a .inner h3{
  font-size: 3.2rem;
}
#top #service .service_list a .inner p{
  font-size: 1.6rem;
}
}
@media screen and (max-width: 550px) {
  #top #service .service_list a .inner h3{
  font-size: 2.8rem;
}
#top #service .service_list a .img{
    width: 100%;
  height: 300px;
}
}

.service_sld_wrap {
  overflow: hidden;
}
.service_sld {
  width: 100%;
}

.service_sld .slick-list {
  overflow: hidden;
}
.service_sld_wrap .slick-dotted.slick-slider {
    margin-bottom: 50px;
}
.service_sld .slick-track {
  display: flex;
  align-items: center;
}

.service_sld .slick-slide,.service_sld02 .slick-slide {
  padding: 0 15px;
  box-sizing: border-box;
}

.service_sld .slick-slide > div {
  height: 100%;
}

.service_sld a {
  display: block;
  overflow: hidden;
}
.service_sld a h3{
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1em 0.5em ;
}
.service_sld img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

/* ドット */
.service_sld .slick-dots {
  bottom: -35px;
}

.service_sld .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 6px;
}

.service_sld .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.service_sld .slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.service_sld .slick-dots li.slick-active button:before {
  background: #009844;
  opacity: 1;
}

/* SP時：中央だけ少し大きく */
@media screen and (max-width: 768px) {
  .service_sld .slick-list {
    overflow: visible;
  }

  .service_sld .slick-slide {
    padding: 0 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }

  .service_sld .slick-center {
    transform: scale(1);
  }
}

/* トップ　works*/
#top #works{
  background-color: #FFFFFF;
}
/* トップ　Journal */
#top #journal{
  background-color: #F5F3F2;
}
/* トップ　お知らせ */
#top #news{
    background-color: #0076C1;
}
#top #news .ttl{
  color: #FFFFFF;
}
#top #news .news_list li{
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border: none;
  border-radius: 100px;
  padding: 0 1em;
}
#top #news .news_list li:last-child{
  margin-bottom: 0;
}
#top #news .news_list li .title a{ 
padding: 20px 0;
line-height: 1.4;
}
@media screen and (max-width: 991px) {
  #top #news .news_list li{
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border: none;
  border-radius: 100px;
  padding: 0.5em 2em;
}
#top #news .news_list li .title a{ 
padding: 0px 0 10px 0;
}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 550px) {

}
/*-------------------------------------*/
/*	ページ共通	*/
/*-------------------------------------*/
.ttl{
  margin-bottom: 60px;
  position: relative;
  line-height: 1;
  font-size: 2.0rem;
  color: #00213B;
  padding-left: 70px;
}
.ttl::before{
  content: "";
  width: 60px;
  height: 5px;
  background-color: #D1AF76;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 2em;
  transform: rotate(-45deg);
}
.ttl span{
  font-family: "Encode Sans", sans-serif;
  font-size: 7.6rem;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.ttl02{
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #00213B;
}
#sub_ttl{
padding-top: 200px;
}

.caption p{
  font-size: 2.0rem;
  font-weight: 600;
  color: #13285F;
  text-align: center;
}
.page_ttl{
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 20px;
  color: #13285F;
}
.page_ttl span{
  color: #00599F;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.0rem;
  text-transform: uppercase;
  font-size: 1.8rem;
  display: block;
  line-height: 1;
  font-weight: 600;
}
#single hr {
    margin-top: 40px;
    margin-bottom: 40px;
    border: 0;
    border-top: 1px solid #000000;
}
.base_list li {
  margin-bottom: 30px;
}
.base_list li:last-child {
  margin-bottom: 0;
}
a .img_wrap {
  overflow: hidden;
  width: 100%;
}
a:hover .img_wrap img {
  transform: scale(1.1);
  transition-duration: 0.5s;
  opacity: 1;
}
.img_radius25 {
  border-radius: 25px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
#sub_ttl{
padding-top: 60px;
}
}
@media screen and (max-width: 768px) {
.ttl{
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #00213B;
  padding-left: 50px;
}
.ttl::before{
  content: "";
  width:40px;
  height: 3px;
  top: 1em;
}
.ttl span{
  font-family: "Encode Sans", sans-serif;
  font-size: 4rem;
  font-weight: 400;
}
.ttl02{
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
  .page_ttl{
    font-size: 2.2rem;
  }
  .page_ttl span{
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	会社概要	*/
/*-------------------------------------*/
#company .concept{
  text-align: center;
  font-family: 'Shippori Mincho', serif;
}
#company .concept h2{
  font-size: 4.2rem;
  font-weight: 600;
  margin-bottom: 40px; 
}
#company .concept p{
  line-height: 2;
  margin-bottom: 1em;
}
#company .concept p span{
  font-size: 1.2rem;
  margin-right: 10px;
}
#company .concept p img{
  max-width: 150px;
}
.rinen span{
  font-size: 4.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.rinen span:first-of-type,.rinen span:last-of-type{
color: #D1AF76;
}
.rinen span:nth-of-type(2){
color: #0076C1;
}
.koudou{

}
.koudou {
  margin-bottom: 20px;
  counter-reset: number; /*数字をリセット*/
  list-style-type: none; /*数字を一旦消す*/
  padding: 0;
}
.koudou {
  counter-reset: item;
	padding: 0 ;
}
.koudou li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 1.5;
  font-weight: 600;
}
.koudou li:before {
  counter-increment: item;
  content: counter(item)".";
  position: absolute;
  top: 0;
  left: 0;
  color: #D1AF76;
font-family: "Encode Sans", sans-serif;
  font-weight: 600;
  text-align: right;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  #company .concept h2{
  font-size: 2.8rem;
}
#company .concept p{
  font-size: 1.4rem;
}
.rinen span{
  font-size: 3.2rem;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	事業内容	*/
/*-------------------------------------*/
#service01 h2,#service02 h2,#service03 h2{
  padding-left: 20px;
  margin-bottom: 40px;
  border-left: 4px solid #D1AF76;
  font-size: 4.2rem;
  font-weight: 600;
  color: #00213B;
}
#service01 h2 span,#service02 h2 span,#service03 h2 span{
font-family: "Encode Sans", sans-serif;
text-transform: uppercase;
display: block;
margin-bottom: 10px;
font-size: 2.4rem;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  #service01 h2,#service02 h2,#service03 h2{
  font-size: 2.8rem;
}
#service01 h2 span,#service02 h2 span,#service03 h2 span{
font-size: 1.8rem;
}
}
@media screen and (max-width: 550px) {
}









.item_box h3{
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1em 0.5em ;
}


/*-------------------------------------*/
/*	お知らせ一覧	*/
/*-------------------------------------*/

/* カテゴリーラベル */
.cat,a.cat {
  letter-spacing: 0.05em;
  color: #00599F;
  text-align: center;
  display: inline-block;
  padding: 0.7em 1em;
  font-size: 1.2rem;
  line-height: 1;
  background: #FFFFFF;
  border: 1px solid #00599F;
	border-radius: 50px;
}
a.cat:hover {
  background-color: #00599F;
  color: #FFFFFF;
}

.news_list {
  padding: 0;
	border-top: 1px dotted #707070;
}
.news_list li{
	padding-top: 20px;
	border-bottom: 1px dotted #707070;
}
.news_list .item {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  align-items: baseline;
}
.news_list .item .date {
  margin: 0;
  min-width: 100px;
  color: #666;
  padding: 0 15px 0 0;
	line-height: 2;
	font-size: 1.4rem
}
.news_list .item .category {
  margin: 0;
  min-width: 120px;
  padding: 0 15px 0 0;
}
.news_list .item .category a.cat{
  width: 100%;
}
.news_list .item .title {
  margin: 0;
  width: 100%;
	line-height: 2;
}
.news_list .item .title a{
   display: block;
	  padding: 0 0.5em 20px 0.5em;
	color: #000000;
}
.news_list .item .title a:hover {
  opacity: 0.7;
	color: #000;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  .news_list .item {
    flex-wrap: wrap;
  }
  .news_list .item .date {
    min-width: 100px;
  }
.news_list .item .title a{
   display: block;
	  padding: 15px 0;
  }
}
@media screen and (max-width: 550px) {}



/*-------------------------------------*/
/*	投稿　共通	*/
/*-------------------------------------*/
.thm{
  text-align: center;
  margin-bottom: 40px;
}

/*ページャー*/
#pager {
  margin: 40px 0;
  border-bottom: 1px solid #AAAAAA;
  border-top: 1px solid #AAAAAA;
}
#pager li.prev {
  width: 50%;
  float: left;
}
#pager li.next {
  width: 50%;
  float: right;
  text-align: right;
}
#pager li a {
  display: block;
  padding: 1em 0;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
#pager li a:hover {
  color: #0290D4;
}
#pager li.prev a::before {
  content: "\f104";
  font-family: FontAwesome;
  margin-right: 10px;
  color: #000;
}
#pager li.next a::after {
  content: "\f105";
  font-family: FontAwesome;
  margin-left: 10px;
  color: #000;
}
/*ページネーション*/
.wp-pagenavi {
  clear: both;
  margin: 40px auto auto;
  text-align: center;
  font-size: 100%;
}
.wp-pagenavi a {
  text-decoration: none !important;
  padding: 1em 1.2em !important;
  margin: 3px;
  display: inline-block;
  color: #666 !important;
  background: #FFFFFF;
  border: 1px solid #666;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 1.6rem;
  font-weight: 600;
}
.wp-pagenavi span {
  color: #666;
}
.wp-pagenavi span.current {
  text-decoration: none !important;
  padding: 1em 1.2em !important;
  margin: 3px;
  display: inline-block;
  border: 1px solid #666;
  color: #FFFFFF;
  background: #666;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #313131 !important;
}
.wp-pagenavi a:hover {
  border: 1px solid #666;
  color: #FFFFFF !important;
  text-decoration: none !important;
  background: #666;
  padding: 1em 1.2em !important;
}
.wp-pagenavi a:hover span {
  color: #FFFFFF;
}
.wp-pagenavi span {
  border: none !important;
}
.extend {
  padding: 0 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .previouspostslink, .nextpostslink {
    font-size: 1.4rem;
  }
}
/*-------------------------------------*/
/*	フォーム	*/
/*-------------------------------------*/
.form_area{

}
.form_area h4 {
  margin-top: 40px !important;
  position: relative;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}
.submit_btn_wrap {
  position: relative;
  width: 220px;
  margin: 0 auto;
}
ul.submit2_btn_wrap {
  position: relative;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
ul.submit2_btn_wrap li {
  display: inline-block;
  width: 200px;
  margin-left: 5px;
}
.submit_btn {
  width: 100%;
  padding: 1em 1.5em;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  border: none;
  background: #00599F;
  border-radius: 10px;
  color: #FFFFFF;
}
.submit_btn:hover {
  background: #13285F;
  text-decoration: none;
  color: #FFFFFF;
}
.back_btn {
  width: 100%;
  padding: 1em 1.5em;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  border: none;
  background: #AAAAAA;
  border-radius: 10px;
  color: #FFFFFF;
}
.back_btn:hover {
  color: #FFFFFF;
  background: #707070;
  text-decoration: none;
}
/*-------------------------------------*/
/*	フォーム関連	*/
input::-webkit-input-placeholder {
  color: #989898;
}
input:-ms-input-placeholder {
  color: #989898;
}
input::-ms-input-placeholder {
  color: #989898;
}
input::placeholder {
  color: #989898;
}
.must {
  padding: 0.2em 1em;
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 3px;
  background: #E5006A;
  margin-right: 10px;
  vertical-align: middle;
}
.nini {
  padding: 0.2em 1em;
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 3px;
  background: #00599F;
  margin-right: 10px;
  vertical-align: middle;
}
.privacy_box {
  background-color: #fafafa;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 1.4rem;
  border: 1px solid #707070;
}
.privacy_inner {
  width: auto;
  height: 200px;
  overflow-y: scroll;
  padding: 22px;
  font-size: 100%;
}
.consent_check_wrap {
  padding: 20px;
	margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  background: #FFFFFF;
  border: 2px solid #144DA0;
  border-radius: 10px;
}
.consent_check_wrap p a {
  text-decoration: underline;
	color:  #0071bc;
}
.form_area :focus {
  outline: solid 2px #3e4f69;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  border: 1px solid #707070;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 0.7em;
  margin: 0;
  background-color: #FFF;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  margin-bottom: 0;
}
.form_area input[type="text"].text_fomr_01, .form_area input[type="email"].text_fomr_01, .form_area input[type="tel"].text_fomr_01 {
  width: 70%;
}
.form_area input[type="text"].text_fomr_02, .form_area input[type="email"].text_fomr_02, .form_area input[type="tel"].text_fomr_02 {
  width: 50%;
}
.form_area input[type="text"].text_fomr_03, .form_area input[type="email"].text_fomr_03, .form_area input[type="tel"].text_fomr_03 {
  width: 40%;
  margin: 0
}
.form_area input[type="text"].text_fomr_04, .form_area input[type="email"].text_fomr_04, .form_area input[type="tel"].text_fomr_04 {
  width: 100%;
}
.form_area textarea.form_txtarea_01 {
  width: 100%;
}
.form_area input[type="checkbox"] {
  height: 15px;
  width: 15px;
  margin: 5px;
  vertical-align: middle;
}
.form_area input[type="radio"] {
  vertical-align: middle;
  margin: 0 3px 0 0;
}
.form_area label {
  margin-right: 20px;
	margin-bottom: 10px;
  font-weight: normal !important;
  font-size: 100%;
  font-weight: 500;
  padding: 5px;
	display:inline-block;
}
span.wpcf7-list-item {
  display: block;
  margin: 0 0 0 0.5em !important;
}
@media screen and (max-width: 768px) {
	.form_area{
	padding: 20px;
}
  .tel_list {
    display: block;
  }
  .tel_list div {
    margin-right: 0;
  }
  .privacy_inner {
    padding: 10px;
  }
  .privacy_inner p {
    font-size: 75% !important;
  }
  .submit_btn_wrap {
    width: 80%;
    margin: 0 auto;
  }
  .submit_btn {
    width: 100%;
  }
  ul.submit2_btn_wrap li {
    margin-bottom: 20px;
  }
  input[type="text"].text_fomr_01, input[type="email"].text_fomr_01, input[type="tel"].text_fomr_01 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_02, input[type="email"].text_fomr_02, input[type="tel"].text_fomr_02 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_03, input[type="email"].text_fomr_03, input[type="tel"].text_fomr_03 {
    width: 100% !important;
  }
  ul.input_list li {
    margin-bottom: 20px;
  }
  ul.input_list li:last-child {
    margin-bottom: 0;
  }
  label {
    font-size: 1.6rem;
  }
}