@charset "utf-8";

.clearfix::after {
  content: "";
  clear: both;
  display: block;}

body {
  font-size: 62.5%;
}

img {
  height: auto;
  margin: auto;
  vertical-align: text-bottom;}

.pc {
  display: block;}

.sp {
  display: none;}

.sp_979 {
  display: none;}

.tablet_scroll {
  display: none;
}

.bfont {
  font-weight: bold;
  text-decoration: underline;
}

a {
  display: block;
}

a:hover {
}




/* -------------------------------- 

contents

-------------------------------- */



.pc {
  display: block;}

.sp {
  display: none;}

.tablet_scroll {
  display: none;
}

.nav-botm {
  padding-bottom: 1%;
}

.contents {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  height: auto;
}

.contents2 {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  height: auto;
  /* background: #fff; */
}

.contents3 {
  width: 100%;
  max-width: 1000px;
  margin:  auto;
  height: auto;
}

.contents3_2 {
  width: 100%;
  max-width: 1100px;
  margin:  auto;
  height: auto;
}

.contents4 {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: auto;
  padding: 1.5% 0;
  background: #fff;
}

.content1246 {
  width: 100%;
  max-width: 1246px;
  height: auto;
  margin: auto;
}

.content1440 {
  width: 100%;
  max-width: 1440px;
  height: auto;
  margin: auto;
}

.min_cont {
  max-width: 960px;
  margin: auto;
  height: auto;
}

.gara {
  font-family: "Garamond";
}

.mincho {
  font-family: "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" ,"游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , serif !important;
  font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif !important;
}

.eimoji {
  font-family: 'Old Standard TT', serif;
}

.eimoji2 {
    font-family: 'Quicksand', sans-serif;
}

.eimoji001 {
  font-family: gill-sans-nova, sans-serif;
}

.eimoji002 {
  font-family: gill-sans-nova-condensed, sans-serif;
}

.eimoji003 {
  font-family: linotype-didot, serif;
}

.eimoji004 {
  font-family: linotype-didot-headline, serif;
}

.eimoji005 {
  font-family: montserrat,sans-serif;
}

.eimoji006 {
  font-family: inglesa-caps-variable, sans-serif;
}

.new_goth {
  font-family: 'Noto Sans JP', sans-serif;
}

.new_goth2 {
  font-family:'メイリオ', 'Meiryo','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

.new_min {
  font-family: a-otf-ryumin-pr6n, serif;
}

.new_min2 {
  font-family: 'Noto Serif JP', serif;
}

.pink {
  color: #EB8397;
}

.orange {
  color: #DF971F;
}


.wr01 {
  /* background: #e2e2e2; */
}


.fadein {
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 500ms;
}

.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}



main {}


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}


/*==================================================
シャッ（背景色が伸びて出現）
===================================*/

/*背景色が伸びて出現（共通）*/
.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*左から*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1.3s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 83%;
    height: 100%;
    background-color: #13243C;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger{
    opacity: 0;
}

.titarea {
  padding: 9em 4em ;
  position: relative;
}

/* .titarea::before {
  content: "";
  position: absolute;
  top: 8vh;
  right: 0;
  z-index: -1;
  width: 60vw;
  padding-top: 47vh;
  background: linear-gradient(45deg, rgba(76, 102, 137, 0.60), rgba(125, 163, 201, 0.60));
} */

.titarea::after {
  content: "";
  position: absolute;
  bottom: 10vh;
  left: 0;
  /* left: 0; */
  z-index: -1;
  width: 8vw;
  padding-top: 352px;
  background: linear-gradient(45deg, rgba(76, 102, 137, 1), rgba(125, 163, 201, 0.60));
}

.titarea .main_co01 {
  background: #EFEFEF;
  padding: 2.5em 3em;
}

.titarea .main_co01 .co01_top {
  border-bottom: solid thin #C9CACA;
  padding: 0.5% 0 1%;
}

.titarea .main_co01 .co01_top h2 {
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  padding-bottom: 0.3%;
}

.titarea .main_co01 .co01_top p {
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.7em;
  letter-spacing: 0.1em;
}

.titarea .main_co01 .txt_anchor {
  padding: 1% 0 1%;
}

