@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 */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .LOADING02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.loading04
===============================================*/
.loading04 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 一番最初に見える全体の色 */
  z-index: 99999999;
  -webkit-animation: byeShutter 2.8s forwards;
          animation: byeShutter 2.8s forwards;
}

.loading04::before,
.loading04::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

/*==============================================
.loading04 .wrapper
===============================================*/
.loading04 .wrapper {
  background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
  background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
  width: 100%;
  height: 100%;
  -webkit-animation: byBackground 1.6s forwards;
          animation: byBackground 1.6s forwards;
}

@-webkit-keyframes byBackground {
  0% {
    background: #175499;
  }
  45% {
    background: #437fc4;
  }
  75% {
    background: #b8cce2;
  }
  100% {
    background: #fff;
  }
}

@keyframes byBackground {
  0% {
    background: #175499;
  }
  45% {
    background: #437fc4;
  }
  75% {
    background: #b8cce2;
  }
  100% {
    background: #fff;
  }
}

/*==============================================
.loading04 .middle
===============================================*/
.loading04 .middle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100003;
  text-align: center;
}

.loading04 .middle .image {
  width: 200px;
  margin: 0 auto 0;
  position: relative;
}

.loading04 .middle .image img.first {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-animation: bottomIn 0.6s forwards;
          animation: bottomIn 0.6s forwards;
}

.loading04 .middle .image img.second {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  opacity: 0;
  -webkit-animation: fadeColor 1.8s forwards;
          animation: fadeColor 1.8s forwards;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading04 .middle h3 {
  color: #fff;
  display: inline-block;
  text-align: center;
  margin: 10px auto 0;
  font-size: 17px;
}

@-webkit-keyframes bottomIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes bottomIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@-webkit-keyframes fadeColor {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #gnav01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#gnav01 {
  background: #fff;
  -webkit-box-shadow: 0px 4px 14px 3px #cfcfcf;
          box-shadow: 0px 4px 14px 3px #cfcfcf;
}

#gnav01 .wrapper {
  padding: 15px 10% 15px 10%;
  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;
}

#gnav01 .wrapper h1 {
  width: 300px;
}

#gnav01 .wrapper h1 img {
  width: 100%;
  height: auto;
}

#gnav01 .wrapper h2 {
  font-size: 25px;
  color: #3a2601;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  color: #9eafc3;
}

#gnav01 .wrapper h2 span.color01 {
  color: #437fc4;
}

#gnav01 .wrapper h2 span.color02 {
  color: #eb6242;
}

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 #header20 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
#header20 {
  width: 100%;
  overflow: hidden;
  /*==============================================
  #header20 .inner
  ===============================================*/
  /*==============================================
  #header20 .inner .text
  ===============================================*/
  /* #header20 .inner .text closed */
  /*==============================================
  #header20 .iswiper-container
  ===============================================*/
  /*==============================================
  #header20 .swiper-slide
  ===============================================*/
  /* #header20 .swiper-slide closed */
  /*==============================================
  #header20 .hero
  ===============================================*/
  /* #header20 .hero closed */
}

#header20 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  /* 子要素をflexboxにより中央に配置する */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#header20 .inner .text {
  width: 50%;
  padding: 0 5% 0 5%;
  background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
  background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 子要素をflexboxにより中央に配置する */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
  line-height: 1.3;
}

#header20 .inner .text h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  left: 1px;
}

#header20 .inner .text h1 {
  font-size: 55px;
  padding: 10px 0 10px 0;
  font-weight: 900;
}

#header20 .inner .text h1 span.big {
  font-size: 50px;
}

#header20 .inner .text h4 {
  font-size: 18px;
  padding: 5px 10px 5px 10px;
  border: solid 2px #fff;
  margin: 0px 0 20px 0;
  text-align: center;
  background: #e33c15;
  color: #fff;
}

#header20 .inner .text h2 {
  font-size: 24px;
  font-weight: 500;
}

#header20 .swiper-container {
  overflow: visible !important;
}

#header20 .swiper-slide {
  height: 650px !important;
  overflow: hidden !important;
  /*==============================================
    #header20 &-active
    ===============================================*/
  /* #header20 &-active closed */
}

#header20 .swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -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;
}

#header20 .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
}

#header20 .swiper-slide-active > img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#header20 .swiper-slide-active::after {
  opacity: 1;
}

#header20 .swiper-slide-active .hero__title {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#header20 .swiper-slide-active .hero__tate {
  opacity: 0.4;
  font-size: 86px;
}

#header20 .hero {
  width: 50%;
  overflow: hidden;
  /*==============================================
    #header20 .hero .title
    ===============================================*/
  /* #header20 .hero__title closed */
  /*==============================================
    #header20 .hero__tate
    ===============================================*/
  /* #header20 .hero_tate closed */
}

#header20 .hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 20%);
          transform: translate(-50%, 20%);
  min-width: 400px;
  text-align: center;
  z-index: 20;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 1.5s, -webkit-transform 0.3s ease 1.5s;
  transition: opacity 0.3s ease 1.5s, -webkit-transform 0.3s ease 1.5s;
  transition: opacity 0.3s ease 1.5s, transform 0.3s ease 1.5s;
  transition: opacity 0.3s ease 1.5s, transform 0.3s ease 1.5s, -webkit-transform 0.3s ease 1.5s;
}

#header20 .hero__title h2 {
  padding: 5px 40px 5px 40px;
  line-height: 1.35;
  font-weight: 900;
  color: #437fc4;
  font-size: 32px;
  border: solid 3px #437fc4;
  border-radius: 80px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
}

#header20 .hero__tate {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 46px;
  color: #437fc4;
  letter-spacing: 5px;
  font-family: futura-pt,futura-pt-bold, sans-serif;
  font-weight: 700;
  opacity: 0;
  -webkit-transition: all 0.3s ease 2s;
  transition: all 0.3s ease 2s;
  text-align: center;
}

/* #header20 closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #headerto05 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#headerto05 {
  margin: 0px 0 40px 0;
}

/*==============================================
#headerto05 .box-wrapper
===============================================*/
#headerto05 .box-wrapper {
  margin: -40px auto 20px;
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

#headerto05 .box-wrapper .box {
  background: #fff;
  -webkit-box-shadow: 0px 4px 14px 3px #aaa;
          box-shadow: 0px 4px 14px 3px #aaa;
  width: 32%;
  margin: 0 2% 0 0;
  padding: 10px 20px 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#headerto05 .box-wrapper .box:nth-child(3n) {
  margin: 0 0% 0 0;
}

#headerto05 .box-wrapper .box .icon {
  width: 25%;
  padding: 0 20px 0 0;
}

#headerto05 .box-wrapper .box .icon img {
  width: 100%;
}

#headerto05 .box-wrapper .box .text {
  border-left: solid 2px #dadada;
  font-size: 20px;
  font-weight: 900;
  padding: 0 0 0 20px;
  color: #437fc4;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .CTA03 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.cta03 variables(変数設定)
===============================================*/
.cta03 {
  background: url(../images/cta03-bg.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  margin: 0 0 0 0;
  /* .cta03 .wrapper closed */
}

.cta03 .wrapper {
  padding: 40px 0 50px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(67, 127, 196, 0.9)), to(rgba(24, 87, 147, 0.9)));
  background: linear-gradient(90deg, rgba(67, 127, 196, 0.9) 0%, rgba(24, 87, 147, 0.9) 100%);
  /* .cta03 .inner closed */
}

.cta03 .wrapper .inner {
  max-width: 1100px;
  padding: 0 3.5% 0 3.5%;
  margin: 0 auto;
  /* .cta03 .inner .haedline closed */
  /* .cta03 .inner .box-wrapper closed */
}

.cta03 .wrapper .inner .headline {
  color: #fff;
  margin: 0 0 30px 0;
}

.cta03 .wrapper .inner .headline h2 {
  text-align: center;
  font-size: 50px;
  margin: 0 0px 0 0;
  padding: 0 0px 0 0;
  font-family: futura-pt,futura-pt-bold, sans-serif;
  font-weight: 700;
}

.cta03 .wrapper .inner .headline h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
}

.cta03 .wrapper .inner .box-wrapper {
  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;
  /* .cta03 .inner .box-wrapper .box closed */
}

.cta03 .wrapper .inner .box-wrapper .box {
  width: 47.5%;
  /* .cta03 .inner .box-wrapper .box .button closed */
}

.cta03 .wrapper .inner .box-wrapper .box:nth-child(1) {
  margin: 0 3% 0 0;
}

.cta03 .wrapper .inner .box-wrapper .box:nth-child(1) .button a {
  background: #e33c15;
}

.cta03 .wrapper .inner .box-wrapper .box:nth-child(2) {
  margin: 0 0% 0 0;
}

.cta03 .wrapper .inner .box-wrapper .box:nth-child(2) .button a {
  background: #cc5b16;
}

.cta03 .wrapper .inner .box-wrapper .box .caption {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px 0;
  position: relative;
  line-height: 1.1;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.cta03 .wrapper .inner .box-wrapper .box .caption span {
  padding: 0 3px 0 3px;
}

.cta03 .wrapper .inner .box-wrapper .box .caption:before, .cta03 .wrapper .inner .box-wrapper .box .caption:after {
  content: "";
  background: #fff;
  border-radius: 30px;
  height: 15px;
  width: 2px;
  display: inline-block;
}

.cta03 .wrapper .inner .box-wrapper .box .caption:before {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%) skew(20deg);
          transform: translateY(-50%) skew(20deg);
}

.cta03 .wrapper .inner .box-wrapper .box .caption:after {
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%) skew(-20deg);
          transform: translateY(-50%) skew(-20deg);
}

.cta03 .wrapper .inner .box-wrapper .box .button a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 20px 0 20px 0;
  line-height: 1.2;
  position: relative;
  border-radius: 60px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 0 3px inset #fff;
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 0 3px inset #fff;
}

.cta03 .wrapper .inner .box-wrapper .box .button a span {
  padding: 0 0 0 10px;
}

.cta03 .wrapper .inner .box-wrapper .box .button a img {
  width: 25px;
  height: 25px;
  position: relative;
  left: 0px;
  top: 2px;
}

/* .cta03 closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title04-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title04-01 .en {
  font-size: 90px;
  color: #437fc4;
  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%;
  height: 300px;
  padding: 50px 0 20px 0;
  background: #437fc4;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}

/*==============================================
#target04-01 h2：疑似要素
===============================================*/
.title04-01 h2:before,
.title04-01 h2:after {
  content: "";
  width: 130%;
  height: 200%;
  background: #175499;
}

.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
===============================================*/
.title04-01 h2 .semi {
  font-size: 22px;
  text-align: center;
  padding: 10px 0 10px 0;
  position: relative;
  z-index: 3;
}

/*==============================================
.title04-01 h2 .catch
===============================================*/
.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: 150px;
  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 #175499;
}

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

.title04-01 h2 .catch .hatena {
  font-size: 150px;
  font-weight: 900;
  position: relative;
  top: -5px;
  z-index: 3;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title04-02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title04-02 h2 {
  width: 100%;
  height: 300px;
  padding: 30px 0 20px 0;
  background: #437fc4;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}

/*==============================================
#title04-02 h2：疑似要素
===============================================*/
.title04-02 h2:before,
.title04-02 h2:after {
  content: "";
  width: 130%;
  height: 200%;
  background: #175499;
}

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

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

/*==============================================
.title04-02 h2 p.sub
===============================================*/
.title04-02 h2 p.sub {
  font-size: 22px;
  text-align: center;
}

/*==============================================
.title04-02 h2 .catch
===============================================*/
.title04-02 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-02 h2 .catch .image {
  width: 120px;
  padding: 0 10px 0 0;
  position: relative;
  z-index: 3;
}

.title04-02 h2 .catch .image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}

.title04-02 h2 .catch .text {
  font-size: 40px;
  text-align: right;
  padding: 0 10px 0 0;
  line-height: 1.3;
  position: relative;
  z-index: 3;
}

.title04-02 h2 .catch .hatena {
  font-size: 110px;
  font-weight: 900;
  position: relative;
  top: -5px;
  z-index: 3;
}

/*==============================================
.title04-02 h2 .semi
===============================================*/
.title04-02 h2 .semi {
  font-size: 62px;
  font-weight: 900;
  text-align: center;
  padding: 10px 0 10px 0;
  position: relative;
  z-index: 3;
}

.title04-02 h2 .semi span.small {
  font-size: 0.8em;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #TARGETING04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#target04 {
  padding: 50px 0 70px 0;
}

/*==============================================
#target04 .box
===============================================*/
#target04 .box {
  max-width: 1000px;
  margin: 0px auto 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;
}

