@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 */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .LOADING01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.loading01
===============================================*/
.loading01 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 一番最初に見える全体の色 */
  background: -webkit-gradient(linear, left top, right top, from(#00bcd4), to(#0097a7));
  background: linear-gradient(90deg, #00bcd4 0%, #0097a7 100%);
  z-index: 99999999;
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}

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

.loading01::before {
  /* 最初の背景に対して横切ってくる1px線から広がる色を指定 */
  background-color: #c0c0c0;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen1 2.6s forwards;
          animation: shutterOpen1 2.6s forwards;
}

.loading01::after {
  width: 120%;
  height: 0;
  margin-left: -10%;
  /* 最後に出てくる色の指定 */
  background-color: #f3f3f3;
  -webkit-animation: shutterOpen2 2.6s forwards;
          animation: shutterOpen2 2.6s forwards;
}

.content {
  -webkit-animation: contentScale 2.6s forwards;
          animation: contentScale 2.6s forwards;
}

@-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;
  }
}

@-webkit-keyframes shutterOpen1 {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes shutterOpen1 {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@-webkit-keyframes shutterOpen2 {
  60% {
    width: 120%;
    height: 0;
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@keyframes shutterOpen2 {
  60% {
    width: 120%;
    height: 0;
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@-webkit-keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
            transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}

@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
            transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #gnav04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#gnav04 {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
}

#gnav04 .wrapper {
  padding: 20px 10% 0px 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;
}

/*==============================================
#gnav04 .wrapper h1
===============================================*/
#gnav04 .wrapper h1 {
  font-size: 22px;
  color: #570300;
}

#gnav04 .wrapper h1 span {
  color: #00bcd4;
}

#gnav04 .wrapper h1 img.logo {
  width: 290px;
  height: auto;
}

/*==============================================
#gnav04 .wrapper .button
===============================================*/
#gnav04 .wrapper .button {
  width: 300px;
}

#gnav04 .wrapper .button a {
  font-size: 20px;
  color: #fff;
  border: solid 2px #fff;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px 15px 20px;
}

#gnav04 .wrapper .button a img {
  width: 25px;
  height: auto;
  padding: 0 3px 0 0;
}

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 #HEADER18 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
/*==============================================
#header18 variables(変数設定)
===============================================*/
#header18 {
  width: 100%;
  overflow: hidden;
  background: url(../images/header18-bg.jpg) no-repeat center center;
  background-size: cover;
  /*==============================================
  #header18 .wrapper
  ===============================================*/
  /*==============================================
  #header18 .inner
  ===============================================*/
  /*==============================================
  #header18 .text
  ===============================================*/
  /*==============================================
  #header18　.hero
  ===============================================*/
  /*==============================================
  #header18　.swiper 画像設定
  ===============================================*/
  /* #header18 .swiper-slide closed */
  /*==============================================
  #header18 ボーダーアニメーション
  ===============================================*/
  /*==============================================
  #header18 .img-mask .top 
  ===============================================*/
  /* #header18 .img-mask .top closed */
  /*==============================================
  #header18 .img-mask .bottom
  ===============================================*/
  /* #header18 .img-mask .bottom closed */
  /*==============================================
  #header18 .img-mask .left
  ===============================================*/
  /* #header18 .img-mask .left closed */
  /*==============================================
  #header18 .img-mask .right
  ===============================================*/
  /* #header18 .img-mask .right closed */
}

#header18 .wrapper {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 188, 212, 0.9)), to(rgba(0, 151, 167, 0.9)));
  background: linear-gradient(90deg, rgba(0, 188, 212, 0.9) 0%, rgba(0, 151, 167, 0.9) 100%);
  padding: 145px 0 95px 0;
  position: relative;
}

#header18 .inner {
  max-width: 1280px;
  padding: 0 5% 0 5%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#header18 .inner .text {
  width: 100%;
}

#header18 h2 {
  text-align: center;
  color: #fff;
  padding: 25px 0 0 0;
  font-size: 55px;
}

#header18 h3 {
  text-align: center;
  color: #fff;
  padding: 20px 0 0 0;
  font-size: 18px;
}

#header18 h3 span {
  color: #570300;
}

#header18 .hero {
  width: 500px;
}

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

#header18 .swiper-slide .img-mask {
  width: 460px;
  height: 300px;
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 0;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  position: relative;
  z-index: 2;
}

#header18 .swiper-slide .img-mask img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: auto;
  -webkit-transform: translate(-50%, -50%) skew(20deg);
          transform: translate(-50%, -50%) skew(20deg);
  z-index: 2;
}

#header18 .en-tate {
  position: absolute;
  left: 10px;
  top: 20px;
  font-size: 14px;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  z-index: 3;
}

#header18 .img-mask .top,
#header18 .img-mask .bottom,
#header18 .img-mask .left,
#header18 .img-mask .right {
  position: absolute;
  background: #0097a7;
  -webkit-animation: 8s linear infinite;
          animation: 8s linear infinite;
  z-index: 20;
}

#header18 .img-mask .top {
  top: 5px;
  left: 5px;
  height: 5px;
  -webkit-animation-name: top;
          animation-name: top;
}

@-webkit-keyframes top {
  25% {
    width: 0;
    background: #00bcd4;
  }
  38% {
    width: calc(100%);
    background: #caeefb;
  }
  50% {
    background: #0097a7;
  }
  62% {
    background: #8ad5dd;
  }
  75% {
    width: calc(100%);
    background: #00bcd4;
  }
  88% {
    left: auto;
    right: 5px;
    width: 0;
    background: #caeefb;
  }
}

@keyframes top {
  25% {
    width: 0;
    background: #00bcd4;
  }
  38% {
    width: calc(100%);
    background: #caeefb;
  }
  50% {
    background: #0097a7;
  }
  62% {
    background: #8ad5dd;
  }
  75% {
    width: calc(100%);
    background: #00bcd4;
  }
  88% {
    left: auto;
    right: 5px;
    width: 0;
    background: #caeefb;
  }
}

#header18 .img-mask .bottom {
  bottom: 5px;
  right: 5px;
  height: 5px;
  -webkit-animation-name: bottom;
          animation-name: bottom;
}

@-webkit-keyframes bottom {
  0% {
    width: 0;
  }
  12% {
    width: calc(100%);
    background: #8ad5dd;
  }
  25% {
    background: #00bcd4;
  }
  38% {
    background: #caeefb;
  }
  50% {
    width: calc(100%);
    background: #0097a7;
  }
  62% {
    left: 5px;
    width: 0;
    background: #8ad5dd;
  }
  75% {
    background: #00bcd4;
  }
}

@keyframes bottom {
  0% {
    width: 0;
  }
  12% {
    width: calc(100%);
    background: #8ad5dd;
  }
  25% {
    background: #00bcd4;
  }
  38% {
    background: #caeefb;
  }
  50% {
    width: calc(100%);
    background: #0097a7;
  }
  62% {
    left: 5px;
    width: 0;
    background: #8ad5dd;
  }
  75% {
    background: #00bcd4;
  }
}

#header18 .img-mask .left {
  bottom: 5px;
  left: 5px;
  width: 5px;
  -webkit-animation-name: left;
          animation-name: left;
}

@-webkit-keyframes left {
  12% {
    height: 0;
    background: #8ad5dd;
  }
  25% {
    height: calc(100%);
    background: #00bcd4;
  }
  38% {
    background: #caeefb;
  }
  50% {
    background: #0097a7;
  }
  62% {
    height: calc(100%);
    background: #8ad5dd;
  }
  75% {
    top: 5px;
    height: 0;
    background: #00bcd4;
  }
  88% {
    background: #caeefb;
  }
}

@keyframes left {
  12% {
    height: 0;
    background: #8ad5dd;
  }
  25% {
    height: calc(100%);
    background: #00bcd4;
  }
  38% {
    background: #caeefb;
  }
  50% {
    background: #0097a7;
  }
  62% {
    height: calc(100%);
    background: #8ad5dd;
  }
  75% {
    top: 5px;
    height: 0;
    background: #00bcd4;
  }
  88% {
    background: #caeefb;
  }
}

#header18 .img-mask .right {
  top: 5px;
  right: 5px;
  width: 5px;
  -webkit-animation-name: right;
          animation-name: right;
}

