/*---------------------------------
font
--------------------------------*/
/* serif */
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/NotoSerifJP-SemiBold.woff') format('woff');
  font-display: swap;
}
.serif {
  font-family: 'Noto Serif Japanese',serif, sans-serif;
  font-weight: 600;
}

/* english */
.en.light {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}
.en.semi-b {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

/*---------------------------------
link
--------------------------------*/
/*normal*/
a {
  text-decoration:none;
  color:#222;
}
a:visited {
  text-decoration: none;
  color: #666666;
}
a:active,
a:hover {
  text-decoration:underline;
  color:#666666;
}

/* img */
a img:hover {
  filter: alpha(opacity=70);
  -moz-opacity:0.70;
  opacity:0.70;
}
a,a:hover,a img:hover {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/*---------------------------------
css layout
--------------------------------*/

html,body{
  min-width:1260px;
}
body{
  margin:0 auto;
}
* html body{
  overflow: hidden;
}
.wrap:after {
  clear: both;
  display: block;
  content: "";
}
.innr {
  width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .visible-xs {
    display:none !important;
  }
}
@media screen and (max-width: 750px) {
  html,body{
    min-width:initial;
  }
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display:inherit !important;
  }
  .innr {
    width: 100%;
    padding: 0 15px;
  }
}

/*---------------------------------
section common
--------------------------------*/
img {
  max-width: 100%;
}
table {
  width: 100%;
}
strong {
  font-weight: bold;
}


.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt60 { margin-top: 60px; }

.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }

.pt10 { padding-top: 10px; }
.pt20 { padding-top: 20px; }
.pt30 { padding-top: 30px; }
.pt40 { padding-top: 40px; }
.pt50 { padding-top: 50px; }
.pt60 { padding-top: 60px; }

.pb10 { padding-bottom: 10px; }
.pb20 { padding-bottom: 20px; }
.pb30 { padding-bottom: 30px; }
.pb40 { padding-bottom: 40px; }
.pb50 { padding-bottom: 50px; }
.pb60 { padding-bottom: 60px; }

.m0 { margin: 0!important; }

strong {
  font-weight: normal;
  background: linear-gradient(transparent 60%, #49b49a 60%);
}
strong.underline-orange {
  background: linear-gradient(transparent 60%, #ff9933 60%);
}
strong.underline-yellow {
  background: linear-gradient(transparent 60%, #ffcc00 60%);
}
.attn {
  font-weight: bold;
  color: #be5255;
}
.attn a {
  color: #be5255;
  font-weight: bold;
  text-decoration: underline;
}
.attn a:hover,
.attn a:active {
  color: #bf7274;
  text-decoration: none;
}

@media screen and (max-width: 750px) {
}


/*---------------------------------
button
--------------------------------*/
.btn-cont {

}
.btn-cont a {
  position: relative;
  display: inline-block;
  border:2px solid #3bae92;
  border-radius: 23px;
  width: 340px;
  height: 46px;
  overflow: hidden;
}
.btn-cont a span {
  position: absolute;
  display: inline-block;
  width: 342px;
  height: 48px;
  border:2px solid #3bae92;
  padding-top: 11px;
  letter-spacing: 2px;
  text-align: center;
  background: #3bae92;
  color:#fff;
  font-size: 1.8em;
  font-weight: bold;
  top:-8px;
  left: -6px;
  border-radius: 25px;
}
.btn-cont a:hover,
.btn-cont a:active {
  background: #3bae92;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/* ヘッダーボタン用スタイル */
.btn-cont.header-btn {
  margin-bottom: 15px;
}

/* オレンジボタン（簡単登録スタート） */
.btn-cont.btn-orange a {
  height: 70px;
  border-color: #ff9933;
}
.btn-cont.btn-orange a span {
  height: 72px;
  padding-top: 18px;
  border-color: #ff9933;
  background: #ff9933;
  font-size: 2.4em;
}
.btn-cont.btn-orange a:hover,
.btn-cont.btn-orange a:active {
  background: #ff9933;
}

/* ブルーボタン（2つ目） */
.btn-cont.btn-blue a {
  border-color: #3399ff;
}
.btn-cont.btn-blue a span {
  border-color: #3399ff;
  background: #3399ff;
}
.btn-cont.btn-blue a:hover,
.btn-cont.btn-blue a:active {
  background: #3399ff;
}

@media screen and (max-width: 750px) {
  .btn-cont a {
    border-radius: 23px;
    width: 240px;
    height: 44px;
  }
  .btn-cont a span {
    width: 242px;
    height: 46px;
    padding-top: 14px;
    font-size: 1.3em;
    top:-8px;
    left: -6px;
    border-radius: 25px;
  }
  /* ヘッダーボタン用スタイル（モバイル） */
  .btn-cont.header-btn {
    margin-bottom: 10px;
  }
  /* オレンジボタン（モバイル） */
  .btn-cont.btn-orange a {
    height: 60px;
  }
  .btn-cont.btn-orange a span {
    height: 62px;
    padding-top: 18px;
    font-size: 1.6em;
  }
}


/*---------------------------------
sec-ttl
--------------------------------*/
.sec-ttl h2 {
  padding-bottom: 2em;
}
.sec-ttl h2 span.serif {
  display: block;
  font-size: 34px;
  letter-spacing: 2px;
  line-height: 1.6;
}
.sec-ttl h2 span.en {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
}
.sec-ttl .intro {
  /* font-size: 1.6em; */
  /* line-height: 2; */
  font-size: 1.8em;
  line-height: 1.5;
  letter-spacing: 1px;
}
.conclusion {
  font-size: 2.4em;
  font-weight: bold;
  color: #49b49a;
  /* line-height: 2; */
  line-height: 1.5;
  letter-spacing: 4px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .sec-ttl h2 {
    padding-bottom: 1.6em;
  }
  .sec-ttl h2 span.serif {
    font-size: 24px;
  }
  .sec-ttl h2 span.en {
    font-size: 10px;
  }
  .sec-ttl .intro {
    font-size: 1.2em;
    line-height: 1.8;
  }
  .conclusion {
    font-size: 1.6em;
    line-height: 1.8;
    letter-spacing: 3px;
  }
}


/*---------------------------------
header
--------------------------------*/
header {
  position: relative;
  background: #fbfbfb;
  height: 600px;
}
header .color-bg {
  position: absolute;
  top:0;
  left: 0;
  height: 470px;
  width: 100%;
  background: #d9f3ec;
  z-index: 1;
}
header .img-bg {
  position: absolute;
  top:100px;
  right: 0;
  height: 500px;
  width: 70%;
  background: url(../images/mv-pc-img.png) 0 0 no-repeat;
  background-size: cover;
  z-index: 2;
}
header .map-bg {
  position: absolute;
  top:0;
  left: 0;
  height: 511px;
  width: 1000px;
  background: url(../images/mv-pc-map.png) 0 0 no-repeat;
  background-size: contain;
  z-index: 3;
}
header .content-wrap {
  position: absolute;
  top:0;
  left: 0;
  height: auto;
  width: 100%;
  z-index: 4;
}

header h1 {
  padding-top: 140px;
}
header h1 span.en {
  display: block;
  font-size: 16px;
  letter-spacing: 12px;
  padding-bottom: 1em;
}
header h1 span.serif {
  display: block;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: 3px;
  padding-bottom: 0.4em;
  margin-left: -0.2em;
}

header p.txt {
  font-size: 2em;
  line-height: 2;
  padding-bottom: 1em;
}

@media screen and (max-width: 750px) {
  header {
    /* height: 340px; */
    height: 430px;
  }
  header .color-bg {
    height: 215px;
    width: 100%;
  }
  header .img-bg {
    height: 200px;
    width: 82%;
    background: url(../images/mv-sp-img.png) 0 0 no-repeat;
    background-size: cover;
  }
  header .map-bg {
    position: absolute;
    top:0;
    left: 0;
    height: 215px;
    width: 100%;
    background: url(../images/mv-pc-map.png) 190% 0 no-repeat;
    background-size: 120%;
    z-index: 3;
  }
  header .content-wrap {
    position: absolute;
    top:0;
    left: 0;
    height: auto;
    width: 100%;
    z-index: 4;
  }

  header h1 {
    padding-top: 20px;
  }
  header h1 span.en {
    font-size: 10px;
    letter-spacing: 8px;
    padding-bottom: 0.6em;
  }
  header h1 span.serif {
    font-size: 8.6vw;
    line-height: 1.3;
    letter-spacing: 1px;
  }

  header p.txt {
    font-size: 1.3em;
    line-height: 2;
    padding-bottom: 1em;
  }
}


/*---------------------------------
sec01
--------------------------------*/
#sec01 {
  background: #fbfbfb;
  padding: 8em 0;
}
#sec01 .sec-cont:nth-child(1) {
  padding-bottom: 0px;
}
#sec01 .feature {
  display: flex;
  justify-content: center;
  padding-bottom: 5em;
}
#sec01 .feature .circle {
  width: 180px;
  height: 180px;
  border-radius: 90px;
  background: #fff;
  position: relative;
  margin: 0 6em;
}
#sec01 .feature .border {
  position: absolute;
  top:-5px;
  left: -5px;
  width: 180px;
  height: 180px;
  border-radius: 90px;
  border:2px solid #3bae92;
}
#sec01 .feature .f-txt {
  text-align: center;
  font-weight: bold;
  font-size: 2em;
  letter-spacing: 2px;
  line-height: 1.6;
  padding: 3.2em 0 0 0.2em;
  color:#3bae92;
}
#sec01 .feature .border .nm {
  font-size: 2.4em;
  color: #3bae92;
  position: absolute;
  top:5px;
  right: 8px;
  text-shadow:
  #fbfbfb 2px 0px 2px, #fbfbfb -2px 0px 2px,
  #fbfbfb 0px -2px 2px, #fbfbfb -2px 0px 2px,
  #fbfbfb 2px 2px 2px, #fbfbfb -2px 2px 2px,
  #fbfbfb 2px -2px 2px, #fbfbfb -2px -2px 2px,
  #fbfbfb 1px 2px 2px, #fbfbfb -1px 2px 2px,
  #fbfbfb 1px -2px 2px, #fbfbfb -1px -2px 2px,
  #fbfbfb 2px 1px 2px, #fbfbfb -2px 1px 2px,
  #fbfbfb 2px -1px 2px, #fbfbfb -2px -1px 2px,
  #fbfbfb 1px 1px 2px, #fbfbfb -1px 1px 2px,
  #fbfbfb 1px -1px 2px, #fbfbfb -1px -1px 2px;
}
#sec01 .txt {
  margin: 0 auto;
  width: 690px;
  font-size: 1.6em;
  line-height: 2;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 750px) {

  #sec01 {
    padding: 0 0 4em 0;
  }
  #sec01 .feature {
    display: inherit;
    position: relative;
    padding-bottom: 80vw;
  }
  #sec01 .feature .circle {
    position: absolute;
    width: 36vw;
    height: 36vw;
    margin: 0;
  }
  #sec01 .feature .circle.n01 {
    top:0;
    left: 50%;
    margin-left: -18vw;
  }
  #sec01 .feature .circle.n02 {
    top:38vw;
    left: 6%;
  }
  #sec01 .feature .circle.n03 {
    top:38vw;
    right: 6%;
  }
  #sec01 .feature .border {
    width: 36vw;
    height: 36vw;
  }
  #sec01 .feature .f-txt {
    font-size: 1.3em;
    padding: 40% 0 0 0.2em;
  }
  #sec01 .feature .border .nm {
    font-size: 1.6em;
    top:6px;
  }
  #sec01 .txt {
    width: 100%;
    font-size: 1.4em;
  }
}