.titarea .main_co01 .txt_anchor h3 {
  color: #4C6689;
  font-size: 0.85rem;
  line-height: 1.7em;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.titarea .main_co01 .txt_anchor ul {
  display: flex;
  flex-flow: row wrap;
}

.titarea .main_co01 .txt_anchor ul li {
  font-size: 0.85rem;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  padding: 0.5% 0.5%;
  width: 30%;
  margin: auto 1%;
  text-align: left;
}

.titarea .main_co01 .txt_anchor ul li:nth-child(1) {
  width: 36%;
}

.titarea .main_co01 .txt_anchor ul li:nth-child(3) {
  width: 24%;
}

.titarea .main_co01 .txt_anchor ul li a {
  color: #4C6689;
  font-weight: 600;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.titarea .main_co01 .txt_anchor ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 9px;
  left: -11px;
  margin: auto;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-left: 8px solid #4C6689;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.titarea .main_co01 .txt_anchor ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #4C6689;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.titarea .main_co01 .txt_anchor ul li a:hover::after {
  transform: scale(1, 1);
}

.conts {
  padding: 5% 0.5% 5%;
  border-bottom: solid thin #C9CACA;
  position: relative;
}

.conts picture {
  display: inline-block;
  padding: 6em 8em;
}

.conts picture img {
  width: 100%;
  transition: .3s ease-in-out;
}

.conts picture:hover img {
  filter: grayscale(100%);
}

.Text-Span::after {
  content: '';
  position: absolute;
  left: 0;
  top: -14px;
  width: 0%;
  height: 4px;
  background: #5bc8ac;
  z-index: -1;
  transition: all 0.8s;
}
.Text-Span.isActive::after {
  width: 100%;
}

/* ===================================

新規メイン_20220512

=================================== */

header {
  padding-top: 5em;
/*   text-align: center; */
  position: relative;
}

header .logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 1.3em 2.7em;
  background: -moz-linear-gradient(30deg, rgba(6,23,47,1) 0%, rgba(13,45,81,1) 32%, rgba(5,22,46,1) 62%, rgba(16,52,95,1) 100%);
  background: -webkit-linear-gradient(30deg, rgba(6,23,47,1) 0%, rgba(13,45,81,1) 32%, rgba(5,22,46,1) 62%, rgba(16,52,95,1) 100%);
  background: linear-gradient(30deg, rgba(6,23,47,1) 0%, rgba(13,45,81,1) 32%, rgba(5,22,46,1) 62%, rgba(16,52,95,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#06172f",endColorstr="#05162e",GradientType=1);
  max-width: 20vw;
  text-align: center;
  /* margin: auto;
  margin-left: 0; */
}

header .logo img {
  width: 100%;
  /* max-width: 300px;
  margin: auto; */
}

header .logo h1 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 200;
}


/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  top: 0;
  width:100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg{
  position: fixed;
  z-index:3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000;
  /*丸のスタート位置と形状*/
  transform: scale(0);/*scaleをはじめは0に*/
  top:-50px;
  left:calc(50% - 50px);/*50%から円の半径を引いた値*/
  transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
  transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;/*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  /* position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%); */
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
  animation-name:gnaviAnime;
  animation-duration:1s;
  animation-delay:.2s;/*0.2 秒遅らせて出現*/
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
  text-align: center; 
  list-style: none;
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.navin {
  display: flex;
  flex-flow: row wrap;
}

.navin .navin_left {
  width: 28vw;
}

.navin .navin_left .navin_l_f {
/*   max-width: 90%; */
width: 100%;
  height: 74%;
  top: 2em;
  left: 2em;
  position: sticky;
  background: #fff;
}

.navin .navin_right {
  width: 60%;
  padding: 5vw;
}

.navin .navin_right h2,
.navin .navin_right .nav_dis,
.navin .navin_right .nav_other li {
  border-bottom: solid thin #575757;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}

.navin .navin_right h2 a {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  color: #fff;
  font-weight: 600;
}


.navin .navin_right .nav_dis {}

.navin .navin_right .nav_dis p {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  color: #fff;
  font-weight: 600;
}

.navin .navin_right .nav_dis .nav_disin {
  display: flex;
  flex-flow: row wrap;
}

.navin .navin_right .nav_dis .nav_disin li {
  width: 45%;
  margin: 1em auto auto 0;
}

.navin .navin_right .nav_dis .nav_disin li a {}

.navin .navin_right .nav_dis .nav_disin li a picture {
  display: inline-block;
  margin-bottom: 1em;
}

.navin .navin_right .nav_dis .nav_disin li a picture img {
  max-width: 100%;
}

.navin .navin_right .nav_dis .nav_disin li a p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  color: #fff;
  font-weight: 600;
  text-align: left;
}

.navin .navin_right .nav_dis .nav_disin li a p span {
  font-size: 2rem;
  letter-spacing: 0.3em;
  line-height: 1em;
  color: #fff;
  font-weight: 600;
}


.navin .navin_right .nav_other {}

.navin .navin_right .nav_other li {}

.navin .navin_right .nav_other li a {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  color: #fff;
  font-weight: 600;
  text-align: left;
}





/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 20px;
  cursor: pointer;
  width: 50px;
  height:50px;
  background: #fff;
  border: solid thin #000;
  border-radius: 50%;
}
  
/*×に変化*/  
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11px;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  width: 55%;
}

