@charset "utf-8";

/*--------------------------------------
　fixed_header
---------------------------------------*/
.fadein02 {
  display: none;
}


/*--------------------------------------
　fixed_toc
---------------------------------------*/
.fixed_toc {
  position: fixed;
  top: 20%;
  right: 0;
  width: 280px;
  height: auto;
  z-index: 1;
  transition: all 0.5s ease;
  transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
.fixed_toc.is-open {
  transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.fixed_toc .toc_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 100%;
  background: #3c3c3c;
  width: 60px;
  height: 120px;
  padding: 2rem 0 4rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2em;
  border-radius: 8px 0 0 8px;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: 'Zen Old Mincho vertical';
  text-orientation: upright;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}
.fixed_toc .toc_ttl::before,
.fixed_toc .toc_ttl::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  background: #fff;
  width: 16px;
  height: 1px;
  margin-left: -8px;
  transition: all 0.4s;
}
.fixed_toc .toc_ttl::after {
  transform: rotate(90deg);
}
.fixed_toc.is-open .toc_ttl::before {
  display: none;
}
.fixed_toc.is-open .toc_ttl::after {
  transform: rotate(180deg);
}

.fixed_toc .toc_block {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  max-height: calc(100vh - 20.8rem);
  padding: 2rem 2rem 3rem;
  border: 1px solid #292929;
  border-right: none;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.fixed_toc .toc_block::-webkit-scrollbar {
  display: none;
}

.fixed_toc ul {
  margin: 0 0 0;
}
.fixed_toc ul li {
  padding: 2rem 0 2rem;
  font-size: 1.6rem;
  border-bottom: 1px solid #aeaeae;
  position: relative;
}
.fixed_toc ul li:first-child {
  padding: 0 0 2rem;
}

@media screen and (max-width: 768px) {
  .fixed_toc {
    position: fixed;
    top: 70px;
    right: 0;
    width: calc(100% - 60px);
    height: auto;
  }
  .fixed_toc .toc_ttl {
    width: 40px;
    height: 80px;
    padding: 0 0 1.5rem;
    font-size: 1.5rem;
    border-radius: 4px 0 0 4px;
  }
  .fixed_toc .toc_ttl::before,
  .fixed_toc .toc_ttl::after {
    bottom: 20px;
    width: 12px;
    margin-left: -6px;
  }

  .fixed_toc .toc_block {
    width: 100%;
    max-height: calc(100vh - 20.8rem);
    padding: 1.5rem 2rem 2rem;
  }

  .fixed_toc ul {
    margin: 0 0 0;
  }
  .fixed_toc ul li {
    padding: 1.5rem 0 1.5rem;
    font-size: 1.5rem;
  }
  .fixed_toc ul li:first-child {
    padding: 0 0 2rem;
  }
}



/*--------------------------------------
　MV
---------------------------------------*/
.mv_home {
  width: 100%;
  height: 670px;
  min-width: 1000px;
  position: relative;
}

.mv_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 2070px;
  height: 100%;
}

.slick-slide:focus {
  outline: none;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-slider div {
  transition: none;
}


.mv_home .mv_inner {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.mv_home .mv_block {
  position: absolute;
  bottom: -200px;
  left: -220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(248,248,248,0.89);
  width: 700px;
  height: 700px;
  padding: 0 0 10rem;
  border-radius: 50%;
}

.mv_home .mv_cc {
  display: inline-block;
  padding: 0 0 5px;
  font-size: 2rem;
  border-bottom: 1px solid #292929
}

.mv_home .mv_ttl {
  margin: 2rem 0 0;
  font-size: 3.3rem;
}
.mv_home .mv_ttl .large {
  font-size: 5rem;
}

.mv_home .operation {
  margin: 1.5rem 0 0;
  color: #3c3c3c;
}

@media screen and (max-width: 768px) {
  .mv_home {
    width: 100%;
    height: auto;
    min-width: 100%;
  }
  
  .mv_slide_wrap {
    width: 100%;
    height: 280px;
  }

  .mv_slide {
    width: 1030px;
    height: 100%;
  }
  
  
  .mv_home .mv_inner {
    max-width: 100%;
  }

  .mv_home .mv_block {
    position: relative;
    bottom: inherit;
    left: inherit;
    width: 100%;
    height: 0;
    margin: -40% 0 0 -4rem;
    padding: 0 0 0;
    padding-top: 100%;
    border-radius: 50%;
  }

  .mv_home .mv_item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    padding: 0 4rem 0 6rem;
  }

  .mv_home .mv_cc {
    padding: 0 0 5px;
    font-size: 4.2vw;
    border-bottom: 1px solid #292929
  }

  .mv_home .mv_ttl {
    margin: 1rem 0 0;
    font-size: 5.2vw;
  }
  .mv_home .mv_ttl .large {
    font-size: 7vw;
  }

  .mv_home .operation {
    margin: 2rem 0 0;
    font-size: 2.6vw;
  }
}



/*--------------------------------------
　Main Index
---------------------------------------*/
.wrap {
  contain: paint;
}

.contents_top {
  width: 100%;
  min-width: 1000px;
  margin: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}

.contents_inner {
  position: relative;
  z-index: 0;
  contain: paint;
}

.sec {
  width: 100%;
  min-width: 1000px;
  margin: auto;
  box-sizing: border-box;
  position: relative;
}

.sec .inner {
  max-width: 1000px;
  margin: auto;
  box-sizing: border-box;
}

.flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .contents_top {
    min-width: 100%;
  }
  
  .sec {
    min-width: 100%;
  }
  
  .sec .inner {
    max-width: 100%;
  }
}



/*--------------------------------------
　Title
---------------------------------------*/
.main_ttlBox01 {
  position: relative;
}
.main_ttlBox01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  border-left: 1px solid #c1c0c7;
}

.sec_ttl01 {
  padding: 0 0 0 4rem;
  font-size: 2.6rem;
  position: relative;
}
.sec_ttl01::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  background: #292929;
  width: 4px;
  height: 0;
  box-sizing: border-box;
}
.sec_ttl01 .large {
  font-size: 4.2rem;
}
.sec_ttl01 .mark {
  border-bottom: 4px solid #e3e286;
}
.sec_ttl01 a {
  display: inline-block;
  position: relative;
}
.sec_ttl01 a::after {
  content: "";
  display: inline-block;
  background: url("img/arrow-bk.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
  margin-left: 3rem;
  box-sizing: border-box;
}

.main_ttlBox01 .lead {
  padding: 0 0 0 4rem;
}

.main_ttlBox01.isActive::before {
  animation: ttlAnime01 1s ease-in-out forwards;
  animation-delay: 0.6s;
}
@keyframes ttlAnime01 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
    border-left: 1px solid #c1c0c7;
  }
}

.sec_ttl01.isActive::before {
  animation: ttlAnime02 0.8s ease-in-out forwards;
  animation-delay: 0.5s;
}
@keyframes ttlAnime02 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.sec_ttl01 .ttl_inner{
  opacity: 0;
  display: block;
  transform: translate3d(-30px, 0, 0);
  transition-property: opacity, transform;
  transition-duration: .2s, .8s; 
  transition-timing-function: ease-in-out, ease-in-out;
  transition-delay: 0s, 0s;
}

.sec_ttl01 .ttl_inner.isActive{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s, 1s;
}

.sec_ttl01 a.ttl_inner.isActive:hover{
  opacity: .6;
  transition-duration: .12s, .8s;
  transition-delay: 0s, 1s;
}



