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

.pc-disline {
  display: inline;
}

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

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

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

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

/* modules */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .LOADING02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.loading02
===============================================*/
.loading02 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 一番最初に見える全体の色 */
  background: #000;
  z-index: 99999;
  -webkit-animation: byeShutter 3.6s forwards;
          animation: byeShutter 3.6s forwards;
  overflow: hidden;
}

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

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

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

.loading02 .middle .catch {
  width: 220px;
  margin: 0 auto 0;
}

.loading02 .middle .catch img {
  width: 100%;
  height: auto;
}

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

/*==============================================
.loading02　.left .right vraiables(変数設定)
===============================================*/
.loading02 .left {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#209fa8), to(#48cf7e));
  background: linear-gradient(90deg, #209fa8 0%, #48cf7e 100%);
  opacity: 0;
  z-index: 100001;
  -webkit-animation: leftIn 1s forwards;
          animation: leftIn 1s forwards;
}

@-webkit-keyframes leftIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
}

@keyframes leftIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
}

.loading02 .right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0c7c84), to(#04545a));
  background: linear-gradient(90deg, #0c7c84 0%, #04545a);
  -webkit-animation: RightIn 1.0s forwards 1.0s;
          animation: RightIn 1.0s forwards 1.0s;
  z-index: 100002;
  opacity: 0;
}

@-webkit-keyframes RightIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
}

@keyframes RightIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #gnav04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#gnav04 {
  background: #000000;
  -webkit-box-shadow: 0px 4px 14px 3px #aaa;
          box-shadow: 0px 4px 14px 3px #aaa;
}

#gnav04 .wrapper {
  padding: 0px 0% 0 25px;
  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 .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#gnav04 .wrapper .left h2 {
  font-size: 22px;
  color: #094347;
}

#gnav04 .wrapper .left h2 img {
  width: 180px;
  height: auto;
}

#gnav04 .wrapper .left h3 {
  padding: 0 0 0 50px;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1px;
}

/*==============================================
#gnav04 .wrapper .button
===============================================*/
#gnav04 .wrapper .button {
  width: 500px;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

#gnav04 .wrapper .button a {
  color: #fff;
  background: #078189;
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 20px 20px 20px;
  text-align: center;
  text-decoration: none;
}

#gnav04 .wrapper .button a .caption {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px 0;
  position: relative;
  line-height: 1.1;
  font-weight: 900;
}

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

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

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

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

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

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

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 #HEADER31 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
/*==============================================
#header31 variables(変数設定)
===============================================*/
#header31 {
  width: 100%;
  margin: 0 0 0px 0;
  position: relative;
  z-index: 1;
}

#header31-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

#header31-wrapper canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* #header31 closed */
/*==============================================
#header31 .inner
===============================================*/
#header31 .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
  min-width: 680px;
  margin: -20px 0 0 0;
  /* #header31 .inner .text closed */
}

#header31 .inner .text {
  padding: 30px 80px 30px 80px;
  background: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 10;
  border: solid 3px #fff;
  -webkit-box-shadow: inset 0 0 0 3px #078189;
          box-shadow: inset 0 0 0 3px #078189;
  /* #header31 .inner .text h2 closed */
  /* #header31 .inner .text h1 closed */
  /* #header31 .inner .text h3 closed */
}

#header31 .inner .text .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;
}

#header31 .inner .text .catch h5 {
  padding: 8px 15px 8px 15px;
  background: -webkit-gradient(linear, left top, right top, from(#209fa8), to(#48cf7e));
  background: linear-gradient(90deg, #209fa8 0%, #48cf7e 100%);
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 22px;
}

#header31 .inner .text .catch .mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
  background: #078189;
  border: solid 2px #078189;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
  border-radius: 80px;
  width: 80px;
  height: 80px;
  text-align: center;
  font-weight: 700;
  margin: 0 0 0 15px;
}

#header31 .inner .text h2 {
  text-align: center;
  font-size: 20px;
  padding: 0px 0 20px 0;
  font-weight: 900;
}

#header31 .inner .text h2 span {
  color: #078189;
}

#header31 .inner .text h1 {
  text-align: center;
  margin: 0 0 40px 0;
  /* #header31 .inner .text h1 .one closed */
  /* #header31 .inner .text h1 .two closed */
}

#header31 .inner .text h1 .en p {
  color: #078189;
  font-family: futura-pt-bold, source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 90px;
  line-height: 1.0;
  padding: 6px 0 0 0;
}

#header31 .inner .text h1 .kana {
  font-size: 80px;
  color: #078189;
  letter-spacing: -6px;
  line-height: 1.0;
  padding: 0 3px 0 0;
}

#header31 .inner .text h1 .one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 3px 0;
}

#header31 .inner .text h1 .one .semi p {
  line-height: 1.0;
  font-weight: 900;
  font-size: 80px;
}

#header31 .inner .text h1 .two {
  margin: 6px 0 0px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#header31 .inner .text h1 .two .semi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

#header31 .inner .text h1 .two .semi p.big {
  line-height: 1.0;
  font-weight: 900;
  font-size: 80px;
}

#header31 .inner .text h1 .two .semi p.small {
  padding: 3px 0 0 0;
  line-height: 1.0;
  font-weight: 900;
  font-size: 40px;
}

#header31 .inner .text h3 {
  text-align: center;
  font-weight: 900;
  line-height: 1.75;
  font-size: 24px;
}

#header31 .inner .text h3 span {
  color: #078189;
}

/* #header31 .inner closed */
/*==============================================
#header31 #conslider09
===============================================*/
#header31 #conslider09 .conslider-block01 li,
#header31 #conslider09 .conslider-block02 li {
  height: 400px;
  overflow: hidden;
  line-height: 0;
}

#header31 #conslider09 .conslider-block01 img,
#header31 #conslider09 .conslider-block02 img {
  width: 100%;
  height: auto;
  line-height: 0;
}

/*==============================================
#header31 .icon
===============================================*/
#header31 .icon {
  position: absolute;
  bottom: 100px;
  right: 12.5%;
  z-index: 1200;
}

#header31 .icon .block {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#209fa8), to(#48cf7e));
  background: linear-gradient(90deg, #209fa8 0%, #48cf7e 100%);
  width: 200px;
  height: 200px;
  border-radius: 200px;
  color: #fff;
  border: solid 3px #078189;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
  font-weight: 700;
  font-size: 18px;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #headerto05 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#headerto05 {
  padding: 0 0 50px 0;
}

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

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

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

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

#headerto05 .box-wrapper .box .icon img {
  height: 90px;
}

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

/*==============================================
#headerto05 .sentence
===============================================*/
#headerto05 .sentence {
  max-width: 1000px;
  margin: 0 auto 0;
  padding: 30px 4% 30px 4%;
}

#headerto05 .sentence p {
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0 10px 0;
  line-height: 2.0;
  letter-spacing: 1px;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .CTA01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.cta01 {
  background: url(../images/cta01-bg.jpg) no-repeat center center;
  background-size: cover;
  width: 95%;
  margin: 0 0 0 0;
  /* .cta01 .wrapper closed */
}

.cta01 .wrapper {
  padding: 50px 0 50px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(7, 129, 137, 0.95)), to(rgba(15, 151, 140, 0.95)));
  background: linear-gradient(90deg, rgba(7, 129, 137, 0.95) 0%, rgba(15, 151, 140, 0.95) 100%);
  /* .cta01 .inner closed */
}

.cta01 .wrapper .inner {
  max-width: 1000px;
  margin: 0 auto;
  /* .cta01 .inner .haedline closed */
  /* .cta01 .inner .box closed */
}

.cta01 .wrapper .inner .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
  margin: 0 0 30px 0;
}

.cta01 .wrapper .inner .headline h2 {
  font-size: 55px;
  margin: 0 30px 0 0;
  border-right: solid 2px #fff;
  padding: 0 30px 0 0;
  font-family: futura-pt,futura-pt-bold, sans-serif;
  font-weight: 700;
}

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

.cta01 .wrapper .inner .box {
  background: #fff;
  padding: 45px 45px 45px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* .cta01 .inner .box .tel closed */
}

.cta01 .wrapper .inner .box .tel a {
  color: #000;
  text-decoration: none;
  margin: 0 55px 0 0;
}

