@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 .wrapper {
  padding: 0px 0% 0px 0%;
}

#gnav04 .wrapper .left {
  position: absolute;
  background: #000000;
  -webkit-box-shadow: 0px 4px 8px 3px #7a7a7a;
          box-shadow: 0px 4px 8px 3px #7a7a7a;
  z-index: 1000;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 160px;
  height: 160px;
}

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

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

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 #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;
  background: rgba(217, 217, 217, 0.85);
  position: relative;
}

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

/* #header31 closed */
/*==============================================
#header31 .inner
===============================================*/
#header31 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 2980px;
  margin: 0 auto 0;
  height: 750px;
  /* #header31 .inner .text closed */
}

#header31 .inner .text {
  width: 50%;
  padding: 0px 120px 0px 0px;
  position: relative;
  z-index: 10;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: source-han-serif-japanese,"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
  /* #header31 .inner .text h2 closed */
  /* #header31 .inner .text h1 closed */
  /* #header31 .inner .text h3 closed */
}

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

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

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

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

#header31 .inner .text h1 .one .semi p span {
  color: #078189;
}

#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 */
/*==============================================
#conslider10
===============================================*/
#header31 .inner .slick-list {
  height: 750px !important;
}

#header31 .inner .slick-vertical .slick-slide {
  border: none;
}

#header31 .inner #conslider10 {
  width: 50%;
}

#header31 .inner #conslider10 li {
  list-style-type: none;
}

#header31 .inner #conslider10 img {
  width: 100%;
  height: auto;
}

/*==============================================
#header31 .addtional
===============================================*/
#header31 .addtional {
  background: -webkit-gradient(linear, left top, right top, from(#158b94), to(#139748));
  background: linear-gradient(90deg, #158b94 0%, #139748 100%);
}

#header31 .addtional .sentence {
  padding: 10px 3.5% 10px 3.5%;
  max-width: 1280px;
  margin: 0 auto 0;
}

#header31 .addtional .sentence p {
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
  font-size: 22px;
}

#header31 .addtional .sentence p span {
  display: inline-block;
  font-size: 18px;
  padding: 4px 10px 4px 10px;
  margin: 0 5px 0 0;
  border: solid 2px #fff;
  border-radius: 30px;
}

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

.cta03 .wrapper {
  padding: 40px 0 50px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(21, 139, 148, 0.95)), to(rgba(19, 151, 72, 0.95)));
  background: linear-gradient(90deg, rgba(21, 139, 148, 0.95) 0%, rgba(19, 151, 72, 0.95) 100%);
  /* .cta03 .inner closed */
}

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

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

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

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

.cta03 .wrapper .inner .box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* .cta03 .inner .box-wrapper .box closed */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* .cta03 closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .SECTION12 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
.section12 variables(変数制定)
===============================================*/
.section12 {
  width: 100%;
  height: 100%;
  background: url(../images/section12-bg.jpg) no-repeat center center;
  background-size: cover;
}

.section12 .en01 {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  color: #646464;
  font-size: 180px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0.2;
  text-align: left;
  line-height: 1.0;
}

.section12 .en02 {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  color: #646464;
  font-size: 180px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  opacity: 0.2;
  text-align: right;
  line-height: 1.0;
}

.section12 .wrapper {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  padding: 120px 0 120px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 子要素をflexboxにより中央に配置する */
  text-align: center;
  position: relative;
}

.section12 .inner {
  width: 100%;
  height: 100%;
  font-family: source-han-serif-japanese,"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
  z-index: 20;
}

.section12 .inner h2 {
  font-size: 55px;
  padding: 0 0 0 0;
  color: #fff;
  letter-spacing: 5px;
}

.section12 .inner h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 3px;
  -webkit-transform: skew(-25deg);
          transform: skew(-25deg);
  display: inline-block;
  padding: 10px 50px 10px 50px;
  border: solid 3px #fff;
  margin: 0 0 30px 0;
}

.section12 .inner h3 span {
  display: block;
  -webkit-transform: skew(25deg);
          transform: skew(25deg);
}

.section12 .inner h4 {
  font-size: 20px;
  color: #fff;
  padding: 20px 0 30px 0;
  font-family: lemonde-journal, serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
}

.section12 .inner .sentence {
  padding: 0 0 0 0;
}

