@charset "UTF-8";


/* HTML 5 elements
---------------------------------------- */
html,body {
	-webkit-text-size-adjust: none;
  overscroll-behavior: none;
  -ms-scroll-chaining: chained;
}
html {
  background: #2e2e2e;
}



section, nav, article, aside, hgroup, header, footer, figure, figcaption, summary {
  display: block;
  margin: 0;
  padding: 0;
}

/* reset
---------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  line-height:0;
  border: none;
  background-color: none;
}
.imgBox,
.listItem {
  line-height:0;
}

.bgnone {
  padding: 0;
  margin: 0;
  line-height:0;
  border: none;
  background: none;
}

ul, li {
  list-style-type: none;
  margin: 0;
}
ol {
  padding: 0 0 0 1.5rem;
}
  ol li {
    list-style-type: inherit;
    list-style-position: outside;
    padding: 0 0 0 1rem;
  }

table {
  width: 100%;
  margin: 1.5% 0 2%;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  padding: 0 0 0;
  margin: 10px 0;
  -webkit-margin-start: auto;
  -webkit-margin-end: auto;
  border: none;
  border-top: #f5f5f5 1px solid;
}

br {
  padding: 0;
  margin: 0;
  font-size: 1px;
  line-height: 1;
}
.sOnly {
	display: none;
}
.pcOnly {
	display: inherit;
}
.center {
  text-align: center;
}
@media screen and (max-width: 740px) {
  .sOnly {
    display: inherit;
  }
  .pcOnly {
    display: none;
  }
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* 要素
-------------------------------------------------------------- */
section {
	margin: 0 0 1.5%;
}

article {
	padding: 0;
	margin: 0;
  font-weight: normal;
}

p {
  padding: 0;
  margin: 0 0;
}
.wrapper p {
  margin: 15px 0;
}

a {
  color: #000;
  transition: all 0.1s ease-in-out;
}
.contein a {
  color: #366be1;
  display: inline-flex;
  line-height: 1.3;
}
.contein a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 415px) {
  .contein a:hover {
    opacity: 1;
  }
}

.openBtn {
}
.toggleBox {
  transition: all 0.1s ease-in-out;
  opacity: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}
.openBtn.active + .toggleBox {
  height: auto;
  position: static;
  opacity: 1;
}

/* チェックボックス */
.checkBox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
  .checkBox01::before {
    background: #fff;
    border: 1px solid #ffbb33;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
  }
  .checkBox01::after {
    border-right: 3px solid #ffbb33;
    border-bottom: 3px solid #ffbb33;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
  }

/*スクロールバー表示させる*/
.scroll::-webkit-scrollbar{ 
  width: 10px;
}
.scroll::-webkit-scrollbar-thumb{ 
  background: #d3d1c7;
  border-radius: 15px;
}
.scroll::-webkit-scrollbar-track-piece:start{
  background: #fff;
}
.scroll::-webkit-scrollbar-track-piece:end{
  background: #fff;
}
#modal-bg {
  z-index: 999;
  width: 200vw;
  height: 200vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.waku01 {
	padding: 15px;
  margin: 0 0 15px;
  background: #f4f4f4;
}
.waku02 {
	padding: 15px 20px;
  margin: 0 0 15px;
  background: #fff8ca;
}

.slick-dots li.slick-active button:before {
  color: #fff;
}

/* flexPtn
-------------------------------------------------------------- */
.flexPtn {
  display: flex;
}
.flexPtn_wrapp {
  display: flex;
  flex-wrap: wrap;
}

/* form
-------------------------------------------------------------- */
input[type="text"], input[type="tel"], input[type="email"],
select, textarea {
  font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
  width: 100%;
  max-width: 400px;
  font-weight: normal;
  font-size: 100%;
  line-height: 1.5;
  padding: 8px 15px 10px;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
  outline: none;
  border: 2px solid #dadada;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background: #f0f2f5;
}
input:-internal-autofill-selected {
  background: #f0f2f5;
}
input[type="email"] {
  width: 100%;
  max-width: 500px;
}
.address input[type="text"] {
  width: 100%;
  max-width: 600px;
}
textarea {
  width: 100%;
  max-width: 700px;
  height: 180px;
  padding: 10px 15px;
  line-height: 1.5;
}
  input::placeholder,
  textarea::placeholder{
    color: #dadada;
  }
  input:-ms-input-placeholder,
  input::-ms-input-placeholder{
    color: #dadada;
  }
  
.sp input,
.sp select,
.sp textarea {
  font-size: 18px;
}

.goBtnBox {
	margin: 0 0 60px;
  position: relative;
	display: flex;
  /* justify-content: center; */
  align-items: center;
}
  /* iOSでのデフォルトスタイルをリセット */
  input[type="submit"],
  input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
  }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px;
  }

  .submitBox {
    text-align: center;
  }
  input[type="submit"] {
    font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
    width: 300px;
    line-height: 65px;
    cursor: pointer;
    padding: 0;
    margin: 0 auto;
    display: block;
    text-align: center;
    border: none;
    color: #ffbb33;
    border: 2px solid #ffbb33;
    border-radius: 15px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    background: #fff;
  }
    input[type="submit"]:hover {
      color: #fff;
      border: 2px solid #ffbb33;
      background: #ffbb33;
    }
  input[type="submit"].wpcf7c-elm-step2 {
  }
  input[type="button"].wpcf7-back {
    font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
    width: 150px;
    line-height: 65px;
    cursor: pointer;
    padding: 0 10px;
    margin: 0 0 0 20px;
    text-align: center;
    border: none;
    border-bottom: 2px solid #dadada;
    color: inherit;
    border-radius: 0;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    background: #dadada;
  }
    input[type="button"].wpcf7-back:hover {
      color: #fff;
      border-bottom: 2px solid #282828;
      background: #282828;
    }

  div.wpcf7 .ajax-loader {
    transform: translate(140px, 20px);
  	position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
  }
  .submitBox input:disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.5);
    background: #efefef;
  }
@media screen and (max-width: 740px) {
input[type="text"], input[type="tel"], input[type="email"],
select, textarea {
  width: 100%;
}
input[type="email"] {
  width: 100%;
  max-width: 100%;
}
textarea {
  width: 100%;
  max-width: 100%;
}
  input[type="submit"].wpcf7c-elm-step2 {
    max-width: 50%;
  }
  input[type="button"].wpcf7-back {
    max-width: 150px;
  }

}

/* お問い合わせフォーム
-------------------------------------------------------------- */
.flag{
  display: none;
}
.wpcf7 {
  font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
  .wpcf7 * {
    -webkit-transition: all 0.15s ease;
            transition: all 0.15s ease;
  }
	div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    margin: 20px 0 100px;
    padding: 20px; 
    border: none; 
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: #ba272d;
  }
  
@media screen and (max-width: 740px) {
.a.check {
	display: block;
}
}


/* body
-------------------------------------------------------------- */
body{
  padding: 150px 0 0;
  margin: 0;
  font-size: 80.5%;
  line-height: 1.8;
  font-weight: 400,500,700;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  color: #2e2e2e;
  font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
  background: #70e1f5;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #ffd194, #70e1f5);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #ffd194, #70e1f5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.all_scrolling_for {
/*
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
*/
}

h2 {
  font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
  padding: 20px 0;
  margin: 20px 0;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #303030;
  border: none;
}
.title {
  font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
	text-align: center;
  padding: 40px 10px 40px;
  line-height: 1.5;
  margin: 0;
  color: #232626;
}
  .title .text:after {
    width: 130px;
    height: 3px;
    margin: 0 auto;
    content: "";
    display: block;;
    margin: 20px auto 10px;
    background: #232626;
  }

@media screen and (max-width: 740px) {
  body{
    padding: 70px 0 0;
  }
  h2 {
    font-size: 1.3rem;
  }
  .title {
    padding: 25px 10px 25px;
    font-size: 1.3rem;
  }
}

h3 {
  font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
  margin: 20px 0 10px;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 1115px) {
h3 {
  font-size: 1.15rem;
}
}