@-webkit-keyframes right {
  38% {
    height: 0;
    background: #caeefb;
  }
  50% {
    height: calc(100%);
    background: #0097a7;
  }
  62% {
    background: #8ad5dd;
  }
  75% {
    background: #00bcd4;
  }
  88% {
    height: calc(100%);
    background: #caeefb;
  }
  100% {
    top: auto;
    bottom: 5px;
    height: 0;
    background: #0097a7;
  }
}

@keyframes right {
  38% {
    height: 0;
    background: #caeefb;
  }
  50% {
    height: calc(100%);
    background: #0097a7;
  }
  62% {
    background: #8ad5dd;
  }
  75% {
    background: #00bcd4;
  }
  88% {
    height: calc(100%);
    background: #caeefb;
  }
  100% {
    top: auto;
    bottom: 5px;
    height: 0;
    background: #0097a7;
  }
}

/* #header18 closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #headerto04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
#headerto04 .variables(変数設定)
===============================================*/
#headerto04 .wrapper {
  padding: 0 0 35px 0;
}

/*==============================================
#headerto04 .box-wrapper
===============================================*/
#headerto04 .box-wrapper {
  margin: -50px auto 20px;
  max-width: 1280px;
  position: relative;
  height: 160px;
}

#headerto04 .box-wrapper .box {
  margin: 0 auto 0;
  padding: 0 3% 0  3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*==============================================
#headerto04 .box .icon
===============================================*/
#headerto04 .box-wrapper .box .icon {
  width: 160px;
  height: 160px;
  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;
  /* 子要素をflexboxにより中央に配置する */
  text-align: center;
  background-color: #b2ebf2;
  border: solid 3px #00acc1;
  border-radius: 160px;
  -webkit-box-shadow: inset 0 0 0 4px #fff;
          box-shadow: inset 0 0 0 4px #fff;
  color: #33677e;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0 15px 0 0;
}

/*==============================================
#headerto04 .icon 背景画像
===============================================*/
#headerto04 .box-wrapper .box .icon:nth-child(1) {
  background-image: url(../images/headerto04-icon01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120px 120px;
}

#headerto04 .box-wrapper .box .icon:nth-child(2) {
  background-image: url(../images/headerto04-icon02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120px 120px;
}

#headerto04 .box-wrapper .box .icon:nth-child(3) {
  background-image: url(../images/headerto04-icon03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120px 120px;
}

#headerto04 .box-wrapper .box .icon:nth-child(4) {
  background-image: url(../images/headerto04-icon04.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120px 120px;
}

/*==============================================
#headerto04 .sentence 
===============================================*/
#headerto04 .sentence {
  width: 800px;
  margin: 0 auto 0;
  padding: 0px 0 20px 0;
}

#headerto04 .sentence p.explain {
  font-size: 24px;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  line-height: 2.0;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title01-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.title01-01 背景色
===============================================*/
.title01-01 {
  background: #00bcd4;
  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: #4dd0e1;
  /* 線色 */
  border-radius: 5px;
  /* 線幅の半分 */
  content: "";
  display: block;
  height: 3px;
  /* 線幅 */
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title01-02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.title01-02 背景色
===============================================*/
.title01-02 {
  background: #00bcd4;
  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(#00bcd4), to(#0097a7));
  background: linear-gradient(90deg, #00bcd4 0%, #0097a7 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: #00bcd4;
  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;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .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: #00bcd4;
}

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

.title02-01 p.en {
  color: #00bcd4;
  margin: 20px 0 auto  0;
  display: inline-block;
  border: solid 2px #00bcd4;
  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: 40px;
  left: 50%;
  font-weight: 700;
  -webkit-transform: skewX(-15deg) translateX(-50%);
          transform: skewX(-15deg) translateX(-50%);
  font-size: 7.7rem;
  color: #4dd0e1;
  opacity: 0.2;
  white-space: nowrap;
  display: inline-block;
  z-index: 1;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .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: #00bcd4;
  line-height: 1.3;
}

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

.title02-02 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: #4dd0e1;
  opacity: 0.2;
  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: #00bcd4;
  line-height: 1.5;
}

.title02-03 h3 {
  font-weight: 900;
  font-size: 78px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  color: #00bcd4;
  text-align: center;
  padding: 0px 0px 0px 25px;
  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: #4dd0e1;
  opacity: 0.2;
  white-space: nowrap;
  display: inline-block;
  z-index: 1;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title03-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title03-01 {
  position: relative;
  padding: 60px 0 0 0;
}

/*==============================================
.title03-01 h2
===============================================*/
.title03-01 h2 {
  border-top: solid 1px #4dd0e1;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.title03-01 h2 .wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #fff;
  padding: 10px 30px 10px 30px;
}

.title03-01 h2 .semi {
  font-weight: 700;
  font-style: italic;
  color: #00bcd4;
  font-size: 58px;
  line-height: 1.5;
}

.title03-01 h2 .catch {
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: #00bcd4;
  line-height: 1.4;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title03-02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title03-02 {
  position: relative;
  padding: 60px 0 0 0;
}

/*==============================================
.title03-02 h2
===============================================*/
.title03-02 h2 {
  border-top: solid 1px #4dd0e1;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.title03-02 h2 .wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #fff;
  padding: 10px 30px 10px 30px;
}

.title03-02 h2 .catch {
  font-weight: 700;
  font-style: italic;
  font-size: 23px;
  color: #00bcd4;
  line-height: 1.3;
  display: inline-block;
  border: solid 2px #00bcd4;
  padding: 4px 30px 6px 30px;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}

.title03-02 h2 .catch span {
  display: block;
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
}

.title03-02 h2 .semi {
  font-weight: 700;
  font-style: italic;
  color: #00bcd4;
  font-size: 58px;
  line-height: 1.35;
  display: block;
}

.title03-02 h2 .explain {
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: #00bcd4;
  line-height: 1.4;
  display: block;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title03-03 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title03-03 {
  position: relative;
  padding: 80px 0 0 0;
}

/*==============================================
.title03-03 h2
===============================================*/
.title03-03 h2 {
  border-top: solid 1px #4dd0e1;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.title03-03 h2 .wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 0px 30px 10px 30px;
}

.title03-03 h2 .catch {
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: #fff;
  background: #00bcd4;
  line-height: 1.3;
  display: inline-block;
  padding: 4px 30px 6px 30px;
  border-radius: 40px;
  margin: 0 auto 10px;
}

.title03-03 h2 .semi {
  font-weight: 700;
  font-style: italic;
  color: #00bcd4;
  font-size: 38px;
  line-height: 1.35;
  display: block;
}

.title03-03 h2 .explain {
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: #00bcd4;
  line-height: 1.4;
  display: block;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title04-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title04-01 h2 {
  width: 100%;
  height: 300px;
  padding: 50px 0 20px 0;
  background: #00bcd4;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}

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

.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;
}

/*==============================================
.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;
}

.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: #00bcd4;
  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: #4dd0e1;
}

.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;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title05-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.title05-01 variables(変数設定)
===============================================*/
/*==============================================
.title05-01
===============================================*/
.title05-01 {
  position: relative;
  padding: 0px 0 25px 0;
  margin: 90px auto 40px;
  z-index: 1;
  text-align: center;
}

.title05-01:before {
  content: "";
  width: 40px;
  background-color: #00bcd4;
  margin-left: -20px;
  height: 4px;
  position: absolute;
  bottom: 0px;
  left: 50%;
}

.title05-01:after {
  content: "";
  height: 4px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 20px;
  background-color: #16254B;
  margin-left: -20px;
}

.title05-01 .border {
  width: 2px;
  height: 150%;
  position: absolute;
  right: 50%;
  bottom: 0px;
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
  background-color: #16254B;
  z-index: -1;
  margin-left: -5px;
}

.title05-01 h2 {
  background-color: #f8f8f8;
  padding: 8px 12px;
  font-size: 32px;
}

.title05-01 h2 span {
  color: #00bcd4;
}

.title05-01 .en {
  background-color: #f8f8f8;
  display: inline-block;
  padding: 3px 0 0 0;
  font-weight: 900;
  font-size: 22px;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .SECTION01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
.section01 .inner
===============================================*/
.section01 .inner {
  width: 1100px;
  margin: 0 auto;
  padding: 40px 0 0 0;
}

.section01 .inner:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.section01 .inner img.thumb {
  width: 440px;
  height: auto;
  display: block;
  margin: 30px auto 20px;
  float: left;
}

.section01 .inner .sentence {
  width: 600px;
  float: left;
  margin: 0 0 0 60px;
  padding: 180px 0 10px 0px;
}

.section01 .inner .sentence p {
  font-size: 16px;
  line-height: 2.0;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #TARGETING04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#target04 {
  padding: 90px 0 70px 0;
}

/*==============================================
#target04 h2
===============================================*/
#target04 h2 {
  border-top: solid 1px #00bcd4;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#target04 h2 .inner {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #fff;
  padding: 10px 30px 10px 30px;
}

#target04 h2 .inner .semi {
  font-family: objektiv-mk1, sans-serif;
  font-weight: 800;
  color: #231815;
  font-size: 58px;
  line-height: 1.25;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  overflow: hidden;
}

#target04 h2 .inner .semi span {
  color: #00bcd4;
}

#target04 h2 .inner .catch {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: #231815;
  line-height: 1.4;
}

/*==============================================
#target04 .box
===============================================*/
#target04 .box {
  width: 900px;
  margin: 90px auto 0;
}

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

#target04 .box .text .semi {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 800;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  font-style: normal;
  color: #00bcd4;
  font-size: 28px;
  line-height: 1.5;
}

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

#target04 .box .text .catch {
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  color: #231815;
  line-height: 1.4;
  letter-spacing: -2px;
}