/*---------------------------------
sec02
--------------------------------*/
#sec02 {
  position: relative;
  height: 500px;
}
#sec02 .color-bg {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  background: #ddecef;
  z-index: 1;
}
#sec02 .white-bg {
  position: absolute;
  top:120px;
  left: 0;
  width: 55%;
  min-width: 650px;
  height: 300px;
  background: #fff;
  z-index: 2;
}
#sec02 .color-bg .sec-ttl {
  padding: 8em 0;
  width: 430px;
  margin-left: auto;
}
#sec02 .color-bg .sec-ttl .intro {
  font-weight: bold;
}
#sec02 .content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index:3;
}
#sec02 .sec-cont {
  padding: 180px 0 0 0;
  margin-left: 170px;
  width: 330px;
  font-size: 1.6em;
}
#sec02 .sec-cont .logo {
  width: 260px;
}
#sec02 .sec-cont address {
  display: block;
  padding: 0.5em 0 1em;
}
#sec02 .sec-cont dl {
  display: table;
  width: 100%;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
#sec02 .sec-cont dt,
#sec02 .sec-cont dd {
  display: table-cell;
}
#sec02 .sec-cont dt {
  border-right: 1px solid #ddd;
  width: 40%;
}
#sec02 .sec-cont dd {
  padding-left: 0.8em;
}

@media screen and (max-width: 750px) {
  #sec02 {
    position: inherit;
    height: auto;
  }
  #sec02 .color-bg {
    position: inherit;
    height: auto;
  }
  #sec02 .white-bg {
    display: none;
  }
  #sec02 .color-bg .sec-ttl {
    padding: 4em 0 25vw 0;
    width: 100%;
    margin-left: auto;
    text-align: center;
  }
  #sec02 .content-wrap {
    position: inherit;
    padding: 0 15px 0 0;
    margin-top: -20vw;
  }
  #sec02 .content-wrap .innr {
    background: #fff;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  #sec02 .sec-cont {
    position: inherit;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    font-size: 1.1em;
    text-align: center;
  }
  #sec02 .sec-cont .logo {
    width: 210px;
  }
  #sec02 .sec-cont address {
    padding: 0.5em 0 1.6em;
  }
  #sec02 .sec-cont dl {
    width: 80%;
    text-align: left;
    margin: 0 auto 0.6em auto;
  }
}

/*---------------------------------
sec03
--------------------------------*/
#sec03 {
  padding: 8em 0;
  text-align: center;
}
#sec03 .intro {
  margin: 0 auto;
  width: 880px;
  text-align: left;
}

#sec03 .sec-cont {
  padding-top: 6em;
}
#sec03 .figure-area {
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding: 0 125px;
}
#sec03 .figure-area .leftBox .wrap-cont,
#sec03 .figure-area .rightBox .wrap-cont {
  position: relative;
  width: 434px;
  padding: 5em 0 1em;
  background: #f0f0f0;
  border-radius: 20px;
}
#sec03 .figure-area .leftBox .wrap-cont .ttl,
#sec03 .figure-area .rightBox .wrap-cont .ttl  {
  position: absolute;
  top:-20px;
  left: 65px;
  display: block;
  background: #49b49a;
  height: 44px;
  width: 300px;
  font-size: 1.8em;
  font-weight: bold;
  line-height: 44px;
  color:#fff;
  letter-spacing: 2px;
  text-align: center;
  border-radius: 22px;
}
#sec03 .figure-area .leftBox .wrap-cont .innr-cont {
  margin: 0 auto;
  display: table;
  padding-bottom: 2em;
  width: 300px;
}
#sec03 .figure-area .leftBox .wrap-cont .innr-cont dt,
#sec03 .figure-area .leftBox .wrap-cont .innr-cont dd {
  display: table-cell;
  vertical-align: middle;
}
#sec03 .figure-area .leftBox .wrap-cont .innr-cont dt {
  font-weight: bold;
  font-size: 1.8em;
  color: #49b49a;
  width: 108px;
  padding-right: 1em;
  text-align: right;
  border-right: 1px solid #a9e5d6;
}
#sec03 .figure-area .leftBox .wrap-cont .innr-cont dd {
  font-weight: bold;
  font-size: 1.8em;
  padding-left: 1em;
}