.cta01 .wrapper .inner .box .tel .number {
  font-family: futura-pt,futura-pt-bold, sans-serif;
  font-weight: 700;
  font-size: 50px;
}

.cta01 .wrapper .inner .box .tel img {
  width: 50px;
  height: auto;
  position: relative;
  top: 3px;
}

.cta01 .wrapper .inner .box .tel .detail {
  font-size: 18px;
  letter-spacing: 1px;
}

.cta01 .wrapper .inner .box .tel .detail span {
  color: #aaa;
}

.cta01 .wrapper .inner .box .to-contact a {
  display: block;
  width: 400px;
  background: #078189;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 20px 0 20px 0;
  line-height: 1.2;
  position: relative;
}

.cta01 .wrapper .inner .box .to-contact a .semi {
  border-radius: 40px;
  width: 80%;
  margin: -30px auto 15px;
  background: #fff;
  text-align: center;
  color: #078189;
  font-size: 15px;
  font-weight: 900;
  font-family: fot-tsukuardgothic-std, sans-serif;
  letter-spacing: -1px;
  border: solid 2px #078189;
  position: relative;
  padding: 3px 0 3px 0;
}

.cta01 .wrapper .inner .box .to-contact a .semi:before {
  content: "";
  position: absolute;
  top: 21px;
  left: 50%;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
  border-radius: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.cta01 .wrapper .inner .box .to-contact a img {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 30px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* .cta01 closed */
/*==============================================
.CTA01 ul.for
===============================================*/
/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 .SECTION17 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
/*==============================================
.section17
===============================================*/
.section17 {
  margin: 80px 0 0 0;
  padding: 150px 0 150px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.section17 .inner {
  max-width: 1280px;
  margin: 0 auto 0;
  padding: 0 4% 0 4%;
}

.section17 .inner .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section17 .inner .en {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-size: 90px;
  letter-spacing: 3px;
  color: #fff;
  padding: 0 30px 0 0;
}

.section17 .inner h2 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 0px 0;
}

.section17 .inner h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 10px 0;
}

.section17 .inner .sentence {
  margin: 40px 0 0 0;
}

.section17 .inner .sentence p {
  color: #fff;
  font-size: 20px;
  padding: 10px 0 10px 0;
}

/* .section17 closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #TARGETING04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
#target04 variables(変数設定)
===============================================*/
#target04 {
  padding: 130px 0 70px 0;
}

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

#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: futura-pt-bold, sans-serif;
  font-weight: 700;
  color: #231815;
  font-size: 78px;
  line-height: 1.0;
}

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

/*==============================================
#target04 .box
===============================================*/
#target04 .box {
  max-width: 1000px;
  margin: 90px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

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

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

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

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

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

#target04 ul.checklist li .icon {
  padding: 0px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 10%;
}

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

#target04 ul.checklist li.color01 {
  border: solid 2px #078189;
}

#target04 ul.checklist li.color01 .icon {
  background: #078189;
}

#target04 ul.checklist li.color02 {
  border: solid 2px #078189;
}

#target04 ul.checklist li.color02 .icon {
  background: #078189;
}

#target04 ul.checklist li.color03 {
  border: solid 2px #078189;
}

#target04 ul.checklist li.color03 .icon {
  background: #078189;
}

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

/*==============================================
#target04 .explain
===============================================*/
#target04 .explain {
  padding: 0px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

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

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

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

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

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

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title01-02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.title01-02 背景色
===============================================*/
.title01-02 {
  background: #078189;
  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(#209fa8), to(#48cf7e));
  background: linear-gradient(90deg, #209fa8 0%, #48cf7e 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: #078189;
  padding: 30px 0 30px 0;
  text-align: center;
  color: #fff;
}

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

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

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

/*============================================
#point08 .wrapper
=============================================*/
#point08 .wrapper {
  width: 100%;
  background: rgba(43, 43, 43, 0.95) repeat center center;
  background-size: 20px auto;
}

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

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

#point08 .box-wrapper .box .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

#point08 .box-wrapper .box .bottom .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0 20px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button01 a .btn .circle span.normal {
  font-size: 16px;
  display: block;
  line-height: 1.3;
}

.button01 a .btn .circle span.big {
  font-size: 30px;
  letter-spacing: -2px;
  display: block;
  line-height: 1.1;
}

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

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

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

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

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

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

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

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

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

/*==============================================
#conslider13 .conslider-block li
===============================================*/
#conslider13 .conslider-block li {
  border: solid 4px #078189;
  margin: 0 50px 0 50px;
  background: #fff;
  overflow: hidden;
}

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

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

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

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

/*==============================================
#conslider13 .conslider-block li .text 
===============================================*/
#conslider13 .conslider-block li .image {
  padding: 15px 40px 15px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#conslider13 .conslider-block li .image .left {
  width: 35%;
}

#conslider13 .conslider-block li .image .left img.img01 {
  width: 80%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 5px;
  border: solid 2px #aaa;
}

#conslider13 .conslider-block li .image .left img.img02 {
  width: 80%;
  height: auto;
  position: relative;
  margin: -20px 0 0 20%;
  z-index: 2;
  background: #fff;
  padding: 5px;
  border: solid 2px #aaa;
}

#conslider13 .conslider-block li .image .left h4 {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 25px;
  letter-spacing: 1px;
  padding: 10px 0 0 0;
}

#conslider13 .conslider-block li .image .middle {
  width: 10%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#conslider13 .conslider-block li .image .middle img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto 0;
}

#conslider13 .conslider-block li .image .middle h4 {
  text-align: center;
  font-size: 16px;
  color: #078189;
}

#conslider13 .conslider-block li .image .right {
  width: 55%;
}

#conslider13 .conslider-block li .image .right img.img03 {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 8px;
  border: solid 2px #aaa;
}

#conslider13 .conslider-block li .image .right h4 {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 45px;
  letter-spacing: 1px;
}

/*==============================================
#conslider13 .conslider-block li .text 
===============================================*/
#conslider13 .conslider-block li .text {
  padding: 20px 0 20px 0;
  background: #078189;
}

#conslider13 .conslider-block li .text .sentence {
  padding: 0 70px 0 70px;
  font-size: 19px;
  line-height: 1.5;
}

#conslider13 .conslider-block li .text .sentence p {
  padding: 10px 0 10px 0;
  color: #fff;
}

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

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

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

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

#conslider13 .slick-prev::before,
#conslider13 .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;
}

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

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

/*==============================================
 #conslider13 . .additional
===============================================*/
#conslider13 .additional h4 {
  padding: 20px 0 20px;
  text-align: center;
  color: #078189;
  font-size: 32px;
  font-weight: 900;
}

#conslider13 .additional p {
  max-width: 800px;
  margin: 0 auto 0;
  text-align: center;
  font-size: 16px;
}

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 .SECTION51 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
/*==============================================
.section51
===============================================*/
.section51 .wrapper {
  width: 100%;
  padding: 0 0 0px 0;
  position: relative;
  height: 660px;
}

.section51 .wrapper #youtube-area {
  width: 100%;
  height: 660px;
  position: relative;
  z-index: 1;
}

.section51 .middle {
  width: 30rem;
  height: 30rem;
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}

.section51 .middle .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 100%;
  height: 100%;
  position: relative;
}

.section51 .middle h3 {
  text-align: center;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-size: 80px;
  margin: 0;
  padding: 0px 0 0 0;
  line-height: 1.0;
  letter-spacing: -1px;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  white-space: nowrap;
  position: absolute;
  top: -10px;
  left: 0;
  opacity: 0.2;
}

.section51 .middle h2 {
  text-align: center;
  font-weight: 900;
  font-size: 45px;
  padding: 10px 0 0 30px;
  line-height: 1.2;
  letter-spacing: 0px;
}

.section51 .middle h4 {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  padding: 30px 4% 30px 4%;
  line-height: 2.2;
  letter-spacing: 2px;
}

.section51 .sentence {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 40px 4% 0 4%;
}

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

