@charset "UTF-8";




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

}

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

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

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

a {
  color: #000;
  transition: all 0.1s ease-in-out;
}
.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 #1ca8a0;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
  }
  .checkBox01::after {
    border-right: 3px solid #1ca8a0;
    border-bottom: 3px solid #1ca8a0;
    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: 10px;
}
.scroll::-webkit-scrollbar-track-piece:start{
  background: #fff;
}
.scroll::-webkit-scrollbar-track-piece:end{
  background: #fff;
}
#modal-bg {
  z-index: 2000;
  width: 200vw;
  height: 200vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

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


/* 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: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
  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: 3px;
  outline: none;
  border: 2px solid #dadada;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background: #fef8eb;
}
input:-internal-autofill-selected {
  background: #fef8eb;
}
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: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
    width: 300px;
    line-height: 65px;
    cursor: pointer;
    padding: 0;
    margin: 0 auto;
    display: block;
    text-align: center;
    border: none;
    color: #1ca8a0;
    border: 2px solid #1ca8a0;
    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 #1ca8a0;
      background: #1ca8a0;
    }
  input[type="submit"].wpcf7c-elm-step2 {
  }
  input[type="button"].wpcf7-back {
    font-family: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
    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: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
	-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;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  color: #797875;
  font-family: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
}

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

h2 {
  font-family: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
  padding: 20px 0;
  margin: 0 0 0;
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #303030;
  border: none;
}
.title {
  font-family: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
	text-align: center;
  padding: 60px 10px 55px;
  margin: 0;
  color: #f6ad3c;
}
  .title .text:after {
    width: 206px;
    height: 3px;
    margin: 0 auto;
    content: "";
    display: block;;
    margin: 30px auto 10px;
    background: #f6ad3c;
  }

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

h3 {
  font-family: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
  margin: 20px 0 10px;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}
@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;
}

/* 共通要素
-------------------------------------------------------------- */
blockquote{ /* 引用を見やすくカスタマイズ */
	position: relative;
	padding: 30px 39px 30px 39px;
	box-sizing: border-box;
	font-style: italic;
	color: ;
	background: #fef8eb;
	border: none;
	border-top: solid 3px #f6ad3c;
	border-bottom: solid 3px #f6ad3c;
}
  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:  #f6ad3c;
    font-size: normal;
    line-height: 30px;
    /* background: #f6ad3c; */
  }
  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;
  }

.colorPtn01 {
  color: #f6ad3c;
}

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

.forProblemWrapper {
  display: flex;
  justify-content: center;
  background: #ffeebf;
}
.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 #1ca8a0;
      border-bottom: 2px solid #1ca8a0;
      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 #1ca8a0;
  }
@media screen and (max-width: 740px) {
  .forProblemWrapper02 .forProblem {
    padding: 30px 30px;
    font-size: 1rem;
  }
}


.tableDesign01 {
  width: 100%;
  max-width: 872px;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
}
  .tableDesign01 .item {
    padding: 15px 0;
    border-bottom: 2px solid #f6ad3c;
  }
  .tableDesign01 .item .t {
    min-width: 150px;
    max-width: 150px;
    letter-spacing: 0.1rem;
    font-weight: 600;
  }
  .tableDesign01 .item .c {
  }