#sec03 .figure-area .rightBox .wrap-cont .innr-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px 8px 40px;
}
#sec03 .figure-area .rightBox .wrap-cont .innr-cont li {
  width: 80px;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.4;
  padding-bottom: 0.5em;
}

#sec03 p.conclusion {
  padding-top: 1em;
}

@media screen and (max-width: 750px) {
  #sec03 {
    padding: 4em 0;
  }
  #sec03 .intro {
    width: 100%;
  }

  #sec03 .sec-cont {
    padding-top: 4em;
    position: relative;
  }
  #sec03 .sec-cont .img01,
  #sec03 .sec-cont .img02 {
    position: absolute;
    top:33%;
    width: 10px;
  }
  #sec03 .sec-cont .img01 {
    left: -10px;
  }
  #sec03 .sec-cont .img02 {
    right: -10px;
  }
  #sec03 .figure-area {
    display: block;
    padding: 0;
  }
  #sec03 .figure-area .leftBox .wrap-cont,
  #sec03 .figure-area .rightBox .wrap-cont {
    width: 100%;
    padding: 3.5em 0 0.6em;
    margin-bottom: 3em;
  }
  #sec03 .figure-area .leftBox .wrap-cont .ttl,
  #sec03 .figure-area .rightBox .wrap-cont .ttl  {
    left: 50%;
    margin-left: -30%;
    height: 35px;
    width: 60%;
    font-size: 1.4em;
    line-height: 35px;
  }
  #sec03 .figure-area .leftBox .wrap-cont .innr-cont {
    width: 80%;
  }
  #sec03 .figure-area .leftBox .wrap-cont .innr-cont dt {
    font-size: 1.4em;
    width: 33%;
  }
  #sec03 .figure-area .leftBox .wrap-cont .innr-cont dd {
    font-size: 1.4em;
  }

  #sec03 .figure-area .rightBox .wrap-cont .innr-cont li {
    width: 22%;
    font-size: 1em;
  }

  #sec03 p.conclusion {
    padding-top: 0;
  }

}

/*---------------------------------
sec04
--------------------------------*/
#sec04 {
  position: relative;
  height: 760px;
}
#sec04 .color-bg {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  background: #ddecef;
  z-index: 1;
}
#sec04 .white-bg {
  position: absolute;
  top:120px;
  right: 0;
  width: 55%;
  min-width: 680px;
  height: 640px;
  background: #fff;
  z-index: 2;
}
#sec04 .color-bg .sec-ttl {
  padding: 8em 0 7em;
  width: 420px;
  padding-left: 30px;
  margin-right: auto;
}
#sec04 .content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index:3;
}
#sec04 .sec-cont {
  padding: 200px 0 0 0;
  margin-left: auto;
  width: 570px;
}
#sec04 .sec-cont .merit-cont {
  display: table;
  padding-bottom: 5em;
}
#sec04 .sec-cont .merit-cont .nm,
#sec04 .sec-cont .merit-cont .cont-innr {
  display: table-cell;
  vertical-align: top;
}
#sec04 .sec-cont .merit-cont .nm {
  border-right: 1px solid #ddd;
  color: #789ea6;
  text-align: center;
  line-height: 1.4;
  padding-right: 2.5em;
}
#sec04 .sec-cont .merit-cont .nm .txt {
  font-size: 1.2em;
  letter-spacing: 2px;
}
#sec04 .sec-cont .merit-cont .nm .nmbr {
  font-size: 3.6em;
}
#sec04 .sec-cont .merit-cont .cont-innr {
  padding-left: 2.5em;
  letter-spacing: 1px;
}
#sec04 .sec-cont .merit-cont .cont-innr dt {
  font-size: 1.8em;
  font-weight: bold;
  color: #789ea6;
}
#sec04 .sec-cont .merit-cont .cont-innr dd {
  font-size: 1.4em;
}

@media screen and (max-width: 750px) {
  #sec04 {
    position: inherit;
    height: auto;
  }
  #sec04 .white-bg {
    display: none;
  }
  #sec04 .content-wrap {
    position: inherit;
    padding: 0 0 0 15px;
    margin-top: -20vw;
  }
  #sec04 .content-wrap .innr {
    background: #fff;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  #sec04 .color-bg {
    position: inherit;
  }
  #sec04 .color-bg .sec-ttl {
    padding: 4em 0 25vw;
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  #sec04 .sec-ttl .intro {
    text-align: left;
  }
  #sec04 .sec-cont {
    padding: 0 0 0 0;
    width: 100%;
  }
  #sec04 .sec-cont .merit-cont {
    display: block;
    padding-bottom: 2em;
  }
  #sec04 .sec-cont .merit-cont .nm,
  #sec04 .sec-cont .merit-cont .cont-innr {
    display: block;
  }
  #sec04 .sec-cont .merit-cont .nm {
    border-right:0;
    text-align: left;
    padding-right: 0;
    padding-left: 1em;
  }
  #sec04 .sec-cont .merit-cont .nm .txt {
    font-size: 1.2em;
    border-bottom:1px solid #ddd;
    padding-bottom: 1em;
  }
  #sec04 .sec-cont .merit-cont .nm .nmbr {
    font-size: 2em;
    display: inline-block;
    padding-left: 0.3em;
    padding-bottom: 1em;
  }
  #sec04 .sec-cont .merit-cont .cont-innr {
    padding-left: 1em;
  }
  #sec04 .sec-cont .merit-cont .cont-innr dt {
    font-size: 1.5em;
    padding-bottom: 0.3em;
  }
  #sec04 .sec-cont .merit-cont .cont-innr dd {
    font-size: 1.1em;
  }
}




/*---------------------------------
sec05
--------------------------------*/
#sec05 {
  padding: 8em 0 0 0;
  text-align: center;
}
#sec05 .intro {
  margin: 0 auto;
  width: 880px;
  text-align: left;
  padding-bottom: 2em;
}
#sec05 .sec-cont .problem-cont-wrap {
  position: relative;
  background: #f0f0f0;
  display: flex;
  justify-content: space-between;
  padding: 4em 8em;
}
#sec05 .sec-cont .problem-cont-wrap::after {
  position: absolute;
  bottom: -35px;
  left: 50%;
  margin-left: -225px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 225px 0 225px;
  border-color: #f0f0f0 transparent transparent transparent;
}

#sec05 .sec-cont .problem-cont {
  width: 46%;
  display: flex;
  justify-content: space-between;
}
#sec05 .sec-cont .problem-cont dl {
  padding: 2em 0 0 2em;
  width: 260px;
  text-align: left;
}
#sec05 .sec-cont .problem-cont dt {
  font-size: 2em;
  font-weight: bold;
  color: #3bae92;
  letter-spacing: 2px;
}
#sec05 .sec-cont .problem-cont dd {
  font-size: 1.6em;
  line-height: 2;
  letter-spacing: 1px;
}
#sec05 .sec-cont .problem-cont .circle {
  background: #49b49a;
  width: 180px;
  height: 180px;
  border-radius: 90px;
}
#sec05 .sec-cont .problem-cont .circle img {
  width: 100px;
  margin: 4.2em 0 0 0.1em;
}