.main_ttlBox02 {
  text-align: center;
}
.sec_ttl02 {
  display: inline-block;
  font-size: 3rem;
  text-align: center;
  line-height: 1.8;
}
.sec_ttl02 .large {
  display: block;
  padding: 0 0;
  font-size: 4rem;
  line-height: 1.8;
  position: relative;
  z-index: 0;
}
.sec_ttl02 .large::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -80px;
  width: 120px;
  height: 120px;
  box-sizing: border-box;
  border: 1px solid #283ead;
  border-radius: 50%;
  z-index: -1;
}
.sec_ttl02 a {
  display: block;
  padding: 0 4rem;
  position: relative;
}
.sec_ttl02 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bk.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .sec_ttl01 {
    padding: 0 0 0 1.5rem;
    font-size: 1.9rem;
  }
  .sec_ttl01::before {
    left: 0;
    width: 2px;
  }
  .sec_ttl01 .large {
    font-size: 2.6rem;
  }
  .sec_ttl01 .mark {
    border-bottom: 2px solid #e3e286;
  }
  .sec_ttl01 a {
    display: block;
    padding: 0 2rem 0 0;
  }
  .sec_ttl01 a::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    width: 12px;
    height: 18px;
    margin-left: 0;
  }

  .main_ttlBox01 .lead {
    padding: 0 0 0 2rem;
  }


  .sec_ttl02 {
    font-size: 2rem;
  }
  .sec_ttl02 .large {
    margin: 1rem 0 0;
    padding: 0 3.5rem;
    font-size: 2.4rem;
  }
  .sec_ttl02 .large::before {
    top: -22px;
    left: 0;
    width: 60px;
    height: 60px;
  }
  .sec_ttl02 a {
    padding: 0 2rem;
  }
  .sec_ttl02 a::after {
    width: 12px;
    height: 18px;
  }  
}



/*--------------------------------------
　テキスト
---------------------------------------*/
.contents_top p {
  margin: 3rem 0 3rem;
  font-size: 1.6rem;
  line-height: 2;
}

.txt {
  margin: 3rem 0 3rem;
  font-size: 1.6rem;
  text-align: justify;
  line-height: 2;
}

.lead {
  margin: 3rem 0 0!important;
  font-size: 1.6rem;
  line-height: 2;
}

p.caption {
  margin: 1rem 0 0 0!important;
  padding: 0 0 0.5rem 0;
  font-size: 1rem;
  line-height: 1.3;
}

.sec p {
  margin: 0 0 0;
}