@media screen and (max-width: 1115px) {
  .tableDesign01 {
    width: auto;
    margin: 20px 10px;
  }
  .tableDesign01 .item .t {
    min-width: 130px;
    max-width: 130px;
    line-height: 1.3;
    letter-spacing: 0;
  }
  .tableDesign01 .item .c {
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.tableDesign02 {
  width: 100%;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #f6ad3c;
}
  .tableDesign02 .item {
    display: flex;
    border-right: 2px solid #f6ad3c;
    border-left: 2px solid #f6ad3c;
    border-bottom: 2px solid #f6ad3c;
  }
    .tableDesign02 .item .t {
      width: 100%;
      min-width: 20%;
      max-width: 20%;
      padding: 15px 3px;
      letter-spacing: 0.1rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-right: 2px solid #f6ad3c;
    }
      .tableDesign02 .item a.t {
        color: #1ca8a0;
      }
    .tableDesign02 .item .c {
      width: 100%;
      min-width: 20%;
      max-width: 20%;
      padding: 15px 0;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-right: 2px solid #f6ad3c;
    }
    .tableDesign02 .item .c + .c {
      width: 100%;
      min-width: 60%;
      max-width: 60%;
      padding: 15px 3px 15px 10px;
      display: inline-flex;
      justify-content: flex-start;
      align-items: center;
      border: none;
    }
@media screen and (max-width: 1115px) {
  .tableDesign02 {
    width: auto;
    margin: 20px 10px;
    font-size: 0.85rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
  .tableDesign02 .item .t {
    min-width: 30%;
    max-width: 30%;
    text-align: left;
    justify-content: flex-start;
  }
  .tableDesign02 .item .c {
    min-width: 20%;
    max-width: 20%;
  }
  .tableDesign02 .item .c + .c {
    min-width: 50%;
    max-width: 50%;
  }
}

.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: #f6ad3c;
  }
  .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: 0 auto;
  flex-direction: column;
}
  .ClmPtn02 .item {
    width: 100%;
    overflow: hidden;
    margin: 0 0 30px;
  }
  .ClmPtn02 .item > .inner {
    padding: 0;
    align-items: center;
  }
    .ClmPtn02 .thumImgBox {
      width: 100%;
      max-width: 500px;
      display: block;
    }
    .ClmPtn02 .txtBox {
      width: 100%;
      padding: 16px;
    }
      .ClmPtn02Title {
        letter-spacing: 0.1rem;
        font-weight: normal;
      }
      .ClmPtn02Title .time {
        margin: 0 0 15px;
        color: #797875;
        font-size: 1rem;
        line-height: 1;
        display: block;
      }
      .ClmPtn02Title .t {
        color: #f6ad3c;
        font-size: 1.5rem;
        font-weight: 600;
      }
      .ClmPtn02 .txt {
        font-size: 1rem;
        color: #797875;
      }
      .ClmPtn02 .moreBtn03 {
        margin: 30px 0 0;
      }
@media screen and (max-width: 740px) {
  .ClmPtn02 .thumImgBox {
    width: 40%;
  }
  .ClmPtn02 .txtBox {
    width: 60%; 
  }
  .ClmPtn02Title .t {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}

.ClmPtn03 { /* 横　３列　ブログバージョン */
  flex-direction: column;
}
  .ClmPtn03 .item {
    width: 100%;
    overflow: hidden;
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 2px solid #f6ad3c;
  }
  .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: #797875;
        font-size: 1rem;
        line-height: 1;
        display: block;
      }
      .ClmPtn03Title .t {
        color: #f6ad3c;
        font-size: 1.5rem;
      }
      .ClmPtn03 .txt {
        font-size: 1rem;
        color: #797875;
      }
      .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: 20px;
      background: #1ca8a0;
    }
@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:			3px;
  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:			2px;
  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 #1ca8a0;
    background: #1ca8a0;
  }
  .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 50px;
  border-radius:			15px;
  color: #1ca8a0;
  font-size: 1.2rem;
  line-height: 1.3;
  border: 1px solid #1ca8a0;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .moreBtn02:hover {
    opacity: 1 !important;
    color: #fff;
    background: #1ca8a0;
  }
@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: #1ca8a0;
  line-height: 1.3;
  border: 1px solid #1ca8a0;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .moreBtn03:hover {
    opacity: 1 !important;
    color: #fff;
    background: #1ca8a0;
  }



/* header
-------------------------------------------------------------- */
header {
  width: 100%;
  height: 150px;
  z-index: 1000;
  font-family: NotoSansCJKjp-Regular, sans-serif, Meiryo , Hiragino Kaku Gothic Pro, Meiryo UI, MS PGothic;
  padding: 0 0 0;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  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;
  }
  .headerLayout > .inner {
    width: 100%;
  	max-width: 1115px;
    margin: 0 auto;
    justify-content: flex-start;
    align-items: center;
  }
  .logoWrapper {
  	position: relative;
  }
  /* logo
  ---------- */
  h1 {
    z-index: 1002;
    width: 150px;
    min-width: 150px;
    margin: 0 auto;
    line-height: 0;
    /*
    position: absolute;
    top: 0;
    left: 50%;
    transition: all .3s;
    transform: translate(-50%, 0);
    */
  }
  #logo {
    width: 100%;
    overflow: hidden;
    padding: 0 0 0;
    margin: 0;
    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: 100px;
  }
    h1 {
      width: 100px;
      min-width: 100px;
    }
}