#sec05 .therefore-cont {
  padding: 7em 0 4em;
}
#sec05 .therefore-cont .conclusion,
#sec05 .leading-cont .conclusion {
  font-size: 2em;
  line-height: 1.6;
  padding-bottom: 0.8em;
}
#sec05 .therefore-cont dd,
#sec05 .leading-cont dd {
  font-size: 1.6em;
  line-height: 2;
  letter-spacing: 1px;
}
#sec05 .leading-cont {
  padding: 8em 0 6em;
  position: relative;
  background: url(../images/necessity-pc-bg.png) 0 0 no-repeat;
  background-size: cover;
}
#sec05 .leading-cont::before {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -225px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 225px 0 225px;
  border-color: #fff transparent transparent transparent;
}
#sec05 .leading-cont .conclusion {
  color: #fff;
  padding-bottom: 2em;
}
#sec05 .leading-cont dd {
  width: 940px;
  text-align: left;
  color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  #sec05 {
    padding: 4em 0 0 0;
  }
  #sec05 .intro {
    width: 100%;
    padding: 0 15px 2em 15px;
  }
  #sec05 .sec-cont .problem-cont-wrap {
    display: block;
    padding:2em;
  }
  #sec05 .sec-cont .problem-cont-wrap::after {
    bottom: -25px;
    left: 50%;
    margin-left: -150px;
    border-width: 30px 150px 0 150px;
  }

  #sec05 .sec-cont .problem-cont {
    display: block;
    width: 100%;
  }
  #sec05 .sec-cont .problem-cont:first-child {
    margin-bottom: 1.6em;
  }
  #sec05 .sec-cont .problem-cont dl {
    padding: 2em 0 0 32vw;
    width: 100%;
  }
  #sec05 .sec-cont .problem-cont dt {
    font-size: 1.4em;
  }
  #sec05 .sec-cont .problem-cont dd {
    font-size: 1.1em;
    line-height: 1.8;
  }
  #sec05 .sec-cont .problem-cont .circle {
    width: 28vw;
    height: 28vw;
    border-radius: 50%;
    float: left;

  }
  #sec05 .sec-cont .problem-cont .circle img {
    width: 16vw;
    margin: 6vw 0 0 0.1em;
  }

  #sec05 .therefore-cont {
    padding: 5em 0 3em;
  }
  #sec05 .therefore-cont .conclusion,
  #sec05 .leading-cont .conclusion {
    font-size: 1.6em;
    padding-bottom: 1.2em;
  }
  #sec05 .therefore-cont dd,
  #sec05 .leading-cont dd {
    font-size: 1.2em;
    line-height: 1.8;
    text-align: left;
    width: 100%;
  }
  #sec05 .leading-cont {
    padding: 6em 0 4em;
    background: url(../images/necessity-sp-bg.png) 0 0 no-repeat;
    background-size: cover;
  }
  #sec05 .leading-cont::before {
    left: 50%;
    margin-left: -150px;
    border-width: 30px 150px 0 150px;
  }
}



/*---------------------------------
sec06
--------------------------------*/
#sec06 {
  padding: 8em 0;
  padding-top: 160px;
  text-align: center;
  background: #f7f7f7;
}
#sec06 .intro {
  margin: 0 auto;
  width: 880px;
  text-align: left;
  padding-bottom: 2em;
}
#sec06 .item-cont {
  display: table;
  text-align: left;
}
#sec06 .item-cont .img-cont,
#sec06 .item-cont .txt-cont {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
#sec06 .item-cont.n02 .img-cont,
#sec06 .item-cont.n04 .img-cont {
  text-align: right;
}
#sec06 .item-cont .img-cont {
  position: relative;
}
#sec06 .item-cont .img-cont .img {
  width: 460px;
}
#sec06 .item-cont .img-cont .txt {
  position: absolute;
}
#sec06 .item-cont .img-cont .ttl {
  position: absolute;
}

#sec06 .item-cont.n01 .img-cont .txt {
  width: 160px;
  top:323px;
  left: 313px;
}
#sec06 .item-cont.n01 .img-cont .ttl {
  top: 25px;
  right: 18px;
  width: 40px;
}

#sec06 .item-cont.n02 .img-cont .txt {
  width: 105px;
  top:262px;
  left: 60px;
}
#sec06 .item-cont.n02 .img-cont .ttl {
  top: 35px;
  left: 20px;
  width: 46px;
}

#sec06 .item-cont.n03 .img-cont .txt {
  width: 150px;
  top:-48px;
  left: 225px;
}
#sec06 .item-cont.n03 .img-cont .ttl {
  top: 10px;
  right: 18px;
  width: 46px;
}

#sec06 .item-cont.n04 .img-cont .txt {
  width: 260px;
  top:-55px;
  left: 200px;
}
#sec06 .item-cont.n04 .img-cont .ttl {
  top: 15px;
  left: 10px;
  width: 62px;
}


#sec06 .item-cont .txt-cont dl {
  padding-bottom: 1.6em;
}
#sec06 .item-cont .txt-cont dt {
  font-size: 1.8em;
  font-weight: bold;
  letter-spacing: 1px;
}
#sec06 .item-cont .txt-cont dd {
  font-size: 1.4em;
  line-height: 1.7;
  letter-spacing: 1px;
}


@media screen and (max-width: 750px) {
  #sec06 {
    padding: 4em 0 1em;
  }
  #sec06 .intro {
    width: 100%;
  }
  #sec06 .item-cont {
    display: block;
    padding-bottom: 2em;
  }
  #sec06 .item-cont .img-cont,
  #sec06 .item-cont .txt-cont {
    display: block;
    width: 100%;
  }
  #sec06 .item-cont .txt-cont {
    padding-top: 2em;
  }
  #sec06 .item-cont.n02 .img-cont,
  #sec06 .item-cont.n04 .img-cont {
    text-align: right;
  }
  #sec06 .item-cont .img-cont .img {
    width: 86%;
    margin-left: -15px;
  }
  #sec06 .item-cont.n02 .img-cont .img,
  #sec06 .item-cont.n04 .img-cont .img {
    margin-left: 0;
    margin-right: -15px;
  }
  #sec06 .item-cont .img-cont .txt {
    position: absolute;
  }
  #sec06 .item-cont .img-cont .ttl {
    position: absolute;
  }

  #sec06 .item-cont.n01 .img-cont .txt {
    width: 30vw;
    top: 55vw;
    left: 55%;
  }
  #sec06 .item-cont.n01 .img-cont .ttl {
    top: 1em;
    right: 5px;
    width: 28%;
  }

  #sec06 .item-cont.n02 .img-cont .txt {
    width: 80px;
    top: 54vw;
    left: 2.5em;
  }
  #sec06 .item-cont.n02 .img-cont .ttl {
    top: 10px;
    left: 5px;
    width: 30%;
  }

  #sec06 .item-cont.n03 .img-cont .txt {
    width: 120px;
    top: -42px;
    left: 40%;
  }
  #sec06 .item-cont.n03 .img-cont .ttl {
    top: 5px;
    right: 5px;
    width: 29.5%;
  }

  #sec06 .item-cont.n04 .img-cont .txt {
    width: 180px;
    top: -45px;
    left: 25%;
  }
  #sec06 .item-cont.n04 .img-cont .ttl {
    top: 8px;
    left: 2px;
    width: 34.5%;
  }


  #sec06 .item-cont .txt-cont dt {
    font-size: 1.4em;
  }
  #sec06 .item-cont .txt-cont dd {
    font-size: 1.1em;
  }
}

