body {
    font-family: sans-serif;
    text-align: center;
    line-height: 2;
    width: 100%;
    height: 100%;
    margin:0;
    padding:0;
    letter-spacing: 3px;
}

table {
    width: 700px;
    margin: auto;
}

ul {
    list-style: none;
}

a {
  color: #000;
  text-decoration: none;
}

.en {
  font-family: 'Lexend Exa', sans-serif;  

}

h2 .en {
  font-family: 'Jost', sans-serif;
  font-family: 'Lexend Deca', sans-serif;
}

.small_font {
  font-size: 12px;
  margin-top: auto;
  margin-bottom: auto;
}

.medium_font {
  font-size: 14px;
}

.en>span {
  color: #1E5A94;
}


@media  screen and (max-width:990px) {
    .container {
        max-width: 90% !important;
    }
}



/**header**/
#header {
  background-color: rgba(255,255,255,0.9);  
}

header a {
  font-family: 'Jost', sans-serif;
}
.navbar-brand img {
  width: 50%;
}

.navbar-collapse {
  justify-content: flex-end;
}

.nav-link {
  color: #000 !important;
}


/**================
menu line animation
=================**/
.nav-link {
  position: relative;
  display: inline-block;
}
.nav-link::before,
.nav-link::after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background-color: #333;
  transition: .3s;
}

/**.current {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}**/

.nav-link::before {
  top: 0;
  right: 0;
}
.nav-link::after {
  bottom: 0;
  left: 0;
}

.nav-link:hover::before,
.nav-link:hover::after {
  width: 100%;
}