a {
  transition: all 0.1s ease-in-out;
  color: #111;
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.contents a:hover {
  text-decoration: underline;
}

h4 {
}
h5 {
  font-size: 0.9rem;
}

/* 共通要素
-------------------------------------------------------------- */
#ez-toc-container { /* 目次 */
  margin: 0 0 15px;
  background: #fcfcfc; 
}
  #ez-toc-container a {
    color: #2e2e2e;
  }
  .ez-toc-title-container {
    position: relative;
    text-align: center;
  }
    .ez-toc-title {
      height: 40px;
      line-height: 40px;
      color: #666;
      margin: 0 !important;
      padding: 0 !important;
    }
    #ez-toc-title-toggle { /* 目次開閉ボタン */
    }
      .ez-toc-glyphicon::before {
        height: 40px;
        line-height: 40px;
        cursor: pointer;  
        font-family: 'icomoon' !important;
        content: "\ea56";
        font-style: normal;
        display: block;
        font-size: 1.5rem;
        transition: all 0.1s ease-in-out;
        position: absolute;
        top: 0;
        right: 10px;
      }
        .toc_close .ez-toc-glyphicon::before {
          transform: rotate(180deg);
        }
      .ez-toc-title-toggle input#item {
        display: none;
      }
  .ez-toc-list-level-1 {
    counter-reset: num 0;
  }
  #ez-toc-container nav {
    padding: 0 2% 2%;
    font-size: 0.85rem;
  }
    #ez-toc-container nav > ul {
      font-weight: 500;
    }
      #ez-toc-container nav > ul > li {
        padding: 8px 0;
        margin: 0 2%;
        counter-increment: num;
        border-bottom: 1px solid #ddd;
      }
        #ez-toc-container nav > ul > li:before {
          padding: 0 5px 0 0;
          display: inline-block;
          color: #28a8bd;
          content: counter(num);     
        }
        #ez-toc-container nav > ul > li:last-child {
          border-bottom: none;
        }
        #ez-toc-container nav > ul > li .ez-toc-link {
          padding: 3px 0 0;
          display: inline;
        }
      #ez-toc-container nav > ul ul {
        padding: 0 2%;
        font-weight: normal;
      }
        #ez-toc-container nav > ul ul li {
          display: flex;
          align-items: flex-start;
        }
        #ez-toc-container nav > ul ul li .ez-toc-link {
          color: #666;
        }
        #ez-toc-container nav > ul ul li:before {
          padding: 0 5px 0 0;
          display: inline-block;
          content: "・";
          color: #28a8bd;
        }

.author {
  padding: 5px 15px;
  margin: 0 0 40px;
  background: #f6f7f9;
}
  .author .inner {
    align-items: center;
  }
    .author .imgBox {
      width: 70px;
      min-width: 70px;
      overflow: hidden;
      text-align: center;
    }
      .author .imgBox img {
        width: 100%;
      }
    .author .authorTxt {
      padding: 0 0 0 20px;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }
      .author .authorTxt .displayName {
        padding: 3px 3px;
        margin: 0 3px 0 0;
        font-size: 0.7rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid ;
      }
      .author .authorTxt .c {
        width: 100%;
        margin: 8px 0 0;
        display: block;
        font-weight: normal;
        font-size: 0.8rem;
        line-height: 1.5;
      }
header + .author { /* 記事上部の著者情報 */
  margin: 0;
}
  header + .author .imgBox {
    width: 50px;
    min-width: 50px;
    padding: 8px 0;
  }   
@media screen and (max-width: 740px) {
  .author .authorTxt .c {
    font-size: 0.7rem;
  }
}

.time {
  padding: 8px 20px;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  font-weight: normal;
  justify-content: flex-end;
  border-bottom: 1px solid #eee;
}
  .time .icon {
      font-size: 0.9rem;
      color: #28a8bd;
  }

blockquote{ /* 引用を見やすくカスタマイズ */
	position: relative;
	padding: 30px 39px 30px 39px;
	box-sizing: border-box;
	font-style: italic;
	color: ;
	background: #f0f2f5;
	border: none;
	border-top: solid 3px #232626;
	border-bottom: solid 3px #232626;
}
  blockquote:before,
  blockquote:after{
    display: inline-block;
    position: absolute;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    text-align: center;
    content: "\f10d";
    font-family:'FontAwesome';
    font-weight: normal;
    color:  #232626;
    font-size: normal;
    line-height: 30px;
    /* background: #232626; */
  }
  blockquote:before{
    top: 0; left: 0;
  }
  blockquote:after{
    bottom: 0; right: 0;
  }
  blockquote + p{
    margin-top: 1.6em;
  }
  blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
  }
  blockquote > p:last-child{ 
    margin-bottom: 0 !important;
  }

.references { /* 参考文献 */
  border-top: 1px solid #eee;
  padding: 15px 0;
  margin: 15px 0;
}
  .references p {
    padding: 0;
    margin: 0;
  }
  .references ul {
    margin: 8px 0 0 5px;
  }
    .references ul li {
      margin: 5px 0;
      font-size: 0.85rem;
      display: flex;
      line-height: 1.5;
      align-content: flex-start;
    }
      .references li:before {
        display: inline-block;
        content: "・";
        line-height: 0;
        color: #666;
        padding: 8px 5px 0 0;
      }
  .references a {
  }

.colorPtn01 {
  color: #232626;
}

.titleMiniTxt {
  margin: 15px 0;
  font-weight: 600;
}

.forProblemWrapper {
  display: flex;
  justify-content: center;
  background: #28a8bd;
}
.forProblemWrapper p {
  padding: 0;
  margin: 0;
}
.forProblem {
  max-width: 700px;
  padding: 30px 50px;
  margin: 0 auto;
  display: inline-flex;
  flex-direction: column;
  font-size: 1.2rem;
}
  .forProblem > .item {
  }
    .forProblem .checkBox01 {
      cursor: default;
      width: 16px;
      height: 16px;
      margin: auto 15px auto 0;
      padding: 0;
    }
    .forProblem .checkBox01::before {
      margin: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
    } 
    .forProblem .checkBox01::after {
      border-right: 2px solid #ffbb33;
      border-bottom: 2px solid #ffbb33;
      opacity: 1;
      margin-top: -1px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%) rotate(45deg);
    }
@media screen and (max-width: 740px) {
  .forProblem {
    font-size: 1rem;
  }
}

.forProblemWrapper02 {
  background: none;
}
.forProblemWrapper02 p {
  padding: 0;
  margin: 0;
}
  .forProblemWrapper02 .forProblem {
    max-width: 700px;
    padding: 30px 50px;
    margin: 0 auto;
    display: inline-flex;
    flex-direction: column;
    font-size: 1.2rem;
    border: 2px solid #ffbb33;
  }
@media screen and (max-width: 740px) {
  .forProblemWrapper02 .forProblem {
    padding: 30px 30px;
    font-size: 1rem;
  }
}

.categoryLine {
  margin: 0 0 15px;
}
  .categoryLine span {
    padding: 5px 10px;
    border-radius: 35px;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    color: #fff;
    background: #232626;
  }
@media screen and (max-width: 740px) {
  .categoryLine {
    margin: 0 0 5px;
  }
}