#target04 .box p.text {
  display: inline-block;
  position: relative;
  z-index: 20;
  margin: 0 -40px 0 0;
  top: -30px;
}

#target04 .box p.text .semi {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: normals;
  color: #231815;
  font-size: 28px;
  line-height: 1.5;
}

#target04 .box img {
  display: inline-block;
  width: 520px;
  height: auto;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 25px 25px 0px 9px #437fc4;
          box-shadow: 25px 25px 0px 9px #437fc4;
}

#target04 .box p.text .catch {
  font-weight: 900;
  font-size: 48px;
  color: #231815;
  line-height: 1.4;
  letter-spacing: -2px;
}

/*==============================================
#target04 ul.checklist
===============================================*/
#target04 ul.checklist {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 4% 20px 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#target04 ul.checklist:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

#target04 ul.checklist li {
  width: 48.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 3% 20px 0px;
  padding: 0px 0px 0px 0px;
  background: #fff;
  font-size: 22px;
  font-weight: 700;
  border: solid 2px #437fc4;
}

#target04 ul.checklist li:nth-child(2n) {
  margin: 0 0% 20px 0px;
}

#target04 ul.checklist li .icon {
  padding: 0px 0px 0px 0px;
  background: #437fc4;
  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;
  height: 100%;
  width: 10%;
}

#target04 ul.checklist li .icon img {
  width: 90%;
  height: auto;
  padding: 0 10px 0 10px;
}

#target04 ul.checklist li p {
  padding: 20px 20px 20px 20px;
  width: 90%;
}

/*==============================================
#target04 .explain
===============================================*/
#target04 .explain {
  padding: 0px 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;
}

#target04 .explain .icon {
  position: absolute;
  top: -10px;
  left: 10%;
  width: 100px;
}

#target04 .explain .icon img {
  width: 100%;
  height: auto;
}

#target04 .explain img.thumb {
  width: 300px;
  height: auto;
  margin: 0 50px 0 0;
  border: solid 2px #437fc4;
  -webkit-box-shadow: 15px 15px 0px 6px #b8cce2;
          box-shadow: 15px 15px 0px 6px #b8cce2;
  position: relative;
  z-index: -1;
  background: #fff;
  padding: 3px 3px 3px 3px;
}

#target04 .explain p {
  font-size: 32px;
  color: #437fc4;
  font-weight: 700;
  text-align: center;
}

/*==============================================
.titleテンプレの見栄え
===============================================*/
body.title section {
  margin-bottom: 100px;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title01-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.title01-01 背景色
===============================================*/
.title01-01 {
  background: #437fc4;
  padding: 30px 0 30px 0;
  text-align: center;
  color: #fff;
}

/*===========================
.title01 h2,h3
===========================*/
.title01-01 h2 {
  font-size: 42px;
  margin: 20px 0 0 0;
  line-height: 1.35;
  font-weight: 700;
  font-style: normal;
}

.title01-01 h3 {
  font-size: 25px;
  margin: 10px 0 0 0;
  line-height: 1.35;
  font-weight: 700;
  font-style: normal;
}

.title01-01 .caption {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 0 0;
  padding: 0 0px 5px 0px;
}

.title01-01 .caption-border {
  width: 100px;
  margin: 0 auto;
  text-align: center;
  background-color: #175499;
  /* 線色 */
  border-radius: 5px;
  /* 線幅の半分 */
  content: "";
  display: block;
  height: 3px;
  /* 線幅 */
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title01-02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.title01-02 背景色
===============================================*/
.title01-02 {
  background: #437fc4;
  padding: 30px 0 30px 0;
  text-align: center;
  color: #fff;
}

/*==============================================
.title01-02 h2,h3
===============================================*/
.title01-02 h3 {
  text-align: center;
  padding: 10px 15px;
  width: 270px;
  border: solid 2px #fff;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  margin: 0 auto 5px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.title01-02 h3 span {
  display: block;
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
}

.title01-02 h2 {
  font-size: 42px;
  margin: 10px 0 10px 0;
  line-height: 1.35;
  font-weight: 700;
  font-style: normal;
}

.title01-02 .caption {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 0 0;
  padding: 0 0px 5px 0px;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title01-03 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.title01-03 背景色
===============================================*/
.title01-03 {
  background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
  background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
  font-weight: 700;
  font-style: normal;
}

.title01-03 .semi {
  padding: 30px 0 8px 0;
  font-size: 24px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.title01-03 .sub {
  width: 400px;
  font-size: 25px;
  margin: 0 auto 10px;
  font-weight: 700;
  color: #fff;
  padding: 5px 20px 7px;
  border: solid 2px #fff;
  border-radius: 30px;
  text-align: center;
}

.title01-03 h2 {
  padding: 0px 5% 30px 5%;
  font-size: 45px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title01-04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.title01-04 背景色
===============================================*/
.title01-04 {
  background: #437fc4;
  padding: 30px 0 30px 0;
  text-align: center;
  color: #fff;
}

.title01-04 .sub {
  font-size: 20px;
  width: 300px;
  padding: 12px 20px 12px;
  border: solid 3px #fff;
  border-radius: 30px;
  margin: 0 auto 10px;
  text-align: center;
}

.title01-04 h2 {
  padding: 0px 5% 20px 5%;
  color: #fff;
  font-size: 45px;
  line-height: 1.3;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT08 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
#point08 {
  width: 100%;
  background: url(../images/point08-bg.jpg) no-repeat center 0;
  background-size: cover;
}

/*============================================
#point08 .wrapper
=============================================*/
#point08 .wrapper {
  width: 100%;
  background: rgba(67, 127, 196, 0.8);
  background-size: 20px auto;
}

/*============================================
#point08 .box-wrapper
=============================================*/
#point08 .box-wrapper {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 30px 0 30px 0;
  /* #point08 .box-wrapper .box closed */
}

#point08 .box-wrapper .box {
  padding: 150px 0 30px 0;
  /* #point08 .box-wrapper .box .top closed */
  /* #point08 .box-wrapper .box .middle closed */
  /* #point08 .box-wrapper .box .middle closed */
}

#point08 .box-wrapper .box .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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

#point08 .box-wrapper .box .top h2 {
  background: #437fc4;
  width: 57%;
  margin: 0 -2% 0 0;
  position: relative;
  z-index: 2;
  border: solid 3px #437fc4;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 0 3px inset #fff;
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 0 3px inset #fff;
}

#point08 .box-wrapper .box .top h2 .semi {
  margin: -130px 0 0px 40px;
  color: #437fc4;
  display: inline-block;
  text-align: center;
  font-family: futura-pt, futura-pt-bold,atten-round-new,sans-serif;
  font-weight: 700;
  font-style: normal;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
}

#point08 .box-wrapper .box .top h2 .semi span.big {
  font-size: 100px;
  letter-spacing: 3px;
  line-height: 1.0;
}

#point08 .box-wrapper .box .top h2 .semi span.small {
  font-size: 50px;
  letter-spacing: 2px;
  line-height: 1.0;
}

#point08 .box-wrapper .box .top h2 .en {
  padding: 60px 60px 10px 60px;
  font-family: atten-round-new, futura-pt, futura-pt-bold,sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.0;
}

#point08 .box-wrapper .box .top h2 .catch {
  padding: 0px 60px 60px 60px;
  font-size: 45px;
  font-weight: 900;
  color: #fff;
}

#point08 .box-wrapper .box .top .thumb {
  width: 45%;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  line-height: 0;
}

#point08 .box-wrapper .box .top .thumb img {
  width: 100%;
  height: auto;
}

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

#point08 .box-wrapper .box .middle {
  padding: 30px 0 30px 0;
}

#point08 .box-wrapper .box .middle .sentence {
  font-size: 18px;
  color: #fff;
  line-height: 1.75;
}

#point08 .box-wrapper .box .bottom {
  width: 90%;
  margin: 0 auto 0;
  padding: 20px 0 0px 0;
  background: #fff;
  border: solid 3px #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 0 3px inset #437fc4;
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 0 3px inset #437fc4;
}

#point08 .box-wrapper .box .bottom .mark {
  width: 30px;
  height: 3px;
  border-radius: 10px;
  background: #437fc4;
  margin: 0 auto 0;
}

#point08 .box-wrapper .box .bottom .inside {
  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: 20px 0 20px 0;
}

#point08 .box-wrapper .box .bottom .inside .icon img {
  width: 90px;
  height: auto;
  display: block;
  margin: 0px auto 0;
}

#point08 .box-wrapper .box .bottom .inside .logo img {
  width: 300px;
  height: auto;
  display: block;
  margin: 0px auto 0;
}

#point08 .box-wrapper .box .bottom .inside h3 {
  padding: 0px 40px 0px 40px;
  color: #437fc4;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}

#point08 .box-wrapper .box .bottom .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 5% 20px 5%;
}

#point08 .box-wrapper .box .bottom .block .icon {
  width: 18%;
  margin: 0 2.5% 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

#point08 .box-wrapper .box .bottom .block .icon:nth-child(5) {
  margin: 0 0% 0 0;
}

#point08 .box-wrapper .box .bottom .block .icon .image {
  width: 130px;
  height: auto;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
  background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
  padding: 35px 35px 35px 35px;
  border-radius: 130px;
  margin: 0 auto 0px;
  line-height: 0;
}

#point08 .box-wrapper .box .bottom .block .icon .image img {
  width: 100%;
  height: auto;
  line-height: 0;
}

#point08 .box-wrapper .box .bottom .block .icon h5 {
  margin: 15px 0 0 0;
  padding: 0;
  color: #437fc4;
  font-size: 22px;
  font-weight: 900;
  font-family: fot-tsukuardgothic-std, sans-serif;
  letter-spacing: -1.5px;
}

#point08 .box-wrapper .box .bottom .sentence {
  padding: 0px 55px 30px 55px;
  font-size: 18px;
  line-height: 1.75;
}

/* #point08 .box-wrapper closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .BUTTON01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.button01 various
===============================================*/
/*==============================================
.button01
===============================================*/
.button01 {
  width: 700px;
  margin: 0px auto 50px;
}

/*==============================================
.button01 .suggest
===============================================*/
.button01 .suggest {
  padding: 0 0 20px 0;
  font-size: 17px;
  width: 94%;
  margin: 0 auto 0;
  color: #f47301;
  text-align: center;
  font-weight: 700;
  font-style: normal;
  position: relative;
}

.button01 .suggest:before {
  content: "";
  display: inline-block;
  border-left: solid 3px #f47301;
  border-radius: 2px;
  padding: 0 0 0 0px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  position: relative;
  top: 3px;
  left: -10px;
  height: 16px;
}

.button01 .suggest:after {
  content: "";
  display: inline-block;
  border-left: solid 3px #f47301;
  border-radius: 2px;
  padding: 0 0px 0 0px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  position: relative;
  top: 3px;
  left: 10px;
  height: 16px;
}

/*==============================================
.button01 .btn-bg
===============================================*/
.button01 .btn-bg {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  padding: 18px 5px 22px;
  font-style: normal;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  position: relative;
  z-index: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.button01 .btn-bg:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .8s;
  transition: .8s;
}

.button01 .btn-bg:hover:after {
  opacity: 1;
}

.button01 a .btn {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  text-align: center;
}