.section51 .addtional {
  padding: 50px 0 120px 0;
  background: -webkit-gradient(linear, left top, right top, from(#209fa8), to(#48cf7e));
  background: linear-gradient(90deg, #209fa8 0%, #48cf7e 100%);
}

.section51 .addtional .cover {
  max-width: 1180px;
  padding: 0 3.5% 0 3.5%;
  margin: 0 auto 0;
}

.section51 .addtional h3 {
  text-align: center;
  font-size: 35px;
  letter-spacing: 2px;
  font-weight: 900;
  color: #094347;
}

.section51 .addtional h4 {
  text-align: center;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #094347;
  margin: 0 0 20px 0;
}

.section51 .addtional ul {
  margin: 0;
  padding: 0 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section51 .addtional ul li {
  color: #fff;
  width: 32%;
  padding: 0;
  margin: 10px 2% 0 0;
  font-size: 17px;
  list-style-type: none;
}

.section51 .addtional ul li:nth-child(3n) {
  margin: 10px 0 0 0;
}

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

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .VIDEO01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.video01
===============================================*/
.video01 {
  margin: 0px 0 0px 0;
  padding: 0px 0 50px 0;
}

.video01 .wrapper {
  background: black;
  padding: 100px 0 60px 0;
}

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

.video01 .inner .js-video-button {
  width: 550px;
  cursor: pointer;
  margin: -170px 0 0 0;
}

.video01 .inner .js-video-button img.thumb {
  width: 100%;
  height: auto;
}

.video01 .inner .js-video-button .caption {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0 10px 0;
}

.video01 .inner .right {
  color: #fff;
  padding: 0 0 0 50px;
  position: relative;
}

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

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

.video01 .inner .right h3 {
  font-size: 20px;
}

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 .SECTION52 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
/*==============================================
.section52
===============================================*/
.section52 .title01-02 {
  background: #000 !important;
}

.section52 .wrapper {
  width: 100%;
  padding: 50px 0 50px 0;
}

.section52 .inner {
  max-width: 1280px;
  margin: 0 auto 0;
  padding: 0 3.5% 0 3.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section52 .inner .box {
  width: 32%;
  margin: 0 2% 20px 0;
}

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

.section52 .inner .box .sentence P {
  padding: 10px 0 10px 0;
  font-size: 17px;
  line-height: 2.0;
}

.section52 .inner .mark {
  width: 100%;
  border-left: 6px solid #b6a68f;
  border-right: 6px solid #b6a68f;
  position: relative;
  text-align: center;
  min-height: 430px;
  background: -webkit-gradient(linear, left top, right top, from(#0c7c84), to(#04545a));
  background: linear-gradient(90deg, #0c7c84 0%, #04545a);
}

.section52 .inner .mark:before, .section52 .inner .mark:after {
  content: "";
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
}

.section52 .inner .mark:before {
  background: -webkit-gradient(linear, left top, right top, from(#b6a68f), color-stop(50%, #ffe8c7), to(#b6a68f));
  background: linear-gradient(to right, #b6a68f 0%, #ffe8c7 50%, #b6a68f 100%);
  top: 0;
  left: 0;
}

.section52 .inner .mark:after {
  background: -webkit-gradient(linear, left top, right top, from(#b6a68f), color-stop(50%, #847969), to(#b6a68f));
  background: linear-gradient(to right, #b6a68f 0%, #847969 50%, #b6a68f 100%);
  bottom: 0;
  left: 0;
}

.section52 .inner .mark .inside {
  padding: 30px 30px 30px 30px;
  line-height: 1.2;
}

.section52 .inner .mark .inside h4 {
  text-align: center;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
}

.section52 .inner .mark .inside img.icon {
  width: 100px;
  height: auto;
  display: block;
  margin: 20px auto 20px;
}

.section52 .inner .mark .inside .semi {
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  background: #fff;
}

.section52 .inner .mark .inside .semi span.normal {
  font-size: 22px;
  display: block;
  color: #078189;
  font-weight: 700;
  margin: 0 0 10px 0;
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
}

.section52 .inner .mark .inside .semi span.normal02 {
  font-size: 22px;
  display: block;
  letter-spacing: -1px;
  color: #078189;
  font-weight: 700;
  margin: 0 0 10px 0;
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
}

.section52 .inner .mark .inside p.emphasis {
  padding: 25px 0 25px 0;
  line-height: 1.15;
}

.section52 .inner .mark .inside p.emphasis02 {
  padding: 10px 0 10px 0;
  line-height: 1.15;
}

.section52 .inner .mark .inside span.middle {
  font-size: 47px;
  color: #fff;
  font-weight: 900;
}

.section52 .inner .mark .inside span.big {
  font-size: 62px;
  color: #fff;
  font-weight: 900;
}

.section52 .inner .mark .inside span.plus {
  font-size: 35px;
  color: #fff;
  font-weight: 900;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .SECTION35 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.section35 {
  padding: 50px 0 55px 0;
}

/*==============================================
.section35
===============================================*/
.section35 .box {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 5% 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section35 .box li {
  list-style-type: none;
  padding: 15px 30px 15px 30px;
  margin: 0 0 0 0;
}

.section35 .box li img.icon01 {
  width: 100px;
  height: auto;
}

.section35 .box li img.icon02 {
  width: 200px;
  height: auto;
}

.section35 .box li img.icon03 {
  width: 110px;
  height: auto;
}

.section35 .box li img.icon04 {
  width: 100px;
  height: auto;
}

.section35 .box li img.icon05 {
  width: 220px;
  height: auto;
}

.section35 .box li img.icon06 {
  width: 240px;
  height: auto;
}

.section35 .box li img.icon07 {
  width: 100px;
  height: auto;
}

.section35 .box li img.icon08 {
  width: 110px;
  height: auto;
}

.section35 .box li img.icon09 {
  width: 240px;
  height: auto;
}

.section35 .sentence {
  padding: 40px 0 40px 0;
  max-width: 1000px;
  padding: 0 5% 0 5%;
  margin: 0 auto 0;
}

.section35 .sentence h2 {
  padding: 40px 5% 20px 5%;
  text-align: center;
  line-height: 1.5;
  color: #078189;
  font-weight: 900;
  font-size: 40px;
}

.section35 .sentence p {
  padding: 10px 0 10px 0;
  font-size: 18px;
  letter-spacing: 1.5px;
}

.section35 .sentence p span {
  color: #078189;
  font-weight: 700;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
#point04 {
  margin: 40px auto 0;
}

#point04 .box-wrapper {
  max-width: 1200px;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#point04 .box-wrapper:after,
#point04 .box .top:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/*============================================
#point04 .box
=============================================*/
#point04 .box {
  width: 48.5%;
  margin: 20px 3% 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 2px #078189;
  padding: 0 0 20px 0;
}

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

/*============================================
#point04 .box .left
=============================================*/
#point04 .box .top .left {
  float: left;
  width: 22%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  padding: 10px 10px 10px 10px;
  line-height: 0;
}

#point04 .box .top .left img {
  width: 100%;
  height: auto;
}

/*============================================
#point04 .box .right
=============================================*/
#point04 .box .top .right {
  float: left;
  width: 78%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 15px 0px 15px;
}

#point04 .box .top .right p.number {
  font-size: 22px;
  padding: 8px 12px 12px 12px;
  background: #078189;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
}

#point04 .box .top .right h3 {
  font-size: 29px;
  line-height: 1.35;
  font-weight: 900;
  color: #000;
  padding: 10px 0 10px 0;
}

/*============================================
#point04 .box .sentence
=============================================*/
#point04 .box .sentence {
  padding: 0px 20px 0px 20px;
}

#point04 .box .sentence p {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

/*============================================
#point04 .box p.catch
=============================================*/
#point04 p.catch {
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  color: #078189;
  padding: 20px 0 40px 0;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #FLOW01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#flow01 {
  padding: 0px 0 50px 0;
}

/*==============================================
#flow01 .step-wrapper
===============================================*/
#flow01 .step-wrapper {
  padding: 30px 0 0px 0;
}

/*==============================================
#flow01 .step
===============================================*/
#flow01 .step {
  color: #078189;
  font-size: 55px;
  line-height: 0.8;
  letter-spacing: -1px;
  text-align: center;
  font-weight: 900;
  font-style: normal;
  width: 90%;
  margin: 0 auto 0;
  -webkit-transform: skew(-10deg);
          transform: skew(-10deg);
}

#flow01 img.arrow {
  display: block;
  width: 66px;
  height: auto;
  margin: 0 auto 20px;
  line-height: 0;
}

#flow01 .left:after,
#flow01 .right:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/*==============================================
#flow01 .left
===============================================*/
#flow01 .left .text {
  float: right;
  width: 500px;
  height: auto;
}

#flow01 .left img {
  float: left;
  width: 330px;
  height: auto;
}

/*==============================================
#flow01 .right
===============================================*/
#flow01 .right .text {
  float: left;
  width: 500px;
  height: auto;
}

#flow01 .right img {
  float: right;
  width: 330px;
  height: auto;
}

/*==============================================
#flow01 .box
===============================================*/
#flow01 .box {
  width: 950px;
  margin: 0 auto;
  background: #fff;
  border: solid 2px #078189;
  padding: 35px 35px 35px 35px;
}