/*---------------------------------
sec07
--------------------------------*/
#sec07 {
  position: relative;
  height: 750px;
  padding-bottom: 20px;
}
#sec07 .color-bg {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  background: #ddecef;
  z-index: 1;
}
#sec07 .white-bg {
  position: absolute;
  top:120px;
  left: 0;
  width: 55%;
  min-width: 680px;
  height: 640px;
  background: #fff;
  z-index: 2;
}
#sec07 .color-bg .sec-ttl {
  padding: 8em 0;
  width: 430px;
  margin-left: auto;
}
#sec07 .color-bg .sec-ttl .conclusion {
  padding-top: 2em;
  text-align: left;
  font-size: 1.8em;
  color:#333;
  /* letter-spacing: 1px; */
  letter-spacing: -1px;
}
#sec07 .color-bg .sec-ttl .conclusion strong {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fff 60%);
}
#sec07 .conclusion.revenue {
  color: #ff9933;
}
#sec07 .content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index:3;
}
#sec07 .sec-cont {
  padding: 160px 0 0 0;
  margin-left: -30px;
}

@media screen and (max-width: 750px) {
  #sec07 {
    position: inherit;
    height: auto;
    padding-bottom: 0;
  }
  #sec07 .color-bg {
    position: inherit;
  }
  #sec07 .white-bg {
    display: none;
  }
  #sec07 .color-bg .sec-ttl {
    padding: 4em 0 25vw;
    width: 100%;
    text-align: center;
  }
  #sec07 .color-bg .sec-ttl .intro {
    text-align: left;
  }
  #sec07 .color-bg .sec-ttl .conclusion {
    padding-top: 1.2em;
    font-size: 1.4em;
  }
  #sec07 .content-wrap {
    position: inherit;
    padding: 0 15px 0 0;
    margin-top: -20vw;
  }
  #sec07 .content-wrap .innr {
    background: #fff;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  #sec07 .sec-cont {
    padding: 0 4% 0 0;
    margin-left: 0;
  }
}



/*---------------------------------
sec08
--------------------------------*/
#sec08 {
  padding: 8em 0;
  text-align: center;
}
#sec08 .sec-cont .qa-cont {
  width: 960px;
  margin: 0 auto;
  text-align: left;
  border:2px solid #eee;
  border-radius: 10px;
  margin-bottom: 2em;
  padding: 0 2.2em;
}
#sec08 .sec-cont .qa-cont h3 {
  border-bottom: 1px solid #eee;
}
#sec08 .sec-cont .qa-cont h3 span {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #49b49a;
  width: 100%;
  padding: 0.2em 0;
}
#sec08 .sec-cont .qa-cont h3 .en {
  font-size: 24px;
  color: #333;
  font-weight: normal;
  width: auto;
}
#sec08 .sec-cont .qa-cont h3 .bdr {
  font-size: 24px;
  font-weight: normal;
  color: #eee;
  width: auto;
  padding: 0 0.5em;
}
#sec08 .sec-cont .qa-cont .answer {
  font-size: 1.4em;
  letter-spacing: 1px;
  padding: 0.8em 0 1em;
}
#sec08 .sec-cont .qa-cont .answer strong {
  font-size: 1.3em;
}


@media screen and (max-width: 750px) {
  #sec08 {
    padding: 4em 0 0;
  }
  #sec08 .innr {
    padding: 0;
  }
  #sec08 .sec-cont .qa-cont {
    width: 100%;
    border:0;
    border-top:2px solid #eee;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0 1.6em 0 1.6em;
  }
  #sec08 .sec-cont .qa-cont:last-child {
    border-bottom:2px solid #eee;
  }
  #sec08 .sec-cont .qa-cont h3 {
    border-bottom: 0;
  }
  #sec08 .sec-cont .qa-cont h3 span {
    position: relative;
    font-size: 14px;
    width: 100%;
    padding: 0.6em 0;
  }
  #sec08 .sec-cont .qa-cont h3 > span {
    padding: 0.6em 1.2em 0.6em 0;
  }
  #sec08 .sec-cont .qa-cont h3 > span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #a6dfd1;
    border-right: 2px solid #a6dfd1;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #sec08 .sec-cont .qa-cont h3 > span.open::after {
    margin-top: -5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #sec08 .sec-cont .qa-cont h3 .en {
    font-size: 12px;
  }
  #sec08 .sec-cont .qa-cont h3 .bdr {
    font-size: 12px;
  }
  #sec08 .sec-cont .qa-cont .answer {
    display: none;
  }
  #sec08 .sec-cont .qa-cont .answer {
    font-size: 1.1em;
    border-top:1px solid #eee;
  }
  #sec08 .sec-cont .qa-cont .answer strong {
    font-size: 1.3em;
  }


}


/*---------------------------------
sec09
--------------------------------*/
#sec09 {
  padding: 8em 0;
  background: #f7f7f7;
  text-align: center;
}
#sec09 .intro {
  margin: 0 auto;
  width: 880px;
  text-align: left;
  padding-bottom: 4em;
}

/* promo01 */
#sec09 .sec-cont.promo01 {
  position: relative;
  height: 1024px;
}
#sec09 .sec-cont.promo01 .white-bg {
  position: absolute;
  width: 90%;
  min-width: 1200px;
  height: 1024px;
  top:0;
  left: 0;
  background: #fff url(../images/promo-img01.png) 103% 65px no-repeat;
}
#sec09 .sec-cont.promo01 .white-bg span {
  display: block;
  position: absolute;
  width: 100%;
  min-width: 1200px;
  height: 1024px;
  top:-10px;
  right: 10px;
  border:4px solid #81a1a7;
  border-left: 0;
}
#sec09 .sec-cont.promo01 .white-bg span .blue-bg {
  display: block;
  position: absolute;
  width: 100%;
  min-width: 1200px;
  height: 330px;
  bottom:0;
  right: 0;
  background: #81a1a7;
}

#sec09 .sec-cont.promo01 .content-wrap {
  position: absolute;
  width: 100%;
  padding: 5em 0 0 0;
}
#sec09 .sec-cont.promo01 h3 {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  color: #81a1a7;
  letter-spacing: 1px;
  line-height: 1.6;
  padding-bottom: 0.8em;
}
#sec09 .sec-cont.promo01 h3 .en {
  display: block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 2px;
}
#sec09 .sec-cont.promo01 .catch {
  font-size: 1.8em;
  font-weight: bold;
  color: #81a1a7;
}

/* promo02 */
#sec09 .sec-cont.promo02 {
  margin-top: 8em;
  position: relative;
  height: 720px;
}
#sec09 .sec-cont.promo02 .white-bg {
  position: absolute;
  width: 90%;
  min-width: 1200px;
  height: 720px;
  top:0;
  right: 0;
  background: #fff url(../images/promo-img02.png) -2% 310px no-repeat;
}
#sec09 .sec-cont.promo02 .white-bg span {
  display: block;
  position: absolute;
  width: 99.2%;
  min-width: 1190px;
  height: 720px;
  top:-10px;
  right: 0px;
  border:4px solid #49b49a;
  border-right: 0;
}

#sec09 .sec-cont.promo02 .content-wrap {
  position: absolute;
  width: 100%;
  padding: 5em 0 0 0;
}
#sec09 .sec-cont.promo02 h3 {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  color: #49b49a;
  letter-spacing: 1px;
  line-height: 1.6;
  padding-bottom: 0.8em;
}
#sec09 .sec-cont.promo02 h3 .en {
  display: block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 2px;
}
#sec09 .sec-cont.promo02 .catch {
  font-size: 1.8em;
  font-weight: bold;
  color: #49b49a;
}

/* promo03 */
#sec09 .sec-cont.promo03 {
  margin-top: 8em;
  position: relative;
  height: 530px;
}
#sec09 .sec-cont.promo03 .white-bg {
  position: absolute;
  width: 90%;
  min-width: 1200px;
  height: 530px;
  top:0;
  left: 0;
  background-color: #fff;
  background-image: url(../images/promo-img03.png), url(../images/promo-img04.png);
  background-repeat: no-repeat, no-repeat;
  background-position: 12% 40px, 101% 101%;
}
#sec09 .sec-cont.promo03 .white-bg span {
  display: block;
  position: absolute;
  width: 100%;
  min-width: 1200px;
  height: 530px;
  top:-10px;
  right: 10px;
  border:4px solid #d98557;
  border-left: 0;
}

