@charset "utf-8";

/*--------------------------------------
　animation
---------------------------------------*/
.title_Bg01 {
  position: relative;
}
.title_Bg01::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.title_Bg01.isActive::after {
  -webkit-animation: TitleBg01 1s ease-in-out forwards;
  animation: TitleBg01 1s ease-in-out forwards;
  animation-delay: 0.3s;
}

@keyframes TitleBg01 {
  100% {
    transform: translateX(-100%);
  }
}


.fadeInUp {
  opacity: 0;
  transition: all 0.3s linear;
}
.fadeInUp.isActive {
  -webkit-animation: fadeInUp 0.5s ease-in-out forwards;
          animation: fadeInUp 0.5s ease-in-out forwards;
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


.fadeIn {
  opacity: 0;
  transition: all 0.3s linear;
}
.fadeIn.isActive {
  -webkit-animation: fadeInAnime 1s ease-in-out forwards;
          animation: fadeInAnime 1s ease-in-out forwards;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}





/*--------------------------------------
　Header
---------------------------------------*/
.header_home {
  position: absolute;
  top: 0;
  left: 0;
  widows: 100%;
  z-index: 1;
}





/*--------------------------------------
　MV
---------------------------------------*/
.mv_home {
  background: url("img/mv_home_bg.jpg") top -270px center no-repeat;
  width: 100%;
  height: 580px;
  min-width: 1000px;
  padding: 12rem 0 0;
  box-sizing: border-box;
  background-size: cover;
}

.mv_home .mv_ttl_wrap {
  max-width: 50%;
  padding: 5rem 5rem 5rem 0;
  box-sizing: border-box;
  transition: all 0.3s;
  position: relative;
  z-index: 0;
}
.mv_home .mv_ttl_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.9);
  width: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.3s;
  -webkit-animation: mvTitleBg 0.8s ease-in-out forwards;
          animation: mvTitleBg 0.8s ease-in-out forwards;
  animation-delay: 0.3s;
}

@keyframes mvTitleBg {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.mv_home .mv_ttl_box {
  max-width: 500px;
  margin: 0 0 0 auto;
  -webkit-animation: mvfadeInUp 0.5s ease-in-out forwards;
          animation: mvfadeInUp 0.5s ease-in-out forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

@keyframes mvfadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.mv_home .sub_ttl {
  display: inline-block;
  padding: 1.5rem 2rem;
  font-size: 2.5rem;
  position: relative;
}
.mv_home .sub_ttl:before,
.mv_home .sub_ttl:after {
  content: "";
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  position: absolute;
}
.mv_home .sub_ttl::before {
  top: 0;
  left: 0;
  border-top: 1px solid #c90d2e;
  border-left: 1px solid #c90d2e;
}
.mv_home .sub_ttl::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #c90d2e;
  border-right: 1px solid #c90d2e;
}

.mv_home .mv_ttl {
  margin: 2rem 0 0;
}
.mv_home .mv_ttl span {
  box-sizing: border-box;
  color: #fff;
  font-size: 3rem;
}
.mv_home .mv_ttl .bg {
  display: inline-block;
  background: #c90d2e;
  padding: 1rem 1rem;
  line-height: 1.1;
}
.mv_home .mv_ttl .spn01 {
  font-size: 4rem;
}
.mv_home .mv_ttl .dot {
  background-image: radial-gradient(circle at center, #fff 15%, transparent 15%);
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  padding: 2rem 0 0;
}
@media screen and (max-width: 1520px) {
  .mv_home {
    background: url("img/mv_home_bg.jpg") center top -140px no-repeat;
    background-size: cover;
  }
}
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .mv_home {
    background: #fafafc url(img/mv_home_img_sp.png) top 90px right -14px no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: auto;
    min-width: 100%;
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  .mv_home::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    /* background: url("img/mv_home_img_sp.png") left top no-repeat; */
    background-size: 100% auto;
    width: 100%;
    height: auto;
    padding-top: calc(100%*370/660);
    mix-blend-mode: multiply;
    z-index: -1;
  }

  .mv_home .mv_ttl_wrap {
    max-width: 100%;
    padding: 2rem 1.5rem 2rem 1.5rem;
  }

  .mv_home .mv_ttl_box {
    max-width: 100%;
    margin: 0 0 0 0;
  }


  .mv_home .mv_ttl_wrap::after{
    background:none;
  }
  .mv_home .sub_ttl {
    padding: 1rem 1.2rem;
    font-size: 6vw;
  }
  .mv_home .sub_ttl:before,
  .mv_home .sub_ttl:after {
    width: 16px;
    height: 16px;
  }

  .mv_home .mv_ttl {
    margin: 1.5rem 0 0;
  }
  .mv_home .mv_ttl span {
    font-size: 4.2vw;
  }
  .mv_home .mv_ttl .bg {
    padding: 1.5rem 0.8rem 1rem;
  }
  .mv_home .mv_ttl .bg.bg01 {
    background: none;
    padding: 0 0;
  }
  .mv_home .mv_ttl .spn01 {
    font-size: 6.2vw;
  }
  .mv_home .mv_ttl .dot {
    padding: 1.2rem 0 0;
  }
  .mv_home .mv_ttl .sp_bg {
    display: inline-block;
    background: #c90d2e;
    padding: 0.8rem 0.8rem;
    font-size: 5vw;
    line-height: 1;
  }
}





/*--------------------------------------
　Main Index
---------------------------------------*/
.contents_top {
  width: 100%;
  min-width: 1000px;
  margin: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.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;
}

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





/*--------------------------------------
　Title
---------------------------------------*/
.main_ttl01 {
  position: relative;
  z-index: 0;
}
.main_ttl01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #30323e;
  width: 0;
  height: 100%;
  z-index: -1;
}
.main_ttl01.isActive::after {
  -webkit-animation: mainttlBg01 0.8s ease-in-out forwards;
  animation: mainttlBg01 0.8s ease-in-out forwards;
  animation-delay: 0.4s;
}
@keyframes mainttlBg01 {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}

.main_ttl01 .main_ttl01_inner {
  position: relative;
  z-index: 0;
}
.main_ttl01 .main_ttl01_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #30323e;
  width: 0;
  height: 100%;
  z-index: -1;
}
.main_ttl01 .main_ttl01_inner.isActive::after {
  -webkit-animation: mainttlBg02 0.4s ease-in-out forwards;
  animation: mainttlBg02 0.4s ease-in-out forwards;
  animation-delay: 0.8s;
}
@keyframes mainttlBg02 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.main_ttl01 .main_ttl_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0 5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}

.main_ttl01 .icon {
  width: 156px;
  box-sizing: border-box;
}

.main_ttl01 .m_ttl {
  width: calc(100% - 156px);
  padding: 0 0 0 2.5rem;
  box-sizing: border-box;
  font-size: 3.4rem;
}
.main_ttl01 .m_ttl .bg {
  display: inline-block;
  background: #fff;
  margin: 1rem 0 0;
  padding: 1rem 1.5rem;
  color: #30323e;
}
.main_ttl01 .m_ttl .sub {
  display: inline-block;
  background: #bc9a22;
  margin: 0 0 1.5rem;
  padding: 0.5rem 1.5rem;
  color: #fff;
  font-size: 1.8rem;
}