.nav-link {
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (max-width:1199px) {
  .nav-link {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
}

@media screen and (max-width:991px) {
  .nav-link {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
    line-height: 2;
  }
}

/**
.icon_btn_left {
  margin-left: 10px;
}
.icon_btn {
  background-color: #000;
  line-height: 1;
  padding: 5px;
}

.icon_btn a {
  color: #fff;
}

.fa-mobile-alt,
.fa-envelope {
  color: #fff;
  width: 50px;
  padding: 5px 5px 0 5px;
}

.icon_btn a:hover {
  color: #000;
  transition: 0.5s;
}

.icon_btn:hover {
  background-color: #fff;
  line-height: 1;
  padding: 5px;
  transition: 0.5s;
}

.icon_btn a:hover .fa-mobile-alt,
.icon_btn a:hover .fa-envelope {
  color: #000;
  width: 50px;
  transition: 0.5s;
}
**/
/**dropdown**/
.dropdown-toggle::after {
  display: inline-block;
  vertical-align: 0.255em;
  border: none;
  left: -5px;
}

.dropdown-item:hover {
  background-color: #cacaca;
  transition: 0.5s;
}

@media screen and (max-width:540px) {
  .dropdown-item {
    text-align: center;
  }

  .navbar {
    background-color: #fff;
  }
}

/**==================
　icon_btn animation
====================**/

.icon_btn{
  position: relative;
}

.icon_btn::before,
.icon_btn::after{
  content:"";
  position: absolute;
  width: 0;
  height:1px;
  background:#000;
  transition: all 0.2s linear;
  transition-delay: 0.2s;
}

.icon_btn::before{
  right: 0;
  top: 0;
}

.icon_btn::after{
  left: 0;
  bottom: 0;
}

.icon_btn:hover::before,
.icon_btn:hover::after{
  width: 100%;
}


/**====================
linebox animation 共通
======================**/
.inner {
  margin: auto;
  /*padding: 10px;*/
  width: 90%;
  height: 90%;
  opacity: 0;

}

.linebox {
  margin: auto;
  width: 90%;
}

.linebox_ani {
  margin: auto;
  width: 100%;
  background-image: 
  linear-gradient(#cacaca,#cacaca),
  linear-gradient(#cacaca,#cacaca),
  linear-gradient(#cacaca,#cacaca),
  linear-gradient(#cacaca,#cacaca);
  background-repeat: no-repeat;
  background-size: 1px 110%,110% 1px, 1px 110%, 110% 1px;
  background-position: left bottom,left top,right top,right bottom;
  animation: square_ani 1s ease forwards;
}
  
@keyframes square_ani {
  00%{
    background-size: 1px 0, 0 1px, 1px 0, 0 1px;
  }
  25%{
    background-size: 1px 0, 100% 1px, 1px 0, 20% 1px;
  }
  50%{
    background-size: 1px 0, 100% 1px, 1px 20%, 100% 1px;
  }
  75%{
    background-size: 1px 20%, 100% 1px, 1px 100%, 100% 1px;
  }
  95%{
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  }
  100%{
    background-size: 2px 0, 0 2px, 2px 0, 0 2px;
  }
}


.inner_ani{
  width: 100%;
  animation: fadein 1s ease-out 1s forwards;
  opacity: 0;
}

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


/**image hover**/
.image_link,
.linebox {
  margin:0 auto; 
  overflow:hidden; 
 }
 .image_link img{
  transition:1s all;
  /* width: 300px; */
  height: auto;
 }
 .image_link img:hover{
   transform:scale(1.1,1.1);
   transition:1s all;
 }

 .image_link:hover p {
   color: #000;
 }


/**footer**/
footer {
  padding-bottom: 40px;
}

#footer {
  background-color: #D7E5EB;
  margin-top: 100px;
}

.footer_up {
  padding-top: 40px;
}

@media screen and (max-width:540px) {
  .footer_up {
    padding: 40px 0 0 0 ;
  }
  .footer_text {
    display: block;
    margin: auto;
    letter-spacing: 0px;
  }
  
}

.footer_up hr {
  width: 100%;
  display: block;
}

.footer_up .sub_title {
  display: block;
  text-align: left;
}

.footer01 {
  padding-bottom: 40px;
}

#footer .sub_title p {
  color:#1E5A94
}
.footer_text {
  display: block;
  margin: auto;
}

.footer_title {
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
}


.footer_btn {
  margin: auto;

}

.footer_icon_btn {
  background-color: #000;
  width: 350px;
  height: 150px;
  line-height: 1.2;
  padding: 30px;
  margin: auto;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (max-width:820px) {
  .footer_icon_btn {
    background-color: #000;
    width: 100%;
    height: 150px;
    line-height: 1.2;
    padding: 30px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
  }
}


@media screen and (max-width:540px) {
  .footer_btn {
    margin: auto;
    margin-top: 20px;
  }
}

.footer_icon_btn span {
  color: #fff;
}

.footer_btn01 {
  color: #fff;
  padding-top: 30px;
  padding-bottom: 40px;
  display: block;
  letter-spacing: 1px;
}

.footer_btn02 {
  color: #fff;
  padding-top: 25px;
  padding-bottom: 40px;
  display: block;
  letter-spacing: 1px;
}

.footer_icon_btn .fa-arrow-right {
  color: #fff;
  position: absolute;
  top: 8px;
  right: 8px;
  transform: rotate(-45deg);
}

.footer_down {
  margin: auto;
  margin-top: 40px;
}

.footer_left {
  display: flex;
  justify-content: center;
}

.footer_logo {
  height: 37%;
  width: auto;
  vertical-align: bottom;
  margin-top: 15px;
}

.address {
  text-align: left;
  display: inline-block;
  margin-left: 20px;
}

.address .footer_info {
  margin-bottom: 5px;
}

.footer_left a {
  display: block;
}

.footer_left a:hover {
  display: block;
  color: #969696;
  transition: 0.5s;
}

.en_jost {
  font-family: 'Jost', sans-serif;
  line-height: 1.5;
}

.icon_sns {
  width: 10%;
}

/*.twitter {
  margin-top: 5px;
}*/

.footer_right hr {
  width: 50%;
  display: block;
  margin: 20px auto 20px auto;
}

.sns .staff {
  width: 5%;
}

@media screen and (max-width:820px) {
  .icon_sns {
    width: 15%;
  }  
  .sns .staff {
    width: 8%;
  }
}

@media screen and (max-width:540px) {
  .footer_logo {
    height: 30%;
    display: block;
    margin: auto;
    margin-bottom: 10px;
  }
  .icon_sns {
    width: 20%;
  }
  .sns .staff {
    width: 10%;
  }
}


/**==================
　footer_icon_btn animation
====================**/
.footer_icon_btn a:hover {
  color: #000;
  transition: 0.5s;
}

.footer_icon_btn:hover {
  background-color: #fff;
  width: 350px;
  height: 150px;
  line-height: 1.2;
  padding: 30px;
  margin: auto;
  margin-bottom: 20px;
  position: relative;
  transition: 0.5s;
}

@media screen and (max-width:820px) {
  .footer_icon_btn:hover {
    background-color: #fff;
    width: 100%;
    height: 150px;
    line-height: 1.2;
    padding: 30px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    transition: 0.5s;
  }
}


.footer_icon_btn:hover a,
.footer_icon_btn:hover span {
  color: #000;
  transition: 0.5s;
}

.footer_icon_btn:hover .fa-arrow-right {
  color: #000;
  position: absolute;
  top: 8px;
  right: 8px;
  transform: rotate(-45deg);
  transition: 0.5s;
}

.footer_icon_btn::before,
.footer_icon_btn::after {
  content:"";
  position: absolute;
  width: 0;
  height:1px;
  background:#000;
  transition: all 0.2s linear;
  transition-delay: 0.2s;
}

.footer_icon_btn::before{
  right: 0;
  top: 0;
}

.footer_icon_btn::after{
  left: 0;
  bottom: 0;
}

.footer_icon_btn:hover::before,
.footer_icon_btn:hover::after{
  width: 100%;
}





/**=========
scroll
===========**/
.scroll-top {
  position: fixed;
  left: 20px;
  bottom: 10px;
  z-index: 2000;
  opacity: 0;
  /*visibility: hidden;*/
  transition: opacity .5s, visibility .5s;
  /*-webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;*/
  white-space: nowrap;
  animation: arrowmove 1s ease-in-out infinite;
  font-family: 'Jost', sans-serif;
}

@keyframes arrowmove {
  0%{bottom:20px;}
  50%{bottom:25px;}
  100%{bottom:20px;}
}

.scroll-top {
  background-color: rgba(255,255,255,0.8);
}

.scroll-view {
  opacity: 1;
  visibility: visible;
}

.scroll-top a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
}

.fix_icon {
  position: fixed;
  right: 20px;
  bottom: 10px;
  display: flex;
  flex-direction: row;
  z-index: 2000;
  transition: opacity .5s, visibility .5s;
  /*-webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;*/
  white-space: nowrap;
  animation: arrowmove 1s ease-in-out infinite;
}

.fix_icon p {
  letter-spacing: 0px;
  margin-bottom: 0;
  background-color: #000;
}

.fix_icon a {
  display: block;
  width: 70px;
}

.fix_icon p span {
  color: #fff;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  font-size: 8px;
  display: block;
}


.fix_icon .fas,
.fix_icon .far {
  color: #fff;
  margin-top:10px
}

/**===========
btn animation
===========**/
.btn_animation{
  position: relative;
  display: inline-block;
  padding:0 0 0 20px;
  line-height: 50px;
  color: #000;
  text-decoration: none;
  outline: none;
}

.btn_animation::before{
  content:'';
  position:absolute;
  top: 20%;
  left:0;
  z-index: -1;
  width:30px;
  height:30px;
  background:#1E5A94;
  border-radius:25px;
  transition:.3s ease-out;
}

.btn_animation:hover {
  color: #fff;
  transition: 0.5s;
}

.btn_animation:hover::before{
  width:140px;
}

.btn:hover .btn_circle {
  border-top: 1px solid #1E5A94;
  content: "";
  flex-grow: 1;
  width: 100%;
  height: 1px;
  transform: scaleX(1);
  animation: 3s linear 1s infinite running slidein;
}

.btn_animation:hover .fa-chevron-right {
  transform: translateX(10px);
  transition: 0.5s;
}


/**responsive**/

.res {
  display: none;
}

.res_1199 {
  display: none !important;
}

@media screen and (max-width:1199px) {
  .pc_1199 {
    display: none !important;
  }

  .res_1199 {
    display: block !important;
  }
}

@media screen and (max-width:540px) {
  .comment {
    text-align: center;
    margin: auto;
    margin-top: 40px;
  }
  .pc {
    display: none;
  }
  
  .res {
    display: block;
    margin: auto;
  }
  
  section .en {
    font-size: 18px;
  }
  .res_work_text {
    margin-top: 80px;
  }

  .sub_title {
    margin: auto;
  }

  .main {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .icon_btn_left {
    margin-left: 0;
  }

  .footer_btn ul {
    padding-left: 0;
  }

  .footer_icon_btn {
    background-color: #000;
    width: 100%;
    height: 100%;
    line-height: 1.2;
    padding: 20px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
  }
  .footer_icon_btn:hover {
    background-color: #fff;
    width: 100%;
    height: 100%;
    line-height: 1.2;
    padding: 20px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    transition: 0.5s;
  }
  
  .footer_left {
    display: block;
  }

  .address {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .footer_right {
    margin-top: 0;
  }

}


/**==========
Index
=============**/
/**top image div.main**/
#index {
  margin-top: 100px;
}

#index .main {
  position: relative;
}

#index .comment {
  text-align: left;
  margin: auto;
  margin-right: 0%;
  /*margin-left: 50px;*/
  padding-left: 5%;
  padding-right: 0;
}



#index .comment.en {
display: inline-block;
font-family: 'Lexend Exa', sans-serif;  
font-size: 46px;
}

#index .en>span {
color: #1E5A94;
}

#index .comment p {
display: inline-block;
}

#index .comment .text-border {
display: flex;
align-items: center;
width: 80%;
}

@media screen and (max-width:540px) {
  #index .comment .text-border {
    display: flex;
    align-items: center;
    width: 80%;
    margin: auto;
    }
}

#index .comment .text-border p {
margin: 0;
display: flex;
align-items: center;
letter-spacing: 1px;
}

#index .comment .text-border:before
/*.comment .text-border:after*/ {
content: "";
flex-grow: 1;
height: 1px; /* 線の太さ */
background: #000; /* 線の色 */
margin:auto; /* 文字と線の余白 */
}


#index .main_title {
  width: 30%;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 4%;
}

#index .top_svg_animation {
  width: 85%;
  float: left;
}



.title {
  display: flex;
  overflow: hidden;
  color: #000;
  font-family: 'Josefin Sans', sans-serif;
  font-size:26px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width:820px) {
  #index .main_title {
    width: 30%;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0%;
    top: 10%;
  }
  #index .top_svg_animation {
    width: 100%;
    float: left;
  }
  
}


@media screen and (max-width:540px) {
  #index .top_svg_animation {
    width: 100%;
    float: inherit;
  }

  #index .main_title {
    width: 40%;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 15%;
    /*left: 20%;*/
  }

  .title {
    display: flex;
    overflow: hidden;
    color: #000;
    font-family: 'Josefin Sans', sans-serif;
    font-size:22px;
    font-weight: 400;
    line-height: 1.2;
  }
}


#index .title span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