#sec09 .sec-cont.promo03 .content-wrap {
  position: absolute;
  width: 100%;
  padding: 5em 0 0 0;
}
#sec09 .sec-cont.promo03 h3 {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  color: #d98557;
  letter-spacing: 1px;
  line-height: 1.6;
  padding-bottom: 0.8em;
}
#sec09 .sec-cont.promo03 h3 .en {
  display: block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 2px;
}
#sec09 .sec-cont.promo03 .catch {
  font-size: 1.8em;
  font-weight: bold;
  color: #d98557;
}


/* point-cont */
#sec09 .sec-cont .point-cont {
  padding: 4.5em 0 0;
}
#sec09 .sec-cont .point-cont dl {
  margin: 0 auto;
  display: table;
}
#sec09 .sec-cont .point-cont dl:first-of-type {
  padding-bottom: 3em;
}
#sec09 .sec-cont .point-cont dt,
#sec09 .sec-cont .point-cont dd {
  display: table-cell;
  vertical-align: middle;
}
#sec09 .sec-cont .point-cont dt span {
  display: block;
  text-align: center;
  font-size:1.6em;
  letter-spacing: 1px;
  font-weight: bold;
  width: 180px;
  height: 170px;
  padding-top: 3.3em;
}
#sec09 .sec-cont .point-cont dl:first-of-type dt span {
  color: #ddcb50;
  border:4px solid #ddcb50;
}
#sec09 .sec-cont .point-cont dl:last-of-type dt span {
  color: #fff;
  border:4px solid #ddcb50;
  background:#ddcb50;
}
#sec09 .sec-cont .point-cont dd {
  width: 580px;
  padding-left: 2.5em;
  text-align: left;
}
#sec09 .sec-cont.promo02 .point-cont dd,
#sec09 .sec-cont.promo03 .point-cont dd {
  width: 640px;
}
#sec09 .sec-cont .point-cont dd ul li {
  position: relative;
  font-size: 1.8em;
  padding:0 0 0.6em 1.8em;
}
#sec09 .sec-cont .point-cont dd ul li::before {
  content: "";
  display: inline-block;
  width:24px;
  height:18px;
  background: url(../images/check.svg) 0 0 no-repeat;
  background-size: cover;
  background-size: 24px 18px;
  position: absolute;
  top: 5px;
  left: 0;
}

/* case-cont */
#sec09 .sec-cont.promo01 .case-cont {
  padding-top: 9em;
  display: flex;
  justify-content: space-between;
}
#sec09 .sec-cont.promo01 .case-cont .case01 {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
#sec09 .sec-cont.promo01 .case-cont .case01,
#sec09 .sec-cont.promo01 .case-cont .case02 {
  width: 48.5%;
  height: 280px;
  position: relative;
  padding-top: 1em;
}
#sec09 .sec-cont.promo01 .case-cont .case01 h4,
#sec09 .sec-cont.promo01 .case-cont .case02 h4 {
  font-size: 1.8em;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
#sec09 .sec-cont.promo01 .case-cont .case01 .balloon01,
#sec09 .sec-cont.promo01 .case-cont .case02 .balloon01 {
  position: absolute;
  top: 60px;
  left: 20px;
  width: 410px;
  background: #507d86;
  font-size: 1.6em;
  line-height: 1.7;
  color:#fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 0.8em 2em;
  text-align: left;
}
#sec09 .sec-cont.promo01 .case-cont .case01 .balloon01::before,
#sec09 .sec-cont.promo01 .case-cont .case02 .balloon01::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  left: 15px;
  bottom: -15px;
  border-right: 20px solid #507d86;
  border-bottom: 20px solid #507d86;
  border-left: 20px solid transparent;
  border-top: 20px solid transparent;
}
#sec09 .sec-cont.promo01 .case-cont .case01 .balloon01::after,
#sec09 .sec-cont.promo01 .case-cont .case02 .balloon01::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  left: 0px;
  bottom: -20px;
  border-right: 20px solid #81a1a7;
  border-bottom: 20px solid #81a1a7;
  border-left: 20px solid transparent;
  border-top: 20px solid transparent;
}

#sec09 .sec-cont.promo01 .case-cont .case01 .balloon02,
#sec09 .sec-cont.promo01 .case-cont .case02 .balloon02 {
  position: absolute;
  top: 160px;
  left: 110px;
  background: #fff;
  font-size: 1.6em;
  line-height: 1.7;
  font-weight: bold;
  border-radius: 8px;
  padding: 0.8em 2em;
  text-align: left;
}
#sec09 .sec-cont.promo01 .case-cont .case01 .balloon02::before,
#sec09 .sec-cont.promo01 .case-cont .case02 .balloon02::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  right: 15px;
  bottom: -15px;
  border-right: 20px solid #fff;
  border-bottom: 20px solid #fff;
  border-left: 20px solid transparent;
  border-top: 20px solid transparent;
}
#sec09 .sec-cont.promo01 .case-cont .case01 .balloon02::after,
#sec09 .sec-cont.promo01 .case-cont .case02 .balloon02::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  right: 0px;
  bottom: -20px;
  border-right: 20px solid #81a1a7;
  border-bottom: 20px solid #81a1a7;
  border-left: 20px solid transparent;
  border-top: 20px solid transparent;
}
#sec09 .sec-cont.promo01 .case-cont .case01 .face-icn,
#sec09 .sec-cont.promo01 .case-cont .case02 .face-icn {
  position: absolute;
  width: 104px;
  bottom: 0;
  left: 0;
}
#sec09 .sec-cont.promo01 .case-cont .case02 .face-icn {
  bottom: 20px;
}

/* method-icn */
#sec09 .sec-cont .method-icn {
  position: absolute;
  top:-30px;
  left: 50%;
  margin-left: -100px;
}
#sec09 .sec-cont .method-icn span {
  position: relative;
  display: block;
  width: 200px;
  height: 46px;
  border-radius: 28px;
  font-size: 1.8em;
  line-height: 46px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
#sec09 .sec-cont .method-icn span::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -8px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
}

#sec09 .sec-cont.promo01 .method-icn span {
  background: #81a1a7;
}
#sec09 .sec-cont.promo01 .method-icn span::after {
  border-color: #81a1a7 transparent transparent transparent;
}
#sec09 .sec-cont.promo02 .method-icn span {
  background: #49b49a;
}
#sec09 .sec-cont.promo02 .method-icn span::after {
  border-color: #49b49a transparent transparent transparent;
}
#sec09 .sec-cont.promo03 .method-icn span {
  background: #d98557;
}
#sec09 .sec-cont.promo03 .method-icn span::after {
  border-color: #d98557 transparent transparent transparent;
}