.main_ttl01 .m_ttl a  {
  padding: 0 3rem 0 0;
  position: relative;
}
.main_ttl01 .m_ttl a:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .main_ttl01 {
    width: calc(100% - 20px);
    text-align: center;
  }
  .main_ttl01::after {
    display: none;
  }
  
  .main_ttl01 .main_ttl01_inner.isActive::after {
    -webkit-animation: mainttlBg02 0.8s ease-in-out forwards;
    animation: mainttlBg02 0.8s ease-in-out forwards;
    animation-delay: 0s;
  }

  .main_ttl01 .main_ttl_box {
    display: block;
    padding: 2rem 1.5rem 2rem;
  }

  .main_ttl01 .icon {
    width: 30%;
    margin: auto;
  }

  .main_ttl01 .m_ttl {
    width: 100%;
    margin: 1rem 0 0;
    padding: 0 0 0 0;
    font-size: 1.8rem;
  }
  .main_ttl01 .m_ttl .bg {
    margin: 1rem 0 0;
    padding: 0.5rem 1rem;
    font-weight: bold;
  }
  
  .main_ttl01 .m_ttl .sub {
    margin: 0 0 1rem;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }

  .main_ttl01 .m_ttl a  {
    padding: 0 2rem 0 0;
  }
  .main_ttl01 .m_ttl a:after{
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}





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

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

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

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

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

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

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





/*--------------------------------------
　side_bg
---------------------------------------*/
.side_bg01{
  position: relative;
  z-index: 0;
}
.side_bg01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  width: 100%;
  height: 100%;
  margin: 0 0 0 8rem;
  z-index: -1;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .side_bg01::before {
    display: none;
  }
}





/*--------------------------------------
　parts01
---------------------------------------*/
.parts01 p {
  margin: 0 0 0;
}

.parts01_block {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 6rem 7rem 6rem;
  box-sizing: border-box;
  border: 1px solid #d2d2d2;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
  position: relative;
}
.parts01_block::before,
.parts01_block::after {
  content: "";
  position: absolute;
  background: url("img/deco_line_01.png") left top no-repeat;
  background-size: 100% auto;
  width: 70px;
  height: 70px;
}
.parts01_block::before {
  top: -18px;
  left: -18px;
}
.parts01_block::after {
  bottom: -18px;
  right: -18px;
}

.parts01_block .l_box {
  margin: auto 0;
  width: 90px;
  box-sizing: border-box;
}

.parts01_block .r_box {
  width: calc(100% - 90px);
  padding: 0 0 0 6rem;
  box-sizing: border-box;
}

.parts01_block .parts01_ttl {
  background: #c1d3e1;
  padding: 2rem 3rem;
  font-size: 2.6rem;
  line-height: 1.4;
  position: relative;
  font-weight: bold;
}
.parts01_block .parts01_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  background: #c1d3e1;
  width: 70px;
  height: 100%;
}

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

.parts01_block .btn-link a {
  margin: 2rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .parts01_block {
    display: block;
    padding: 3rem 2rem 3rem;
  }
  .parts01_block::before,
  .parts01_block::after {
    background: url("img/deco_line_01.png") left top no-repeat;
    background-size: 100% auto;
    width: 40px;
    height: 40px;
  }
  .parts01_block::before {
    top: -10px;
    left: -10px;
  }
  .parts01_block::after {
    bottom: -10px;
    right: -10px;
  }

  .parts01_block .l_box {
    width: 100%;
  }

  .parts01_block .r_box {
    width: 100%;
    padding: 0 0 0 0;
  }

  .parts01_block .parts01_ttl_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .parts01_block .zenken_logo {
    width: 25%;
    box-sizing: border-box;
  }
  
  .parts01_block .parts01_ttl {
    width: 65%;
    padding: 1rem 0 1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .parts01_block .parts01_ttl::after {
    width: 20px;
  }

  .parts01_block .txt {
    margin: 1.5rem 0 0;
  }

  .parts01_block .btn-link a {
    margin: 1.5rem 0 0;
  }
}





/*--------------------------------------
　parts02
---------------------------------------*/
.parts02 p {
  margin: 0 0 0;
}

.parts02_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 6rem 7rem 6rem;
  box-sizing: border-box;
  border: 1px solid #d2d2d2;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
  position: relative;
}

.parts02_block .l_box {
  width: 90px;
  box-sizing: border-box;
}

.parts02_block .r_box {
  width: calc(100% - 90px);
  padding: 0 0 0 9rem;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.parts02_block .r_box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(0,-50%);
  background: url("img/eng_q.png") left top no-repeat;;
  background-size: 100% auto;
  width: 120px;
  height: 150px;
  z-index: -1;
}

.parts02_block .parts02_ttl {
  font-size: 2.6rem;
  line-height: 1.4;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .parts02_block {
    padding: 3rem 2rem 3rem;
  }

  .parts02_block .l_box {
    width: 25%;
  }

  .parts02_block .r_box {
    width: 75%;
    padding: 0 0 0 2rem;
  }
  .parts02_block .r_box::after {
    left: 0;
    background: url("img/eng_q.png") left top no-repeat;
    background-size: contain;
    width: 72px;
    height: 90px;
  }

  .parts02_block .parts02_ttl {
    font-size: 1.7rem;
    font-weight: bold;
  }
}





/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
  padding: 7rem 0 26rem;
  overflow: hidden;
}

.sec01 p {
  margin: 1rem 0;
}

.sec01 .eng {
  width: 290px;
  position: relative;
  left: -30px;
}

.sec01 .m_ttl_box {
  margin: -3rem 0 0;
  padding: 0 0 2rem;
  border-bottom: 1px solid #bdbdbd;
  position: relative;
}
.sec01 .m_ttl_box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  background: #c90d2e;
  width: 60px;
  height: 2px;
}
.sec01 .m_ttl_box .m_ttl {
  font-size: 3.2rem;
}


.sec01 .arrow {
  width: 100px;
  margin: 11rem auto 9rem;
}


.sec01_block01 {
  position: relative;
  z-index: 0;
}
.sec01_block01::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 60%;
  background: url("img/sec01_bg_01.png") left top no-repeat;
  background-size: 100% auto;
  width: 730px;
  height: 350px;
  z-index: -1;
}

.sec01_block01 .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec01_block01 .l_box {
  width: 50%;
  box-sizing: border-box;
}

.sec01_block01 .r_box {
  width: 50%;
  box-sizing: border-box;
}

.sec01_block01 .img_box {
  width: 440px;
  margin: 0 0 0 auto;
}


.sec01_block02 .ttl_box {
  text-align: center;
  position: relative;
  z-index: 0;
}
.sec01_block02 .ttl_box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("img/sec01_bg_02.jpg") right -77px center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sec01_block02 .ttl_box .inner {
  padding: 5rem 0 5rem;
  box-sizing: border-box;
  position: relative;
}
.sec01_block02 .ttl_box .inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #fff;
  width: 100%;
  height: 100%;
}
.sec01_block02 .ttl_box .ttl {
  font-size: 3.2rem;
  line-height: 1.8;
}
.sec01_block02 .ttl_box .bg {
  background: #c90d2e;
  padding: 1.5rem 1rem;
  color: #fff;
  font-size: 4rem;
}