#index .title.-visible span {
  transform: translate(0, 0);
}

#index .title1 span:nth-child(2) {
  transition-delay: 0.06s;
}
#index .title1 span:nth-child(3) {
  transition-delay: 0.12s;
}
#index .title1 span:nth-child(4) {
  transition-delay: 0.18s;
}
#index .title1 span:nth-child(5) {
  transition-delay: 0.24s;
}
#index .title2 span:nth-child(1) {
  transition-delay: 0.55s;
}
#index .title2 span:nth-child(2) {
  transition-delay: 0.61s;
}
#index .title2 span:nth-child(3) {
  transition-delay: 0.67s;
}
#index .title3 span:nth-child(1) {
  transition-delay: 0.97s;
}
#index .title3 span:nth-child(2) {
  transition-delay: 1.03s;
}
#index .title3 span:nth-child(3) {
  transition-delay: 1.09s;
}
#index .title4 span:nth-child(1) {
  transition-delay: 1.4s;
}
#index .title4 span:nth-child(2) {
  transition-delay: 1.46s;
}
#index .title4 span:nth-child(3) {
  transition-delay: 1.53s;
}


@media screen and (max-width:1600px) {
  #index .comment {
    text-align: left;
    margin: auto;
    margin-right: 0%;
    /*margin-left: 50px;*/
    padding-left: 50px;
    padding-right: 0;
  }
}





/**===============
subtitle 共通
================**/
#index .sub_title{
display: flex;
justify-content: flex-end;
/* float: right;*/
margin-right: 75px;
}

#index .title-border {
display: flex;
align-items: center;
width: 95%;
}

#index .title-border:after {
border-top: 1px solid #e2e3e3;
content: "";
flex-grow: 1;
}

#index .title-border:before {
margin-right: 1rem;
}

#index .title-border:after {
margin-left: 1rem;
}

#index .circle{
width: 30px;
height: 30px;
border-radius: 50%;
background: #1E5A94;/*背景色*/
}

#index .circle>p {
  margin-top: 50px;
  margin-left: 0;
  -ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
}

#index .text-border p {
  margin-top: 50px;
  margin-left: 0;
writing-mode: inherit;
padding-left: 5px;
}

@media screen and (max-width:1199px) {
  #index .text-border p {
    margin-top: 30px;
    margin-left: 0;
    writing-mode: inherit;
    padding-left: 5px;
    line-height: 1.5;
  }
  
}


@media screen and (max-width:820px) {
    #index .sub_title{
    display: flex;
    justify-content: flex-end;
    /* float: right;*/
    margin-right: 15px;
  }
  #index .text-border p {
    margin-top: 10px;
    margin-left: 0;
  writing-mode: inherit;
  padding-left: 5px;
  line-height: 1.5;
  }
  
}


@media screen and (max-width:540px) {
  #index .text-border p {
    margin-top: 0;
    margin-left: 0;
    writing-mode: inherit;
    padding-left: 5px;
  }
}

#index .circle .en {
  font-size: 20px;
  margin-left: -5px;
}

/*#index .circle .sub_p {
  margin-top: 50px;
  margin-left: 0;
  writing-mode:unset;
  padding-left: 5px;
  margin: auto;
}*/

#index .text-border {
  text-orientation: sideways;
  letter-spacing: 5px;
 /* -webkit-transform: rotate( -90deg );  Chrome,Safari,新しいOpera用 */
}

#index .circle hr {
  width: 1px;
  height: 100px;
  color: #000;
  margin: auto;
}



/**About**/
#index #about {
margin: auto;
margin-top: 150px;
}

#index #about .linebox {
  margin-top: 40px;
}

#index .about_text {
  margin-top: 80px;
  margin-bottom: 40px;
}

#index #about .col-md-5{
  margin: auto;
}

@media screen and (max-width:1199px) {
  #index .circle hr {
    width: 1px;
    height: 80px;
    color: #000;
    margin: auto;
  }
  
}
@media screen and (max-width:991px) {
  #index #about {
    margin: auto;
    margin-top: 100px;
    }
}

@media screen and (max-width:820px) {
  #index .circle hr {
    width: 1px;
    height: 50px;
    color: #000;
    margin: auto;
  }
  #index #about {
    margin: auto;
    margin-top: 100px;
  }
}

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

  #index .col-12 {
    padding: 0;
  }
  #index .about_text {
    margin-top: 80px !important;
    margin-bottom: 40px !important;
  }
    
}

/**Service**/
#index #service {
margin: auto;
margin-top: 100px;
}

#index .service_text {
margin-top: 80px;
margin-bottom: 40px;
}
#index .contents {
margin-top: 10px;
}

#index .content {
margin-top: 40px;
}

#index .content p {
text-align: left;
width: 95%;
margin: auto;
margin-top: 8px;
}

@media screen and (max-width:820px) {
  #index #service {
    margin: auto;
    margin-top: 80px;
    }
}

@media screen and (max-width:540px) {
  #index .service_text {
    margin-top: 80px !important;
    margin-bottom: 40px !important;
  }
    
}

/**works**/
#index #works {
margin-top: 100px;
}

#index .work_text {
margin-top: 80px;
margin-bottom: 40px;
}

#index .exsample {
margin: auto;
margin-top: 60px;
}

#index #works .exsample .linebox {
  width: 75%;
}

@media screen and (max-width:820px) {
  #index #works {
    margin-top: 80px;
  }
  #index #works .exsample .linebox {
    width: 100%;
  }
}

#index .exsample_text {
background-image: url('https://coxltd.co.jp/wp-cox/img/new_02.png');
background-size: 60%;
background-repeat: no-repeat;
background-position: right 0;
text-align: left;
}

#index #works .exsample_text h3 {
  font-weight: bold;
}

#index #works .index_categories {
font-size: 18px;
font-weight: bold;
/*margin-top: 20px;*/
}

#index .explain {
margin-top: 40px;
}

#index .ex_text {
display: inline-block;
margin: auto;
margin-top: 50px;
}


@media screen and (max-width:820px) {
  #index #works .index_categories {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 0;
    }
  #index .ex_text {
    display: inline-block;
    margin: auto;
    margin-top: 0px;
    }
}


/**news**/
#index #news {
margin-top: 100px;
text-align: center;
}

#index #news .sub_title {
display: block;
margin: auto;
}

#index #news .sub_title h2 {
color: #1E5A94;
margin-top: 80px;
margin-bottom: 40px;
font-size: 28px;
}

#index .list {
max-width: 800px;
margin: auto;
margin-bottom: 40px;
}

#index .list p {
display: inline-block;
margin-bottom: 5px;
}

#index .list p:nth-child(2) {
  padding-left: 70px;
  text-align: left;
}

#index .list a{
position: relative;
margin-top: 15px;
margin-bottom: 15px;
}

#index .list a:hover{
color:#0481A2;
}

#index .list a::after {
content: '';
position: absolute;
bottom: 0;
left: 10%;
width: 75%;
height: 1px;
background:#0481A2;
transition: all .3s;
transform: scale(0, 1);
transform-origin: left top;
}

#index .list a:hover::after {
transform: scale(1, 1);
}

#index #news .btn_animation {
margin-bottom: 65px;
}

@media screen and (max-width:820px) {
  #index #news {
    margin-top: 80px;
    text-align: center;
    }
}

/**responsive**/

#index .res {
display: none;
}

@media screen and (max-width:820px) {
  #index .comment {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-top: 80px;
    padding-left:0;
  }
  #index .main {
    display: flex;
    flex-direction: column-reverse;
  }

  #index .main .col-md-8 {
    width: 100%;
  }
}