.lineYellow {
  background: linear-gradient(to top, #fff9bf 50%, transparent 51%);
  font-weight: bold;
}

.kadomaru01 {
  padding: 3%;
  margin: 10px 0;
  border-radius: 15px;
  background: #f9f9f9;
}
.kadomaru02 {
  padding: 3%;
  margin: 10px 0;
  border-radius: 15px;
  border: 1px solid #c9e1ea;
  background: #f0f7f9;
}
.kadomaru03 {
  padding: 3%;
  margin: 10px 0;
  border-radius: 15px;
  border: 2px solid #eee;
}

.tableDesign01 {
  margin: 10px auto;
  text-align: left;
}
  .tableDesign01 tbody {
    width: 100%;
  }
    .tableDesign01 .item {
      padding: 15px 0;
      line-height: 1.3;
      letter-spacing: 0.1rem;
    }
    .tableDesign01 .head {
      border-bottom: 2px solid #232626;
      font-weight: 700;
      background: #f9f9f9;
    }
      .tableDesign01 .item th {
        padding: 10px 5px;
        font-weight: 700;
        border: 1px solid #eee;
      }
      .tableDesign01 .item td {
        padding: 10px 5px;
        border: 1px solid #eee;
        border-left: none;
      }
@media screen and (max-width: 1115px) {
  .tableDesign01 {
  }
}

.tableDesign02 {
  margin: 10px auto;
}
  .tableDesign02 tbody {
    width: 100%;
  }
  .tableDesign02 .item {
    padding: 15px 0;
    line-height: 1.3;
    letter-spacing: 0.1rem;
  }
    .tableDesign02 .item th {
      padding: 10px 5px;
      font-weight: 700;
      font-size: 0.75rem;
      border: 1px solid #eee;
      background: #f9f9f9;
    }
    .tableDesign02 .item td {
      padding: 10px 5px;
      border: 1px solid #eee;
      border-left: none;
    }

.cTable.type01 { /* 比較表　*/
  width: 100%;
  margin: 20px auto;
}
  .cTable.type01 > .inner {
    overflow: auto;
    margin: 0 -13px;
  }
  .cTable.type01 table {
    width: 100%;
    table-layout: fixed;
    font-size: 0.8rem;
    line-height: 1.3;
    border-top: 1px solid #eee;
  }
  .cTable.type01 table th,
  .cTable.type01 table td {
    padding: 10px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  .cTable.type01 table tbody tr {
    border-right: 1px solid #eee; 
  }
  .cTable.type01 .left {
    width: 90px;
    font-size: 0.75rem;
    background: #f5f5f5;
  }
  .cTable.type01 .t_img {
    width: 120px;
    text-align: center;
  }
  .cTable.type01 .t_bold {
    font-weight: 700;
  }
  .cTable.type01 .t_afl {
  }
    .cTable.type01 .t_afl p,
    .cTable.type01 .t_afl img,
    .cTable.type01 .t_afl br {
      display: none;
    }
    .cTable.type01 .t_afl a {
      width: 90%;
      display: flex;
      padding: 5px 3px;
      margin: 0 0 10px;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      color: #fff;
      border-radius: 5px;
      border-bottom: #111;
      background: #232626;
    }
      .cTable.type01 .t_afl .rakuten {
        border-bottom: #111;
        background: #b10d11;
      }
      .cTable.type01 .t_afl .yahoo {
        border-bottom: #111;
        background: #f3235c;
      }
      .cTable.type01 .t_afl .ama {
        border-bottom: #111;
        background: #fbbe4e;
      }
      .cTable.type01 .t_afl .other {
        border-bottom: #111;
        background: #93babf;
      }
@media screen and (max-width: 1115px) {
  .cTable.type01 table th,
  .cTable.type01 table td {
    padding: 5px;
  }
  .cTable.type01 .t_afl a {
    padding: 7px 3px;
    margin: 0 0 10px;
  }
}

.ClmPtn01 { /* 縦　３列　*/
  max-width: 1115px;
  margin: 0 auto; 
}
  .ClmPtn01 .item {
    width: 100%;
    overflow: hidden;
  }
  .ClmPtn01 .item > .inner {
    padding: 15px;
  }
  .ClmPtn01 .imgBox img {
    width: 100%;
  }
  .ClmPtn01Title {
    color: #232626;
  }
  .ClmPtn01 .item p {
    margin-top: 10px;
  }
  .aboutus .secMapListWrapper {
    max-width: 1115px;
    margin: 0 auto;  
  }
@media screen and (max-width: 740px) {
  .ClmPtn01 {
    flex-direction: column;
  }
  .ClmPtn01 .item > .inner {
    display: flex;
  }
  .ClmPtn01 .item > .inner .imgBox {
    width: 100%;
    min-width: 30%;
    max-width: 30%;
  }
    .ClmPtn01 .item .c {
      margin-left: 15px;
    }
}

.ClmPtn02 { /* 横　３列　*/
  max-width: 1115px;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
  .ClmPtn02::after {
    content:"";
  }
  .ClmPtn02::after,
  .ClmPtn02Item {
    width: 32%;
    overflow: hidden;
    margin: 0 0 30px;
  }
  .ClmPtn02Item > .inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    color: #2e2e2e;
  }
    .ClmPtn02Item .imgBox {
      margin: 0 0 10px;
    }
    .ClmPtn02TextBox {
      width: 100%;
    }
      .ClmPtn02Item .elm {
        font-size: 0.8rem;
        justify-content: space-between;
      }
        .ClmPtn02Item .cat_name {
          padding: 5px 10px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border-radius: 35px;
          font-size: 0.8rem;
          letter-spacing: 0.1rem;
          color: #fff;
          background: #232626;
      }
      .ClmPtn02Item .t {
        display: flex;
        margin: 10px 0;
        font-size: 1.1rem;
        line-height: 1.5;
        font-weight: 700;
      }
@media screen and (max-width: 1115px) {
.ClmPtn02 {
  padding: 0 15px;
}
}
@media screen and (max-width: 740px) {
.ClmPtn02 {
  padding: 0 0;
  margin: 15px auto 0;
}
.ClmPtn02::after {
  content:"";
}
.ClmPtn02::after {
  width: 100%;
  padding: 0 10px 10px;
}
.ClmPtn02Item {
  width: 100%;
  padding: 0 10px 10px;
  margin: 0 0 10px;
  border-bottom: 1px solid #eee;
}
.ClmPtn02Item > .inner {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.ClmPtn02Item .imgBox {
  max-width: 150px;
  min-width: 150px;
  margin: 0 15px 0 0;
}
.ClmPtn02TextBox {
  padding: 0 0 25px;
  position: relative;
}
  .ClmPtn02Item .elm {
    display: inline-flex;
    flex-direction: column;
  }
    .ClmPtn02Item .cat_name {
      font-size: 0.7rem;
      letter-spacing: 0.05rem;
    }
    .ClmPtn02Item .elm .time {
      font-size: 0.6rem;
      position: absolute;
      bottom: 0;
      left: 0;
    }
    .ClmPtn02Item .t {
      margin: 5px 0 0;
      font-size: 0.9rem;
    }
}

.ClmPtn03 { /* 横　３列　ブログバージョン */
  flex-direction: column;
}
  .ClmPtn03 .item {
    width: 100%;
    overflow: hidden;
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 2px solid #232626;
  }
  .ClmPtn03 .item > .inner {
    max-width: 1115px;
    margin: 0 auto;  
    align-items: center;
  }
    .ClmPtn03 .thumImgBox {
      width: 100%;
      max-width: 500px;
      display: block;
    }
      .ClmPtn03 .thumImgBox img {
        width: 100%;
      }
    .ClmPtn03 .txtBox {
      width: 100%;
      padding: 16px 0 0 16px;
    }
      .ClmPtn03Title {
        letter-spacing: 0.1rem;
        font-weight: normal;
      }
      .ClmPtn03Title .time {
        margin: 0 0 15px;
        color: #2e2e2e;
        font-size: 1rem;
        line-height: 1;
        display: block;
      }
      .ClmPtn03Title .t {
        color: #232626;
        font-size: 1.5rem;
      }
      .ClmPtn03 .txt {
        font-size: 1rem;
        color: #2e2e2e;
      }
      .ClmPtn03 .moreBtn03 {
        margin: 30px 0 0;
      }
@media screen and (max-width: 740px) {
  .ClmPtn03 .item {
    margin: 0;
  }
  .ClmPtn03 .item > .inner {
    flex-direction: column;
  }
  .ClmPtn03 .thumImgBox {
    max-width: 100%;
  }
    .ClmPtn03 .txtBox {
      padding: 20px;
    }
      .ClmPtn03Title .t {
        font-size: 1.3rem;
        letter-spacing: 0;
      }
      .ClmPtn03 .txt {
        font-size: 0.9rem;
        letter-spacing: 0;
        padding: 0 0; 
      }
      .ClmPtn03 .moreBtn03 {
        margin-left: auto;
      }
}

.menu_tagList {
  max-width: 1115px;
  margin: 30px auto 50px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
  .menu_tagList .item {
    margin: 0 10px 10px 0;
  }
    .menu_tagList .item .flexPtn {
      padding: 7px 13px;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 1.2rem;
      line-height: 1.3;
      border-radius: 15px;
      background: #ffbb33;
    }
@media screen and (max-width: 740px) {
  .menu_tagList {
  }
    .menu_tagList .item .flexPtn {
      font-size: 1rem;
    }
}

#wrapper .miniMessage {
  max-width: 750px;
  padding: 0 13px;
  margin: 15px auto;
  font-size: 1rem;
}
@media screen and (max-width: 740px) {
  #wrapper .miniMessage {
    font-size: 0.9rem;
  }
}

/* more
-------------------------------------------------------------- */
.morebtn {
  min-width: 75px;
  padding: 8px 20px 8px;
  margin: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  border-radius:　5px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
  
.moreBtn01 {
	width: 175px;
  padding: 13px 0;
  margin: 45px auto;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  border-radius: 5px;
  border: 1px solid #959595;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .moreBtn01 .t {
  	margin: 0 0 0 10px;
  }
  .moreBtn01 .icon {
    margin: 0 0 0 12px;
    font-size: 1.3rem;
    color: #959595;
  }
  .moreBtn01:hover {
    opacity: 1 !important;
    border: 1px solid #ffbb33;
    background: #ffbb33;
  }
  .moreBtn01:hover .icon {
    color: #fff;
  }
@media screen and (max-width: 740px) {
  .moreBtn01 {
    transition: inherit;
  }
}

.moreBtn02 {
	width: 100%;
	max-width: 400px;
  padding: 23px 0;
  margin: 50px auto 80px;
  border-radius: 15px;
  color: #28a8bd;
  font-size: 1.2rem;
  line-height: 1.3;
  border: 1px solid #28a8bd;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .moreBtn02:hover {
    opacity: 1 !important;
    color: #fff;
    background: #28a8bd;
  }
@media screen and (max-width: 740px) {
  .moreBtn02 {
    max-width: 300px;
    padding: 18px 0;
    transition: inherit;
    /*
    margin: 30px auto 50px;
    */
    font-size: 1rem;
  }
}

.moreBtn03 {
  width: 110px;
  padding: 10px 0;
  margin: 0 0 0 auto;
  font-size: 1rem;
  border-radius: 15px;
  color: #ffbb33;
  line-height: 1.3;
  border: 1px solid #ffbb33;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .moreBtn03:hover {
    opacity: 1 !important;
    color: #fff;
    background: #ffbb33;
  }



/* header
-------------------------------------------------------------- */
.header {
  z-index: 1000;
  width: 100%;
  /*
  height: 80px;
  */
  font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
  padding: 0 0 0;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
  /*
  background-color: #fff;
  */
}
  .header a:hover {
    opacity: 0.8;
  }
  .headerLayout {
    height: 100%;
    justify-content: flex-start;
  	position: relative;
    /* background: #f5f5f5; */
  }
  .headerLayout > .inner {
    width: 100%;
  	max-width: 1115px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .logoWrapper {
  	position: relative;
  }
  /* #logo
  ---------- */
  .logo {
    z-index: 1002;
    width: auto;
    max-width: 400px;
    min-width: 230px;
    overflow: hidden;
    padding: 0 0 0;
    margin: 0 auto;
    line-height: 0;
    display: block;
    background: none;
  }
    .logo:hover {
      text-decoration: none;
      opacity: 1;
    }
    .logo img {
      width: 100%;
      max-width:  100%;
      height: auto;
      padding: 0;
      margin: 0 0 0;
      border: none;
      background-color: transparent;
    }

@media screen and (max-width: 1115px) {
  .headerLayout {
    padding: 0 15px;
  }
}
@media screen and (max-width: 740px) {
  .header {
    height: 70px;
  }
    .logo {
      width: 130px;
      min-width: 130px;
    }
}

.heaCvItemWrapper {
  justify-content: flex-end;
  align-items: center;
  margin: 20px auto; 
}
  .heaCvItemWrapper .item {
  }
.categorySelect {
  width: 100%;
  max-width: 500px;
  align-items: center;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
  border-left: 1px solid #dadada;
}
  .categorySelect select {
    max-width: 135px;
    height: 35px;
    line-height: 1;
    padding: 0 10px;
    font-size: 0.9rem;
    border: none;
    color: #2e2e2e;
    border-radius: 0;
    background: #ddd;
  }
  .categorySelect input[type="text"] {
    width: 100%;
    max-width: inherit;
    height: 35px;
    line-height: 35px;
    padding: 0 3px 0 8px;
    border-radius: 0;
    border: none;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    background: #fff;
  }
  .categorySelect input[type="submit"].heaCvItem {
    width: 45px;
    min-width: 45px;
    height: 35px;
    line-height: 35px;
    padding: 0 0;
    margin: 0 0 0;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 0 15px 15px 0;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(images/search.svg);
    background-color: #232626;
  }

@media screen and (max-width: 1115px) {
}
@media screen and (max-width: 740px) {
  .heaCvItemWrapper {
    padding: 0;
    margin: 0;
    display: none;
  }
  .headNavWrapper {
    display: none;
  }
  .heaCvItemWrapper {
  }
  .headNavWrapper > .inner {
  }
    .heaCvItemWrapper .item {
      width: 100%;
      height: 55px;
      border-right: 2px solid #28a8bd;
    }  

  .heaCvItemWrapper .item:last-child {
    border: none;
  }
}
.headNav.open .heaCvItemWrapper {
  z-index: 2500;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 90px;
}
  .headNav.open .heaCvItemWrapper .item {
    width: 100%;
    border: none;
  }
  .headNav.open .heaCvItemWrapper .item br {
    display: none !important;
  }
  .categorySelect {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

/* menu
-------------------------------------------------------------- */
#menu {
	z-index: 1500;
  width: 50px;
  height: 50px;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;  
  transition: all .1s;
  position: absolute;
  top: 15px;
  right: 15px;
}
  #menu .icon {
    width: 100%;
    height: 100%;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #232626;
  }
.heaCvItemWrapper + #menu {
	opacity: 0;
}
  header.header_scrolled + #menu {
    opacity: 1;
  }

.heaCvItemWrapper + #menu {
	opacity: 1;
}
  #menu .icon {
  }