.section12 .inner .sentence p {
  font-size: 22px;
  color: #fff;
  line-height: 1.75;
  padding: 20px 0 20px 0;
  letter-spacing: 2px;
  font-weight: 700;
}

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

.title02-01 h2 {
  font-weight: 700;
  font-size: 55px;
  position: relative;
  z-index: 2;
  padding: 15px 0 0 0;
  color: #078189;
  font-family: source-han-serif-japanese,"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
  letter-spacing: 3px;
}

.title02-01 h3 {
  font-weight: 700;
  font-size: 20px;
  position: relative;
  z-index: 2;
  color: #078189;
  font-family: source-han-serif-japanese,"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
}

.title02-01 p.en {
  color: #078189;
  margin: 20px 0 auto 0;
  display: inline-block;
  border: solid 2px #078189;
  padding: 4px 40px 6px 40px;
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 700;
  border-radius: 40px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
}

.title02-01 p.back {
  overflow: hidden;
  position: absolute;
  top: 40px;
  left: 50%;
  font-weight: 700;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 8.7rem;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  color: #1b7279;
  opacity: 0.2;
  white-space: nowrap;
  display: inline-block;
  z-index: 1;
}

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

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

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

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

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

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

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

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

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT11 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/*==============================================
.point11 variables(変数設定)
===============================================*/
.point11 {
  padding: 15px 0 15px 0;
  background: #fff;
}

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

.point11 .inner .box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.point11 .inner .box-wrapper .box {
  width: 23.5%;
  background: #fff;
  border: solid 1px #ccc;
  margin: 0 2% 20px 0;
  padding: 0px 0px 0px 0px;
}

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

.point11 .inner .box-wrapper .box .thumb {
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 0;
}

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

.point11 .inner .box-wrapper .box .mark {
  position: relative;
  z-index: 2;
  margin: -15px 0 0 0;
  padding: 0 20px 0 20px;
}

.point11 .inner .box-wrapper .box .mark p {
  display: inline-block;
  background: #078189;
  color: #fff;
  font-size: 14px;
  margin: 0 10px 10px 0;
  padding: 3px 12px 3px 12px;
}

.point11 .inner .box-wrapper .box .inside {
  padding: 0 30px 0px 30px;
}

.point11 .inner .box-wrapper .box .inside h3 {
  margin: 15px 0 0 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  letter-spacing: -1px;
  color: #078189;
}

.point11 .inner .box-wrapper .box .inside h4 {
  margin: 15px 0 0 0;
  font-size: 22px;
  color: #aaa;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.point11 .inner .box-wrapper .box .inside ul {
  margin: 30px 0 0 0;
  padding: 0 0 20px 0;
}

.point11 .inner .box-wrapper .box .inside ul li {
  padding: 10px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 17px;
  font-weight: 500;
  border-top: solid 1px #ccc;
}

.point11 .inner .box-wrapper .box .inside ul li img.icon {
  width: 18px;
  height: auto;
  position: relative;
  top: 3px;
}

/*================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 #CONSLIDER07 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
=================================================================*/
/*==============================================
#conslider07 variables(変数設定)
===============================================*/
#conslider07 {
  width: 100%;
  padding: 0 0 40px 0;
}

#conslider07 .inner {
  padding: 35px 0 0 0;
}

#conslider07 .swiper-container {
  overflow: hidden !important;
  max-width: 1980px;
  padding: 30px 0 20px 0;
  margin: 0 auto;
}

#conslider07 .swiper-slide {
  position: relative;
}

#conslider07 .swiper-slide img.thumb {
  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;
}

#conslider07 .swiper-slide-active > img {
  -webkit-transform: none;
          transform: none;
}

#conslider07 .swiper-slide-active::after {
  opacity: 0;
}

#conslider07 .swiper-slide ul {
  margin: 30px 0 0 0;
  padding: 0 0 20px 0;
}

#conslider07 .swiper-slide ul li {
  padding: 10px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 17px;
  font-weight: 500;
  border-top: solid 1px #ccc;
}

#conslider07 .swiper-slide ul li img.icon {
  width: 18px;
  height: auto;
  position: relative;
  top: 3px;
}

#conslider07 .sentence {
  max-width: 1000px;
  margin: 0 auto 0;
  padding: 0 4% 0 4%;
}

#conslider07 .sentence h3 {
  text-align: center;
  font-family: source-han-serif-japanese,"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
}

#conslider07 .sentence p {
  text-align: center;
  font-size: 22px;
  padding: 10px 0 10px 0;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .title09-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