.headNav {
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
}
  .heaCvItemWrapper {
    justify-content: flex-end;
    align-items: center;
  }
    .heaCvItemWrapper .item {
    }
    .heaCvItem {
      padding: 8px 15px;
      margin: 0 0 0 15px;
      line-height: 1;
      display: block;
      border-radius: 18px;
      color: #fff;
      background: #f6ad3c;
    }

	.headNavWrapper {
    width: 100%;
    max-width: 750px;
    padding: 30px 0 0;
    margin: 0 0 0 auto;
  }
    .headNavWrapper .item {
      display: inline-flex;
      margin: 0 auto;
    }
    .headNavItem {
    	width: 100%;
      padding: 0;
      color: #f6ad3c;
      display: block;
      font-size: 1.1rem;
      letter-spacing: 0;
      text-align: center;
      position: relative;
    }
      .headNavItem:after {
        width: 100%;
        margin: 4px 0 0;
        display: block;
        content: "";
        height: 3px;
        background: #fef8eb;
      }
    .headNavWrapper .item:last-child {
      margin-right: 0;
    }

@media screen and (max-width: 1115px) {
}
@media screen and (max-width: 740px) {
  .headNavWrapper {
    display: none;
  }
  .heaCvItemWrapper {
    width: 100%;
    justify-content: space-between;
    position: fixed;
    left: 0;
    bottom: 0;
  }
  .heaCvItemWrapper .item {
    width: 100%;
    height: 55px;
    border-right: 2px solid #ffeebf;
  }
    .heaCvItem {
      width: 100%;
      height: 55px;
      padding: 0 0;
      margin: 0 0 0;
      line-height: 1.5;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 0;
      color: #fff;
      background: #f6ad3c;
    }
  .heaCvItemWrapper .item:last-child {
    border: none;
  }
}

  .headNav.open .heaCvItemWrapper {
    z-index: 2500;
    width: 80%;
    max-width: 400px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    left: 0;
    bottom: 0;
  }
    .headNav.open .heaCvItemWrapper .item {
      border: none;
      border-top: 2px solid #fff;
    }
    .headNav.open .heaCvItemWrapper .item br {
      display: none !important;
    }

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

}

/* 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: fixed;
  top: 25px;
  right: 15px;
}
  #menu .icon {
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f6ad3c;
  }
.heaCvItemWrapper + #menu {
  opacity: 0;
}
  header.header_scrolled + #menu {
    opacity: 1;
  }
#menu.open + .headNavWrapper {
  z-index: 2000;
	opacity: 1;
  width: 80%;
  height: 100vh;
  max-width: 400px;
	display: block;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}

@media screen and (max-width: 740px) {
.heaCvItemWrapper + #menu {
	opacity: 1;
}
  #menu .icon {
  }
  .headNavWrapper {
    padding: 0;
    flex-direction: column;
  }
  .headNavWrapper .item {
    width: 100%;
    display: block;
  }
      .headNavItem {
        padding: 8px 0 8px 15px;
        text-align: left;
        color: #797875;
        border-bottom: 2px solid #ffeebf;
      }
      .headNavItem:after {
        display: none;
      }
}

/* #wrapper
-------------------------------------------------------------- */
#wrapper {
  width: 100%;
  padding: 0 0 0;
  margin: 0 auto 0;
  transition: all .3s;
  font-size: 1.1rem;
  position: relative;
  background: #fff;
}
  @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%;
  background: #fff;
}

.home section {
}
.home h2 {
  font-size: 2rem;
}
.topMainBg /* topMainBg */ {
  width: 100%;
  position: relative;
  line-height: 0;
}
  .topMainBg .imgBox01 {
    line-height: 0;
  }
    .topMainBg .imgBox01 img {
      width: 100%;
    }
  .topMainBg .imgBox02 {
    width: 388px;
    height: 261px;
    line-height: 0;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -60%);
  }