.sec01_block02 .txt_box {
  max-width: 50%;
  margin: 8rem auto 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec01 {
    padding: 6rem 0 6rem;
  }

  .sec01 .eng {
    width: 40%;
    left: -15px;
  }

  .sec01 .m_ttl_box {
    margin: -2rem 0 0;
    padding: 0 0 1.5rem;
  }
  .sec01 .m_ttl_box::after {
    width: 40px;
  }
  .sec01 .m_ttl_box .m_ttl {
    font-size: 2.2rem;
    font-weight: bold;
  }


  .sec01 .arrow {
    width: 15%;
    margin: 5rem auto 5rem;
  }


  .sec01_block01 {
    padding: 0 2rem 1rem;
    box-sizing: border-box;
  }
  .sec01_block01::after {
    bottom: 0;
    left: 0;
    background: url("img/sec01_bg_01.png") left top no-repeat;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-top: calc(100%*350/730);
  }

  .sec01_block01 .inner {
    display: block;
  }

  .sec01_block01 .l_box {
    width: 100%;
  }

  .sec01_block01 .r_box {
    width: 100%;
  }

  .sec01_block01 .img_box {
    width: 90%;
    margin: 2rem auto 0 auto;
  }


  .sec01_block02 .ttl_box {
    background: url("img/sec01_bg_02.jpg") right center no-repeat;
    background-size: cover;
    width: calc(100% - 2rem);
    margin: 0 0 0 auto;
  }
  .sec01_block02 .ttl_box .inner {
    padding: 2rem 2rem 2rem;
  }
  .sec01_block02 .ttl_box .inner::before {
    display: none;
  }
  .sec01_block02 .ttl_box .ttl {
    font-size: 2rem;
    font-weight: bold;
    line-height: 2;
  }
  .sec01_block02 .ttl_box .bg {
    padding: 1rem 1rem;
    font-size: 2.2rem;
  }

  .sec01_block02 .txt_box {
    max-width: 100%;
    margin: 3rem auto 0;
    padding: 0 2rem;
  }
}





/*--------------------------------------
　sec02
---------------------------------------*/
.sec02 {
  overflow: hidden;
}

.sec02 p {
  margin: 0 0 0;
}

.sec02_block {
  position: relative;
}
.sec02_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/pt.jpg") left top repeat;
  background-size: 1000px auto;
  width: 100%;
  height: calc(100% + 200px);
  margin: -20rem 0 0;
  box-sizing: border-box;
  z-index: -1;
}

.sec02_block .inner {
  padding: 0 0 12rem;
}

.sec02_block .sv_parts {
  margin: 0 0 0;
  padding: 0 0 0 0;
}
.sec02_block .sv_parts::after {
  display: none;
}
.sec02_block .sv_parts .name {
  background: #c1d3e1;
  max-width: 530px;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 0;
}
.sec02_block .sv_parts .name::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  background: #c1d3e1;
  width: 100vw;
  height: 100%;
  z-index: 1;
}
.sec02_block .sv_parts .upper {
  width: 100%;
}
.sec02_block .sv_parts .upper .l_box {
  width: 370px;
}
.sec02_block .sv_parts .upper .r_box {
  width: calc(100% - 470px);
}
.sec02_block .sv_parts .list01 {
  margin: 2rem 0 0;
}
.sec02_block .sv_parts .list01 li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.5rem;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.sec02_block .sv_parts .list01 li:last-child {
  margin: 0 0 0 0;
}
.sec02_block .sv_parts .list01 li:before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  background: #333;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
}


.sec02_box01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8rem 0 8rem;
  border-bottom: 1px solid #d2d2d2;
}
.sec02_box01 .item {
  width: calc(50% - 5rem);
  box-sizing: border-box;
}
.sec02_box01 .ttl {
  background: #fff;
  padding: 3rem 2rem;
  font-size: 2rem;
  position: relative;
  font-weight: bold;
}
.sec02_box01 .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #bc9a22;
  width: 4px;
  height: calc(100% - 30px);
}
.sec02_box01 .ttl span {
  display: block;
  font-size: 1.2rem;
}

.sec02_box01 .txt {
  margin: 2rem 0 0;
}
.sec02_box01 .img_box {
  margin: 3rem 0 0;
}


.sec02_box02 {
  padding: 8rem 0 0;
}
.sec02_box02 .ttl {
  display: inline-block;
  padding: 0 3rem;
  font-size: 2.2rem;
  position: relative;
}
.sec02_box02 .ttl::before,
.sec02_box02 .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  background: #c90d2e;
  width: 20px;
  height: 1px;
}
.sec02_box02 .ttl::before {
  left: 0;
}
.sec02_box02 .ttl::after {
  right: 0;
}

.sec02_box02 .bio {
  margin: 4rem 0 0;
  box-sizing: border-box;
}
.sec02_box02 .bio_item {
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 5rem;
}
.sec02_box02 .yaer {
  width: 10%;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}
.sec02_box02 .txt_box {
  width: 90%;
  padding: 0 0 4rem 3rem;
  position: relative;
}
.sec02_box02 .txt_box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  background: #333;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
}
.sec02_box02 .txt_box::after {
  content: "";
  display: block;
  position: absolute;
  top: 26px;
  left: 3px;
  width: 6px;
  height: calc(100% - 26px);
  border-left: 6px dotted #c4c5c7;
}
.sec02_box02 .bio_item:last-child .txt_box::after {
  display: none;
}
.sec02_box02 .txt {
  font-size: 1.4rem;
}

.accordion_box {
  display: none;
}
.accordion_all {
  background: #fff;
  max-width: 400px;
  margin: 3rem auto 0;
  padding: 3rem 5rem;
  box-sizing: border-box;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  border: 1px solid #333;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion_all:before,
.accordion_all:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: #333;
  width: 20px;
  height: 1px;
  transition: all 0.4s;
}
.accordion_all:after {
  transform: rotate(90deg);
}
.accordion_all.open:before {
  display: none;
}
.accordion_all.open::after {
  transform: rotate(180deg);
}
.accordion_all span {
  font-weight: 700;
}
.accordion_all span:before {
  content: "もっと⾒る";
}
.accordion_all.open span:before {
  content: "閉じる";
}
.accordion_all:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}


.sec02 .btn-web a {
  margin: 3rem auto 0;
}