.openbtn span:nth-of-type(1) {
  top:15px; 
}

.openbtn span:nth-of-type(2) {
  top:23px;
}

.openbtn span:nth-of-type(3) {
  top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}






/* ==========================================
ポップアップ箇所
========================================== */




/* ============================================
cont03
============================================ */

.cont03 {
  margin: 15em auto;
}

.cont03 .co03_titA {}

.cont03 .co03_titA .co03_eng {
  font-size: 4.2rem;
  letter-spacing: 0.35em;
  line-height: 1.2em;
  color: #000;
  font-weight: 800;
}

.cont03 .co03_titA .co03_tA_in {
  display: flex;
  flex-flow: row wrap;
}

.cont03 .co03_titA .co03_tA_in h2 {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  font-weight: 600;
  width: 40%;
}

.cont03 .co03_titA .co03_tA_in p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 2.2em;
  font-weight: 400;
  width: 60%;
}

.cont03 .co03_dis {
  width: calc(100vw - 10vw);
  margin: auto;
}

.cont03 .co03_dis .co03_disbox {
/*   padding-bottom: 8em; */
  margin: 6em auto;
}

.cont03 .co03_dis .co03_disbox a {
  display: inline-block;
  position: relative;
  padding-bottom: 6em;
}

.cont03 .co03_dis .co03_disbox a picture {
  width: 100%;
  height: 30vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cont03 .co03_dis .co03_disbox a picture img {
  max-width: 100%;
  transition: all 0.7s;
  position: relative;
  top: -42%;
}

.cont03 .co03_dis .co03_disbox a:hover picture img {
  transform: scale(1.05, 1.05);
  transition: all 0.7s;
}


.cont03 .co03_dis .co03_disbox a .co03dis_in {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3em;
  background: linear-gradient(60deg, rgba(134, 91, 53, 1), rgba(192, 158, 111, 1) 44%);
}


.cont03 .co03_dis .co03_disbox a .co03dis_in p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  font-weight: 500;
}

.cont03 .co03_dis .co03_disbox a .co03dis_in p span {
  font-size: 3rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #fff;
}

.cont03 .co03_dis .co03_disbox a .co03dis_in h3 {
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  font-weight: 600;
  color: #fff;
}

.cont03 {}


/* ============================================
cont_contact
============================================ */

.foot_contact {
  background: radial-gradient(rgba(255, 255, 255, 1) 69%, rgba(236, 236, 236, 1));
  padding: 7em 0;
}

.foot_contact .fc_01 {}

.foot_contact .fc_01 h3 {
  font-size: 6rem;
  letter-spacing: 0.35em;
  line-height: 1em;
  font-weight: 600;
  text-align: center;
  text-shadow: -20px 14px 20px rgba(0,0,0,0.2);
}

.foot_contact .fc_01 p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  font-weight: 600;
  text-align: center;
}

.foot_contact .fc_01 .fc_01_link {
  margin: 5em auto auto;
  display: block;
  max-width: 20em;
}

.foot_contact .fc_01 .fc_01_link a {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  font-weight: 600;
  text-align: center;
  position: relative;
/*   display: inline-block; */
  margin: auto;
}

.foot_contact .fc_01 .fc_01_link a::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #8d0116;
  border-radius: 50%;
  position: absolute;
  top: 52%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
}

.foot_contact .fc_01 .fc_01_link a:hover {}

.foot_contact .fc_01 .fc_01_link a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 5%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left bottom;/*左上基点*/
}

.gnavi li.current a::after {
    transform: scale(0.2, 1);
}

.foot_contact .fc_01 .fc_01_link a:hover::after {
    transform: scale(1, 1);
}