#flow01 .box h3 {
  font-size: 26px;
  color: #231815;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 0 0 20px 0;
}

#flow01 .box h3 span {
  display: inline-block;
  width: 33px;
  line-height: 33px;
  height: 33px;
  font-size: 24px;
  border-radius: 50%;
  background: #078189;
  color: #fff;
  text-align: center;
  margin-right: 5px;
  position: relative;
  top: 1px;
}

#flow01 .box .text p {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
}

/*==============================================
#flow01 .addtional
===============================================*/
#flow01 .addtional {
  margin: 30px auto 0;
  text-align: center;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#flow01 .addtional .text {
  display: inline-block;
  vertical-align: top;
}

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

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

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

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .FAQ01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
#faq01 {
  margin: 50px 0 0 0;
}

/*==============================================
#faq01 .accordion
===============================================*/
#faq01 .accordion {
  max-width: 1200px;
  padding: 0px 5% 10px 5%;
  margin: 0 auto;
}

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

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

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

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

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

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

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

/*==============================================
#faq01 .toggle_container
===============================================*/
#faq01 .toggle_container {
  padding: 17px 40px 15px 40px;
  position: relative;
  line-height: 2.0;
}

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

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

body.title section {
  margin: 300px 0 300px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .SECTION40 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.section40 {
  padding: 60px 0 45px 0;
}

/*==============================================
.section40
===============================================*/
.section40 .sentence {
  max-width: 1000px;
  padding: 0 5% 0 5%;
  margin: 0 auto 0;
}

.section40 .sentence h2 {
  padding: 40px 5% 20px 5%;
  text-align: center;
  line-height: 1.5;
  color: #078189;
  font-weight: 900;
  font-size: 40px;
}

.section40 .sentence p {
  padding: 10px 0 10px 0;
  font-size: 18px;
  letter-spacing: 1.5px;
}

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

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

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

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

.contact01 .btn a {
  background: #078189;
  background: -webkit-gradient(linear, left top, right top, from(#209fa8), to(#48cf7e));
  background: linear-gradient(90deg, #209fa8 0%, #48cf7e 100%);
  border-style: solid;
  border-width: 2px;
  border-color: #078189;
  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: #078189;
}

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

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

/*==============================================
#form-wrapper h2
===============================================*/
#form-wrapper h2 {
  color: #078189;
  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: #cbf4f7;
  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: #078189;
  display: inline-block;
  font-size: 85%;
  padding: 0 2px 0 2px;
}

/*==============================================
#form-wrapper .other-soft
===============================================*/
form#mail_form .other-soft {
  padding: 0 0 0 20px;
}

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

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

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

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: 0px 0% 0px 2%;
  }
  /*==============================================
  #gnav04 .wrapper
  ===============================================*/
  #gnav04 .wrapper .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #gnav04 .wrapper .left h2 {
    padding: 5px 0 0 10px;
    font-size: 22px;
    color: #094347;
  }
  #gnav04 .wrapper .left h2 img {
    width: 150px;
    height: auto;
  }
  /*==============================================
  #gnav04 .wrapper .button
  ===============================================*/
  #gnav04 .wrapper .button {
    width: 170px;
  }
  #gnav04 .wrapper .button a {
    padding: 12px 10px 12px 10px;
  }
  #gnav04 .wrapper .button a .caption {
    font-size: 14px;
    margin: 0 0 4px 0;
    line-height: 1.1;
  }
  #gnav04 .wrapper .button a .caption span {
    padding: 0 3px 0 3px;
  }
  #gnav04 .wrapper .button a .caption:before {
    left: 10px;
    -webkit-transform: translateY(-50%) skew(20deg);
            transform: translateY(-50%) skew(20deg);
  }
  #gnav04 .wrapper .button a .caption:after {
    right: 10px;
    -webkit-transform: translateY(-50%) skew(-20deg);
            transform: translateY(-50%) skew(-20deg);
  }
  #gnav04 .wrapper .button a .catch {
    font-size: 15px;
    line-height: 1.2;
  }
  #gnav04 .wrapper .button a .catch img {
    width: 20px;
    padding: 0 2px 0 0;
    top: 3px;
  }
}

/* 769px responsive-closed */
@media screen and (max-width: 320px) {
  /*==============================================
  #gnav04 .wrapper h1
  ===============================================*/
  #gnav04 .wrapper h1 img {
    width: 140px;
    height: auto;
  }
  /*==============================================
  #gnav04 .wrapper .button
  ===============================================*/
  #gnav04 .wrapper .button {
    width: 150px;
  }
  #gnav04 .wrapper .button a {
    padding: 13px 10px 13px 10px;
  }
  #gnav04 .wrapper .button a .caption {
    font-size: 10px;
    margin: 0 0 4px 0;
    line-height: 1.1;
  }
  #gnav04 .wrapper .button a .caption span {
    padding: 0 3px 0 3px;
  }
  #gnav04 .wrapper .button a .caption:before {
    left: 5px;
    -webkit-transform: translateY(-50%) skew(20deg);
            transform: translateY(-50%) skew(20deg);
  }
  #gnav04 .wrapper .button a .caption:after {
    right: 5px;
    -webkit-transform: translateY(-50%) skew(-20deg);
            transform: translateY(-50%) skew(-20deg);
  }
  #gnav04 .wrapper .button a .catch {
    font-size: 12px;
    line-height: 1.2;
  }
  #gnav04 .wrapper .button a .catch img {
    width: 15px;
    padding: 0 2px 0 0;
    top: 3px;
  }
}