.sec02 .parts01 {
  margin: 14rem 0 14rem;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec02_block {
    width: calc(100% - 20px);
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .sec02_block::after {
    background: url("img/bg_02.jpg") left top repeat;
    background-size: 100% auto;
    width: 100%;
    height: calc(100% + 200px);
    margin: -20rem 0 0;
  }

  .sec02 .main_ttl01 .main_ttl_box {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 2rem 1.5rem 12rem;
  }
  .sec02 .main_ttl01 .icon {
    width: 21%;
    margin: 0 0 0;
  }
  .sec02 .main_ttl01 .m_ttl {
    width: 80%;
    margin: 0 0 0;
    padding: 0 0 0 1.5rem;
    font-size: 2rem;
  }
  .sec02 .main_ttl01 .m_ttl .bg {
    position: absolute;
    bottom: 0;
    left: 30px;
    background: none;
    padding: 0 0;
    margin: 2rem 0 2rem;
    font-size: 2.2rem;
  }
  .sec02 .main_ttl01 .m_ttl .bg span {
    background: #fff;
    padding: 0.5rem 1rem;
    line-height: 1.7;
    font-weight: bold;
  }

  .sec02_block .inner {
    padding: 0 0 6rem;
  }

  .sec02_block .sv_parts .name {
    max-width: 85%;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 3rem 2rem;
  }
  .sec02_block .sv_parts .name span {
    font-weight: bold;
  }
  .sec02_block .sv_parts .upper {
    width: 100%;
    padding-bottom: 5rem;
  }
  .sec02_block .sv_parts .upper .l_box {
    width: 80%;
    margin: 2rem auto 0;
  }
  .sec02_block .sv_parts .upper .r_box {
    width: 100%;
  }
  .sec02_block .sv_parts .list01 {
    margin: 3rem 0 0;
  }


  .sec02_box01 {
    display: block;
    padding: 5rem 0 5rem;
  }
  .sec02_box01 .item {
    width: 100%;
    margin: 0 0 5rem;
  }
  .sec02_box01 .item:last-child {
    margin: 0 0 0;
  }
  .sec02_box01 .ttl {
    padding: 3rem 1.5rem;
    font-size: 1.8rem;
  }
  .sec02_box01 .ttl::before {
    width: 2px;
    height: calc(100% - 20px);
  }
  .sec02_box01 .ttl span {
    font-size: 1rem;
  }
  .sec02_box01 .txt {
    margin: 3rem 0 0;
  }
  .sec02_box01 .img_box {
    margin: 2rem 0 0;
  }


  .sec02_box02 {
    padding: 5rem 0 0;
  }
  .sec02_box02 .ttl {
    padding: 0 1.5rem;
    font-size: 1.8rem;
  }
  .sec02_box02 .ttl::before,
  .sec02_box02 .ttl::after {
    width: 10px;
  }

  .sec02_box02 .bio {
    margin: 2rem 0 0;
  }
  .sec02_box02 .bio_item {
    padding: 0 0 0 0;
  }
  .sec02_box02 .yaer {
    width: 20%;
    font-size: 3.8vw;
  }
  .sec02_box02 .txt_box {
    width: 80%;
    padding: 0 0 2rem 2rem;
  }
  .sec02_box02 .txt_box::before {
    width: 8px;
    height: 8px;
  }
  .sec02_box02 .txt_box::after {
    top: 20px;
    left: 2px;
    width: 4px;
    height: calc(100% - 20px);
    border-left: 4px dotted #c4c5c7;
  }

  .accordion_all {
    max-width: 90%;
    margin: 2rem auto 0;
    padding: 1.8rem 4rem;
    font-size: 1.4rem;
  }
  .accordion_all:before,
  .accordion_all:after {
    right: 15px;
    width: 18px;
  }
  .accordion_all:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha(opacity=100)";
  }


  .sec02 .btn-web a {
    margin: 2rem auto 0;
  }

  .sec02 .btn-tel a {
    margin: 2rem auto 0;
  }


  .sec02 .parts01 {
    width: calc(100% - 40px);
    margin: 6rem auto 6rem;
  }
}





/*--------------------------------------
　sec03
---------------------------------------*/
.sec03 {
  overflow: hidden;
}

.sec03 p {
  margin: 1rem 0;
}


.sec03 .main_ttl01 .eng {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 420px;
}


.sec03_table {
  margin: 6rem 0 0;
}
.sec03_table .table_ttl {
  background: #c1d3e1;
  padding: 2.5rem 3rem;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
.sec03_table table {
  margin: 0 0 0;
  border: none;
}
.sec03_table table th {
  width: 16%;
  font-size: 1.6rem;
  border: 1px solid #ababab;
}
.sec03_table table th:nth-child(1) {
  width: 20%;
}
.sec03_table table tr:nth-child(1) th {
  background: #f2f2f2;
  padding: 2rem 2rem;
}
.sec03_table table td {
  font-size: 1.6rem;
  border: 1px solid #ababab;
}
.sec03_table table .td01 {
  background: #f2f2f2;
}

.sec03_table .note {
  margin: 2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
.sec03_table .note a {
  text-decoration: underline;
}

.sec03_table .btn-pdf a {
  margin: 5rem auto 0;
}


.sec03 .parts02 {
  margin: 12rem 0 0;
}


.sec03 .arrow {
  width: 100px;
  margin: 4rem auto 6rem;
}


.sec03 .sv_parts {
  margin: 0 0 0;
  padding: 0 0 0;
}
.sec03 .sv_parts::after {
  right: 0;
  width: 100%;
}

.sec03 .sv_parts .sv_ttl {
  padding: 6rem 4rem 6rem;
  font-size: 2.2rem;
  position: relative;
}
.sec03 .sv_parts .sv_ttl::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 90px;
  height: 90px;
  box-sizing: border-box;
  border-bottom: 20px solid #c90d2e;
  border-left: 30px solid #c90d2e;
  z-index: 1;
}
.sec03 .sv_parts .sv_ttl span {
  font-size: 3.6rem;
}
.sec03 .sv_parts .eng {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0,-50%);
  width: 110px;
  z-index: 1;
}
.sec03 .sv_parts .sv_parts_block_inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 0 10rem;
}
.sec03 .sv_parts .upper {
  width: 100%;
  padding: 0 0 0 0;
  border-bottom: none;
}
.sec03 .sv_parts .upper .l_box {
  width: 370px;
}
.sec03 .sv_parts .upper .r_box {
  width: calc(100% - 470px);
}
.sec03 .sv_parts .upper .txt_box {
  position: relative;
  z-index: -1;
}
.sec03 .sv_parts .btn-web a {
  max-width: 400px;
  margin: 4rem auto 0;
}



.sv_ttl_wrap {
  position: relative;
  z-index: 0;
}
.sv_ttl_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #30323e;
  width: 0;
  height: 100%;
  z-index: -1;
}
.sv_ttl_wrap.isActive::after {
  -webkit-animation: svTtlBg01 0.7s ease-in-out forwards;
  animation: svTtlBg01 0.7s ease-in-out forwards;
  animation-delay: 0.3s;
}
@keyframes svTtlBg01 {
  0% {
    width: 0;
  }
  100% {
    width: 530px;
  }
}