@media screen and (max-width: 768px) {
  .contents_top p {
    margin: 2rem 0 2rem;
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .txt {
    margin: 2rem 0 2rem;
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .lead {
    margin: 2rem 0 0!important;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  
  p.caption {
    margin: 1rem 0 0 0!important;
    padding: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .sec p {
    margin: 0 0 0;
  }
}



/*--------------------------------------
　sec_lead
---------------------------------------*/
.sec_lead {
  padding: 10rem 0 0;
}

.sec_lead .lead_block {
  background: url("img/sec_lead_bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 7rem 5rem 7rem;
}

.sec_lead .logo {
  max-width: 420px;
  margin: auto;
  opacity: 0.4;
}

.sec_lead .txt {
  margin: 4rem 0 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec_lead {
    margin: -2rem 0 0;
    padding: 0 0 0;
  }

  .sec_lead .lead_block {
    background: url("img/sec_lead_bg_sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 4rem 2rem 4rem;
  }

  .sec_lead .logo {
    max-width: 80%;
  }

  .sec_lead .txt {
    margin: 2rem 0 0;
    text-align: justify;
  }
}



/*--------------------------------------
　toc_home
---------------------------------------*/
.toc_home {
  padding: 10rem 0 0;
}

.toc_home .toc_block {
  max-width: 800px;
  margin: auto;
  padding: 3rem 0 0;
  border-top: 1px solid #292929;
  position: relative;
}

.toc_home .toc_ttl {
  padding: 0 2rem;
  font-size: 3.4rem;
  letter-spacing: 0.05em;
}
.toc_home .toc_ttl span {
  margin-left: 2rem;
  color: #aeaeae;
  font-size: 2.2rem;
}

.toc_home ul li {
  padding: 2.5rem 2rem 2.5rem;
  font-size: 1.8rem;
  border-bottom: 1px solid #292929;
}
.toc_home ul li a {
  display: block;
  padding: 0 4rem 0 0;
  position: relative;
}
.toc_home ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url("img/arrow-bk.png") left top no-repeat;
  background-size: contain;
  width: 14px;
  height: 21px;
  box-sizing: border-box;
  transform: translate(0,-50%) rotate(90deg);
}

.toc_home .acc_btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f7f7f7;
  max-width: 220px;
  margin: auto;
  padding: 1.5rem 5rem;
  box-sizing: border-box;
  border: 1px solid #292929;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.4s;
  z-index: 2;
}
.toc_home .acc_btn::before,
.toc_home .acc_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  background: #292929;
  width: 18px;
  height: 1px;
  margin-top: -1px;
  transition: all 0.4s;
}
.toc_home .acc_btn::after {
  transform: rotate(90deg);
}
.toc_home .acc_btn.is-show::before {
  display: none;
}
.toc_home .acc_btn.is-show::after {
  transform: rotate(180deg);
}
.toc_home .acc_btn span {
  font-size: 1.6rem;
  font-weight: bold;
}
.toc_home .acc_btn span:before {
  content: "目次を開く";
}
.toc_home .acc_btn.is-show span:before {
  content: "目次を閉じる";
}
.toc_home .acc_box {
  overflow: hidden;
  position: relative;
}
.toc_home .acc_box.is-hide {
  height: 250px;
}
.toc_home .acc_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  background: -webkit-linear-gradient(top, rgba(247,247,247,0) 0%, rgba(247,247,247,.9) 50%, rgba(247,247,247,.9) 50%, #f7f7f7 100%);
  background: linear-gradient(top, rgba(247,247,247,0) 0%, rgba(247,247,247,.9) 50%, rgba(247,247,247,.9) 50%, #f7f7f7 100%);
  width: 100%;
  height: 150px;
  transition: all 0.4s;
  z-index: 1;
}
.toc_home .acc_btn.is-show + .acc_box::before {
  background: none;
  height: auto;
}
.toc_home .acc_inner {
  padding: 0 0 8rem;
}

@media screen and (max-width: 768px) {
  .toc_home {
    padding: 6rem 2rem 0;
  }

  .toc_home .toc_block {
    max-width: 100%;
    padding: 2rem 0 0;
  }

  .toc_home .toc_ttl {
    padding: 0 0;
    font-size: 2.4rem;
  }
  .toc_home .toc_ttl span {
    margin-left: 1rem;
    font-size: 1.9rem;
  }

  .toc_home ul li {
    padding: 1.5rem 0 1.5rem;
    font-size: 1.5rem;
  }
  .toc_home ul li a {
    display: block;
    padding: 0 4rem 0 0;
  }
  .toc_home ul li a::after {
    right: 5px;
    width: 10px;
    height: 15px;
  }

  .toc_home .acc_btn {
    max-width: 60%;
    padding: 1.2rem 4rem;
  }
  .toc_home .acc_btn::before,
  .toc_home .acc_btn::after {
    right: 10px;
    width: 14px;
  }
  .toc_home .acc_btn span {
    font-size: 1.5rem;
  }
}



/*--------------------------------------
　summary_parts
---------------------------------------*/
.contents_top .summary_block {
  padding: 7rem 0 7rem 6rem;
}
.contents_top .summary_block::after {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1s ease-out;
}
.contents_top .summary_parts .summary_ttl {
  text-align: center;
}
.contents_top .summary_parts .logo.isActive {
  animation-delay: 0.8s;
}
.contents_top .summary_parts .txt {
  font-size: 1.8rem;
  text-align: center;
}
.contents_top .summary_parts .txt.isActive {
  animation-delay: 0.8s;
}
.contents_top .summary_block.isActive::after {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.fadeInUp {
  opacity : 0;
  transition: all 0.3s linear;
}
.fadeInUp.isActive {
  -webkit-animation: fadeInUp 0.6s ease-in-out forwards;
          animation: fadeInUp 0.6s ease-in-out forwards;
  animation-delay: 0.5s;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (max-width: 768px) {
  .contents_top .summary_block {
    padding: 5rem 0 5rem 2rem;
  }
  .contents_top .summary_parts .txt {
    font-size: 1.5rem;
    text-align: justify;
  }
}



/*--------------------------------------
　com_parts
---------------------------------------*/
.com_parts_top {
  margin: 0 0 0;
  padding: 0 0 0;
}
.com_parts_top::after {
  display: none;
}
.com_parts_top .upper {
  display: block;
  margin: 5rem 0 0;
}
.com_parts_top .flexBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5rem 0 0;
}
.com_parts_top .flexBox .boxL {
  width: calc(100% - 500px);
}
.com_parts_top .fee_wrap {
  margin: 0 0 0;
}
.com_parts_top .btnBox {
  display: block;
  margin: 4rem 0 0;
}
.com_parts_top .btnBox > div {
  width: 90%;
  margin: 0 auto 3rem;
}
.com_parts_top .btnBox > div:last-of-type {
  margin: 0 auto 0;
}
.com_parts_top .btnBox .btn-web a {
  padding: 2rem 5rem;
}
.com_parts_top .btnBox .btn-web a::before{
	background: #2a4198;
}
.com_parts_top .btnBox .btn-form a {
  padding: 2rem 5rem;
}
.com_parts_top .flexBox .boxR {
  width: 480px;
}
.com_parts_top .txt {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .com_parts_top .upper {
    display: block;
    margin: 2rem 0 0;
  }
  .com_parts_top .flexBox {
    display: block;
    margin: 2rem 0 0;
  }
  .com_parts_top .flexBox .boxL {
    width: 100%;
  }
  .com_parts_top .fee_wrap {
    margin: 0 0 0;
  }
  .com_parts_top .btnBox {
    margin: 3rem 0 0;
  }
  .com_parts_top .btnBox > div {
    width: 90%;
    margin: 0 auto 1.5rem;
  }
  .com_parts_top .btnBox .btn-web a {
    padding: 1.8rem 4rem;
  }
  .com_parts_top .btnBox .btn-form a {
    padding: 1.8rem 4rem;
  }
  .com_parts_top .flexBox .boxR {
    width: 100%;
  }
  .com_parts_top .txt {
    text-align: justify;
  }
  .com_parts_top .imgBox {
    margin: 2rem 0 0;
  }
}



/*--------------------------------------
　list
---------------------------------------*/
.list li {
  margin: 0 0 2rem;
  padding: 0 0 0 3rem;
  position: relative;
}
.list li:last-child {
  margin: 0 0 0;
}
.list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  background: #d6dd77;
  width: 16px;
  height: 2px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .list li {
    margin: 0 0 1.5rem;
    padding: 0 0 0 2rem;
  }
  .list li::before {
    top: 10px;
    width: 10px;
    height: 1px;
  }
}



/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
  padding: 16rem 0 10rem;
  position: relative;
  z-index: 1;
}


.sec01_element {
  margin: 8rem 0 0;
}
.sec01_element .txtBox {
  width: calc(100% - 680px);
}
.sec01_element .element_ttl {
  font-size: 3rem;
}
.sec01_element .txt {
  margin: 5rem 0 0;
}
.sec01_element .imgBox {
  width: 610px;
}


.sec01_difference {
  margin: 16rem 0 0;
}

.sec01_difference .difference_block {
  margin: 14rem 0 0;
  position: relative;
  z-index: 0;
}
.sec01_difference .difference_block::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%,0);
  background: linear-gradient(90deg, #dbe1f2 0%, #dbe1f2 50%, #e5e5e5 50%, #e5e5e5 100%);
  width: 100vw;
  height: calc(100% - 200px);
  min-width: 1000px;
  box-sizing: border-box;
  z-index: -2;
}

.sec01_difference .difference_item02 {
  margin: 15rem 0 0;
}

.sec01_difference .lawyer {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10rem;
}
.sec01_difference .l_txt {
  display: flex;
  align-items: center;
  background: #fff;
  width: calc(50% - 4rem);
  font-size: 2.4rem;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
  position: relative;
}
.sec01_difference .l_txt:nth-child(1) {
  padding: 2rem 4rem 2rem 12rem;
}
.sec01_difference .l_txt:nth-child(2) {
  padding: 2rem 12rem 2rem 4rem;
}
.sec01_difference .l_txt::before {
  content: "";
  position: absolute;
  top: calc(50% - 30px);
  transform: translate(0,-50%);
  width: 210px;
  height: 250px;
  box-sizing: border-box;
}
.sec01_difference .l_txt:nth-child(1)::before {
  left: -100px;
  background: url("img/sec01_difference_illust01.png") left top no-repeat;
  background-size: contain;
}
.sec01_difference .l_txt:nth-child(2)::before {
  right: -100px;
  background: url("img/sec01_difference_illust02.png") left top no-repeat;
  background-size: contain;
}

.sec01_difference .item_inner {
  margin: 0 0 12rem;
}
.sec01_difference .item_inner:last-of-type {
  margin: 0 0 0;
}

.sec01_difference .difference_ttl01 {
  padding: 3px 0;
  font-size: 3rem;
  text-align: center;
  border-top: 1px solid #2a4198;
  border-bottom: 1px solid #2a4198;
}
.sec01_difference .difference_ttl01 span {
  display: block;
  background: #2a4198;
  padding: 2rem 0;
}

.sec01_difference .difference_box {
  display: flex;
  justify-content: space-between;
  margin: 6rem 0 0;
  width: 100%;
}
.sec01_difference .itemBox {
  width: 33.33%;
}
.sec01_difference .difference_box .itemBox.left {
  flex: 1;
}
.sec01_difference .difference_box .itemBox.center {
  width: 240px;
}
.sec01_difference .difference_box .itemBox.right {
  flex: 1;
}

.sec01_difference .difference_ttl02 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(100% + 50px);
  margin: 0 0 5rem 0;
  padding: 0 0 2rem;
  font-size: 2.2rem;
  border-bottom: 1px solid #292929;
}
.sec01_difference .difference_box .itemBox.center .difference_ttl02 {
  width: 0;
  margin: 0 0 5rem 0;
  border-bottom: none;
}
.sec01_difference .difference_box .itemBox.right .difference_ttl02 {
  margin: 0 0 5rem -5rem;
}

.sec01_difference .difference_box .txtBox {
  display: flex;
  align-items: center;
  margin: 0 0 6rem;
}
.sec01_difference .difference_box .txtBox:last-child {
  margin: 0 0 0;
}
.sec01_difference .itemBox.left .txtBox {
  padding: 0 4rem 0 0;
}
.sec01_difference .itemBox.right .txtBox {
  padding: 0 0 0 4rem;
}

.sec01_difference .difference_ttl03 {
  background: #fff;
  width: 240px;
  padding: 1.5rem 2rem;
  font-size: 1.8rem;
  text-align: center;
  border: 1px solid #283ead;
  border-radius: 100px;
}

.sec01_difference .summary_parts {
  margin: 12rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec01 {
    padding: 8rem 2rem 8rem;
  }


  .sec01_element {
    margin: 5rem 0 0;
  }
  .sec01_element .txtBox {
    width: 100%;
  }
  .sec01_element .element_ttl {
    font-size: 2.2rem;
  }
  .sec01_element .txt {
    margin: 2rem 0 0;
  }
  .sec01_element .imgBox {
    width: 100%;
    margin: 2rem 0 0;
  }


  .sec01_difference {
    margin: 8rem 0 0;
  }

  .sec01_difference .difference_block {
    margin: 8rem 0 0;
    position: relative;
  }
  .sec01_difference .difference_block::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%,0);
    background: #292929;
    width: 1px;
    height: calc(100% - 200px);
    margin: auto;
    box-sizing: border-box;
    z-index: -1;
  }
  .sec01_difference .difference_block::after {
    top: 60px;
    height: calc(100% - 200px);
    min-width: 100%;
    border-top: 1px solid #292929;
  }
  
  .sec01_difference .difference_item02 {
    margin: 8rem 0 0;
  }

  .sec01_difference .lawyer {
    width: calc(100% + 4rem);
    margin: 0 2rem 3rem -2rem;
  }
  .sec01_difference .l_txt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 8px);
    font-size: 1.7rem;
    text-align: center;
  }
  .sec01_difference .l_txt:nth-child(1) {
    padding: 1.5rem 0 1.5rem 0;
  }
  .sec01_difference .l_txt:nth-child(2) {
    padding: 1.5rem 0 1.5rem 0;
  }
  .sec01_difference .l_txt::before {
    top: inherit;
    bottom: calc(100% - 10px);
    transform: translate(-50%,0);
    width: 35%;
    height: 0;
    padding-top: calc(35%*250/210);
  }
  .sec01_difference .l_txt:nth-child(1)::before {
    left: 50%;
  }
  .sec01_difference .l_txt:nth-child(2)::before {
    left: 50%;
    right: inherit;
  }

  .sec01_difference .item_inner {
    margin: 0 0 5rem;
  }

  .sec01_difference .difference_ttl01 {
    padding: 2px 0;
    font-size: 2rem;
  }
  .sec01_difference .difference_ttl01 span {
    padding: 1.2rem 0;
  }
  
  .sec01_difference .itemBox.left .difference_ttl02,
  .sec01_difference .itemBox.right .difference_ttl02 {
    display: none;
  }
  

  .sec01_difference .difference_box {
    display: block;
    margin: 0 0 0;
    padding: 2rem 0 0;
  }
  .sec01_difference .itemBox.center {
    display: none;
  }

  /* タイトルを横並び */
  .sec01_difference .spTitleRow {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 0 2rem 0;
  }
  .sec01_difference .spTitle {
    display: flex;
    align-items: center;
    width: 46%;
    padding: 0 0 1.5rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #292929;
    font-family: "Zen Old Mincho", serif;
  }

  /* 既存のtxtBoxはSP時非表示 */
  .sec01_difference .itemBox.left .txt_wrap,
  .sec01_difference .itemBox.right .txt_wrap {
    display: none;
  }

  /* 行ラップ */
  .sec01_difference .txtRowWrap {
    margin-top: 3rem;
  }

  .sec01_difference .txtRow {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .sec01_difference .txtRow .txtItem {
    width: 46%;
    font-size: 1.6rem;
  }

  .sec01_difference .rowLabel {
    display: flex;
    justify-content: center;
    text-align: center;
    background: #fff;
    max-width: 70%;
    margin: 0 auto 2rem;
    padding: 8px 1rem;
    color: #233177;
    font-size: 1.4rem;
    font-weight: bold;
    border: 1px solid #283ead;
    border-radius: 100px;
    font-family: "Zen Old Mincho", serif;
  }
  

  .sec01_difference .summary_parts {
    margin: 6rem 0 0;
  }  
}