/* 481px 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) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 #HEADER31 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  /*==============================================
  #header31 .inner
  ===============================================*/
  #header31 .inner {
    width: 80%;
    min-width: 0;
    margin: -20px 0 0 0;
    /* #header31 .inner .text closed */
  }
  #header31 .inner .text {
    padding: 15px 0 30px 0;
    /* #header31 .inner .text h2 closed */
    /* #header31 .inner .text h1 closed */
    /* #header31 .inner .text h3 closed */
  }
  #header31 .inner .text .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: nowrap;
        flex-wrap: nowrap;
  }
  #header31 .inner .text .catch h5 {
    padding: 8px 15px 8px 15px;
    background: -webkit-gradient(linear, left top, right top, from(#209fa8), to(#48cf7e));
    background: linear-gradient(90deg, #209fa8 0%, #48cf7e 100%);
    color: #fff;
    text-align: center;
    display: block;
    font-size: 13px;
    line-height: 1.35;
  }
  #header31 .inner .text .catch .mark {
    border-radius: 60px;
    width: 60px;
    height: 60px;
    margin: 0 0 0 10px;
    font-size: 13px;
  }
  #header31 .inner .text h2 {
    font-size: 17px;
    padding: 0px 10px 15px 10px;
  }
  #header31 .inner .text h1 {
    margin: 0 0 25px 0;
    /* #header31 .inner .text h1 .one closed */
    /* #header31 .inner .text h1 .two closed */
  }
  #header31 .inner .text h1 .en p {
    font-size: 65px;
  }
  #header31 .inner .text h1 .kana {
    font-size: 56px;
    letter-spacing: -10px;
    line-height: 1.2;
    position: relative;
    top: -2px;
    padding: 0 3px 0 0;
  }
  #header31 .inner .text h1 .one .semi p {
    font-size: 56px;
  }
  #header31 .inner .text h1 .two .semi p.big {
    font-size: 56px;
  }
  #header31 .inner .text h1 .two .semi p.small {
    font-size: 28px;
  }
  #header31 .inner .text h3 {
    font-size: 15px;
  }
  /* #header31 .inner closed */
  /*==============================================
  #header31 .icon
  ===============================================*/
  #header31 .icon {
    display: none;
    position: absolute;
    bottom: 0px;
    top: -95px;
    right: 5%;
    z-index: 300;
  }
  #header31 .icon .block {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    font-size: 12px;
  }
  /*==============================================
  #header31 #conslider09
  ===============================================*/
  #header31 #conslider09 .conslider-block01 li,
  #header31 #conslider09 .conslider-block02 li {
    height: 320px;
    overflow: hidden;
    line-height: 0;
  }
  #header31 #conslider09 .conslider-block01 img,
  #header31 #conslider09 .conslider-block02 img {
    width: auto;
    height: 320px;
    line-height: 0;
  }
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 375px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 #HEADER31 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  /*==============================================
  #header31 .inner
  ===============================================*/
  #header31 .inner {
    width: 80%;
    min-width: 0;
    margin: -20px 0 0 0;
    /* #header31 .inner .text closed */
  }
  #header31 .inner .text {
    padding: 15px 0 30px 0;
    /* #header31 .inner .text h2 closed */
    /* #header31 .inner .text h1 closed */
    /* #header31 .inner .text h3 closed */
  }
  #header31 .inner .text .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: nowrap;
        flex-wrap: nowrap;
  }
  #header31 .inner .text .catch h5 {
    padding: 8px 15px 8px 15px;
    background: -webkit-gradient(linear, left top, right top, from(#209fa8), to(#48cf7e));
    background: linear-gradient(90deg, #209fa8 0%, #48cf7e 100%);
    color: #fff;
    text-align: center;
    display: block;
    font-size: 13px;
    line-height: 1.35;
  }
  #header31 .inner .text .catch .mark {
    border-radius: 60px;
    width: 60px;
    height: 60px;
    margin: 0 0 0 10px;
    font-size: 13px;
  }
  #header31 .inner .text h2 {
    font-size: 17px;
    padding: 0px 10px 15px 10px;
  }
  #header31 .inner .text h1 {
    margin: 0 0 25px 0;
    /* #header31 .inner .text h1 .one closed */
    /* #header31 .inner .text h1 .two closed */
  }
  #header31 .inner .text h1 .en p {
    font-size: 65px;
  }
  #header31 .inner .text h1 .kana {
    font-size: 56px;
    letter-spacing: -10px;
    line-height: 1.2;
    position: relative;
    top: -2px;
    padding: 0 3px 0 0;
  }
  #header31 .inner .text h1 .one .semi p {
    font-size: 56px;
  }
  #header31 .inner .text h1 .two .semi p.big {
    font-size: 56px;
  }
  #header31 .inner .text h1 .two .semi p.small {
    font-size: 28px;
  }
  #header31 .inner .text h3 {
    font-size: 15px;
  }
  /* #header31 .inner closed */
  /*==============================================
  #header31 .icon
  ===============================================*/
  #header31 .icon {
    display: none;
    position: absolute;
    bottom: 0px;
    top: -95px;
    right: 5%;
    z-index: 300;
  }
  #header31 .icon .block {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    font-size: 12px;
  }
  /*==============================================
  #header31 #conslider09
  ===============================================*/
  #header31 #conslider09 .conslider-block01 li,
  #header31 #conslider09 .conslider-block02 li {
    height: 320px;
    overflow: hidden;
    line-height: 0;
  }
  #header31 #conslider09 .conslider-block01 img,
  #header31 #conslider09 .conslider-block02 img {
    width: auto;
    height: 320px;
    line-height: 0;
  }
}

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

/* 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) {
  /*==============================================
  #headerto05 .box-wrapper
  ===============================================*/
  #headerto05 .box-wrapper {
    margin: -40px auto 20px;
    display: block;
  }
  #headerto05 .box-wrapper .box {
    width: 92%;
    margin: 0 auto 20px;
    padding: 10px 20px 10px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #headerto05 .box-wrapper .box:nth-child(3n) {
    margin: 0 auto 20px;
  }
  #headerto05 .box-wrapper .box .icon {
    width: 20%;
    padding: 0 40px 0 0;
  }
  #headerto05 .box-wrapper .box .icon img {
    height: 110px;
  }
  #headerto05 .box-wrapper .box .text {
    font-size: 25px;
    padding: 0 0 0 20px;
  }
}

/* 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) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
  
  〇 .CTA01 〇
  
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .cta01 {
    width: 100%;
    margin: 0 0 0 0;
    /* .cta01 .wrapper closed */
  }
  .cta01 .wrapper {
    padding: 40px 0 40px 0;
    /* .cta01 .inner closed */
  }
  .cta01 .wrapper .inner {
    width: 85%;
    margin: 0 auto;
    /* .cta01 .inner .haedline closed */
    /* .cta01 .inner .box closed */
  }
  .cta01 .wrapper .inner .headline {
    display: block;
    margin: 0 0 30px 0;
  }
  .cta01 .wrapper .inner .headline h2 {
    font-size: 38px;
    margin: 0 0px 15px 0;
    border-right: none;
    padding: 0 0px 0 0;
    letter-spacing: 1px;
  }
  .cta01 .wrapper .inner .headline h3 {
    font-size: 16px;
    letter-spacing: 1px;
    border-left: solid 2px #fff;
    padding: 0 0 0 10px;
  }
  .cta01 .wrapper .inner .box {
    padding: 30px 30px 30px 30px;
    display: block;
    /* .cta01 .inner .box .tel closed */
  }
  .cta01 .wrapper .inner .box .tel a {
    margin: 0 0 0px 0;
  }
  .cta01 .wrapper .inner .box .tel .number {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .cta01 .wrapper .inner .box .tel img {
    width: 30px;
    top: 3px;
  }
  .cta01 .wrapper .inner .box .tel .detail {
    padding: 0px 0 30px 0;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
  }
  .cta01 .wrapper .inner .box .tel .detail span {
    display: block;
    color: #aaa;
  }
  .cta01 .wrapper .inner .box .to-contact a {
    width: 100%;
    color: #fff;
    font-size: 18px;
    padding: 20px 0 20px 0;
  }
  .cta01 .wrapper .inner .box .to-contact a img {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  /* .cta01 closed */
}

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

/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cta01 {
    width: 100%;
    /* .cta01 .wrapper closed */
  }
  .cta01 .wrapper {
    padding: 50px 0 50px 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(7, 129, 137, 0.95)), to(rgba(15, 151, 140, 0.95)));
    background: linear-gradient(90deg, rgba(7, 129, 137, 0.95) 0%, rgba(15, 151, 140, 0.95) 100%);
    /* .cta01 .inner closed */
  }
  .cta01 .wrapper .inner {
    max-width: 1000px;
    margin: 0 auto;
    /* .cta01 .inner .haedline closed */
    /* .cta01 .inner .box closed */
  }
  .cta01 .wrapper .inner .headline {
    margin: 0 0 30px 0;
    padding: 0 5% 0 5%;
  }
  .cta01 .wrapper .inner .headline h2 {
    font-size: 50px;
    margin: 0 30px 0 0;
    padding: 0 30px 0 0;
  }
  .cta01 .wrapper .inner .headline h3 {
    font-size: 20px;
  }
  .cta01 .wrapper .inner .box {
    width: 85%;
    margin: 0 auto 0;
    background: #fff;
    padding: 25px 45px 25px 45px;
    display: block;
    /* .cta01 .inner .box .tel closed */
  }
  .cta01 .wrapper .inner .box .tel {
    margin: 0 auto 30px;
    text-align: center;
  }
  .cta01 .wrapper .inner .box .tel a {
    color: #000;
    text-decoration: none;
  }
  .cta01 .wrapper .inner .box .tel .number {
    font-family: futura-pt,futura-pt-bold, sans-serif;
    font-weight: 700;
    font-size: 50px;
  }
  .cta01 .wrapper .inner .box .tel img {
    width: 50px;
    height: auto;
    position: relative;
    top: 3px;
  }
  .cta01 .wrapper .inner .box .tel .detail {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .cta01 .wrapper .inner .box .tel .detail span {
    color: #aaa;
  }
  .cta01 .wrapper .inner .box .to-contact {
    text-align: center;
  }
  .cta01 .wrapper .inner .box .to-contact a {
    margin: 0 auto 0;
    display: block;
    width: 400px;
    background: #078189;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 20px 0 20px 0;
    line-height: 1.2;
    position: relative;
  }
  .cta01 .wrapper .inner .box .to-contact a .semi {
    border-radius: 40px;
    width: 80%;
    margin: -30px auto 15px;
    background: #fff;
    text-align: center;
    color: #078189;
    font-size: 15px;
    font-weight: 900;
    font-family: fot-tsukuardgothic-std, sans-serif;
    letter-spacing: -1px;
    border: solid 2px #078189;
    position: relative;
    padding: 3px 0 3px 0;
  }
  .cta01 .wrapper .inner .box .to-contact a .semi:before {
    content: "";
    position: absolute;
    top: 21px;
    left: 50%;
    border: 12px solid transparent;
    border-top: 12px solid #FFF;
    z-index: 2;
    border-radius: 5px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .cta01 .wrapper .inner .box .to-contact a img {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 30px;
    top: 55%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  /* .cta01 closed */
}

/* 768px～1023px responsive-closed */
/* 1024x〜2980px：大型PC
------------------------------ */
/* 1024x〜2980px responsive-closed */
/* 481px responsive-closed */
/* 2980px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 .SECTION17 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  /*==============================================
  .section17
  ===============================================*/
  .section17 {
    margin: 0px 0 0 0;
    padding: 90px 0 80px 0;
  }
  .section17 .inner {
    padding: 0 5% 0 5%;
  }
  .section17 .inner .block {
    display: block;
  }
  .section17 .inner .en {
    text-align: center;
    font-size: 80px;
    padding: 0 0px 0 0;
  }
  .section17 .inner h2 {
    text-align: center;
    font-size: 26px;
  }
  .section17 .inner h3 {
    text-align: center;
    font-size: 20px;
    margin: 10px 0 10px 0;
  }
  .section17 .inner .sentence {
    margin: 30px 0 0 0;
  }
  .section17 .inner .sentence p {
    color: #fff;
    font-size: 18px;
    padding: 15px 2% 15px 2%;
  }
  /* .section17 closed */
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 375px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 320px) {
  #header31 {
    height: 155vh;
  }
  #header31 .inner .text .box h1 {
    font-size: 28px;
  }
  #header31 .inner .text .box h2 {
    font-size: 19px;
  }
  #header31 .inner .text .box .icon-wrapper .icon:nth-child(3) {
    margin: -10px 0 0 0;
  }
}