.headNav {
  width: 100%;
  justify-content: flex-end;
}
  .headNavWrapper {
    width: 80%;
    max-width: 100%;
    height: 0;
    margin: 0 0 0 auto;
    padding: 0;
    flex-direction: column;
    overflow: hidden;
    position: fixed;
    top: 70px;
    left: 0;
    color: #fff;
    background: #2a2a2a;
  }
    .headNavWrapper > .inner {
      width: 100%;
      max-width: 1115px;
      padding: 100px 0 0;
      margin: 0 auto;
    }
    .headNavWrapper .item {
      display: inline-flex;
      margin: 0 auto;
    }

  .headNavMenuTitle {
    height: 40px;
    line-height: 40px;
    margin: 0 0 15px;
    color: #666;
  }
  .headNavWrapper .item {
    width: 100%;
    display: block;
    margin: 0 0 5px;
  }
    .headNavWrapper .t {
      padding: 5px 0 5px 0px;
      display: flex;
      line-height: 1;
      color: #fff;
    }
    .headNavItem:after {
      display: none;
    }

  .headNavWrapper .firstMenu {
    width: 100%;
    padding: 0 15px 0 0;
    margin: 0 15px 0;
    border-right: 1px solid #efefef;
  }
  .headNavWrapper .troublesMenu {
    width: 100%;
    padding: 0 15px 0 0;
    margin: 0 15px 0;
    border-right: 1px solid #efefef;
  }
    .headNavWrapper .troublesMenu  .item {
    }
  .headNavWrapper .otherMenu {
    width: 100%;
    padding: 0 15px 0 0;
    margin: 0 15px 0;
  }
  .headNavWrapper .siteMapBoxRight {
    display: none;
  }
@media screen and (max-width: 740px) {

  .headNavWrapper .firstMenu {
    display: none;
  }
  .headNavWrapper .troublesMenu {
    border: none;
    padding: 0;
    margin: 0;
  }
    .headNavMenuTitle {
      display: block;
      text-align: center;
    }
    .headNavWrapper .troublesMenu .item {
      padding: 0;
      margin: 0;
    }
    .headNavWrapper .troublesMenu .item .t {
      padding: 15px;
      border-bottom: 1px solid #eee;
      background: #fcfcfc;
    }
  .headNavWrapper .otherMenu {
    display: none;
  }
  .headNavWrapper .siteMapBoxRight {
    display: block;
  }
}

#menu.open + .headNavWrapper {
  z-index: 2000;
	opacity: 1;
  width: 100%;
  height: 100%;
  max-height: 400px;
	display: block;
  position: fixed;
  /* top: 80px; */
  left: 0;
}
  #menu.open + .headNavWrapper > .inner {
    max-width: 600px;
  }
    #menu.open + .headNavWrapper .firstMenu {
      display: none;
    }