/*--------------------------------------
　upper_parts
---------------------------------------*/
.upper_parts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}
.upper_parts .main_ttlBox01 {
  width: calc(100% - 500px);
}
.upper_parts .imgBox {
  width: 460px;
}
.upper_parts .imgBox img {
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .upper_parts {
    display: block;
    max-width: 100%;
    padding: 0 2rem;
  }
  .upper_parts .main_ttlBox01 {
    width: 100%;
  }
  .upper_parts .main_ttl {
    position: relative;
    z-index: 1;
  }
  .upper_parts .sec_ttl01 {
    display: inline-block;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.5);
  }
  .upper_parts .imgBox {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 55%;
    margin: 0 0 0 auto;
    z-index: -1;
  } 
}



/*--------------------------------------
　sec02
---------------------------------------*/
.sec02 {
  background: #fff;
  padding: 10rem 0 0;
  margin: -10rem 0 0;
  position: relative;
  z-index: 0;
}
.sec02::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #fff;
  width: 100%;
  height: 260px;
  z-index: -1;
}


.sec02_terms01 .terms_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
}
.sec02_terms01 .terms_block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/pentagon.png") left bottom no-repeat;
  background-size: 100% auto;
  width: 776px;
  height: 728px;
  box-sizing: border-box;
  z-index: -1;
}

.sec02_terms01 .terms_item {
  width: 45%;
  margin: 0 0 10rem;
  text-align: center;
}
.sec02_terms01 .terms_item01 {
  width: 100%;
}

.sec02_terms01 .terms_ttl {
  display: inline-block;
  font-size: 3rem;
}
.sec02_terms01 .terms_item01 .terms_ttl {
  font-size: 4rem;
}
.sec02_terms01 .num {
  display: block;
  width: 64px;
  margin: auto;
}
.sec02_terms01 .terms_item01 .num {
  width: 125px;
  margin: auto;
}

.sec02_terms01 p.txt {
  display: inline-block;
  margin: 1.5rem 0 0;
  text-align: center;
}


.sec02_terms02 {
  padding: 10rem 0 0;
  position: relative;
  z-index: 1;
}
.sec02_terms02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: #dbe1f2;
  background-size: 690px auto;
  width: 100vw;
  height: calc(100% - 200px);
  min-width: 1000px;
  box-sizing: border-box;
  z-index: -1;
}
.sec02_terms02::after {
  content: "";
  position: absolute;
  top: calc(100% - 200px);
  left: 50%;
  transform: translate(-50%,0);
  background: #f7f7f7;
  width: 100vw;
  height: 200px;
  min-width: 1000px;
  box-sizing: border-box;
  z-index: -2;
}

.sec02_terms02 .com_parts {
  margin: 0 0 0;
  padding: 0 0 0;
}
.sec02_terms02 .com_parts::after {
  display: none;
}


.sec02_terms02 .com_parts .cc {
  margin: 3rem 0 0;
  padding: 0 0 0;
  font-size: 2.4rem;
  text-align: center;
}

.sec02_terms02 .terms_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 8rem 0 0;
  position: relative;
}
.sec02_terms02 .terms_block::after {
  content: "";
  position: absolute;
  top: calc(100% + 200px);
  right: 0;
  background: url("img/logo_gr02.png") right top no-repeat;
  background-size: contain;
  width: 1100px;
  height: 170px;
  margin: 0 -20rem 0 0;
  box-sizing: border-box;
}

.sec02_terms02 .terms_item {
  background: #fff;
  width: calc(50% - 2rem);
  margin: 18rem 0 -12rem;
  padding: 4rem 4rem 4rem;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.04);
}
.sec02_terms02 .terms_item:nth-child(odd) {
  margin: 0 0 -18rem;
}

.sec02_terms02 .cc_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec02_terms02 .cc_wrap::after {
  content: "";
  display: block;
  margin-left: 2rem;
  border-top: 1px solid #292929;
  flex-grow: 1;
}
.sec02_terms02 .cc {
  padding: 0 0 0 1.5rem;
  font-size: 2rem;
  position: relative;
}
.sec02_terms02 .num {
  width: 60px;
}

.sec02_terms02 .terms_ttl {
  margin: 3rem 0 0;
  font-size: 2.5rem;
}

.sec02_terms02 .txt {
  margin: 3rem 0 0;
}

.sec02 .summary_parts {
  margin: 42rem 0 0;
}


.sec02_sv {
  padding: 0 0 16rem;
}

.sec02_sv_upper {
  position: relative;
  z-index: 0;
}
.sec02_sv_upper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: #f7f7f7;
  width: 100vw;
  height: 100%;
  min-width: 1000px;
  box-sizing: border-box;
  z-index: -1;
}

.sec02_sv_upper .upper_inner {
  position: relative;
}
.sec02_sv_upper .upper_inner::before,
.sec02_sv_upper .upper_inner::after {
  content: "";
  display: block;
  background: #3c3c3c;
  width: 1px;
  height: 140px;
  margin: auto;
}
.sec02_sv_upper .upper_inner::after {
  margin: 4rem auto 0;
}