@media screen and (max-width: 750px) {

  #sec09 {
    padding: 4em 0;
    overflow: hidden;
  }
  #sec09 .intro {
    margin: 0 auto;
    width: 100%;
    text-align: left;
    padding-bottom: 4em;
  }

  /* promo01 */
  #sec09 .sec-cont.promo01 {
    position: inherit;
    height: auto;
  }
  #sec09 .sec-cont.promo01 .white-bg {
    display: none;
  }
  #sec09 .sec-cont.promo01 .content-wrap {
    position: relative;
    width: 100%;
    padding: 3em 0 0 15px;
    background: #fff url(../images/promo-img01.png) 103% 65px no-repeat;
    background-size: 60%;
    border: 3px solid #81a1a7;
    border-left: 0;
    margin: 0 0 0 -15px;
  }
  #sec09 .sec-cont.promo01 h3 {
    font-size: 2em;
  }
  #sec09 .sec-cont.promo01 h3 .en {
    font-size: 10px;
  }
  #sec09 .sec-cont.promo01 .catch {
    font-size: 1.3em;
  }
  #sec09 .sec-cont.promo01 .case-wrap {
    background: #81a1a7;
    margin: 2em -16px 0 -15px;
  }


  /* promo02 */
  #sec09 .sec-cont.promo02 {
    margin-top: 5em;
    position: inherit;
    height: auto;
  }
  #sec09 .sec-cont.promo02 .white-bg {
    display: none;
  }

  #sec09 .sec-cont.promo02 .content-wrap {
    position: relative;
    width: 100%;
    padding: 3em 15px 1.5em 0;
    background: #fff url(../images/promo-img02.png) -2% 2% no-repeat;
    background-size: 60%;
    border:3px solid #49b49a;
    border-right: 0;
    margin: 0 0 0 15px;
  }
  #sec09 .sec-cont.promo02 h3 {
    font-size: 2em;
  }
  #sec09 .sec-cont.promo02 h3 .en {
    font-size: 10px;
  }
  #sec09 .sec-cont.promo02 .catch {
    font-size: 1.3em;
  }

  /* promo03 */
  #sec09 .sec-cont.promo03 {
    margin-top: 5em;
    position: inherit;
    height: auto;
  }
  #sec09 .sec-cont.promo03 .white-bg {
    display: none;
  }

  #sec09 .sec-cont.promo03 .content-wrap {
    position: relative;
    width: 100%;
    padding: 3em 0 0 15px;
    background-color: #fff;
    background-image: url(../images/promo-img03.png), url(../images/promo-img04.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 0% 5%, 101% 101%;
        background-size: 40%, 40%;
    border:3px solid #d98557;
    border-left: 0;
    margin: 0 0 0 -15px;
  }
  #sec09 .sec-cont.promo03 h3 {
    font-size: 2em;
  }
  #sec09 .sec-cont.promo03 h3 .en {
    font-size: 10px;
  }
  #sec09 .sec-cont.promo03 .catch {
    font-size: 1.3em;
  }


  /* point-cont */
  #sec09 .sec-cont .point-cont {
    padding: 2.5em 0 0;
  }
  #sec09 .sec-cont .point-cont dl {
    margin: 0 auto;
    display: block;
  }
  #sec09 .sec-cont .point-cont dl:first-of-type {
    padding-bottom: 1.5em;
  }
  #sec09 .sec-cont .point-cont dt,
  #sec09 .sec-cont .point-cont dd {
    display: block;
  }
  #sec09 .sec-cont .point-cont dt span {
    font-size:1.2em;
    width: 70%;
    height: 38px;
    padding-top: 0;
    line-height: 34px;
    margin: 0 auto;
    margin-bottom: 1em;
  }
  #sec09 .sec-cont .point-cont dl:first-of-type dt span {
    border:2px solid #ddcb50;
  }
  #sec09 .sec-cont .point-cont dl:last-of-type dt span {
    border:2px solid #ddcb50;
  }
  #sec09 .sec-cont .point-cont dd {
    width: 100%;
    padding-left: 0;
    text-align: left;
  }
  #sec09 .sec-cont.promo02 .point-cont dd,
  #sec09 .sec-cont.promo03 .point-cont dd {
    width: 100%;
  }
  #sec09 .sec-cont .point-cont dd ul li {
    font-size: 1.3em;
  }
  #sec09 .sec-cont .point-cont dd ul li::before {
    width:14px;
    height:11px;
    background-size: 14px 11px;
  }

  /* case-cont */
  #sec09 .sec-cont.promo01 .case-cont {
    padding-top: 0;
    display: block;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 0;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01,
  #sec09 .sec-cont.promo01 .case-cont .case02 {
    width: 100%;
    height: 225px;
    position: relative;
    padding-top: 2em;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01 h4,
  #sec09 .sec-cont.promo01 .case-cont .case02 h4 {
    font-size: 1.3em;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01 .balloon01,
  #sec09 .sec-cont.promo01 .case-cont .case02 .balloon01 {
    position: absolute;
    top: 60px;
    left: 10px;
    width: 86%;
    background: #507d86;
    font-size: 1.1em;
    line-height: 1.7;
    color:#fff;
    font-weight: bold;
    border-radius: 8px;
    padding: 0.8em 2em;
    text-align: left;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01 .balloon01::before,
  #sec09 .sec-cont.promo01 .case-cont .case02 .balloon01::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: rotate(45deg);
    left: 15px;
    bottom: -15px;
    border-right: 20px solid #507d86;
    border-bottom: 20px solid #507d86;
    border-left: 20px solid transparent;
    border-top: 20px solid transparent;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01 .balloon01::after,
  #sec09 .sec-cont.promo01 .case-cont .case02 .balloon01::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: rotate(45deg);
    left: 0px;
    bottom: -20px;
    border-right: 20px solid #81a1a7;
    border-bottom: 20px solid #81a1a7;
    border-left: 20px solid transparent;
    border-top: 20px solid transparent;
  }

  #sec09 .sec-cont.promo01 .case-cont .case01 .balloon02,
  #sec09 .sec-cont.promo01 .case-cont .case02 .balloon02 {
    position: absolute;
    top: 140px;
    left: inherit;
    right: 0;
    background: #fff;
    font-size: 1.1em;
    line-height: 1.7;
    font-weight: bold;
    border-radius: 8px;
    padding: 0.8em 2em;
    text-align: left;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01 .balloon02::before,
  #sec09 .sec-cont.promo01 .case-cont .case02 .balloon02::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: rotate(45deg);
    right: 15px;
    bottom: -15px;
    border-right: 20px solid #fff;
    border-bottom: 20px solid #fff;
    border-left: 20px solid transparent;
    border-top: 20px solid transparent;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01 .balloon02::after,
  #sec09 .sec-cont.promo01 .case-cont .case02 .balloon02::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: rotate(45deg);
    right: 0px;
    bottom: -20px;
    border-right: 20px solid #81a1a7;
    border-bottom: 20px solid #81a1a7;
    border-left: 20px solid transparent;
    border-top: 20px solid transparent;
  }
  #sec09 .sec-cont.promo01 .case-cont .case01 .face-icn,
  #sec09 .sec-cont.promo01 .case-cont .case02 .face-icn {
    position: absolute;
    width: 82px;
    bottom: 0;
    left: 0;
  }
  #sec09 .sec-cont.promo01 .case-cont .case02 .face-icn {
    bottom: 20px;
  }

  /* method-icn */
  #sec09 .sec-cont .method-icn {
    position: absolute;
    top: -22px;
    left: 50%;
    margin-left: -80px;
  }
  #sec09 .sec-cont.promo02 .method-icn {
    margin-left: -100px;
  }
  #sec09 .sec-cont .method-icn span {
    position: relative;
    display: block;
    width: 180px;
    height: 38px;
    border-radius: 28px;
    font-size: 1.2em;
    line-height: 38px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  #sec09 .sec-cont .method-icn span::after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -8px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
  }


}



@media screen and (max-width: 375px) {

#sec09 .sec-cont.promo01 .case-cont .case01 .balloon02,
#sec09 .sec-cont.promo01 .case-cont .case02 .balloon02 {
  width: 70%;
}
}