/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section17 {
    margin: 0 auto 0;
  }
}

/* 768px～1023px responsive-closed */
/* 1024x〜2980px：大型PC
------------------------------ */
/* 1024x〜2980px responsive-closed */
/* 481px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #TARGETING04 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  #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.1;
  }
  #target04 h2 .inner .catch {
    font-size: 17px;
    white-space: nowrap;
  }
  /*==============================================
	#target04 .box
	===============================================*/
  #target04 .box {
    width: 100%;
    margin: 40px auto 0;
    display: block;
  }
  #target04 .box p.text {
    display: block;
    position: relative;
    z-index: 20;
    margin: 0 0px 0 0;
    top: 0;
    padding: 40px 0 0 20px;
  }
  #target04 .box p.text .semi {
    font-size: 22px;
    line-height: 1.5;
  }
  #target04 .box img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    margin: -30px auto 0;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 0px 0px #fff;
            box-shadow: 0px 0px 0px 0px #fff;
  }
  #target04 .box p.text .catch {
    font-size: 33px;
    line-height: 1.4;
    letter-spacing: -2px;
  }
  /*==============================================
	#target04 ul.checklist
	===============================================*/
  #target04 ul.checklist {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 5% 0px 5%;
  }
  #target04 ul.checklist li {
    width: 100%;
    margin: 0 0% 20px 0px;
    padding: 0px 0px 0px 0px;
    background: #fff url(../images/target04-icon-check.svg) no-repeat 20px center;
    background-size: 25px auto;
    font-size: 19px;
  }
  #target04 ul.checklist li .icon {
    width: 12%;
  }
  #target04 ul.checklist li p {
    padding: 20px 20px 20px 20px;
    width: 88%;
  }
  /*==============================================
  #target04 .explain
  ===============================================*/
  #target04 .explain img {
    width: 300px;
    height: auto;
    padding: 0 30px 0 0;
  }
  #target04 .explain p {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
  /*==============================================
	#target04 .explain
	===============================================*/
  #target04 .explain {
    padding: 0px 0 0 0;
    display: block;
    text-align: center;
  }
  #target04 .explain img {
    width: 160px;
    padding: 0 0px 0 0;
    margin: 0 0px 30px 0;
  }
  #target04 .explain p {
    font-size: 19px;
    line-height: 1.45;
  }
}

/* 767px responsive-closed */
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #target04 .box {
    padding: 0 5% 0 5%;
    margin: 150px auto 0;
  }
  #target04 .box img {
    width: 320px;
    height: auto;
  }
  #target04 .box p.text .catch {
    font-size: 38px;
  }
}

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

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

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

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

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #conslider09 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 769px) {
  /*==============================================
#conslider09
===============================================*/
  #conslider09 {
    width: 100%;
    padding: 0 0 0px 0;
    position: relative;
  }
  #conslider09 .middle {
    width: 20rem;
    height: 20rem;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #conslider09 .middle h3 {
    font-size: 50px;
    padding: 30px 0 0 0;
  }
  #conslider09 .middle h2 {
    font-size: 35px;
    padding: 10px 0 0 0;
  }
  #conslider09 .middle h4 {
    font-size: 16px;
    padding: 20px 4% 20px 4%;
    line-height: 2.0;
    letter-spacing: 1.0px;
  }
  #conslider09 .hero02 {
    margin: -2px 0 0 0;
  }
  #conslider09 .sentence {
    padding: 25px 5% 0 5%;
  }
  #conslider09 .sentence p {
    padding: 10px 0 10px 0;
    line-height: 1.75;
    font-size: 16px;
  }
  #conslider09 .swiper-container {
    overflow: hidden !important;
    max-width: 1980px;
    padding: 0px 0 0px 0;
    margin: 0 auto;
  }
  #conslider09 .swiper-slide {
    line-height: 1.0;
  }
  #conslider09 .swiper-slide img {
    width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform 1.9s ease;
    transition: -webkit-transform 1.9s ease;
    transition: transform 1.9s ease;
    transition: transform 1.9s ease, -webkit-transform 1.9s ease;
  }
  #conslider09 .swiper-slide-active > img {
    -webkit-transform: none;
            transform: none;
  }
  #conslider09 .swiper-slide-active::after {
    opacity: 0;
  }
}

/* 769px responsive-closed */
@media screen and (max-width: 320px) {
  /*==============================================
#conslider09
===============================================*/
  #conslider09 {
    width: 100%;
    padding: 0 0 0px 0;
    position: relative;
  }
  #conslider09 .middle {
    width: 17rem;
    height: 17rem;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #conslider09 .middle h3 {
    font-size: 40px;
    padding: 30px 5px 0 5px;
  }
  #conslider09 .middle h2 {
    font-size: 25px;
    padding: 10px 0 0 0;
  }
  #conslider09 .middle h4 {
    font-size: 13px;
    padding: 20px 2% 20px 2%;
    line-height: 1.85;
    letter-spacing: 1.0px;
  }
  #conslider09 .hero02 {
    margin: -2px 0 0 0;
  }
  #conslider09 .swiper-container {
    overflow: hidden !important;
    max-width: 1980px;
    padding: 0px 0 0px 0;
    margin: 0 auto;
  }
  #conslider09 .swiper-slide {
    line-height: 1.0;
  }
  #conslider09 .swiper-slide img {
    width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform 1.9s ease;
    transition: -webkit-transform 1.9s ease;
    transition: transform 1.9s ease;
    transition: transform 1.9s ease, -webkit-transform 1.9s ease;
  }
  #conslider09 .swiper-slide-active > img {
    -webkit-transform: none;
            transform: none;
  }
  #conslider09 .swiper-slide-active::after {
    opacity: 0;
  }
}