.sec02_sv_upper .sec02_sv_ttl {
  margin: -1.5rem 0 0;
  font-size: 4.2rem;
  text-align: center;
}
.sec02_sv_upper .sec02_sv_ttl .sub {
  display: inline-block;
  background: #2a4198;
  margin: 0 0 2rem;
  padding: 1rem 5px 1rem 2rem;
  font-size: 2.4rem;
}

.sec02_sv_upper .txt {
  margin: 2.5rem 0 0;
  text-align: center;
}

.sec02_sv .com_parts {
  margin: 0 0 0;
  padding: 16rem 0 0;
}
.sec02_sv .com_parts::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .sec02 {
    padding: 8rem 0 0;
    margin: -2rem 0 0;
  }
  .sec02::before {
    height: 220px;
  }


  .sec02_terms01 {
    margin: 8rem 0 0;
    padding: 0 2rem 8rem;
    position: relative;
  }
  
  .sec02_terms01 .pentagon_bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: calc(100% - 4rem);
    height: 95%;
    margin: auto;
  }
  .sec02_terms01 .pentagon {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    z-index: 1;
  }

  .sec02_terms01 .terms_block {
    display: block;
  }
  .sec02_terms01 .terms_block::after {
    display: none;
  }

  .sec02_terms01 .terms_item {
    width: 100%;
    margin: 0 0 4rem;
    text-align: left;
  }
  .sec02_terms01 .terms_item:last-child {
    margin: 0 0 0;
  }
  .sec02_terms01 .terms_item01 {
    width: 100%;
  }

  .sec02_terms01 .terms_ttl_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sec02_terms01 .terms_ttl {
    display: block;
    background: none;
    padding: 0 0 0 1rem;
    width: 80%;
    font-size: 2.4rem;
    position: relative;
  }
  .sec02_terms01 .terms_item01 .terms_ttl {
    width: 75%;
    padding: 0 0 0 1rem;
    font-size: 2.4rem;
  }
  .sec02_terms01 .num {
    width: 20%;
  }
  .sec02_terms01 .terms_item01 .num {
    width: 25%;
  }

  .sec02_terms01 p.txt {
    display: block;
    background: none;
    margin: 2rem 0 0;
    text-align: justify;
  }


  .sec02_terms02 {
    padding: 6rem 2rem 0;
  }
  .sec02_terms02::before {
    background: #dbe1f2 url("img/sec02_bg01.png") left -10px bottom no-repeat;
    background-size: 42% auto;
    width: 100vw;
    height: calc(100% - 400px);
    min-width: 100%;
  }
  .sec02_terms02::after {
    top: inherit;
    bottom: 0;
    width: 100vw;
    height: 100%;
    min-width: 100%;
  }
  
  .sec02_terms02 .com_parts .cc {
    margin: 2rem 0 0;
    font-size: 1.8rem;
  }
  .sec02_terms02 .com_parts .imgBox {
    margin: 2rem 0 0;
  }

  .sec02_terms02 .terms_block {
    display: block;
    margin: 5rem 0 0;
  }
  .sec02_terms02 .terms_block::after {
    top: calc(100% + 50px);
    background: url("img/logo_gr02.png") right top no-repeat;
    background-size: contain;
    width: 70%;
    height: 0;
    margin: 0 0 0 0;
    padding-top: calc(70%*170/990);
  }

  .sec02_terms02 .terms_item {
    width: 100%;
    margin: 0 0 2rem;
    padding: 3rem 2rem 3rem;
  }
  .sec02_terms02 .terms_item:nth-child(odd) {
    margin: 0 0 2rem;
  }

  .sec02_terms02 .cc_wrap::after {
    margin-left: 1rem;
  }
  .sec02_terms02 .cc {
    padding: 0 0 0 1.5rem;
    font-size: 1.5rem;
  }
  .sec02_terms02 .num {
    width: 50px;
  }

  .sec02_terms02 .terms_ttl {
    margin: 2rem 0 0;
    font-size: 1.8rem;
  }

  .sec02_terms02 .txt {
    margin: 2rem 0 0;
  }

  .sec02 .summary_parts {
    margin: 15rem 0 0;
  }


  .sec02_sv {
    padding: 0 0 8rem;
  }

  .sec02_sv_upper {
    padding: 0 2rem 0;
  }
  .sec02_sv_upper::before {
    min-width: 100%;
  }
  
  .sec02_sv_upper .upper_inner::before,
  .sec02_sv_upper .upper_inner::after {
    height: 70px;
  }
  .sec02_sv_upper .upper_inner::after {
    margin: 2rem auto 0;
  }

  .sec02_sv_upper .sec02_sv_ttl {
    margin: -1rem 0 0;
    font-size: 2.2rem;
  }
  .sec02_sv_upper .sec02_sv_ttl .sub {
    margin: 0 0 1rem;
    padding: 5px 5px 5px 1rem;
    font-size: 1.5rem;
  }

  .sec02_sv_upper .txt {
    margin: 1.5rem 0 0;
    text-align: justify;
  }
  
  .sec02_sv .com_parts {
    padding: 4rem 2rem 0;
  }  
}



/*--------------------------------------
　sec03
---------------------------------------*/
.sec03 {
  padding: 10rem 0 0;
}


.sec03_timing {
  display: flex;
  justify-content: space-between;
  margin: 8rem 0 0;
  padding: 0 0 4rem;
  position: relative;
  z-index: 0;
}
.sec03_timing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: #2a4198;
  width: 2px;
  height: 100%;
  margin: auto;
}
.sec03_timing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: linear-gradient(90deg, #dae1f4 0%, #dae1f4 50%, #d6ecf2 50%, #d6ecf2 100%);
  width: 100vw;
  height: 100%;
  min-width: 1000px;
  box-sizing: border-box;
  z-index: -2;
}

.sec03_timingBox {
  width: 50%;
  position: relative;
  z-index: 0;
}

.sec03_timingBox .sticky_illust {
  position: absolute;
  top: 350px; 
  width: 100%;
  height: 90%;
  pointer-events: none;
  z-index: -1;
}
.sec03_timingBox .illust_left {
  position: -webkit-sticky;
  position: sticky;
  top: 350px;
  left: 0;
  background: url("img/sec03_timing_illust03.png") no-repeat left top;
  background-size: contain;
  width: 590px;
  height: 560px;
  margin-left: -290px;
  opacity: 0.7;
}
.sec03_timingBox .illust_right {
  position: -webkit-sticky;
  position: sticky;
  top: 350px; 
  right: 0;
  background: url("img/sec03_timing_illust04.png") no-repeat right top;
  background-size: contain;
  width: 490px;
  height: 540px;
  margin-left: 290px;
  opacity: 0.4;
}


.sec03_timing .icon_txt {
  position: absolute;
  top: 15px;
  left: -65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2a4198;
  width: 130px;
  height: 130px;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 50%;
}
.sec03_timing .icon_txt::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%,0);
  background: #2a4198;
  width: 2px;
  height: 30px;
  margin: auto;
}


.sec03_timing .timing_ttl01 {
  display: flex;
  align-items: center;
  margin: 0 0 6rem;
  font-size: 3rem;
  position: relative;
}
.sec03_timingBox:nth-child(1) .timing_ttl01 {
  padding: 4rem 8rem 3rem 2rem;
}
.sec03_timingBox:nth-child(2) .timing_ttl01 {
  padding: 4rem 2rem 3rem 15rem;
}
.sec03_timing .timing_ttl01::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 160px;
  height: 150px;
  box-sizing: border-box;
}
.sec03_timingBox:nth-child(1) .timing_ttl01::before {
  right: 100%;
  background: url("img/sec03_timing_illust01.png") left top no-repeat;
  background-size: contain;
}
.sec03_timingBox:nth-child(2) .timing_ttl01::before {
  left: 100%;
  background: url("img/sec03_timing_illust02.png") left top no-repeat;
  background-size: contain;
}
.sec03_timing .timing_ttl01::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  z-index: -1;
}
.sec03_timingBox:nth-child(1) .timing_ttl01::after {
  right: 0;
  background: #b5c4e9;
}
.sec03_timingBox:nth-child(2) .timing_ttl01::after {
  left: 0;
  background: #add8e6;
}