/*==============================================
#target04 ul.checklist
===============================================*/
#target04 ul.checklist {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 10% 20px 10%;
}

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

#target04 ul.checklist li {
  width: 100%;
  margin: 0 0% 20px 0px;
  padding: 25px 25px 25px 75px;
  background: #f9f9f9 url(../images/target04-icon-check.png) no-repeat 35px center;
  background-size: 30px auto;
  font-size: 22px;
  font-weight: 700;
  border: solid 2px #000;
}

#target04 ul.checklist li span {
  color: #00bcd4;
}

/*==============================================
#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;
}

#target04 .explain img {
  width: 400px;
  height: auto;
  padding: 0 30px 0 0;
}

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

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #TARGETING06 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
#target06 variables(変数設定)
===============================================*/
#target06 {
  background: url(../images/target06-bg.jpg) no-repeat center center;
  background-size: cover;
}

#target06 .wrapper {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 40px 0 50px 0;
}

/*==============================================
#target06 ul.checklist
===============================================*/
#target06 ul {
  max-width: 1000px;
  margin: 0 auto 0;
}

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

#target06 ul li {
  float: left;
  width: 47.5%;
  margin: 30px 5% 0 0;
  color: #b2ebf2;
  border: solid 2px #00bcd4;
  padding: 20px 35px 20px 35px;
  text-shadow: 0 0px 5px rgba(48, 43, 177, 0.5);
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#00bcd4), to(#0097a7));
  background: linear-gradient(90deg, #00bcd4 0%, #0097a7 100%);
  -webkit-box-shadow: inset 0 0 0 3px #b2ebf2;
          box-shadow: inset 0 0 0 3px #b2ebf2;
  min-height: 120px;
  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;
  /* 子要素をflexboxにより中央に配置する */
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  text-align: left;
}

#target06 ul li:nth-child(2n) {
  margin: 30px 0 0 0;
}

#target06 ul li img {
  width: 80px;
  height: auto;
  padding: 0 20px 0 0;
}

/*==============================================
#target06 .additional
===============================================*/
#target06 .addtional {
  font-size: 40px;
  font-weight: 700;
  padding: 70px 0 30px 0;
  line-height: 1.5;
  text-align: center;
  color: #00bcd4;
}

/*==============================================
#target06 .box
===============================================*/
#target06 .box {
  width: 900px;
  margin: 50px auto 0;
}

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

#target06 .box p.text .semi {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normals;
  color: #00bcd4;
  font-size: 22px;
  line-height: 1.5;
  padding: 5px 20px 5px 20px;
  border: solid 2px #00bcd4;
  border-radius: 40px;
}

#target06 .box p.text .catch {
  font-weight: 700;
  font-style: normal;
  font-size: 45px;
  display: block;
  padding: 10px 0 0 0;
  color: #00bcd4;
  line-height: 1.4;
  letter-spacing: -2px;
}

#target06 .box img {
  display: inline-block;
  width: 480px;
  height: auto;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 25px 25px 0px 5px #b2ebf2;
          box-shadow: 25px 25px 0px 5px #b2ebf2;
}

/*==============================================
#target06 .sentence p
===============================================*/
#target06 .sentence p {
  font-size: 22px;
  font-weight: 700;
  padding: 20px 0 20px 0;
  line-height: 1.5;
  text-align: center;
  color: #00bcd4;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 POINT01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
#point01 {
  padding: 0 0 40px 0;
}

/*============================================
#point01 .box-wrapper
=============================================*/
#point01 .box-wrapper {
  width: 1100px;
  padding: 30px 0 0px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

/*============================================
#point01 .box
=============================================*/
#point01 .box-wrapper .box {
  border: solid 2px #00bcd4;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 31%;
  margin: 60px 3.5% 0 0;
}

#point01 .box-wrapper .box:nth-child(3n) {
  margin: 60px 0px 0 0;
}

/*============================================
#point01 h3
=============================================*/
#point01 .box h3 {
  background: #00bcd4;
  width: 280px;
  padding: 8px 10px 10px;
  margin: -25px auto 10px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  display: block;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}

#point01 .box h3 span.text {
  font-size: 27px;
  letter-spacing: -1px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
  font-weight: 700;
  font-style: normal;
  display: inline-block;
}

#point01 .box h3 span.mark {
  color: #00bcd4;
  margin-right: 5px;
  position: relative;
  top: -3px;
  width: 30px;
  line-height: 30px;
  height: 30px;
  font-size: 16px;
  letter-spacing: -1px;
  -webkit-transform: skew(15deg);
          transform: skew(15deg);
  display: inline-block;
  font-weight: 900;
  font-style: italic;
  font-style: normal;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}

/*============================================
#point01 .thumb
=============================================*/
#point01 .box-wrapper .box .thumb {
  position: relative;
  padding: 0 0 20px 0;
}

#point01 .box-wrapper .box .thumb img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#point01 .box-wrapper .box .thumb .en {
  font-size: 40px;
  color: #00bcd4;
  opacity: 0.8;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  position: absolute;
  bottom: -0px;
  right: 20px;
  z-index: 2;
  font-weight: 900;
}

/*============================================
#point01 .sentence
=============================================*/
#point01 .box .sentence h4 {
  font-size: 26px;
  background: #00bcd4;
  color: #fff;
  line-height: 1.35;
  padding: 15px 25px 15px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

#point01 .box .sentence p {
  font-size: 15px;
  color: #00bcd4;
  line-height: 1.85;
  padding: 10px 25px 20px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT03 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
#point03 {
  width: 100%;
  background: url(../images/point03-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: -3;
}

/*============================================
#point03 .wrapper
=============================================*/
#point03 .wrapper {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px 0 50px;
  position: relative;
  z-index: -2;
}

/*============================================
#point03 .box-wrapper
=============================================*/
#point03 .box-wrapper {
  max-width: 1000px;
  margin: 0 auto 0px;
}

/*============================================
#point03 .box
=============================================*/
#point03 .box-wrapper .box {
  border-left: solid 5px #00bcd4;
  border-top: solid 2px #00bcd4;
  border-right: solid 2px #00bcd4;
  border-bottom: solid 2px #00bcd4;
  margin: 0 0 30px 0;
}

/*============================================
#point03 .box .catch
=============================================*/
#point03 .box-wrapper .box .catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  /* 子要素をflexboxにより中央に配置する */
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

#point03 .box-wrapper .box .catch .number {
  border-bottom: solid 2px #00bcd4;
  border-right: solid 2px #00bcd4;
  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;
  /* 子要素をflexboxにより中央に配置する */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  background: #00bcd4;
  color: #fff;
  padding: 20px 30px 20px 30px;
  width: 15%;
}