/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 #CONSLIDER13 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  /*==============================================
  #conslider13 .slick-listの設定
  ===============================================*/
  #conslider13 .slick-list {
    padding: 60px 0 60px 0 !important;
  }
  /*==============================================
  #conslider13  .wrapper
  ===============================================*/
  #conslider13 .wrapper {
    width: 100%;
    padding: 50px 0 50px;
    position: relative;
    background: #cbf4f7;
    background-size: cover;
  }
  /*==============================================
  #conslider13 .conslider-block
  ===============================================*/
  #conslider13 .conslider-block {
    margin: 0px auto;
    padding: 0px 0 0px 0;
  }
  /*==============================================
  #conslider13 .conslider-block li
  ===============================================*/
  #conslider13 .conslider-block li {
    border: solid 4px #078189;
    margin: 0 20px 0 20px;
    background: #fff;
    overflow: hidden;
  }
  /*==============================================
  #conslider13 .conslider-block li .h3
  ===============================================*/
  #conslider13 .conslider-block li h3 {
    padding: 30px 20px 0 20px;
  }
  #conslider13 .conslider-block li h3 .mark {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    padding: 5px 22px;
  }
  #conslider13 .conslider-block li h3 .mark span {
    background: #1b7279;
    font-size: 14px;
    padding: 3px 9px;
    border-radius: 30px;
    position: relative;
    top: -2px;
    left: 3px;
  }
  #conslider13 .conslider-block li h3 .title {
    display: inline-block;
    font-size: 32px;
    padding: 0 0 0 20px;
  }
  /*==============================================
  #conslider13 .conslider-block li .text 
  ===============================================*/
  #conslider13 .conslider-block li .image {
    padding: 15px 10px 15px 10px;
  }
  #conslider13 .conslider-block li .image .left {
    width: 35%;
  }
  #conslider13 .conslider-block li .image .left img.img01 {
    width: 80%;
    height: auto;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 5px;
    border: solid 2px #aaa;
  }
  #conslider13 .conslider-block li .image .left img.img02 {
    width: 80%;
    height: auto;
    position: relative;
    margin: -20px 0 0 20%;
    z-index: 2;
    background: #fff;
    padding: 2px;
    border: solid 2px #aaa;
  }
  #conslider13 .conslider-block li .image .left h4 {
    font-family: futura-pt-bold, sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 25px;
    letter-spacing: 1px;
    padding: 10px 0 0 0;
  }
  #conslider13 .conslider-block li .image .middle {
    width: 10%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #conslider13 .conslider-block li .image .middle img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 0;
  }
  #conslider13 .conslider-block li .image .middle h4 {
    text-align: center;
    font-size: 16px;
    color: #078189;
    line-height: 1.25;
  }
  #conslider13 .conslider-block li .image .right {
    width: 55%;
  }
  #conslider13 .conslider-block li .image .right img.img03 {
    width: 100%;
    height: auto;
    background: #fff;
    padding: 8px;
    border: solid 2px #aaa;
  }
  #conslider13 .conslider-block li .image .right h4 {
    font-size: 35px;
    letter-spacing: 1px;
  }
  /*==============================================
  #conslider13 .conslider-block li .text 
  ===============================================*/
  #conslider13 .conslider-block li .text {
    padding: 20px 0 20px 0;
    background: #078189;
  }
  #conslider13 .conslider-block li .text .sentence {
    padding: 0 20px 0 20px;
    font-size: 18px;
    line-height: 1.5;
  }
  #conslider13 .conslider-block li .text .sentence p {
    padding: 10px 0 10px 0;
    color: #fff;
  }
  /*==============================================
  #conslider13 .conslider-block .slick-next
  ===============================================*/
  #conslider13 .slick-next.slick-arrow,
  #conslider13 .slick-prev.slick-arrow {
    background: #078189 !important;
    opacity: 1 !important;
    width: 35px;
    height: 35px;
    z-index: 100;
    border-radius: 35px;
  }
  #conslider13 .slick-prev.slick-arrow {
    left: 3.5% !important;
    top: 60% !important;
  }
  #conslider13 .slick-next.slick-arrow {
    right: 3.5% !important;
    top: 60% !important;
  }
  #conslider13 .slick-prev.slick-arrow:hover,
  #conslider13 .slick-next.slick-arrow:hover {
    background: #094347;
    opacity: 1 !important;
  }
  #conslider13 .slick-prev::before,
  #conslider13 .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;
  }
  #conslider13 .slick-prev:before {
    right: 15px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  #conslider13 .slick-next:before {
    right: 15px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  /*==============================================
  #conslider13 . .additional
  ===============================================*/
  #conslider13 .additional h4 {
    padding: 20px 0 20px;
    font-size: 22px;
  }
  #conslider13 .additional p {
    max-width: 800px;
    margin: 0 auto 0;
    padding: 0 5% 0 5%;
    text-align: center;
    font-size: 16px;
  }
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 375px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /*==============================================
  #conslider13 .slick-listの設定
  ===============================================*/
  #conslider13 .slick-list {
    padding: 60px 0 60px 0 !important;
  }
  /*==============================================
  #conslider13 .conslider-block .slick-next
  ===============================================*/
  #conslider13 .slick-next.slick-arrow,
  #conslider13 .slick-prev.slick-arrow {
    background: #078189 !important;
    opacity: 1 !important;
    width: 95px;
    height: 95px;
    z-index: 100;
    border-radius: 95px;
  }
  #conslider13 .slick-prev.slick-arrow {
    left: 3.5% !important;
    top: 50% !important;
  }
  #conslider13 .slick-next.slick-arrow {
    right: 3.5% !important;
    top: 50% !important;
  }
  #conslider13 .slick-prev.slick-arrow:hover,
  #conslider13 .slick-next.slick-arrow:hover {
    background: #094347;
    opacity: 1 !important;
  }
  #conslider13 .slick-prev::before,
  #conslider13 .slick-next::before {
    content: "" !important;
    width: 16px;
    height: 16px;
    border: 0px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -8px;
    pointer-events: none;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 200;
  }
  #conslider13 .slick-prev:before {
    left: 20px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  #conslider13 .slick-next:before {
    right: 40px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