.title09-01 {
  position: relative;
}

/*==============================================
.title09-01 h2 .wrapper
===============================================*/
.title09-01 h2 {
  padding: 20px 0 20px 0;
  font-family: source-han-serif-japanese,"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
}

.title09-01 h2.color01 {
  background: -webkit-gradient(linear, left top, right top, from(#158b94), to(#139748));
  background: linear-gradient(90deg, #158b94 0%, #139748 100%);
}

.title09-01 h2.color01 .semi {
  color: #093b3f;
}

.title09-01 h2.color01 .semi span.small {
  border: solid 1px #093b3f;
  font-size: 20px;
}

.title09-01 h2.color02 {
  background: #000;
}

.title09-01 h2.color02 .semi {
  color: #fff;
}

.title09-01 h2.color02 .semi span.small {
  border: solid 1px #fff;
}

.title09-01 h2 .title-wrapper {
  max-width: 1000px;
  margin: 0 auto 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;
}

.title09-01 h2 .title-wrapper .semi {
  text-align: center;
  font-weight: 900;
  line-height: 1.3;
}

.title09-01 h2 .title-wrapper .semi span.small {
  font-size: 18px;
  padding: 2px 10px 2px 10px;
  display: block;
  letter-spacing: 2.5px;
}

.title09-01 h2 .title-wrapper .semi span.big {
  font-size: 30px;
  letter-spacing: 1px;
}

.title09-01 h2 .title-wrapper .catch {
  text-align: center;
  font-size: 50px;
  color: #fff;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 0 0 0 35px;
  line-height: 1.3;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .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(#158b94), to(#139748));
  background: linear-gradient(90deg, #158b94 0%, #139748 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;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .BUTTON01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.button01 various
===============================================*/
/*==============================================
.button01
===============================================*/
.button01 {
  width: 700px;
  margin: 0px auto 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section51 .wrapper #youtube-area {
  width: 100%;
  height: 600px;
  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 .middle h4 span {
  position: relative;
  left: 13px;
  margin: -7px 0 0 0;
}

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

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 .VIDEO01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
====================================================================*/
/*==============================================
.video01
===============================================*/
.video01 {
  margin: 0px 0 0px 0;
  overflow: hidden;
  padding: 100px 0 0px 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;
}

/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #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 30px 0;
}

/*==============================================
#faq01 .accordion
===============================================*/
#faq01 .accordion {
  max-width: 1200px;
  padding: 20px 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 80px 30px 80px;
  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;
  line-height: 1.75;
}

.title10-01 .title-middle h2 span {
  text-orientation: sideways;
}

.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(#158b94), to(#139748));
  background: linear-gradient(90deg, #158b94 0%, #139748 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 .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 .dd-explain
===============================================*/
form#mail_form .dt-explain {
  padding: 10px 0 10px 0;
}

form#mail_form .dt-explain p {
  font-size: 14px;
  color: #093b3f;
}

/*==============================================
form#mail_form .dd-explain
===============================================*/
form#mail_form .dd-explain {
  padding: 10px 0 10px 0;
}

form#mail_form .dd-explain p {
  font-size: 15px;
}

/*==============================================
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 0;
  }
  /*==============================================
  #gnav04 .wrapper
  ===============================================*/
  #gnav04 .wrapper .left {
    position: static;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: auto;
    padding: 5px 0px 5px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #7a7a7a;
            box-shadow: 0px 0px 0px 0px #7a7a7a;
  }
  #gnav04 .wrapper .left h2 {
    padding: 5px 0 0 15px;
  }
  #gnav04 .wrapper .left h2 img {
    width: 130px;
    height: auto;
  }
  #gnav04 .wrapper .left h3 {
    font-size: 13px;
    letter-spacing: 1px;
    padding: 0px 15px 0px 0px;
  }
}

/* 769px responsive-closed */
@media screen and (max-width: 320px) {
  /*==============================================
  #gnav04 .wrapper
  ===============================================*/
  #gnav04 .wrapper .left {
    padding: 5px 0px 5px 0px;
  }
  #gnav04 .wrapper .left h2 {
    padding: 5px 0 0 10px;
  }
  #gnav04 .wrapper .left h2 img {
    width: 110px;
    height: auto;
  }
  #gnav04 .wrapper .left h3 {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 0px 10px 0px 0px;
  }
}