/* ============================================
イニングcss
============================================ */



/* ====================================================
And More
==================================================== */

.andmore {
  text-align: center;
  padding: 8em 0;
}

.andmore img {
  width: 50%;
}










/* ==============================================
弁護士のcss
============================================== */


/* =======================================
1つ目のLL会員登録
======================================= */

.legal_l_01 {
  /* padding: 4vw 0; */
  background: url(../img/ll_bg.webp);
  background-position: center bottom;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  margin-top: 5%;
  width: 90vw;
}

.legal_l_01 .llbg {
  background: rgba(0, 0, 0, 0.5);
  padding: 4.5vw 0;
}

.legal_l_01 .llbg .llcon {}

.legal_l_01 .llbg .llcon .ll_le {
  margin: 0 auto;
}

.legal_l_01 .llbg .llcon .ll_le h3 {
  font-size: 3rem;
  letter-spacing: 0.15em;
  line-height: 1em;
  color: #fff;
  padding-bottom: 0.3em;
}

.legal_l_01 .llbg .llcon .ll_le p {
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 1.7em;
  padding-left: 2em;
  color: #fff;
  position: relative;
}

.legal_l_01 .llbg .llcon .ll_le p::before {
  content: "";
  width: 0;
  height: 0.1em;
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  color: #A58B68;
  border-left: 1.3em solid #A58B68;
}

.legal_l_01 .llbg .llcon .ll_ri {
  margin: 3em auto auto;
}

.legal_l_01 .llbg .llcon .ll_ri p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
}