.sv_ttl_wrap .sv_ttl_inner {
  max-width: 530px;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 0;
}
.sv_ttl_wrap .sv_ttl_inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #30323e;
  width: 0;
  height: 100%;
  z-index: -1;
}
.sv_ttl_wrap .sv_ttl_inner.isActive::after {
  -webkit-animation: svTtlBg02 0.4s ease-in-out forwards;
  animation: svTtlBg02 0.4s ease-in-out forwards;
  animation-delay: 0.6s;
}
@keyframes svTtlBg02 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec03 .main_ttl01 .main_ttl_box {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }

  .sec03 .main_ttl01 .icon {
    width: 25%;
    margin: 0 0 0;
  }

  .sec03 .main_ttl01 .m_ttl {
    width: 75%;
    margin: 0 0 0;
    padding: 0 0 0 2rem;
  }

  .sec03 .main_ttl01 .eng {
    width: 60%;
  }
  .sec03_table {
    margin: 3rem 0 0;
    padding: 0 2rem;
  }

  .sec03_table .sp_txt {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    text-align: center;
  }
  .sec03_table .table_ttl {
    padding: 1.5rem 1.5rem;
    font-size: 1.6rem;
  }
  .sec03_table .note {
    margin: 1.5rem 0 0;
    font-size: 1.3rem;
  }

  .sec03_table .btn-pdf a {
    margin: 3rem auto 0;
  }

  .sec03 .parts02 {
    max-width: calc(100% - 40px);
    margin: 6rem auto 0;
  }

  .sec03 .arrow {
    width: 15%;
    margin: 2rem auto 4rem;
  }

  .sec03 .sv_parts {
    margin: 0 0 0;
    padding: 0 2rem 0;
  }
  .sec03 .sv_parts::after {
    right: 20px;
    width: 100vw;
  }

  .sec03 .sv_parts .sv_ttl {
    max-width: 100%;
    margin: 0 -2rem 0 0;
    padding: 3rem 2rem 3rem;
    font-size: 1.6rem;
  }
  .sec03 .sv_parts .sv_ttl::before {
    bottom: -8px;
    left: -8px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-bottom: 8px solid #c90d2e;
    border-left: 8px solid #c90d2e;
  }
  .sec03 .sv_parts .sv_ttl span {
    font-size: 2.4rem;
  }
  .sec03 .sv_parts .eng {
    width: 20%;
    z-index: -1;
  }
  .sec03 .sv_parts .sv_parts_block_inner {
    max-width: 100%;
    padding: 0 0 5rem;
  }
  .sec03 .sv_parts .upper {
    width: calc(100% - 20px);
    padding: 0 0 0 0;
  }
  .sec03 .sv_parts .upper .l_box {
    width: 80%;
  }
  .sec03 .sv_parts .upper .img_box {
    position: relative;
    z-index: -1;
  }
  .sec03 .sv_parts .upper .r_box {
    width: 100%;
  }
  .sec03 .sv_parts .btn-web a {
    max-width: 90%;
    margin: 2rem auto 0;
  }

  .sv_ttl_wrap::after {
    display: none;
  }

  .sv_ttl_wrap .sv_ttl_inner {
    max-width: calc(85% + 20px);
    margin: 0 -2rem 0 auto;
  }
  .sv_ttl_wrap .sv_ttl_inner.isActive::after {
    -webkit-animation: svTtlBg02 0.8s ease-in-out forwards;
    animation: svTtlBg02 0.8s ease-in-out forwards;
    animation-delay: 0s;
  }

   /*  SP横スクロール調整追加 */

   .sec03_table_sp::-webkit-scrollbar {
    display: none;
  }
  .sec03_table_sp table {
    margin: 0 auto;
    border: 1px solid #ababab;
  }
  .sec03_table_sp table th,
  .sec03_table_sp table td {
    font-size: 2vw;
    width: 14%;
    padding: 1rem 0.5rem;
    border: 1px solid #ababab;
  }
  .sec03_table table tr:nth-child(1) th {
    padding: 1rem 0.3rem;
  }
  .sec03_table_sp table td.td01 {
    background: #f2f2f2;
    width: 15%;
  }
  .sec03_table_sp table td.td03 {
    background: #ddd;
    width: 11%;
  }

  .sec03_table_sp table th:nth-child(1) {
    width: 23%;
  }
  .sec03_table_sp table td.td02 {
    background: #fff;
    width: 12%;
    border-left: 1px solid #ababab;
  }
  
}





/*--------------------------------------
　sec04
---------------------------------------*/
.sec04 {
  background: #c1d3e1;
  margin: 26rem 0 0;
  padding: 0 0 14rem;
  position: relative;
  z-index: 0;
}
.sec04::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/bg_dot.png") center center repeat;
  background-size: 14px auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}

.sec04 p {
  margin: 1rem 0;
}


.sec04 .eng {
  width: 690px;
  margin: 0 auto 0 14rem;
  position: relative;
  top: -80px;
}


.sec04 .img_box {
  position: absolute;
  top: 0;
  left: 50%;
  width: 490px;
  margin: 12rem 0 0;
}


.sec04 .upper {
  margin: -8rem 0 0;
}
.sec04 .upper .upper_inner {
  background: #30323e;
  max-width: 660px;
  margin: 0 0 0;
  padding: 5rem 6rem 5rem 0;
  box-sizing: border-box;
  position: relative;
}
.sec04 .upper .upper_inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #30323e;
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  z-index: -1;
}
.sec04 .upper .upper_inner::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 140px;
  height: 140px;
  box-sizing: border-box;
  border-bottom: 20px solid #c90d2e;
  border-right: 30px solid #c90d2e;
  z-index: 1;
}

.sec04 .main_ttl01 .main_ttl_box {
  display: block;
  padding: 0 0 0;
}
.sec04 .main_ttl01 .m_ttl {
  width: 100%;
  padding: 0 0 2rem 0;
  font-size: 3rem;
  border-bottom: 1px solid #fff;
  position: relative;
}
.sec04 .main_ttl01 .m_ttl::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  background: #bc9a22;
  width: 60px;
  height: 2px;
}
.sec04 .main_ttl01 .m_ttl a {
  color: #fff;
  font-weight: bold;
}

.sec04 .txt {
  margin: 1rem 0;
}


.sec04 .bottom {
  margin: 6rem 0 0;
}

.sec04 .link_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 5rem;
  box-sizing: border-box;
}
.sec04 .link_box .item {
  width: calc(33.33% - 2rem);
  margin: 0 0 2.5rem;
  box-sizing: border-box;
}
.sec04 .link_box .item a {
  display: block;
  background: #fff;
  padding: 3rem 0 3rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}
.sec04 .link_box .item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0,-50%);
  background: url("img/arrow_03.png") left top no-repeat;
  background-size: 100% auto;
  width: 40px;
  height: 40px;
}
.sec04 .link_box .item span {
  font-size: 3rem;
  font-weight: 500;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec04 {
    margin: 12rem 0 0;
    padding: 0 0 6rem;
  }
  .sec04::after {
    background: url("img/bg_dot.png") center center repeat;
    background-size: 7px auto;
  }


  .sec04 .eng {
    width: 95%;
    margin: 0 0 0 0;
    top: -40px;
  }


  .sec04 .img_box {
    left: inherit;
    right: 0;
    width: 45%;
    margin: 3rem 0 0;
  }


  .sec04 .upper {
    margin: 0 0 0;
  }
  .sec04 .upper .upper_inner {
    max-width: calc(100% - 20px);
    margin: 0 0 0;
    padding: 3rem;
  }
  .sec04 .upper .upper_inner::before {
    display: none;
  }
  .sec04 .upper .upper_inner::after {
    bottom: -8px;
    right: -8px;
    width: 70px;
    height: 70px;
    box-sizing: border-box;
    border-bottom: 8px solid #c90d2e;
    border-right: 8px solid #c90d2e;
  }

  .sec04 .main_ttl01 .main_ttl_box {
    display: block;
    padding: 0 0 0;
    text-align: left;
  }
  .sec04 .main_ttl01 .m_ttl {
    width: 100%;
    padding: 0 0 2rem 0;
    font-size: 1.8rem;
  }
  .sec04 .main_ttl01 .m_ttl::after {
    width: 40px;
  }

  .sec04 .txt {
    margin: 1.5rem 0 0;
  }


  .sec04 .bottom {
    margin: 4rem 0 0;
  }

  .sec04 .link_box {
    padding: 0 2rem;
  }
  .sec04 .link_box .item {
    width: calc(50% - 0.3rem);
    margin: 0 0 0.6rem;
  }
  .sec04 .link_box .item a {
    padding: 2rem 2rem 2rem;
    font-size: 1.3rem;
  }
  .sec04 .link_box .item a::after {
    right: 10px;
    background: url("img/arrow_03.png") left top no-repeat;
    background-size: 100% auto;
    width: 20px;
    height: 20px;
  }
  .sec04 .link_box .item span {
    font-size: 2rem;
  }
}





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