/*==============================================
.button01 .btn .circle
===============================================*/
.button01 a .btn .circle {
  background: #fff;
  text-shadow: 0px 0px 0px #fff;
  width: 95px;
  height: 95px;
  position: absolute;
  top: -60px;
  left: -40px;
  border-radius: 100px;
  text-align: center;
  padding: 12px 0 0 0;
  line-height: 1.0;
}

.button01 a .btn .circle span.normal {
  font-size: 16px;
}

.button01 a .btn .circle span.big {
  font-size: 30px;
  letter-spacing: -2px;
}

/*==============================================
.button01 ..orange：オレンジ
===============================================*/
/* .button01 a .btn .circle色指定 */
.button01 .orange {
  background: -webkit-gradient(linear, left top, right top, from(#f85d00), color-stop(56%, #ff8a00), to(#fcb436));
  background: linear-gradient(to right, #f85d00 0%, #ff8a00 56%, #fcb436 100%);
  -webkit-box-shadow: 0px 0px 0px 2px #f47301;
          box-shadow: 0px 0px 0px 2px #f47301;
  text-shadow: 0px 0px 5px #f47301;
}

.button01 .orange:after {
  background: -webkit-gradient(linear, left top, right top, from(#f80000), color-stop(55%, #ff6000), to(#ff8340));
  background: linear-gradient(to right, #f80000 0%, #ff6000 55%, #ff8340 100%);
}

.button01 a .btn .circle-orange {
  color: #f47301;
  border: solid 2px #f47301;
}

/*==============================================
.button01：ボタンの本文
===============================================*/
.button01 a .btn .text {
  text-align: center;
  font-size: 30px;
}

.button01 a .btn .text:before {
  content: "\226B";
  font-size: 0.9em;
}

.button01 a .btn .text span.small {
  font-size: 0.85em;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT08 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
.point10 variables(変数設定)
===============================================*/
.point10 {
  padding: 0px 0 0px 0;
  background: #f5f7f8;
}

/*==============================================
.point10 .inner
===============================================*/
.point10 .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 3.5% 0px 3.5%;
}

.point10 .inner .box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 25px;
  font-weight: 700;
}

.point10 .inner .box-wrapper .box {
  width: 32%;
  background: #fff;
  border: solid 3px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 2px 9px 3px #ebebeb;
          box-shadow: 0px 2px 9px 3px #ebebeb;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin: 0 2% 20px 0;
  padding: 30px 30px 30px 30px;
}

.point10 .inner .box-wrapper .box:nth-child(3n) {
  margin: 0 0 20px 0;
}

.point10 .inner .box-wrapper .box img {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
}

.point10 .inner .box-wrapper .box h3 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  padding: 0 0 20px 0;
  font-weight: 700;
  letter-spacing: 1px;
  color: #437fc4;
}

.point10 .inner .box-wrapper .box p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

/*==============================================
.point10 .inner
===============================================*/
.point10 .addtional {
  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;
  line-height: 0;
}

.point10 .addtional .image {
  width: 250px;
}

.point10 .addtional .image img {
  width: 100%;
  height: auto;
}

.point10 .addtional .sentence {
  padding: 0 40px 0 0px;
  width: 500px;
}

.point10 .addtional .sentence h3 {
  font-size: 24px;
  line-height: 1.7;
  margin: 0 0 0px 0;
  font-weight: 900;
  text-align: right;
}

.point10 .addtional .sentence h3 div {
  display: inline-block;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
  background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
  padding: 5px 20px 5px 20px;
  margin: 0 0 10px 0;
}

.point10 .addtional .sentence p {
  font-size: 16px;
  line-height: 1.7;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title02-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title02-01 {
  position: relative;
  text-align: center;
  padding: 40px 0 0 0;
  overflow: hidden;
}

.title02-01 h2 {
  font-weight: 700;
  font-size: 50px;
  position: relative;
  z-index: 2;
  padding: 15px 0 0 0;
  color: #437fc4;
}

.title02-01 h3 {
  font-weight: 700;
  font-size: 20px;
  position: relative;
  z-index: 2;
  color: #437fc4;
}

.title02-01 p.en {
  color: #437fc4;
  margin: 20px 0 auto 0;
  display: inline-block;
  border: solid 2px #437fc4;
  padding: 4px 40px 6px 40px;
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 700;
  border-radius: 40px;
}

.title02-01 p.back {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 700;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 7.7rem;
  color: #175499;
  opacity: 0.15;
  white-space: nowrap;
  display: inline-block;
  z-index: 1;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title02-02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title02-02 {
  position: relative;
  text-align: center;
  padding: 40px 0 40px 0;
  overflow: hidden;
}

.title02-02 h2 {
  font-weight: 700;
  font-size: 50px;
  position: relative;
  z-index: 2;
  padding: 15px 0 0 0;
  color: #437fc4;
  line-height: 1.3;
}

.title02-02 h3 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  background: #437fc4;
  opacity: 0.875;
  border-radius: 40px;
  text-align: center;
  display: inline-block;
  padding: 4px 35px 4px 35px;
  color: #b8cce2;
  margin: 0 auto;
}

.title02-02 p.back {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 700;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-size: 12rem;
  letter-spacing: 2px;
  color: #175499;
  opacity: 0.15;
  line-height: 0.9;
  white-space: nowrap;
  display: inline-block;
  z-index: 1;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title02-03 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title02-03 {
  position: relative;
  text-align: center;
  padding: 20px 0 20px 0;
  overflow: hidden;
}

.title02-03 h2 {
  font-weight: 700;
  font-size: 30px;
  position: relative;
  z-index: 2;
  padding: 15px 0 0 0;
  color: #437fc4;
  line-height: 1.5;
}

.title02-03 h3 {
  font-weight: 900;
  font-size: 78px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  color: #437fc4;
  text-align: center;
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
}

.title02-03 p.back {
  position: absolute;
  top: 20px;
  left: 50%;
  font-weight: 700;
  -webkit-transform: skewX(-15deg) translateX(-50%);
          transform: skewX(-15deg) translateX(-50%);
  font-size: 7.7rem;
  color: #175499;
  opacity: 0.2;
  white-space: nowrap;
  display: inline-block;
  z-index: 1;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .TABLE05　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
#table05 色設定
===============================================*/
.table05 {
  padding: 50px 0 0 0;
}

/*==============================================
.table05 .table-wrapper
===============================================*/
.table05 .table-wrapper {
  max-width: 1280px;
  margin: 0 auto 0;
  padding: 20px 3.5% 0px 3.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*==============================================
.table05 共通スタイル
===============================================*/
.table05 table {
  width: 48.5%;
  border-collapse: collapse !important;
}

.table05 table th {
  padding: 20px 25px 20px 15px;
}

.table05 table th .case {
  font-size: 17px;
  width: 80%;
  margin: 0 auto 5px;
  text-align: center;
  border: solid 2px #fff;
  border-radius: 30px;
}

.table05 table th h3 {
  font-size: 28px;
  text-align: center;
  line-height: 1.35;
}

.table05 table tr td {
  padding: 15px 25px 20px 25px;
  text-align: center;
}

.table05 table tr td.first {
  padding: 35px 25px 20px 25px;
}

.table05 table tr:nth-child(2n+1) {
  background: #f8f8f8;
}

.table05 table p {
  font-size: 17px;
  line-height: 1.75;
}

.table05 table p.semi {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 0 0 0;
}

.table05 table p.small {
  font-size: 15px;
  padding: 5px 0 5px 0;
}

.table05 table p .big {
  font-size: 60px;
  padding: 0px 0 10px 0;
  font-weight: 700;
}

.table05 table p .middle {
  font-size: 30px;
  padding: 5px 0 5px 0;
  font-weight: 700;
}

.table05 table .catch {
  font-size: 24px;
  text-align: center;
  line-height: 1.25;
  font-weight: 700;
  padding: 5px 0 5px 0;
}

/*==============================================
.table05 .table01
===============================================*/
.table05 .table01 {
  border: solid 2px #e64a1a;
  margin: 0px 3% 0 0%;
}

.table05 .table01 th {
  background: #e64a1a;
  color: #fff;
  position: relative;
}

.table05 .table01 .mycolor {
  color: #e64a1a;
}

/*==============================================
.table05 .table02
===============================================*/
.table05 .table02 {
  border: solid 2px #1e62af;
  margin: 0px 0 0 0%;
}

.table05 .table02 th {
  background: #1e62af;
  color: #fff;
  position: relative;
}

.table05 .table02 .mycolor {
  color: #1e62af;
}

.table05 .table02 table.table-inner {
  width: 100%;
}

.table05 .table02 table.table-inner tr {
  padding: 5px 0px 5px 0px;
  font-size: 22px;
}

.table05 .table02 table.table-inner td {
  width: 20%;
  padding: 5px 0px 5px 0px;
  font-weight: 700;
  font-size: 19px;
}

.table05 .table02 table.table-inner td.small {
  width: 3%;
  padding: 5px 0px 5px 0px;
}

.table05 .table02 table.table-inner td.middle {
  width: 32%;
}

.table05 .table02 table.table-inner td.big {
  width: 40%;
  color: #437fc4;
}

.table05 .addtional {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 3.5% 0 3.5%;
}

.table05 .addtional .sentence p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .TABLE06　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
.table06 色設定
===============================================*/
.table06 {
  padding: 50px 0 0 0;
}

/*==============================================
.table06 .table-wrapper
===============================================*/
.table06 .table-wrapper {
  max-width: 1280px;
  margin: 0 auto 0;
  padding: 20px 3.5% 50px 3.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*==============================================
.table06 共通スタイル
===============================================*/
.table06 table {
  width: 32%;
  border-collapse: collapse !important;
  display: block;
}

.table06 table tbody, .table06 table tr, .table06 table td, .table06 table th {
  display: block;
  width: 100%;
}

.table06 table th {
  padding: 20px 25px 20px 15px;
}

.table06 table th .case {
  font-size: 17px;
  width: 80%;
  margin: 0 auto 5px;
  text-align: center;
  border: solid 2px #fff;
  border-radius: 30px;
}

.table06 table th h3 {
  font-size: 28px;
  text-align: center;
  line-height: 1.35;
}

.table06 table tr td {
  padding: 15px 25px 20px 25px;
  text-align: center;
}

.table06 table tr td.first {
  padding: 35px 25px 20px 25px;
}

.table06 table tr:nth-child(2n+1) {
  background: #f8f8f8;
}

.table06 table p {
  font-size: 17px;
  line-height: 1.75;
}

.table06 table p.semi {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  padding: 20px 0 0 0;
}

.table06 table p.small {
  font-size: 15px;
  padding: 5px 0 5px 0;
}

.table06 table p .big {
  font-size: 60px;
  padding: 0px 0 10px 0;
  font-weight: 700;
}

.table06 table p .middle {
  font-size: 30px;
  padding: 5px 0 5px 0;
  font-weight: 700;
}

.table06 table .catch {
  font-size: 24px;
  text-align: center;
  line-height: 1.25;
  font-weight: 700;
  padding: 5px 0 5px 0;
}

/*==============================================
.table06 .table01
===============================================*/
.table06 .table01 {
  border: solid 2px #e64a1a;
  margin: 30px 2% 0 0%;
}

.table06 .table01 th {
  background: #e64a1a;
  color: #fff;
  position: relative;
}

.table06 .table01 td .sub {
  margin: 0px 0 0 0;
  color: #e64a1a;
  background: #f1bdac;
  font-weight: 700;
}

.table06 .table01 td .main {
  margin: 0px 0 0 0;
}

.table06 .table01 .mycolor {
  color: #e64a1a;
}

/*==============================================
.table06 .table02
===============================================*/
.table06 .table02 {
  border: solid 2px #437fc4;
  margin: 30px 2% 0 0%;
}

.table06 .table02 th {
  background: #437fc4;
  color: #fff;
  position: relative;
}

.table06 .table02 td .sub {
  color: #437fc4;
  background: #bed2e9;
  font-weight: 700;
}

.table06 .table02 td .thumb {
  width: 200px;
  margin: 20px auto 0px;
}

.table06 .table02 td .thumb img {
  width: 100%;
  height: auto;
}

.table06 .table02 .mycolor {
  color: #437fc4;
}

/*==============================================
.table06 .table03
===============================================*/
.table06 .table03 {
  border: solid 2px #ffe000;
  margin: 30px 0% 0 0%;
}

.table06 .table03 th {
  background: #ffe000;
  color: #231815;
  position: relative;
}

.table06 .table03 th .case {
  border: solid 2px #231815;
}

.table06 .table03 td .sub {
  color: #231815;
  background: #ffe000;
  font-weight: 700;
}

.table06 .table03 td .thumb {
  width: 100px;
  margin: 20px auto 0px;
}

.table06 .table03 td .thumb img {
  width: 100%;
  height: auto;
}

.table06 .table03 .mycolor {
  color: #231815;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title10 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title10-01 {
  position: relative;
  padding: 150px 0 150px 0;
  min-height: 600px;
  width: 100%;
}

.title10-01 .title-inner {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 500px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) skewY(-6.5deg);
          transform: translateY(-50%) skewY(-6.5deg);
}

.title10-01 .title-inner .cover {
  position: relative;
  width: 100%;
  height: 100%;
}

.title10-01 .title-inner .cover::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 200vw;
  height: 100%;
  background: #437fc4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
}

.title10-01 .title-middle {
  position: absolute;
  z-index: 1;
  background: #437fc4;
  padding: 20px 40px 30px 40px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  border: solid 3px #437fc4;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
}

.title10-01 .title-middle h3 {
  text-align: center;
  color: #fff;
  padding: 10px 0 10px 0;
}

.title10-01 .title-middle h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-size: 35px;
  font-weight: 900;
}

.title10-01 .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.title10-01 .thumb01 {
  position: absolute;
  top: -1.78rem;
  left: .95rem;
  width: 30rem;
}

.title10-01 .thumb01 img {
  width: 100%;
  height: auto;
}

.title10-01 .thumb02 {
  position: absolute;
  bottom: -1.8rem;
  left: 10.45rem;
  width: 25rem;
}

.title10-01 .thumb02 img {
  width: 100%;
  height: auto;
}

.title10-01 .thumb03 {
  position: absolute;
  top: -2.5rem;
  right: 10%;
  width: 30rem;
}

.title10-01 .thumb03 img {
  width: 100%;
  height: auto;
}

.title10-01 .thumb04 {
  position: absolute;
  right: 20%;
  bottom: -1rem;
  width: 25rem;
}

.title10-01 .thumb04 img {
  width: 100%;
  height: auto;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #VOICE03 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
#voice03 variables(変数設定)
===============================================*/
#voice03 {
  margin: 70px 0 50px 0;
}

#voice03 .box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  max-width: 1280px;
  margin: 70px auto 0;
  padding: 5px 0 0 0;
}

#voice03 .box-wrapper .box {
  border: solid 6px #b8cce2;
  padding: 10px 0 20px 0;
  width: 47.5%;
  margin: 0 40px 0 0;
}

#voice03 .box-wrapper .box:nth-child(2n) {
  margin: 0 0px 0 0;
}

#voice03 .box-wrapper .box .thumb {
  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;
  line-height: 1.3;
  margin: -65px auto 0;
}

#voice03 .box-wrapper .box .thumb .info .number {
  font-size: 13px;
  color: #437fc4;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
  text-align: center;
}

#voice03 .box-wrapper .box .thumb .info .skew {
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  background: #437fc4;
  color: #fff;
  text-align: center;
  margin: 0 auto 5px;
}