@media screen and (max-width: 740px) {
  .home h2 {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .topMainBg /* topMainBg */ {
    height: 420px;
    min-height: 420px;
    position: relative;
  }
  .topMainBg .imgBox01 {
    width: 100%;
    margin: 0 0 0 0;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0%);
  }
  .topMainBg .imgBox02 {
    width: 271px;
    height: 182px;
  }
}
@media screen and (max-width: 740px) {
  .topMainBg .imgBox01 {
    width: 700px;
    margin: 0 0 0 0;
  }
}
@media screen and (max-width: 415px) {
  .topMainBg .imgBox01 {
    width: 700px;
    margin: 0 0 0 130px;
  }
}

.key  { /* key */
}
  .key .slider {
    line-height: 0;
  }
  .key .item {
    width: 350px;
  }
  @media screen and (max-width: 740px) {
    .key .item {
      width: 200px;
    }
  }


.secComn { /* 共通 */
}
  .secComn .inner {
    max-width: 1115px;
    margin: 0 auto 0;
  }

.secMess { /* メッセージ*/
  max-width: 540px;
  margin: 60px auto 0;
  text-align: center;
}
  .secMessTitle {
    text-align: center;
    color: #f6ad3c;
  }
  .secMessCnt {
    letter-spacing: 0;
    color: #1ca8a0;
  }
@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: NotoSerifCJKjp, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", monospace, 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: #1ca8a0;
  }
  .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: #fef8eb;
  }
  .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: #ffeebf;
  }
  .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;
    margin: 0 auto;
  }
  .secJListWrapper {
    counter-reset: count;
    list-style: none;
    align-items: flex-start;
  }
    .secJItem {
      padding: 60px 35px;
      margin: 10px;
      border-radius: 25px;
      overflow: hidden;
      background: #ffeebf;
    }
      .secJItem .imgBox {
        width: 100%;
      }
      .secJItem .imgBox img {
        width: 100%;
      }
      .secJItemTitle {
        padding: 20px 0 0;
        justify-content: flex-start;
        align-items: center;
        color: #f6ad3c;
     }
        .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: #f6ad3c;
          }
          .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: #f6ad3c;
          }
        .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;
      }
}

.secMenu { /* おすすめのメニュー */
}
  .secMenuItem {
    width: 100%;
    padding: 25px 0;
    margin: 0 0 50px;
    background: #fef8eb;
  }
  .secMenuItem .inner {
    max-width: 1115px;
    margin: 0 auto;
  }
    .secMenuItem .imgBox {
      max-width: 530px;
      width: 100%;
    }
    .secMenuTextBox {
      width: 100%;
      padding: 60px 0 0 30px;
    }
      .secMenuItemTitle {
      }
      .secMenuItemTitle span {
        display: block;
      }
      .secMenuItemTitle:after {
        width: 40px;
        height: 2px;
        margin: 15px 0 0;
        content: "";
        display: block;
        background: #f6ad3c;
      }
      .secMenuTextBox .price1 {
        font-size: 1rem;
      }
      .secMenuTextBox p {
        margin: 25px 0;
      }
    .secMenuItem .moreBtn02 {
      width: 110px;
      padding: 10px 0;
      margin: 0 0 0 auto;
      font-size: 1rem;
    }
@media screen and (max-width: 740px) {
  .secMenuItem {
    padding: 0 0 25px;
  }
    .secMenuItem .inner {
      flex-direction: column;
    }
    .secMenuItem .imgBox {
      max-width: 100%;
    }
  .secMenuTextBox {
    padding: 20px 20px;
  }
    .secMenuTextBox p {
      margin: 0;
    }
}

.secK { /* 口コミ */
}
  .secComn .inner {
    display: flex;
    justify-content: center;
  }
.secKBnr {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 50px auto 80px;
}
  .secKBnr img {
    width: 100%;
  }
@media screen and (max-width: 740px) {
.secKBnr {
  margin: 30px auto 50px;
}

}

.secMap { /* 店舗情報 */
    background: #ffeebf;
    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: #1ca8a0;
        border-radius: 15px;
        border: 1px solid #1ca8a0;
        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: #1ca8a0;
      }
      .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;
  }
}