/* 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) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 .SECTION51 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  /*==============================================
  .section51
  ===============================================*/
  .section51 .wrapper {
    width: 100%;
    padding: 0 0 0px 0;
    position: relative;
    height: 420px;
  }
  .section51 .wrapper #youtube-area {
    width: 100%;
    height: 420px;
    position: relative;
    z-index: 1;
  }
  .section51 .middle {
    width: 280px;
    height: 280px;
    overflow: hidden;
  }
  .section51 .middle .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .section51 .middle h3 {
    font-size: 60px;
    top: -10px;
    left: 0;
    opacity: 0.2;
  }
  .section51 .middle h2 {
    font-size: 27px;
    padding: 0px 0 0 20px;
  }
  .section51 .middle h4 {
    font-size: 16px;
    padding: 10px 4% 10px 4%;
    line-height: 2.0;
    letter-spacing: 1px;
  }
  .section51 .sentence {
    max-width: 1200px;
    margin: 0 auto 0;
    padding: 40px 4% 0 4%;
  }
  .section51 .sentence p {
    padding: 10px 0 10px 0;
    line-height: 1.75;
    font-size: 18px;
  }
  .section51 .addtional {
    padding: 50px 0 50px 0;
    background: -webkit-gradient(linear, left top, right top, from(#209fa8), to(#48cf7e));
    background: linear-gradient(90deg, #209fa8 0%, #48cf7e 100%);
  }
  .section51 .addtional .cover {
    max-width: 1180px;
    padding: 0 3.5% 0 3.5%;
    margin: 0 auto 0;
  }
  .section51 .addtional h3 {
    text-align: center;
    font-size: 35px;
    letter-spacing: 2px;
    font-weight: 900;
    color: #094347;
  }
  .section51 .addtional h4 {
    text-align: center;
    font-family: futura-pt-bold, sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #094347;
    margin: 0 0 20px 0;
  }
  .section51 .addtional ul {
    margin: 0;
    padding: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section51 .addtional ul li {
    color: #fff;
    width: 32%;
    padding: 0;
    margin: 10px 2% 0 0;
    font-size: 17px;
    list-style-type: none;
  }
  .section51 .addtional ul li:nth-child(3n) {
    margin: 10px 0 0 0;
  }
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 375px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px 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 */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .VIDEO01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 769px) {
  /*==============================================
.video01
===============================================*/
  .video01 {
    margin: 100px 0 0px 0;
    overflow: visible;
    padding: 0px 0 0px 0;
  }
  .video01 .wrapper {
    background: black;
    padding: 10px 0 30px 0;
  }
  .video01 .inner {
    display: block;
  }
  .video01 .inner .js-video-button {
    width: 92%;
    cursor: pointer;
    margin: -50px auto 0;
  }
  .video01 .inner .js-video-button img.thumb {
    width: 100%;
    height: auto;
  }
  .video01 .inner .js-video-button .caption {
    font-size: 16px;
    text-align: center;
    padding: 10px 0px 0px 10px;
  }
  .video01 .inner .right {
    padding: 40px 5% 10px 5%;
    margin: 0 auto 0;
    overflow: hidden;
  }
  .video01 .inner .right h4 {
    white-space: nowrap;
    top: -100px;
    left: 50px;
    color: #fff;
    opacity: 0.15;
    font-size: 90px;
    z-index: 1;
  }
  .video01 .inner .right h2 {
    font-size: 50px;
    letter-spacing: 5px;
    font-weight: 900;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    margin: -20px 0 10px 0;
  }
  .video01 .inner .right h3 {
    font-size: 20px;
  }
}

/* 769px responsive-closed */
/* 320px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 769px) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 .SECTION52 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  /*==============================================
  .section52
  ===============================================*/
  .section52 .wrapper {
    width: 100%;
    padding: 50px 0 50px 0;
  }
  .section52 .inner {
    display: block;
  }
  .section52 .inner .box {
    width: 100%;
    margin: 0 0% 20px 0;
  }
  .section52 .inner .box:nth-child(3n) {
    margin: 0 0% 20px 0;
  }
  .section52 .inner .box .sentence P {
    padding: 10px 10px 10px 10px;
    font-size: 17px;
    line-height: 2.0;
  }
  .section52 .inner .mark {
    width: 100%;
    min-height: 0px;
  }
  .section52 .inner .mark .inside {
    padding: 30px 30px 30px 30px;
    line-height: 1.2;
  }
  .section52 .inner .mark .inside h4 {
    font-size: 20px;
    letter-spacing: 2px;
  }
  .section52 .inner .mark .inside img.icon {
    width: 140px;
    margin: 20px auto 20px;
  }
  .section52 .inner .mark .inside .semi span.normal {
    font-size: 20px;
    margin: 0 0 10px 0;
    -webkit-transform: skew(20deg);
            transform: skew(20deg);
  }
  .section52 .inner .mark .inside .semi span.normal02 {
    font-size: 20px;
    letter-spacing: -1px;
  }
  .section52 .inner .mark .inside p.emphasis {
    padding: 25px 0 25px 0;
    line-height: 1.15;
  }
  .section52 .inner .mark .inside p.emphasis02 {
    padding: 10px 0 10px 0;
    line-height: 1.15;
  }
  .section52 .inner .mark .inside span.middle {
    font-size: 47px;
    color: #fff;
    font-weight: 900;
  }
  .section52 .inner .mark .inside span.big {
    font-size: 62px;
    color: #fff;
    font-weight: 900;
  }
  .section52 .inner .mark .inside span.plus {
    font-size: 35px;
    color: #fff;
    font-weight: 900;
  }
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 375px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px 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) {
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 #POINT04 〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
	====================================================================*/
  #point04 .box-wrapper {
    width: 100%;
  }
  #point04 .box-wrapper:after,
  #point04 .box .top:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
  }
  /*============================================
	#point04 .box
	=============================================*/
  #point04 .box {
    float: none;
    width: 92%;
    margin: 15px auto 15px;
    border: solid 2px #078189;
    padding: 0 0 20px 0;
  }
  #point04 .box:nth-child(2n) {
    margin: 15px auto 15px;
  }
  /*============================================
	#point04 .box .left
	=============================================*/
  #point04 .box .top .left {
    float: left;
    width: 22%;
    padding: 10px 10px 10px 10px;
  }
  #point04 .box .top .left img {
    width: 100%;
    height: auto;
  }
  /*============================================
	#point04 .box .right
	=============================================*/
  #point04 .box .top .right {
    float: right;
    width: 78%;
    padding: 10px 15px 0px 15px;
  }
  #point04 .box .top .right h3 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #078189;
    padding: 0 0 10px 0;
  }
  /*============================================
  #point04 .box .sentence
  =============================================*/
  #point04 .box .sentence {
    padding: 0px 15px 0px 15px;
  }
  #point04 .box .sentence p {
    font-size: 16px;
  }
  /*============================================
	#point04 p.catch
	=============================================*/
  #point04 p.catch {
    font-size: 22px;
    text-align: center;
    line-height: 1.5;
    font-weight: 700;
    color: #078189;
    padding: 0 0 20px 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) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 #FLOW01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  /*==============================================
  #flow01 .step
  ===============================================*/
  #flow01 .step {
    font-size: 45px;
  }
  /*==============================================
  #flow01 .left
  ===============================================*/
  #flow01 .left .text {
    float: none;
    width: 100%;
    height: auto;
  }
  #flow01 .left img {
    float: none;
    width: 100%;
    height: auto;
  }
  /*==============================================
  #flow01 .right
  ===============================================*/
  #flow01 .right .text {
    float: none;
    width: 100%;
    height: auto;
  }
  #flow01 .right img {
    float: none;
    width: 100%;
    height: auto;
  }
  /*==============================================
  #flow01 .box
  ===============================================*/
  #flow01 .box {
    width: 90%;
    margin: 0 auto;
    padding: 25px 25px 25px 25px;
  }
  #flow01 .box h3 {
    font-size: 24px;
    padding: 15px 0 15px 0;
  }
  #flow01 .box .text p {
    font-size: 15px;
  }
  /*==============================================
  #flow01 .addtional
  ===============================================*/
  #flow01 .addtional {
    width: 98%;
    margin: 30px auto 0;
    display: block;
  }
  #flow01 .addtional .text {
    display: block;
    position: relative;
    top: 0px;
  }
  #flow01 .addtional img {
    width: 60%;
    display: block;
    margin: 0 auto;
  }
  #flow01 .addtional .text .semi {
    font-size: 18px;
    width: 120px;
  }
  #flow01 .addtional .text .catch {
    font-size: 32px;
    padding: 2px 10px 20px;
  }
}

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

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

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  /*================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

  〇 .SECTION40 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  =================================================================*/
  .section40 {
    padding: 60px 0 45px 0;
  }
  /*==============================================
  .section40
  ===============================================*/
  .section40 .sentence {
    max-width: 1000px;
    padding: 0 4% 0 4%;
    margin: 0 auto 0;
  }
  .section40 .sentence h2 {
    padding: 40px 0% 20px 0%;
    font-size: 22px;
  }
  .section40 .sentence p {
    padding: 10px 0 10px 0;
    font-size: 17px;
    letter-spacing: 1.5px;
  }
  /* .section40 closed */
}

/* 767px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 414px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 375px以下のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 414px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 320px) {
  #header31 {
    height: 155vh;
  }
  #header31 .inner .text .box h1 {
    font-size: 28px;
  }
  #header31 .inner .text .box h2 {
    font-size: 19px;
  }
  #header31 .inner .text .box .icon-wrapper .icon:nth-child(3) {
    margin: -10px 0 0 0;
  }
}

/* 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) {
  /*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .CONTACT01　〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
  /*===========================
.contact01 .sentence
===========================*/
  .contact01 .sentence {
    width: 92%;
  }
  .contact01 .sentence p {
    font-size: 16px;
  }
  /*===========================
.contact01 .btn
===========================*/
  .contact01 .btn {
    width: 92%;
    margin: 0 auto;
  }
  .contact01 .btn a {
    margin: 15px auto 15px;
    font-size: 19px;
  }
  .contact01 .btn a img {
    width: 32px;
  }
  .contact01 .pc-tel {
    font-size: 16px;
    width: 90%;
    margin: 0 auto 0;
    text-align: center;
    font-weight: 500;
  }
}

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

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

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

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