#voice03 .box-wrapper .box .thumb .info .skew .middle {
  display: block;
  font-size: 18px;
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
  padding: 3px 10px 3px 10px;
}

#voice03 .box-wrapper .box .thumb .info h3 {
  color: #437fc4;
  font-size: 26px;
}

#voice03 .box-wrapper .box .thumb .info .small {
  font-size: 16px;
}

#voice03 .box-wrapper .box .thumb img {
  width: 130px;
  height: auto;
  border-radius: 130px;
  border: solid 3px #fff;
  -webkit-box-shadow: 0 0 15px rgba(100, 100, 100, 0.3);
          box-shadow: 0 0 15px rgba(100, 100, 100, 0.3);
  margin: 0 20px 0 0;
}

#voice03 .box-wrapper .box .sentence {
  padding: 10px 30px 10px 30px;
}

#voice03 .box-wrapper .box .sentence h4 {
  color: #437fc4;
  font-size: 22px;
  margin: 10px auto 5px;
  text-align: center;
  border: solid 2px #437fc4;
  line-height: 1.2;
  padding: 10px 0 12px 0;
  position: relative;
}

#voice03 .box-wrapper .box .sentence h4:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 30%;
  margin-left: -14px;
  border: 12px solid transparent;
  border-bottom: 12px solid #fff;
  z-index: 2;
}

#voice03 .box-wrapper .box .sentence h4:after {
  content: "";
  position: absolute;
  top: -29px;
  left: 30%;
  margin-left: -16px;
  border: 14px solid transparent;
  border-bottom: 14px solid #437fc4;
  z-index: 1;
}

#voice03 .box-wrapper .box .sentence p {
  font-size: 17px;
  padding: 10px 20px 10px 20px;
}

#voice03 .addtional {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 40px 0 0 0;
}

#voice03 .addtional img {
  width: 250px;
  height: auto;
  margin: 0 40px 0 0;
}

#voice03 .addtional p {
  color: #437fc4;
  font-size: 30px;
  font-weight: 700;
}

#voice03 .addtional p span {
  display: inline-block;
  background: #437fc4;
  color: #fff;
  padding: 3px 15px 3px 15px;
  font-size: 16px;
  border-radius: 30px;
  margin: 0 10px 10px 0;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #FLOW02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#flow02 {
  padding: 30px 0 0 0;
}

/*==============================================
#flow02 .step-wrapper
===============================================*/
#flow02 .step-wrapper {
  padding: 20px 0 40px 0;
}

/*==============================================
#flow02 .box
===============================================*/
#flow02 .box {
  background: #f3f3f3;
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 10px 0;
}

#flow02 .box .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-bottom: solid 1.5px #437fc4;
}

#flow02 .box .step .number {
  background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
  background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
  text-align: center;
  width: 30%;
  color: #fff;
  padding: 10px 20px 13px 20px;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 0px 0;
}

#flow02 .box .step .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px 13px 30px;
  font-size: 20px;
  font-weight: 700;
}

#flow02 .box .text {
  width: 92%;
  margin: 20px auto 20px;
  background: #e0e0e0;
  padding: 20px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#flow02 .box .text .image {
  width: 30%;
  margin: 0 3% 0 0;
}

#flow02 .box .text .image img {
  width: 100%;
  height: auto;
}

#flow02 .box .text .sentence {
  width: 67%;
}

#flow02 .box .text h3 {
  border-left: solid 3px #437fc4;
  color: #437fc4;
  font-size: 24px;
  line-height: 1.45;
  padding: 0 0 0 15px;
  margin: 0 0 10px 0;
}

#flow02 .box .text p {
  border-left: solid 3px #3a2601;
  color: #3a2601;
  font-size: 16px;
  line-height: 1.65;
  padding: 0 0 0 15px;
  margin: 0 0 0px 0;
}

#flow02 .arrow {
  text-align: center;
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto 0;
  line-height: 0;
}

/*==============================================
#flow02 .addtional
===============================================*/
#flow02 .addtional {
  margin: 0px auto 0;
  text-align: center;
  line-height: 0;
}

#flow02 .addtional .text {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: 50px;
}

#flow02 .addtional .text .semi {
  font-size: 21px;
  width: 150px;
  margin: 0 auto;
  padding: 2px 10px;
  border-radius: 30px;
  color: #fff;
  background: #437fc4;
  text-align: center;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
}

#flow02 .addtional .text .catch {
  font-size: 35px;
  padding: 2px 10px;
  line-height: 1.25;
  color: #437fc4;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}

#flow02 .addtional img {
  width: 210px;
  height: auto;
  display: inline-block;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .FAQ01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
#faq01 .accordion
===============================================*/
#faq01 .accordion {
  width: 1000px;
  padding: 0px 0px 10px;
  margin: 0 auto;
}

/*==============================================
#faq01 .accordion li
===============================================*/
#faq01 .accordion li {
  border-width: 3px;
  border-style: solid;
  border-color: #437fc4;
  background: #ffffff;
  margin-top: 20px;
  border-radius: 10px;
  font-weight: 700;
  font-style: normal;
  overflow: hidden;
}

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

/*==============================================
#faq01 .accordion .trigger
===============================================*/
#faq01 .accordion .trigger {
  font-size: 18px;
  padding: 24px 40px 24px 40px;
  color: #437fc4;
  position: relative;
  font-weight: bold;
  cursor: pointer;
  line-height: 2.0;
}

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

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

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

#faq01 .accordion .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 .toggle_container
===============================================*/
#faq01 .toggle_container {
  padding: 17px 40px 15px 40px;
  position: relative;
  line-height: 2.0;
}

#faq01 .toggle_container p {
  font-size: 16px;
  margin: 0;
}

#faq01 .toggle_container p span.icon-a {
  background: #d70a17;
  line-height: 1.0;
  padding: 3px 10px 5px 10px;
  border-radius: 100px;
  color: #fff;
  margin: 0 10px 0 0;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .SECTION15 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
.section15　variables(変数設定)
===============================================*/
.section15 {
  padding: 0px 0 60px 0;
}

.section15 .thumb {
  width: 100%;
  margin: 40px 0 0 0;
}

.section15 .thumb img {
  width: 100%;
  height: auto;
}

.section15 h4 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 0;
  padding: 40px 0 40px 0;
  color: #437fc4;
}

.section15 .sentence {
  max-width: 900px;
  margin: 0 auto 0;
}

.section15 .sentence p {
  padding: 8px 0 8px 0;
  line-height: 1.75;
  font-size: 16px;
}

/* end .section15 */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .CONTACT01　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.contact01 {
  margin: 0px 0 0px 0;
}

/*==============================================
.contact01 .sentence
===============================================*/
.contact01 .sentence {
  width: 800px;
  font-weight: 500;
  padding: 20px 0 0px 0;
  margin: 0 auto;
}

.contact01 .sentence p {
  font-size: 17px;
  padding: 10px 0 10px 0;
  line-height: 1.75;
}

/*===========================
.contact01 .btn
===========================*/
.contact01 .btn {
  width: 800px;
  margin: 0 auto;
}

.contact01 .btn a {
  background: #437fc4;
  background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
  background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
  border-style: solid;
  border-width: 2px;
  border-color: #437fc4;
  display: block;
  width: 100%;
  font-size: 20px;
  margin: 20px auto 20px;
  padding: 12px 3% 12px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset;
          box-shadow: 0px 0px 0px 2px #ffffff inset;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-weight: 700;
}

.contact01 .btn a img {
  width: 35px;
  height: auto;
  padding: 0 8px 0 0;
  position: relative;
  top: 4px;
}

.contact01 .pc-tel {
  font-size: 16px;
  width: 90%;
  margin: 0 auto 0;
  text-align: center;
  font-weight: 500;
}

/*===========================
.contact01 .pc-tel
===========================*/
.contact01 .pc-tel span.big {
  font-size: 35px;
  font-weight: 900;
  color: #437fc4;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #FORM-WRAPPER　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#form-wrapper {
  width: 100%;
  margin: 30px auto 0;
  background: #f6f6f6;
}

form#mail_form {
  width: 960px;
  margin: 10px auto 20px;
  padding: 20px 20px;
  background: #ffffff;
}

/*==============================================
#form-wrapper h2
===============================================*/
#form-wrapper h2 {
  color: #437fc4;
  font-size: 47px;
  line-height: 1.4;
  padding: 40px 0 40px 0;
  font-weight: 700;
  letter-spacing: -2px;
  text-align: center;
}