/* 320px 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 {
    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;
    height: 500px;
    /* #header31 .inner .text closed */
  }
  #header31 .inner .text {
    width: 55%;
    height: 100%;
    padding: 0px 0px 0px 0px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* #header31 .inner .text h2 closed */
    /* #header31 .inner .text h1 closed */
    /* #header31 .inner .text h3 closed */
  }
  #header31 .inner .text h2 {
    font-size: 16px;
    padding: 0px 0 0px 0px;
    display: none;
  }
  #header31 .inner .text h1 {
    text-align: center;
    margin: 0 0 0px 15px;
    /* #header31 .inner .text h1 .one closed */
  }
  #header31 .inner .text h1 .en p {
    font-size: 30px;
  }
  #header31 .inner .text h1 .one .semi p {
    font-size: 45px;
  }
  #header31 .inner .text h3 {
    font-size: 18px;
    line-height: 1.2;
  }
  /* #header31 .inner closed */
  /*==============================================
  #conslider10
  ===============================================*/
  #header31 .inner .slick-list {
    height: 500px !important;
  }
  #header31 .inner .slick-vertical .slick-slide {
    border: none;
  }
  #header31 .inner #conslider10 {
    width: 45%;
  }
  #header31 .inner #conslider10 li {
    list-style-type: none;
  }
  #header31 .inner #conslider10 img {
    width: 100%;
    height: auto;
  }
  /*==============================================
  #header31 .addtional
  ===============================================*/
  #header31 .addtional .sentence {
    padding: 10px 3% 10px 3%;
    margin: 0 auto 0;
  }
  #header31 .addtional .sentence p {
    font-size: 18px;
  }
  #header31 .addtional .sentence p span {
    font-size: 15px;
    padding: 3px 8px 3px 8px;
    margin: 0 4px 0 0;
    border: solid 2px #fff;
    border-radius: 30px;
  }
}