.secFL { /* flow */
}
  .secFL > .inner {
    margin: 0 auto;
  }
  .sBoxWrapper {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .secFLItem {
    width: 100%;
    padding: 0 0 100px;
    margin: 0 auto;
    position: relative;
  }
    .secFLItem:before {
      z-index: 1;
      width: 100%;
      max-width: 650px;
      height: 350px;
      overflow: hidden;
      border-radius: 40px;
      display: block;
      content: "";
      background-position: 0 0;
      background-size: 100%;
      background-repeat: no-repeat;
    }
    .secFLItem01:before {
      position: absolute;
      right: 0;
      top: 0;
    }
    .secFLItem02:before {
      position: absolute;
      left: 0;
      top: 0;
    }
    .secFLItem:nth-child(1):before {
      background-image: url(images/flow_img02.webp);
    }
    .secFLItem:nth-child(2):before {
      background-image: url(images/flow_img03.webp);
    }
    .secFLItem:nth-child(3):before {
      background-image: url(images/flow_img04.webp);
    }
    .secFLItem:nth-child(4):before {
      background-image: url(images/flow_img05.webp);
    }
    .secFLItem:nth-child(5):before {
      background-image: url(images/flow_img06.webp);
    }

  .secFLItem .secFLItemOb {
    max-width: 872px;
    }
    .secFLItem02 .secFLItemOb {
      margin: 0 0 0 auto;
    }
  .secFLItemWrapper {
    width: 100%;
    min-height: 330px;
    color: #1ca8a0;
    align-items: center;
    padding: 4rem 0;
    margin: 100px 0 0;
    border-radius: 40px;
    background: #fef8eb;
  }
    .secFLItem01 .secFLItemWrapper {
    }
    .secFLItem02 .secFLItemWrapper {
      padding-left: 60%;
    }
    .secFLItemWrapper > .inner {
      width: 100%;
      max-width: 400px;
      padding: 0 0 0 80px;
      margin: 0 auto 0 0;
    }
      .secFLItem01 .secFLItemWrapper > .inner {
      }
      .secFLItem02 .secFLItemWrapper > .inner {
        padding: 0;
      }
      .secFLItemWrapper .secFLTitle span {
        font-size: 2.2rem;
        margin: 0 12px 0px 0;
        line-height: 1;
        display: inline-block;
        vertical-align: inherit;
      }
      .secFLItemWrapper p {
        padding: 0;
        margin: 15px 0 0 30px;
        font-size: 1rem;
      }

@media screen and (max-width: 1115px) {
  .secFL > .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .secFLItem {
    max-width: 650px;
    padding: 30px;
    margin: 0 30px 40px;
    border-radius: 35px;
    background: #fef8eb;
  }
    .secFLItem:before {
      position: static;
      margin: 0 auto;
    }
    .secFLItem .secFLItemOb {
      max-width: 650px;
      margin: 0 auto;
    }
    .secFLItemWrapper {
      min-height: inherit;
      padding: 0;
      margin: 0;
    }
      .secFLItemWrapper > .inner {
        width: 100%;
        max-width: inherit;
        padding: 0;
        margin: 0 auto 0 0;
        background: none;
      }
      .secFLItem02 .secFLItemWrapper {
        padding-left: 0;
      }
}

.secSNS { /* secSNS */
}
  .secSNSInnerAjustBox {
    overflow: hidden;
    overflow-x: scroll;
  }
  .secSNSInnerAjustBox > .inner {
    position: relative;
  }
  .secSNSInnerAjustBox > .inner:before {
    width: 2500px;
    height: 250px;
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(25deg, #f6ad3c , #fef8eb); 
  }
  .secSNSAjustBox {
    max-width: 1115px;
    margin: 0 auto 0;
  }
  .secSNSWrapper,
  .secSNSWrapper .item {
    z-index: 1;
  }
  .secSNSWrapper {
    margin: 0 0 0 150px;
  }
    .secSNSWrapper .item {
      width: 100%;
      max-width: 300px;
      min-width: 300px;
      margin: 0 15px 0;
    }
    .secSNSWrapper .item img {
      width: 100%;
    }
    .secSNS .moreBtn02 {
      color: #fff;
      border-color: #1ca8a0;
      background: #1ca8a0;
    }
      .secSNS .moreBtn02 .imgBox {
        width: 30px;
        min-width: 30px;
        height: auto;
        margin: 0 8px 0 0;
      }
      .secSNS .moreBtn02:hover {
        border-color: #f6ad3c;
        background: #f6ad3c;
      }
@media screen and (max-width: 740px) {
  .secSNSInnerAjustBox > .inner:before {
    width: 2500px;
  }
}

.footer { /* footer */
  color: #fff;
  background: #1ca8a0;
}
  .footer a:hover {
    opacity: 0.8;
  }
  .footInner {
    max-width: 1115px;
    padding: 70px;
    margin: 0 auto;
  }
  .siteMapBoxWrapper {
    width: 100%;
  }
    .footLogoBox {
      width: 100%;
      max-width: 250px;
      margin: 0 15px 0 0;
    }
    .siteMapBox {
      width: 100%;
      max-width: 250px;
      margin: 0;
    }
    .siteMapBoxLeft {
      margin: 0 0 0 auto;
    }
      .siteMapBoxInner {
        flex-direction: column;
      }
      .siteMapBoxInner .item {
        font-size: 1rem;
        margin: 0 0 10px;
        display: inline-flex;
      }
        .siteMapBoxInner .item .flexPtn {
          color: #fff;
          align-items: center;
        }
    .footSnsBox {
      padding: 0 0 0 15px;
    }
      .footSnsBox .ins {
        width: 30px;
        min-width: 30px;
        display:  block;
      }
@media screen and (max-width: 740px) {
  .footInner {
    padding: 40px 0;
  }
    .siteMapBoxWrapper {
      flex-direction: column;
      align-items: center;
    }
      .footLogoBox {
        max-width: 200px;
        margin: 0 0 40px;
      }
      .siteMapBox {
        max-width: 100%;
      }
      .siteMapBoxLeft {
        padding: 0;
        margin: 0;
        border-top: 1px solid #fff;
      }
      .siteMapBoxInner {
        padding: 0px 0;
      }
      .siteMapBoxInner .item {
        width: 100%;
        font-size: 1rem;
        padding: 15px 15px;
        margin: 0;
        border-bottom: 1px solid #fff;
      }
    .siteMapBoxRight {
    }
      .siteMapBoxRight .siteMapBoxInner {
        border: none;
      }
      .siteMapBoxInner .item .flexPtn {
        display: flex;
      }
  .footSnsBox {
    padding: 0 0 0;
    margin: 30px 0;
  }
}


.copyright {
  background: #797875; 
}
  .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.8rem;
  }
}


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