.sec03_timingBox:nth-child(1) .timing_item {
  padding: 0 5rem 8rem 0;
}
.sec03_timingBox:nth-child(2) .timing_item {
  padding: 0 0 8rem 5rem;
}

.sec03_timing .timing_ttl02_wrap {
  display: table;
  width: 100%;
  position: relative;
}
.sec03_timing .sec03_timingBox:nth-child(1) .timing_ttl02_wrap::before {
  content: "";
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(100% + 40px);
  transform: translate(0,-50%);
  background: #2a4198;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: 1;
}

.sec03_timing .timing_ttl02 {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 2rem;
  font-size: 2.6rem;
  border-bottom: 1px solid #3c3c3c;
}
.sec03_timing .timing_ttl02 .small {
  font-size: 2rem;
}
.sec03_timing .timing_ttl02 a {
  display: block;
  padding: 0 3rem 0 0;
  position: relative;
}
.sec03_timing .timing_ttl02 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bk.png") left top no-repeat;
  background-size: contain;
  width: 14px;
  height: 21px;
  box-sizing: border-box;
}

.sec03_timing .txt {
  margin: 2rem 0 0;
}

.sec03_timing .point {
  background: #fff;
  margin: 3rem 0 0;
  padding: 3rem 3rem;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.04);
}
.sec03_timing .point_ttl {
  padding: 0 0 0 7rem;
  font-size: 2rem;
  position: relative;
}
.sec03_timing .point_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  width: 62px;
  height: 50px;
  box-sizing: border-box;
}
.sec03_timing .item_inner:nth-child(1) .point_ttl::before {
  background: url("img/sec03_icon01.png") left top no-repeat;
  background-size: contain;
}
.sec03_timing .item_inner:nth-child(2) .point_ttl::before {
  background: url("img/sec03_icon02.png") left top no-repeat;
  background-size: contain;
}
.sec03_timing .b_txt {
  position: relative;
}
.sec03_timing .b_txt::before {
  content: "";
  display: block;
  background: url("img/arrow_txt.png") left top no-repeat;
  background-size: contain;
  width: 12px;
  height: 21px;
  margin: 0 auto 1rem;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .sec03 {
    padding: 8rem 0 0;
  }


  .sec03_timing {
    margin: 8rem 0 0;
    padding: 0 0 2rem;
  }
  .sec03_timing::before {
    width: 1px;
  }
  .sec03_timing::after {
    min-width: 100%;
  }

  .sec03_timingBox {
    width: 50%;
    position: relative;
    z-index: 0;
  }
  
  .sec03_timingBox .sticky_illust {
    top: 150px; 
    height: 95%;
  }
  .sec03_timingBox .illust_left {
    top: 150px;
    width: 90%;
    height: 0;
    padding-top: calc(90%*560/590);
    margin-left: 0;
    margin: auto;
  }
  .sec03_timingBox .illust_right {
    top: 150px; 
    width: 90%;
    height: 0;
    padding-top: calc(90%*540/490);
    margin-left: 0;
    margin: auto;
  }

  .sec03_timing .icon_txt {
    top: 8px;
    left: -45px;
    width: 90px;
    height: 90px;
    font-size: 1.6rem;
  }
  .sec03_timing .icon_txt::before {
    width: 1px;
    height: 15px;
  }


  .sec03_timing .timing_ttl01 {
    margin: 0 0 3rem;
    font-size: 2rem;
    font-size: 4.5vw;
    text-align: center;
    position: relative;
  }
  .sec03_timingBox:nth-child(1) .timing_ttl01 {
    padding: 1.5rem 2rem 1.5rem 5rem;
  }
  .sec03_timingBox:nth-child(2) .timing_ttl01 {
    padding: 1.5rem 1.5rem 1.5rem 5rem;
  }
  .sec03_timing .timing_ttl01::before {
    bottom: calc(100% - 10px);
    transform: translate(-50%,0);
    width: 35%;
    height: 0;
    margin: auto;
    padding-top: calc(35%*150/160);
  }
  .sec03_timingBox:nth-child(1) .timing_ttl01::before {
    right: inherit;
    left: 50%;
  }
  .sec03_timingBox:nth-child(2) .timing_ttl01::before {
    left: 50%;
  }

  .sec03_timingBox:nth-child(1) .timing_item {
    padding: 0 2rem 4rem 2rem;
  }
  .sec03_timingBox:nth-child(2) .timing_item {
    padding: 0 2rem 4rem 2rem;
  }

  .sec03_timing .timing_ttl02_wrap {
    display: table;
    width: 100%;
    position: relative;
  }
  .sec03_timing .sec03_timingBox:nth-child(1) .timing_ttl02_wrap::before {
    top: calc(50% - 5px);
    left: calc(100% + 15px);
    width: 10px;
    height: 10px;
  }

  .sec03_timing .timing_ttl02 {
    padding: 0 0 1.5rem;
    font-size: 2rem;
  }
  .sec03_timing .timing_ttl02 .small {
    font-size: 1.5rem;
  }
  .sec03_timing .timing_ttl02 a {
    padding: 0 2rem 0 0;
  }
  .sec03_timing .timing_ttl02 a::after {
    width: 10px;
    height: 15px;
  }

  .sec03_timing .txt {
    margin: 1.5rem 0 0;
    line-height: 1.6;
  }

  .sec03_timing .point {
    margin: 2rem 0 0;
    padding: 1.5rem 1.5rem;
  }
  .sec03_timing .point_ttl {
    padding: 0 0 0 0;
    font-size: 1.6rem;
    font-size: 4vw;
    text-align: center;
  }
  .sec03_timing .point_ttl::before {
    display: block;
    position: relative;
    top: inherit;
    left: inherit;
    transform: translate(0,0);
    width: 35%;
    height: 0;
    margin: 0 auto 5px;
    padding-top: calc(35%*50/62);
  }
}



/*--------------------------------------
　sec04
---------------------------------------*/
.sec04 {
  padding: 10rem 0 0;
}


.sec04 .pageLink {
  margin: 5rem 0 0;
}
.sec04 .pageLink ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec04 .pageLink ul li {
  width: calc((100% - 60px) / 3);
  margin: 0 0 2rem 0;
  padding: 0 0 2rem;
  font-size: 2.2rem;
  border-bottom: 1px solid #292929;
}
.sec04 .pageLink ul li:nth-of-type(3n-1):nth-last-of-type(1) {
  margin: 0 auto 2rem 3rem;
}
.sec04 .pageLink ul li a {
  display: flex;
  align-items: center; 
  padding: 0 3rem 0 0;
  position: relative;
}
.sec04 .pageLink ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%) rotate(90deg);
  background: url("img/arrow-bk.png") left top no-repeat;
  background-size: contain;
  width: 14px;
  height: 21px;
  box-sizing: border-box;
}


.sec04_choose {
  padding: 0 0 16rem;
}

.sec04_choose .choose_item {
  display: flex;
  justify-content: space-between;
  padding: 12rem 0 0;
}

.sec04_choose .boxL {
  width: 420px;
}
.sec04_choose .choose_item:nth-child(even) .boxL {
  order: 2;
}

.sec04_choose .boxR {
  width: calc(100% - 480px);
}
.sec04_choose .choose_item:nth-child(even) .boxR {
  order: 1;
}