/* #wrapper
-------------------------------------------------------------- */
#wrapper {
  width: 100%;
  padding: 0 0 0;
  margin: 0 auto 0;
  transition: all .3s;
  font-size: 1rem;
  position: relative;
}
@media screen and (max-width: 740px) {
  #wrapper {
    font-size: 0.95rem;
  }
}
.wrapper {
  padding: 0 0 0;
  margin: 0 auto 30px;
  overflow: hidden;
}
@media screen and (max-width: 1115px) {
.wrapper {
  width: auto;
  margin: 0 15px 0px;
}
}


/* home
-------------------------------------------------------------- */
.home #wrapper {
  width: 100%;
}

.home section {
}
.home h2 {
  font-size: 1.5rem;
}

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

.key  { /* key */
}
  .key .slider {
    line-height: 0;
  }
  .key .item {
    width: 100%;
    max-width: 520px;
    position: relative;
  }
    .key .imgBox .itemTitle {
      z-index: 1;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
    }
    .key .imgBox::before {
      opacity: 0.2;
      width: 100%;
      height: 100%;
      display: block;
      content: "";
      background: #000;
      position: absolute;
      top: 0;
      left: 0;
    }
 
  @media screen and (max-width: 740px) {
    .key .item {
      width: 300px;
    }
  }



.secMess { /* メッセージ*/
  max-width: 540px;
  margin: 60px auto 0;
  text-align: center;
}
  .secMessTitle {
    text-align: center;
    color: #232626;
  }
  .secMessCnt {
    letter-spacing: 0;
    color: #ffbb33;
  }
@media screen and (max-width: 740px) {
  .secMess { /* メッセージ*/   
    margin: 30px auto 0;
  }
  .secMessTitle {
    margin: 0 30px;
  }
}

.sec01 { 
	z-index: 1;
}
	.sec01 .inner {
		max-width: 1115px;
    margin: 0 auto 0;
  }
	.sec01Item {
  	width: 100%;
  	padding: 0 0 35px;
  	border-right: 1px solid #f4f4f4;
    background: #333131;
  }
	.sec01Item:hover {
  	opacity: 0.8;
  }
	.sec01Item:last-child  {
  	border-right: none;
  }
    .sec01Item .pcBr {
      display: none;
    }
  .sec01ItemTitle { 
    font-family: "YakuHanJP","Noto Sans JP", Meiryo, sans-serif;
  	padding: 35px 0 30px;
    font-size: 1rem;
    letter-spacing: 0;
  	color: #fff;
    text-align: center;
  }
  .sec01ItemTitle:after {
  	width: 60px;
    content: "";
    display: block;
    height: 1px;
    margin: 15px auto 0;
    background: #ffbb33;
  }
  .sec01Item .imgBox {
  	width: 200px;
  	padding: 0 0 0;
    margin: 0 auto;
  }
  .sec01ItemText {
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    padding: 25px 20px 20px;
  }
	.sec01Item .moreBtn01 {
  	margin: 10px auto 40px;
  }
