.main {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:30px;
	max-width:210px;}

@media screen and (max-width: 959px) {
  .main {
    width: 98vw;
  }
}

.title {
  color: #0b97ce;
  font-size: 30px;
  text-align: center;
  border-bottom: 5px solid #0b97ce;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.title h2 {
  margin-bottom: 5px;
}

@media screen and (max-width: 959px) {
  .title {
    width: 90vw;
    font-size: 24px;
  }
}

p {
  font-weight: bold;
}

.sub-title {
  font-size: 24px;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  text-align: center;
  background-color: #0b97ce;
  color: #fff;
  border-radius: 50px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .sub-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 576px) {
  .sub-title {
    font-size: 18px;
    margin-top: 60px;
  }
}

.sub-title:before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 24px solid #0b97ce;
}

.sub-title h3 {
  padding: 5px 0;
}

@media screen and (max-width: 959px) {
  .sub-title {
    width: 70vw;
  }
}

.fix-menu {
  display: flex;
  justify-content: space-between;
  width: 70vw;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media screen and (max-width: 959px) {
  .fix-menu {
    width: 90vw;
  }
}

@media screen and (max-width: 576px) {
  .fix-menu {
    display: none;
  }
}

.fix-menu-sns {
  background-color: #fff;
  border-radius: 5px;
}

.fix-menu-sns a i {
  font-size: 2em;
  margin: 10px;
}

.fix-menu-sns a i:hover {
  opacity: 0.8;
}

.fix-menu-sns a .fa-twitter {
  color: #64ccf5;
  border-radius: 100%;
  font-size: 1.8em;
}

.fix-menu-sns a .fa-line {
  color: #6eb922;
  background-color: #fff;
  border-radius: 5px;
}

.fix-menu-sns a .fa-youtube {
  color: red;
  box-sizing: border-box;
  border-radius: 8px;
}

.fix-menu-appoint {
  margin-top: 10px;
}

.fix-menu-appoint a {
  color: #0b97ce;
  text-decoration: none;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 30px;
  font-weight: bold;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.fix-menu-appoint a:hover {
  color: #fff;
  background-color: #0b97ce;
}

.top {
  margin-bottom: 20px;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 30px;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.top-title {
  background-color: #0b97ce;
  color: #fff;
  width: 180px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  padding: 15px 0;
  margin-bottom: 100px;
  position: relative;
}

.top-title:before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 24px solid #0b97ce;
}

.top-sub {
  color: #0b97ce;
}

.top-sub h3 {
  font-size: 26px;
}

.second {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
  padding: 30px 0;
  margin-bottom: 20px;
}

.second-contents .second-text {
  text-align: center;
  padding: 50px 0;
}

@media screen and (max-width: 576px) {
  .second-contents .second-text {
    text-align: left;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

.second-images {
  text-align: center;
}

.second-images img {
  width: 22%;
  margin: 0 3%;
}

@media screen and (max-width: 959px) {
  .second-images img {
    width: 70vw;
    margin: 0;
  }
}

@media screen and (max-width: 576px) {
  .second-images img {
    width: 80vw;
  }
}

.second .flex {
  display: flex;
  justify-content: space-between;
}

.second .flex .second-charm-item {
  width: 49%;
  padding: 0;
}

@media screen and (max-width: 959px) {
  .second .flex .second-charm-item {
    width: 90%;
    margin: 25px  auto  15px auto;
  }
}

.second .flex .second-charm-item h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.second .flex .second-charm-item p {
  margin-bottom: 0;
}

@media screen and (max-width: 959px) {
  .second .flex {
    display: unset;
  }
}

.second-charm-row {
  margin: 10px auto;
  width: 80%;
}

@media screen and (max-width: 959px) {
  .second-charm-row {
    width: 90%;
  }
}

.second .second-charm-item {
  background-color: #f1eeee;
  text-align: center;
}

.second .second-charm-item h4 {
  padding-top: 10px;
  font-size: 24px;
  color: #0b97ce;
  border-bottom: #0b97ce 2px solid;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
  .second .second-charm-item h4 {
    width: 80%;
  }
}

.second .second-charm-item p {
  padding-bottom: 10px;
  margin-top: 10px;
}

@media screen and (max-width: 576px) {
  .second .second-charm-item p {
    font-size: 13px;
  }
}

.third {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
  padding: 30px 0;
  margin-bottom: 20px;
}

.third .third-border {
  border-bottom: dotted 3px #0b97ce;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.third .third-content1 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 959px) {
  .third .third-content1 {
    width: 90vw;
  }
}

.third .third-content1 h4 {
  color: #0b97ce;
  border-bottom: #0b97ce 2px solid;
  text-align: center;
  font-size: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.third .third-content1 .third-text {
  text-align: center;
}

@media screen and (max-width: 576px) {
  .third .third-content1 .third-text {
    font-size: 16px;
  }
}

.third .third-content1 .third-frame {
  border: 6px #0b97ce solid;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 576px) {
  .third .third-content1 .third-frame {
    display: block;
    max-width: 315px;
  }
}

@media screen and (max-width: 959px) {
  .third .third-content1 .third-frame {
    width: 430px;
  }
}

.third .third-content1 .third-frame-left {
/*  transform: rotate(90deg);*/
  background-color: #0b97ce;
  color: #fff;
  padding: 0 10px;
  white-space: nowrap;
  height:130px;
  margin-right:20px;
}

@media screen and (max-width: 576px) {
  .third .third-content1 .third-frame-left {
    transform: unset;
    text-align: center;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}

.third .third-content1 .third-frame-left p {
  font-size: 20px;
  margin-top: 3px;
}

@media screen and (max-width: 576px) {
  .third .third-content1 .third-frame-left p {
    font-size: 30px;
    margin-top: 15px;
  }
}

.third .third-content1 .third-frame-right p {
  font-size: 30px;
  color: #0b97ce;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .third .third-content1 .third-frame-right p {
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 10px;
  }
}

@media screen and (max-width: 576px) {
  .third .third-content1 .third-frame-right p {
    padding: 20px 0 20px 10px;
  }
}

.third .third-content1 .third-text-bottom {
  text-align: center;
  color: #0b97ce;
}

@media screen and (max-width: 959px) {
  .third .third-content1 .third-text-bottom {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .third .third-content1 .third-text-bottom {
    font-size: 12px;
  }
}

.third .third-content2-headline {
  text-align: center;
  font-size: 20px;
  color: #0b97ce;
}

@media screen and (max-width: 576px) {
  .third .third-content2-headline {
    font-size: 16px;
    text-align-last: left;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.third .third-content2-items {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 959px) {
  .third .third-content2-items {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 959px) and (max-width: 959px) {
  .third .third-content2-items .third-content2-item {
    width: 50vw;
    margin: 30px auto;
  }
}

@media screen and (max-width: 959px) and (max-width: 576px) {
  .third .third-content2-items .third-content2-item {
    width: 80vw;
    margin: 50px auto;
  }
}

.third .third-content2-items .label {
  background-color: #0b97ce;
  color: #fff;
  text-align: center;
}

.third .third-content2-items .label p {
  padding: 5px 0;
  margin: 0;
}

.third .third-content2-items .border {
  color: #0b97ce;
  border: #0b97ce 2px solid;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .third .third-content2-items .border {
    margin-bottom: 10px;
  }
}

.third .third-content2-items .border p {
  margin: 1px;
}

.third .third-content2-items .item-text1 {
  background-color: #f1eeee;
  padding: 10px;
  height: 200px;
}

@media screen and (max-width: 959px) {
  .third .third-content2-items .item-text1 {
    padding-left: 30px;
    font-size: 18px;
  }
}

.third .third-content2-items .item-text2 {
  background-color: #f1eeee;
  padding: 10px;
  height: 200px;
  text-align: center;
}

.third .third-content2-items .item-text2 p {
  margin: 1px;
  padding: 2px 0;
}

@media screen and (max-width: 959px) {
  .third .third-content2-items .item-text2 p {
    font-size: 18px;
  }
}

.third .third-content2-items .item-text3 {
  background-color: #f1eeee;
  height: 200px;
  padding: 10px;
  position: relative;
}

.third .third-content2-items .item-text3 .text3-img-left {
  position: absolute;
  width: 60px;
  top: 65px;
}

@media screen and (max-width: 959px) {
  .third .third-content2-items .item-text3 .text3-img-left {
    width: 80px;
  }
}

.third .third-content2-items .item-text3 .text3-img-right {
  position: absolute;
  width: 60px;
  right: 0;
  top: 60px;
}

@media screen and (max-width: 959px) {
  .third .third-content2-items .item-text3 .text3-img-right {
    width: 80px;
  }
}

.third .third-content2-items .item-text3 .img-comment-left {
  position: absolute;
  left: 70px;
  background-color: #0b97ce;
  color: #fff;
  border-radius: 90%;
  padding: 12px;
  font-size: 14px;
}

.third .third-content2-items .item-text3 .img-comment-left:before {
  position: absolute;
  content: "";
  bottom: 3px;
  left: -13px;
  margin-top: -7px;
  border: 7px solid transparent;
  border-right: 20px solid #0b97ce;
  transform: rotate(-30deg);
}

.third .third-content2-items .item-text3 .img-comment-right {
  position: absolute;
  right: 40px;
  top: 100px;
  border-radius: 90%;
  background-color: #fff;
  padding: 10px;
  font-size: 14px;
}

.third .third-content2-items .item-text3 .img-comment-right:before {
  position: absolute;
  content: "";
  bottom: 30px;
  right: -15px;
  margin-top: -7px;
  border: 7px solid transparent;
  border-right: 20px solid #fff;
  transform: rotate(150deg);
}

.third .third-content2-item {
  width: 250px;
}

.third .delivery {
  position: absolute;
  top: 175px;
  left: 110px;
  color: #0b97ce;
}

@media screen and (max-width: 959px) {
  .third .delivery {
    left: 45%;
  }
}

.third .delivery:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 15px solid #0b97ce;
}

.third .text-under {
  color: #0b97ce;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .third .text-under {
    font-size: 14px;
  }
}

.third .third-table {
  display: flex;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  border: 2px #0b97ce solid;
}

@media screen and (max-width: 959px) {
  .third .third-table {
    display: block;
    width: 90%;
  }
}

.third .third-table-left {
  margin: 15px;
  background-color: #0b97ce;
  color: #fff;
  width: 100px;
  height: 100px;
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 959px) {
  .third .third-table-left {
    width: 20vw;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    padding: 5px 20px;
  }
}

@media screen and (max-width: 959px) and (max-width: 576px) {
  .third .third-table-left {
    width: 40vw;
  }
}

@media screen and (max-width: 959px) {
  .third .third-table-left p {
    margin: 0;
  }
  .third .third-table-left br {
    display: none;
  }
}

.third .third-table-right {
  margin-left: 20px;
}

@media screen and (max-width: 959px) {
  .third .third-table-right {
    margin-left: 0px;
  }
}

.third .third-table-right-row {
  display: flex;
}

@media screen and (max-width: 959px) {
  .third .third-table-right-row {
    align-items: center;
  }
  .third .third-table-right-row .row-right {
    width: 70vw;
  }
  .third .third-table-right-row span {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .third .third-table-right-row .row-right {
    width: 60vw;
  }
}

.third .third-table-right-row p {
  margin: 7px;
  color: #0b97ce;
  padding: 0 10px;
}

@media screen and (max-width: 959px) {
  .third .third-table-right-row p {
    margin: 10px;
    padding: 0;
  }
}

@media screen and (max-width: 576px) {
  .third .third-table-right-row p {
    font-size: 14px;
  }
}

.third .third-graph {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 959px) {
  .third .third-graph {
    display: unset;
  }
}

.third .third-graph-text {
  position: relative;
  width: 70%;
}

@media screen and (max-width: 959px) {
  .third .third-graph-text {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    text-align: center;
  }
}

.third .third-graph-text:before {
  content: "";
  position: absolute;
  top: -5%;
  right: -65px;
  margin-left: -7px;
  border: 80px solid transparent;
  border-left: 30px solid #0b97ce;
}

@media screen and (max-width: 959px) {
  .third .third-graph-text:before {
    border: 80px solid transparent;
    border-top: 20px solid #0b97ce;
    top: 120%;
    right: 28.5vw;
  }
}

@media screen and (max-width: 576px) {
  .third .third-graph-text:before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.third .third-graph-text h4 {
  color: #0b97ce;
  font-size: 40px;
  margin: 10px;
}

@media screen and (max-width: 959px) {
  .third .third-graph-text h4 {
    font-size: 30px;
    margin-top: 40px;
  }
}

.third .third-graph img {
  width: 30%;
}

@media screen and (max-width: 959px) {
  .third .third-graph img {
    width: 50vw;
    padding: 50px 25vw;
  }
}

@media screen and (max-width: 576px) {
  .third .third-graph img {
    width: 70vw;
    padding: 70px 15vw 20px 15vw;
  }
}

.fourth {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
  padding: 30px 0;
  margin-bottom: 20px;
}

.fourth-subtitle {
  text-align: center;
}

.fourth-subtitle h3 {
  color: #0b97ce;
  font-size: 32px;
  margin-bottom: 5px;
}

@media screen and (max-width: 959px) {
  .fourth-subtitle h3 {
    font-size: 24px;
  }
}

.fourth-subtitle p {
  font-size: 20px;
  margin-top: 5px;
}

@media screen and (max-width: 959px) {
  .fourth-subtitle p {
    font-size: 16px;
  }
}

.fourth-contents {
  display: block;
  margin-top: 30px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

@media screen and (max-width: 959px) {
  .fourth-contents {
    display: block;
  }
}

.fourth-contents .fourth-content1 {
  border: #0b97ce solid 5px;
  padding: 0 30px;
  color: #0b97ce;
}

@media screen and (max-width: 959px) {
  .fourth-contents .fourth-content1 {
    margin: 50px 0;
  }
}

@media screen and (max-width: 576px) {
  .fourth-contents .fourth-content1 {
    width: 70vw;
    padding: 0 10px;
  }
}

.fourth-contents .fourth-content1 h4 {
  text-align: center;
  border-bottom: #0b97ce solid 3px;
}

.fourth-contents .fourth-content1 p {
  padding: 0 30px;
}

@media screen and (max-width: 576px) {
  .fourth-contents .fourth-content1 p {
    font-size: 14px;
  }
}

.fourth-contents .fourth-content2 {
  text-align: center;
}

.fourth-content2 p {
  color: #0b97ce;
}

.fourth-content2-blowout {
  text-align:center;
  background-color: #0b97ce;
  font-size: 27px;
  color: #fff;
  width: 280px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  padding: 15px 0;
  margin-bottom: 50px;
  position: relative;
}

.fourth-contents .fourth-content2-blowout:before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 24px solid #0b97ce;
}

.fourth-table {
  border: #0b97ce 2px solid;
  width: 90%;
  margin: 80px auto;
  padding: 20px 30px;
  position: relative;
}

@media screen and (max-width: 959px) {
  .fourth-table {
    width: 80vw;
    padding: 40px 30px;
  }
}

.fourth-table-title {
  position: absolute;
  padding: 10px 20px;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #0b97ce;
  border: 2px #0b97ce solid;
  background-color: #fff;
}

.fourth-table table {
  color: #0b97ce;
  font-weight: bold;
  font-size: 16px;
}

.fourth-table table tr {
  vertical-align: unset;
}

.fourth-table table tr td {
  padding: 5px 0;
}

.td-right {
	width:calc(100% - 120px);}

.fourth-table table tr .td-black {
  color: black;
  font-weight: normal;
  font-size: 12px;
  padding-left: 2%;
}

.fourth-table table tr .td-left {
  padding-right: 3%;
  width: 120px;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .fourth-table table tr .td-right {
    font-size: 16px;
    width: 50vw;
  }
}

.fourth-table table .td-suggest {
  display: flex;
  position: relative;
}

@media screen and (max-width: 959px) {
  .fourth-table table .td-suggest {
    font-size: 12px;
    margin-left: 8vw;
  }
}

@media screen and (max-width: 576px) {
  .fourth-table table .td-suggest {
    display: none;
  }
}

.fourth-table table .td-suggest .arrow {
  font-size: 30px;
  margin-right: 15px;
  position: absolute;
  left: -50px;
  top: 20px;
}

@media screen and (max-width: 959px) {
  .fourth-table table .td-suggest .arrow {
    top: 30px;
    left: -35px;
  }
}

.fourth-table table .td-suggest .sug-text {
  font-weight: normal;
  border: 2px solid #0b97ce;
  padding: 6px 20px;
}

.fourth-table table .td-suggest .sug-text p {
  margin: 0;
}

@media screen and (max-width: 959px) {
  .fourth-table table .td-suggest .sug-text {
    font-size: 14px;
    padding: 6px 5px;
    width: 60px;
  }
}

.fourth .fourth-text {
  text-align: center;
}

@media screen and (max-width: 576px) {
  .fourth .fourth-text {
    font-size: 14px;
  }
}

.fifth {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
  padding: 30px 0 0 0;
  margin-bottom: 20px;
}

.fifth-contents {
  margin-top: 70px;
}

.fifth-contents-item {
  display: flex;
  width: 80%;
  align-items: center;
  margin: 40px auto;
  height: 100px;
  background-color: #f1eeee;
  position: relative;
}

.fifth-contents-item:before {
  content: "";
  position: absolute;
  top: 115%;
  left: 50%;
  margin-left: -7px;
  border: 10px solid transparent;
  border-top: 12px solid #0b97ce;
}

@media screen and (max-width: 959px) {
  .fifth-contents-item {
    width: 90vw;
  }
}

.fifth-contents-item .absolute {
  position: relative;
}

.fifth-contents-item .absolute .done {
  position: absolute;
  right: 0;
  font-size: 80px;
  top: -40px;
  right: -30px;
  transform: rotate(20deg);
  border: 10px solid #af3902;
  color: #af3902;
  border-radius: 999%;
  height: 80px;
  width: 80px;
  padding: 0 10px 17px 10px;
}

@media screen and (max-width: 959px) {
  .fifth-contents-item .absolute .done {
    font-size: 40px;
    height: 40px;
    width: 40px;
    border: 5px #af3902 solid;
    padding: 0 5px 8px 5px;
    right: -3vw;
  }
}

.fifth-contents-item .absolute .done:before {
  content: "";
  position: absolute;
  top: 98px;
  left: 5px;
  margin-left: -7px;
  border: 4px solid transparent;
  border-right: 40px solid #af3902;
}

@media screen and (max-width: 959px) {
  .fifth-contents-item .absolute .done:before {
    content: "";
    position: absolute;
    left: 5px;
    margin-left: -7px;
    border: 2px solid transparent;
    border-right: 20px solid #af3902;
    top: 48px;
  }
}

.fifth-contents-item-left {
  background-color: #0b97ce;
  color: #fff;
  width: 110px;
  padding: 23px 0;
  text-align: center;
}

@media screen and (max-width: 576px) {
  .fifth-contents-item-left {
    width: 10vw;
  }
}

.fifth-contents-item-right {
  width: 100%;
  text-align: center;
}

.fifth-contents-item-right h3 {
  font-size: 30px;
  color: #0b97ce;
  margin: 0;
}

@media screen and (max-width: 959px) {
  .fifth-contents-item-right h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 576px) {
  .fifth-contents-item-right h3 {
    font-size: 20px;
  }
}

.fifth-contents-item-right p {
  margin: 0;
}

@media screen and (max-width: 959px) {
  .fifth-contents-item-right p {
    font-size: 12px;
  }
}

.fifth-contents-item-right p span {
  margin: 0;
  font-size: 14px;
}

.fifth-contents .blue-border {
  border: 3px #0b97ce solid;
}

.fifth-btn {
  text-align: center;
  margin: 60px 0;
}

.fifth-btn a {
  color: red;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  border: red 2px solid;
  padding: 8px 70px;
  background-color: #fff;
  transition: 0.3s;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 959px) {
  .fifth-btn a {
    padding: 8px 30px;
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .fifth-btn a {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.fifth-btn a:hover {
  color: #fff;
  background-color: red;
}



.footarea {
    background-color: #0b97ce;
    color: #fff;
	padding:30px 0;}

.footarea a {
	color:#ffffff;}
.foot_l {
	border-right:1px solid #fff;}

.foot_l,.foot_r {
	width:45%;
	display:inline-block;
	vertical-align:top;
	margin-left:1%;
	margin-right:1%;
	padding:0 1%;}
.foot_r p {
	margin-bottom:5px;}


.footarea h4 {
	margin-bottom:10px!important;
	margin-left:-10px;}
.footarea p {
	margin-top:0px!important;
	font-weight:normal!important;}



.footarea p.foot_attention {
	font-size:90%;
	margin-top:30px!important;}


@media screen and (min-width: 769px) {
.forsp {display:none;}
}
@media screen and (max-width: 768px) {

p {
	font-weight:normal;
	font-size:90%;}
.forpc {display:none;}

.third .third-content1 .third-frame-left {
	height:inherit;}

.third .third-content1 .third-frame-right p {
    padding: 0px 0 0px 15px;
	}
.third .third-content1 .third-frame-right p,.third .third-content1 .third-frame-left p,h2,h3,h4 {
	font-size:100%!important;}

.third .third-content2-headline,.third-content2-headline h4 {
	text-align:center;
	text-align-last:center;}

.fourth-table-title {
	position:relative;
	top:-25px;
	background-color:#0b97ce;
	border:0;
	color:white;}

.fourth-table table {
	width:100%;}

.fourth-table {
	margin:80px auto 0 auto;}

.fourth-table table tr td {
	font-size:85%!important;}

.fourth-table table tr .td-left {
	width:70px;}

.fifth-contents .blue-border {
	border:1px solid #0b97ce;}

.fifth-contents-item-left {
	padding:25px 0;}

.fourth-table table tr .td-right {
	width:calc(100% - 70px);}

.foot_l,.foot_r {
	display:block;
	width:96%;
	border-right:0;}

.fourth-content2-blowout h4 {
	font-size:90%!important;}

.third .third-content2-items .item-text1 {
	height:inherit;}

.item-text1 p {
	margin:5px 0 0 0;}

}