@media screen and (max-width:540px) {
  #index .comment {
    text-align: center;
    width: 1000%;
    margin: auto;
    margin-top: 80px;
    padding-left:0;
  }
  #index .pc {
    display: none;
  }

  #index .res {
    display: block;
    margin: auto;
  }

  #index section .en {
    font-size: 18px;
  }
  #index .res_work_text {
    margin-top: 80px;
  }


  #index .res_work_text {
    margin-top: 80px;
    margin-bottom: 40px;
  }


  #index .sub_title {
    margin: auto;
  }

  #index .main {
    display: flex;
    flex-direction: column-reverse;
  }

  #index .main .col-md-8 {
    width: 100%;
  }

  #index .list p {
    display: block;
    margin-bottom: 5px;
    width: 100%;
    }

  #index .list p:nth-child(2) {
    padding-left: 0;
    text-align: left;
  }
  #index .list span {
    display: none;
  }
}


/**==========
Works 
===========**/
/**title**/
#single_works_title .works_title {
  margin: auto;
  margin-top: 100px;
}


#single_works_title .main_title {
  position: relative;
}

#single_works_title .main_title::before{
  content:'';
  position:absolute;
  top: 0;
  left: -34px;
  z-index: -1;
  width:30px;
  height:30px;
  background:#1E5A94;
  border-radius:25px;
  transition:.3s ease-out;
}

@media screen and (max-width:820px) {
  #single_works_title .main_title::before{
    content:'';
    position:absolute;
    top: 0;
    left: 20px;
    z-index: -1;
    width:30px;
    height:30px;
    background:#1E5A94;
    border-radius:25px;
    transition:.3s ease-out;
  }
  #single_works_title .works_title {
    width: 40%;
    margin: auto;
    margin-top: 100px;
  }
  
}

@media screen and (max-width:540px) {
  #single_works_title .works_title {
    width: 100%;
    margin: auto;
    margin-top: 100px;
  }
  #single_works_title .main_title::before{
    content:'';
    position:absolute;
    top: 0;
    left: 60px;
    z-index: -1;
    width:30px;
    height:30px;
    background:#1E5A94;
    border-radius:25px;
    transition:.3s ease-out;
  }
  
}

#single_works_contents {
  margin-top: 60px;
}

@media screen and (max-width:540px) {
  #single_works_contents {
    margin-top: 20px;
  }
}


/**works_text**/

#single_works_contents .title-border {
  display: flex;
  align-items: center;
  width: 5%;
  position: relative; 
}
    
#single_works_contents .title-border::before {
  border-top: 1px solid #000;
  content: "";
  flex-grow: 1;
  margin-right: 0;
}

#single_works_contents .title-border::after {
  content:'';
  position:absolute;
  top: 42%;
  right: 12%;
  z-index: -1;
  width: 5px;
  height: 5px;
  background:#000;
  border-radius:25px;
}

@media screen and (max-width:820px) {
  #single_works_contents .title-border::before {
    display: none;
  }
  
}
         
#single_works_contents .client {
  margin: 0;
  display: inline-block;
  text-align: left;
  padding-left: 5px;
  font-weight: 600;
}    

#works .sub_title_01,
#works .sub_title_02 {
    font-weight: 600;
}

#works .client_ja {
  margin-left: 5%;
  margin-top: 5px;
  text-align: left;
  padding-left: 5px;
  font-size: 14px;
}

#works .contents {
  margin-top: 40px;
  margin-bottom: 5px;
}

#works .categories {
  margin-left: 5%;
  text-align: left;
  font-family: 'Jost', sans-serif;
  padding-left: 5px;
}

#works .categories ul {
  padding-left: 0;
}

#works .categories a:hover {
  color: #969696;
  transition: 0.5s;
}

#works .explain {
  text-align: left;
}

#works .exsample_text .btn_animation:hover::before{
  width:160px;
}

#works .exsample_text .btn_animation {
  float: right;
}

@media screen and (max-width:820px) {
  #works .categories {
    width: 100%;
    margin-left: 5%;
    text-align: left;
    font-family: 'Jost', sans-serif;
    padding-left: 5px;
  }
  #works .explain {
    width: 90%;
    margin-left: 5%;
    padding-left: 5px;
    text-align: left;
  }
  
}

/**phot0_zone**/
#works .photo_zone {
  margin-top: 80px;
}

#works .photo_zone p {
  margin: 0;
  text-align: left;
  padding-left: 12px;
  display: inline-block;
  vertical-align: top;
}

#works .photo_zone .photo_zone_title {
  margin-left: 5%;
  padding-left: 0;
  text-align: left;
}

@media screen and (max-width:540px) {
  #works .photo_zone {
    margin-top: 30px;
  }
  #works .photo_zone .photo_zone_title {
    margin-left: 0;
    margin-top: 0;
    text-align: left;
  }
  #works .explain {
    text-align: left;
    margin-top: 25px;
  }
  
}

#works .photo01 {
  margin-left: 5%;
  margin-top: 20px;
  padding-right: 0;
}

#works .photo02 {
  /*margin-left: 5%;*/
  margin-top: 20px;
}

#works .photo03 {
  margin-top: 20px;
}

#works .photo10 {
  margin-left: 5%;
  margin-top: 20px;
  padding-right: 0;
}

@media screen and (max-width:768px) {
  #works .photo01 {
    margin-left: 5%;
    margin-top: 20px;
    padding-right: 12px;
  }

  #works .photo10 {
    margin-left: 5%;
    margin-top: 20px;
    padding-right: 12px;
  }
  
}

/**postLinks**/
#works .postLinks {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 100px;
}

#works .postLinks .fa-arrow-left,
#works .postLinks .fa-arrow-right {
  color: #000;
  position: inherit;
  transform: inherit;
  margin: 5px;
  top: 0;
  right: 0;
}

#works .postLink-top {
  background-color: #000;
  line-height: 1.2;
}

#works .postLink-top a {
  color: #fff;
  display: block;
  padding: 10px 20px;
  position: relative;
  font-size: 14px;
}


#works .postLink-prev a,
#works .postLink-next a {
  position: relative;
}

#works .postLink-top a:hover {
  color: #000;
  transition: 0.3s;
}

#works .postLink-top:hover {
  background-color: #fff;
  transition: 0.3s;
}

#works .postLink-prev a:hover,
#works .postLink-next a:hover {
  color: #000;
}

#works .postLink-top a::after,
#works .postLink-prev a::after,
#works .postLink-next a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:#000;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
  margin-top: 5px;
}
  
#works .postLink-top a:hover::after,
#works .postLink-prev a:hover::after,
#works .postLink-next a:hover::after {
  transform: scale(1, 1);
}


@media screen and (max-width:820px) {
  #works .postLinks {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 60px;
  }
  #works .postLink-top {
    background-color: #000;
    line-height: 1.2;
    margin: 15px auto 15px auto;
  }
  
}


/**category_all**/
#works .category_all {
  margin-top: 130px;
  position: relative;
}

#works .category_list {
  background-color: #D7E5EB;
}

#works .all p {
  font-size: 114px;
  position: absolute;
  top: 30%;
  left: 10%;
}


#works .category_list table {
  display: block;
  text-align: left;
  margin-left: 180px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width:1199px) {
  #works .category_list table {
    width: 80%;
    display: block;
    text-align: left;
    margin-left: 180px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #works .all p {
    font-size: 114px;
    position: absolute;
    top: 30%;
    left: -5%;
  }
}

#category_list .category_list th {
  font-family: 'Jost', sans-serif;
}

#category_list .category_list td {
  padding-left: 50px;
}

#category_list table a {
  position: relative;
  margin: auto 10px auto 10px;
}