.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn {
  margin-top: 2.2em;
  display: inline-block;
  position: relative;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #8d0116;
  border-radius: 50%;
  position: absolute;
  top: 52%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a {
  display: inline-block;
  background: #fff;
  color: #091246;
  font-weight: 600;
  padding: 0.5em 4vw;
  letter-spacing: 0.2em;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a::before {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: -6px;
  height: 1px;
  right: -6px;
  width: 100%;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a::after {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 6px;
  right: -6px;
  height: 100%;
  width: 1px;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a:hover {
  color: #fff;
  background: -webkit-gradient(linear,left top,right top,from(#102035),to(#204068));
  background: linear-gradient(90deg,#102035,#204068);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a:hover::before {
  right: 0;
  bottom: 0;
  background: #204068;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a:hover::after {
  top: 0;
  right: 0;
  background: #204068;
}

/* =======================================
フッター直前のLL会員登録
======================================= */

.legal_l {
  /* padding: 4vw 0; */
  /* background: url(../img/ll_bg.webp);
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden; */
/*   margin-top: 5%; */
  background: #0481A2;
  z-index: -2;
}

.legal_l .llbg a.slipe {
  /* background:#0481A2; */
  padding: 4.5vw 0;
  /* display: inline-block; */
  position: relative;
}

.legal_l .llbg a.slipe::after {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #2f4a81;
  transition:all .5s;
  opacity: 0;
}

.legal_l .llbg a.slipe:hover::after {
  width: 100%;
  opacity: 1;
}

.legal_l .llbg a.slipe:hover{
  color: #fff;
}



.legal_l .llbg .llcon {
  display: flex;
  flex-flow: row wrap;
  z-index: 2;
  position: relative;
}

.legal_l .llbg .llcon .ll_le {
  margin: 0 auto;
}

.legal_l .llbg .llcon .ll_le h3 {
  font-size: 3rem;
  letter-spacing: 0.15em;
  line-height: 1em;
  color: #fff;
  padding-bottom: 0.3em;
}

.legal_l .llbg .llcon .ll_le p {
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 1.7em;
  padding-left: 2em;
  color: #fff;
  position: relative;
}

.legal_l .llbg .llcon .ll_le p::before {
  content: "";
  width: 0;
  height: 0.1em;
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  color: #A58B68;
  border-left: 1.3em solid #A58B68;
}

.legal_l .llbg .llcon .ll_ri {
  margin: 0 auto;
}

.legal_l .llbg .llcon .ll_ri p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
}



.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn {
  margin-top: 2.2em;
  display: inline-block;
  position: relative;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #8d0116;
  border-radius: 50%;
  position: absolute;
  top: 52%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span {
  display: inline-block;
  background: #fff;
  color: #091246;
  font-weight: 600;
  padding: 0.5em 4vw;
  letter-spacing: 0.2em;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span::before {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: -6px;
  height: 1px;
  right: -6px;
  width: 100%;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span::after {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 6px;
  right: -6px;
  height: 100%;
  width: 1px;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span:hover {
  color: #fff;
  background: -webkit-gradient(linear,left top,right top,from(#102035),to(#204068));
  background: linear-gradient(90deg,#102035,#204068);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span:hover::before {
  right: 0;
  bottom: 0;
  background: #204068;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span:hover::after {
  top: 0;
  right: 0;
  background: #204068;
}















footer {
  background: #25355A;
  padding: 2% 0 1%;
  /* margin-top: 5%; */
}

footer .ftcon {
  display: flex;
  flex-flow: row wrap;
  padding: 1.5em 0 4em ;
}

footer .ftcon .ft_le {
  width: 50%;
  margin: 0 2em 0 0;
}

footer .ftcon .ft_le .ft_logo {}

footer .ftcon .ft_le .ft_logo a {}

footer .ftcon .ft_le .ft_logo a img {
  width: 100%;
  max-width: 300px;
}

footer .ftcon .ft_le p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
  padding-top: 0.5em;
  position: relative;
  padding-left: 1.8em;
}

footer .ftcon .ft_le p strong {
  display: inline-block;
  padding-right: 0.5em;
}

footer .ftcon .ft_le p::before {
  content: "";
  width: 0;
  height: 0.1em;
  position: absolute;
  top: 1.4em;
  left: 0;
  margin: auto;
  color: #A58B68;
  border-left: 1.3em solid #A58B68;
}

footer .ftcon .ft_ri {
  width: 45%;
  margin: 0 auto;
}

footer .ftcon .ft_ri ul {
  display: flex;
  flex-flow: row wrap;
}

footer .ftcon .ft_ri ul li {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
  position: relative;
  padding-left: 1.8em;
  width: 39%;
  margin: 0.3em 0;
}

footer .ftcon .ft_ri ul li::before {
  content: "";
  width: 0;
  height: 0.1em;
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  color: #fff;
  border-left: 1.3em solid #fff;
}

footer .ftcon .ft_ri ul li a {
  color: #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

footer .ftcon .ft_ri ul li a:hover {}

footer .ftcon .ft_ri ul li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .2s;
}

footer .ftcon .ft_ri ul li a:hover::after {
  transform: scale(1, 1);
}


footer .ftcon2 {
  background: #FAF7F7;
}

footer .ftcon2 p {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #1C2C58;
} 








/**************************************************************

NEW_FOOTER 20170829

**************************************************************/




@media screen and (max-width: 1548px) {
.legal_l_01 .llbg .llcon {
  padding-left: 5em;
}

}

@media screen and (max-width: 1510px) {}

@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1495px) {}

@media screen and (max-width: 1455px) {
.content1440 {
  width: 90%;
  max-width: 1440px;
  height: auto;
  margin: auto 5%;
}

}

@media screen and (min-width: 1441px) {



}

@media screen and (max-width: 1351px) {}

@media screen and (max-width: 1300px) {}

@media screen and (max-width: 1290px) {



}

@media screen and (max-width: 1251px) {


.legal_l_01 .llbg .llcon {
  padding-left: 3vw;
}

}


@media screen and (max-width: 1200px) {}


@media screen and (max-width: 1150px) {}


@media screen and (max-width: 1100px) {}


@media screen and (max-width: 1050px) {}


@media screen and (max-width: 1000px) {}


@media screen and (max-width: 960px) {}

@media only screen and (max-width: 979px) {
.sp_979 {
  display: block;
}


}

@media screen and (max-width: 767px) {


.tablet_scroll {
  display: block;
}




}

@media screen and (max-width: 640px) {

.pc {
  display: none;
}

.sp {
  display: block;
}

/*----- フェードインしながら上へスライド -----*/
.f0 {
    opacity: 0;
    transform: translate(0, 60px);
    -webkit-transform: translate(0, 60px);
    transition: .8s;
}


.mp {
    opacity: 0;
    transform: translate(0, 60px);
    -webkit-transform: translate(0, 60px);
    transition: .5s;
}

.mp2 {
    opacity: 0;
    transform: translate(0, 70px);
    -webkit-transform: translate(0, 70px);
    transition: .6s;
}

.mp3 {
    opacity: 0;
    transform: translate(0, 80px);
    -webkit-transform: translate(0, 80px);
    transition: .7s;
}

.FadeInUP {
    opacity: 1.0 !important;
    transform: translate(0, 0) !important;
    -webkit-transform: translate(0, 0) !important;
}



.contents {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  height: auto;
}

.contents2 {
  width: 90%;
  max-width: 1200px;
  margin: auto 5%;
  height: auto;
}

.contents3 {
  width: 90%;
  max-width: 1000px;
  margin:  auto 5%;
  height: auto;
}

.contents3_2 {
  width: 90%;
  max-width: 1100px;
  margin:  auto 5%;
  height: auto;
}

.contents4 {
  width: 94%;
  max-width: 600px;
  height: auto;
  margin: auto 3%;
}

.contents1440 {
  width: 90%;
  max-width: 1440px;
  margin:  auto 5%;
  height: auto;
}


.bgs {
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background: url(../img/bg_common.png) no-repeat cover right top;
}

/* header p {
  width: 45%;
  margin: 3% auto;
  text-align: center;
} */

main {
    /* margin: 2em auto; */
}




/* ===================================

新規メイン_20220512

=================================== */

header {
  /* position: relative;
  z-index: 1; */
  background: #fff;
  padding-top: 8vw;
}

header .logo {
  padding: 1.3em 1.7em;
  max-width: 36vw;
}

header .logo img {
  width: 17vh;
}


.openbtn {
  position: fixed;
  z-index: 9999;
  top: auto;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: #fff;
  border: solid thin #000;
  border-radius: 50%;
}

.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11px;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  width: 45%;
}


.openbtn span:nth-of-type(1) {
  top:12px; 
}

.openbtn span:nth-of-type(2) {
  top:20px;
}

.openbtn span:nth-of-type(3) {
  top:28px;
}

/* ==========================================
メイン箇所
========================================== */

.maincont {
  position: relative;
  padding-bottom: 12em;
}

/* ==========================================
cont01
========================================== */



/* ==========================================
cont02
========================================== */




/* ============================================
cont03
============================================ */

.cont03 {
  margin: 15em auto;
}

.cont03 .co03_titA {}

.cont03 .co03_titA .co03_eng {
  font-size: 8vw;
  letter-spacing: 0.35em;
  line-height: 1.2em;
  color: #000;
  font-weight: 800;
}

.cont03 .co03_titA .co03_tA_in {
  display: block;
}

.cont03 .co03_titA .co03_tA_in h2 {
  font-size: 3.4vw;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  font-weight: 600;
  width: 100%;
}

.cont03 .co03_titA .co03_tA_in p {
  font-size: 3.4vw;
  letter-spacing: 0.05em;
  line-height: 2.2em;
  font-weight: 400;
  width: 100%;
  margin-top: 3em;
}

.cont03 .co03_dis {
  width: calc(100vw - 10vw);
  margin: auto;
}

.cont03 .co03_dis .co03_disbox {
/*   padding-bottom: 8em; */
  margin: 6em auto;
}

.cont03 .co03_dis .co03_disbox a {
  display: inline-block;
  position: relative;
  padding-bottom: 13em;
}

.cont03 .co03_dis .co03_disbox a picture {
  width: 100%;
  height: 42vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cont03 .co03_dis .co03_disbox a picture img {
  max-width: 100%;
  transition: all 0.7s;
  position: relative;
  top: -22%;
}

.cont03 .co03_dis .co03_disbox a:hover picture img {
  transform: scale(1.05, 1.05);
  transition: all 0.7s;
}


.cont03 .co03_dis .co03_disbox a .co03dis_in {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  background: linear-gradient(60deg, rgba(134, 91, 53, 1), rgba(192, 158, 111, 1) 44%);
}


.cont03 .co03_dis .co03_disbox a .co03dis_in p {
  font-size: 3.4vw;
}

.cont03 .co03_dis .co03_disbox a .co03dis_in p span {
  font-size: 10vw;
}

.cont03 .co03_dis .co03_disbox a .co03dis_in h3 {
  font-size: 4vw;
}

.cont03 {}


/* ============================================
cont_contact
============================================ */

.foot_contact {
  background: radial-gradient(rgba(255, 255, 255, 1) 69%, rgba(236, 236, 236, 1));
  padding: 7em 0;
}

.foot_contact .fc_01 {}

.foot_contact .fc_01 h3 {
  font-size: 12vw;
  text-shadow: -12px 8px 20px rgba(0,0,0,0.2);
}

.foot_contact .fc_01 p {
  font-size: 3.4vw;
}


.foot_contact .fc_01 .fc_01_link a {
  font-size: 4vw;
}


/* ============================================
イニングcss
============================================ */



/* ============================================
comming soon箇所
============================================ */









/* ==============================================
弁護士のcss
============================================== */

.conts03 .c03in .lawyer_con {
  display: block;
  flex-flow: row wrap;
}

.conts03 .c03in .lawyer_con .lawyer {
  width: 100%;
  margin: 0 0 3em;
}

.conts03 .c03in .lawyer_con .lawyer a {
  display: inline-block;
  transition: all .4s ease-in-out;
}

.conts03 .c03in .lawyer_con .lawyer a:hover {
  box-shadow: 1px 1px 21px rgba(0,0,0,.35);
}

.conts03 .c03in .lawyer_con .lawyer a picture {}

.conts03 .c03in .lawyer_con .lawyer a picture img {
  max-width: 100%;
}

.conts03 .c03in .lawyer_con .lawyer a .lw_txt {
  padding: 1.8em 1.3em 1.3em;
}

.conts03 .c03in .lawyer_con .lawyer a .lw_txt h3 {
  font-size: 4.4vw;
  letter-spacing: 0.15em;
  line-height: 1em;
  color: #1C2C58;
}

.conts03 .c03in .lawyer_con .lawyer a .lw_txt p {
  font-size: 4.2vw;
  letter-spacing: 0.15em;
  line-height: 1em;
  color: #1C2C58;
  padding: 1em 0 1.3em;
}

.conts03 .c03in .lawyer_con .lawyer a .lw_txt ul {
  font-size: 3.8vw;
  letter-spacing: 0.1em;
  line-height: 1em;
  color: #1C2C58;
}

.conts03 .c03in .lawyer_con .lawyer a .lw_txt ul li {
  margin: 0.7em auto;
}



/* =======================================
1つ目のLL会員登録
======================================= */

.legal_l_01 {
  /* padding: 4vw 0; */
  background: url(../img/ll_bg.webp);
  background-position: center bottom;
  /* background-attachment: fixed; */
  background-size: cover;
  overflow: hidden;
  margin-top: 5%;
  width: 90vw;
  /* position: relative;
  z-index: 1;
  background: #fff; */
}

.legal_l_01 .llbg {
  background: rgba(0, 0, 0, 0.5);
  padding: 10vw 0;
}

.legal_l_01 .llbg .llcon {
  padding-left: 0;
}

.legal_l_01 .llbg .llcon .ll_le {
  margin: 0 auto;
}

.legal_l_01 .llbg .llcon .ll_le h3 {
  font-size: 5vw;
  letter-spacing: 0.15em;
  line-height: 1em;
  color: #fff;
  padding-bottom: 0.3em;
}

.legal_l_01 .llbg .llcon .ll_le p {
  font-size: 3.8vw;
  letter-spacing: 0.15em;
  line-height: 1.7em;
  padding-left: 2em;
  color: #fff;
  position: relative;
}

.legal_l_01 .llbg .llcon .ll_le p::before {
  content: "";
  width: 0;
  height: 0.1em;
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  color: #A58B68;
  border-left: 1.3em solid #A58B68;
}

.legal_l_01 .llbg .llcon .ll_ri {
  margin: 3em auto auto;
}

.legal_l_01 .llbg .llcon .ll_ri p {
  font-size: 3.8vw;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
}



.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn {
  margin-top: 2.2em;
  display: inline-block;
  position: relative;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #8d0116;
  border-radius: 50%;
  position: absolute;
  top: 52%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a {
  display: inline-block;
  background: #fff;
  color: #091246;
  font-weight: 600;
  padding: 0.5em 5vw 0.5em 7vw;
  letter-spacing: 0.2em;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a::before {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: -6px;
  height: 1px;
  right: -6px;
  width: 100%;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a::after {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 6px;
  right: -6px;
  height: 100%;
  width: 1px;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a:hover {
  color: #fff;
  background: -webkit-gradient(linear,left top,right top,from(#102035),to(#204068));
  background: linear-gradient(90deg,#102035,#204068);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a:hover::before {
  right: 0;
  bottom: 0;
  background: #204068;
}

.legal_l_01 .llbg .llcon .ll_ri .not_nl_llr_btn a:hover::after {
  top: 0;
  right: 0;
  background: #204068;
}







.legal_l {
  /* padding: 4vw 0; */
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  background: #0481A2;
}

.legal_l .llbg {
  /* background: rgba(0, 0, 0, 0.5); */
  padding: 8vh 0;
}

.legal_l .llbg .llcon {
  display: block;
  flex-flow: row wrap;
}

.legal_l .llbg .llcon .ll_le {
  margin: 0 auto 3vh;
}

.legal_l .llbg .llcon .ll_le h3 {
  font-size: 7vw;
  letter-spacing: 0.15em;
  line-height: 1em;
  color: #fff;
  padding-bottom: 0.3em;
}

.legal_l .llbg .llcon .ll_le p {
  font-size: 3.8vw;
  letter-spacing: 0.15em;
  line-height: 1.7em;
  padding-left: 2em;
  color: #fff;
  position: relative;
}

.legal_l .llbg .llcon .ll_le p::before {
  content: "";
  width: 0;
  height: 0.1em;
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  color: #A58B68;
  border-left: 1.3em solid #A58B68;
}

.legal_l .llbg .llcon .ll_ri {
  margin: 0 auto;
}

.legal_l .llbg .llcon .ll_ri p {
  font-size: 4vw;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
}



.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn {
  margin-top: 2.2em;
  display: inline-block;
  position: relative;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #8d0116;
  border-radius: 50%;
  position: absolute;
  top: 52%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span {
  display: inline-block;
  background: #fff;
  color: #091246;
  font-weight: 600;
  padding: 0.5em 23vw;
  letter-spacing: 0.2em;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span::before {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: -6px;
  height: 1px;
  right: -6px;
  width: 100%;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span::after {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 6px;
  right: -6px;
  height: 100%;
  width: 1px;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span:hover {
  color: #fff;
  background: -webkit-gradient(linear,left top,right top,from(#102035),to(#204068));
  background: linear-gradient(90deg,#102035,#204068);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span:hover::before {
  right: 0;
  bottom: 0;
  background: #204068;
}

.legal_l .llbg .llcon .ll_ri .not_nl_llr_btn span:hover::after {
  top: 0;
  right: 0;
  background: #204068;
}




footer {
  background: #25355A;
  padding: 2% 0 3.5%;
  /* margin-top: 5%; */
}

footer .ftcon {
  display: flex;
  flex-flow: row wrap;
  padding: 1.5em 0 4em ;
}

footer .ftcon .ft_le {
  width: 100%;
  margin: 0 0 0 0;
}

footer .ftcon .ft_le .ft_logo {}

footer .ftcon .ft_le .ft_logo a {}

footer .ftcon .ft_le .ft_logo a img {
  width: 100%;
  max-width: 300px;
}

footer .ftcon .ft_le p {
  font-size: 4vw;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
  padding-top: 0.5em;
  position: relative;
  padding-left: 1.8em;
}

footer .ftcon .ft_le p strong {
  display: inline-block;
  padding-right: 0.5em;
}

footer .ftcon .ft_le p::before {
  content: "";
  width: 0;
  height: 0.1em;
  position: absolute;
  top: 1.4em;
  left: 0;
  margin: auto;
  color: #A58B68;
  border-left: 1.3em solid #A58B68;
}

footer .ftcon .ft_ri {
  width: 100%;
  margin: 3vh auto auto;
}

footer .ftcon .ft_ri ul {
  display: flex;
  flex-flow: row wrap;
}

footer .ftcon .ft_ri ul li {
  font-size: 4vw;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #fff;
  position: relative;
  padding-left: 1.8em;
  width: 100%;
  margin: 0.3em 0;
}

footer .ftcon .ft_ri ul li::before {
  content: "";
  width: 0;
  height: 0.1em;
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  color: #fff;
  border-left: 1.3em solid #fff;
}

footer .ftcon .ft_ri ul li a {
  color: #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

footer .ftcon .ft_ri ul li a:hover {}

footer .ftcon .ft_ri ul li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .2s;
}

footer .ftcon .ft_ri ul li a:hover::after {
  transform: scale(1, 1);
}


footer .ftcon2 {
  background: #FAF7F7;
  padding: 1vh 0;
}

footer .ftcon2 p {
  font-size: 3.4vw;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  color: #1C2C58;
} 

/**************************************************************

NEW_FOOTER 20170829

**************************************************************/



}


@media screen and (max-width: 470px) {


}

@media screen and (max-width: 370px) {




}