#point03 .box-wrapper .box .catch .number .small {
  display: block;
  line-height: 1.0;
  font-size: 19px;
  font-weight: 700;
}

#point03 .box-wrapper .box .catch .number .big {
  display: block;
  line-height: 1.0;
  font-size: 40px;
  font-weight: 700;
}

#point03 .box-wrapper .box .catch h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 子要素をflexboxにより中央に配置する */
  text-align: center;
  color: #00bcd4;
  font-size: 40px;
  padding: 20px 30px 20px 30px;
  border-bottom: solid 2px #00bcd4;
  width: 85%;
}

/*============================================
#point03 .box .thumb
=============================================*/
#point03 .box-wrapper .box .thumb {
  position: relative;
  line-height: 0;
}

#point03 .box-wrapper .box .thumb img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
}

#point03 .box-wrapper .box .thumb .text-line {
  position: absolute;
  bottom: 60px;
  right: 30px;
  z-index: 2;
}

#point03 .box-wrapper .box .thumb .text-line .en {
  font-size: 22px;
  display: inline-block;
  color: #00bcd4;
  font-weight: 900;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  opacity: 0.8;
}

#point03 .box-wrapper .box .thumb .text-line p {
  background: #00bcd4;
  display: inline-block;
  margin: 15px 0 15px 0;
  padding: 4px 20px 4px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.35;
}

/*============================================
#point03 .box .sentence
=============================================*/
#point03 .box-wrapper .box .sentence {
  padding: 25px 30px 25px 30px;
  border-top: solid 2px #00bcd4;
}

#point03 .box-wrapper .box .sentence p {
  font-size: 19px;
  line-height: 2.0;
  padding: 8px 0 8px 0;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT05 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*============================================
#point05 vatiables(変数設定)
=============================================*/
#point05 {
  margin: 0px 0 0 0;
  padding: 0 0 30px 0;
}

/*============================================
#point05 .box-wrapper
=============================================*/
#point05 .box-wrapper {
  width: 1050px;
  margin: 40px 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;
  /* 子要素をflexboxにより中央に配置する */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*============================================
#point05 allbox
=============================================*/
#point05 .box-wrapper .box {
  width: 320px;
  margin: 50px 30px 10px 0;
}

#point05 .box-wrapper .box:nth-child(3) {
  margin: 50px 0px 10px 0;
}

#point05 .box-wrapper .box .img {
  position: relative;
}

#point05 .box-wrapper .box .mark {
  position: absolute;
  bottom: -5px;
  right: 10px;
  font-family: objektiv-mk1, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 45px;
  letter-spacing: -1px;
}

#point05 .box-wrapper .box h3 {
  width: 70%;
  margin: -10px auto 30px;
  color: #fff;
  text-align: center;
  padding: 2px 0 6px;
  line-height: 1.2;
  border: solid 2px #fff;
  font-size: 20px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

#point05 .box-wrapper .box .img img {
  display: block;
  width: 85%;
  height: auto;
  margin: 0 auto;
}

#point05 .box-wrapper .box ul {
  padding: 20px 7.5% 30px;
}

#point05 .box-wrapper .box ul li {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  list-style-type: none;
  color: #231815;
  line-height: 1.7;
  font-size: 16px;
  padding: 2px 15px;
}

/*============================================
#point05 .box01
=============================================*/
#point05 .box-wrapper .box01 {
  border: solid 2px #00bcd4;
  -webkit-box-shadow: 6px 6px 0px 0px #00bcd4;
          box-shadow: 6px 6px 0px 0px #00bcd4;
}

#point05 .box-wrapper .box01 .mark {
  color: #00bcd4;
}

#point05 .box-wrapper .box01 h3 {
  background: #00bcd4;
  -webkit-box-shadow: 0px 0px 0px 2px #00bcd4;
          box-shadow: 0px 0px 0px 2px #00bcd4;
}

/* box01 closed */
/*============================================
#point05 .box02
=============================================*/
#point05 .box-wrapper .box02 {
  border: solid 2px #00bcd4;
  -webkit-box-shadow: 6px 6px 0px 0px #00bcd4;
          box-shadow: 6px 6px 0px 0px #00bcd4;
}

#point05 .box-wrapper .box02 .mark {
  color: #00bcd4;
}

#point05 .box-wrapper .box02 h3 {
  background: #00bcd4;
  -webkit-box-shadow: 0px 0px 0px 2px #00bcd4;
          box-shadow: 0px 0px 0px 2px #00bcd4;
}

/* box02 closed */
/*============================================
#point05 .box03
=============================================*/
#point05 .box-wrapper .box03 {
  border: solid 2px #00bcd4;
  -webkit-box-shadow: 6px 6px 0px 0px #00bcd4;
          box-shadow: 6px 6px 0px 0px #00bcd4;
}

#point05 .box-wrapper .box03 .mark {
  color: #00bcd4;
}

#point05 .box-wrapper .box03 h3 {
  background: #00bcd4;
  -webkit-box-shadow: 0px 0px 0px 2px #00bcd4;
          box-shadow: 0px 0px 0px 2px #00bcd4;
}

/* box03 closed */
/*============================================
#point05 .box04
=============================================*/
#point05 .box-wrapper .box04 {
  border: solid 2px #3cb347;
  -webkit-box-shadow: 6px 6px 0px 0px #3cb347;
          box-shadow: 6px 6px 0px 0px #3cb347;
}

#point05 .box-wrapper .box04 .mark {
  color: #3cb347;
}

#point05 .box-wrapper .box04 h3 {
  background: #3cb347;
  -webkit-box-shadow: 0px 0px 0px 2px #3cb347;
          box-shadow: 0px 0px 0px 2px #3cb347;
}

/* box04 closed */
/*============================================
#point05 .box05
=============================================*/
#point05 .box-wrapper .box05 {
  border: solid 2px #0981b9;
  -webkit-box-shadow: 6px 6px 0px 0px #0981b9;
          box-shadow: 6px 6px 0px 0px #0981b9;
}

#point05 .box-wrapper .box05 .mark {
  color: #0981b9;
}

#point05 .box-wrapper .box05 h3 {
  background: #0981b9;
  -webkit-box-shadow: 0px 0px 0px 2px #0981b9;
          box-shadow: 0px 0px 0px 2px #0981b9;
}

/* box05 closed */
/*============================================
#point05 .explain
=============================================*/
#point05 .explain {
  width: 92%;
  margin: 20px auto 0px;
  text-align: center;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  color: #343434;
  line-height: 1.85;
  padding: 10px 0 10px;
  letter-spacing: 1px;
}

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 #CONSLIDER02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
/*==============================================
#conslider02 .slick-listの設定
===============================================*/
#conslider02 .conslider-block .slick-list {
  padding: 50px 0 50px 0 !important;
}

/*==============================================
#conslider02  .wrapper
===============================================*/
#conslider02 .wrapper {
  width: 100%;
  padding: 50px 0 50px;
  position: relative;
  background: url(../images/conslider02-bg.jpg) no-repeat center center;
  background-size: cover;
}

#conslider02 .wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

/*==============================================
#conslider02 .conslider-block
===============================================*/
#conslider02 .conslider-block {
  max-width: 1280px;
  margin: 0px auto;
  padding: 0px 0 0px 0;
}

/*==============================================
#conslider02 .conslider-block li
===============================================*/
#conslider02 .conslider-block li {
  margin: 0 20px 0 20px;
  background: #fff;
  padding: 0 0 0px 0;
  -webkit-box-shadow: 8px 8px 0px 0px #00bcd4;
          box-shadow: 8px 8px 0px 0px #00bcd4;
  min-height: 360px;
}

#conslider02 .conslider-block li .number {
  color: #fff;
  background: #00bcd4;
  -webkit-box-shadow: 0px 0px 0px 2px #00bcd4;
          box-shadow: 0px 0px 0px 2px #00bcd4;
  width: 87%;
  margin: -10px auto 30px;
  color: #fff;
  text-align: center;
  padding: 7px 10px 11px;
  line-height: 1.2;
  border: solid 2px #fff;
  font-size: 20px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}