#category_list table a:hover {
  color: #000;
}

#category_list table a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background:#000;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
  margin-top: 5px;
}
  
#category_list table a:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width:820px) {
  #works .all p {
    font-size: 120px;
    position: absolute;
    top: -100px;
    left: 0;
  }
  #works .category_list {
    width: 100%;
    background-color: #D7E5EB;
  }
  #works .category_list table {
    width: 100%;
    display: block;
    text-align: left;
    margin-left: 0px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
}

@media screen and (max-width:540px) {
  #works .photo01,
  #works .photo02 {
      margin-left: 0;        
  }

  #works .photo10 {
    margin-left: 0;
    margin-top: 20px;
    padding-right: 12px;
  }

  #works .all p {
      font-size: 120px;
      position: absolute;
      top: -100px;
      left: 0;
  }

  #works .category_list table {
      margin-left: 0;
  }

  #category_list .category_list td {
      padding-left: 20px;
      display: grid;
  }
}



#archive_works .table {
  margin-left: 5%;
  margin-top: 40px;
  width: 80%;
}

#archive_works .table tr {
  border-color: #fff;
  text-align: left;
}


#archive_works .table a {
  margin: auto 10px auto 10px;
}


#archive_works .works_list {
  text-align: left;
  margin-top: 100px;
}

@media screen and (max-width:820px) {
  #archive_works .table {
    margin-left: 5%;
    margin-top: 40px;
    width: 100%;
  }
}

@media screen and (max-width:540px) {
  #archive_works #category_list td {
    display: none;
  }
  #archive_works .table {
    margin-left: 0;
    margin-top: 40px;
    width: 100%;
  }
  #archive_works .works_list {
    text-align: left;
    margin-top: 50px;
  }
}


#archive_works .work {
  padding: 10px;
}

#archive_works .work .photo01 {
  width: 100%;
  margin: 0;
}

#archive_works .work_text {
  margin-left: 20px;
} 

#archive_works .work p {
  display: inline-block;
}

#archive_works .work h5 {
  /*margin-top: 20px;*/
  display: inline-block;
  position: relative;
  font-size: 16px !important;
  font-weight: bold;
}

#archive_works h5:hover {
  color: #000;
}

#archive_works h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background:#000;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
  margin-top: 5px;
}

#archive_works h5:hover::after {
  transform: scale(1, 1);
}

 /*#archive_works .work:hover {
 border: 1px solid #e2e3e3;
  transition: 0.5s;
}*/

#archive_works .work:hover a {
  color: #000;
}


/**pade navigation**/
.pagination h2 {
  display: none !important;
}

.pagination{
  margin:40px 0 0;
  display: flex;
  justify-content: center;
}

@media screen and (max-width:540px) {
  .pagination{
    margin:40px 0 0;
    display: flex;
    justify-content: center;
    padding: 0;
  }
}
.nav-links{
  display:flex;
  justify-content: center;
  /*justify-content: space-around;*/
  width: 100%;
}

.pagination .page-numbers{
  display:inline-block;
  margin-right:10px;
  margin-left: 15px;
  width: 35px;
  height: 35px;
  color:#000;
  /*border-radius:50%;*/
  text-align: center;
}
.pagination .current{
  padding-left: 3px;
  text-align: center;
  border: 1px solid #1E5A94;
  color:#1E5A94;
  border-radius:50%;
}
@media screen and (max-width:540px) {
  .nav-links{
    display:flex;
    justify-content: space-between;
    width: 100%;
  }
  .pagination .page-numbers{
    display:inline-block;
    margin-right:initial;
    margin-left: initial;
    width: 35px;
    height: 35px;
    color:#000;
    /*border-radius:50%;*/
    text-align: center;
    padding: 0 0px 0 10px;
  }
  .pagination .current{
    padding-left: initial;
    text-align: center;
    border: 1px solid #1E5A94;
    color:#1E5A94;
    border-radius:50%;
  }
}
.pagination .prev i,
.pagination .next i {
  background:transparent;
  box-shadow:none;
  color:#000;
}
.pagination .dots{
  background:transparent;
  box-shadow:none;
}


/**=========
NEWS
==========**/
#single_news .article_meta .text-border {
  display: flex;
  align-items: center;
  width: 5%;
  position: relative; 
}
    
#single_news .article_meta .title-border::before {
  border-top: 1px solid #000;
  content: "";
  flex-grow: 1;
  margin-right: 0;
}

#single_news .article_meta .title-border::after {
  content:'';
  position:absolute;
  top: 42%;
  right: 12%;
  z-index: -1;
  width: 5px;
  height: 5px;
  background:#000;
  border-radius:25px;
}





/**===========
Branding.html
============**/
#branding .container02 {
  width: 70%;
  margin: auto;
}

#branding .flex_top {
  display: flex;
  justify-content: flex-end;
}


#branding .b_main_title h2 {
  display: inline-block;
  text-align: left;
  position: relative;
}

#branding .b_main_title h2::before {
  content:'';
  position:absolute;
  top: -7px;
  left: -18px;
  z-index: -1;
  width:30px;
  height:30px;
  background:#1E5A94;
  border-radius:25px;
  transition:.3s ease-out;
}

#branding .fix_title ul {
  text-align: left;
  letter-spacing: 1px;
  margin-top: 40px;
  margin-left: 60px;
}

#branding .fix_title ul a:hover {
  color:#333; 
}

#branding .fix_title {
  position: -webkit-sticky;
  position: sticky;
  margin: auto;
  /*height: 400px;*/
  top: 20%; 
  left: 0;
}

#branding .branding_main_img {
  width: 100%;
}

@media screen and (max-width:1199px) {
  #branding .container02 {
    width: 90%;
    margin: auto;
  }
  #branding .fix_title {
    width: 50%;
    position: absolute;
    text-align: left;
    top: 18%;
    margin-left: 20px;
  }

  #branding .fix_title ul {
    display: none;
  }
}

@media screen and (max-width:990px) {
  #branding .fix_title {
    width: 50%;
    position: absolute;
    text-align: left;
    top: 16%;
    margin-left: 20px;
  }
  #branding .container02 {
    width: 100%;
    margin: auto;
  }
  #branding .branding_main_img {
    width: 100%;
    position: relative;
    z-index: -20;
  }
  
}


@media screen and (max-width:540px) {
  #branding .fix_title {
    width: 90%;
    position: absolute;
    text-align: left;
    margin-left: 20px;
  }
  #branding .b_main_title h2 {
    display: inline-block;
    text-align: left;
    position: relative;
    margin-top: 18%;
  }
  #branding .container02 {
    width: 100%;
    margin: auto;
  }
}


/**section01**/
#branding .section01 .section_text .group {
  text-align: left;
  width: 70%;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width:820px) {
  #branding .section01 .section_text .group {
    text-align: left;
    width: 90%;
    margin: auto;
    margin-top: 40px;
  }
  #branding #section05 .section_title {
    padding-bottom: 50px;
  }
}
@media screen and (max-width:540px) {
  #branding .section01 .section_text .group {
    text-align: left;
    width: 100%;
    margin: auto;
    margin-top: 40px;
  }
  #branding #section05 .section_title {
    padding-bottom: 20%;
  }
}

#branding .section01 {
  margin: auto;
  margin-top: 60px;
  width: 100%;
}

#branding .section02,
#branding .section03,
#branding .section04,
#branding .section05,
#branding .section06 {
  width: 100%;
  margin: auto;
}

/**共通**/
#branding .section_title {
  display: block;
  background-color: #D7E5EB;
}

#branding .section_img {
  width: 45%;
}