form#mail_form dl {
  width: 100%;
  margin: 0 0 0px 0;
  overflow: hidden;
  padding: 0;
}

form#mail_form dl dt {
  background: #d4e8ff;
  clear: both;
  width: 30%;
  float: left;
  padding: 15px 25px;
  text-align: left;
  overflow: hidden;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

form#mail_form dl dd {
  width: 70%;
  float: right;
  padding: 15px 0 15px 5%;
  font-size: 17px;
  margin: 0 0 10px 0;
}

form#mail_form dl dt:first-child,
form#mail_form dl dt:first-child + dd {
  border: none;
}

form#mail_form dl dt span {
  color: #437fc4;
  display: inline-block;
  font-size: 85%;
  padding: 0 2px 0 2px;
}

/*==============================================
#form-wrapper .privacy-section
===============================================*/
#form-wrapper .privacy-section {
  padding: 20px 0 20px 0;
  margin: 0 auto 20px;
  width: 100%;
  float: none;
  clear: both;
}

#form-wrapper .privacy-section h4 {
  font-size: 20px;
  text-align: center;
  padding: 0 0 35px 0;
}

#form-wrapper .privacy-section .privacy-box {
  margin: 0 0 20px 0;
  height: 150px;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  color: #404040;
  padding: 4%;
  border: solid 1px #aaa;
}

#form-wrapper .privacy-section .privacy-box h5 {
  font-size: 18px;
  margin: 0 0 10px 0;
}

#form-wrapper .privacy-section .privacy-box p {
  padding: 5px 0 40px 0;
  font-size: 15px;
  line-height: 1.7;
}

#form-wrapper .privacy-section .privacy-button {
  margin: 0px auto 0px;
  text-align: left;
  font-size: 18px;
  position: relative;
  top: -20px;
}

#form-wrapper .privacy-section .privacy-button img.p-mark {
  width: 70px;
  height: auto;
  padding: 0 10px 0 0;
  position: relative;
  top: 15px;
}

#form-wrapper .privacy-section dt {
  font-size: 0px !important;
  color: #fff !important;
  width: 0px !important;
  padding: 0 !important;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 FORM #MAIL_FORM　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
form#mail_form 「必須」「任意」
===============================================*/
form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
  display: inline-block !important;
  margin: 0 5px 0 5px;
  color: #ffffff;
  line-height: 1;
  padding: 8px 9px;
  border-radius: 3px;
}

form#mail_form dl dt span.required {
  background: #dd140e;
  border: 1px solid #d43f3a;
}

form#mail_form dl dt span.optional {
  background: #337ab7;
  border: 1px solid #2e6da4;
}

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 3px;
}

/*==============================================
form#mail_form ローディング
===============================================*/
span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1s linear infinite;
  animation: load-circle 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}

@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*==============================================
form#mail_form input
===============================================*/
form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
  max-width: 90%;
  height: 2em;
  padding: 2px 2%;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 100%;
  font-family: inherit;
  margin-top: 7px;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
  -webkit-box-shadow: 0px 0px 5px #55ccff;
          box-shadow: 0px 0px 5px #55ccff;
  border: 1px solid #55ccff;
  background: #ffffff;
}

form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 7px;
}

form#mail_form ul li:first-child input[type="radio"],
form#mail_form ul li:first-child input[type="checkbox"] {
  margin-top: 0px;
}

form#mail_form select {
  font-size: 100%;
  font-family: inherit;
  margin-top: 10px;
}

form#mail_form textarea {
  display: block;
  width: 90%;
  max-width: 90%;
  height: 200px;
  padding: 2px 2%;
  resize: vertical;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 100%;
  font-family: inherit;
}

form#mail_form ul {
  list-style-type: none;
}

form#mail_form ul li label:hover {
  cursor: pointer;
}

form#mail_form input#company {
  width: 60%;
}

form#mail_form input#name_1,
form#mail_form input#name_2,
form#mail_form input#read_1,
form#mail_form input#read_2,
form#mail_form input#postal,
form#mail_form input#phone,
form#mail_form input#schedule {
  width: 100%;
}

form#mail_form input#mail_address,
form#mail_form input#mail_address_confirm {
  width: 100%;
}

/*==============================================
form#mail_form input#postal
===============================================*/
form#mail_form input#postal + a {
  display: inline-block;
  padding: 9px 15px;
  vertical-align: middle;
  line-height: 1;
  background: #5bc0de;
  border: 1px solid #46b8da;
  border-radius: 3px;
  color: #ffffff;
  font-family: inherit;
  text-decoration: none;
  position: relative;
  top: -1px;
}

form#mail_form input#postal + a:hover {
  cursor: pointer;
  background: #31b0d5;
  border: 1px solid #269abc;
}

form#mail_form input#address {
  width: 90%;
}

form#mail_form p#form_submit {
  width: 90%;
  margin: 0 auto;
  padding: 15px 0;
  border-top: 1px solid #cccccc;
}

/*==============================================
form#mail_form submit(送信ボタン)
===============================================*/
/* 変数設定 */
form#mail_form input[type="button"] {
  background: -webkit-gradient(linear, left top, right top, from(#f85d00), color-stop(56%, #ff8a00), to(#fcb436));
  background: linear-gradient(to right, #f85d00 0%, #ff8a00 56%, #fcb436 100%);
  -webkit-box-shadow: 0px 0px 0px 2px #ea750d;
          box-shadow: 0px 0px 0px 2px #ea750d;
  vertical-align: middle;
  line-height: 1;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
  width: 100%;
  font-weight: 700;
  margin: 10px auto 0px;
  padding: 18px 5px 22px;
  border: 2px solid #ffffff;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 60px;
  font-size: 30px;
}

form#mail_form input[type="button"]:hover {
  background: -webkit-gradient(linear, left top, right top, from(#f80000), color-stop(55%, #ff6000), to(#ff8340));
  background: linear-gradient(to right, #f80000 0%, #ff6000 55%, #ff8340 100%);
  cursor: pointer;
}

form#mail_form input#form_submit_button {
  margin-left: 0;
  margin: 0 auto 0;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #THANKS　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
div#thanks .inner
===============================================*/
div#thanks .inner {
  width: 960px;
  margin: 80px auto 80px;
  padding: 40px 0;
  background: #ffffff;
  border: 3px solid #437fc4;
}

div#thanks h1 {
  width: 90%;
  margin: 0 auto;
  font-size: 27px;
  font-weight: bold;
  padding: 0 0 16px 0;
  border-bottom: 3px solid #437fc4;
  color: #437fc4;
}

div#thanks h2 {
  width: 90%;
  margin: 0 auto;
  font-size: 135%;
  font-weight: bold;
  padding: 0 0 13px 0;
  border-bottom: 2px solid #437fc4;
  color: #437fc4;
}

div#thanks h2 {
  margin-top: 1.5em;
}

div#thanks .main p {
  width: 90%;
  margin: 0 auto;
  margin-top: 2em;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
}

div#thanks .sub p {
  width: 90%;
  margin: 0 auto;
  margin-top: 2em;
  color: #3f1801;
  /* font-family: fot-tsukuardgothic-std, sans-serif; */
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
}

div#thanks dl {
  width: 90%;
  margin: 0 auto 3em;
}

div#thanks dl dt {
  margin-top: 2em;
}

/* breakpoints */
@media screen and (max-width: 767px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #gnav01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  ====================================================================*/
  #gnav01 .wrapper {
    padding: 10px 10px 10px 10px;
  }
  #gnav01 .wrapper h1 {
    width: 160px;
  }
  #gnav01 .wrapper h1 img {
    width: 100%;
    height: auto;
  }
  #gnav01 .wrapper h1 span {
    color: #437fc4;
  }
  #gnav01 .wrapper h2 {
    font-size: 14px;
    line-height: 1.2;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
@media screen and (max-width: 320px) {
  #gnav01 .wrapper {
    padding: 10px 10px 10px 10px;
  }
  #gnav01 .wrapper h1 {
    width: 140px;
  }
  #gnav01 .wrapper h1 img {
    width: 100%;
    height: auto;
  }
  #gnav01 .wrapper h2 {
    font-size: 13px;
    line-height: 1.2;
  }
}

/* 481px responsive-closed */
/* 768px〜960px：タブレット(iPad縦)
------------------------------ */
@media screen and (min-width: 768px) and (max-width: 960px) {
  #gnav01 .wrapper {
    padding: 10px 3.5% 10px 3.5%;
  }
}

/* 768px〜960px：タブレット(iPad縦) responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 #HEADER20 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  #header20 {
    width: 100%;
    overflow: hidden;
    /* #header20 .swiper-slide closed */
    /* #header20 .hero closed */
  }
  #header20 .inner {
    display: block;
  }
  #header20 .inner .text {
    width: 100%;
    padding: 20px 4.5% 40px 4.5%;
  }
  #header20 .inner .text h3 {
    font-size: 18px;
    line-height: 1.2;
  }
  #header20 .inner .text h1 {
    font-size: 34px;
    padding: 10px 0 20px 0;
  }
  #header20 .inner .text h1 span.big {
    font-size: 34px;
  }
  #header20 .inner .text h2 {
    font-size: 19px;
  }
  #header20 .inner .text .button a {
    padding: 12px 25px 16px 25px;
    font-size: 16px;
    margin: 20px 0 0 0;
  }
  #header20 .inner .text .button a img {
    width: 25px;
    position: relative;
    top: 4px;
    padding: 0 0 0 3px;
  }
  #header20 .swiper-slide {
    height: 270px !important;
    /* #header20 &-active closed */
  }
  #header20 .swiper-slide-active .hero__title {
    opacity: 1;
  }
  #header20 .swiper-slide-active .hero__tate {
    opacity: 0.4;
    font-size: 56px;
  }
  #header20 .hero {
    width: 100%;
    /* #header20 .hero__title closed */
  }
  #header20 .hero__title {
    min-width: 280px;
  }
  #header20 .hero__title img.icon {
    width: 100px;
    padding: 0 0 0px 0;
  }
  #header20 .hero__title .en {
    font-size: 25px;
    padding: 0 0 10px 0;
    line-height: 1.3;
    color: #437fc4;
    font-weight: 900;
    letter-spacing: 2px;
  }
  #header20 .hero__title h2 {
    font-weight: 900;
    font-size: 15px;
  }
  #header20 .hero__tate {
    position: absolute;
    z-index: 10;
    font-size: 36px;
    letter-spacing: 3px;
    font-weight: 900;
  }
  /* #header20 closed */
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 481px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px〜960px：タブレット(iPad縦)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 768px〜960px：タブレット(iPad縦)
------------------------------ */
@media screen and (min-width: 768px) and (max-width: 960px) {
  #header20 {
    /*==============================================
    #header20 .inner .text
    ===============================================*/
    /* #header20 .inner .text closed */
    /*==============================================
    #header20 .swiper-slide
    ===============================================*/
    /* #header20 .swiper-slide closed */
    /*==============================================
    #header20 .hero
    ===============================================*/
    /* #header20 .hero closed */
  }
  #header20 .inner .text h3 {
    font-size: 17px;
  }
  #header20 .inner .text h1 {
    font-size: 35px;
    padding: 10px 0 30px 0;
    font-weight: 900;
  }
  #header20 .inner .text h1 span.big {
    font-size: 35px;
  }
  #header20 .inner .text h2 {
    font-size: 20px;
    font-weight: 500;
  }
  #header20 .swiper-slide {
    height: 550px !important;
    overflow: hidden !important;
  }
  #header20 .hero {
    width: 50%;
    overflow: hidden;
    /*==============================================
      #header20 .hero .title
      ===============================================*/
    /* #header20 .hero__title closed */
  }
  #header20 .hero__title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
    min-width: 80%;
    width: 80%;
    text-align: left;
    z-index: 20;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease 1.5s, -webkit-transform 0.3s ease 1.5s;
    transition: opacity 0.3s ease 1.5s, -webkit-transform 0.3s ease 1.5s;
    transition: opacity 0.3s ease 1.5s, transform 0.3s ease 1.5s;
    transition: opacity 0.3s ease 1.5s, transform 0.3s ease 1.5s, -webkit-transform 0.3s ease 1.5s;
  }
  #header20 .hero__title h2 {
    padding: 5px 30px 5px 30px;
    font-size: 26px;
  }
  /* #header20 closed */
}