.sec05 p {
  margin: 0 0 0;
}

.sec05 .eng {
  width: 340px;
  margin: 0 14rem 0 auto;
}


.sec05_block {
  background: #f0f3f8 url("img/bg_dot.png") center center repeat;
  background-size: 14px auto;
  padding: 9rem 0 9rem;
  position: relative;
  z-index: 0;
}
.sec05_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.6);
  width: 50%;
  height: 100%;
  z-index: -1;
}

.sec05_block .sec05_block_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sec05_block .l_box {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  left: 0;
  width: 50%;
  padding: 6rem 6rem 0 0;
  box-sizing: border-box;
}

.sec05_block .m_ttl {
  line-height: 2;
}
.sec05_block .m_ttl span {
  background: #30323e;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
}
.sec05_block .m_ttl a {
  display: inline-block;
  padding: 0 4rem 0 0;
  color: #fff;
  font-size: 3rem;
  position: relative;
}
.sec05_block .m_ttl a:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sec05_block .r_box {
  width: 50%;
  padding: 0 0 0 6rem;
  box-sizing: border-box;
}

.sec05_block .faq_block .item {
  padding: 3rem 0 3rem;
  border-bottom: 1px solid #d2d2d2;
}

.sec05_block .faq_block .q_box {
  padding: 0 4rem 0 0;
  position: relative;
  cursor: pointer;
}
.sec05_block .faq_block .q_box:before,
.sec05_block .faq_block .q_box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: #333;
  width: 30px;
  height: 1px;
  transition: all 0.4s;
}
.sec05_block .faq_block .q_box:after {
  transform: rotate(90deg);
}
.sec05_block .faq_block .q_box.open:before {
  display: none;
}
.sec05_block .faq_block .q_box.open::after {
  transform: rotate(180deg);
}
.sec05_block .faq_block .ttl01 {
  padding: 0 0 0 5.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", Meiryo, "Helvetica Neue", Arial, sans-serif;
  position: relative;
}
.sec05_block .faq_block .ttl01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/icon_q.png") left top no-repeat;
  background-size: 100% auto;
  width: 42px;
  height: 42px;
}

.sec05_block .faq_block .a_box {
  display: none;
  margin: 3rem 0 0;
  padding: 0;
  position: relative;
}
.sec05_block .faq_block .a_box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/icon_a.png") left top no-repeat;
  background-size: 100% auto;
  width: 42px;
  height: 42px;
}
.sec05_block .faq_block .cc {
  padding: 1rem 0 1rem 5.5rem;
  font-size: 1.8rem;
}
.sec05_block .faq_block .txt {
  margin: 1rem 0;
}
.sec05_block .faq_block .btn-link a {
  margin: 2rem 0 0;
}


.sec05_block .btn-web a {
  margin: 7rem auto 0;
}

.sec05_block .bottom_txt {
  max-width: 70%;
  margin: 4rem auto 0;
}

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

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

  .sec05 .eng {
    width: 45%;
    margin: 0 0 0 auto;
  }


  .sec05_block {
    background: #f0f3f8 url("img/bg_dot.png") center center repeat;
    background-size: 7px auto;
    padding: 0 0 4rem;
  }
  .sec05_block::before {
    display: none;
  }

  .sec05_block .sec05_block_inner {
    display: block;
  }

  .sec05_block .l_box {
    position: relative;
    top: inherit;
    left: inherit;
    background: #fff;
    width: 100%;
    padding: 3rem 2rem 3rem 2rem;
  }

  .sec05_block .m_ttl {
    margin: -4rem 0 0;
    line-height: 1.8;
  }
  .sec05_block .m_ttl span {
    padding: 0.5rem 1rem;
    font-size: 2rem;
  }
  .sec05_block .m_ttl a {
    padding: 0 2rem 0 0;
    font-size: 1.8rem;
  }
  .sec05_block .m_ttl a:after{
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }

  .sec05_block .r_box {
    width: 100%;
    padding: 2rem 2rem 3rem 2rem;
  }

  .sec05_block .faq_block .item {
    padding: 2rem 0 2rem;
  }

  .sec05_block .faq_block .q_box {
    padding: 0 3rem 0 0;
  }
  .sec05_block .faq_block .q_box:before,
  .sec05_block .faq_block .q_box:after {
    width: 20px;
  }
  .sec05_block .faq_block .ttl01 {
    padding: 0 0 0 4rem;
    font-size: 1.6rem;
  }
  .sec05_block .faq_block .ttl01::before {
    width: 34px;
    height: 34px;
  }

  .sec05_block .faq_block .a_box {
    margin: 2rem 0 0;
    padding: 0;
    position: relative;
  }
  .sec05_block .faq_block .a_box::before {
    width: 34px;
    height: 34px;
  }
  .sec05_block .faq_block .cc {
    padding: 1rem 0 1rem 4rem;
    font-size: 1.6rem;
  }
  .sec05_block .faq_block .txt {
    margin: 1.5rem 0 0;
  }
  .sec05_block .faq_block .btn-link a {
    margin: 1.5rem 0 0;
  }


  .sec05_block .btn-web a {
    margin: 3rem auto 0;
  }

  .sec05_block .btn-tel a {
    margin: 1.5rem auto 0;
  }

  .sec05_block .bottom_txt {
    max-width: calc(100% - 40px);
    margin: 2rem auto 0;
  }

  .sec05_block .btn-link {
    max-width: calc(100% - 40px);
    margin: auto;
  }
  .sec05_block .btn-link a {
    margin: 2rem 0 0;
  }
}





/*--------------------------------------
　sec06
---------------------------------------*/
.sec06 {
  padding: 18rem 0 0;
  overflow: hidden;
}

.sec06 p {
  margin: 0 0 0;
}


.sec06 .main_ttl01::after {
  background: #c1d3e1;
}
.sec06 .main_ttl01 .main_ttl01_inner::after {
  background: #c1d3e1;
}