/*---------------------------------
sec10
--------------------------------*/
#sec10 {
  padding: 8em 0;
  text-align: center;
}
#sec10 .register-cont {
  background: #f2faf8;
  display: flex;
  justify-content: center;
  padding: 5em 0 5em 4em;
}
#sec10 .register-cont .leftBox {
  text-align: center;
  width: 680px;
}
#sec10 .register-cont .leftBox .txt {
  font-size: 1.8em;
  font-weight: bold;
  padding-bottom: 0.5em;
}
#sec10 .register-cont .rightBox {
  text-align: center;
  width: 270px;
}
#sec10 .register-cont .rightBox .txt {
  font-size: 1.4em;
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: 0.5em;
}

#sec10 .register-cont .leftBox .btn-cont a {
  border: 4px solid #ff9933;
  border-radius: 45px;
  width: 680px;
  height: 90px;
}
#sec10 .register-cont .leftBox .btn-cont a span {
  position: absolute;
  display: inline-block;
  width: 684px;
  height: 94px;
  border: 4px solid #ff9933;
  background: #ff9933;
  padding-top:27px;
  font-size: 30px;
  top: -16px;
  left: -12px;
  border-radius: 47px;
}
#sec10 .register-cont .leftBox .btn-cont a:hover,
#sec10 .register-cont .leftBox .btn-cont a:active {
  background: #ff9933;
}

#sec10 .howto-cont {
  display: flex;
  justify-content: space-between;
  padding: 4em 0 6em;
}
#sec10 .howto-cont .leftBox,
#sec10 .howto-cont .rightBox {
  width: 48.5%;
  text-align: left;
}
#sec10 .howto-cont .leftBox img,
#sec10 .howto-cont .rightBox img {
  float: left;
  margin-right: 2em;
}
#sec10 .howto-cont .txt {
  font-size: 1.6em;
  line-height: 2;
  padding-bottom: 0.5em;
}
#sec10 .howto-cont .btnS-cont a {
  display: inline-block;
  border:2px solid #3bae92;
  border-radius: 20px;
  width: 270px;
  height: 40px;
  font-size: 1.6em;
  font-weight: bold;
  color: #3bae92;
  letter-spacing: 1px;
  text-align: center;
  padding-top: 5px;
}
#sec10 .howto-cont .btnS-cont a:hover,
#sec10 .howto-cont .btnS-cont a:active {
  background: #3bae92;
  color: #fff;
  text-decoration: none;
}
#sec10 .howto-cont .rightBox .btnS-cont a {
  margin-top: 1.7em;
}

#sec10 .video-cont .txt {
  padding-bottom: 1.6em;
}
#sec10 .video-cont .txt strong {
  font-size: 2.4em;
  font-weight: bold;
}
#sec10 .video-cont .video {
  width: 660px;
  height: 495px;
  box-shadow:0px 0px 6px 3px #eee;
}


@media screen and (max-width: 750px) {
  #sec10 {
    padding: 4em 0;
  }
  #sec10 .register-cont {
    padding: 3em 15px;
    display: block;
    margin: 0 -15px;
  }
  #sec10 .register-cont .leftBox {
    text-align: center;
    width: 100%;
  }
  #sec10 .register-cont .leftBox .txt {
    font-size: 1.3em;
  }
  #sec10 .register-cont .rightBox {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2em;
  }
  #sec10 .register-cont .rightBox .txt {
    font-size: 1.2em;
    padding: 1em 1em 0 0;
  }
  #sec10 .register-cont .rightBox img {
    width: 76px;
      height: 76px;
  }

  #sec10 .register-cont .leftBox .btn-cont a {
    border: 2px solid #ff9933;
    width: 100%;
    height: 52px;
  }
  #sec10 .register-cont .leftBox .btn-cont a span {
    width: 101%;
    height: 52px;
    border: 2px solid #ff9933;
    background: #ff9933;
    padding-top:14px;
    font-size: 15px;
    top: -6px;
    left: -4px;
  }

  #sec10 .howto-cont {
    display: block;
    padding: 4em 0 6em;
  }
  #sec10 .howto-cont .leftBox,
  #sec10 .howto-cont .rightBox {
    width: 100%;
    text-align: left;
  }
  #sec10 .howto-cont .rightBox {
    margin-top: 2em;
  }
  #sec10 .howto-cont .leftBox img,
  #sec10 .howto-cont .rightBox img {
    float: left;
    margin-right: 2em;
    width: 40%;
  }
  #sec10 .howto-cont .txt {
    font-size: 1.2em;
  }
  #sec10 .howto-cont .btnS-cont {
    text-align: right;
  }
  #sec10 .howto-cont .btnS-cont a {
    width: 50%;
    height: 30px;
    font-size: 1.2em;
    padding-top: 3px;
  }
  #sec10 .howto-cont .rightBox .btnS-cont a {
    margin-top: 1em;
  }

  #sec10 .video-cont .txt {
    padding-bottom: 1em;
  }
  #sec10 .video-cont .txt strong {
    font-size: 1.5em;
  }
  #sec10 .video-cont .video {
    width: 100%;
    height: 60vw;
  }
}





/*---------------------------------
footer
--------------------------------*/
footer {
  background: #ddecef;
  padding: 8em 0 4em;
}
footer .innr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .sec-ttl {
  width: 570px;
  padding-left: 30px;
}
footer .sec-cont {
  width: 570px;
  text-align: center;
  padding-top: 10em;
}
footer .sec-cont .btn-cont a {
  border: 2px solid #3399ff;
  border-radius: 32px;
  width: 470px;
  height: 64px;
}
footer .sec-cont .btn-cont a span {
  position: absolute;
  display: inline-block;
  width: 471px;
  height: 65px;
  background: #3399ff;
  border: 2px solid #3399ff;
  padding-top:18px;
  font-size: 21px;
  top: -8px;
  left: -7px;
  border-radius: 32px;
}
footer .sec-cont .btn-cont a:hover,
footer .sec-cont .btn-cont a:active {
  background: #3399ff;
}

/* フッター会社情報 */
footer .sec-cont.company-info {
  width: 100%;
  padding-top: 4em;
  text-align: center;
}
footer .sec-cont.company-info .logo-area {
  margin-bottom: 1.5em;
}
footer .sec-cont.company-info .logo {
  max-width: 400px;
  margin-bottom: 0.5em;
}
footer .sec-cont.company-info address {
  font-style: normal;
  font-size: 1.4em;
}
footer .sec-cont.company-info dl {
  display: inline-block;
  margin: 0 1.5em;
  font-size: 1.4em;
}
footer .sec-cont.company-info dt {
  display: inline;
  font-weight: bold;
}
footer .sec-cont.company-info dt::after {
  content: "：";
}
footer .sec-cont.company-info dd {
  display: inline;
}
footer .sec-cont.company-info a {
  color: #333;
}

footer #copyright {
  font-size: 1.2em;
  color: #666;
  text-align: center;
  letter-spacing: 1px;
  padding-top: 8em;
}


@media screen and (max-width: 750px) {
  footer {
    padding: 4em 0 2em;
  }
  footer .innr {
    display: block;
  }
  footer .sec-ttl {
    width: 100%;
    padding-left: 0;
  }
  footer .sec-ttl h2 {
      text-align: center;
  }
  footer .sec-cont {
    width: 100%;
    text-align: center;
    padding-top: 3em;
  }
  footer .sec-cont .btn-cont a {
    width: 90%;
    height: 52px;
  }
  footer .sec-cont .btn-cont a span {
    width: 101%;
    height: 52px;
    padding-top:14px;
    font-size: 15px;
    top: -6px;
    left: -4px;
  }

  footer #copyright {
    font-size: 1em;
    padding-top: 4em;
  }
  footer .sec-cont.company-info {
    padding-top: 3em;
  }
  footer .sec-cont.company-info .logo {
    max-width: 330px;
  }
  footer .sec-cont.company-info dl {
    display: block;
    margin: 0.5em 0;
  }
}

@media print{
}