#conslider02 .conslider-block li .person {
  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;
  /* 子要素をflexboxにより中央に配置する */
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0 20px 0 20px;
}

#conslider02 .conslider-block li .person img {
  width: 150px;
  height: auto;
  padding-right: 15px;
}

#conslider02 .conslider-block li .person .text h4 {
  font-weight: 700;
  color: #00bcd4;
  font-size: 16px;
  text-align: center;
}

#conslider02 .conslider-block li .person .text h4 span.title {
  border: solid 2px #00bcd4;
  padding: 2px 10px 4px 10px;
  font-size: 13px;
  border-radius: 50px;
  width: 100px;
  display: block;
  margin: 7px auto 0px;
}

#conslider02 .conslider-block li .person .text h4 span.big {
  padding: 0 0 0 0;
  font-size: 27px;
}

#conslider02 .conslider-block li .person .text h3 {
  font-size: 23px;
  letter-spacing: 0px;
  font-weight: 700;
  color: #00bcd4;
  line-height: 1.3;
  padding: 0px 0 3px;
  text-align: center;
}

#conslider02 .conslider-block li .person .text .age {
  color: #006064;
  font-size: 15px;
  text-align: center;
}

#conslider02 .conslider-block li p.explain {
  padding: 20px 20px 25px !important;
  font-size: 15px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000;
}

/*==============================================
#conslider02 .conslider-block .slick-next
===============================================*/
#conslider02 .slick-next.slick-arrow,
#conslider02 .slick-prev.slick-arrow {
  background: #00bcd4 !important;
  opacity: 1 !important;
  width: 45px;
  height: 45px;
  z-index: 100;
}

#conslider02 .slick-prev.slick-arrow {
  left: 0px !important;
}

#conslider02 .slick-next.slick-arrow {
  right: 0 !important;
}

#conslider02 .slick-prev.slick-arrow:hover,
#conslider02 .slick-next.slick-arrow:hover {
  background: #006064;
  opacity: 1 !important;
}

#conslider02 .slick-prev::before,
#conslider02 .slick-next::before {
  content: "" !important;
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
  pointer-events: none;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 200;
}

#conslider02 .slick-prev:before {
  right: 15px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

#conslider02 .slick-next:before {
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*==============================================
 #conslider02 .conslider-block .slick-dots
===============================================*/
#conslider02 .conslider-block .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 5px 0 5px;
}

#conslider02 .conslider-block .slick-dots li button:before {
  font-size: 20px;
  line-height: 20px;
  width: 0px;
  height: 20px;
}

#conslider02 .conslider-block .slick-dots li button {
  width: 20px;
  height: 20px;
}

#conslider02 .conslider-block .slick-dots li.slick-active button:before {
  opacity: 0.75;
}

/*==============================================
 #conslider02 .conslider-block .additional
===============================================*/
#conslider02 .additional {
  padding: 20px 0 20px;
  text-align: center;
  color: #00bcd4;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  z-index: 20;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

/*==============================================
#conslider02 .additional.fuchi
===============================================*/
/* fuchiの色設定 */
#conslider02 .additional.fuchi {
  text-shadow: var(--fuchi-color) 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 #CONSLIDER03 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
/*==============================================
#conslider03 .slick-listの設定
===============================================*/
#conslider03 .slick-list {
  padding: 60px 0 60px 0;
}

/*==============================================
#conslider03  .wrapper
===============================================*/
#conslider03 .wrapper {
  width: 100%;
  padding: 50px 0 50px;
  position: relative;
  background-size: cover;
}

#conslider03 .wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #e1f5fe;
  position: absolute;
  top: 0;
  left: 0;
}

/*==============================================
#conslider03 .conslider-block
===============================================*/
#conslider03 .conslider-block {
  margin: 0px auto;
  padding: 0px 0 0px 0;
}

/*==============================================
#conslider03 .conslider-block li
===============================================*/
#conslider03 .conslider-block li {
  border: solid 4px #00bcd4;
  border-radius: 40px;
  margin: 0 50px 0 50px;
  background: #fff;
  overflow: hidden;
}

/*==============================================
#conslider03 .conslider-block li .h3
===============================================*/
#conslider03 .conslider-block li h3 {
  padding: 30px 50px 0 50px;
  text-align: center;
}

#conslider03 .conslider-block li h3 .mark {
  display: inline-block;
  background: #00bcd4;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
  border: solid 2px #00bcd4;
  border-radius: 40px;
  text-align: center;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  padding: 5px 22px;
}

#conslider03 .conslider-block li h3 .mark span {
  background: #4dd0e1;
  font-size: 18px;
  padding: 3px 11px;
  border-radius: 30px;
  position: relative;
  top: -3px;
  left: 3px;
}

#conslider03 .conslider-block li .image {
  padding: 15px 0 15px;
}

#conslider03 .conslider-block li img.thumb {
  width: 600px;
  display: block;
  margin: 0 auto;
  border-radius: 60px;
  height: auto;
}

#conslider03 .conslider-block li h3 .title {
  display: inline-block;
  font-size: 32px;
  padding: 0 0 0 20px;
}

/*==============================================
#conslider03 .conslider-block li .text 
===============================================*/
#conslider03 .conslider-block li .text {
  padding: 20px 0 20px 0;
  background: #00bcd4;
}

#conslider03 .conslider-block li .text .sentence {
  padding: 0 70px 0 70px;
  line-height: 1.5;
  color: #fff;
}

#conslider03 .conslider-block li .text .sentence h4 {
  padding: 10px 0 10px 0;
  color: #fff;
  font-size: 28px;
}

#conslider03 .conslider-block li .text .sentence h4 span {
  border: solid 2px #fff;
  padding: 3px 20px 3px 20px;
  font-size: 24px;
  margin: 0 10px 0 0;
}

#conslider03 .conslider-block li .text .sentence p {
  padding: 0px 0 10px 0;
  font-size: 19px;
}

/*==============================================
#conslider03 .conslider-block .slick-next
===============================================*/
#conslider03 .slick-next.slick-arrow,
#conslider03 .slick-prev.slick-arrow {
  background: -webkit-gradient(linear, left top, right top, from(#00bcd4), to(#0097a7)) !important;
  background: linear-gradient(90deg, #00bcd4 0%, #0097a7 100%) !important;
  opacity: 1 !important;
  width: 45px;
  height: 45px;
  z-index: 100;
  border-radius: 45px;
}

#conslider03 .slick-prev.slick-arrow {
  left: 150px !important;
}

#conslider03 .slick-next.slick-arrow {
  right: 150px !important;
}

#conslider03 .slick-prev.slick-arrow:hover,
#conslider03 .slick-next.slick-arrow:hover {
  background: #006064;
  opacity: 1 !important;
}

#conslider03 .slick-prev::before,
#conslider03 .slick-next::before {
  content: "" !important;
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
  pointer-events: none;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 200;
}

#conslider03 .slick-prev:before {
  right: 15px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

#conslider03 .slick-next:before {
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*==============================================
#conslider03 .explain
===============================================*/
#conslider03 .explain {
  padding: 40px 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;
  color: #00bcd4;
  position: relative;
  z-index: 10;
}

#conslider03 .explain img {
  width: 360px;
  height: auto;
  padding: 0 30px 0 0;
}

#conslider03 .explain p {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #VOICE02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
#voice02 variables(変数設定)
===============================================*/
#voice02 {
  background: #f8f8f8;
  padding: 40px 0 50px 0;
}

/*==============================================
#voice02 .title05-01
===============================================*/
#voice02 .title05-01 h2,
#voice02 .title05-01 p.en {
  background: #f8f8f8 !important;
}

/*==============================================
#voice02 .box-wrapper
===============================================*/
#voice02 .box-wrapper {
  padding: 0px 0px 0px 0px;
}

#voice02 .box {
  width: 1000px;
  padding: 10px 40px 50px 40px;
  margin: 80px auto 30px;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/*==============================================
#voice02 .box h5
===============================================*/
#voice02 .box h5 {
  display: block;
  width: 300px;
  text-align: center;
  background: #fff;
  color: #00bcd4;
  padding: 12px 30px 12px 30px;
  line-height: 1.35;
  border-radius: 30px;
  border: solid 2px #00bcd4;
  font-size: 22x;
  margin: -30px auto 20px;
}