.contein {
  letter-spacing: 0;
  margin: 0 0 100px;
}
  .contein > .inner {
    max-width: 1115px;
    margin: 0 auto;
  }
  .contein >.inner .title .text:after {
    display: none;
  }

/* archive
-------------------------------------------------------------- */
.archive  {
}
.menu { /* menu */
}

  .menufirstPrice {
    letter-spacing: 0.1rem;
    justify-content: center;
    align-items: center;
    margin: 0 0 60px;
  }
    .menufirstPrice span {
      font-size: 2.1rem;
      color: #797875;
      padding: 0 10px 0 0;
      display: inline-flex;
    }
    .menufirstPrice b {
      font-size: 2.3rem;
      color: #f6ad3c;
      display: inline-flex;
    }
    .tableDesign02 .item.firstTitle .t {
      color: inherit;
    }
    .tableDesign02 .item.firstTitle .c + .c {
      justify-content: center;
    }
@media screen and (max-width: 740px) {
  .menufirstPrice {
    transform: scale(0.9);
    margin: 0 0 40px;
  }
  .archive.body_cat_id7 .ClmPtn01 {
    flex-direction: row;
  }
    .archive.body_cat_id7 .ClmPtn01 .item > .inner .imgBox {
      min-width: 100%;
      max-width: 100%;
    }
}