#branding .section_title h3 {
  margin-top: 20%;
  letter-spacing: 1px;
}

#branding .section_text {
  padding-bottom: 40px;
}

@media screen and (max-width:820px) {
  #branding .section_title {
    display: block;
    background-color: #D7E5EB;
    width: 100%;
  }
  #branding .section_img {
    width: 30%;
    padding-bottom: 50px;
  }
  #branding .section_title h3 {
    margin-top: 50px;
    letter-spacing: 1px;
  }
  #branding .section_text {
    width: 100%;
    padding-bottom: 40px;
  }

  #branding .section06 .section_title h3 {
    margin-bottom: 50px;
    letter-spacing: 1px;
  }

  #branding .section06 .section_text {
    padding-bottom: 0;
    padding: 0 0 40px 0 ;
    margin-top: 40px;
  }

}

@media screen and (max-width:764px) {
  #branding .section_img {
    width: 45%;
    padding-bottom: 20%;
  }
}

@media screen and (max-width:540px) {
  #branding .section_text {
    padding-bottom: 0;
    padding: 0 0 40px 0 ;
  }

  #branding .section06 .section_title h3 {
    margin-top: 20%;
    margin-bottom: 20%;
    letter-spacing: 1px;
  }
  #branding .section05 .section_logo {
    padding-bottom: 20%;
  }
  
}

#branding .section_text .num {
  font-size: 12px;
  letter-spacing: 1px;
  margin-left: 20px;
  text-align: center;
  display: table;
  line-height: 1.1;
}

#branding .section_text .num span {
 font-size: 72px;
}

#branding .section_text .b_sub_title {
  color: #fff;
  background-color: #1E5A94;
  font-size: 22px;
  display: inline-block;
  padding: 5px 20px;
}

#branding .section_text .group {
  text-align: left;
  width: 70%;
  margin: auto;
}

@media screen and (max-width:820px) {
  #branding .section_text .group {
    text-align: left;
    width: 90%;
    margin: auto;
  }
}

@media screen and (max-width:540px) {
  #branding .section_text .group {
    text-align: left;
    width: 100%;
    margin: auto;
  }
  #branding .section_text .b_sub_title {
    color: #fff;
    background-color: #1E5A94;
    font-size: 18px;
    display: inline-block;
    padding: 5px 20px;
  }
}

#branding .section_text .b_explain {
  text-align: left;
  width: 90%;
  margin:auto;
  margin-top: 40px;
}

#branding .section_text .question {
  font-size: 24px;
  font-weight: 400;
  padding: 20px;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  text-align: left;
  width: 95%;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width:991px) {
  #branding .section_text .question {
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0 20px 0;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    text-align: left;
    width: 98%;
    margin: auto;
    margin-top: 40px;
    text-align: center;
  }
}

@media screen and (max-width:820px) {
  #branding .section_text .question {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0 20px 0;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    text-align: left;
    width: 98%;
    margin: auto;
    margin-top: 40px;
    text-align: center;
  }
}

#branding .display {
  text-align: left;
  padding-left: 0;
  line-height: 0;
}

#branding .display .display-left {
  width: 33%;
  height: 20px; 
  background-color: #fff;
  bottom: 0;
  display: inline-block;
  margin: 0;
  opacity: 1;
}
 
#branding .display .color{
  background-color: #D7E5EB;
  height: 20px;
  width: 22%;
  border: 1px ;
  display: inline-block;
  margin: 0;
  opacity: 1;
}

@media screen and (max-width:820px) {
  #branding .display {
    display: none;
  }
  
}

/**section2**/
#branding .section02 .section_text .group {
  text-align: left;
  width: 70%;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width:820px) {
  #branding .section02 .section_text .group {
    text-align: left;
    width: 90%;
    margin: auto;
    margin-top: 40px;
  }
}

@media screen and (max-width:540px) {
  #branding .section02 .section_text .group {
    text-align: left;
    width: 100%;
    margin: auto;
    margin-top: 40px;
  }
}

#branding .section02 .environment {
  display: flex;
  justify-content: center;
}

#branding .section02 .environment p {
  margin-bottom: 0;
  margin-top: 50px;
}

#branding .section02 .out_envi {
  text-align: center;
}

#branding .section02 .out_envi ul {
  text-align: left;
  border: 1px solid #1E5A94;
  padding-left: 0;
  display: inline-block;
  padding: 10px 30px;
}

#branding .section02 .in_envi ul {
  text-align: left;
  border: 1px solid #1E5A94;
  padding-left: 0;
  display: inline-block;
  padding: 26px 49px;
}

@media screen and (max-width:990px) {
  #branding .section02 .environment {
    display: flex;
    justify-content: space-around;
  }
  #branding .section02 .out_envi {
    text-align: center;
    width: auto;
  }
  #branding .section02 .in_envi {
    text-align: center;
    width: auto;
  }
  
}

#branding .section_text .question02 {
  font-size: 26px;
  font-weight: bold;
  padding: 20px;
  text-align: left;
  width: 95%;
  margin: auto;
  margin-top: 40px;
}


#branding .section02 .section2_graph {
  width: 75%;
  height: auto;
}

#branding .section_text .question03 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 10px 40px;
  margin: auto;
  background-color: #000;
}

/**section03**/
#branding .section03 .section_text .group {
  text-align: left;
  width: 70%;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width:820px) {
  #branding .section03 .section_text .group {
    text-align: left;
    width: 90%;
    margin: auto;
    margin-top: 40px;
  }
}

@media screen and (max-width:540px) {
  #branding .section_text .question02 {
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
    text-align: left;
    width: 95%;
    margin: auto;
    margin-top: 40px;
  }
  #branding .section03 .section_text .group {
    text-align: left;
    width: 100%;
    margin: auto;
    margin-top: 40px;
  }
  #branding .section_text .question03 {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 10px 40px;
    margin: auto;
    background-color: #000;
  }
  #branding .section02 .section2_graph {
    width: 100%;
    height: auto;
  }
}

#branding .section_text .b_explain span{
  font-size: 20px;
  color: #1E5A94;
}

#branding .section03 .graph_group {
  margin-top: 45px;
}

#branding .section03 .graph_group .p_caption {
  text-align: center;
  margin-bottom: 0;
}

#branding .section03 .sec03_graph_group {
  display: flex;
  justify-content: center;
}

#branding .section03 .table {
  display: inline-block;
  width: auto;
  margin: 0;
}

#branding .section03 .p_caption {
  color: #000;
  text-align: center;
}

#branding .section03 .table td {
  font-size: 14px;
  width: 85px;
  padding: 14px;
  letter-spacing: 0;
}

#branding .section03 .table .span_color {
  background-color: #D7E5EB;
} 

#branding .arrow {
  width: 82px;
  height: 100%;
  display: inline-block;
  margin: auto 20px;
}

#branding .section03 .graph_text {
  font-size: 14px;
  text-align: left;
  display: inline-block;
  margin: auto 0;
  letter-spacing: 0;
}


@media screen and (max-width:540px) {
  #branding .section03 .sec03_graph_group {
    display: block;
  }
  #branding .arrow {
    width: 82px;
    height: 100%;
    display: block;
    margin: auto;
    transform: rotate(90deg);
    padding: 20px;
  }
}


#branding .section03 .graph_text span {
  color: #f00;
}

#branding .arrow_group {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

#branding .arrow_down {
  height: 82px;
  width: auto;
}

#branding .arrow_text {
  margin: auto 0 auto 50px;
}