/*==============================================
#voice02 .box
===============================================*/
#voice02 .box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*==============================================
#voice02 .person .image
===============================================*/
#voice02 .box-inner .person {
  width: 30%;
  margin: 0 3.5% 0 0;
}

/*==============================================
#voice02 .person .image
===============================================*/
#voice02 .person .image {
  position: relative;
  overflow: hidden;
}

#voice02 .person .image img {
  width: 100%;
  height: auto;
}

#voice02 .person .image .number {
  width: 100%;
  padding: 15px 10px 15px 10px;
  position: absolute;
  bottom: 0px;
  text-align: center;
  color: #fff;
  background: #00bcd4;
  font-size: 20px;
  font-weight: 900;
  opacity: 0.9;
}

/*==============================================
#voice02 .person .info-area
===============================================*/
#voice02 .person .info-area {
  margin: 20px 0 0 0;
}

#voice02 .person .info-area dl {
  border-top: 1px solid #b2ebf2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}

#voice02 .person .info-area dl dt {
  width: 25%;
  min-width: 35px;
  background-color: #b2ebf2;
  color: #00bcd4;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  padding: 7px 5px 7px 5px;
  font-weight: 700;
}

#voice02 .person .info-area dl dd {
  letter-spacing: -0.05em;
  padding: 7px 5px 7px 5px;
  color: #006064;
  width: 75%;
}

/*==============================================
#voice02 .text
===============================================*/
#voice02 .box-inner .text {
  width: 67.5%;
}

#voice02 .text .sentence h3 {
  color: #00bcd4;
  font-size: 35px;
}

#voice02 .text .sentence h4 {
  background: -webkit-gradient(linear, left top, right top, from(#00bcd4), to(#0097a7));
  background: linear-gradient(90deg, #00bcd4 0%, #0097a7 100%);
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  margin: 20px 0 10px;
  color: #fff;
  display: inline-block;
}

#voice02 .text .sentence p {
  font-size: 16px;
  line-height: 2;
}

/*==============================================
#voice02 p .catch
===============================================*/
#voice02 p.catch {
  font-size: 24px;
  line-height: 2;
  text-align: center;
  color: #00bcd4;
  font-weight: 700;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #FLOW02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
#flow02 .step-wrapper
===============================================*/
#flow02 .step-wrapper {
  padding: 40px 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 #00bcd4;
}

#flow02 .box .step .number {
  background: -webkit-gradient(linear, left top, right top, from(#00bcd4), to(#0097a7));
  background: linear-gradient(90deg, #00bcd4 0%, #0097a7 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 #00bcd4;
  color: #00bcd4;
  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 #006064;
  color: #006064;
  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: #00bcd4;
  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: #00bcd4;
  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: 35px 0px 45px;
  margin: 0 auto;
}

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

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

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

#faq01 .accordion .trigger span.icon-q {
  background: #00bcd4;
  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: #00bcd4;
  line-height: 1.0;
  padding: 3px 10px 5px 10px;
  border-radius: 100px;
  color: #fff;
  margin: 0 10px 0 0;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .CONTACT01　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.contact01 {
  margin: 30px 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: #00bcd4;
  background: -webkit-gradient(linear, left top, right top, from(#00bcd4), to(#0097a7));
  background: linear-gradient(90deg, #00bcd4 0%, #0097a7 100%);
  border-style: solid;
  border-width: 2px;
  border-color: #00bcd4;
  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: #00bcd4;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #FORM-WRAPPER　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#form-wrapper {
  width: 100%;
  margin: 30px auto 0;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: #f6f6f6;
}

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

/*==============================================
#form-wrapper h2
===============================================*/
#form-wrapper h2 {
  color: #00bcd4;
  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: #b2ebf2;
  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: #00bcd4;
  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 #00bcd4;
}

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

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

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: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #gnav04 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  #gnav04 .wrapper {
    padding: 15px 3% 0px 3%;
  }
  /*==============================================
  #gnav04 .wrapper .button
  ===============================================*/
  #gnav04 .wrapper h1 img.logo {
    width: 180px;
    height: auto;
    position: relative;
    top: 3px;
  }
  /*==============================================
  #gnav04 .wrapper .button
  ===============================================*/
  #gnav04 .wrapper .button {
    width: 110px;
  }
  #gnav04 .wrapper .button a {
    font-size: 12px;
    padding: 12px 15px 12px 15px;
  }
  #gnav04 .wrapper .button a img {
    width: 18px;
    height: auto;
    padding: 0 3px 0 0;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px?1279px：小型PC
------------------------------ */
/* 960px?1279px responsive-closed */
/* 1280px?：大型PC
------------------------------ */
/* 1280px? responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 #HEADER18 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  #header18 {
    /* #header18 .swiper-slide closed */
  }
  #header18 .wrapper {
    padding: 95px 0 65px 0;
  }
  #header18 .inner {
    padding: 0 2% 0 2%;
    margin: 0 auto;
    display: block;
  }
  #header18 h2 {
    text-align: center;
    color: #fff;
    padding: 35px 0 0 0;
    font-size: 28px;
  }
  #header18 h3 {
    text-align: center;
    color: #fff;
    padding: 20px 0 0 0;
    font-size: 18px;
  }
  #header18 .swiper-container {
    overflow: visible !important;
  }
  #header18 .swiper-slide {
    /* #header18 .img-mask closed */
  }
  #header18 .swiper-slide .img-mask {
    width: 290px;
    height: 200px;
    margin: 30px auto 0;
    overflow: hidden;
    border-radius: 0;
    -webkit-transform: skew(-20deg);
            transform: skew(-20deg);
    position: relative;
    z-index: 2;
  }
  #header18 .swiper-slide .img-mask img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    -webkit-transform: translate(-50%, -50%) skew(20deg);
            transform: translate(-50%, -50%) skew(20deg);
    z-index: 2;
  }
  #header18 .hero {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
  }
  #header18 .en-tate {
    left: 10px;
    top: 20%;
    font-size: 14px;
  }
  /* #header18 closed */
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 481px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header18 .inner {
    max-width: 1280px;
    padding: 0 5% 0 5%;
    margin: 0 auto;
    display: block;
  }
  #header18 .hero {
    margin: 0 auto 0;
  }
}

/* 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) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #headerto04 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  #headerto04 .variables(変数設定)
  ===============================================*/
  /*==============================================
  #headerto04 .box-wrapper
  ===============================================*/
  #headerto04 .box-wrapper {
    margin: -40px auto 20px;
    height: 280px;
  }
  #headerto04 .box-wrapper .box {
    top: 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    left: 0;
    padding: 0 2% 0 2%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /*==============================================
  #headerto04 .box .icon
  ===============================================*/
  #headerto04 .box-wrapper .box .icon {
    width: 140px;
    height: 140px;
    border-radius: 140px;
    font-size: 16px;
    letter-spacing: -1px;
    margin: 0 15px 0 0;
  }
  /*==============================================
  #headerto04 .icon 背景画像
  ===============================================*/
  #headerto04 .box-wrapper .box .icon:nth-child(1) {
    background-size: 110px 110px;
    margin: 0 15px 10px 0;
  }
  #headerto04 .box-wrapper .box .icon:nth-child(2) {
    background-size: 110px 110px;
    margin: 0 0px 10px 0;
  }
  #headerto04 .box-wrapper .box .icon:nth-child(3) {
    background-size: 110px 110px;
    margin: 0 15px 0 0;
  }
  #headerto04 .box-wrapper .box .icon:nth-child(4) {
    background-size: 110px 110px;
    margin: 0 0px 0 0;
  }
  /*==============================================
  #headerto04 .sentence 
  ===============================================*/
  #headerto04 .sentence {
    width: 92%;
    margin: 0 auto 0;
    padding: 0px 0 20px 0;
  }
  #headerto04 .sentence p.explain {
    font-size: 19px;
    line-height: 2.0;
  }
}

