@charset "UTF-8";
/* 基本設定 */
/*============================================
	― 変数設定
=============================================*/
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
	― スマホ表示切り替え
=============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}

body {
  font-family: source-han-sans-japanese, sans-serif;
}

/* modules */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 MAIN-TOP 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#main-top {
  position: relative;
  width: 100%;
  height: 700px;
  margin: 0 0 0px 0;
  overflow: hidden;
}

#main-top #hoge {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: block;
}

#main-top #hoge #hoge-bg {
  width: 100%;
  height: 100%;
  padding: 0;
}

#main-top .hoge-title {
  width: 100%;
  padding: 40px 0 0px 0;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#main-top .hoge-title h2 {
  width: 100%;
  font-size: 75px;
  line-height: 1.15;
  letter-spacing: 0px;
  padding: 0 0 20px 0;
  text-align: center;
  font-weight: 900;
  color: #fff;
  font-family: upgrade, Aharoni, source-han-sans-japanese,-apple-system;
}

#main-top .hoge-title h3 {
  width: 100%;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 3px;
  text-align: center;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
}

#main-top .hoge-title h4 {
  width: 100%;
  margin: 30px 0 0 0;
  font-size: 25px;
  line-height: 1.75;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 700;
  font-style: normal;
  color: #fff;
}

#main-top .bg-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}

#main-top .bg-slide:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0acffe), to(#495aff));
  background: linear-gradient(to right, #0acffe 0%, #495aff 100%);
  opacity: 0.85;
  position: absolute;
  z-index: 3;
}

#main-top .bg-slide .img-space {
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: CrossFade 24s 0s infinite;
  animation: CrossFade 24s 0s infinite;
  /* スライドショーを順番に出すcss */
}

#main-top .bg-slide .img-space:nth-of-type(1) {
  background-image: url("../images/bg-slide01.jpg");
}

#main-top .bg-slide .img-space:nth-of-type(2) {
  background-image: url("../images/bg-slide02.jpg");
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

#main-top .bg-slide .img-space:nth-of-type(3) {
  background-image: url("../images/bg-slide03.jpg");
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

#main-top .bg-slide .img-space:nth-of-type(4) {
  background-image: url("../images/bg-slide04.jpg");
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}

#main-top .bg-slide .img-space:nth-of-type(5) {
  background-image: url("../images/bg-slide05.jpg");
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}

@-webkit-keyframes CrossFade {
  25% {
    opacity: 1;
    -webkit-transform: scale(1.4) rotate(0);
            transform: scale(1.4) rotate(0);
  }
  40% {
    opacity: 0;
  }
}

@keyframes CrossFade {
  25% {
    opacity: 1;
    -webkit-transform: scale(1.4) rotate(0);
            transform: scale(1.4) rotate(0);
  }
  40% {
    opacity: 0;
  }
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #main-top {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 0 0 0px 0;
    overflow: hidden;
  }
  #main-top #hoge {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: block;
  }
  #main-top #hoge #hoge-bg {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  #main-top .hoge-title {
    padding: 0px 0 0px 0;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #main-top .hoge-title h2 {
    font-size: 7vw;
  }
  #main-top .hoge-title h3 {
    font-size: 20px;
  }
  #main-top .bg-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 2;
  }
  #main-top .bg-slide:before {
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#0acffe), to(#495aff));
    background: linear-gradient(to right, #0acffe 0%, #495aff 100%);
    opacity: 0.8;
    position: absolute;
    z-index: 3;
  }
}

/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #main-top {
    height: 700px;
  }
  #main-top #hoge {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: block;
  }
  #main-top #hoge #hoge-bg {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  #main-top .hoge-title {
    padding: 0px 0 0px 0;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #main-top .hoge-title h2 {
    font-size: 5.25vw;
  }
  #main-top .hoge-title h3 {
    font-size: 20px;
  }
  #main-top .hoge-title h4 {
    margin: 30px 0 0 0;
    font-size: 25px;
    line-height: 1.75;
  }
  #main-top .bg-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 2;
  }
  #main-top .bg-slide:before {
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#0acffe), to(#495aff));
    background: linear-gradient(to right, #0acffe 0%, #495aff 100%);
    opacity: 0.8;
    position: absolute;
    z-index: 3;
  }
}

/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #main-top {
    height: 550px;
    margin: 0 0 0px 0;
  }
  #main-top .hoge-title {
    padding: 20px 0 0px 0;
  }
  #main-top .hoge-title h3 {
    font-size: 4vw;
    line-height: 1.85;
    letter-spacing: 2px;
  }
  #main-top .hoge-title h2 {
    font-size: 8.5vw;
    line-height: 1.55;
    padding: 0 0 0px 0;
  }
  #main-top .hoge-title h4 {
    font-size: 5.25vw;
    line-height: 1.65;
    letter-spacing: 1px;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 GNAV04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#gnav04 {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
}

#gnav04 .inside {
  padding: 0px 3vw 0 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#gnav04 .inside .left h1 {
  color: #fff;
}

#gnav04 .inside .left h1 .big {
  font-size: 30px;
  letter-spacing: 3px;
  line-height: 1.1;
}

#gnav04 .inside .left h1 .small {
  margin: 5px 0 0 0;
  font-family: futura-pt, futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.0;
}

#gnav04 .inside .button {
  width: 500px;
  padding: 20px 0 0 0;
}

#gnav04 .inside .button a {
  background: rgba(255, 255, 255, 0.86);
  color: #2c7dbe;
  border: solid 2px #fff;
  -webkit-box-shadow: 0 0 0 2px #2c7dbe inset;
          box-shadow: 0 0 0 2px #2c7dbe inset;
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 20px 20px 20px;
  text-align: center;
  text-decoration: none;
}

#gnav04 .inside .button a .caption {
  text-align: center;
  color: #2c7dbe;
  letter-spacing: 1px;
  font-size: 17px;
  margin: 0 0 8px 0;
  position: relative;
  line-height: 1.1;
  font-weight: 700;
}

#gnav04 .inside .button a .caption span {
  padding: 0 3px 0 3px;
}

#gnav04 .inside .button a .caption:before, #gnav04 .inside .button a .caption:after {
  content: "";
  background: #2c7dbe;
  border-radius: 30px;
  height: 15px;
  width: 2px;
  display: inline-block;
}

#gnav04 .inside .button a .caption:before {
  position: absolute;
  top: 50%;
  left: 13%;
  -webkit-transform: translateY(-50%) skew(20deg);
          transform: translateY(-50%) skew(20deg);
}

#gnav04 .inside .button a .caption:after {
  position: absolute;
  top: 50%;
  right: 13%;
  -webkit-transform: translateY(-50%) skew(-20deg);
          transform: translateY(-50%) skew(-20deg);
}

#gnav04 .inside .button a .catch {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

#gnav04 .inside .button a .catch img {
  width: 30px;
  height: auto;
  padding: 0 3px 0 0;
  position: relative;
  top: 5px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #gnav04 .inside {
    padding: 5px 3vw 0 3vw;
    /*==============================================
			#gnav04 .wrapper .button
			===============================================*/
  }
  #gnav04 .inside .left h1 {
    color: #fff;
  }
  #gnav04 .inside .left h1 .big {
    font-size: 3.15vw;
    letter-spacing: 2px;
    line-height: 1.1;
  }
  #gnav04 .inside .left h1 .small {
    margin: 5px 0 0 0;
    font-size: 1.55vw;
    letter-spacing: 1px;
  }
  #gnav04 .inside .button {
    padding: 5px 0 0 0;
    width: 40.5vw;
  }
  #gnav04 .inside .button a {
    color: #fff;
    border: solid 2px #fff;
    width: 100%;
    height: 100%;
    padding: 5px 10px 5px 10px;
  }
  #gnav04 .inside .button a .caption {
    font-size: 1.5vw;
    margin: 0 0 4px 0;
  }
  #gnav04 .inside .button a .caption span {
    padding: 0 3px 0 3px;
  }
  #gnav04 .inside .button a .caption:before, #gnav04 .inside .button a .caption:after {
    height: 12px;
  }
  #gnav04 .inside .button a .caption:before {
    left: 5%;
  }
  #gnav04 .inside .button a .caption:after {
    right: 5%;
  }
  #gnav04 .inside .button a .catch {
    font-size: 2.5vw;
  }
  #gnav04 .inside .button a .catch img {
    width: 4vw;
    height: auto;
    padding: 0 3px 0 0;
    position: relative;
    top: 2px;
  }
}

/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #gnav04 .inside {
    padding: 5px 3vw 0 3vw;
  }
  #gnav04 .inside .left h1 {
    color: #fff;
  }
  #gnav04 .inside .left h1 .big {
    font-size: 4.15vw;
    letter-spacing: 2px;
    line-height: 1.1;
  }
  #gnav04 .inside .left h1 .small {
    margin: 5px 0 0 0;
    font-size: 2.55vw;
    letter-spacing: 1px;
  }
  #gnav04 .inside .button {
    padding: 5px 0 0 0;
    width: 47.5vw;
  }
  #gnav04 .inside .button a {
    width: 100%;
    height: 100%;
    padding: 5px 10px 5px 10px;
  }
  #gnav04 .inside .button a .caption {
    font-size: 2.0vw;
    margin: 0 0 4px 0;
  }
  #gnav04 .inside .button a .caption span {
    padding: 0 3px 0 3px;
  }
  #gnav04 .inside .button a .caption:before, #gnav04 .inside .button a .caption:after {
    height: 12px;
  }
  #gnav04 .inside .button a .caption:before {
    left: 5%;
  }
  #gnav04 .inside .button a .caption:after {
    right: 5%;
  }
  #gnav04 .inside .button a .catch {
    font-size: 3.5vw;
  }
  #gnav04 .inside .button a .catch img {
    width: 5vw;
    height: auto;
    padding: 0 3px 0 0;
    position: relative;
    top: 2px;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 CONSLIDER01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#conslider01 {
  width: 100%;
  padding: 10px 0 50px 0;
  margin: -40px 0 0 0;
  position: relative;
  z-index: 100;
}

#conslider01 .title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#conslider01 .title h2 .cover {
  background: #2c7dbe;
  color: #fff;
  display: inline-block;
  border: solid 2px #2c7dbe;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px 85px 15px 85px;
  margin: 0 30px 0 30px;
  font-size: 24px;
}

#conslider01 .title h2 .cover .mark {
  text-align: center;
  margin: -30px 0 0 0;
}

#conslider01 .title h2 .cover .mark span {
  display: inline-block;
  background: #fff;
  color: #2c7dbe;
  font-size: 22px;
  padding: 4px 20px 4px 20px;
}