/**section04**/
#branding .section04 .section_text .group {
  text-align: left;
  width: 70%;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width:820px) {
  #branding .section04 .section_text .group {
    text-align: left;
    width: 90%;
    margin: auto;
    margin-top: 40px;
  }
}

@media screen and (max-width:540px){
  #branding .section04 .section_text .group {
    text-align: left;
    width: 100%;
    margin: auto;
    margin-top: 40px;
  }
}

#branding .section04 .section_title p {
  font-size: 16px;
  color: #919191;
}

#branding .section04 .question_text {
  font-size: 14px;
  font-weight: normal;
}

#branding .section04 .sec04_graph {
  width: 65%;
  margin: auto;
}

#branding .section04 .sec04_graph_group p {
  display: inline-block;
  text-align: center;
}

#branding .section04 .sec04_graph_group .sec04_circle {
  display: inline-block;
  width: 120px;
  height: 120px;
  border: 1px dotted #000;
  border-radius: 50%;
  text-align:center;
  line-height: 80px;
  margin: auto 0;
}

@media screen and (max-width:1199px) {
  #branding .section04 .sec04_graph {
    width: 100%;
    margin: auto;
  }
}

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

  #branding .section04 .section_title p {
    font-size: 16px;
    color: #919191;
    margin-bottom: 50px;
  }
}

@media screen and (max-width:540px) {
  #branding .section04 .section_title p {
    font-size: 16px;
    color: #919191;
    margin-bottom: 20%;
  }
  
  #branding .section04 .sec04_graph {
    width: 55%;
  }

}


/**section05**/
#branding .section04 .section_title .section_logo {
  width: auto;
}

#branding .section05 .section_text .group {
  text-align: left;
  width: 70%;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width:820px) {
  #branding .section05 .section_text .group {
    text-align: left;
    width: 90%;
    margin: auto;
    margin-top: 40px;
  }
}

@media screen and (max-width:540px) {
  #branding .section05 .section_text .group {
    text-align: left;
    width: 100%;
    margin: auto;
    margin-top: 40px;
  }
}

#branding .section05 .sec05_graph {
  width: 56%;
  display: block;
  margin: 16px 100px 16px auto;
}

#branding .section05 .sec05_graph_group {
  margin-top: 40px;
}

#branding .section05 .sec05_graph_img {
  display: none;
}

@media screen and (max-width:764px) {
  #branding .section05 .sec05_graph_group {
    display: none;
  }

  #branding .section05 .sec05_graph_img {
    display: block;
    width: 60%;
    margin: auto;
  }
}

@media screen and (max-width:540px) {
  #branding .section05 .sec05_graph_img {
    display: block;
    width: 98%;
    margin: auto;
  }
}

#branding .section05 .sec05_graph_group ul {
  border: 1px solid #1E5A94;
  border-radius: 12px;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  width: 222px;
  margin: auto 0;
}


#branding .section05 .sec05_graph_group li {
  font-size: 14px;
  line-height: 1.5;
}

#branding .section05 .sec05_graph_group hr {
  height: 1px;
  width: 160px;
  color: #1E5A94;
  opacity: 1;
  margin: 7px auto;
}

@media screen and (max-width:991px) {
  #branding .section05 .sec05_graph_group ul {
    border: 1px solid #1E5A94;
    border-radius: 12px;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    width: 170px;
    margin: auto 0;
  }
  #branding .section05 .sec05_graph_group hr {
    height: 1px;
    width: 130px;
    color: #1E5A94;
    opacity: 1;
    margin: 7px auto;
  }
  #branding .section05 .sec05_graph {
    width: 65%;
    display: block;
    margin: 16px 10px 16px auto;
  }
}


@media screen and (max-width:840px) {
  #branding .section05 .sec05_graph_group ul {
    border: 1px solid #1E5A94;
    border-radius: 12px;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    width: 222px;
    margin: auto 0;
  }
  #branding .section05 .sec05_graph_group hr {
    height: 1px;
    width: 160px;
    color: #1E5A94;
    opacity: 1;
    margin: 7px auto;
  }
  #branding .section05 .sec05_graph {
    width: 56%;
    display: block;
    margin: 16px 100px 16px auto;
  }
}



#branding .section05 .graph_up {
  display: flex;
  justify-content: center;
}

#branding .section05 .sec05_graph_group .arrow_graph {
  width: 35px;
  height: 100%;
  margin: auto 5px;
}

#branding .section05 .graph_long {
  margin: auto 0 0 0;
}

#branding .section05 .graph_long p {
  line-height: 1.2;
  text-align: left;
  margin-left: 12px;
}

#branding .section05 .arrow_graph_long {
  width: 82px;
  height: auto;
  margin: auto 5px;
}

.graph_circle{
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 1px dotted #000;
  border-radius: 50%;
  text-align:center;
  line-height: 80px;
  margin: auto 0;
}

#branding .section05 .graph_down {
  display: flex;
  justify-content: left;
  margin-left: 25px;
}


.link_btn{
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #1E5A94;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  transition: ease .2s;
  margin-top: 40px;
}

.link_btn span {
  position: relative;
  z-index: 3;
  color: #1E5A94;
}

.link_btn:hover span{
color:#fff;
}

.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background:#1E5A94;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft:hover:before{
transform-origin:left top;
transform:scale(1, 1);
}



/**#section06**/
#branding .section06 .section_text .num {
  /*display: inline-block;*/
  margin-right: 50px;
}

#branding .section06 .section_text .b_sub_title {
  vertical-align: text-bottom;
  margin-bottom: 0;
}


#branding {
  margin-top: 100px;
  margin-bottom: -100px;
}

@media screen and (max-width:991px) {
  #branding {
    margin-top: 85px;
    margin-bottom: -100px;
  }
}

@media screen and (max-width:540px) {
  #branding {
    margin-bottom: -100px;
    margin-top: 100px;
  }

  #branding .container {
    width: 98%;
  }

}












/**===============
privacy.html
================**/
/**title**/

div#subpage_title div.privacy_title_wrap {
  margin: 100px 0 100px 0;
  padding:72px 0 52px 0;
  background-color:#f2f2f2;
 position:relative;
background-image:url('http://coxltd.co.jp/img/sub_title_wrap_bg_150.gif');
background-repeat:repeat-y;
background-position: 0 0;
}

@media screen and (max-width:991px) {
  div#subpage_title div.privacy_title_wrap {
    margin: 85px 0 80px 0;
    padding:72px 0 52px 0;
    background-color:#f2f2f2;
   position:relative;
  background-image:url('http://coxltd.co.jp/img/sub_title_wrap_bg_150.gif');
  background-repeat:repeat-y;
  background-position: 0 0;
  }
  
}

/*
div#subpage_title div.privacy_title_wrap img.subpage_img{
  margin: 0 0 0 0;
  padding:0;
width:50%;
height:100%;
position:absolute;
top:0;
left:0;
}
*/






div#subpage_title div.privacy_title_wrap div.privacy_title {
  margin: 0 0 0 0;
  padding:0;

 position:relative;
z-index:10;
}


#privacy h2.main_title {
width: auto;
position: static;
    position: relative;

  margin:0;
  padding:0;
  text-align:left;
  font-family:serif;
}



#privacy .sub_title2 {
  position: relative;
  text-align:left;
  padding:0 0 0 1em;
}


#privacy .sub_title2::before{
  content:'';
  position:absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width:20px;
  height:20px;
  background:#1E5A94;
  border-radius:20px;
  transition:.3s ease-out;
}



#privacy .sub_title2 span {
display:block;
z-index:15;
}



section.privacy_text_section{
position:relative;
margin:0 0 80px 0;
padding:0;
text-align:left;
}