.sec04_choose .choose_ttl01 {
  padding: 0 0 2rem 0;
  font-size: 3.2rem;
  border-bottom: 1px solid #292929;
  position: relative;
  z-index: 0;
}
.sec04_choose .choose_ttl01::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -40px;
  width: 75px;
  height: 75px;
  box-sizing: border-box;
  border: 1px solid #c1c0c7;
  border-radius: 50%;
  z-index: -1;
}
.sec04_choose .choose_ttl01 a {
  display: inline-block;
  padding: 0 4rem 0 0;
  position: relative;
}
.sec04_choose .choose_ttl01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bk.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
  box-sizing: border-box;
}

.sec04_choose .list {
  margin: 3rem 0 0;
}

.sec04_choose .btn-link a {
  margin: 4rem 0 0;
}


.sec04_sv {
  background: #fff;
  padding: 12rem 0 0;
  position: relative;
  z-index: 0;
}
.sec04_sv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: #fff;
  width: 100vw;
  height: 100%;
  min-width: 1000px;
  box-sizing: border-box;
  z-index: -1;
}

.sec04_sv .summary_parts {
  position: relative;
}
.sec04_sv .summary_parts::after {
  content: "";
  display: block;
  background: #292929;
  width: 1px;
  height: 100px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .sec04 {
    padding: 12rem 0 0;
  }


  .sec04 .pageLink {
    margin: 3rem 0 0;
    padding: 0 3rem;
    position: relative;
  }
  .sec04 .pageLink ul {
    display: block;
  }
  .sec04 .pageLink ul li {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1.5rem;
    font-size: 1.6rem;
  }
  .sec04 .pageLink ul li:nth-of-type(3n-1):nth-last-of-type(1) {
    margin: 0 0 1.5rem 0;
  }
  .sec04 .pageLink ul li a {
    display: block;
    padding: 0 2rem 0 0;
  }
  .sec04 .pageLink ul li a::after {
    width: 10px;
    height: 15px;
  }
  
  .sec04 .pageLink .acc_btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f7f7;
    max-width: 60%;
    margin: auto;
    padding: 1.2rem 4rem;
    box-sizing: border-box;
    border: 1px solid #292929;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.4s;
    z-index: 2;
  }
  .sec04 .pageLink .acc_btn::before,
  .sec04 .pageLink .acc_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    background: #292929;
    width: 14px;
    height: 1px;
    margin-top: -1px;
    transition: all 0.4s;
  }
  .sec04 .pageLink .acc_btn::after {
    transform: rotate(90deg);
  }
  .sec04 .pageLink .acc_btn.is-show::before {
    display: none;
  }
  .sec04 .pageLink .acc_btn.is-show::after {
    transform: rotate(180deg);
  }
  .sec04 .pageLink .acc_btn span {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .sec04 .pageLink .acc_btn span:before {
    content: "他の業界を見る";
  }
  .sec04 .pageLink .acc_btn.is-show span:before {
    content: "閉じる";
  }
  .sec04 .pageLink .acc_box {
    overflow: hidden;
    position: relative;
  }
  .sec04 .pageLink .acc_box.is-hide {
    height: 200px;
  }
  .sec04 .pageLink .acc_box::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: -webkit-linear-gradient(top, rgba(247,247,247,0) 0%, rgba(247,247,247,.9) 50%, rgba(247,247,247,.9) 50%, #f7f7f7 100%);
    background: linear-gradient(top, rgba(247,247,247,0) 0%, rgba(247,247,247,.9) 50%, rgba(247,247,247,.9) 50%, #f7f7f7 100%);
    width: 100%;
    height: 150px;
    transition: all 0.4s;
    z-index: 1;
  }
  .sec04 .pageLink .acc_btn.is-show + .acc_box::before {
    background: none;
    height: auto;
  }
  .sec04 .pageLink .acc_inner {
    padding: 0 0 6rem;
  }

  
  .sec04_choose {
    padding: 0 2rem 6rem;
  }

  .sec04_choose .choose_item {
    display: block;
    padding: 6rem 0 0;
  }

  .sec04_choose .boxL {
    width: 100%;
  }

  .sec04_choose .boxR {
    width: 100%;
    margin: 3rem 0 0;
  }

  .sec04_choose .choose_ttl01 {
    padding: 0 0 1.5rem 2rem;
    font-size: 2.2rem;
  }
  .sec04_choose .choose_ttl01::before {
    top: -15px;
    left: 0;
    width: 45px;
    height: 45px;
  }
  .sec04_choose .choose_ttl01 a {
    padding: 0 3rem 0 0;
  }
  .sec04_choose .choose_ttl01 a::after {
    width: 12px;
    height: 18px;
  }

  .sec04_choose .list {
    margin: 2rem 0 0;
  }

  .sec04_choose .btn-link a {
    margin: 3rem 0 0;
  }
  
  
  .sec04_sv {
    padding: 4rem 2rem 0;
  }
  .sec04_sv::after {
    min-width: 100%;
  }
  
  .sec04_sv .summary_parts::after {
    height: 60px;
  }
}



/*--------------------------------------
　sec05
---------------------------------------*/
.sec05 {
  padding: 0 0 0;
}


.sec05_upper .main_ttlBox01 {
  width: calc(100% - 410px);
}
.sec05_upper .imgBox {
  width: 410px;
}
.sec05_upper .imgBox img {
  display: block;
  border-radius: 0;
  mix-blend-mode: multiply;
}


.sec05_think01 {
  margin: 8rem 0 0;
}
.sec05_think01 .sec_ttl02 {
  position: relative;
  z-index: 0;
}
.sec05_think01 .sec_ttl02::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -40px;
  width: 70px;
  height: 70px;
  box-sizing: border-box;
  border: 1px solid #c1c0c7;
  border-radius: 50%;
  z-index: -1;
}
.sec05_think01 .think_block {
  display: flex;
  justify-content: space-between;
  margin: 8rem 0 0;
}
.sec05_think01 .think_item {
  width: 50%;
  position: relative;
  z-index: 0;
}
.sec05_think01 .think_item:nth-child(1) {
  background: #d8e1f6;
  padding: 8rem 4rem 8rem 6rem; 
}
.sec05_think01 .think_item:nth-child(2) {
  background: #d3ecf3;
  padding: 8rem 6rem 8rem 4rem; 
}
.sec05_think01 .think_item::before {
  content: "";
  position: absolute;
  top: 40px;
  box-sizing: border-box;
  z-index: -1;
}
.sec05_think01 .think_item:nth-child(1)::before {
  left: -120px;
  background: url("img/eng_a.png") left top no-repeat;
  background-size: contain;
  width: 290px;
  height: 280px;
}
.sec05_think01 .think_item:nth-child(2)::before {
  right: -120px;
  background: url("img/eng_b.png") left top no-repeat;
  background-size: contain;
  width: 240px;
  height: 270px;
}
.sec05_think01 .think_ttl_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sec05_think01 .think_ttl {
  font-size: 3rem;
}
.sec05_think01 .think_ttl .sub {
  display: inline-block;
  background: #2a4198;
  margin: 0 0 2rem;
  padding: 5px 1rem;
  font-size: 1.8rem;
}
.sec05_think01 .txt {
  margin: 2rem 0 0;
  text-align: center;
}
.sec05_think01 .list_wrap {
  background: #fff;
  margin: 3rem 0 0;
  padding: 3rem 3rem 3rem;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.04);
}
.sec05_think01 .md {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3rem 0 0;
}
.sec05_think01 .md dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  padding: 2rem 0;
  font-weight: bold;
  text-align: center;
  border-bottom: 3px solid #3c3c3c;
}
.sec05_think01 .md dd {
  display: flex;
  align-items: center;
  width: 70%;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #c1c0c7;
}


.sec05_think02 {
  margin: 12rem 0 0;
}
.sec05_think02 .think_block {
  margin: 8rem 0 0;
}
.sec05_think02 .cc {
  font-size: 2.8rem;
  text-align: center;
  position: relative;
}
.sec05_think02 .cc::after {
  content: "";
  display: block;
  background: #292929;
  width: 1px;
  height: 45px;
  margin: 2rem auto 0;
}
.sec05_think02 .think_item {
  background: #fff;
  padding: 5rem 8rem 5rem;
}