/* 768px〜960px responsive-closed */
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 960px〜1279px：小型PC(iPad横を含む)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 960px〜1279px：小型PC(iPad横を含む)
------------------------------ */
@media screen and (min-width: 960px) and (max-width: 1279px) {
  #header20 {
    width: 100%;
    overflow: hidden;
  }
  #header20 .inner .text {
    padding: 0 3% 0 3%;
  }
  #header20 .inner .text .mark p {
    font-size: 16x;
    padding: 2px 5px 2px 5px;
    margin: 0 10px 10px 0;
  }
  #header20 .inner .text h1 {
    font-size: 43px;
    padding: 0 0 30px 0;
  }
  #header20 .inner .text h1 span.big {
    font-size: 43px;
  }
  #header20 .inner .text h2 {
    font-size: 22px;
  }
  /* #header20 closed */
}

/* 960px〜1279px responsive-closed */
/* 1024x〜2980px：大型PC
------------------------------ */
/* 1024x〜2980px responsive-closed */
/* 481px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #headerto05 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 769px) {
  /*==============================================
#headerto05 .box-wrapper
===============================================*/
  #headerto05 .box-wrapper {
    margin: -20px auto 20px;
    display: block;
  }
  #headerto05 .box-wrapper .box {
    background: #fff;
    width: 92%;
    margin: 0 auto 20px;
    padding: 10px 20px 10px 20px;
  }
  #headerto05 .box-wrapper .box:nth-child(3n) {
    margin: 0 auto 20px;
  }
  #headerto05 .box-wrapper .box .icon {
    width: 25%;
    padding: 0 20px 0 0;
  }
  #headerto05 .box-wrapper .box .icon img {
    width: 100%;
  }
  #headerto05 .box-wrapper .box .text {
    font-size: 17px;
    padding: 0 0 0 20px;
  }
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 481px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 768px～1023px responsive-closed */
/* 1024x〜2980px：大型PC
------------------------------ */
/* 1024x〜2980px responsive-closed */
/* 481px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
  
  〇 .CTA03 〇
  
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .cta03 {
    /* .cta03 .wrapper closed */
  }
  .cta03 .wrapper {
    padding: 40px 0 50px 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(67, 127, 196, 0.9)), to(rgba(24, 87, 147, 0.9)));
    background: linear-gradient(90deg, rgba(67, 127, 196, 0.9) 0%, rgba(24, 87, 147, 0.9) 100%);
    /* .cta03 .inner closed */
  }
  .cta03 .wrapper .inner {
    width: 92%;
    margin: 0 auto;
    /* .cta03 .inner .haedline closed */
    /* .cta03 .inner .box-wrapper closed */
  }
  .cta03 .wrapper .inner .headline {
    color: #fff;
    margin: 0 0 30px 0;
  }
  .cta03 .wrapper .inner .headline h2 {
    font-size: 38px;
  }
  .cta03 .wrapper .inner .headline h3 {
    font-size: 18px;
  }
  .cta03 .wrapper .inner .box-wrapper {
    display: block;
    /* .cta03 .inner .box-wrapper .box closed */
  }
  .cta03 .wrapper .inner .box-wrapper .box {
    width: 100%;
    /* .cta03 .inner .box-wrapper .box .button closed */
  }
  .cta03 .wrapper .inner .box-wrapper .box:nth-child(1) {
    margin: 0 0 20px 0;
  }
  .cta03 .wrapper .inner .box-wrapper .box:nth-child(2) {
    margin: 0 0% 0 0;
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption {
    font-size: 16px;
    margin: 0 0 8px 0;
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption d
span {
    padding: 0 3px 0 3px;
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption:before, .cta03 .wrapper .inner .box-wrapper .box .caption:after {
    content: "";
    background: #fff;
    border-radius: 30px;
    height: 15px;
    width: 2px;
    display: inline-block;
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption:before {
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%) skew(20deg);
            transform: translateY(-50%) skew(20deg);
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption:after {
    position: absolute;
    top: 50%;
    right: 10%;
    -webkit-transform: translateY(-50%) skew(-20deg);
            transform: translateY(-50%) skew(-20deg);
  }
  .cta03 .wrapper .inner .box-wrapper .box .button a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 20px 0 20px 0;
    line-height: 1.2;
    position: relative;
    border-radius: 60px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 0 3px inset #fff;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 0 3px inset #fff;
  }
  .cta03 .wrapper .inner .box-wrapper .box .button a span {
    padding: 0 0 0 10px;
  }
  .cta03 .wrapper .inner .box-wrapper .box .button a img {
    width: 25px;
    height: 25px;
    position: relative;
    left: 0px;
    top: 2px;
  }
  /* .cta03 closed */
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 320px) {
  .cta01 {
    width: 100%;
    margin: 0 0 0 0;
    /* .cta01 .wrapper closed */
  }
  .cta01 .wrapper {
    padding: 40px 0 40px 0;
    /* .cta01 .inner closed */
  }
  .cta01 .wrapper .inner {
    width: 85%;
    margin: 0 auto;
    /* .cta01 .inner .haedline closed */
    /* .cta01 .inner .box closed */
  }
  .cta01 .wrapper .inner .headline {
    display: block;
    margin: 0 0 30px 0;
  }
  .cta01 .wrapper .inner .headline h2 {
    font-size: 38px;
    margin: 0 0px 15px 0;
    border-right: none;
    padding: 0 0px 0 0;
    letter-spacing: 1px;
  }
  .cta01 .wrapper .inner .headline h3 {
    font-size: 16px;
    letter-spacing: 1px;
    border-left: solid 2px #fff;
    padding: 0 0 0 10px;
  }
  .cta01 .wrapper .inner .box {
    padding: 25px 25px 25px 25px;
    display: block;
    /* .cta01 .inner .box .tel closed */
  }
  .cta01 .wrapper .inner .box .tel .number {
    font-size: 29px;
  }
  .cta01 .wrapper .inner .box .tel img {
    width: 28px;
    top: 3px;
  }
  .cta01 .wrapper .inner .box .tel .detail {
    font-size: 15px;
  }
  .cta01 .wrapper .inner .box .to-contact a {
    font-size: 15px;
  }
  .cta01 .wrapper .inner .box .to-contact a img {
    width: 18px;
    height: auto;
    right: 8px;
  }
  /* .cta01 closed */
}

/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 768px～1023px responsive-closed */
/* 1024x〜2980px：大型PC
------------------------------ */
/* 1024x〜2980px responsive-closed */
/* 481px responsive-closed */
/* 2980px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 767px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title04-01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title04-01 .en {
    overflow: hidden;
    font-size: 60px;
    position: relative;
    top: 10px;
  }
  /*==============================================
  .title04-01 h2
  ===============================================*/
  .title04-01 h2 {
    width: 100%;
    height: 390px;
    padding: 30px 0 20px 0;
    background: #175499;
  }
  .title04-01 h2:before,
  .title04-01 h2:after {
    content: "";
    width: 130%;
    height: 200%;
    background: #437fc4;
  }
  .title04-01 h2:before {
    position: absolute;
    left: 80%;
    top: -25%;
    -webkit-transform: rotate(-120deg);
            transform: rotate(-120deg);
  }
  .title04-01 h2:after {
    position: absolute;
    right: 80%;
    top: -25%;
    -webkit-transform: rotate(120deg);
            transform: rotate(120deg);
  }
  /*==============================================
  .title04-01 h2 .semi
  ===============================================*/
  .title04-01 h2 .semi {
    font-size: 20px;
  }
  /*==============================================
  .title04-01 h2 .catch
  ===============================================*/
  .title04-01 h2 .catch .image {
    width: 100%;
    padding: 0 0px 0 0;
  }
  .title04-01 h2 .catch .image img {
    width: 160px;
    display: block;
    margin: 0 auto 0;
  }
  .title04-01 h2 .catch .text {
    font-size: 34px;
    text-align: right;
    padding: 0 8px 0 0;
    letter-spacing: -0.5px;
  }
  .title04-01 h2 .catch .hatena {
    font-size: 88px;
    top: -5px;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title04-02 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  .title04-02 h2
  ===============================================*/
  .title04-02 h2 {
    width: 100%;
    height: 400px;
    padding: 20px 0 20px 0;
    background: #175499;
  }
  .title04-02 h2:before,
  .title04-02 h2:after {
    content: "";
    width: 130%;
    height: 200%;
    background: #437fc4;
  }
  .title04-02 h2:before {
    position: absolute;
    left: 80%;
    top: -30%;
    -webkit-transform: rotate(-120deg);
            transform: rotate(-120deg);
  }
  .title04-02 h2:after {
    position: absolute;
    right: 80%;
    top: -30%;
    -webkit-transform: rotate(120deg);
            transform: rotate(120deg);
  }
  /*==============================================
  .title04-02 h2 .catch
  ===============================================*/
  .title04-02 h2 .catch .image {
    width: 100%;
    padding: 0 0px 0 0;
  }
  .title04-02 h2 .catch .image img {
    width: 160px;
    display: block;
    margin: 0 auto 0;
  }
  .title04-02 h2 .catch .text {
    font-size: 25px;
    text-align: right;
    padding: 0 8px 0 0;
    letter-spacing: -0.5px;
  }
  .title04-02 h2 .catch .hatena {
    font-size: 70px;
    top: -5px;
  }
  /*==============================================
  .title04-02 h2 .semi
  ===============================================*/
  .title04-02 h2 .semi {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    line-height: 1.25;
    padding: 10px 0 0px 0;
  }
  .title04-02 h2 .semi span.small {
    font-size: 0.8em;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 768px〜960px：タブレット(iPad縦)
------------------------------ */
@media screen and (min-width: 768px) and (max-width: 960px) {
  /*==============================================
  .title04-01 h2
  ===============================================*/
  .title04-01 h2:before,
  .title04-01 h2:after {
    content: "";
    width: 130%;
    height: 200%;
    background: #437fc4;
  }
}

/* 768px〜960px：タブレット(iPad縦) responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #TARGETING04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  #target04 {
    padding: 75px 0 40px 0;
  }
  /*==============================================
	#target04 .box
	===============================================*/
  #target04 .box {
    width: 100%;
    margin: 40px auto 0;
    display: block;
  }
  #target04 .box p.text {
    display: block;
    position: relative;
    z-index: 20;
    margin: 0 0px 0 0;
    top: 0;
    padding: 40px 0 0 20px;
  }
  #target04 .box p.text .semi {
    font-size: 22px;
    line-height: 1.5;
  }
  #target04 .box img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    margin: -30px auto 0;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 0px 0px #fff;
            box-shadow: 0px 0px 0px 0px #fff;
  }
  #target04 .box p.text .catch {
    font-size: 33px;
    line-height: 1.4;
    letter-spacing: -2px;
  }
  /*==============================================
	#target04 ul.checklist
	===============================================*/
  #target04 ul.checklist {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 5% 0px 5%;
  }
  #target04 ul.checklist li {
    width: 100%;
    margin: 0 0% 20px 0px;
    padding: 0px 0px 0px 0px;
    background: #fff url(../images/target04-icon-check.svg) no-repeat 20px center;
    background-size: 25px auto;
    font-size: 19px;
  }
  #target04 ul.checklist li .icon {
    width: 12%;
  }
  #target04 ul.checklist li p {
    padding: 20px 20px 20px 20px;
    width: 88%;
  }
  /*==============================================
  #target04 .explain
  ===============================================*/
  #target04 .explain img {
    width: 300px;
    height: auto;
    padding: 0 30px 0 0;
  }
  #target04 .explain p {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
  /*==============================================
	#target04 .explain
	===============================================*/
  #target04 .explain {
    padding: 0px 0 0 0;
    display: block;
    text-align: center;
  }
  #target04 .explain img.thumb {
    width: 220px;
    padding: 0 0px 0 0;
    margin: 0 0px 30px 0;
    border: solid 2px #437fc4;
    -webkit-box-shadow: 10px 10px 0px 6px #b8cce2;
            box-shadow: 10px 10px 0px 6px #b8cce2;
    position: relative;
    z-index: -1;
    background: #fff;
    padding: 3px 3px 3px 3px;
  }
  #target04 .explain p {
    font-size: 19px;
    line-height: 1.45;
  }
}