section.privacy_text_section h3{
position:relative;
font-size:16px;
font-weight:normal;

}

section.privacy_text_section p{
position:relative;
font-size:14px;
font-weight:normal;
letter-spacing: 1px;
}


div.privacy_section p.update_text{
position:relative;
font-size:14px;
font-weight:normal;
text-align:right;
}

@media screen and (max-width:820px) {
  div.privacy_section>.col-md-8 {
    width: 90%;
  }
}


/**works_text**/

#privacy .title-border {
  display: flex;
  align-items: center;
  width: 5%;
  position: relative; 
}
    
#privacy .title-border::before {
  border-top: 1px solid #000;
  content: "";
  flex-grow: 1;
  margin-right: 0;
}

#privacy .title-border::after {
  content:'';
  position:absolute;
  top: 42%;
  right: 12%;
  z-index: -1;
  width: 5px;
  height: 5px;
  background:#000;
  border-radius:25px;
}
         
#privacy .client {
  margin: 0;
  display: inline-block;
  text-align: left;
}    

#privacy .client_ja {
  margin-left: 5%;
  text-align: left;
}

#privacy .contents {
  margin-top: 40px;
}

#privacy .categories {
  margin-left: 5%;
  text-align: left;
  font-family: 'Jost', sans-serif;
}

#privacy .categories ul {
  padding-left: 0;
}

#privacy .explain {
  text-align: left;
}

/**phott_zone**/
#privacy .photo_zone {
  margin-top: 80px;
}

#privacy .photo_zone p {
  margin: 0;
  text-align: left;
}

#privacy .photo01 {
  margin-left: 5%;
  margin-top: 20px;
}

#privacy .photo02 {
  margin-left: 5%;
  margin-top: 20px;
}

#privacy .photo03 {
  margin-top: 20px;
}


/**postLinks**/
#privacy .postLinks {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 100px;
}

#privacy .postLinks .fa-arrow-left,
#privacy .postLinks .fa-arrow-right {
  color: #000;
  position: inherit;
  transform: inherit;
  margin: 5px;
  top: 0;
  right: 0;
}

#privacy .postLink-top {
  background-color: #000;
  line-height: 1.2;
}

#privacy .postLink-top a {
  color: #fff;
  display: block;
  padding: 10px;
  position: relative;
}


#privacy .postLink-prev a,
#privacy .postLink-next a {
  position: relative;
}

#privacy .postLink-top a:hover {
  color: #000;
  transition: 0.3s;
}

#privacy .postLink-top:hover {
  background-color: #fff;
  transition: 0.3s;
}

#privacy .postLink-prev a:hover,
#privacy .postLink-next a:hover {
  color: #000;
}

#privacy .postLink-top a::after,
#privacy .postLink-prev a::after,
#privacy .postLink-next a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:#000;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
  margin-top: 5px;
}
  
#privacy .postLink-top a:hover::after,
#privacy .postLink-prev a:hover::after,
#privacy .postLink-next a:hover::after {
  transform: scale(1, 1);
}


/**category_all**/
#privacy .category_all {
  margin-top: 130px;
  position: relative;
}

#privacy .category_list {
  background-color: #D7E5EB;
}

#privacy .all p {
  font-size: 120px;
  position: absolute;
  top: 30%;
  left: 10%;
}

#privacy .category_list table {
  display: block;
  text-align: left;
  margin-left: 180px;
  padding-top: 80px;
  padding-bottom: 80px;
}

#privacy .category_list th {
  font-family: 'Jost', sans-serif;
}

#privacy .category_list td {
  padding-left: 50px;
}

#privacy table a {
  position: relative;
  margin: auto 10px auto 10px;
}

#privacy table a:hover {
  color: #000;
}

#privacy table a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background:#000;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
  margin-top: 5px;
}
  
#privacy table a:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width:540px) {
  #privacy .photo01,
  #privacy .photo02 {
      margin-left: 0;        
  }

  #privacy .all p {
      font-size: 120px;
      position: absolute;
      top: -100px;
      left: 0;
  }

  #privacy .category_list table {
      margin-left: 0;
  }

  #privacy .category_list td {
      padding-left: 20px;
      display: grid;
  }
}


/**wordpress color set**/
.has-black-color{
  color:#000;}
.has-black-background-color{
  background-color: #000;}

.has-dark-gray-color{
  color:#333;}
.has-dark-gray-background-color{
  background-color: #333;}

.has-medium-gray-color{
  color: #999;}
.has-medium-gray-background-color{
  background-color: #999;}

.has-light-gray-color{
  color: #d3d3d3;}
.has-light-gray-background-color{
  background-color: #d3d3d3;}

.has-ghost-white-color{color:#f8f8ff}
.has-ghost-white-background-color{background-color:#f8f8ff}

.has-white-color{color:#FFF}
.has-white-background-color{background-color:#FFF}


.has-red-color{color:#ff0000}
.has-red-background-color{background-color:#ff0000}

.has-vivid-red-color{color:#cf2e2e}
.has-vivid-red-background-color{background-color:#cf2e2e}

.has-blue-color{color:#1E5A94}
.has-blue-background-color{background-color:#1E5A94}

.has-vivid-blue-color{color:#0693e3}
.has-vivid-blue-background-color{background-color:#0693e3}

.has-green-color{color:#008000}
.has-green-background-color{background-color:#008000}


.has-vivid-green-color{color:#00d084}
.has-vivid-green-background-color{background-color:#00d084}

/**end color set**/
.news-video {
  width: 500px;
  height:281px;
}

@media screen and (max-width:540px) {
  .news-video {
    width:100%;
    height: 100%;
  }

  .news-video iframe {
    width:100%;
  }
}


.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(255,255,255,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
/**
.loader {
  margin: 100px auto;
  margin: 0 auto;
  font-size: 12px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}**/

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
}
.loader {
  color: #ffffff;
  font-size: 0px;
  text-indent: -99999em;
  margin: 55px auto;
  position: relative;
  /*width: 10em;*/
  height: 10em;
  box-shadow: inset 0 0 0 1em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform-origin: 5.1em 5.1em;
  transform-origin: 5.1em 5.1em;
  /*-webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s;*/
  -webkit-animation: load2 2s infinite ease ;
  animation: load2 2s infinite ease ;
}
.loader img.logo_svg {
  position: absolute;
  width: 60px;
  height: auto;
  left: 50.5%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.loader-bg p {
  font-size: 12px;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin-top: 10px;
}

/**
.loader:before,
.loader:after {
  position: absolute;
  content: '';
}
.loader:before {
  width: 5.2em;
  height: 10.2em;
  background: #0dc5c1;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.1em 5.1em;
  transform-origin: 5.1em 5.1em;
  -webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s;
}
.loader:after {
  width: 5.2em;
  height: 10.2em;
  background: #0dc5c1;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 4.9em;
  -webkit-transform-origin: 0.1em 5.1em;
  transform-origin: 0.1em 5.1em;
  -webkit-animation: load2 2s infinite ease;
  animation: load2 2s infinite ease;
}
**/
@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media screen and (max-width:540px) {
  .loader {
    color: #ffffff;
    font-size: 0;
    text-indent: -99999em;
    margin: 55px auto;
    position: relative;
    /*width: 10em;*/
    height: 10em;
    box-shadow: inset 0 0 0 1em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: 5.1em 5.1em;
    transform-origin: 5.1em 5.1em;
    -webkit-animation: load2 2s infinite ease;
    animation: load2 2s infinite ease;
  }
  .loader img.logo_svg {
    position: absolute;
    width: 50px;
    height: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .loader-bg p {
    font-size: 12px;
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    margin-top: 10px;
  }
}