.sec05_think03 {
  margin: 12rem 0 0;
  padding: 0 0 10rem;
}
.sec05_think03 .think_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 6rem 0 0;
}
.sec05_think03 .think_item {
  background: #fff;
  width: calc(50% - 2rem);
  margin: 8rem 0 -4rem;
  padding: 4rem 5rem 4rem;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.04);
}
.sec05_think03 .think_item:nth-child(odd) {
  margin: 0 0 -4rem;
}
.sec05_think03 .think_ttl {
  padding: 0 0 0 2rem;
  font-size: 2.6rem;
  border-left: 4px solid #e3e286;
}
.sec05_think03 .txt {
  margin: 2rem 0 0;
  padding: 0 0 0 2rem;
}


.sec05_think04 {
  margin: 12rem 0 0;
  padding: 12rem 0 12rem;
  position: relative;
  z-index: 0;
}
.sec05_think04::before {
  content: "";
  position: absolute;
  top: -62px;
  left: 50%;
  transform: translate(-50%,0);
  background: #292929;
  width: 1px;
  height: 124px;
  box-sizing: border-box;
  z-index: -1;
}
.sec05_think04::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: #fff;
  width: 100vw;
  height: calc(100% + 80px);
  min-width: 1000px;
  box-sizing: border-box;
  z-index: -2;
}
.sec05_think04 .think_block {
  width: calc(100% + 200px);
  margin: 8rem 100px 0 -100px;
}
.sec05_think04 .think_item {
  margin: 0 0 16rem;
  position: relative;
}
.sec05_think04 .think_item:last-child {
  margin: 0 0 0;
}
.sec05_think04 .boxL {
  position: absolute;
  top: 0;
  left: 0;
  width: 650px;
}
.sec05_think04 .think_item:nth-child(even) .boxL {
  left: inherit;
  right: 0;
}
.sec05_think04 .boxR {
  width: 690px;
  margin: 0 0 8rem auto;
}
.sec05_think04 .think_item:nth-child(even) .boxR {
  margin: 0 0 8rem 0;
}
.sec05_think04 .txtBox {
  background: rgba(255,255,255,0.9);
  padding: 5rem 5rem 5rem;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.04);
  position: relative;
  top: 80px;
}
.sec05_think04 .think_ttl {
  padding: 0 0 2rem;
  font-size: 2.4rem;
  border-bottom: 1px solid #c1c0c7;
  position: relative;
}
.sec05_think04 .think_ttl::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -50px;
  background: #e3e286;
  width: 35px;
  height: 3px;
  box-sizing: border-box;
}
.sec05_think04 .txt {
  margin: 3rem 0 0;
}


.sec05 .com_parts {
  margin: 20rem 0 0;
  padding: 0 0 0;
}
.sec05 .com_parts::after {
  display: none;
}

.sec05 .com_parts .txt {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec05 {
    padding: 5rem 0 0;
    margin: -4rem 0 0;
  }


  .sec05_upper .main_ttlBox01 {
    width: 100%;
  }
  .sec05_upper .imgBox {
    width: 50%;
  }
  .sec05_upper .imgBox img {
    display: block;
    border-radius: 0;
    mix-blend-mode: multiply;
  }


  .sec05_think01 {
    margin: 5rem 0 0;
    padding: 0 1rem;
  }
  .sec05_think01 .sec_ttl02 {
    font-size: 2rem;
  }
  .sec05_think01 .sec_ttl02::before {
    top: -10px;
    left: 30px;
    width: 40px;
    height: 40px;
  }
  .sec05_think01 .think_block {
    display: block;
    width: calc(100% + 4rem);
    margin: 4rem 2rem 0 -2rem;
    padding: 0 2rem;
  }
  .sec05_think01 .think_item {
    width: 100%;
  }
  .sec05_think01 .think_item:nth-child(1) {
    padding: 4rem 2rem 4rem 2rem; 
  }
  .sec05_think01 .think_item:nth-child(2) {
    padding: 4rem 2rem 4rem 2rem; 
  }
  .sec05_think01 .think_item::before {
    top: 50px;
  }
  .sec05_think01 .think_item:nth-child(1)::before {
    left: 0;
    width: 40%;
    height: 0;
    padding-top: calc(40%*280/290);
  }
  .sec05_think01 .think_item:nth-child(2)::before {
    right: 0;
    width: 35%;
    height: 0;
    padding-top: calc(35%*270/240);
  }
  .sec05_think01 .think_ttl_wrap {
    display: block;
  }
  .sec05_think01 .think_ttl {
    font-size: 2.4rem;
  }
  .sec05_think01 .think_ttl .sub {
    margin: 0 0 1rem;
    padding: 5px 5px;
    font-size: 1.8rem;
  }
  .sec05_think01 .txt {
    margin: 1.5rem 0 0;
  }
  .sec05_think01 .list_wrap {
    margin: 2rem 0 0;
    padding: 2rem 2rem 2rem;
  }
  .sec05_think01 .md {
    margin: 2rem 0 0;
  }
  .sec05_think01 .md dt {
    width: 30%;
    padding: 1.5rem 0;
    border-bottom: 2px solid #3c3c3c;
  }
  .sec05_think01 .md dd {
    width: 70%;
    padding: 1.5rem 1.5rem;
  }


  .sec05_think02 {
    margin: 5rem 0 0;
    padding: 0 1rem;
  }
  .sec05_think02 .think_block {
    margin: 4rem 0 0;
  }
  .sec05_think02 .cc {
    font-size: 1.6rem;
  }
  .sec05_think02 .cc::after {
    height: 25px;
    margin: 1rem auto 0;
  }
  .sec05_think02 .think_item {
    padding: 3rem 2rem 3rem;
  }


  .sec05_think03 {
    margin: 6rem 0 0;
    padding: 0 2rem 0;
  }
  .sec05_think03 .think_block {
    display: block;
    margin: 4rem 0 0;
  }
  .sec05_think03 .think_item {
    width: 100%;
    margin: 0 0 2rem;
    padding: 2rem 2rem 2rem;
  }
  .sec05_think03 .think_item:nth-child(odd) {
    margin: 0 0 2rem;
  }
  .sec05_think03 .think_ttl {
    padding: 0 0 0 1rem;
    font-size: 1.8rem;
    border-left: 2px solid #e3e286;
  }
  .sec05_think03 .txt {
    margin: 1.5rem 0 0;
    padding: 0 0 0 1rem;
  }

  .sec05_think04 {
    margin: 6rem 0 0;
    padding: 6rem 2rem 6rem;
  }
  .sec05_think04::before {
    top: -30px;
    height: 60px;
  }
  .sec05_think04::after {
    height: 100%;
    min-width: 100%;
  }
  .sec05_think04 .think_block {
    width: 100%;
    margin: 4rem 0 0 0;
  }
  .sec05_think04 .think_item {
    margin: 0 0 4rem;
  }
  .sec05_think04 .boxL {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    margin: 0 0 0 -1rem;
  }
  .sec05_think04 .think_item:nth-child(even) .boxL {
    left: inherit;
    right: inherit;
  }
  .sec05_think04 .boxR {
    width: 100%;
    margin: -4rem -2rem 0 1rem;
  }
  .sec05_think04 .think_item:nth-child(even) .boxR {
    margin: -4rem -2rem 0 1rem;
  }
  .sec05_think04 .txtBox {
    padding: 2rem 2rem 2rem ;
    top: 0;
  }
  .sec05_think04 .think_ttl {
    padding: 0 0 1.5rem;
    font-size: 1.8rem;
  }
  .sec05_think04 .think_ttl::before {
    top: 13px;
    left: -20px;
    width: 15px;
    height: 2px;
  }
  .sec05_think04 .txt {
    margin: 2rem 0 0;
  }

  .sec05 .com_parts {
    margin: 6rem 0 0;
  }
}