/* 767px responsive-closed */
/* 320px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title01-01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  .title01-01 背景色
  ===============================================*/
  .title01-01 {
    padding: 20px 0 20px;
    text-align: center;
  }
  /*==============================================
  .title01 h2,h3
  ===============================================*/
  .title01-01 h2 {
    font-size: 32px;
  }
  .title01-01 h3 {
    font-size: 22px;
    margin: 10px 0 0 0;
  }
  .title01-01 .caption {
    font-size: 16px;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title01-02 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  .title01-02 背景色
  ===============================================*/
  .title01-02 {
    padding: 20px 0 20px 0;
  }
  /*==============================================
  .title01-02 h2,h3
  ===============================================*/
  .title01-02 h3 {
    padding: 10px 15px;
    width: 240px;
    font-size: 17px;
  }
  .title01-02 h2 {
    font-size: 32px;
  }
  .title01-02 .caption {
    font-size: 16px;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title01-03 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title01-03 .semi {
    padding: 20px 0 8px 0;
    font-size: 22px;
  }
  .title01-03 .sub {
    width: 220px;
    font-size: 20px;
  }
  .title01-03 h2 {
    padding: 0px 5% 20px 5%;
    font-size: 32px;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title01-04 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title01-04 {
    padding: 30px 0 10px 0;
  }
  .title01-04 .sub {
    font-size: 17px;
    width: 200px;
    padding: 10px 20px 10px;
  }
  .title01-04 h2 {
    padding: 0px 5% 20px 5%;
    font-size: 34px;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT08 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
@media screen and (max-width: 769px) {
  /*============================================
    #point08 .wrapper
    =============================================*/
  /*============================================
    #point08 .boxwrapper
    =============================================*/
  #point08 .box-wrapper {
    max-width: 1200px;
    margin: 0 auto 0;
    overflow: hidden;
    /* #point08 .box-wrapper .box closed */
  }
  #point08 .box-wrapper .box {
    padding: 90px 0 30px 0;
    /* #point08 .box-wrapper .box .top closed */
    /* #point08 .box-wrapper .box .middle closed */
    /* #point08 .box-wrapper .box .bottom closed */
  }
  #point08 .box-wrapper .box .top {
    display: block;
  }
  #point08 .box-wrapper .box .top h2 {
    width: 92%;
    margin: 10px auto 0;
    padding: 10px 0 0 0;
    z-index: 2;
  }
  #point08 .box-wrapper .box .top h2 .semi {
    margin: -100px 0 0px 0px;
    line-height: 1.0;
    padding: 10px 0 0 30px;
    display: block;
    text-align: left;
  }
  #point08 .box-wrapper .box .top h2 .semi span.big {
    font-size: 80px;
  }
  #point08 .box-wrapper .box .top h2 .semi span.small {
    font-size: 40px;
  }
  #point08 .box-wrapper .box .top h2 .en {
    padding: 20px 25px 10px 25px;
    font-size: 17px;
  }
  #point08 .box-wrapper .box .top h2 .catch {
    padding: 0px 20px 30px 20px;
    font-size: 26px;
  }
  #point08 .box-wrapper .box .top .thumb {
    overflow: hidden;
    width: 100%;
    margin: -30px auto 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0), 0 0 0 3px inset #fff;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0), 0 0 0 3px inset #fff;
  }
  #point08 .box-wrapper .box:nth-child(2n) .top h2 .semi {
    padding: 10px 20px 0 0px;
    display: block;
    text-align: right;
  }
  #point08 .box-wrapper .box .middle {
    padding: 20px 5% 30px 5%;
  }
  #point08 .box-wrapper .box .middle .sentence {
    font-size: 16px;
    line-height: 1.75;
  }
  #point08 .box-wrapper .box .bottom {
    width: 90%;
    margin: 0 auto 0;
    padding: 20px 0 0px 0;
    background: #fff;
    border: solid 3px #fff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 0 3px inset #437fc4;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 0 3px inset #437fc4;
  }
  #point08 .box-wrapper .box .bottom .mark {
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background: #437fc4;
    margin: 0 auto 0;
  }
  #point08 .box-wrapper .box .bottom .inside {
    display: block;
    padding: 20px 0 20px 0;
  }
  #point08 .box-wrapper .box .bottom .inside .icon img {
    width: 70px;
    height: auto;
    margin: 10px auto 10px;
  }
  #point08 .box-wrapper .box .bottom .inside h3 {
    padding: 0px 30px 0px 30px;
    text-align: center;
    font-size: 22px;
  }
  #point08 .box-wrapper .box .bottom .block {
    padding: 20px 2% 20px 2%;
  }
  #point08 .box-wrapper .box .bottom .block .icon {
    width: 30%;
    margin: 0 2.5% 0 0;
  }
  #point08 .box-wrapper .box .bottom .block .icon:nth-child(3) {
    margin: 0 0% 0 0;
  }
  #point08 .box-wrapper .box .bottom .block .icon:nth-child(5) {
    margin: 0 0% 0 0;
  }
  #point08 .box-wrapper .box .bottom .block .icon .image {
    width: 100px;
    height: auto;
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
    background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
    padding: 20px 20px 20px 20px;
    border-radius: 140px;
    margin: 0 auto 0px;
    line-height: 0;
  }
  #point08 .box-wrapper .box .bottom .block .icon .image img {
    width: 100%;
    height: auto;
    line-height: 0;
  }
  #point08 .box-wrapper .box .bottom .block .icon h5 {
    margin: 5px 0 15px 0;
    padding: 0;
    font-size: 18px;
    letter-spacing: -1.5px;
  }
  #point08 .box-wrapper .box .bottom .sentence {
    padding: 0px 30px 30px 30px;
    font-size: 17px;
    line-height: 2.2;
  }
  /* #point08 .box-wrapper closed */
}

/* 769px responsive-closed */
@media screen and (max-width: 320px) {
  /*============================================
    #point08 .boxwrapper
    =============================================*/
  #point08 .box-wrapper {
    /* #point08 .box-wrapper .box closed */
  }
  #point08 .box-wrapper .box {
    /* #point08 .box-wrapper .box .top closed */
    /* #point08 .box-wrapper .box .middle closed */
    /* #point08 .box-wrapper .box .middle closed */
  }
  #point08 .box-wrapper .box .top h2 .semi span.big {
    font-size: 80px;
  }
  #point08 .box-wrapper .box .top h2 .semi span.small {
    font-size: 40px;
  }
  #point08 .box-wrapper .box .top h2 .en {
    padding: 20px 25px 10px 25px;
    font-size: 17px;
  }
  #point08 .box-wrapper .box .top h2 .catch {
    padding: 0px 25px 30px 25px;
    font-size: 22px;
  }
  #point08 .box-wrapper .box .middle .sentence {
    font-size: 14px;
  }
  #point08 .box-wrapper .box .bottom .inside {
    display: block;
    padding: 20px 0 20px 0;
  }
  #point08 .box-wrapper .box .bottom .inside h3 {
    font-size: 20px;
  }
  #point08 .box-wrapper .box .bottom .sentence {
    padding: 0px 25px 30px 25px;
    font-size: 15.5px;
    line-height: 2.2;
  }
  /* #point08 .box-wrapper closed */
}