#conslider01 .hero .swiper-container {
  overflow: hidden !important;
  max-width: 1980px;
  padding: 40px 3% 20px 3%;
  margin: 0 auto;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  border: solid 4px #2c7dbe;
  height: auto !important;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block {
  width: 100%;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 {
  text-align: center;
  margin: -20px 0 0 0;
  padding: 0 0 0 0;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover {
  display: inline-block;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover .mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2c7dbe;
  border-radius: 100px;
  padding: 5px 20px 5px 20px;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover .mark .icon {
  line-height: 0;
  width: 30px;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover .mark .icon img {
  width: 100%;
  height: auto;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover .mark .catch {
  color: #fff;
  font-size: 18px;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main p {
  margin: 5px 0 0 0;
  padding: 0 30px 0 30px;
  text-align: center;
  color: #2c7dbe;
  font-weight: 700;
  font-size: 22px;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px 0 20px;
  margin: 10px 0 0 0;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .sub h5 {
  margin: 0 20px 0 0;
  padding: 0 10px 0 10px;
  border: solid 2px #2c7dbe;
  color: #2c7dbe;
  font-size: 16px;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .sub p {
  font-size: 18px;
  color: #2c7dbe;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .semi .cover {
  color: #2c7dbe;
  text-align: center;
  line-height: 1.2;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .semi .cover .big {
  font-size: 70px;
  font-family: futura-pt, futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 600;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .semi .cover .middle {
  font-size: 30px;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 1.9s ease;
  transition: -webkit-transform 1.9s ease;
  transition: transform 1.9s ease;
  transition: transform 1.9s ease, -webkit-transform 1.9s ease;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide-active > img {
  -webkit-transform: none;
          transform: none;
}

#conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide-active .ic {
  opacity: 1.0;
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #conslider01 {
    padding: 10px 0 50px 0;
    margin: -30px 0 0 0;
  }
  #conslider01 .title h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #conslider01 .title h2 .cover {
    margin: 0 0px 0 0px;
    display: inline-block;
    padding: 15px 15px 15px 15px;
    font-size: 5.85vw;
  }
  #conslider01 .title h2 .cover .mark {
    text-align: center;
    margin: -30px 0 10px 0;
  }
  #conslider01 .title h2 .cover .mark span {
    display: inline-block;
    font-size: 18px;
    padding: 4px 10px 4px 10px;
  }
  #conslider01 .hero .swiper-container {
    padding: 40px 3% 20px 3%;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block {
    width: 100%;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 {
    margin: -20px 0 0 0;
    padding: 0 0 0 0;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover .mark {
    padding: 5px 20px 5px 20px;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover .mark .icon {
    width: 30px;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover .mark .icon img {
    width: 100%;
    height: auto;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main h5 .cover .mark .catch {
    font-size: 18px;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .main p {
    margin: 5px 0 0 0;
    padding: 0 10px 0 10px;
    font-weight: 700;
    font-size: 5.75vw;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .sub {
    padding: 0 20px 0 20px;
    margin: 10px 0 0 0;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .sub h5 {
    margin: 0 10px 0 0;
    padding: 0 10px 0 10px;
    font-size: 16px;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .sub p {
    font-size: 18px;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .semi .cover {
    line-height: 1.2;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .semi .cover .big {
    font-size: 16vw;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide .block .semi .cover .middle {
    font-size: 7vw;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform 1.9s ease;
    transition: -webkit-transform 1.9s ease;
    transition: transform 1.9s ease;
    transition: transform 1.9s ease, -webkit-transform 1.9s ease;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide-active > img {
    -webkit-transform: none;
            transform: none;
  }
  #conslider01 .hero .swiper-container .swiper-wrapper .swiper-slide-active .ic {
    opacity: 1.0;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TARGETING91 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.targeting91 .wrapper {
  background: -webkit-gradient(linear, left top, right top, from(#e9f0ff), to(#c7e0e9));
  background: linear-gradient(90deg, #e9f0ff 0%, #c7e0e9 100%);
  padding: 50px 0 50px 0;
}

.targeting91 .wrapper .title .caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.targeting91 .wrapper .title .caption .cover {
  display: inline-block;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  font-weight: bold;
  padding: 4px 40px 3px 40px;
  background: -webkit-gradient(linear, left top, right top, from(#0a9cfe), to(#1469ad));
  background: linear-gradient(to right, #0a9cfe 0%, #1469ad 100%);
}

.targeting91 .wrapper .title .caption .cover span {
  display: inline-block;
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
  font-size: 25px;
  letter-spacing: 2px;
  color: #ebf6ff;
}

.targeting91 .wrapper .title h2 {
  margin: 15px 0 0 0;
}

.targeting91 .wrapper .title h2 .cover {
  text-align: center;
  color: #155ba7;
  font-size: 45px;
}

.targeting91 .wrapper .inner .box-wrapper {
  max-width: 1280px;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.targeting91 .wrapper .inner .box-wrapper .box {
  width: 48.5%;
  background: #fff;
  margin: 20px 3% 0 0;
  padding: 20px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: rgba(19, 42, 94, 0.2) 1.95px 1.95px 2.6px;
          box-shadow: rgba(19, 42, 94, 0.2) 1.95px 1.95px 2.6px;
  position: relative;
}

.targeting91 .wrapper .inner .box-wrapper .box:before, .targeting91 .wrapper .inner .box-wrapper .box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
}

.targeting91 .wrapper .inner .box-wrapper .box:before {
  width: 100%;
  background: #cae4fa;
  z-index: 1;
}

.targeting91 .wrapper .inner .box-wrapper .box:after {
  width: 20%;
  background: #2c7dbe;
  z-index: 2;
}

.targeting91 .wrapper .inner .box-wrapper .box:nth-child(2n) {
  margin: 20px 0% 0 0;
}

.targeting91 .wrapper .inner .box-wrapper .box .icon {
  width: 10%;
  line-height: 0;
}

.targeting91 .wrapper .inner .box-wrapper .box .icon img {
  width: 100%;
  height: auto;
}

.targeting91 .wrapper .inner .box-wrapper .box .semi {
  color: #155ba7;
  width: 90%;
  padding: 0 0 0 20px;
  font-size: 20px;
}

.targeting91 .wrapper .explain {
  padding: 50px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.targeting91 .wrapper .explain .thumb {
  width: 200px;
  position: relative;
}

.targeting91 .wrapper .explain .thumb:before {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border: solid 2px #2c7dbe;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.targeting91 .wrapper .explain .thumb img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.targeting91 .wrapper .explain p {
  margin: 0 0 0 20px;
  font-size: 32px;
  color: #2c7dbe;
  font-weight: 700;
  text-align: center;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .targeting91 .wrapper {
    padding: 50px 0 50px 0;
  }
  .targeting91 .wrapper .title .caption .cover {
    font-size: 25px;
    padding: 4px 40px 3px 40px;
  }
  .targeting91 .wrapper .title h2 {
    margin: 15px 0 0 0;
  }
  .targeting91 .wrapper .title h2 .cover {
    font-size: 45px;
  }
  .targeting91 .wrapper .inner .box-wrapper {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 3% 0 3%;
  }
  .targeting91 .wrapper .inner .box-wrapper .box {
    width: 48.5%;
    margin: 20px 3% 0 0;
    padding: 20px 20px 20px 20px;
  }
  .targeting91 .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 20px 0% 0 0;
  }
  .targeting91 .wrapper .inner .box-wrapper .box .icon {
    width: 10%;
  }
  .targeting91 .wrapper .inner .box-wrapper .box .icon img {
    width: 100%;
    height: auto;
  }
  .targeting91 .wrapper .inner .box-wrapper .box .semi {
    width: 90%;
    padding: 0 0 0 20px;
    font-size: 20px;
  }
}

/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .targeting91 .wrapper {
    padding: 35px 0 35px 0;
  }
  .targeting91 .wrapper .title .caption .cover {
    padding: 4px 25px 3px 25px;
  }
  .targeting91 .wrapper .title .caption .cover span {
    font-size: 5vw;
  }
  .targeting91 .wrapper .title h2 {
    margin: 15px 0 0 0;
  }
  .targeting91 .wrapper .title h2 .cover {
    font-size: 8vw;
  }
  .targeting91 .wrapper .inner .box-wrapper {
    margin: 30px auto 0;
    display: block;
  }
  .targeting91 .wrapper .inner .box-wrapper .box {
    width: 90%;
    margin: 20px auto 0;
    padding: 20px 20px 20px 20px;
  }
  .targeting91 .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 20px auto 0;
  }
  .targeting91 .wrapper .inner .box-wrapper .box .icon {
    width: 10%;
    line-height: 0;
  }
  .targeting91 .wrapper .inner .box-wrapper .box .icon img {
    width: 100%;
    height: auto;
  }
  .targeting91 .wrapper .inner .box-wrapper .box .semi {
    font-size: 18px;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TITLE01-09 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.title01-09 {
  background: #2c7dbe;
  padding: 10px 0 40px 0;
  margin: 0px 0 0 0;
}

.title01-09 .icon {
  background: #2c7dbe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin: -40px auto 0;
}

.title01-09 .icon .cover {
  width: 100%;
}

.title01-09 .icon .cover img {
  display: block;
  margin: 0 auto 0;
  width: 60%;
  height: auto;
}

.title01-09 h2 {
  margin: 0px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.title01-09 h2 .mark {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  line-height: 1.2;
  margin: 0 20px 0 0;
}

.title01-09 h2 .mark .cover {
  color: #2c7dbe;
  font-size: 32px;
}

.title01-09 h2 .text .semi {
  font-family: futura-pt-bold,source-han-serif-japanese, serif;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 4px;
  font-size: 28px;
}

.title01-09 h2 .text .catch {
  margin: 10px 0 0 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 2px;
  font-size: 48px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .title01-09 {
    background: #2c7dbe;
    padding: 10px 0 40px 0;
    margin: 0px 0 0 0;
  }
  .title01-09 .icon {
    background: #2c7dbe;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: -40px auto 0;
  }
  .title01-09 .icon .cover {
    width: 100%;
  }
  .title01-09 .icon .cover img {
    display: block;
    margin: 0 auto 0;
    width: 60%;
    height: auto;
  }
  .title01-09 h2 {
    display: block;
  }
  .title01-09 h2 .mark {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 150px;
    line-height: 1.2;
    margin: 0px auto 0;
  }
  .title01-09 h2 .mark .cover {
    font-size: 26px;
  }
  .title01-09 h2 .text {
    margin: 15px 0 0 0;
  }
  .title01-09 h2 .text .semi {
    text-align: center;
    letter-spacing: 4px;
    font-size: 22px;
  }
  .title01-09 h2 .text .catch {
    margin: 10px 0 0 0;
    text-align: center;
    letter-spacing: 2px;
    font-size: 38px;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 POINT31 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.point31 .wrapper .inner .box-wrapper {
  padding: 30px 0 0 0;
}

.point31 .wrapper .inner .box-wrapper .box {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#e9f0ff), to(#c7e0e9));
  background: linear-gradient(90deg, #e9f0ff 0%, #c7e0e9 100%);
}

.point31 .wrapper .inner .box-wrapper .box:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
}

.point31 .wrapper .inner .box-wrapper .box .top {
  position: relative;
  z-index: 2;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .block h3 {
  background: #2c7dbe;
  padding: 30px 30px 30px 30px;
  color: #fff;
  margin: 0 40px 0 0;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .block h3 .cover {
  text-align: center;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .block h3 .cover .sub {
  font-size: 22px;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .block h3 .cover .semi {
  font-family: futura-pt, futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 0.9;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .block h2 .cover {
  color: #2c7dbe;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.7);
}

.point31 .wrapper .inner .box-wrapper .box .top .text .block h2 .cover .semi {
  font-family: futura-pt, futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.0;
  letter-spacing: 4px;
  padding: 0 0 0 3px;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .block h2 .cover .catch {
  margin: 5px 0 0 0;
  font-size: 45px;
  font-weight: 700;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .sentence {
  margin: 30px 0 0 0;
}

.point31 .wrapper .inner .box-wrapper .box .top .text .sentence p {
  color: #132a5e;
  font-size: 20px;
  line-height: 2.0;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.7);
  padding: 10px 0 10px 0;
}

.point31 .wrapper .inner .box-wrapper .box.box01 {
  width: 100%;
  margin: 100px 0 0 0;
  padding: 10px 0 0 0;
}

.point31 .wrapper .inner .box-wrapper .box.box01:before {
  top: 0;
  left: 0;
  border-width: 200px 60vw 0 0;
  border-color: #a8d1f3 transparent transparent transparent;
}

.point31 .wrapper .inner .box-wrapper .box.box01 .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  margin: 0 auto 0;
}

.point31 .wrapper .inner .box-wrapper .box.box01 .top .thumb {
  width: 45%;
  margin: -80px 0 0 0;
}

.point31 .wrapper .inner .box-wrapper .box.box01 .top .thumb .image {
  width: 100%;
}

.point31 .wrapper .inner .box-wrapper .box.box01 .top .thumb .image img {
  width: 100%;
  height: auto;
}

.point31 .wrapper .inner .box-wrapper .box.box01 .top .text {
  width: 55%;
  padding: 0 3% 40px 3%;
  margin: 30px 0 0 0;
}

.point31 .wrapper .inner .box-wrapper .box.box01 .top .text .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .point31 .wrapper .inner .box-wrapper {
    padding: 30px 0 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box .top .text .block {
    width: 100%;
    margin: 0 auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .point31 .wrapper .inner .box-wrapper .box .top .text .block h3 {
    padding: 20px 10px 20px 10px;
    margin: 0 15px 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box .top .text .block h3 .cover .sub {
    font-size: 3.75vw;
  }
  .point31 .wrapper .inner .box-wrapper .box .top .text .block h3 .cover .semi {
    font-size: 10vw;
    line-height: 0.9;
  }
  .point31 .wrapper .inner .box-wrapper .box .top .text .block h2 .cover .semi {
    font-size: 4.25vw;
    line-height: 1.0;
    letter-spacing: 2px;
    padding: 0 0 0 3px;
  }
  .point31 .wrapper .inner .box-wrapper .box .top .text .block h2 .cover .catch {
    margin: 5px 0 0 0;
    font-size: 6.75vw;
  }
  .point31 .wrapper .inner .box-wrapper .box .top .text .sentence {
    width: 92%;
    margin: 20px auto 0;
  }
  .point31 .wrapper .inner .box-wrapper .box .top .text .sentence p {
    font-size: 18px;
    line-height: 2.0;
    padding: 10px 0 10px 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01 {
    width: 100%;
    margin: 100px 0 0 0;
    padding: 10px 0 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01:before {
    top: 0;
    left: 0;
    border-width: 200px 60vw 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01 .top {
    display: block;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01 .top .thumb {
    width: 90%;
    margin: -80px auto 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01 .top .thumb .image {
    width: 100%;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01 .top .thumb .image img {
    width: 100%;
    height: auto;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01 .top .text {
    width: 100%;
    padding: 0 4% 40px 4%;
    margin: 30px 0 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01 .top .text .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .point31 .wrapper .inner .box-wrapper .box.box01 .top .text .sentence {
    margin: 30px auto 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box02 {
    margin: 120px 0 0 0;
    padding: 10px 0 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box02:before {
    bottom: 0;
    right: 0;
    border-width: 0 0  300px 60vw;
  }
  .point31 .wrapper .inner .box-wrapper .box.box02 .top .thumb {
    width: 90%;
    margin: -80px auto 0;
    max-width: 1280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .point31 .wrapper .inner .box-wrapper .box.box02 .top .thumb .image {
    width: 29%;
    margin: 0 3% 0 0;
    line-height: 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box02 .top .thumb .image img {
    width: 100%;
    height: auto;
  }
  .point31 .wrapper .inner .box-wrapper .box.box02 .top .thumb .image:nth-child(3n) {
    margin: 0 0px 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box02 .top .text {
    max-width: 1280px;
    padding: 0 3% 40px 3%;
    margin: 30px auto 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box02 .top .text .sentence {
    margin: 30px auto 0;
    max-width: 1000px;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03 {
    width: 100%;
    margin: 150px 0 0 0;
    padding: 10px 0 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03:before {
    top: 0;
    left: 0;
    border-width: 200px 60vw 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03 .top {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1980px;
    margin: 0 auto 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03 .top .thumb {
    width: 90%;
    margin: -80px auto 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03 .top .thumb .image {
    width: 100%;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03 .top .thumb .image img {
    width: 100%;
    height: auto;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03 .top .text {
    width: 100%;
    padding: 0 3% 40px 3%;
    margin: 30px 0 0 0;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03 .top .text .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .point31 .wrapper .inner .box-wrapper .box.box03 .top .text .sentence {
    margin: 30px auto 0;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TITLE01-10 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.title01-10 {
  background: #2c7dbe;
  padding: 10px 0 40px 0;
  margin: 0px 0 0 0;
  position: relative;
}

.title01-10 .icon {
  background: #2c7dbe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin: -40px auto 0;
}

.title01-10 .icon .cover {
  width: 100%;
}

.title01-10 .icon .cover img {
  display: block;
  margin: 0 auto 0;
  width: 60%;
  height: auto;
}

.title01-10 .back {
  position: absolute;
  font-family: futura-pt-bold,source-han-serif-japanese, serif;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.1;
  letter-spacing: 4px;
  font-size: 78px;
}

.title01-10 .back.back01 {
  top: 0px;
  left: 0;
}

.title01-10 .back.back02 {
  bottom: 0;
  right: 0;
}

.title01-10 h2 {
  margin: 0px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.title01-10 h2 .mark {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  line-height: 1.2;
  margin: 0 20px 0 0;
}

.title01-10 h2 .mark .cover {
  color: #2c7dbe;
  font-size: 32px;
}

.title01-10 h2 .text .catch {
  margin: 0px 0 0 0;
  text-align: center;
  line-height: 1.2;
}

.title01-10 h2 .text .catch .sub {
  color: #fff;
  display: inline;
  border: solid 2px #fff;
  font-size: 18px;
  padding: 4px 25px 4px 25px;
  border-radius: 100px;
}

.title01-10 h2 .text .catch .main {
  margin: 5px 0 0 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 2px;
  font-size: 52px;
}

.title01-10 h2 .text .catch .main .small {
  font-size: 28px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .title01-10 {
    background: #2c7dbe;
    padding: 10px 0 40px 0;
    margin: 0px 0 0 0;
  }
  .title01-10 .icon {
    background: #2c7dbe;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: -40px auto 0;
  }
  .title01-10 .icon .cover {
    width: 100%;
  }
  .title01-10 .icon .cover img {
    display: block;
    margin: 0 auto 0;
    width: 60%;
    height: auto;
  }
  .title01-10 .back {
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    font-size: 10vw;
  }
  .title01-10 .back.back01 {
    top: 0px;
    left: 0;
  }
  .title01-10 .back.back02 {
    bottom: 0;
    right: 0;
  }
  .title01-10 h2 {
    display: block;
  }
  .title01-10 h2 .mark {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 150px;
    line-height: 1.2;
    margin: 0px auto 0;
  }
  .title01-10 h2 .mark .cover {
    font-size: 26px;
  }
  .title01-10 h2 .text {
    margin: 15px 0 0 0;
  }
  .title01-10 h2 .text .semi {
    text-align: center;
    letter-spacing: 4px;
    font-size: 22px;
  }
  .title01-10 h2 .text .catch {
    margin: 0px 0 0 0;
    text-align: center;
    line-height: 1.2;
  }
  .title01-10 h2 .text .catch .sub {
    font-size: 4.5vw;
  }
  .title01-10 h2 .text .catch .main {
    margin: 5px 0 0 0;
    font-size: 8vw;
  }
  .title01-10 h2 .text .catch .main .small {
    font-size: 6vw;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION65 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.section65 {
  margin: 100px 0 0 0;
}

.section65 .title {
  position: relative;
  overflow: hidden;
  padding: 30px 0 0px 0;
}

.section65 .title .en {
  color: rgba(44, 125, 190, 0.2);
  font-family: objektiv-mk1,sans-serif;
  font-weight: 900;
  font-size: 120px;
  position: absolute;
  z-index: 1;
  white-space: nowrap;
  line-height: 1.0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.section65 .title h2 {
  text-align: center;
}

.section65 .title h2 .cover {
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

.section65 .wrapper .inner .box {
  max-width: 1280px;
  margin: 0 auto 0;
  padding: 70px 3.5% 70px 3.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section65 .wrapper .inner .box .left {
  width: 45%;
  margin: 0 5% 0 0;
}

.section65 .wrapper .inner .box .left .thumb {
  width: 100%;
  position: relative;
}

.section65 .wrapper .inner .box .left .thumb .mark {
  position: absolute;
  top: 0;
  left: 0;
}

.section65 .wrapper .inner .box .left .thumb .mark p {
  display: inline-block;
  background: rgba(44, 125, 190, 0.8);
  letter-spacing: 5px;
  color: #fff;
  padding: 3px 10px 5px 10px;
  text-align: center;
  font-size: 20px;
}

.section65 .wrapper .inner .box .left .thumb .cover {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

.section65 .wrapper .inner .box .left .thumb .cover h4 .inside {
  display: inline-block;
  color: #fff;
  background: #2c7dbe;
  font-weight: 700;
  font-size: 18px;
  padding: 5px 3px 5px 3px;
  margin: 0 5px 0 0;
}

.section65 .wrapper .inner .box .left .thumb .cover h5 .inside {
  display: inline-block;
  background: #fff;
  color: #2c7dbe;
  font-weight: 900;
  margin: 20px 0 0 0;
  padding: 10px 6px 10px 6px;
  line-height: 1.3;
  letter-spacing: 2px;
  -webkit-box-shadow: 3px 3px 0 3px #2c7dbe;
          box-shadow: 3px 3px 0 3px #2c7dbe;
  font-size: 20px;
}

.section65 .wrapper .inner .box .left .thumb .cover .sub p {
  display: inline-block;
  background: #fff;
  color: #2c7dbe;
  font-weight: 900;
  margin: 50px 0 0 0;
  padding: 12px 12px 12px 12px;
  line-height: 1.3;
  letter-spacing: 2px;
  -webkit-box-shadow: 3px 3px 0 3px #2c7dbe;
          box-shadow: 3px 3px 0 3px #2c7dbe;
  font-size: 38px;
}

.section65 .wrapper .inner .box .left .thumb img {
  width: 100%;
  height: auto;
}

.section65 .wrapper .inner .box .right {
  width: 50%;
}

.section65 .wrapper .inner .box .right .text .sentence h3 {
  display: inline-block;
  border: solid 2px #fff;
  padding: 10px 20px 12px 20px;
  background: #2c7dbe;
  color: #fff;
}

.section65 .wrapper .inner .box .right .text .sentence h3 .icon {
  display: inline-block;
  width: 40px;
  height: auto;
  margin: 0 2px 0 0;
  line-height: 0;
  text-align: center;
}

.section65 .wrapper .inner .box .right .text .sentence h3 .icon img {
  width: 80%;
  height: auto;
  position: relative;
  top: 5px;
}

.section65 .wrapper .inner .box .right .text .sentence h3 .phrase {
  display: inline-block;
  font-size: 25px;
}

.section65 .wrapper .inner .box .right .text .sentence p {
  margin: -30px 0 0 0;
  padding: 60px 30px 30px 30px;
  border: solid 2px #2c7dbe;
  -webkit-box-shadow: 4px 4px 0 4px #cae4fa;
          box-shadow: 4px 4px 0 4px #cae4fa;
  color: #2c7dbe;
  font-size: 20px;
  line-height: 2.0;
  font-weight: 700;
}

.section65 .wrapper .inner .box .right .addtional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 0 0;
}

.section65 .wrapper .inner .box .right .addtional .mark {
  width: 110px;
  margin: 0 20px 0 0;
}

.section65 .wrapper .inner .box .right .addtional .mark img {
  width: 100%;
  height: auto;
  border-radius: 90px;
}

.section65 .wrapper .inner .box .right .addtional p {
  padding: 10px 20px 10px 20px;
  font-size: 18px;
  color: #2c7dbe;
  background: #2c7dbe;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  border-radius: 40px;
  position: relative;
}

.section65 .wrapper .inner .box .right .addtional p:before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -10px;
  top: 50%;
  border-right: 13px solid #2c7dbe;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.section65 .wrapper .inner .box:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.section65 .wrapper .inner .box:nth-child(2n) .left {
  margin: 0 0 0 5%;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section65 {
    margin: 0px 0 0 0;
  }
  .section65 .title {
    padding: 30px 0 0px 0;
  }
  .section65 .title .en {
    font-family: objektiv-mk1,sans-serif;
    font-weight: 900;
    font-size: 120px;
    position: absolute;
    z-index: 1;
    white-space: nowrap;
    line-height: 1.0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .section65 .title h2 {
    text-align: center;
  }
  .section65 .title h2 .cover {
    color: #fff;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: 1.5px;
  }
  .section65 .wrapper .inner .box {
    padding: 70px 3% 70px 3%;
  }
  .section65 .wrapper .inner .box .left {
    width: 52%;
    margin: 0 3% 0 0;
  }
  .section65 .wrapper .inner .box .left .thumb {
    width: 100%;
    position: relative;
  }
  .section65 .wrapper .inner .box .left .thumb .mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  .section65 .wrapper .inner .box .left .thumb .mark p {
    padding: 3px 10px 5px 10px;
    font-size: 1.85vw;
  }
  .section65 .wrapper .inner .box .left .thumb .cover {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .section65 .wrapper .inner .box .left .thumb .cover h4 .inside {
    font-size: 1.65vw;
  }
  .section65 .wrapper .inner .box .left .thumb .cover h5 .inside {
    margin: 5px 0 0 0;
    padding: 10px 6px 10px 6px;
    font-size: 2vw;
  }
  .section65 .wrapper .inner .box .left .thumb .cover .sub p {
    margin: 25px 0 0 0;
    padding: 12px 2px 12px 2px;
    font-size: 3.85vw;
  }
  .section65 .wrapper .inner .box .left .thumb img {
    width: 100%;
    height: auto;
  }
  .section65 .wrapper .inner .box .right {
    width: 45%;
  }
  .section65 .wrapper .inner .box .right .text .sentence h3 {
    border: solid 2px #fff;
    padding: 10px 20px 12px 20px;
  }
  .section65 .wrapper .inner .box .right .text .sentence h3 .icon {
    width: 5vw;
    height: auto;
    margin: 0 2px 0 0;
  }
  .section65 .wrapper .inner .box .right .text .sentence h3 .icon img {
    width: 80%;
    height: auto;
    top: 5px;
  }
  .section65 .wrapper .inner .box .right .text .sentence h3 .phrase {
    font-size: 2.5vw;
  }
  .section65 .wrapper .inner .box .right .text .sentence p {
    margin: -30px 0 0 0;
    padding: 60px 30px 30px 30px;
    font-size: 2vw;
  }
  .section65 .wrapper .inner .box .right .addtional {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 20px 0 0 0;
  }
  .section65 .wrapper .inner .box .right .addtional .mark {
    width: 110px;
    margin: 0 20px 0 0;
  }
  .section65 .wrapper .inner .box .right .addtional .mark img {
    width: 100%;
    height: auto;
    border-radius: 90px;
  }
  .section65 .wrapper .inner .box .right .addtional p {
    padding: 10px 20px 10px 20px;
    font-size: 18px;
    color: #fff;
    background: #2c7dbe;
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 700;
    border-radius: 40px;
    position: relative;
  }
  .section65 .wrapper .inner .box .right .addtional p:before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -10px;
    top: 50%;
    border-right: 13px solid #2c7dbe;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .section65 .wrapper .inner .box:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .section65 .wrapper .inner .box:nth-child(2n) .left {
    margin: 0 0 0 5%;
  }
}

/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .section65 {
    margin: 35px 0 0 0;
  }
  .section65 .wrapper .inner .box {
    max-width: 1280px;
    padding: 40px 0% 40px 0%;
    display: block;
  }
  .section65 .wrapper .inner .box:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .section65 .wrapper .inner .box .left {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .section65 .wrapper .inner .box .left .thumb .mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  .section65 .wrapper .inner .box .left .thumb .mark p {
    letter-spacing: 3px;
    padding: 3px 6px 5px 6px;
    font-size: 18px;
  }
  .section65 .wrapper .inner .box .left .thumb .cover {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .section65 .wrapper .inner .box .left .thumb .cover h4 {
    margin: 0px 0 0 15px;
  }
  .section65 .wrapper .inner .box .left .thumb .cover h4 .inside {
    font-size: 12px;
    padding: 5px 3px 5px 3px;
    margin: 0 5px 0 0;
  }
  .section65 .wrapper .inner .box .left .thumb .cover h5 {
    margin: 0px 0 0 15px;
  }
  .section65 .wrapper .inner .box .left .thumb .cover h5 .inside {
    margin: 10px 0 0 0;
    padding: 8px 6px 10px 8px;
    line-height: 1.3;
    letter-spacing: 1px;
    font-size: 17px;
  }
  .section65 .wrapper .inner .box .left .thumb .cover .sub p {
    margin: 35px 0 0 0;
    padding: 8px 8px 8px 8px;
    line-height: 1.3;
    letter-spacing: 2px;
    font-size: 28px;
  }
  .section65 .wrapper .inner .box .left .thumb img {
    width: 100%;
    height: auto;
  }
  .section65 .wrapper .inner .box .left:nth-child(2n) .thumb {
    margin: 0 0 0 5%;
  }
  .section65 .wrapper .inner .box .left .sentence p {
    padding: 0 5% 0 5%;
  }
  .section65 .wrapper .inner .box .right {
    width: 92%;
    margin: 0 auto 0;
  }
  .section65 .wrapper .inner .box .right .text .sentence h3 {
    padding: 10px 15px 12px 15px;
  }
  .section65 .wrapper .inner .box .right .text .sentence h3 .icon {
    width: 8vw;
    margin: 0 5px 0 0;
  }
  .section65 .wrapper .inner .box .right .text .sentence h3 .icon img {
    width: 100%;
    height: auto;
    position: relative;
    top: 3px;
  }
  .section65 .wrapper .inner .box .right .text .sentence h3 .phrase {
    font-size: 6vw;
  }
  .section65 .wrapper .inner .box .right .text .sentence p {
    margin: -30px 0 0 0;
    padding: 55px 30px 30px 30px;
    font-size: 4.5vw;
    line-height: 2.2;
  }
  .section65 .wrapper .inner .box .right .addtional {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 20px 0 0 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section65 .wrapper .inner .box .right .addtional .mark {
    width: 25%;
    margin: 0 2% 0 0;
  }
  .section65 .wrapper .inner .box .right .addtional .mark img {
    width: 100%;
    height: auto;
    border-radius: 90px;
  }
  .section65 .wrapper .inner .box .right .addtional p {
    width: 63%;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    border-radius: 40px;
    position: relative;
  }
  .section65 .wrapper .inner .box .right .addtional p:before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -10px;
    top: 50%;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .section65 .wrapper .inner .box:nth-child(2n) .left {
    margin: 0 0 0 0%;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TITLE31-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.title31-01 {
  margin: 0px 0 0px 0;
  overflow: hidden;
  padding: 0px 0 0px 0;
}

.title31-01 .title-wrapper {
  background: -webkit-gradient(linear, left top, right top, from(#0acffe), to(#495aff));
  background: linear-gradient(to right, #0acffe 0%, #495aff 100%);
  padding: 60px 0 60px 0;
}

.title31-01 .title-wrapper h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.title31-01 .title-wrapper h5 .border {
  width: 30%;
  height: 2px;
  background: #fff;
  margin: 0 20px 0 0;
}

.title31-01 .title-wrapper h5 .cover {
  color: #fff;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 5px;
}

.title31-01 .title-wrapper .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.title31-01 .title-wrapper .block .thumb {
  width: 650px;
  cursor: pointer;
  margin: 0px 0 0 0;
}

.title31-01 .title-wrapper .block .thumb img {
  width: 100%;
  height: auto;
}

.title31-01 .title-wrapper .block .thumb .caption {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0 10px 0;
}

.title31-01 .title-wrapper .block .right {
  color: #fff;
  padding: 0 0 0 50px;
  position: relative;
}

.title31-01 .title-wrapper .block .right h4 {
  white-space: nowrap;
  position: absolute;
  top: -100px;
  left: 50px;
  color: #fff;
  opacity: 0.15;
  font-size: 140px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  line-height: 1.0;
  z-index: 1;
}

.title31-01 .title-wrapper .block .right h2 {
  font-size: 70px;
  letter-spacing: 5px;
  font-weight: 900;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  margin: -20px 0 10px 0;
}

.title31-01 .title-wrapper .block .right h3 {
  margin: 30px 0 0 0;
  font-size: 20px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .title31-01 .title-wrapper {
    padding: 60px 0 60px 0;
  }
  .title31-01 .title-wrapper h5 .border {
    width: 30%;
    height: 2px;
    margin: 0 20px 0 0;
  }
  .title31-01 .title-wrapper h5 .cover {
    font-size: 22px;
    letter-spacing: 5px;
  }
  .title31-01 .title-wrapper .block .thumb {
    width: 500px;
    margin: 0px 0 0 0;
  }
  .title31-01 .title-wrapper .block .thumb img {
    width: 100%;
    height: auto;
  }
  .title31-01 .title-wrapper .block .thumb .caption {
    font-size: 16px;
    text-align: center;
    padding: 10px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right {
    padding: 0 0 0 50px;
    position: relative;
  }
  .title31-01 .title-wrapper .block .right h4 {
    white-space: nowrap;
    position: absolute;
    top: -100px;
    left: 50px;
    color: #fff;
    opacity: 0.15;
    font-size: 140px;
    font-family: futura-pt-bold, sans-serif;
    font-weight: 700;
    line-height: 1.0;
    z-index: 1;
  }
  .title31-01 .title-wrapper .block .right h2 {
    font-size: 6vw;
    letter-spacing: 5px;
    line-height: 1.2;
    z-index: 2;
    margin: -20px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right h3 {
    margin: 30px 0 0 0;
    font-size: 20px;
  }
}

/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .title31-01 .title-wrapper {
    padding: 60px 0 60px 0;
  }
  .title31-01 .title-wrapper h5 .border {
    width: 30%;
    height: 2px;
    margin: 0 20px 0 0;
  }
  .title31-01 .title-wrapper h5 .cover {
    font-size: 22px;
    letter-spacing: 5px;
  }
  .title31-01 .title-wrapper .block .thumb {
    width: 350px;
    margin: 0px 0 0 0;
  }
  .title31-01 .title-wrapper .block .thumb img {
    width: 100%;
    height: auto;
  }
  .title31-01 .title-wrapper .block .thumb .caption {
    font-size: 16px;
    text-align: center;
    padding: 10px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right {
    padding: 0 0 0 50px;
    position: relative;
  }
  .title31-01 .title-wrapper .block .right h4 {
    white-space: nowrap;
    position: absolute;
    top: -100px;
    left: 50px;
    color: #fff;
    opacity: 0.15;
    font-size: 140px;
    font-family: futura-pt-bold, sans-serif;
    font-weight: 700;
    line-height: 1.0;
    z-index: 1;
  }
  .title31-01 .title-wrapper .block .right h2 {
    font-size: 6vw;
    letter-spacing: 5px;
    line-height: 1.2;
    z-index: 2;
    margin: -20px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right h3 {
    margin: 30px 0 0 0;
    font-size: 20px;
  }
}

/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .title31-01 {
    margin: 0px 0 0px 0;
    overflow: visible;
    padding: 0px 0 0px 0;
  }
  .title31-01 .title-wrapper {
    padding: 30px 0 30px 0;
  }
  .title31-01 .title-wrapper h5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  .title31-01 .title-wrapper h5 .border {
    width: 20%;
    height: 2px;
    background: #fff;
    margin: 0 20px 0 0;
  }
  .title31-01 .title-wrapper h5 .cover {
    font-size: 4.5vw;
    letter-spacing: 3px;
  }
  .title31-01 .title-wrapper .block {
    display: block;
  }
  .title31-01 .title-wrapper .block .thumb {
    width: 92%;
    cursor: pointer;
    margin: 20px auto 0;
  }
  .title31-01 .title-wrapper .block .thumb img {
    width: 100%;
    height: auto;
  }
  .title31-01 .title-wrapper .block .thumb .caption {
    font-size: 16px;
    text-align: center;
    padding: 10px 0px 0px 10px;
  }
  .title31-01 .title-wrapper .block .right {
    padding: 20px 5% 10px 5%;
    margin: 0 auto 0;
    overflow: hidden;
  }
  .title31-01 .title-wrapper .block .right h4 {
    white-space: nowrap;
    top: -100px;
    left: 50px;
    color: #fff;
    opacity: 0.15;
    font-size: 90px;
    z-index: 1;
  }
  .title31-01 .title-wrapper .block .right h2 {
    font-size: 12vw;
    letter-spacing: 5px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right h3 {
    font-size: 20px;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 CONSLIDER02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#conslider02 {
  width: 100%;
  padding: 10px 0 0px 0;
  margin: -40px 0 0 0;
  position: relative;
  z-index: 100;
  background: #ebf6ff;
}

#conslider02 .wrapper {
  background: url(../images/conslider02-pattern.svg) repeat 0 0;
  background-size: 50px auto;
}

#conslider02 .wrapper .hero .swiper-container {
  overflow: hidden !important;
  max-width: 1980px;
  padding: 40px 3% 20px 3%;
  margin: 0 auto;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  border: solid 4px #2c7dbe;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block {
  background: #fff;
  padding: 10px 0 0 0;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block h4 {
  margin: -30px 0px 0 0;
  text-align: center;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block h4 .cover {
  display: inline-block;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  background: #cae4fa;
  color: #2c7dbe;
  border: solid 3px #fff;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 4px 60px 4px 60px;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block h4 .cover span {
  display: inline-block;
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 50px 0 50px;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .left {
  margin: 0 3% 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .left h3 .cover {
  font-size: 40px;
  color: #2c7dbe;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .mark .cover {
  display: inline-block;
  background: #2c7dbe;
  color: #fff;
  font-size: 22px;
  text-align: center;
  padding: 10px 20px 10px 20px;
  margin: 0 20px 0 0;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .catch {
  color: #2c7dbe;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .catch .big {
  font-size: 90px;
  font-family: futura-pt, futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .catch .small {
  font-size: 30px;
  font-weight: 700;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element {
  padding: 30px 50px 30px 50px;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table {
  width: 100%;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table tr th {
  background: #2c7dbe;
  color: #fff;
  padding: 10px 10px 10px 10px;
  font-size: 30px;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table tr td {
  padding: 10px 35px 10px 35px;
  font-size: 20px;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table tr td:nth-child(3) {
  text-align: center;
  color: #2c7dbe;
  font-weight: 700;
  font-size: 26px;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table tr:nth-child(2n) {
  background: #ebf6ff;
}

#conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide-active {
  margin: 0 0 0 0;
}

#conslider02 .wrapper .explain {
  padding: 40px 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

#conslider02 .wrapper .explain .thumb {
  width: 300px;
  margin: 0 30px 0 0;
  position: relative;
}

#conslider02 .wrapper .explain .thumb:before {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border: solid 3px #2c7dbe;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}

#conslider02 .wrapper .explain .thumb img {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 50%;
  width: 100%;
  height: auto;
}

#conslider02 .wrapper .explain .text {
  text-align: center;
}

#conslider02 .wrapper .explain .text .mark .cover {
  display: inline-block;
  background: #fff;
  border-radius: 100px;
  padding: 10px 20px 10px 20px;
  color: #2c7dbe;
  font-size: 18px;
  font-weight: 700;
}

#conslider02 .wrapper .explain .text .line {
  display: inline-block;
  background: #2c7dbe;
  color: #fff;
  font-size: 40px;
  margin: 10px 0 0 0;
  padding: 3px 25px 3px 25px;
  font-weight: 900;
}

#conslider02 .wrapper .explain .text .line img {
  width: 360px;
  height: auto;
  padding: 0 3px 0 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #conslider02 {
    padding: 10px 0 0px 0;
    margin: -40px 0 0 0;
  }
  #conslider02 .wrapper {
    background: url(../images/conslider02-pattern.svg) repeat 0 0;
    background-size: 50px auto;
  }
  #conslider02 .wrapper .hero .swiper-container {
    padding: 40px 3% 20px 3%;
    margin: 0 auto;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide {
    width: 90%;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block {
    padding: 10px 0 0 0;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block h4 {
    margin: -30px 0px 0 0;
    text-align: center;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block h4 .cover {
    font-size: 6vw;
    letter-spacing: 2px;
    padding: 4px 30px 4px 30px;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group {
    display: block;
    padding: 30px 25px 0 25px;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .left {
    margin: 0 0% 0 0;
    display: block;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .left h3 {
    display: block;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .left h3 .cover {
    text-align: center;
    font-size: 7vw;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .left h3 .cover .small {
    font-size: 5vw;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right {
    margin: 10px 0 0 0;
    display: block;
    text-align: center;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .mark {
    display: inline-block;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .mark .cover {
    font-size: 3.5vw;
    padding: 10px 10px 10px 10px;
    margin: 0 0px 0 0;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .catch {
    display: inline-block;
    padding: 0 3% 0 3%;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .catch .big {
    font-size: 9vw;
    letter-spacing: 2px;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .group .right .catch .small {
    font-size: 6vw;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element {
    padding: 20px 20px 30px 20px;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table {
    width: 100%;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table tr th {
    padding: 10px 10px 10px 10px;
    font-size: 4vw;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table tr td {
    padding: 6px 10px 6px 10px;
    font-size: 3vw;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide .block .element table tr td:nth-child(3) {
    font-size: 3vw;
  }
  #conslider02 .wrapper .hero .swiper-container .swiper-wrapper .swiper-slide-active {
    margin: 0 0 0 0;
  }
  #conslider02 .wrapper .explain {
    padding: 30px 0 30px 0;
  }
  #conslider02 .wrapper .explain .thumb {
    width: 280px;
    margin: 0 30px 0 0;
    position: relative;
  }
  #conslider02 .wrapper .explain .thumb:before {
    content: "";
    position: absolute;
    width: 95%;
    height: 95%;
    border: solid 3px #2c7dbe;
    z-index: 3;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  #conslider02 .wrapper .explain .thumb img {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 50%;
    width: 100%;
    height: auto;
  }
  #conslider02 .wrapper .explain .text {
    text-align: center;
  }
  #conslider02 .wrapper .explain .text .line {
    font-size: 6vw;
    margin: 10px 0 0 0;
    padding: 3px 25px 3px 25px;
    font-weight: 900;
  }
  #conslider02 .wrapper .explain .text .line img {
    width: 360px;
    height: auto;
    padding: 0 3px 0 0;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TITLE04-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.title04-01 {
  overflow: hidden;
}

.title04-01 .en {
  font-size: 90px;
  color: #2c7dbe;
  line-height: 1.0;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  vertical-align: top;
  position: relative;
  top: 20px;
  letter-spacing: 6px;
  text-align: center;
}

.title04-01 h2 {
  width: 100%;
  padding: 50px 0 20px 0;
  background: #2c7dbe;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}

.title04-01 h2:before, .title04-01 h2:after {
  content: "";
  width: 130%;
  height: 200%;
  background: #155ba7;
}

.title04-01 h2:before {
  position: absolute;
  left: 50%;
  top: -20%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.title04-01 h2:after {
  position: absolute;
  right: 50%;
  top: -20%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.title04-01 h2 .semi {
  font-size: 22px;
  text-align: center;
  padding: 10px 0 10px 0;
  position: relative;
  z-index: 3;
}

.title04-01 h2 .catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1;
}

.title04-01 h2 .catch .image {
  width: 200px;
  padding: 0 10px 0 0;
  position: relative;
  z-index: 3;
}

.title04-01 h2 .catch .image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  border-radius: 100%;
  border: solid 5px #155ba7;
}

.title04-01 h2 .catch .cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.title04-01 h2 .catch .cover .text {
  font-size: 45px;
  text-align: center;
  padding: 0 10px 0 0;
  line-height: 1.3;
  position: relative;
  z-index: 5;
}

.title04-01 h2 .catch .cover .icon {
  line-height: 0;
  width: 150px;
  font-weight: 900;
  position: relative;
  top: -5px;
  z-index: 3;
}

.title04-01 h2 .catch .cover .icon img {
  width: 100%;
  height: auto;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .title04-01 .en {
    font-size: 12vw;
    top: 10px;
    letter-spacing: 4px;
  }
  .title04-01 h2 {
    padding: 20px 0 20px 0;
  }
  .title04-01 h2:before, .title04-01 h2:after {
    content: "";
    width: 130%;
    height: 200%;
    background: #155ba7;
  }
  .title04-01 h2:before {
    position: absolute;
    left: 50%;
    top: -20%;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .title04-01 h2:after {
    position: absolute;
    right: 50%;
    top: -20%;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .title04-01 h2 .semi {
    font-size: 22px;
    padding: 0px 0 10px 0;
  }
  .title04-01 h2 .catch {
    display: block;
  }
  .title04-01 h2 .catch .image {
    width: 150px;
    padding: 0 0px 0 0;
    margin: 0 auto 0;
  }
  .title04-01 h2 .catch .image img {
    width: 100%;
    height: auto;
  }
  .title04-01 h2 .catch .cover {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .title04-01 h2 .catch .cover .text {
    font-size: 8vw;
    text-align: center;
    padding: 0 0px 0 0;
    line-height: 1.3;
  }
  .title04-01 h2 .catch .cover .icon {
    line-height: 0;
    width: 90px;
    font-weight: 900;
    position: relative;
    top: -5px;
    z-index: 3;
  }
  .title04-01 h2 .catch .cover .icon img {
    width: 100%;
    height: auto;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 POINT13 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.point13 {
  background: auto;
  margin: 60px 0 0 0;
}

.point13 .wrapper .inner .box-wrapper {
  max-width: 1920px;
  margin: 70px auto 0;
  padding: 0 5% 0 5%;
}

.point13 .wrapper .inner .box-wrapper .box {
  width: 100%;
  margin: 80px 0% 0px 0;
  background: #2c7dbe;
  position: relative;
  z-index: 1;
  padding: 30px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.point13 .wrapper .inner .box-wrapper .box .back {
  position: absolute;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
  opacity: 0.3;
  font-size: 90px;
  line-height: 0.9;
  z-index: -1;
  top: 100px;
}

.point13 .wrapper .inner .box-wrapper .box .mark {
  background: #fff;
  border: solid 2px #fff;
  -webkit-box-shadow: inset 0 0 0 2px #2c7dbe;
          box-shadow: inset 0 0 0 2px #2c7dbe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  line-height: 1.2;
  width: 130px;
  height: 130px;
  border-radius: 130px;
  margin: -60px 0 0 -20px;
  color: #2c7dbe;
  position: absolute;
  z-index: 2;
  font-size: 22px;
  font-weight: 700;
}

.point13 .wrapper .inner .box-wrapper .box .left {
  width: 45%;
  margin: 0 5% 0 5%;
  border: solid 6px #fff;
  padding: 40px 0 40px 0;
}

.point13 .wrapper .inner .box-wrapper .box .left h3 {
  padding: 0px 0 0 0px;
  display: block;
}

.point13 .wrapper .inner .box-wrapper .box .left h3 .icon {
  line-height: 0;
  width: 220px;
  margin: 0px auto 0;
}

.point13 .wrapper .inner .box-wrapper .box .left h3 .icon img {
  width: 100%;
  height: auto;
}

.point13 .wrapper .inner .box-wrapper .box .left h3 .cover .line01 {
  margin: 30px 0 0 0;
  text-align: center;
}

.point13 .wrapper .inner .box-wrapper .box .left h3 .cover .line01 span {
  display: inline-block;
  padding: 5px 20px 5px 20px;
  background: -webkit-gradient(linear, left top, right top, from(#0acffe), to(#495aff));
  background: linear-gradient(to right, #0acffe 0%, #495aff 100%);
  color: #fff;
  font-family: futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.point13 .wrapper .inner .box-wrapper .box .left h3 .cover .line02 {
  margin: 10px 0 0 0;
  text-align: center;
}

.point13 .wrapper .inner .box-wrapper .box .left h3 .cover .line02 span {
  display: inline-block;
  background: #fff;
  padding: 10px 20px 10px 20px;
  color: #2c7dbe;
  font-size: 32px;
  font-weight: 900;
}

.point13 .wrapper .inner .box-wrapper .box .left h4 {
  margin: 30px 0 0 0;
}

.point13 .wrapper .inner .box-wrapper .box .left h4 .cover {
  color: #fff;
  text-align: center;
}

.point13 .wrapper .inner .box-wrapper .box .left h4 .cover .big {
  font-size: 70px;
  font-family: futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
}

.point13 .wrapper .inner .box-wrapper .box .left h4 .cover .middle {
  font-size: 30px;
}

.point13 .wrapper .inner .box-wrapper .box .left h4 .cover .small {
  font-size: 25px;
}

.point13 .wrapper .inner .box-wrapper .box .left ul {
  margin: 20px 0 0 0;
  width: 87.5%;
  list-style-type: none;
}

.point13 .wrapper .inner .box-wrapper .box .left ul li {
  text-align: center;
  padding: 10px 20px 10px 20px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  border-top: solid 2px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.point13 .wrapper .inner .box-wrapper .box .left ul li:last-child {
  border-bottom: solid 2px #fff;
}

.point13 .wrapper .inner .box-wrapper .box .right {
  width: 45%;
  padding: 0 5% 0 0%;
}

.point13 .wrapper .inner .box-wrapper .box .right .thumb {
  line-height: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
  margin: 0px 0 0 0;
  padding: 0 0 0 0%;
  position: relative;
  z-index: 1;
}

.point13 .wrapper .inner .box-wrapper .box .right .thumb img {
  width: 100%;
  height: auto;
}

.point13 .wrapper .inner .box-wrapper .box .right h3 {
  margin: -40px 0px 0px 5%;
}

.point13 .wrapper .inner .box-wrapper .box .right h3 .block {
  margin: 10px 0px 0px 0px;
  text-align: center;
  color: #155ba7;
  display: inline-block;
  font-size: 33px;
  font-weight: 900;
  background: rgba(21, 91, 167, 0.9);
  color: #fff;
  padding: 5px 12px 5px 12px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.point13 .wrapper .inner .box-wrapper .box .right .explain {
  margin: 30px 30px 0px 10%;
}

.point13 .wrapper .inner .box-wrapper .box .right .explain p {
  line-height: 2.0;
  font-size: 20px;
  color: #fff;
}

.point13 .wrapper .inner .box-wrapper .box .right .button {
  margin: 30px 30px 0px 10%;
  width: 100%;
}

.point13 .wrapper .inner .box-wrapper .box .right .button a {
  text-decoration: none;
  color: #2c7dbe;
  display: block;
  border: solid 2px #fff;
  background: #fff;
  -webkit-box-shadow: 0 0 0 2px #2c7dbe inset;
          box-shadow: 0 0 0 2px #2c7dbe inset;
}

.point13 .wrapper .inner .box-wrapper .box .right .button a .inside {
  padding: 10px 30px 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.point13 .wrapper .inner .box-wrapper .box .right .button a .inside .icon {
  line-height: 0;
  width: 40px;
}

.point13 .wrapper .inner .box-wrapper .box .right .button a .inside .icon img {
  width: 100%;
  height: auto;
}

.point13 .wrapper .inner .box-wrapper .box .right .button a .inside .catch {
  text-align: center;
  line-height: 1.25;
  color: #2c7dbe;
  font-size: 22px;
  font-weight: 700;
}

.point13 .wrapper .inner .box-wrapper .box .right .button a .inside .arrow {
  line-height: 0;
  width: 30px;
}

.point13 .wrapper .inner .box-wrapper .box .right .button a .inside .arrow img {
  width: 100%;
  height: auto;
}

.point13 .wrapper .additional {
  margin: 35px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.point13 .wrapper .additional .icon {
  width: 150px;
  margin: 0 25px 0 0;
}

.point13 .wrapper .additional .icon img {
  width: 100%;
  height: auto;
}

.point13 .wrapper .additional .text .mark {
  text-align: center;
}

.point13 .wrapper .additional .text .mark span {
  display: inline-block;
  background: #2c7dbe;
  border-radius: 100px;
  padding: 5px 25px 5px 25px;
  color: #fff;
  font-weight: 700;
}

.point13 .wrapper .additional .text .catch {
  color: #2c7dbe;
  margin: 20px 0 0 0;
  text-align: center;
  line-height: 1.35;
  font-weight: 700;
  font-size: 32px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .point13 {
    margin: 60px 0 0 0;
  }
  .point13 .wrapper .inner .box-wrapper {
    margin: 70px auto 0;
    padding: 0 5% 0 5%;
  }
  .point13 .wrapper .inner .box-wrapper .box {
    width: 100%;
    margin: 80px 0% 0px 0;
    padding: 30px 0 30px 0;
    display: block;
  }
  .point13 .wrapper .inner .box-wrapper .box .back {
    opacity: 0.3;
    font-size: 90px;
    line-height: 0.9;
    z-index: -1;
    top: 100px;
  }
  .point13 .wrapper .inner .box-wrapper .box .mark {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    margin: -80px auto 0px;
    color: #2c7dbe;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    font-size: 20px;
  }
  .point13 .wrapper .inner .box-wrapper .box .left {
    width: 90%;
    margin: 0 5% 0 5%;
    padding: 40px 0 40px 0;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h3 .icon {
    line-height: 0;
    width: 140px;
    margin: 0px auto 0;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h3 .icon img {
    width: 100%;
    height: auto;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h3 .cover .line01 {
    margin: 20px 0 0 0;
    text-align: center;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h3 .cover .line01 span {
    padding: 5px 20px 5px 20px;
    font-size: 3.5vw;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h3 .cover .line02 {
    margin: 10px 0 0 0;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h3 .cover .line02 span {
    padding: 10px 20px 10px 20px;
    font-size: 6vw;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h4 {
    margin: 25px 0 0 0;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h4 .cover .big {
    font-size: 11vw;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h4 .cover .middle {
    font-size: 6vw;
  }
  .point13 .wrapper .inner .box-wrapper .box .left h4 .cover .small {
    font-size: 4vw;
  }
  .point13 .wrapper .inner .box-wrapper .box .left ul {
    margin: 20px 0 0 0;
    width: 92%;
    list-style-type: none;
  }
  .point13 .wrapper .inner .box-wrapper .box .left ul li {
    text-align: center;
    padding: 10px 10px 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .point13 .wrapper .inner .box-wrapper .box .right {
    width: 90%;
    margin: 25px auto 0;
    padding: 0 0% 0 0%;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .thumb {
    width: 100%;
    margin: 0px auto 0;
    padding: 0 0 0 0%;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .thumb img {
    width: 100%;
    height: auto;
  }
  .point13 .wrapper .inner .box-wrapper .box .right h3 {
    margin: -40px 0px 0px 0%;
  }
  .point13 .wrapper .inner .box-wrapper .box .right h3 .block {
    margin: 10px 0px 0px 0px;
    font-size: 6vw;
    padding: 5px 12px 5px 12px;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .explain {
    margin: 30px 30px 0px 10%;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .explain p {
    line-height: 2.0;
    font-size: 4.55vw;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .button {
    margin: 10px 0px 0px 0%;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .button a .inside {
    padding: 10px 20px 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .button a .inside .icon {
    line-height: 0;
    width: 30px;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .button a .inside .icon img {
    width: 100%;
    height: auto;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .button a .inside .catch {
    font-size: 4vw;
    font-weight: 700;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .button a .inside .arrow {
    line-height: 0;
    width: 30px;
  }
  .point13 .wrapper .inner .box-wrapper .box .right .button a .inside .arrow img {
    width: 100%;
    height: auto;
  }
  .point13 .wrapper .additional {
    margin: 25px 0 0 0;
    display: block;
  }
  .point13 .wrapper .additional .icon {
    width: 150px;
    margin: 0 auto 0;
  }
  .point13 .wrapper .additional .icon img {
    width: 100%;
    height: auto;
  }
  .point13 .wrapper .additional .text {
    margin: 10px 0 0 0;
  }
  .point13 .wrapper .additional .text .mark {
    text-align: center;
  }
  .point13 .wrapper .additional .text .mark span {
    display: inline-block;
    background: #2c7dbe;
    border-radius: 100px;
    padding: 5px 25px 5px 25px;
    color: #fff;
    font-weight: 700;
  }
  .point13 .wrapper .additional .text .catch {
    color: #2c7dbe;
    margin: 20px 0 0 0;
    text-align: center;
    line-height: 1.35;
    font-weight: 700;
    font-size: 32px;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION67 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.section67 {
  margin: 150px 0 0 0;
}

.section67 .wrapper {
  background: #006295;
  padding: 10px 0 0 0;
}

.section67 .wrapper .top-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  background: #006295;
  margin: -80px auto 0;
}

.section67 .wrapper .top-icon .cover {
  width: 90px;
  line-height: 0;
}

.section67 .wrapper .top-icon .cover img {
  width: 100%;
  height: auto;
}

.section67 .wrapper .title {
  position: relative;
  z-index: 2;
}

.section67 .wrapper .title h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section67 .wrapper .title h3 .border01,
.section67 .wrapper .title h3 .border02 {
  width: 4px;
  height: 30px;
  border-radius: 30px;
  background: #fff;
}

.section67 .wrapper .title h3 .border01 {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.section67 .wrapper .title h3 .border02 {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.section67 .wrapper .title h3 .cover {
  font-family: futura-pt, futura-pt-bold,atten-round-new,sans-serif;
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 0 40px 0 40px;
  font-size: 22px;
  letter-spacing: 2px;
}

.section67 .wrapper .title h2 {
  margin: 15px 0 0 0;
}

.section67 .wrapper .title h2 .cover {
  text-align: center;
  font-size: 45px;
  line-height: 1.85;
  font-weight: 900;
  color: #fff;
}

.section67 .wrapper .title h2 .cover .line01 {
  display: inline-block;
  line-height: 1.5;
  background: #ff921e;
  color: #fff559;
  margin: 0 10px 0 0;
  padding: 0 15px 0 15px;
}

.section67 .wrapper .inner .box-wrapper {
  max-width: 1980px;
  margin: 30px auto 0;
  padding: 0 5% 40px 5%;
}

.section67 .wrapper .inner .box-wrapper .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0 0 0;
}

.section67 .wrapper .inner .box-wrapper .box .thumb {
  width: 45%;
  margin: 0 5% 0 0;
}

.section67 .wrapper .inner .box-wrapper .box .thumb .image {
  line-height: 0;
  width: 100%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.section67 .wrapper .inner .box-wrapper .box .thumb .image img {
  width: 100%;
  height: auto;
}

.section67 .wrapper .inner .box-wrapper .box .thumb h3 {
  margin: -30px 0px 0px 0%;
  text-align: center;
}

.section67 .wrapper .inner .box-wrapper .box .thumb h3 .block {
  margin: 10px 0px 0px 0px;
  display: inline-block;
  font-size: 33px;
  font-weight: 900;
  background: rgba(255, 146, 30, 0.9);
  color: #fff559;
  padding: 5px 12px 5px 12px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.section67 .wrapper .inner .box-wrapper .box .thumb .explain {
  margin: 20px 30px 0px 30px;
}

.section67 .wrapper .inner .box-wrapper .box .thumb .explain p {
  padding: 10px 0 10px 0;
  line-height: 2.0;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.section67 .wrapper .inner .box-wrapper .box .text {
  width: 50%;
  border: solid 6px #fff;
  padding: 40px 0 40px 0;
}

.section67 .wrapper .inner .box-wrapper .box .text h3 {
  padding: 0px 0 0 0px;
  display: block;
}

.section67 .wrapper .inner .box-wrapper .box .text h3 .icon {
  line-height: 0;
  width: 60%;
  margin: 0px auto 0;
}

.section67 .wrapper .inner .box-wrapper .box .text h3 .icon .cover {
  background: #fff;
  padding: 30px 30px 30px 30px;
}

.section67 .wrapper .inner .box-wrapper .box .text h3 .icon .cover img {
  width: 100%;
  height: auto;
}

.section67 .wrapper .inner .box-wrapper .box .text h3 .cover .line01 {
  margin: 30px 0 0 0;
  text-align: center;
}

.section67 .wrapper .inner .box-wrapper .box .text h3 .cover .line01 span {
  display: inline-block;
  padding: 5px 20px 5px 20px;
  background: #ff921e;
  color: #fff559;
  font-family: futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.section67 .wrapper .inner .box-wrapper .box .text h3 .cover .line02 {
  margin: 10px 0 0 0;
  text-align: center;
}

.section67 .wrapper .inner .box-wrapper .box .text h3 .cover .line02 span {
  display: inline-block;
  background: #fff;
  padding: 10px 20px 10px 20px;
  color: #2c7dbe;
  font-size: 32px;
  font-weight: 900;
}

.section67 .wrapper .inner .box-wrapper .box .text h4 {
  margin: 30px 0 0 0;
}

.section67 .wrapper .inner .box-wrapper .box .text h4 .cover {
  color: #fff;
  text-align: center;
}

.section67 .wrapper .inner .box-wrapper .box .text h4 .cover .big {
  font-size: 70px;
  font-family: futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
}

.section67 .wrapper .inner .box-wrapper .box .text h4 .cover .middle {
  font-size: 30px;
}

.section67 .wrapper .inner .box-wrapper .box .text h4 .cover .small {
  font-size: 25px;
}

.section67 .wrapper .inner .box-wrapper .box .text ul {
  margin: 20px 0 0 0;
  width: 87.5%;
  list-style-type: none;
}

.section67 .wrapper .inner .box-wrapper .box .text ul li {
  text-align: center;
  padding: 10px 20px 10px 20px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  border-top: solid 2px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section67 .wrapper .inner .box-wrapper .box .text ul li:last-child {
  border-bottom: solid 2px #fff;
}

.section67 .wrapper .inner .additional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section67 .wrapper .inner .additional h3 {
  margin: 0 30px 0 0;
}

.section67 .wrapper .inner .additional h3 .cover {
  display: inline-block;
  color: #fff559;
  font-size: 42px;
  border: solid 3px #fff559;
  padding: 5px 40px 5px 40px;
}

.section67 .wrapper .inner .additional .sentence p {
  line-height: 1.5;
  color: #fff559;
  font-weight: 700;
  font-size: 22px;
}

.section67 .wrapper .inner .button {
  padding: 0 0 30px 0;
  margin: 20px 0 0 0;
}

.section67 .wrapper .inner .button a {
  width: 600px;
  margin: 0 auto 0;
  background: #ff921e;
  color: #fff559;
  text-decoration: none;
  display: block;
  border: solid 2px #ff921e;
  -webkit-box-shadow: 0 0 0 2px #fff559 inset;
          box-shadow: 0 0 0 2px #fff559 inset;
}

.section67 .wrapper .inner .button a .inside {
  padding: 10px 30px 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section67 .wrapper .inner .button a .inside .icon {
  line-height: 0;
  width: 40px;
}

.section67 .wrapper .inner .button a .inside .icon img {
  width: 100%;
  height: auto;
}

.section67 .wrapper .inner .button a .inside .catch {
  text-align: center;
  line-height: 1.25;
  color: #fff559;
  font-size: 22px;
  font-weight: 700;
}

.section67 .wrapper .inner .button a .inside .arrow {
  line-height: 0;
  width: 30px;
}

.section67 .wrapper .inner .button a .inside .arrow img {
  width: 100%;
  height: auto;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .section67 {
    margin: 110px 0 0 0;
  }
  .section67 .wrapper {
    padding: 10px 0 0 0;
  }
  .section67 .wrapper .top-icon {
    width: 110px;
    height: 110px;
    border-radius: 110px;
    margin: -60px auto 0;
  }
  .section67 .wrapper .top-icon .cover {
    width: 70px;
    line-height: 0;
  }
  .section67 .wrapper .top-icon .cover img {
    width: 100%;
    height: auto;
  }
  .section67 .wrapper .title h3 .border01,
  .section67 .wrapper .title h3 .border02 {
    width: 3px;
    height: 30px;
    border-radius: 30px;
  }
  .section67 .wrapper .title h3 .border01 {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .section67 .wrapper .title h3 .border02 {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .section67 .wrapper .title h3 .cover {
    padding: 0 15px 0 15px;
    font-size: 18px;
    letter-spacing: 2px;
  }
  .section67 .wrapper .title h2 {
    margin: 15px 0 0 0;
  }
  .section67 .wrapper .title h2 .cover {
    text-align: center;
    font-size: 7.7vw;
  }
  .section67 .wrapper .title h2 .cover .line01 {
    line-height: 1.5;
    margin: 0 10px 0 0;
    padding: 0 10px 0 10px;
  }
  .section67 .wrapper .inner .box-wrapper {
    margin: 30px auto 0;
    padding: 0 5% 40px 5%;
  }
  .section67 .wrapper .inner .box-wrapper .box {
    display: block;
    width: 90%;
    margin: 30px auto 0;
  }
  .section67 .wrapper .inner .box-wrapper .box .thumb {
    width: 100%;
    margin: 0 auto 0;
  }
  .section67 .wrapper .inner .box-wrapper .box .thumb .image {
    width: 100%;
  }
  .section67 .wrapper .inner .box-wrapper .box .thumb .image img {
    width: 100%;
    height: auto;
  }
  .section67 .wrapper .inner .box-wrapper .box .thumb h3 {
    margin: -30px 0px 0px 0%;
  }
  .section67 .wrapper .inner .box-wrapper .box .thumb h3 .block {
    margin: 7px 0px 0px 0px;
    font-size: 6vw;
    padding: 5px 12px 5px 12px;
  }
  .section67 .wrapper .inner .box-wrapper .box .thumb .explain {
    margin: 20px 30px 0px 30px;
  }
  .section67 .wrapper .inner .box-wrapper .box .thumb .explain p {
    padding: 10px 0 10px 0;
    line-height: 2.0;
    font-size: 18px;
  }
  .section67 .wrapper .inner .box-wrapper .box .text {
    width: 100%;
    padding: 30px 0 40px 0;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h3 {
    padding: 0px 0 0 0px;
    display: block;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h3 .icon {
    line-height: 0;
    width: 90%;
    margin: 0px auto 0;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h3 .icon .cover {
    padding: 30px 30px 30px 30px;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h3 .icon .cover img {
    width: 100%;
    height: auto;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h3 .cover .line01 {
    margin: 30px 0 0 0;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h3 .cover .line01 span {
    padding: 5px 20px 5px 20px;
    font-size: 3.75vw;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h3 .cover .line02 {
    margin: 10px 0 0 0;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h3 .cover .line02 span {
    display: inline-block;
    padding: 10px 20px 10px 20px;
    font-size: 7vw;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h4 {
    margin: 30px 0 0 0;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h4 .cover {
    text-align: center;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h4 .cover .big {
    font-size: 10vw;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h4 .cover .middle {
    font-size: 6vw;
  }
  .section67 .wrapper .inner .box-wrapper .box .text h4 .cover .small {
    font-size: 4vw;
  }
  .section67 .wrapper .inner .box-wrapper .box .text ul {
    margin: 20px 0 0 0;
    width: 90%;
  }
  .section67 .wrapper .inner .box-wrapper .box .text ul li {
    padding: 10px 10px 10px 10px;
    font-size: 18px;
    letter-spacing: 1px;
  }
  .section67 .wrapper .inner .additional {
    display: block;
  }
  .section67 .wrapper .inner .additional h3 {
    width: 90%;
    margin: 0 auto 0;
    text-align: center;
  }
  .section67 .wrapper .inner .additional h3 .cover {
    display: inline-block;
    font-size: 22px;
    padding: 5px 40px 5px 40px;
  }
  .section67 .wrapper .inner .additional .sentence {
    width: 90%;
    margin: 20px auto 0;
  }
  .section67 .wrapper .inner .additional .sentence p {
    line-height: 1.5;
    font-size: 20px;
  }
  .section67 .wrapper .inner .button {
    margin: 10px 0px 0px 0%;
  }
  .section67 .wrapper .inner .button a {
    width: 90%;
  }
  .section67 .wrapper .inner .button a .inside {
    padding: 10px 20px 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section67 .wrapper .inner .button a .inside .icon {
    line-height: 0;
    width: 30px;
  }
  .section67 .wrapper .inner .button a .inside .icon img {
    width: 100%;
    height: auto;
  }
  .section67 .wrapper .inner .button a .inside .catch {
    font-size: 4vw;
    font-weight: 700;
  }
  .section67 .wrapper .inner .button a .inside .arrow {
    line-height: 0;
    width: 30px;
  }
  .section67 .wrapper .inner .button a .inside .arrow img {
    width: 100%;
    height: auto;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FAQ01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#faq01 {
  margin: 50px 0 0px 0;
  background: -webkit-gradient(linear, left top, right top, from(#d2effa), to(#f6fcff));
  background: linear-gradient(90deg, #d2effa 0%, #f6fcff 100%);
  /*==============================================
    #faq01 .accordion
    ===============================================*/
}

#faq01 .title {
  text-align: center;
}

#faq01 .title h2 {
  position: relative;
  margin: 0px 0 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#0acffe), to(#495aff));
  background: linear-gradient(to right, #0acffe 0%, #495aff 100%);
  padding: 40px 80px 40px 80px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#faq01 .title h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #cae4fa;
}

#faq01 .title h2 .cover {
  text-align: center;
}

#faq01 .title h2 .cover .semi {
  display: inline-block;
  font-size: 28px;
  color: #fff;
  margin: 10px 0 0 0;
  border: solid 2px #fff;
  padding: 3px 60px 3px 60px;
  text-align: center;
}

#faq01 .title h2 .cover .catch {
  margin: 10px 0 0 0;
  font-size: 42px;
  color: #fff;
}

#faq01 .accordion {
  padding: 20px 5% 30px 5%;
  margin: 40px auto 0;
}

#faq01 .accordion li {
  max-width: 1200px;
  border-width: 3px;
  border-style: solid;
  border-color: #2c7dbe;
  background: transparent;
  border: solid 3px #aad9f7;
  margin: 0 auto 20px;
  border-radius: 0px;
  font-weight: 700;
  font-style: normal;
  overflow: hidden;
  background: #fff;
  /*==============================================
            #faq01 .toggle_container
            ===============================================*/
}

#faq01 .accordion li .trigger {
  font-size: 20px;
  padding: 24px 40px 24px 40px;
  color: #2c7dbe;
  position: relative;
  font-weight: bold;
  cursor: pointer;
  line-height: 2.0;
  color: #2c7dbe;
  /*==============================================
                #faq01 .accordion .trigger::after
                ===============================================*/
}

#faq01 .accordion li .trigger:hover, #faq01 .accordion li .trigger.active {
  background: #ebf6ff;
}

#faq01 .accordion li .trigger span.icon-q {
  padding: 3px 10px 5px 10px;
  border-radius: 100px;
  color: #fff;
  background: #2c7dbe;
  margin: 0 10px 0 0;
}

#faq01 .accordion li .trigger::after, #faq01 .accordion li .trigger.active::after {
  font-size: 40px;
  line-height: 1;
  position: absolute;
  top: 35%;
  right: 15px;
  margin-top: -11px;
  font-weight: bold;
}

#faq01 .accordion li .trigger::after {
  content: "\0203a";
}

#faq01 .accordion li .trigger.active::after {
  content: "\0203a";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

#faq01 .accordion li .toggle_container {
  padding: 17px 40px 15px 40px;
  position: relative;
  line-height: 2.0;
  border-top: solid 2px #cae4fa;
}

#faq01 .accordion li .toggle_container p {
  font-size: 18px;
  margin: 0;
  color: #2c7dbe;
}

#faq01 .accordion li .toggle_container p span.icon-a {
  line-height: 1.0;
  padding: 3px 10px 5px 10px;
  border-radius: 100px;
  color: #2c7dbe;
  border: solid 2px #2c7dbe;
  margin: 0 10px 0 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #faq01 {
    margin: 0px 0 30px 0;
    /*==============================================
        #faq01 .title
        ===============================================*/
    /*==============================================
        #faq01 .accordion
        ===============================================*/
  }
  #faq01 .title {
    padding: 40px 0 0px 0px;
  }
  #faq01 .title .back {
    font-size: 90px;
  }
  #faq01 .title h3 .cover .middle {
    font-size: 20px;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  #faq01 .title h3 .cover .left {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  #faq01 .title h3 .cover .right {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  #faq01 .title h2 {
    font-size: 5vw;
    margin: 30px 0 0px 0;
  }
  #faq01 .title h2 .line {
    padding: 5px 40px 5px 40px;
    margin: 0 0 20px 0;
  }
  #faq01 .accordion {
    margin: 40px auto 0;
  }
  #faq01 .accordion li {
    margin: 0 0 20px 0;
    /*==============================================
                #faq01 .toggle_container
                ===============================================*/
  }
  #faq01 .accordion li .trigger {
    font-size: 2.25vw;
    padding: 24px 40px 24px 40px;
    line-height: 2.0;
    /*==============================================
                    #faq01 .accordion .trigger::after
                    ===============================================*/
  }
  #faq01 .accordion li .trigger:hover, #faq01 .accordion li .trigger.active {
    background: transparent;
  }
  #faq01 .accordion li .trigger span.icon-q {
    padding: 3px 10px 5px 10px;
    border-radius: 100px;
    margin: 0 10px 0 0;
  }
  #faq01 .accordion li .trigger::after, #faq01 .accordion li .trigger.active::after {
    font-size: 35px;
    position: absolute;
    top: 35%;
    right: 15px;
    margin-top: -11px;
  }
  #faq01 .accordion li .toggle_container {
    padding: 17px 40px 15px 40px;
  }
  #faq01 .accordion li .toggle_container p {
    font-size: 1.95vw;
  }
}

/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #faq01 {
    margin: 30px 0 0px 0;
    /*==============================================
        #faq01 .accordion
        ===============================================*/
  }
  #faq01 .title h2 {
    background: -webkit-gradient(linear, left top, right top, from(#0acffe), to(#495aff));
    background: linear-gradient(to right, #0acffe 0%, #495aff 100%);
    padding: 40px 30px 40px 30px;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #faq01 .title h2 .cover {
    text-align: center;
  }
  #faq01 .title h2 .cover .semi {
    font-size: 24px;
    margin: 10px 0 0 0;
    border: solid 2px #fff;
    padding: 3px 30px 3px 30px;
  }
  #faq01 .title h2 .cover .catch {
    margin: 10px 0 0 0;
    font-size: 36px;
  }
  #faq01 .accordion {
    padding: 0px 5% 10px 5%;
    margin: 20px auto 0;
  }
  #faq01 .accordion li {
    /*==============================================
                #faq01 .toggle_container
                ===============================================*/
  }
  #faq01 .accordion li .trigger {
    font-size: 4.25vw;
    padding: 18px 30px 18px 25px;
    /*==============================================
                    #faq01 .accordion .trigger::after
                    ===============================================*/
  }
  #faq01 .accordion li .trigger:hover, #faq01 .accordion li .trigger.active {
    background: transparent;
  }
  #faq01 .accordion li .trigger span.icon-q {
    padding: 3px 10px 5px 10px;
    border-radius: 100px;
    margin: 0 10px 0 0;
    font-size: 4vw;
  }
  #faq01 .accordion li .trigger::after, #faq01 .accordion li .trigger.active::after {
    font-size: 25px;
    top: 35%;
    right: 15px;
    margin-top: -0px;
  }
  #faq01 .accordion li .toggle_container {
    padding: 17px 30px 15px 30px;
  }
  #faq01 .accordion li .toggle_container p {
    font-size: 3.85vw;
    margin: 0;
  }
  #faq01 .accordion li .toggle_container p span.icon-a {
    font-size: 3.5vw;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 CTA06 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.cta06 {
  background: url(../images/cta06-bg.jpg) no-repeat 0 0;
  background-size: cover;
}

.cta06 .wrapper {
  background: -webkit-gradient(linear, left top, right top, from(rgba(10, 207, 254, 0.8)), to(rgba(73, 90, 255, 0.8)));
  background: linear-gradient(to right, rgba(10, 207, 254, 0.8) 0%, rgba(73, 90, 255, 0.8) 100%);
}

.cta06 .wrapper .inner {
  padding: 100px 0 100px 0;
}

.cta06 .wrapper .inner .box-wrapper {
  background: white;
  margin: 0 auto 0;
  max-width: 1280px;
  -webkit-box-shadow: rgba(194, 169, 164, 0.2) 0px 8px 24px;
          box-shadow: rgba(194, 169, 164, 0.2) 0px 8px 24px;
  position: relative;
}

.cta06 .wrapper .inner .box-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0167b9), to(#0935c4));
  background: linear-gradient(90deg, #0167b9 0%, #0935c4 100%);
  left: 0;
  top: 0;
}

.cta06 .wrapper .inner .box-wrapper .box01 h2 {
  text-align: center;
  color: #1b56c4;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 50px 0 0 0;
  font-size: 40px;
}

.cta06 .wrapper .inner .box-wrapper .box01 h2 span {
  color: #1b56c4;
}

.cta06 .wrapper .inner .box-wrapper .box01 .explain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 50px 0 50px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb {
  margin: 0 30px 0 0;
}

.cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb .main {
  font-size: 30px;
  letter-spacing: 3px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b56c4;
}

.cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb .sub {
  margin: 5px 0 0 0;
  font-family: futura-pt, futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.0;
  color: #1b56c4;
}

.cta06 .wrapper .inner .box-wrapper .box01 .explain .text {
  color: #1b56c4;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0px 0 0 0;
  padding: 40px 0 0 0;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left {
  width: 60%;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .border {
  width: 35%;
  height: 2px;
  background: #1b56c4;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .semi {
  color: #1b56c4;
  font-size: 20px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .semi span {
  display: inline-block;
  border: solid 3px #1b56c4;
  border-radius: 100px;
  margin: 0 15px 0 0;
  padding: 3px 45px 3px 45px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left .caption {
  text-align: center;
  font-size: 18px;
  margin: 20px auto 0;
  color: #1b56c4;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button {
  margin: 40px 0 0 0;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a {
  text-decoration: none;
  color: #fff;
  display: block;
  background: #1b56c4;
  width: 70%;
  margin: 0 auto 0;
  border-radius: 100px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 30px 25px 30px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .icon {
  line-height: 0;
  width: 40px;
  margin: 0 30px 0px 0;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .icon img {
  width: 100%;
  height: auto;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .text {
  font-size: 25px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right {
  width: 40%;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a {
  text-decoration: none;
  color: #fff;
  display: block;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a.color01 {
  background: #1395c9;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a.color02 {
  background: #2c7dbe;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 30px 50px 30px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .icon {
  line-height: 0;
  width: 40px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .icon img {
  width: 100%;
  height: auto;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .text {
  font-size: 23px;
  text-align: center;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .arrow {
  line-height: 0;
  width: 40px;
}

.cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .arrow img {
  width: 100%;
  height: auto;
}

.cta06 .wrapper .inner .box-wrapper .box02 {
  background: #006295;
}

.cta06 .wrapper .inner .box-wrapper .box02 .additional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 0 0 0;
}

.cta06 .wrapper .inner .box-wrapper .box02 .additional h3 {
  margin: 0 30px 0 0;
}

.cta06 .wrapper .inner .box-wrapper .box02 .additional h3 .cover {
  display: inline-block;
  color: #fff559;
  font-size: 32px;
  border: solid 3px #fff559;
  padding: 5px 40px 5px 40px;
}

.cta06 .wrapper .inner .box-wrapper .box02 .additional .sentence p {
  line-height: 1.5;
  color: #fff559;
  font-weight: 700;
  font-size: 20px;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 40px 30px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group .left {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  font-size: 18px;
  margin: 0 50px 0 0;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a {
  display: block;
  text-decoration: none;
  width: 500px;
  background: #f38816;
  border: solid 4px #ff921e;
  -webkit-box-shadow: 0 0 0 3px #fff inset;
          box-shadow: 0 0 0 3px #fff inset;
  padding: 10px 30px 10px 30px;
  font-weight: 700;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .icon {
  line-height: 0;
  width: 50px;
  margin: 0 0px 0 0;
  padding: 0 0 0 0px;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .icon img {
  width: 100%;
  height: auto;
  position: relative;
  top: -5px;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .semi {
  line-height: 1.35;
  letter-spacing: 2px;
  font-size: 22px;
  text-align: center;
  color: #fff;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .arrow {
  line-height: 0;
  width: 40px;
  padding: 0 0px 0 0px;
}

.cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .arrow img {
  width: 100%;
  height: auto;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .cta06 .wrapper .inner {
    padding: 80px 0 80px 0;
  }
  .cta06 .wrapper .inner .box-wrapper {
    margin: 0 auto 0;
    max-width: 87.5%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 h2 {
    letter-spacing: 2px;
    padding: 50px 0 0 0;
    font-size: 3vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain {
    padding: 30px 35px 0 35px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb {
    margin: 0 3% 0 0;
    width: 27%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb .sub {
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 0.9;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb .main {
    letter-spacing: 10px;
    font-size: 6vw;
    line-height: 0.9;
    margin: 10px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .text {
    width: 70%;
    font-size: 1.75vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside {
    margin: 0px 0 0 0;
    padding: 40px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left {
    width: 60%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .border {
    width: 35%;
    height: 2px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .semi {
    font-size: 20px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .semi span {
    border-radius: 100px;
    margin: 0 15px 0 0;
    padding: 3px 45px 3px 45px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .caption {
    font-size: 18px;
    margin: 20px auto 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button {
    margin: 40px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a {
    width: 70%;
    border-radius: 100px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside {
    padding: 25px 30px 25px 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .icon {
    width: 40px;
    margin: 0 30px 0px 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .icon img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .text {
    font-size: 25px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right {
    width: 40%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a {
    text-decoration: none;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside {
    padding: 50px 30px 50px 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .icon {
    line-height: 0;
    width: 40px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .icon img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .text {
    font-size: 23px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .arrow {
    line-height: 0;
    width: 40px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .arrow img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 {
    padding: 30px 50px 30px 50px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .left {
    letter-spacing: 3px;
    font-size: 18px;
    margin: 0 50px 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .tel a .inside .icon {
    width: 50px;
    margin: 0 20px 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .tel a .inside .icon img {
    width: 100%;
    height: auto;
    position: relative;
    top: -5px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .tel a .inside .semi {
    letter-spacing: 3px;
    font-size: 50px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .sub {
    font-size: 16px;
  }
}

/* 768px～1023px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cta06 .wrapper .inner {
    padding: 100px 40px 100px 40px;
  }
  .cta06 .wrapper .inner .box-wrapper {
    margin: 0 auto 0;
    max-width: 1280px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 h2 {
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 50px 0 0 0;
    font-size: 3vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 h2 .sp-disblock {
    display: none !important;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 50px 0 50px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb {
    width: 30%;
    margin: 0 5% 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb .sub {
    letter-spacing: 2px;
    font-size: 14px;
    line-height: 0.9;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb .main {
    letter-spacing: 8px;
    font-size: 8vw;
    line-height: 0.9;
    margin: 10px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .text {
    width: 65%;
    font-weight: 700;
    font-size: 18px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0px 0 0 0;
    padding: 40px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left {
    width: 57%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .border {
    width: 20%;
    height: 2px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .semi {
    font-size: 2.4vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .semi span {
    margin: 0 15px 0 0;
    padding: 3px 25px 3px 25px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .caption {
    font-size: 18px;
    margin: 20px auto 0;
    padding: 0 20px 0 20px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button {
    margin: 40px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a {
    width: 70%;
    margin: 0 auto 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 30px 25px 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .icon {
    line-height: 0;
    width: 30px;
    margin: 0 20px 0px 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .icon img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .text {
    font-size: 2.5vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right {
    width: 43%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside {
    padding: 50px 20px 50px 20px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .icon {
    line-height: 0;
    width: 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .icon img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .text {
    font-size: 2.5vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .arrow {
    line-height: 0;
    width: 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .arrow img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 {
    padding: 30px 30px 30px 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional {
    display: block;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional h3 {
    width: 90%;
    margin: 0 auto 0;
    text-align: center;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional h3 .cover {
    display: inline-block;
    font-size: 22px;
    padding: 5px 40px 5px 40px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional .sentence {
    width: 90%;
    margin: 20px auto 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional .sentence p {
    line-height: 1.5;
    font-size: 20px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .left {
    letter-spacing: 2px;
    font-size: 16px;
    margin: 0 35px 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .tel a {
    text-decoration: none;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .tel a .inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .tel a .inside .icon {
    width: 40px;
    margin: 0 15px 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .tel a .inside .icon img {
    width: 100%;
    height: auto;
    position: relative;
    top: -5px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .tel a .inside .semi {
    letter-spacing: 3px;
    font-size: 4.85vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .sub {
    font-size: 15px;
  }
}

/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .cta06 .wrapper .inner {
    padding: 40px 0 40px 0;
  }
  .cta06 .wrapper .inner .box-wrapper {
    margin: 0 auto 0;
    max-width: 90%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 h2 {
    padding: 40px 0 0 0;
    font-size: 6.5vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain {
    display: block;
    padding: 30px 8% 0 8%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb {
    width: 92%;
    margin: 0 auto 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .thumb img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .explain .text {
    font-size: 18px;
    margin: 15px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside {
    display: block;
    padding: 40px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left {
    width: 100%;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .border {
    width: 15%;
    height: 2px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .semi {
    font-size: 20px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left h3 .semi span {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 3px 30px 3px 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .caption {
    font-size: 16px;
    width: 90%;
    margin: 20px auto 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button {
    margin: 25px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a {
    width: 90%;
    margin: 0 auto 0;
    border-radius: 100px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 30px 25px 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .icon {
    line-height: 0;
    width: 40px;
    margin: 0 30px 0px 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .icon img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .left .button a .inside .text {
    font-size: 5.25vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a {
    text-decoration: none;
    color: #fff;
    display: block;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 30px 50px 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .icon {
    line-height: 0;
    width: 40px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .icon img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .text {
    font-size: 5.25vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .arrow {
    line-height: 0;
    width: 30px;
  }
  .cta06 .wrapper .inner .box-wrapper .box01 .inside .right .button a .inside .arrow img {
    width: 100%;
    height: auto;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional {
    display: block;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional h3 {
    width: 90%;
    margin: 0 auto 0;
    text-align: center;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional h3 .cover {
    display: inline-block;
    font-size: 22px;
    padding: 5px 40px 5px 40px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional .sentence {
    width: 90%;
    margin: 20px auto 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .additional .sentence p {
    text-align: center;
    line-height: 1.5;
    font-size: 20px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group {
    display: block;
    padding: 10px 20px 30px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .left {
    text-align: center;
    letter-spacing: 3px;
    font-size: 16px;
    margin: 0 auto 0;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a {
    width: 100%;
    margin: 20px auto 0;
    padding: 15px 20px 15px 20px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .icon {
    line-height: 0;
    width: 40px;
    margin: 0 0px 0 0;
    padding: 0 0 0 0px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .icon img {
    width: 100%;
    height: auto;
    position: relative;
    top: -1px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .semi {
    letter-spacing: 1px;
    font-size: 4.25vw;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .arrow {
    line-height: 0;
    width: 25px;
  }
  .cta06 .wrapper .inner .box-wrapper .box02 .group .right .button a .inside .arrow img {
    width: 100%;
    height: auto;
  }
}

/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* breakpoints */
/*# sourceMappingURL=style.css.map */