/* 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 */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 767px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
  
  〇 .CTA03 〇
  
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .cta03 {
    /* .cta03 .wrapper closed */
  }
  .cta03 .wrapper {
    padding: 40px 0 50px 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(21, 139, 148, 0.95)), to(rgba(19, 151, 72, 0.95)));
    background: linear-gradient(90deg, rgba(21, 139, 148, 0.95) 0%, rgba(19, 151, 72, 0.95) 100%);
    /* .cta03 .inner closed */
  }
  .cta03 .wrapper .inner {
    width: 92%;
    margin: 0 auto;
    /* .cta03 .inner .haedline closed */
    /* .cta03 .inner .box-wrapper closed */
  }
  .cta03 .wrapper .inner .headline {
    color: #fff;
    margin: 0 0 30px 0;
  }
  .cta03 .wrapper .inner .headline h2 {
    font-size: 38px;
  }
  .cta03 .wrapper .inner .headline h3 {
    font-size: 16px;
  }
  .cta03 .wrapper .inner .box-wrapper {
    display: block;
    /* .cta03 .inner .box-wrapper .box closed */
  }
  .cta03 .wrapper .inner .box-wrapper .box {
    width: 100%;
    /* .cta03 .inner .box-wrapper .box .button closed */
  }
  .cta03 .wrapper .inner .box-wrapper .box:nth-child(1) {
    margin: 0 0 20px 0;
  }
  .cta03 .wrapper .inner .box-wrapper .box:nth-child(2) {
    margin: 0 0% 0 0;
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption {
    font-size: 16px;
    margin: 0 0 8px 0;
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption d
span {
    padding: 0 3px 0 3px;
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption:before, .cta03 .wrapper .inner .box-wrapper .box .caption:after {
    content: "";
    background: #fff;
    border-radius: 30px;
    height: 15px;
    width: 2px;
    display: inline-block;
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption:before {
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%) skew(20deg);
            transform: translateY(-50%) skew(20deg);
  }
  .cta03 .wrapper .inner .box-wrapper .box .caption:after {
    position: absolute;
    top: 50%;
    right: 10%;
    -webkit-transform: translateY(-50%) skew(-20deg);
            transform: translateY(-50%) skew(-20deg);
  }
  .cta03 .wrapper .inner .box-wrapper .box .button a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 20px 0 20px 0;
    line-height: 1.2;
    position: relative;
    border-radius: 60px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 0 3px inset #fff;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 0 3px inset #fff;
  }
  .cta03 .wrapper .inner .box-wrapper .box .button a span {
    padding: 0 0 0 10px;
  }
  .cta03 .wrapper .inner .box-wrapper .box .button a img {
    width: 25px;
    height: 25px;
    position: relative;
    left: 0px;
    top: 2px;
  }
  /* .cta03 closed */
}

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

/* 320px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 768px～1023px responsive-closed */
/* 1024x〜2980px：大型PC
------------------------------ */
/* 1024x〜2980px responsive-closed */
/* 481px responsive-closed */
/* 2980px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .SECTION12 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
  ====================================================================*/
  .section12 .en01 {
    font-size: 80px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0.3;
    line-height: 1.5;
  }
  .section12 .en02 {
    font-size: 80px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    opacity: 0.3;
    line-height: 1.5;
  }
  /*==============================================
  .section12 .wrapper
  ===============================================*/
  .section12 .wrapper {
    padding: 80px 0 80px 0;
  }
  .section12 .inner h3 {
    font-size: 20px;
    letter-spacing: 2px;
    padding: 10px 30px 10px 30px;
    margin: 0 0 20px 0;
  }
  .section12 .inner h2 {
    font-size: 30px;
    padding: 0 10px 0px 10px;
  }
  .section12 .inner h4 {
    font-size: 14px;
    color: #fff;
    padding: 20px 0 30px 0;
    letter-spacing: 2px;
  }
  .section12 .inner .sentence {
    padding: 0 4% 0 4%;
  }
  .section12 .inner .sentence p {
    font-size: 16px;
    line-height: 1.75;
    padding: 20px 0 20px 0;
    letter-spacing: 2px;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 768px～1023px responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: さらに刻んで320pxまでのモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
/* 320px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
@media screen and (max-width: 769px) {
  /*===================================================================
	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

	〇 .title02-01 〇

	□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
	====================================================================*/
  .title02-01 {
    padding: 30px 0 0 0;
  }
  .title02-01 h2 {
    font-size: 40px;
    padding: 10px 0 0 0;
  }
  .title02-01 h3 {
    font-size: 18px;
  }
  .title02-01 p.back {
    top: 50%;
    left: 50%;
    -webkit-transform: skewX(-15deg) translateX(-53%) translateY(-50%);
            transform: skewX(-15deg) translateX(-53%) translateY(-50%);
    font-size: 4.7rem;
    opacity: 0.3;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title02-02 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title02-02 {
    padding: 40px 0 30px 0;
  }
  .title02-02 h2 {
    font-size: 35px;
    padding: 15px 0 0 0;
  }
  .title02-02 h3 {
    font-size: 18px;
  }
  .title02-02 p.back {
    top: 50%;
    left: 50%;
    -webkit-transform: skewX(-15deg) translateX(-50%) translateY(-50%);
            transform: skewX(-15deg) translateX(-50%) translateY(-50%);
    font-size: 4.7rem;
    opacity: 0.2;
  }
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title02-03 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title02-03 h2 {
    font-size: 26px;
  }
  .title02-03 h3 {
    font-size: 58px;
    line-height: 1.2;
  }
  .title02-03 p.back {
    position: absolute;
    top: 40px;
    left: 50%;
    font-size: 4.7rem;
    opacity: 0.3;
  }
}

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #POINT10 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
@media screen and (max-width: 769px) {
  /*==============================================
    .point11 variables(変数設定)
    ===============================================*/
  .point11 {
    padding: 15px 0 15px 0;
    background: #fff;
  }
  /*==============================================
    .point11 .inner
    ===============================================*/
  .point11 .inner {
    padding: 0px 3.5% 40px 3.5%;
  }
  .point11 .inner .box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .point11 .inner .box-wrapper .box {
    width: 100%;
    background: #fff;
    border: solid 1px #ccc;
    margin: 0 0% 20px 0;
    padding: 0px 0px 0px 0px;
  }
  .point11 .inner .box-wrapper .box:nth-child(4n) {
    margin: 0 0 20px 0;
  }
  .point11 .inner .box-wrapper .box:nth-child(2n) {
    margin: 0 0 20px 0;
  }
  .point11 .inner .box-wrapper .box .thumb {
    width: 100%;
    position: relative;
    z-index: 1;
    line-height: 0;
  }
  .point11 .inner .box-wrapper .box .thumb img {
    width: 100%;
    height: auto;
  }
  .point11 .inner .box-wrapper .box .mark {
    position: relative;
    z-index: 2;
    margin: -20px 0 0 0;
    padding: 0 30px 0 30px;
  }
  .point11 .inner .box-wrapper .box .mark p {
    display: inline-block;
    background: #078189;
    color: #fff;
    font-size: 16px;
    margin: 0 10px 10px 0;
    padding: 3px 15px 3px 15px;
  }
  .point11 .inner .box-wrapper .box .inside {
    padding: 0 30px 0px 30px;
  }
  .point11 .inner .box-wrapper .box .inside h3 {
    margin: 15px 0 0 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    font-family: fot-tsukuardgothic-std, sans-serif;
    letter-spacing: -1px;
    color: #078189;
  }
  .point11 .inner .box-wrapper .box .inside h4 {
    margin: 15px 0 0 0;
    font-size: 22px;
    color: #aaa;
    font-family: fot-tsukuardgothic-std, sans-serif;
  }
  .point11 .inner .box-wrapper .box .inside ul {
    margin: 30px 0 0 0;
    padding: 0 0 20px 0;
  }
  .point11 .inner .box-wrapper .box .inside ul li {
    padding: 10px 0 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 17px;
    font-weight: 500;
    border-top: solid 1px #ccc;
  }
  .point11 .inner .box-wrapper .box .inside ul li img.icon {
    width: 18px;
    height: auto;
    position: relative;
    top: 3px;
  }
}

/* 769px responsive-closed */
/*===================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 #conslider07 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================*/
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　Stylesheet: 767pxまで(スマホ)のモニタで適用　◆


■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  
***********************************************************************************
**********************************************************************************/
@media screen and (max-width: 769px) {
  #conslider07 {
    width: 100%;
    padding: 0 0 40px 0;
  }
  #conslider07 .swiper-container {
    padding: 60px 0 20px 0;
    margin: 0 auto;
  }
  #conslider07 .swiper-slide {
    position: relative;
  }
  #conslider07 .swiper-slide ul {
    margin: 30px 0 0 0;
    padding: 0 0 20px 0;
  }
  #conslider07 .swiper-slide ul li {
    padding: 10px 0 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 17px;
    font-weight: 500;
    border-top: solid 1px #ccc;
  }
  #conslider07 .swiper-slide ul li img.icon {
    width: 18px;
    height: auto;
    position: relative;
    top: 3px;
  }
  #conslider07 .sentence {
    padding: 0 4% 0 4%;
  }
  #conslider07 .sentence h3 {
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
  }
  #conslider07 .sentence p {
    font-size: 18px;
    padding: 10px 0 10px 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) {
  /*===================================================================
  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

  〇 .title09-01 〇

  □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □      
  ====================================================================*/
  .title09-01 {
    position: relative;
  }
  /*==============================================
  .title09-01 h2 .wrapper
  ===============================================*/
  .title09-01 h2 {
    padding: 20px 0 20px 0;
  }
  .title09-01 h2 .title-wrapper {
    display: block;
  }
  .title09-01 h2 .title-wrapper .semi {
    text-align: center;
    letter-spacing: 2.5px;
    font-weight: 900;
  }
  .title09-01 h2 .title-wrapper .semi span.small {
    font-size: 20px;
    padding: 2px 10px 2px 10px;
    display: inline-block;
    letter-spacing: 2.5px;
  }
  .title09-01 h2 .title-wrapper .semi span.big {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .title09-01 h2 .title-wrapper .catch {
    font-size: 26px;
    letter-spacing: px;
    padding: 10px 0 0 0px;
    letter-spacing: 1.5px;
  }
}

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

/* 769px responsive-closed */
/* 481px responsive-closed */
/* 960px〜1279px：小型PC
------------------------------ */
/* 960px〜1279px responsive-closed */
/* 1280px〜：大型PC
------------------------------ */
/* 1280px〜 responsive-closed */
/**********************************************************************************
/**********************************************************************************
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■  


◆　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(#158b94), to(#139748));
    background: linear-gradient(90deg, #158b94 0%, #139748 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: #093b3f;
  }
  .section51 .addtional h4 {
    text-align: center;
    font-family: futura-pt-bold, sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #093b3f;
    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 */
@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 6% 0 6%;
    margin: 0 auto 0;
  }
  .section40 .sentence h2 {
    padding: 40px 2% 20px 2%;
    font-size: 26px;
  }
  .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 */