/* 320px responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .BUTTON01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  .button01
  ===============================================*/
  .button01 {
    width: 90%;
    margin: 10px auto 30px;
  }
  /*==============================================
  .button01 .suggest
  ===============================================*/
  .button01 .suggest {
    padding: 0 0 30px 0;
    font-size: 16px;
  }
  /*==============================================
  .button01 .btn .circle
  ===============================================*/
  .button01 a .btn .circle {
    width: 60px;
    height: 60px;
    top: -40px;
    left: -15px;
    border-radius: 100px;
    padding: 9px 3px 3px 3px;
    line-height: 1;
  }
  .button01 a .btn .circle span.normal {
    font-size: 11px;
  }
  .button01 a .btn .circle span.big {
    font-size: 19px;
    letter-spacing: -2px;
  }
  /*==============================================
  .button01：ボタンの本文
  ===============================================*/
  .button01 a .btn .text {
    font-size: 22px;
    letter-spacing: -1px;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT10 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
@media screen and (max-width: 769px) {
  .point10 {
    padding: 15px 0 0px 0;
  }
  /*==============================================
    .point10 .inner
    ===============================================*/
  .point10 .inner {
    width: 100%;
    margin: 0 auto;
    padding: 60px 0 0px 0;
  }
  .point10 .inner h2 {
    font-size: 30px;
  }
  .point10 .inner .sentence {
    padding: 0 5% 30px 5%;
  }
  .point10 .inner .sentence p {
    font-size: 18px;
  }
  .point10 .inner .box-wrapper {
    display: block;
    font-size: 25px;
    font-weight: 700;
  }
  .point10 .inner .box-wrapper .box {
    width: 92%;
    margin: 0 auto 20px;
    padding: 30px 30px 30px 30px;
  }
  .point10 .inner .box-wrapper .box:nth-child(3n) {
    margin: 0 auto 20px;
  }
  .point10 .inner .box-wrapper .box img {
    width: 150px;
  }
  .point10 .inner .box-wrapper .box span.small {
    font-size: 16px;
    line-height: 1.0;
  }
  .point10 .inner .box-wrapper .box span.mark {
    padding: 5px 8px 5px 8px;
    font-size: 16px;
    position: relative;
    left: -2px;
    top: -3px;
  }
  .point10 .inner .box-wrapper img.arrow {
    width: 60px;
    display: block;
    margin: 0 auto 0;
    padding: 20px 0px 20px 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  /*==============================================
    .point10 .inner
    ===============================================*/
  .point10 .addtional {
    display: block;
  }
  .point10 .addtional .image {
    width: 250px;
    margin: 0 auto 0;
  }
  .point10 .addtional .image img {
    width: 100%;
    height: auto;
  }
  .point10 .addtional .sentence {
    padding: 0 0px 0 0px;
    width: 92%;
    margin: 0 auto 0;
  }
  .point10 .addtional .sentence h3 {
    font-size: 20px;
    text-align: center;
  }
  .point10 .addtional .sentence h3 div {
    display: inline-block;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#437fc4), to(#185793));
    background: linear-gradient(90deg, #437fc4 0%, #185793 100%);
    padding: 5px 20px 5px 20px;
    margin: 0 auto 10px;
  }
  .point10 .addtional .sentence p {
    font-size: 16px;
    line-height: 1.7;
    width: 92%;
    margin: 0 auto 0;
  }
}

/* 769px responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 .title02-01 〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
	====================================================================*/
  .title02-01 {
    padding: 30px 0 0 0;
  }
  .title02-01 h2 {
    font-size: 33px;
    padding: 10px 0 0 0;
  }
  .title02-01 h3 {
    font-size: 18px;
  }
  .title02-01 p.back {
    overflow: hidden;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 4.7rem;
    opacity: 0.3;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title02-02 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title02-02 {
    padding: 40px 0 30px 0;
  }
  .title02-02 h2 {
    font-size: 35px;
    padding: 15px 0 0 0;
  }
  .title02-02 h3 {
    font-size: 18px;
  }
  .title02-02 p.back {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -45%);
            transform: translate(-50%, -45%);
    font-size: 5.7rem;
    opacity: 0.2;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title02-03 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title02-03 h2 {
    font-size: 26px;
  }
  .title02-03 h3 {
    font-size: 58px;
    line-height: 1.2;
  }
  .title02-03 p.back {
    position: absolute;
    top: 40px;
    left: 50%;
    font-size: 4.7rem;
    opacity: 0.3;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 767px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .TABLE05　〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  ====================================================================*/
  .table05 {
    padding: 10px 0 0 0;
  }
  /*==============================================
  .table05 .table-wrapper
  ===============================================*/
  .table05 .table-wrapper {
    width: 92%;
    margin: 0 auto 0;
    padding: 20px 0 10px 0;
    display: block;
  }
  /*==============================================
  .table05 共通スタイル
  ===============================================*/
  .table05 table {
    width: 100%;
    margin: 0 0% 25px 0%;
  }
  .table05 table th {
    padding: 20px 25px 20px 15px;
  }
  /*==============================================
  .table05 .table01
  ===============================================*/
  .table05 .table01 {
    margin: 0px 0% 25px 0%;
  }
  /*==============================================
  .table05 .table01
  ===============================================*/
  .table05 .table02 {
    margin: 0 0% 0px 0%;
  }
  .table05 .table01 th:before,
  .table05 .table02 th:before,
  .table05 .table03 th:before {
    top: 98%;
  }
}

/* 767px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .TABLE06　〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  ====================================================================*/
  .table06 {
    padding: 10px 0 30px 0;
  }
  /*==============================================
  .table06 .table-wrapper
  ===============================================*/
  .table06 .table-wrapper {
    padding: 0px 0 20px 0%;
    display: block;
  }
  /*==============================================
  .table06 共通スタイル
  ===============================================*/
  .table06 table {
    width: 92%;
  }
  .table06 table th {
    padding: 20px 20px 20px 20px;
  }
  .table06 table th .case {
    font-size: 17px;
    width: 80%;
    margin: 0 auto 5px;
  }
  .table06 table th h3 {
    font-size: 28px;
  }
  .table06 table tr td {
    padding: 15px 25px 20px 25px;
  }
  .table06 table tr td.first {
    padding: 35px 25px 20px 25px;
  }
  .table06 table p {
    font-size: 17px;
    line-height: 1.75;
  }
  .table06 table p.semi {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    padding: 20px 0 0 0;
  }
  .table06 table p.small {
    font-size: 15px;
    padding: 5px 0 5px 0;
  }
  .table06 table p .big {
    font-size: 60px;
    padding: 0px 0 10px 0;
    font-weight: 700;
  }
  .table06 table p .middle {
    font-size: 30px;
    padding: 5px 0 5px 0;
    font-weight: 700;
  }
  .table06 table .catch {
    font-size: 24px;
    text-align: center;
    line-height: 1.25;
    font-weight: 700;
    padding: 5px 0 5px 0;
  }
  /*==============================================
  .table06 .table01
  ===============================================*/
  .table06 .table01 {
    margin: 30px auto 0%;
  }
  /*==============================================
  .table06 .table02
  ===============================================*/
  .table06 .table02 {
    margin: 30px auto 0%;
  }
  .table06 .table02 td .thumb {
    width: 200px;
    margin: 20px auto 0px;
  }
  .table06 .table02 td .thumb img {
    width: 100%;
    height: auto;
  }
  /*==============================================
  .table06 .table03
  ===============================================*/
  .table06 .table03 {
    margin: 30px auto 0%;
  }
  .table06 .table03 td .thumb {
    width: 100px;
    margin: 20px auto 0px;
  }
  .table06 .table03 td .thumb img {
    width: 100%;
    height: auto;
  }
}

/* 767px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title10-01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  .title10-01 .title-middle
  ===============================================*/
  .title10-01 .title-middle {
    padding: 20px 40px 30px 40px;
  }
  .title10-01 .title-middle h3 {
    text-align: center;
    color: #fff;
    padding: 10px 0 10px 0;
    font-size: 18px;
  }
  .title10-01 .title-middle h2 {
    font-size: 25px;
  }
  /*==============================================
  .title10-01 .thumb
  ===============================================*/
  .title10-01 .thumb01 {
    position: absolute;
    top: 4rem;
    left: -3.5rem;
    width: 15rem;
  }
  .title10-01 .thumb02 {
    position: absolute;
    bottom: -1.8rem;
    left: -1.45rem;
    width: 12.5rem;
  }
  .title10-01 .thumb03 {
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: 12rem;
  }
  .title10-01 .thumb04 {
    position: absolute;
    right: -2rem;
    bottom: 2.5rem;
    width: 12.5rem;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
  
  〇 #VOICE03 〇
  
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  ====================================================================*/
@media screen and (max-width: 769px) {
  #voice03 .box-wrapper {
    display: block;
    margin: 0px auto 0;
  }
  #voice03 .box-wrapper .box {
    width: 90%;
    padding: 10px 0 20px 0;
    margin: 60px auto 0;
  }
  #voice03 .box-wrapper .box:nth-child(2n) {
    margin: 60px auto 0;
  }
  #voice03 .box-wrapper .box .thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -45px auto 0;
  }
  #voice03 .box-wrapper .box .thumb .info .number {
    font-size: 12px;
  }
  #voice03 .box-wrapper .box .thumb .info .skew .middle {
    font-size: 15px;
    padding: 3px 8px 3px 8px;
  }
  #voice03 .box-wrapper .box .thumb .info h3 {
    font-size: 21px;
    line-height: 1.25;
  }
  #voice03 .box-wrapper .box .thumb .info .small {
    font-size: 16px;
  }
  #voice03 .box-wrapper .box .thumb img {
    width: 95px;
    border-radius: 95px;
    margin: 0 10px 0 0;
  }
  #voice03 .box-wrapper .box .sentence {
    padding: 10px 15px 10px 15px;
  }
  #voice03 .box-wrapper .box .sentence h4 {
    font-size: 18px;
    line-height: 1.2;
    padding: 10px 10px 12px 10px;
  }
  #voice03 .box-wrapper .box .sentence p {
    font-size: 15px;
    line-height: 1.7;
    padding: 10px 15px 10px 15px;
  }
  #voice03 .addtional {
    display: block;
    padding: 30px 0 0 0;
  }
  #voice03 .addtional p {
    color: #437fc4;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
  }
  #voice03 .addtional img {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 0;
    line-height: 0;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #FLOW02 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  #flow02 .step-wrapper
  ===============================================*/
  #flow02 .step-wrapper {
    padding: 30px 0 30px 0;
  }
  /*==============================================
  #flow02 .box
  ===============================================*/
  #flow02 .box {
    width: 93%;
    padding: 0 0 5px 0;
  }
  #flow02 .box .step .number {
    width: 35%;
    color: #fff;
    padding: 10px 3px 13px 3px;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #flow02 .box .step .detail {
    width: 65%;
    padding: 10px 10px 13px 10px;
    font-size: 18px;
  }
  #flow02 .box .text {
    display: block;
  }
  #flow02 .box .text .image {
    width: 100%;
    margin: 0 0 10px 0;
  }
  #flow02 .box .text .sentence {
    width: 100%;
  }
  #flow02 .box .text h3 {
    font-size: 22px;
  }
  #flow02 .box .text p {
    font-size: 15px;
    line-height: 1.65;
  }
  /*==============================================
  #flow02 .addtional
  ===============================================*/
  #flow02 .addtional {
    margin: 0px auto 0;
  }
  #flow02 .addtional .text {
    top: 0px;
    margin: 0px auto 20px;
  }
  #flow02 .addtional .text .semi {
    font-size: 21px;
    width: 150px;
    margin: 0 auto;
    padding: 2px 10px;
    border-radius: 30px;
    color: #fff;
    background: #437fc4;
    text-align: center;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5;
  }
  #flow02 .addtional .text .catch {
    font-size: 35px;
    padding: 2px 10px;
    line-height: 1.25;
    color: #437fc4;
    font-weight: 700;
    font-style: normal;
    text-align: center;
  }
  #flow02 .addtional img {
    width: 210px;
    height: auto;
    display: inline-block;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .FAQ01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
  /*==============================================
#faq01 .accordion
===============================================*/
  #faq01 .accordion {
    width: 92%;
  }
  /*==============================================
#faq01 .accordion .trigger
===============================================*/
  #faq01 .accordion .trigger {
    font-size: 17px;
    padding: 20px 30px 20px 20px;
  }
  #faq01 .accordion .trigger::after,
  #faq01 .accordion .trigger.active::after {
    right: 10px;
  }
  #faq01 .toggle_container {
    padding: 17px 20px 15px 20px;
  }
  #faq01 .toggle_container p {
    font-size: 15px;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .SECTION14 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
@media screen and (max-width: 769px) {
  /*==============================================
  .section15　variables(変数設定)
  ===============================================*/
  .section15 {
    padding: 0px 0 60px 0;
  }
  .section15 .thumb {
    width: 100%;
    height: 350px;
    background: url(../images/section15.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .section15 h4 {
    font-size: 25px;
    padding: 30px 20px 20px 20px;
    color: #437fc4;
  }
  .section15 .sentence {
    width: 92%;
    margin: 0 auto 0;
  }
  .section15 .sentence p {
    padding: 12px 0 12px 0;
    line-height: 1.75;
    font-size: 15px;
  }
  /* end .section15 */
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 768px～1023px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 320px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .CONTACT01　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
  /*===========================
.contact01 .sentence
===========================*/
  .contact01 .sentence {
    width: 92%;
  }
  .contact01 .sentence p {
    font-size: 16px;
  }
  /*===========================
.contact01 .btn
===========================*/
  .contact01 .btn {
    width: 92%;
    margin: 0 auto;
  }
  .contact01 .btn a {
    margin: 15px auto 15px;
    font-size: 19px;
  }
  .contact01 .btn a img {
    width: 32px;
  }
  .contact01 .pc-tel {
    font-size: 16px;
    width: 90%;
    margin: 0 auto 0;
    text-align: center;
    font-weight: 500;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/* -- responsive ----------------------------------------------------------------------------------------------------------------- */
/* 1000pixel start */
@media screen and (max-width: 1000px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 FORM #MAIL_FORM　〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
　====================================================================*/
  form#mail_form {
    width: 100%;
  }
  form#mail_form dl {
    overflow: visible;
  }
  form#mail_form dl dt {
    width: auto;
    float: none;
    text-align: left;
    padding: 10px 20px 10px;
    font-weight: bold;
  }
  form#mail_form dl dd {
    width: auto;
    float: none;
    border-top: none;
    padding: 10px 20px 13px;
  }
  form#mail_form dl dt span {
    font-weight: normal;
  }
  /*==============================================
	form#mail_form 「必須」「任意」
	===============================================*/
  form#mail_form dl dt span.required,
  form#mail_form dl dt span.optional {
    margin-right: 1em;
    margin-bottom: 1em;
  }
  /*==============================================
	form#mail_form input
	===============================================*/
  form#mail_form input[type="text"],
  form#mail_form input[type="email"],
  form#mail_form input[type="tel"] {
    margin-top: 0px;
  }
  form#mail_form input#form_submit_button {
    margin-left: 0;
  }
  form#mail_form select {
    margin-top: 0;
  }
  form#mail_form input#phone,
  form#mail_form input#schedule {
    width: 100%;
  }
}

/* 1000pixel closed */
@media screen and (max-width: 769px) {
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 #FORM-WRAPPER　〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
	====================================================================*/
  #form-wrapper h2 {
    font-size: 32px;
    line-height: 1.3;
    padding: 30px 0 30px 0;
  }
  #form-wrapper .privacy-section .privacy-button img.p-mark {
    position: relative;
    top: 15px;
    padding: 0 5px 0 0;
    width: 50px;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/* -- responsive ------------------------------------------- */
/* 1000pixel start */
@media screen and (max-width: 1000px) {
  div#thanks .inner {
    width: 95%;
    margin: 40px auto 40px;
  }
}

/* 1000pixel end */
/*# sourceMappingURL=style.css.map */