/* 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 */
@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: 220px;
    font-size: 17px;
  }
  .title01-02 h2 {
    font-size: 30px;
  }
  .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;
  }
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 .title02-01 〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
	====================================================================*/
  .title02-01 {
    padding: 30px 0 0 0;
  }
  .title02-01 h2 {
    font-size: 40px;
    padding: 10px 0 0 0;
  }
  .title02-01 h3 {
    font-size: 18px;
  }
  .title02-01 p.back {
    top: 50%;
    left: 50%;
    -webkit-transform: skewX(-15deg) translateX(-53%) translateY(-50%);
            transform: skewX(-15deg) translateX(-53%) translateY(-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: skewX(-15deg) translateX(-50%) translateY(-50%);
            transform: skewX(-15deg) translateX(-50%) translateY(-50%);
    font-size: 4.7rem;
    opacity: 0.2;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title03-01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title03-01 {
    padding: 50px 0 0 0;
  }
  /*==============================================
  .title03-01 h2
  ===============================================*/
  .title03-01 h2 .inner {
    padding: 10px 30px 10px 30px;
  }
  .title03-01 h2 .inner .semi {
    font-size: 48px;
  }
  .title03-01 h2 .inner .catch {
    font-size: 17px;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title03-03 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  .title03-03 h2
  ===============================================*/
  .title03-03 h2 .wrapper {
    width: 90%;
  }
  .title03-03 h2 .semi {
    font-size: 28px;
  }
  .title03-03 h2 .explain {
    font-size: 16px;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title04-01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  .title04-01 h2
  ===============================================*/
  .title04-01 h2 {
    width: 100%;
    height: 390px;
    padding: 30px 0 20px 0;
    background: #4dd0e1;
  }
  .title04-01 h2:before,
  .title04-01 h2:after {
    content: "";
    width: 130%;
    height: 200%;
    background: #00bcd4;
  }
  .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: #4dd0e1;
  }
  .title04-02 h2:before,
  .title04-02 h2:after {
    content: "";
    width: 130%;
    height: 200%;
    background: #00bcd4;
  }
  .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 */
/* 960px?1279px：小型PC
------------------------------ */
/* 960px?1279px responsive-closed */
/* 1280px?：大型PC
------------------------------ */
/* 1280px? responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 #TARGETING04 〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
	====================================================================*/
  #target04 {
    padding: 75px 0 40px 0;
  }
  /*==============================================
	#target04 .h2
	===============================================*/
  #target04 h2 .inner {
    position: absolute;
    top: -60px;
    padding: 10px 20px 10px 20px;
  }
  #target04 h2 .inner .semi {
    font-size: 45px;
    line-height: 1.2;
  }
  #target04 h2 .inner .catch {
    font-size: 17px;
    white-space: nowrap;
  }
  /*==============================================
	#target04 .box
	===============================================*/
  #target04 .box {
    width: 100%;
    margin: 90px auto 0;
  }
  #target04 .box .text {
    display: block;
    position: relative;
    z-index: 20;
    margin: 0 0px 0 0;
    top: 0;
    padding: 40px 0 0 20px;
  }
  #target04 .box .text .semi {
    font-size: 22px;
    line-height: 1.5;
  }
  #target04 .box img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    top: -15px;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 0px 0px #fff;
            box-shadow: 0px 0px 0px 0px #fff;
  }
  #target04 .box .text .catch {
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: -2px;
  }
  /*==============================================
	#target04 ul.checklist
	===============================================*/
  #target04 ul.checklist {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 5% 0px 5%;
  }
  #target04 ul.checklist li {
    width: 100%;
    margin: 0 0% 20px 0px;
    padding: 20px 25px 20px 55px;
    background: #f9f9f9 url(../images/target04-icon-check.png) no-repeat 20px center;
    background-size: 25px auto;
    font-size: 19px;
    border: solid 2px #bbb;
  }
  /*==============================================
  #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;
  }
  #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 {
    width: 160px;
    padding: 0 0px 0 0;
    margin: 0 0 10px 0;
  }
  #target04 .explain p {
    font-size: 19px;
    line-height: 1.45;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #TARGETING06 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  #target06 .wrapper {
    padding: 35px 0 35px 0;
  }
  /*==============================================
  #target06 ul.checklist
  ===============================================*/
  #target06 ul {
    padding: 0 5% 0 5%;
  }
  #target06 ul li {
    float: none;
    width: 100%;
    margin: 25px 0 0 0;
    font-size: 19px;
    letter-spacing: 1px;
  }
  #target06 ul li:nth-child(2n) {
    margin: 25px 0 0 0;
  }
  #target06 ul li img {
    width: 70px;
    height: auto;
    padding: 0 15px 0 0;
  }
  /*==============================================
  #target06 .additional
  ===============================================*/
  #target06 .addtional {
    font-size: 27px;
    padding: 50px 0 30px 0;
    line-height: 1.5;
  }
  /*==============================================
	#target06 .box
	===============================================*/
  #target06 .box {
    width: 100%;
    margin: 0px auto 0;
  }
  #target06 .box p.text {
    display: block;
    position: relative;
    z-index: 20;
    margin: 0 0px 0 0;
    top: 0;
    padding: 40px 0 0 20px;
  }
  #target06 .box p.text .semi {
    font-size: 20px;
    line-height: 1.5;
  }
  #target06 .box img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    top: -15px;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 0px 0px #fff;
            box-shadow: 0px 0px 0px 0px #fff;
  }
  #target06 .box p.text .catch {
    font-size: 33px;
    line-height: 1.4;
    letter-spacing: -2px;
  }
  /*==============================================
  #target06 .sentence p
  ===============================================*/
  #target06 .sentence p {
    font-size: 22px;
    padding: 0px 3% 20px 3%;
    line-height: 1.5;
  }
}

/* 769px 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) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .SECTION01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  ====================================================================*/
  /*==============================================
  .section01 inner
  ===============================================*/
  .section01 .inner {
    width: 100%;
    padding: 0px 0 0 0;
  }
  .section01 .inner img.thumb {
    width: 100%;
    margin: 0px auto 20px;
    float: none;
  }
  .section01 .inner .sentence {
    width: 92%;
    float: none;
    margin: 0 auto 0px;
    padding: 0px 0 20px 0px;
  }
  .section01 .inner .sentence p {
    font-size: 15px;
    line-height: 2;
  }
}

/* 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) {
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 POINT01 〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
	====================================================================*/
  #point01 {
    padding: 0 0 40px 0;
  }
  /*============================================
	#point01 .box-wrapper
	=============================================*/
  #point01 .box-wrapper {
    width: 96%;
    display: block;
    padding: 10px 0 0px 0;
  }
  /*============================================
	#point01 .box
	=============================================*/
  #point01 .box-wrapper .box {
    width: 100%;
    margin: 50px auto 0;
    display: block;
  }
  #point01 .box-wrapper .box:nth-child(3n) {
    margin: 50px 0px 0 0;
  }
  /*============================================
	#point01 h3
	=============================================*/
  #point01 .box h3 {
    width: 270px;
    padding: 8px 10px 10px;
    margin: -25px auto 10px;
    line-height: 1.2;
  }
  #point01 .box h3 span.text {
    font-size: 25px;
    letter-spacing: -1px;
  }
  #point01 .box h3 span.mark {
    margin-right: 4px;
  }
  /*============================================
  #point01 .sentence
  =============================================*/
  #point01 .box .sentence h4 {
    font-size: 23px;
    line-height: 1.35;
    padding: 15px 25px 15px;
  }
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 #POINT03 〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
	====================================================================*/
  /*============================================
	#point03 .wrapper
	=============================================*/
  #point03 .wrapper {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 0 40px;
  }
  /*============================================
	#point03 .box-wrapper
	=============================================*/
  #point03 .box-wrapper {
    width: 92%;
    margin: 0 auto 0px;
  }
  /*============================================
	#point03 .box
	=============================================*/
  #point03 .box-wrapper .box {
    border-left: solid 2px #00bcd4;
    border-top: solid 2px #00bcd4;
    border-right: solid 2px #00bcd4;
    border-bottom: solid 2px #00bcd4;
    margin: 0 0 30px 0;
  }
  /*============================================
	#point03 .box .catch
	=============================================*/
  #point03 .box-wrapper .box .catch .number {
    width: 70px;
    border-bottom: solid 2px #00bcd4;
    border-right: solid 2px #00bcd4;
    padding: 20px 5px 20px 5px;
  }
  #point03 .box-wrapper .box .catch .number .small {
    font-size: 12px;
    letter-spacing: -1px;
  }
  #point03 .box-wrapper .box .catch .number .big {
    font-size: 25px;
  }
  #point03 .box-wrapper .box .catch h3 {
    font-size: 21px;
    line-height: 1.3;
    padding: 10px 10px 10px 20px;
  }
  /*============================================
	#point03 .box .thumb
	=============================================*/
  #point03 .box-wrapper .box .thumb .text-line {
    bottom: 10px;
    right: 0px;
  }
  #point03 .box-wrapper .box .thumb .text-line .en {
    font-size: 17px;
    position: relative;
    top: -5px;
  }
  #point03 .box-wrapper .box .thumb .text-line p {
    margin: 5px 0 5px 0;
    padding: 4px 10px 4px 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.15;
  }
  /*============================================
	#point03 .box .sentence
	=============================================*/
  #point03 .box-wrapper .box .sentence {
    padding: 20px 20px 20px 20px;
  }
  #point03 .box-wrapper .box .sentence p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 2;
  }
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 #POINT05 〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
	====================================================================*/
  /*============================================
  #point05 .box-wrapper
  =============================================*/
  #point05 .box-wrapper {
    width: 100%;
    margin: 40px auto 0;
  }
  /*============================================
  #point05 allbox
  =============================================*/
  #point05 .box-wrapper .box {
    width: 92%;
    float: none;
    margin: 30px auto 10px;
  }
  #point05 .box-wrapper .box:nth-child(3) {
    margin: 30px auto 10px;
  }
  #point05 .box-wrapper .box ul li {
    padding: 2px 8px;
  }
  /*============================================
  #point05 .explain
  =============================================*/
  #point05 .explain {
    width: 92%;
    font-size: 16px;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px?1279px：小型PC