.sec06 .main_ttl01 .main_ttl_box {
  display: block;
  padding: 8rem 0 8rem;
  text-align: center;
}
.sec06 .main_ttl01 .m_ttl {
  width: 100%;
  padding: 0 0 0 0;
  font-size: 2rem;
}
.sec06 .main_ttl01 .m_ttl a {
  display: inline-block;
  padding: 0 3rem 0 3rem;
}
.sec06 .main_ttl01 .m_ttl a:after{
  border-top: solid 1px #333;
  border-right: solid 1px #333;
}

.sec06 .eng {
  position: absolute;
  top: 0;
  right: 0;
  width: 370px;
}


.sec06_block {
  margin: 10rem 0 0;
}

.sec06_block .inner {
  display: flex;
  justify-content: space-between;
}

.sec06_block .l_box {
  width: 296px;
  box-sizing: border-box;
}

.sec06_block .ttl01 {
  display: flex;
  justify-content: center;
  align-items: center; 
  background: url("img/bg_ttl_01.png") left top no-repeat;
  background-size: 100% auto;
  width: 296px;
  height: 198px;
  padding: 0 2rem 0 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  position: relative;
}
.sec06_block .ttl01 span {
  font-weight: bold;
}

.sec06_block .r_box {
  width: calc(100% - 296px);
  padding: 0 0 0 4rem;
  box-sizing: border-box;
}

.sec06_block .item {
  margin: 0.8rem 0 4rem;
  padding: 0 0 0 7rem;
  font-size: 1.8rem;
  line-height: 1.4;
  position: relative;
  counter-increment: count;
  
}
.sec06_block .item:before {
  content: "0" counter(count);
  content: counter(count,decimal-leading-zero);
  position: absolute;
  top: -6px;
  left: 0;
  background: #333739;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.sec06_block .item:last-child {
  margin: 0 0 0;
}
.sec06_block .item span{
  font-size: 2.8rem;
  font-weight: bold;
}


.sec06 .sv_parts {
  margin: 18rem 0 0;
  padding: 0 0 0;
}
.sec06 .sv_parts::after {
  right: 0;
  width: 100%;
}

.sec06 .sv_parts .sv_ttl {
  padding: 6rem 4rem 6rem;
  font-size: 2.2rem;
  position: relative;
}
.sec06 .sv_parts .sv_ttl::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 90px;
  height: 90px;
  box-sizing: border-box;
  border-bottom: 20px solid #c90d2e;
  border-left: 30px solid #c90d2e;
  z-index: 1;
}
.sec06 .sv_parts .sv_ttl span {
  font-size: 3.6rem;
}
.sec06 .sv_parts .icon {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0,-50%);
  width: 156px;
  z-index: 1;
}
.sec06 .sv_parts .sv_parts_block_inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 0 10rem;
}
.sec06 .sv_parts .upper {
  width: 100%;
  padding: 0 0 0 0;
  border-bottom: none;
}
.sec06 .sv_parts .upper .l_box {
  width: 370px;
}
.sec06 .sv_parts .upper .r_box {
  width: calc(100% - 470px);
}
.sec06 .sv_parts .upper .txt_box {
  position: relative;
  z-index: -1;
}
.sec06 .sv_parts .btn-web a {
  max-width: 400px;
  margin: 4rem auto 0;
}

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

  .sec06 .main_ttl01 .main_ttl_box {
    padding: 2rem 1.5rem 2rem;
  }
  .sec06 .main_ttl01 .m_ttl a {
    padding: 0 2rem 0 2rem;
    font-weight: bold;
    z-index: 1;
  }

  .sec06 .eng {
    width: 45%;
    margin: -40px 0 0 auto;
  }


  .sec06_block {
    margin: 3rem 0 0;
  }

  .sec06_block .inner {
    display: block;
  }

  .sec06_block .l_box {
    width: 100%;
  }

  .sec06_block .ttl01 {
    display: block; 
    background: url("img/bg_ttl_01_sp.png") left top no-repeat;
    background-size: 100% auto;
    width: 55%;
    height: 0;
    margin: auto;
    padding: 0 0 0 0;
    padding-top: calc(55%*190/390);
    font-size: 1.6rem;
    position: relative;
  }
  .sec06_block .ttl01 span {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
  }

  .sec06_block .r_box {
    width: 100%;
    margin: 2rem 0 0;
    padding: 0 2rem 0 2rem;
  }

  .sec06_block .item {
    margin: 2rem 0 2rem;
    padding: 0 0 0 5rem;
    font-size: 1.8rem;
    font-weight: 600;
  }
  .sec06_block .item:before {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2rem;
  }

  .sec06_block .item span{
    font-size: 2.3rem;
  }


  .sec06 .sv_parts {
    margin: 6rem 0 0;
    padding: 0 2rem 0;
  }
  .sec06 .sv_parts::after {
    right: 20px;
    width: 100vw;
  }
  .sec06 .sv_parts .eng {
    top: 70px;
    left: inherit;
    right: 0;
    width: 20%;
    margin: 0 0 0 auto;
  }
  .sec06 .sv_parts .sv_ttl_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sec06 .sv_parts .sv_ttl {
    max-width: 80%;
    margin: 0 -2rem 0 0;
    padding: 3rem 2rem 3rem;
    font-size: 1.6rem;
  }
  .sec06 .sv_parts .sv_ttl::before {
    bottom: -8px;
    left: -8px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-bottom: 8px solid #c90d2e;
    border-left: 8px solid #c90d2e;
  }
  .sec06 .sv_parts .sv_ttl span {
    font-size: 2.4rem;
  }
  .sec06 .sv_parts .icon {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0,0);
    width: 25%;
  }
  .sec06 .sv_parts .sv_parts_block_inner {
    max-width: 100%;
    padding: 0 0 5rem;
  }
  .sec06 .sv_parts .upper {
    width: calc(100% - 20px);
  }
  .sec06 .sv_parts .upper .l_box {
    width: 80%;
  }
  .sec06 .sv_parts .upper .img_box {
    position: relative;
    z-index: -1;
  }
  
  .sec06 .sv_parts .upper .r_box {
    width: 100%;
  }
  .sec06 .sv_parts .btn-web a {
    max-width: 90%;
    margin: 2rem auto 0;
  }
  .sec06 .sv_parts .btn-tel a {
    max-width: 90%;
    margin: 1.5rem auto 0;
  }
}





/*--------------------------------------
　sec07
---------------------------------------*/
.sec07 {
  padding: 20rem 0 14rem;
}

.sec07 p {
  margin: 0 0 0;
}


.sec07_block {
  padding: 16rem 0 0;
  position: relative;
  z-index: 0;
}
.sec07_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/sec07_bg.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 600px;
  z-index: -1;
}

.sec07_block .wrap {
  max-width: 1000px;
  margin: auto;
}

.sec07_block .inner {
  background: #fff;
  padding: 0 0 10rem;
  border: 1px solid #d2d2d2;
}

.sec07_block .m_ttl_box {
  padding: 5rem 5rem 5rem;
  text-align: center;
  border-bottom: 1px solid #d2d2d2;
}
.sec07_block .m_ttl {
  font-size: 3.4rem;
}
.sec07_block .m_ttl span {
  background: #c90d2e;
  padding: 1rem 1.5rem;
  font-size: 2rem;
}


.sec07_block .cc {
  padding: 0 0 2rem;
  font-size: 2.2rem;
  border-bottom: 1px solid #d2d2d2;
}

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