@media screen and (max-width: 1115px) {
.sec01 {
}
	.sec01Item {
    position: relative;
  }
    .sec01Item .pcBr {
      display: inherit;
    }
  .sec01ItemTitle {
  	padding: 20px 0 20px;
    font-size: 0.9rem;
  }
    .sec01ItemTitle .t {
      height: 45px;
      line-height: 1.5;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  .sec01Item .imgBox {
  	width: 160px;
  }
}
@media screen and (max-width: 740px) {
.sec01 {
}
.sec01ItemArea {
	flex-direction: column;
}
  .sec01ItemTitle {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0;
    padding: 25px 0 25px;
    letter-spacing:inherit;    
  }
    .sec01ItemTitle:after {
    	display: none;
      margin: 15px auto 0;
      background: #fff;
    }
	.sec01Item {
    z-index: 0;
    width: 90%;
  	padding: 0 0 0px;
    margin: 0 auto;
    border: none;
  	border-bottom: 1px solid #f4f4f4;
    background: #333131;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: repeat;
  }
    .sec01Item.item01 {
      background-image: url(images/sec01img04.jpg);
    }
    .sec01Item.item02 {
      background-image: url(images/sec01img05.jpg);
    }
    .sec01Item.item03 {
      background-image: url(images/sec01img03.jpg);
    }
    .sec01Item.item04 {
      background-image: url(images/sec01img01.jpg);
    }
    .sec01Item:before {
      z-index:-1;
    	opacity: 0.5;
      width: 100%;
      height: 100%;
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      background: #000;
    }
  .sec01Item .imgBox {
  display:none;
    z-index: -1;
  	padding: 0 0 0;
    position: absolute;
    top: 0;
    left: 0;    
  }
  .sec01ItemText {
    z-index: 1;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    padding: 0 30px 10px;
  }
  .sec01Item .moreBtn01 {
    position: static;
    transform:inherit;
    border: 1px solid #fff;
  }
    .moreBtn01 .icon {
      color:#fff;
    }
  .sec01Item .pcBr {
  	display: none;
  }
  .sec01Item .spBr {
  	display: inherit;
  }
}

.secG { /* method */
}
  .secG > .inner {
    margin: 0 auto;
  }
  .sBoxWrapper {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .secGItem {
    position: relative;
    background: #f0f2f5;
  }
  .secGItem {
    width: 100%;
  	padding: 0 0 0px;
    margin: 0 auto;
    border: none;
  }
    .secGItem:before {
      width: 100%;
      height: 100%;
      display: block;
      content: "";
      border-bottom: 1px solid #f4f4f4;
      background-position: left 0;
      background-size: 1000px;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      left: 0;
    }
      .secGItem.secGItem01:before {
        background-image: url(images/banner01.png);
      }
      .secGItem.secGItem02:before {
        background-position: right 0;
        background-image: url(images/banner02.png);
      }
  .secGItem .secGItemOb {
    max-width: 1115px;
    margin: 0 auto;  
  }
  .secGItemWrapper {
    z-index: 1;
    justify-content: center;
    align-items: center;
    margin: 8rem 0;
  }
  .secGItemWrapper .inner {
    z-index: 1;
  }
  .secGItem01 .secGItemWrapper {
    margin-left: 60%;
  }
  .secGItem02 .secGItemWrapper {
    margin-left: 0;
    margin-right: 60%;
  }
@media screen and (max-width: 1115px) {
  .secGItemWrapper {
    margin-right: 20px
  }
  .secGItemWrapper .inner {
    z-index: 1;
    padding: 20px;
    letter-spacing: 0;
    background-color: rgba(255,255,255,0.5);
  }
}
@media screen and (max-width: 740px) {
  .secGItem {
    background-size: 130%;
  }
    .secGItem:before {
      opacity: 0.3;
      background-position: center;
      background-size: 740px;
    }
  .secGItemWrapper {
    justify-content: center;
    align-items: center;
    margin: 15px 0;
  }
  .secGItem .secGItemWrapper {
    margin: 0 20px;
    margin-top: 9vw;
    margin-bottom: 9vw;
  }
}
.secH { /* Beginner */
}
.secH .inner {
  max-width: 900px;
  margin: 0 auto;
}
.secHListWrapper {
}
  .secHItemItem {
  }
  .secHimgBox {
    width: 100%;
    max-width: 300px;
    padding: 65px 90px 50px;
    border-radius: 0px 100px 0px 0px;
    background: #28a8bd;
  }
  .secHItemWrapper {
    justify-content: center;
    align-items: center;
    margin: 0 0 0 15px;
  }
@media screen and (max-width: 1115px) {
  .secH .inner {
    margin: 0 30px;
    text-align: center;
  }
    .secHListWrapper {
      flex-direction: column;
    }
      .secHimgBox {
        width: 250px;
        max-width: 250px;
        padding: 45px 63px 36px;
        margin: 0 auto;
      }
        .secHItemWrapper {
          margin: 0;
        }
      .secHTitle {
        justify-content: center;
      }
      .titleMiniTxt {
        margin: 15px 0 0;
      }
}

.secJ { /* 3つの特徴 */
}
  .secJ .inner {
  	max-width: 1115px;
    padding: 20px;
    margin: 0 auto;
    border-radius: 35px;
    background: #fff;
  }
  .secJListWrapper {
    counter-reset: count;
    list-style: none;
    align-items: flex-start;
  }
    .secJItem {
      padding: 60px 35px;
      margin: 10px;
      border-radius: 35px;
      overflow: hidden;
      background: #28a8bd;
    }
      .secJItem .imgBox {
        width: 100%;
      }
      .secJItem .imgBox img {
        width: 100%;
      }
      .secJItemTitle {
        padding: 20px 0 0;
        justify-content: flex-start;
        align-items: center;
        color: #232626;
     }
        .secJItemTitle .numBox {
          width: 100%;
          max-width: 65px;
          position: relative;
        }
          .secJItemTitle .numBox:before {
            width: 100%;
            height: 1px;
            margin: 0 0 12px;
            display: block;
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            background: #232626;
          }
          .secJItemTitle .numBox:after {
            width: 65px;
            height: 65px;
            padding: 0 0 0 4px;
            margin: 13px 0 0;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            counter-increment: count;
            content:counter(count);
            background: #232626;
          }
        .secJItemTitle span {
          display: flex;
          justify-content: center;
          align-items: center;
          margin: auto 0 auto 15px;
        }
    .secJItem p {
      padding: 0;
      margin: 30px 0 0;
    }
    .secJItem:nth-child(2) {
      margin-top: 90px;
    }
@media screen and (max-width: 740px) {
  .secJListWrapper {
    flex-direction: column;
    align-items: center;
  }
    .secJItem {
      max-width: 400px;
      padding-top: 40px;
      padding-bottom: 40px;
      margin: 30px 20px;
    }
    .secJItem p {
      padding: 10px 0 0;
      margin: 0;
    }
      .secJItem:nth-child(2) {
        margin-top: 0;
      }
}

.secFlat { /* おすすめのメニュー */
}
.secFlatListWrapper {
  counter-reset: rank 0;
}
  .secFlatItem {
    width: 100%;
    padding: 25px 0;
    margin: 0 0 50px;
    background: #fcfcfc;
  }
  .secFlatItem .inner {
    max-width: 1115px;
    margin: 0 auto;
  }
    .secFlatItem .imgBox {
      max-width: 530px;
      width: 100%;
      position: relative;
    }
      .secFlatItem .imgBox:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        counter-increment: rank;
        content: counter(rank);
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        background: #000;
      }
    .secFlatTextBox {
      width: 100%;
      padding: 60px 0 0 30px;
    }
      .secFlatItemTitle {
      }
        .secFlatItemTitle span {
          display: block;
        }
    .secFlatItem {

    }
    .secFlatTextBox p {
      margin: 25px 0;
    }
    .secFlatItem .moreBtn02 {
      width: 110px;
      padding: 10px 0;
      margin: 0 0 0 auto;
      font-size: 1rem;
    }
@media screen and (max-width: 740px) {
  .secFlatItem {
    padding: 0 0 25px;
  }
    .secFlatItem .inner {
      flex-direction: column;
    }
    .secFlatItem .imgBox {
      max-width: 100%;
    }
  .secFlatTextBox {
    padding: 20px 20px;
  }
    .secFlatTextBox p {
      margin: 0;
    }
}

.secMap { /* 店舗情報 */
    background: #28a8bd;
    padding: 0 0 1px;
}
  .secMap > .inner {
    max-width: 1115px;
    margin: 0 auto;
  }
  .secMapListWrapper {
  }
    .secMapTextBox {
      width: 100%;
      max-width: 50%;
      padding: 0 20px 2px 0;
    }
      .secMapTextBox .item {
        padding: 9px 0;
        font-size: 1rem;
        display: flex;
        border-bottom: 2px dashed #a9a7a4;
      }
      .secMapTextBox .item .t {
        width: 100%;
        max-width: 120px;
      }
    .mapImgBox {
      width: 100%;
      min-height: 450px;
    }
@media screen and (max-width: 740px) {
  .secMapListWrapper {
    flex-direction: column;
  }
    .secMapTextBox {
      max-width: 100%;
      padding: 0 20px 40px;
    }
}

.secFaq { /* FAQ */
}
  .secFaq > .inner {
  }
  .secFaqListWrapper {
    max-width: 1115px;
    margin: 0 auto;
    counter-reset: faqcount;
    text-align: left;
  }
    .secFaqItemItem {
      width: 100%;
    }
      .secFaqItemTitle {
        transition: all 0.1s ease-in-out;
        cursor: pointer;
        width: 100%;
        padding: 15px 20px;
        margin: 0 0 20px;
        line-height: 1.3;
        font-size: 1.1rem;
        font-weight: normal;
        display: flex;
        align-items: center;
        color: #ffbb33;
        border-radius: 15px;
        border: 1px solid #ffbb33;
        background: #fff;
      }
      .secFaqItemTitle::before {
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        counter-increment: faqcount;
        content: "Q." counter(faqcount);
      }
      .secFaqItemTitle::after {
        width: 50px;
        height: 100%;
        margin: 0 0 0 auto;
        content: "+";
        font-size: 2.3rem;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .secFaqItemTitle:hover {
        color: #fff;
        background: #ffbb33;
      }
      .openBtn.secFaqItemTitle + .toggleBox {
        margin: 30px;
      }
@media screen and (max-width: 1115px) {
  .secFaqListWrapper {
    margin: 0 20px;
  }
}
@media screen and (max-width: 740px) {
  .secFaqItemTitle {
    padding: 15px 15px;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .secFaqItemTitle::before {
    font-size: 1rem;
  }
  .openBtn.secFaqItemTitle + .toggleBox {
    margin: 20px;
  }
}


.footer { /* footer */
  color: #fff;
  position: relative;
}
  .footer a:hover {
    opacity: 0.8;
  }
  .footInner {
    max-width: 1115px;
    padding: 70px 0;
    margin: 0 auto;
  }
  .siteMapBoxWrapper {
    width: 100%;
  }
    .footLogoBox {
      width: 100%;
      max-width: 250px;
      margin: 0 40px 0;
    }
    .siteMapBox {
      width: 100%;
      max-width: 250px;
      margin: 0;
      color: #2e2e2e;
    }
      .siteMapBoxTitle {
        height: 30px;
        line-height: 30px;
        padding: 0;
        margin: 0;
      }
    .siteMapBoxLeft {
      margin: 0 0 0 auto;
    }
      .siteMapBoxInner {
        margin: 15px 0 0;
        flex-direction: column;
      }
      .siteMapBoxInner .item {
        font-size: 1rem;
        margin: 0 0 10px;
        display: flex;
        align-items: center;
      }
        .siteMapBoxInner .item .t {
          color: #2e2e2e;
          align-items: center;
        }
        .siteMapBoxInner .item .t:hover {
          opacity: 0.8;
        }       
    .siteMapBoxRight {
      margin: 0 0 0 auto;  
    }
@media screen and (max-width: 740px) {
  .footInner {
    padding: 30px 0;
  }
    .siteMapBoxWrapper {
      flex-direction: column;
      align-items: center;
    }
      .footLogoBox {
        max-width: 200px;
        margin: 0 0 40px;
      }
      .siteMapBox {
        max-width: 100%;
      }
        .siteMapBoxTitle {
          padding: 0 15px;
        }
        .siteMapBoxInner {
          padding: 0px 0;
        }
      .siteMapBoxLeft {
        padding: 0;
        margin: 0;
      }
        .siteMapBoxLeft .siteMapBoxInner {
          border-top: 1px solid #2e2e2e;
        }
        .siteMapBoxInner .item {
          width: 100%;
          font-size: 1rem;
          padding: 15px 15px;
          margin: 0;
          border-bottom: 1px solid #2e2e2e;
        }
          .siteMapBoxInner .item .t {
            width: 100%;
          }
            .siteMapBoxInner .item .t .icon {
              order: 2;
              margin: 0 0 0 auto;
            }
            .siteMapBoxInner .item .t span {
              order: 1;
            }
      .siteMapBoxRight {
      }
        .siteMapBoxRight .siteMapBoxInner {
          display: block;
          text-align: center;
        }
        .siteMapBoxRight .item {
          width: 30%;
          padding: 0 10px;
          margin: 0;
          border: none;
          font-size: 0.7rem;
          letter-spacing: 0;
          display: inline;
          text-align: center;
          border: none;
        }
          .siteMapBoxRight .item .t {
            display: inline;
            color: #666;
            font-weight: normal;
          }
          .siteMapBoxRight .item .t .icon {display: none;}
  .footSnsBox {
    padding: 0 0 0;
    margin: 30px 0;
  }
}


.copyright {
  color: #fff;
  background: #232626;
}
  .copyright .inner {
    width: 100%;
    max-width: 1115px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
  }
  .copyright a {
    color: #fff;
  }
@media screen and (max-width: 740px) {
  .copyright .inner {
    padding: 20px 0 100px;
    font-size: 0.75rem;
  }
}


/* 下層共通
-------------------------------------------------------------- */
.thumbnail {
}
  .thumbnail img {
    width: 100%;
  }

.contein {
  margin: 0 0 60px;
  word-break: break-all;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
  .contein > .inner {
    max-width: 1115px;
    padding: 20px;
    margin: 0 auto;
    border-radius: 35px;
    background: #fff;
  }
  .contein >.inner .title .text:after {
    display: none;
  }
/* 1カラムのページをここに書く */
.privacy .contein,
.rule .contein,
.about .contein {
  max-width: 900px;
  padding: 0 13px;
  margin: 0 auto;
}
@media screen and (max-width: 740px) {
  .contein {
    font-size: 0.83rem;
    letter-spacing: 0.09em;
    margin: 0 0 30px;
  }
}


/* archive
-------------------------------------------------------------- */
.archive  {
}
@media screen and (max-width: 740px) {
}

.foundPosts { /* ～件中～件表示*/
  text-align: center;
  margin: 0 0 0;
}

/* single
-------------------------------------------------------------- */
.single {
}
  .single .ctnWrapper {
    max-width: 1115px;
    margin: 0 auto;
  }
    .single .contein {
      width: 100%;
      margin: 0;

    }
    .single .contein > .inner {
      width: auto;
      max-width: 785px;
      padding: 0;
      margin: 0 0 30px;
    }
    .single .ctnWrapper { /* メインのコンテンツ2カラム用*/
      align-items: flex-start;
    }
    .single .title {
      padding: 30px 10px 40px;
      padding-right: 2rem;
      padding-left: 2rem;
      font-size: 1.2rem;
      color: #232626;
      border-radius: 35px 35px 0 0 ;
      background: #f3fcff;
    }
      .single .title .categoryLine {
        margin: 0 0 15px;
      }
@media screen and (max-width: 1115px) {
  .single .contein > .inner {
    margin-left: 15px;
  }
}
@media screen and (max-width: 740px) {
  .single .ctnWrapper {
    flex-direction: column;
  }
    .single .contein > .inner {
      margin: 0 13px 0;
    }
    .single .ctnWrapper { /* メインのコンテンツ2カラム用*/
    }
    .single .title {
      padding: 20px 10px 30px;
      font-size: 1rem;
    }
      .single .title .categoryLine {
        margin: 0 0 15px;
      }
}

.single .sideMenu { /* シングルサイドメニュー*/
  width: 100%;
  max-width: 300px;
  padding: 20px;
  margin: 0 0;
  margin-left: 3rem;
  border-radius: 15px;
  background: #232626;
  /*
  background-color: rgba(45,143,134,0.5);
  */
}
    .sideMenuTitle {
      color: #fff;
    }
      .sideMenuTitle .miniT {
        display: block;
        font-size: 0.8rem;
        margin: 8px 0 0;
        text-decoration: none;
        color: #fff;
      }
    .single .sideMenu .item {
      display: flex;
      align-items: center;
    }
      .single .sideMenu .item .t {
        width: 100%;
        padding: 5px 0;
        display: flex;
        align-items: center;
        color: #fff;
      }
      .single .sideMenu .item .t:hover {
        opacity: 0.8;
      }
@media screen and (max-width: 1115px) {
  .single .sideMenu {
    max-width: 200px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 740px) {
  .single .sideMenu {
    max-width: 100%;
    margin: 0 0 60px;
    display: none;
  }
    .single .sideMenu .sideMenuTitle {
      padding: 0 15px;
    }
    .single .sideMenu .item .t {
      padding: 8px 15px;
    }
      .single .sideMenu .item .t span {
        order: 1;
      }
      .single .sideMenu .item .t .icon {
        order: 2;
        margin: 0 0 0 auto;
      }
}


.single.body_cat_id1  { /* コラム記事に属するシングル */
}
.single.body_cat_id1 .contein h2 {
  padding: 20px 15px;
  margin: 40px 0 0;
  text-align: center;
  position: relative;
  line-height: 1.3;
  border-top: 2px solid #2e2e2e;
  background: #f0f7f9;
}
  .single.body_cat_id1 .contein h2:before,
  .single.body_cat_id1 .contein h2:after {
    width: 5px;
    height: 5px;
    border-radius: 100%;
    display: block;
    content: "";
    position: absolute;
    background: #2e2e2e;
  }
  .single.body_cat_id1 .contein h2:before {
    top: 5px;
    right: 5px;
  }
  .single.body_cat_id1 .contein h2:after {
    top: 5px;
    left: 5px;
  }
  .single.body_cat_id1 .contein h3 {
    padding: 15px 0;
    margin: 15px 0;
    color: #2e2e2e;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .single.body_cat_id1 .contein h4 {
    padding: 3px 0 3px 8px;
    margin: 0 0 10px;
    line-height: 1.3;
    border-left: 3px solid #2e2e2e;;
  }

@media screen and (max-width: 740px) {
  .single.body_cat_id1 .contein h3 {
    font-size: 0.9rem;
  }
  .single.body_cat_id1 .contein h4 {
    font-size: 0.85rem;
  }
}

.single .mainVisual { /* 記事サムネ */
  line-height: 0;
}
  .single .mainVisual img {
    width: 100%;
  }
.LeadSent {
  padding: 8px 0;
  margin: 8px 0 0;
}
.single.body_cat_id1 .contein .choiceTitle { /* おすすめ商品のタイトルで使用 */
  border: none;
  padding: 0;
  margin: 15px 0;
  text-align: center;
  font-size: 0.9rem;
}
  .single.body_cat_id1 .contein .choiceAflBox_rightBox h4 a {
    display: flex;
    align-items: center;
    color: #2e2e2e;
  }
    .single.body_cat_id1 .contein .choiceAflBox_rightBox h4 a:hover {
      opacity: 0.8;
    }
  .choiceAflBox {/* おすすめ商品リンク */
    padding: 20px;
    margin: 0 0 15px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  }
  .choiceAflBox .itemBox {
    align-items: flex-start;
    justify-content: space-between;
  }
    .choiceAflBox_leftBox {
      width: 100%;
      max-width: 280px;
    }
    .choiceAflBox_rightBox {
      width: 100%;
      margin: 0 0 0 13px;
    }
      .single.body_cat_id1 .contein .choiceAflBox_rightBox h4 {
        padding: 0;
        margin: 0 0 10px;
        border: none;
        font-size: 0.9rem;
      }
      .choiceAflBox_rightBox p {
        padding: 0;
        margin: 0;
      }
      .choiceAflBox_rightBox br {
        display: none;
      }
      .choiceAflBox .linkItem {
        width: auto;
        display: flex;
        padding: 8px 30px 8px 3px;
        margin: 0 0 10px;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        color: #fff;
        position: relative;
        border-radius: 5px;
        border-bottom: #111;
        background: #232626;
      }
        .choiceAflBox .linkItem:after {
          font-family: 'icomoon' !important;
          height: 100%;
          display: flex;
          align-items: center;
          content: "\ea58";
          position: absolute;
          top: 0;
          right: 8px;
        }
        .choiceAflBox .rakuten {
          border-bottom: #111;
          background: #b10d11;
        }
        .choiceAflBox .yahoo {
          border-bottom: #111;
          background: #f3235c;
        }
        .choiceAflBox .ama {
          border-bottom: #111;
          background: #fbbe4e;
        }
        .choiceAflBox .other {
          border-bottom: #111;
          background: #93babf;
        }
      .choiceAflBox .linkItem + br,
      .choiceAflBox .linkItem ~ img {
        display: none;
      }
    .choiceAflBox .itemBox .middleTitle + p {
      padding: 0;
      margin: 0;
    }
    .choiceAflBox_rightBox ~ p,
    .choiceAflBox .tableDesign02 ~ p {
      padding: 0;
      margin: 0;
    }
@media screen and (max-width: 740px) {
  .choiceAflBox {/* おすすめ商品リンク */
    padding: 10px;
  }
  .choiceAflBox_leftBox {
    max-width: 100px;
  }
  .choiceAflBox_rightBox {
    margin: 0 0 0 15px;
  }
}

.conenectionPtn01 { /* 内部リンク */
}
  .conenectionPtn01 .item {
    margin: 0 0 10px;
    display: flex;
    position: relative;
    border-top: 2px solid #ebebeb;
    border-left: 2px solid #ebebeb;
    border-right: 2px solid #ebebeb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  }
    .conenectionPtn01 .item:after {
      width: 30px;
      height: 30px;
      content: ">";
      font-family: 'icomoon';
      content: "\ea58";
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size:  1.2rem;
      position: absolute;
      right: 8px;
      top: 50%;
      bottom: 50%;
      transform: translate( 0%, -50%);
      background: #111;
    }
  .conenectionPtn01 .imgBox {
    width: 120px;
    min-width: 120px;
    padding: 20px 20px 20px 20px;
    margin: 0 0 0;
    display: block;
  }
  .conenectionPtn01 .textBox {
    padding-right: 50px;
    text-decoration: none;
    display: block;
  }
    .conenectionPtn01 .textBox .t {
      padding: 20px 0 0;
      font-size: 1.2rem;
      line-height: 1.5;
      font-weight: 600;
      color: #2e2e2e;
    }
  .conenectionPtn01 .description {
    margin: 8px 0 15px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #666;
  }
@media screen and (max-width: 740px) {
.conenectionPtn01 {
  }
  .conenectionPtn01 .item {
    max-width: 400px;
    padding-bottom: 50px;
  }
    .conenectionPtn01 .item :after {
      width: 30px;
      height: 30px;
    }
    .conenectionPtn01 .item .imgBox {
      width: 100px;
      min-width: 100px;
      padding: 15px 8px 1px 15px;
    }
    .conenectionPtn01 .item .textBox {
      }
        .conenectionPtn01 .item .t {
          font-size: .9rem;
        }
        .conenectionPtn01 .item .description {
          width: 100%;
          padding: 0 40px 0 13px;
          margin: 0;
          font-size: 0.7rem;
          letter-spacing: -0.02rem;
          letter-spacing: 0;
          position: absolute;
          bottom: 13px;
          left: 0;
        }
}

.single .mainVisual ~  section {
  padding: 20px;
}

.single .faqCnt { /* singleのFAQ */
}
  .single.body_cat_id1 .contein .faqCnt h3 {
    padding: 0;
    border: none;
  }
    .single .faqCnt .q {
      padding: 0 3px;
      display: inline-flex;
      color: #ffbb33;
    }
    .single .faqCnt .a {
      padding: 0 3px;
      display: inline-flex;
      color: #ffbb33;
    }
  .single .faqCnt .anser {
    padding: 15px;
    border-radius: 15px;
    background: #f9f9f9;
  }

.relatedArticle { /* あわせて読みたい */
  max-width: 785px;
  padding: 20px;
  border-radius: 35px;
  background: #fff;
}
  .relatedArticle .ClmPtn02Item .elm {
    flex-direction: column;
  }
    .relatedArticle .ClmPtn02Item .elm .cat_name {
      flex-direction: column;
      margin: 0 auto 5px 0;
    }
    .relatedArticle .ClmPtn02Item .elm .time {
      font-size: 0.7rem;
      letter-spacing: 0.05rem;
    }
    
@media screen and (max-width: 1115px) {
  .single .contein .relatedArticle h3 {
    margin-left: 15px;
  }
}
@media screen and (max-width: 740px) {
  .single .contein .relatedArticle h3 {
    margin-right: 15px;
    margin-left: 15px;
  }
}

/* page
-------------------------------------------------------------- */
.page {
}
@media screen and (max-width: 740px) {
}

.beginners { /* beginners */
}
  .beginners .contein > .inner {
    max-width: 100%;
  }

.inquiry {/* inquiry */
}
  .inqCnt01 {
  }
    .inqCnt01.ClmPtn01 .item {
      width: 50%;
      text-align: center;
    }
    .inqCnt01Txt {
      height: 110px;
      font-size: 1rem;
    }
    .inqCnt01.ClmPtn01 .item p {
      margin: 0;
      padding: 10px 0 0;
    }
      .inqItemLeft {
        font-size: 1rem;
      }
      .inqCnt01.ClmPtn01 .inqItemLeft p {
        margin: 13px 0 0;
        line-height: 0;
        padding: 0;
      }
        .inqItemLeft .imgBox {
          display: block;
          height: 85px;
          overflow: hidden;
          border: 3px solid #fff;
        }
        .ClmPtn01 .inqItemLeft .imgBox img {
          width: 300px;
        }
      .inqItemRight {
        position: relative;
        padding: 0 0 55px;
      }
      .inqItemRight .top {
        margin: 10px 0 0;
      }
      .inqItemRight .btm {
        font-size: 1rem;
        margin: 10px 0 0;
      }
        .inqItemRight .telBox {
          width: 100%;
          font-size: 2.5rem;
          height: 80px;
          line-height: 74px;
          font-weight: 900;
          display: block;
          color: #232626;
          border: 3px solid #232626;
        }
  .inqCnt02 {
    width: 100%;
    max-width: 650px;
    margin: 30px auto;
  }    
@media screen and (max-width: 740px) {
  .inqCnt01.ClmPtn01 .item {
    width: 100%;
  }
    .inqCnt01.ClmPtn01 .item > .inner {
      flex-direction: column;
    }

    .inqCnt01.ClmPtn01 .item > .inner .imgBox {
      min-width: inherit;
      max-width: inherit;
    }
    .inqCnt01Txt {
      height: inherit;
    }
    .inqCnt01.ClmPtn01 .item.inqItemLeft .title {
      padding-top: 0;
    }
    .inqItemRight {
      padding: 0;
    }
  .inqCnt02 {
    max-width: 90%;
    margin: 0px auto 60px;
  }
}

.error404 .contein > .inner {
  width: 100%;
  max-width: 700px;
  padding: 15px;
}

/* #toc_container
-------------------------------------------------------------- */
#toc_container {
  padding: 20px 30px 40px;
  margin: 0 auto 50px;
}
  .toc_title {
    color: #232626;
  }
    .toc_number {
      color: #232626;     
    }

/* breadcrumb
-------------------------------------------------------------- */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
}
  .breadcrumbInner {
    max-width: 1115px;
    margin: 0 auto;
    display: flex;
  }
  .breadcrumb a,
  .breadcrumb span {
    color: #fff;
  }
  .breadcrumb span {
    margin: 0 15px 0;
  }
@media screen and (max-width: 1115px) {
  .breadcrumb {
    padding: 15px 20px;
    font-size: 0.7rem;
  }
    .breadcrumbInner {
      flex-wrap: wrap;
    }
  .breadcrumb span {
    margin: 0 5px 0;
  }
}


/* pagination
-------------------------------------------------------------- */
.pagination {
  max-width: 1115px;
  padding: 30px 13px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .pagination span, 
  .pagination a {
    width: 25px;
    height: 25px;
    display: inline-flex;
    padding: 0;
    margin: 0 2px;
    letter-spacing: 0;
    font-size: 0.8rem;
    justify-content: center;
    align-items: center;
    color: #2e2e2e;
  }
  .current {
    border-radius: 50%;
    background: #eee;
  }

/* topBtn
-------------------------------------------------------------- */
#topBtn {
	z-index: 999;
	width: 80px;
	margin: 0 auto;
	position: fixed;
	bottom: 0;
  right: 15px;
}
#topBtn .btn {
  padding: 0;
  margin: 0 0 0;
  font-size: 0.7rem;
  font-weight: bold;
  display: block;
  position: relative;
  text-decoration: none; 
} 
#topBtn .btn:before {
	display: block;
  content: "";
  /*
  border-left: 40px solid transparent;
  border-bottom: 40px solid #ffbb33;
  border-right: 40px solid transparent;
 */
}
#topBtn .btn:after {
  width: 50px;
  height: 50px;
  content: "TOP";
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: auto;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 3px;
  right: 0;
  background:  #28a8bd;
}
.contact #topBtn {
	display: none !important;
}
@media screen and (max-width: 740px) {
}