/* single
-------------------------------------------------------------- */
.single {
}
  .single.body_cat_slug_menu { /* menu */
  }
  .menu_priceBox {
    max-width: 1115px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
  }
  .menu_priceBox_imgBox {
    width: 100%;
    height: auto;
  }
  .menu_priceBox_imgBox img {
    vertical-align: middle;
  }
  .price {
    width: 100%;
    background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,0) 25%,rgba(58,64,45,.7) 75%,rgba(58,64,45,.7) 100%);
    color: #fff;
    text-align: right;
    font-size: 2.8rem;
    line-height: 80px;
    font-weight: 600;
    padding-right: 40px;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .body_cat_slug_menu .contein > .inner {
    max-width: 950px;
    margin: 0 auto;
  }
  .body_cat_slug_menu .forProblemWrapper {
  }
  .body_cat_slug_menu .forProblem {
    padding-top: 50px;
    padding-bottom: 50px;
  }

@media screen and (max-width: 1115px) {
  .single.body_cat_slug_menu .contein > .inner {
    margin: 0 20px;
  }
}

@media screen and (max-width: 740px) {
  .price {
    font-size: 1.8rem;
    line-height: 60px;
    font-weight: 500;
    padding-right: 25px;
  }
}

.blogNews { /* blog news */
}
  .contein.blogNews > .inner {
    max-width: 850px;
  }
  .blogNews .title {
    max-width: 1115px;
    /*
    padding: 0;
    */
    margin: 0 auto 30px;
    text-align: left;
    /* color: #797875; */
  }
    .blogNews .title .text:after {
      margin-left: 0;
      margin-right: auto;
    }
    .blogNews .elm {
      padding: 10px 0;
      text-align: right;
      font-size: 1rem;
    }
  .articlelArea h2 {
    color: #797875;
  }
  .articlelArea h2:after {
    width: 100%;
    height: 3px;
    margin: 15px 0 7px;
    display: block;
    content: "";
    background: #f6ad3c;
  }
  .gotoBack {
    max-width: 850px;
    padding: 60px 0 0;
    margin: 40px auto 30px;
    border-top: 2px solid #ffeebf;
  }
    .gotoBack .item {
      width: 100%;
      max-width: 200px;
      padding: 15px 0;
      display: inline-flex;
      line-height: 1;
      justify-content: center;
      align-items: center;
      color: #797875;
      border-radius: 10px;
      background: #ffeebf;
    }
@media screen and (max-width: 740px) {
  .contein.blogNews > .inner {
    margin: 0 20px;
  }
  .gotoBack {
    padding-left: 20px;
    padding-right: 20px;
  }
}


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

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

.access { /* access */
}
  .access {
    text-align: center;
  }
  .access .mapImgBox {
    min-height: auto;
  }
  .access .ruteBox {
    margin: 0 0 50px;
  }
    .access .listItemWrapper {
    }
    .access .ruteBox .listItem {
      max-width: 700px;
      padding: 30px 50px;
      margin: 0 auto;
      display: inline-flex;
      text-align: left;
      flex-direction: column;
      font-size: 1.2rem;
      border: 2px solid #1ca8a0;
    }
      .access .ruteBox .listItem .t {
        padding: 15px 5px;
        align-items: center;
        color: #1ca8a0;
        line-height: 1.3;
      }
      .access .ruteBox .listItem .t .txt {
        display: flex;
        flex-wrap: wrap;
      }
      .access .ruteBox .listItem .t .txt b {
        display: inline-block;
        margin-right: 8px;
      }

    .access .roteTitle {
      margin: 80px 0 30px;
    }
    .access .ruteBox .imgBox {
      width: 100%;
      max-width: 700px;
      margin: 0 auto 15px;
    }
      .access .ruteBox .imgBox img {
        width: 100%;
      }

@media screen and (max-width: 740px) {
  .access .contein > .inner .access .title {
    padding-top: 0;
  }
  .access .ruteBox .listItemWrapper {
    margin: 0 15px;
  }
  .access .ruteBox .listItem {
      padding: 30px 20px;
    }
    .access .ruteBox .listItem .t .txt {
      display: flex;
      font-size: 1rem;
    }
    .access .ruteBox .listItem .t .txt b {
      margin-right: 0;
    }
  .accessFaq {
    padding-top: 30px;
  }
}