.sec07_block .box01 {
  padding: 8rem 0 0;
  box-sizing: border-box;
}
.sec07_block .box01 .img_box {
  max-width: 630px;
  margin: auto;
}
.sec07_block .box01 .txt_box {
  background: #f0f3f8;
  margin: -12rem 0 0;
  padding: 16rem 7rem 8rem;
}
.sec07_block .box01 .cc {
  text-align: center;
}


.sec07_block .box02 {
  padding: 10rem 7rem 10rem;
  box-sizing: border-box;
}

.sec07_block .box02 .item {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10rem;
}
.sec07_block .box02 .item:last-child {
  margin: 0 0 0;
}


.sec07_block .box02 .item:nth-child(odd) .ct .txt{
      padding: 0 0 2rem 0;
}

.sec07_block .box02 .ct .txt_box{
  width:100%;
}

.sec07_block .box02 .txt_box {
  width: calc(100% - 280px);
  box-sizing: border-box;
}
.sec07_block .box02 .item:nth-child(even) .txt_box {
  order: 2;
}

.sec07_block .box02 .cc {
  position: relative;
}
.sec07_block .box02 .item:nth-child(odd) .cc {
  padding: 0 3rem 2rem 0;
}
.sec07_block .box02 .item:nth-child(even) .cc {
  padding: 0 0 2rem 3rem;
}
.sec07_block .box02 .cc::before {
  content: "";
  position: absolute;
  bottom: -1px;
  background: #c90d2e;
  width: 60px;
  height: 2px;
}
.sec07_block .box02 .item:nth-child(odd) .cc::before {
  left: 0;
}
.sec07_block .box02 .item:nth-child(even) .cc::before {
  right: 0;
}
.sec07_block .box02 .item .cc::after {
  content: "";
  position: absolute;
  bottom: -1px;
  background: #c90d2e;
  width: 50px;
  border-bottom: 1px solid #d2d2d2;
}
.sec07_block .box02 .item:nth-child(odd) .cc::after {
  left: 100%;
}

.sec07_block .box02 .item.ct:nth-child(odd) .cc::after{content: none;}
.sec07_block .box02 .item:nth-child(even) .cc::after {
  right: 100%;
}

.sec07_block .box02 .item:nth-child(odd) .txt {
  padding: 0 4rem 2rem 0;
}
.sec07_block .box02 .item:nth-child(even) .txt {
  padding: 0 0 2rem 4rem;
}

.sec07_block .box02 .img_box {
  width: 280px;
  box-sizing: border-box;
}
.sec07_block .box02 .item:nth-child(even) .img_box {
  order: 1;
}


.sec07_block .btn-web a {
  margin: 0 auto 0;
}


.sec07_block .btn-link a {
  margin: 5rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec07 {
    padding: 10rem 0 8rem;
  }


  .sec07_block {
    padding: 6rem 2rem 0;
  }
  .sec07_block::after {
    background: url("img/sec07_bg.jpg") center center no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*600/1300);
  }

  .sec07_block .wrap {
    max-width: 100%;
  }

  .sec07_block .inner {
    padding: 0 0 4rem;
  }

  .sec07_block .m_ttl_box {
    padding: 2.5rem 2rem 2.5rem;
  }
  .sec07_block .m_ttl {
    font-size: 2rem;
  }
  .sec07_block .m_ttl span {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }


  .sec07_block .cc {
    padding: 0 0 1.5rem;
    font-size: 1.7rem;
    border-bottom: 1px solid #d2d2d2;
  }

  .sec07_block .txt {
    margin: 1.5rem 0 0;
  }


  .sec07_block .box01 {
    padding: 3rem 0 0;
  }
  .sec07_block .box01 .img_box {
    max-width: calc(100% - 40px);
  }
  .sec07_block .box01 .txt_box {
    margin: -8rem 0 0;
    padding: 10rem 2rem 4rem;
  }
  .sec07_block .box01 .cc {
    text-align: justify;
  }


  .sec07_block .box02 {
    padding: 4rem 2rem 4rem;
  }

  .sec07_block .box02 .item {
    display: block;
    margin: 0 0 6rem;
  }

  .sec07_block .box02 .txt_box {
    width: 100%;
  }

  .sec07_block .box02 .item:nth-child(odd) .cc {
    padding: 0 0 1.5rem 0;
  }
  .sec07_block .box02 .item:nth-child(even) .cc {
    padding: 0 0 1.5rem 0;
  }
  .sec07_block .box02 .cc::before {
    width: 40px;
  }
  .sec07_block .box02 .item:nth-child(odd) .cc::before {
    left: 0;
  }
  .sec07_block .box02 .item:nth-child(even) .cc::before {
    right: inherit;
    left: 0;
  }
  .sec07_block .box02 .item .cc::after {
    display: none;
  }
  .sec07_block .box02 .item:nth-child(odd) .cc::after {
    left: inherit;
  }
  .sec07_block .box02 .item:nth-child(even) .cc::after {
    right: inherit;
  }

  .sec07_block .box02 .item:nth-child(odd) .txt {
    padding: 0 0 0 0;
  }
  .sec07_block .box02 .item:nth-child(even) .txt {
    padding: 0 0 0 0;
  }

  .sec07_block .box02 .img_box {
    width: 60%;
    margin: 2rem auto 0;
  }


  .sec07_block .btn-tel a {
    margin: 1.5rem auto 0;

  }
  .sec07_block .btn-link a {
    margin: 3rem 0 0;
  }
}






/*--------------------------------------
　sec08
---------------------------------------*/
.sec08 {
  padding: 4rem 0 20rem;
  position: relative;
  z-index: 0;
}
.sec08::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #c1d3e1;
  width: 100%;
  height: 460px;
  z-index: -1;
}

.sec08 p {
  margin: 0 0 0;
}


.sec08 .m_ttl_box {
  text-align: center;
}
.sec08 .eng {
  width: 280px;
  margin: auto;
}
.sec08 .m_ttl {
  margin: -3rem 0 0;
  font-size: 3.4rem;
}


.sec08_block {
  margin: 5rem 0 0;
}

.sec08_block table {
  margin: 0 0 0;
}
.sec08_block table th {
  padding: 4rem 4rem;
  font-size: 1.6rem;
}
.sec08_block table td {
  padding: 4rem 4rem;
  font-size: 1.5rem;
}

.sec08_block .map {
  position: relative;
  width: 100%;
  height: 0;
  margin: 2rem auto 0;
  padding-top: 56.25%;
}
.sec08_block .map iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec08 {
    padding: 2rem 2rem 10rem;
  }
  .sec08::after {
    height: 300px;
  }


  .sec08 .eng {
    width: 40%;
  }
  .sec08 .m_ttl {
    margin: -1.5rem 0 0;
    font-size: 2rem;
    font-weight: bold;
  }


  .sec08_block {
    margin: 3rem 0 0;
  }

  .sec08_block table th {
    display: block;
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }
  .sec08_block table td {
    display: block;
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
  }

  .sec08_block .map {
    margin: 1.5rem auto 0;
  }
}
.sec06_block .item .bottom_txt {
 margin-top: 1rem;
}