------------------------------ */
/* 960px?1279px responsive-closed */
/* 1280px?：大型PC
------------------------------ */
/* 1280px? responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #CONSLIDER02 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  #conslider02 .conslider-block li
  ===============================================*/
  #conslider02 .conslider-block li .person img {
    width: 110px;
    height: auto;
    padding-right: 15px;
  }
  /*==============================================
  #conslider02 .conslider-block .additional
  ===============================================*/
  #conslider02 .additional {
    font-size: 24px;
    letter-spacing: -1px;
  }
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 #CONSLIDER03 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  /*==============================================
  #conslider03 .slick-listの設定
  ===============================================*/
  #conslider03 .slick-list {
    padding: 50px 0 50px 0;
  }
  /*==============================================
  #conslider03 .conslider-block li
  ===============================================*/
  #conslider03 .conslider-block li {
    border: solid 3px #00bcd4;
    border-radius: 40px;
    margin: 0 15px 0 15px;
  }
  #conslider03 .conslider-block li img.thumb {
    width: 87%;
    border-radius: 50px;
  }
  /*==============================================
  #conslider03 .conslider-block li .h3
  ===============================================*/
  #conslider03 .conslider-block li h3 {
    padding: 20px 20px 0 20px;
    text-align: center;
  }
  #conslider03 .conslider-block li h3 .mark {
    display: inline-block;
    border-radius: 40px;
    font-size: 20px;
    padding: 5px 20px;
  }
  #conslider03 .conslider-block li h3 .mark span {
    background: #4dd0e1;
    font-size: 15px;
    padding: 2px 9px 2px;
    top: -2px;
  }
  #conslider03 .conslider-block li h3 .title {
    font-size: 22px;
    padding: 10px 0 0 0px;
  }
  /*==============================================
  #conslider03 .conslider-block li .text 
  ===============================================*/
  #conslider03 .conslider-block li .text {
    padding: 18px 0 18px 0;
  }
  #conslider03 .conslider-block li .text .sentence {
    padding: 0 25px 0 25px;
    line-height: 1.5;
  }
  #conslider03 .conslider-block li .text .sentence h4 {
    padding: 10px 0 10px 0;
    color: #fff;
    font-size: 20px;
  }
  #conslider03 .conslider-block li .text .sentence h4 span {
    border: solid 2px #fff;
    padding: 3px 20px 3px 20px;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 10px 0 0;
  }
  #conslider03 .conslider-block li .text .sentence p {
    padding: 8px 0 8px 0;
    font-size: 15px;
  }
  /*==============================================
  #conslider03 .conslider-block .slick-next
  ===============================================*/
  #conslider03 .slick-next.slick-arrow,
  #conslider03 .slick-prev.slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
  #conslider03 .slick-prev.slick-arrow {
    left: 10px !important;
  }
  #conslider03 .slick-next.slick-arrow {
    right: 10px !important;
  }
  /*==============================================
  #conslider03 .explain
  ===============================================*/
  #conslider03 .explain {
    padding: 0px 0 0 0;
  }
  #conslider03 .explain img {
    width: 230px;
    height: auto;
    padding: 0 0px 20px 0;
  }
  #conslider03 .explain p {
    font-size: 22px;
    text-align: center;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px?1279px：小型PC
------------------------------ */
/* 960px?1279px responsive-closed */
/* 1280px?：大型PC
------------------------------ */
/* 1280px? responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #VOICE02 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  ====================================================================*/
  #voice02 {
    padding: 40px 0 10px 0;
  }
  /*==============================================
  #voice02 .box-wrapper
  ===============================================*/
  #voice02 .box-wrapper {
    padding: 10px 0px 0px 0px;
  }
  /*==============================================
  #voice02 .box-inner
  ===============================================*/
  #voice02 .box-inner {
    padding: 0px 0px 0px 0px;
    display: block;
  }
  /*==============================================
  #voice02 .box
  ===============================================*/
  #voice02 .box {
    width: 92%;
    padding: 10px 0px 50px 0px;
    margin: 50px auto 30px;
  }
  /*==============================================
  #voice02 .box h5
  ===============================================*/
  #voice02 .box h5 {
    width: 85%;
    text-align: center;
    padding: 12px 30px 12px 30px;
    font-size: 22x;
    margin: -30px auto 20px;
  }
  /*==============================================
  #voice02 .person .image
  ===============================================*/
  #voice02 .box-inner .person {
    width: 100%;
    padding: 20px 20px 20px 20px;
  }
  #voice02 .person:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
  }
  /*==============================================
  #voice02 .person .image
  ===============================================*/
  #voice02 .person .image {
    text-align: center;
    width: 50%;
    float: left;
    margin: 0 3% 0 0;
  }
  #voice02 .person .image img {
    width: 100%;
    height: auto;
  }
  #voice02 .person .image .number {
    width: 100%;
    padding: 6px 10px 6px 10px;
    position: absolute;
    bottom: 0px;
    text-align: center;
    color: #fff;
    background: #00bcd4;
    font-size: 17px;
    font-weight: 900;
    opacity: 0.9;
  }
  /*==============================================
  #voice02 .person .info-area
  ===============================================*/
  #voice02 .person .info-area {
    margin: 0px 0 0 0;
    float: left;
    width: 47%;
  }
  #voice02 .person .info-area dl {
    font-size: 13px;
  }
  #voice02 .person .info-area dl dt {
    padding: 6px 5px 6px 5px;
    width: 30%;
  }
  #voice02 .person .info-area dl dd {
    padding: 6px 5px 6px 5px;
    width: 70%;
  }
  /*==============================================
  #voice02 .text
  ===============================================*/
  #voice02 .box-inner .text {
    width: 100%;
  }
  #voice02 .text .sentence h3 {
    font-size: 30px;
    padding: 0 20px 0 20px;
  }
  #voice02 .text .sentence h4 {
    background: -webkit-gradient(linear, left top, right top, from(#00bcd4), to(#0097a7));
    background: linear-gradient(90deg, #00bcd4 0%, #0097a7 100%);
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    margin: 20px 0 10px;
    color: #fff;
    display: inline-block;
  }
  #voice02 .text .sentence p {
    font-size: 14px;
    padding: 0 20px 0 20px;
    line-height: 2.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: #00bcd4;
    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: #00bcd4;
    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%;
    padding: 30px 0px 45px;
  }
  /*==============================================
#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 */
@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 {
    width: 95%;
  }
}

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