.aboutus { /* aboutus */
}
  .aboutus .contein > .inner {
    max-width: 100%;
  }
  .message_strength { 
  }
  .topMessageBox {
    flex-wrap: wrap;
  }
    .topMessageImgWrapper {
      width: 50%;
      padding: 0 30px 0 0;
    }
      .topMessageImgWrapper .imgBox {
      }
        .topMessageImgWrapper .imgBox img {
          width: 100%;
        }
    .topMessagetxtWrapper {
      width: 50%;
    }
      .topMessagetxtWrapper > .inner {
        width: 100%;
        max-width: 550px;
      }
      .topMessageBoxTitle {
        font-size: 1.8rem;
        line-height: 1.8;
      }
        .degree {
          display: block;
        }
      .topMessagetxtWrapper .subText {
        font-size: 1.8rem;
        font-weight: 600;
        color: #f6ad3c;
      }
    .topMessagetxtWrapper.second {
      width: 100%;
      max-width: 700px;
      margin: 40px auto 20px;
    }
    .topMessagetxtWrapper.second > .inner {
      max-width: 100%;
    }
    .topMessagetxtWrapper.second .t {
      padding: 8px 10px;
      background: #fef8eb;
    }
    .topMessagetxtWrapper.second p {
      margin: 0 0 0 10px;
    }
  .about_strength {
    padding-bottom: 60px;
    background: #fef8eb;
  }
    .about_strength .ClmPtn01Title {
      text-align: center;
    }
  .aboutus .secMap {
    margin-top: 60px;
    padding-bottom: 60px;
  }
@media screen and (max-width: 740px) {
  .topMessageImgWrapper,
  .topMessagetxtWrapper {
    width: 100%;
  }
  .topMessagetxtWrapper > .inner {
  }
  .message_ClmPtn01 .title {
    padding-top: 0;
  }
  .topMessageBox {
    flex-direction: column;
  }
    .topMessageImgWrapper {
      padding: 0;
    }
    .topMessagetxtWrapper {
      padding: 0 15px;
      margin: 15px 0;
    }
      .topMessagetxtWrapper > .inner {
        max-width: inherit;
      }
        .topMessageBoxTitle {
          margin: 0px 0 20px;
          text-align: center;
        }
          .degree {
            padding: 8px 0;
            margin: 0 0 20px;
            display: block;
            color: #f6ad3c;
            background: #fef8eb;
          }
      .topMessagetxtWrapper .subText {
        font-size: 1.3rem;
        text-align: center;
        background: #fef8eb;
      }
  .about_strength .ClmPtn01 .item > .inner {
    flex-direction: column;
  }
    .about_strength .ClmPtn01 .item > .inner .imgBox {
      min-width: 100%;
      max-width: 100%;
    }
    .about_strength .ClmPtn01 .item p {
      padding: 0;
    }
  .aboutus .secMap {
    padding-bottom: 0;
  }
}


.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: #f6ad3c;
          border: 3px solid #f6ad3c;
        }
  .inqItemCenter {
    text-align: center;
    margin: 0 0 30px;
  }
    .inqItemCenter .linkBtn {
      width: 100%;
      max-width: 320px;
      font-size: 1.5rem;
      height: 80px;
      line-height: 74px;
      font-weight: 900;
      display: flex;
      justify-content: center;
      color: #f6ad3c;
      border: 3px solid #f6ad3c;
    }
  .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;
  }
}


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

/* breadcrumb
-------------------------------------------------------------- */
.breadcrumb {
  padding: 15px 0;
}
  .breadcrumbInner {
    max-width: 1115px;
    margin: 0 auto;
    display: flex;
  }
  .breadcrumb a,
  .breadcrumb span {
    color: #797875;
  }
  .breadcrumb span {
    margin: 0 15px 0;
  }
@media screen and (max-width: 1115px) {
  .breadcrumb {
    padding: 15px 20px;
    font-size: 0.9rem;
    letter-spacing: 0;
  }
}


/* pagination
-------------------------------------------------------------- */
.pagination {
  max-width: 1115px;
  padding: 30px 13px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .pagination span, 
  .pagination a {
    display: inline-flex;
    margin: 0 13px;
    color: #797875;
  }

/* 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 #1ca8a0;
  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:  #1ca8a0;
}
.contact #topBtn {
	display: none !important;
}
@media screen and (max-width: 740px) {
}