@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "Noto sans Regular";
  src: url("../fonts/noto-sans-jp-r.woff") format("woff");
}

@font-face {
  font-family: "Noto sans Medium";
  src: url("../fonts/noto-sans-jp-m.woff") format("woff");
}

@font-face {
  font-family: "Noto sans Bold";
  src: url("../fonts/noto-sans-jp-b.woff") format("woff");
}

@font-face {
  font-family: "Noto serif Regular";
  src: url("../fonts/noto-serif-r.woff") format("woff");
}

@font-face {
  font-family: "Noto serif Medium";
  src: url("../fonts/noto-serif-m.woff") format("woff");
}

@font-face {
  font-family: "Noto serif Bold";
  src: url("../fonts/noto-serif-b.woff") format("woff");
}

/*	img-layout
------------------------------------ */
/*	font-size  cmn
------------------------------------ */
/*	cmn temp
------------------------------------ */
.fle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.fle-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.fle-nowrap {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.fle-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fle-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.fle-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.fle-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fle-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.fle-left {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.fle-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fle-right {
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.fle-align-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.fle-align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.fle-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.fle-align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.fle-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

/* --- ▲　fle parts　▲ --- */
/*==================================================
 form  PC
================================================== */
select,
textarea,
input[type='tel'],
input[type='num'],
input[type='text'],
input[type='email'] {
  max-width: 100%;
  padding: 6.5px;
  font-size: 16px;
  font-size: 1.6rem;
  border: 2px solid #a0a0a0;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  select,
  textarea,
  input[type='tel'],
  input[type='num'],
  input[type='text'],
  input[type='email'] {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

textarea {
  width: 100%;
}

.select {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .select::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 118%;
    background: #e0e0e0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}

.select select {
  width: 222px;
  position: relative;
  z-index: 1;
}

.select img {
  width: 11px;
  position: absolute;
  right: 8px;
  z-index: 2;
  top: 6px;
  bottom: 0;
  margin: auto;
}

/* ボタン
-------------------------------------------------- */
button[name="back"],
input[type='submit'] {
  width: 100%;
  height: 100%;
  margin: auto;
  border: none;
  background: none;
  -webkit-appearance: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

button[name="back"]:hover,
input[type='submit']:hover {
  opacity: .8;
}

button[name="back"]:hover,
input[type='submit']:hover {
  cursor: pointer;
}

button[name="back"][disabled],
input[type='submit'][disabled] {
  pointer-events: none;
}

input[name="check"] {
  margin-left: auto;
  margin-right: auto;
}

input[name="check"][disabled] {
  pointer-events: none;
}

input[name="back"] {
  margin-left: auto;
  margin-right: auto;
  background: #898f9c !important;
}

.send {
  margin-top: 20px;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  line-height: 30px;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  display: none;
  margin: 0;
}

input[type=radio] + label,
input[type=checkbox] + label {
  padding: 0 0 0 24px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  input[type=radio] + label,
  input[type=checkbox] + label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 59%;
  left: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: #FFF;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 59%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 10px;
  width: 5px;
  height: 5px;
  margin-top: -3px;
  background: #333;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*==================================================
テーブル
================================================== */
.contact-form-table {
  width: 100%;
  max-width: 890px;
  margin: 50px auto 0;
}

.contact-form-table tr {
  border-bottom: 2px solid #e6e6e6;
}

.contact-form-table th, .contact-form-table td {
  padding: 25px 0;
  font-family: "Noto sans Regular", sans-serif;
  letter-spacing: .06em;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
  text-align: left;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .contact-form-table th, .contact-form-table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.contact-form-table th {
  width: 230px;
}

@media screen and (min-width: 768px) {
  .contact-form-table .check-td label:nth-of-type(3n-2) {
    width: 265px;
  }
  .contact-form-table .check-td label:nth-of-type(3n-1) {
    width: 230px;
  }
  .contact-form-table .check-td label:nth-of-type(n+4) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-table .check-td label {
    display: block;
  }
  .contact-form-table .check-td label:nth-of-type(n+2) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-table {
    margin-top: 30px;
  }
  .contact-form-table th, .contact-form-table td {
    padding: 10px 0;
  }
  .contact-form-table td {
    padding-top: 0;
  }
}

input::-webkit-input-placeholder {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: .04em;
}

input:-ms-input-placeholder {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: .04em;
}

input::-ms-input-placeholder {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: .04em;
}

input::placeholder {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: .04em;
}

@media screen and (max-width: 767px) {
  input::-webkit-input-placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
  input:-ms-input-placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
  input::-ms-input-placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
  input::placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.privacy-wrap {
  margin: 40px auto 0;
  text-align: center;
  letter-spacing: 0;
  color: #000000;
}

.privacy-wrap a {
  display: inline-block;
}

.privacy-wrap .privacy-txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto sans Medium", sans-serif;
}

@media screen and (max-width: 767px) {
  .privacy-wrap .privacy-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .privacy-wrap {
    margin-top: 30px;
  }
}

/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}

/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  text-align: center;
  color: #ff0000;
  float: left;
}

/* 「任意」「必須」マーク */
.required-mark {
  display: inline-block;
  margin-left: 18px;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #000;
}

@media screen and (max-width: 767px) {
  .required-mark {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .required-mark {
    margin-left: 5px;
  }
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #e74c3c;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  margin: 50px auto 0;
  text-align: center;
}

/* プライバシーポリシー */
label[for="agree"] a {
  color: #000000;
  text-decoration: underline;
  word-break: keep-all;
}

.inline-privacy-policy {
  width: 100%;
  height: 252px;
  margin: auto;
}

.inline-privacy-policy-wrap {
  margin: 15px auto 0;
  background: #fff;
}

.inline-privacy-policy-txt {
  max-width: 96%;
  margin: auto;
  padding-top: 25px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  color: #000000;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .inline-privacy-policy-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* リキャプチャ */
.contact-recaptcha-wrap {
  margin: 30px auto 0;
  display: table;
}

.bold {
  font-weight: bold !important;
}

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}

.t-left {
  text-align: left !important;
}

.w100 {
  width: 100% !important;
}

.f12 {
  font-size: 12px !important;
}

.f13 {
  font-size: 13px !important;
}

.f14 {
  font-size: 14px !important;
}

.f15 {
  font-size: 15px !important;
}

.mt00 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

/************************************************

PC layout

************************************************/
/* =========================================
  base  PC
========================================= */
body {
  /* fontはcmn-txtに合わせる */
  width: 100%;
  min-width: 1100px;
  margin: auto;
  color: #000000;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* safariの自動CSSを打ち消す */
* {
  -webkit-appearance: none;
}

.disable-auto-tel a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

.sec-inner,
.bread-inner {
  width: 1080px;
  max-width: 100%;
  margin: auto;
}

.sec-inner.md,
.bread-inner.md {
  width: 1280px;
}

.sp-only, .middle-only {
  display: none !important;
}

/*	parts  PC
------------------------------------ */
.br {
  display: inline-block;
}

.cmn-txt,
#privacy .txt-box,
form p {
  font-family: "Noto sans Regular", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  line-height: 2.1875;
}

@media screen and (max-width: 767px) {
  .cmn-txt,
  #privacy .txt-box,
  form p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.ofj {
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/*--- cmn-btn  PC----*/
.cmn-btn {
  display: inline-block;
  width: 100%;
  max-width: 255px;
  height: 48px;
  padding-right: 25px;
  border-radius: 24px;
  border: 1px solid #ed7683;
  line-height: 48px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.cmn-btn-wrap {
  text-align: center;
}

.cmn-btn:hover {
  border-color: #e95464;
  background: #e95464;
}

.cmn-btn:hover .cmn-btn-txt {
  color: #fff;
}

.cmn-btn::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: auto;
  background: url(../img/top/cmn-btn-arrow.png) no-repeat center/contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 15px;
}

.cmn-btn-txt {
  color: #e95464;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto sans Regular", sans-serif;
  letter-spacing: .06em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .cmn-btn-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*--- cmn-table  PC ----*/
.cmn-table {
  width: 100%;
  max-width: 435px;
}

.cmn-table tr:nth-of-type(n+2) {
  border-top: 1px solid #e95464;
}

.cmn-table th, .cmn-table td {
  padding: 20px 0;
  text-align: left;
  font-family: "Noto serif Regular", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  line-height: 1.875;
  color: #000;
}

@media screen and (max-width: 767px) {
  .cmn-table th, .cmn-table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.cmn-table th {
  width: 200px;
}

/*	heading  PC
------------------------------------ */
.head-type01 {
  font-family: "Noto sans Regular", sans-serif;
  font-size: 35px;
  font-size: 3.5rem;
  letter-spacing: .06em;
  color: #000000;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  .head-type01 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.head-type01-accent {
  color: #e95464;
}

.head-type02 {
  text-align: center;
}

.head-type02-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 35px;
  font-size: 3.5rem;
  letter-spacing: .06em;
  line-height: 1.42;
  color: #e95464;
  word-break: keep-all;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .head-type02-txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.head-type02-txt::before, .head-type02-txt::after {
  content: '';
  display: inline-block;
  width: 160px;
  height: 2px;
  background: #e95464;
}

.head-type03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .06em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .head-type03 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.head-type03::before, .head-type03::after {
  content: '';
  display: inline-block;
  width: 17px;
  height: 28px;
}

.head-type03::before {
  margin-right: 18px;
  background: url(../img/concept/head03-left.png) no-repeat center/contain;
}

.head-type03::after {
  margin-left: 18px;
  background: url(../img/concept/head03-right.png) no-repeat center/contain;
}

.head-type03.t-center {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.head-type04 {
  padding-bottom: 14px;
  color: #e95464;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: .06em;
  border-bottom: 2px solid #e95464;
}

@media screen and (max-width: 767px) {
  .head-type04 {
    font-size: 20px;
    font-size: 2rem;
  }
}

/*	pagetop  PC
------------------------------------ */
.fixed {
  display: block;
  text-align: center;
  position: fixed;
  right: 0;
  bottom: 20px;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
  z-index: 20;
}

.side-btn {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.side-btn:hover {
  opacity: .7;
}

.side-tel {
  margin-top: 15px;
}

.dis-none {
  visibility: hidden;
  opacity: 0;
}

.top-btn {
  display: inline-block;
  margin: 20px auto 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}

.top-btn:hover {
  opacity: .7;
}

/*	breadcrumb  PC
------------------------------------ */
.breadcrumb li {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto sans Regular", sans-serif;
  color: #000000;
}

@media screen and (max-width: 767px) {
  .breadcrumb li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.bread-inner {
  position: relative;
}

.breadcrumb a {
  display: contents;
  color: #000000;
  font-family: "Noto sans Regular", sans-serif;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: .7;
}

.breadcrumb .fle {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 99;
  position: absolute;
  top: 10px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .breadcrumb .fle {
    max-width: 1080px;
  }
}

.breadcrumb .fle li:not(:first-child)::before {
  content: '>';
  padding: 0 5px;
  font-family: "Noto sans Regular", sans-serif;
}

/*	pagenation  PC
------------------------------------ */
.pagenation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 50px;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagenation li a {
  width: 100%;
  height: inherit;
  color: #000000;
  line-height: 57px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .pagenation li a {
    line-height: 36px;
  }
}

.pagenation li {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid #e95464;
  background: #fff;
  line-height: 60px;
  position: relative;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 767px) {
  .pagenation li {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.pagenation li a, .pagenation li span {
  display: inline-block;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .pagenation li a, .pagenation li span {
    font-size: 20px;
    font-size: 2rem;
  }
}

.pagenation li:hover {
  background: #e95464;
}

.pagenation li:hover a, .pagenation li:hover span {
  color: #fff;
  opacity: 1;
}

.pagenation li:hover .pagenation-arrow.back::before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.pagenation li:hover .pagenation-arrow.next::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.pagenation li + li {
  margin-left: 20px;
}

.pagenation-arrow.back::before,
.pagenation-arrow.next::before {
  content: "";
  width: 5px;
  height: 5px;
  margin: auto;
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3px;
  right: 0;
}

.pagenation-arrow.back::before {
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.pagenation-arrow.next::before {
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pagenation .current {
  background: #e95464;
  color: #fff;
}

.pagenation .current span {
  color: #fff;
}

/*	detail pagenation  PC
------------------------------------ */
.pagenation-inner {
  width: 100%;
  margin: 50px auto 0;
}

.data-nav {
  position: relative;
  text-align: center;
}

.data-nav a {
  display: inline-block;
  height: 50px;
  background: #e95464;
  line-height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.data-nav a:hover {
  opacity: .7;
}

.to-works-btn {
  width: 100%;
  max-width: 250px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto sans Medium", sans-serif;
  letter-spacing: .08em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .to-works-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.arrow-btn {
  width: 50px;
  position: absolute;
  top: 0;
}

.arrow-btn::before {
  content: '';
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .arrow-btn::before {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.back-btn {
  left: 0;
}

.back-btn::before {
  content: '<';
}

.next-btn {
  right: 0;
}

.next-btn::before {
  content: '>';
}

/*	ggmap  PC
------------------------------------ */
.ggmap {
  width: 100%;
  height: 0;
  padding-top: 300px;
  position: relative;
}

.ggmap iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/*	s-top  PC
------------------------------------ */
.s-top-box {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .s-top-box:nth-of-type(2n) {
    border-left: 2px solid #e95464;
  }
  .s-top-box:nth-of-type(n+3) {
    border-top: 2px solid #e95464;
  }
}

.s-top-logo {
  height: 100%;
  position: relative;
}

.s-top-logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: auto;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.s-top-logo-link:hover {
  opacity: .7;
}

@media screen and (min-width: 768px) and (max-width: 1500px) {
  .s-top-logo-link {
    width: 63%;
  }
}

.s-top-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 165px 0;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.s-top-link:hover {
  opacity: .7;
}

.s-top-link::before {
  content: '';
  display: inline-block;
  width: 104px;
  height: 28px;
  background: url(../img/s-top/arrow.png) no-repeat center/contain;
  position: absolute;
  bottom: 12px;
  right: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.s-top-link:hover::before {
  right: 0;
}

.s-top-link01 {
  background: url(../img/s-top/img01.jpg) no-repeat center/cover;
}

.s-top-link02 {
  background: url(../img/s-top/img02.jpg) no-repeat center/cover;
}

.s-top-link03 {
  background: url(../img/s-top/img03.jpg) no-repeat center/cover;
}

@media screen and (min-width: 768px) {
  .s-top-link {
    font-size: 100%;
  }
}

.s-top-ttl {
  display: inline-block;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  color: #fff;
  letter-spacing: .06em;
  line-height: 1.33;
}

@media screen and (max-width: 767px) {
  .s-top-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1500px) {
  .s-top-ttl {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1500px) and (max-width: 767px) {
  .s-top-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .s-top-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) and (max-width: 767px) {
  .s-top-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.s-top-ttl-border {
  padding: 10px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.s-top-ttl-box {
  display: inline-block;
  margin: 0;
  background: rgba(229, 85, 85, 0.8);
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 768px) {
  .s-top-ttl-box {
    width: 712px;
    max-width: 90%;
    padding: 13px 20px;
  }
}

@media screen and (min-width: 768px) {
  .s-top-ttl-box-sm {
    width: 600px;
    padding: 13px 40px;
  }
}

/* =========================================
  header  PC
========================================= */
/*	headline  PC
------------------------------------ */
.headline {
  padding: 22px 20px 14px 33px;
  border-bottom: 1px solid #ed7683;
  position: relative;
}

.headline-right {
  width: 100%;
  max-width: 700px;
}

.top .logo, .sub .logo {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.top .logo:hover, .sub .logo:hover {
  opacity: .7;
}

.seo-txt {
  text-align: right;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: #000000;
  position: absolute;
  top: 6px;
  right: 15px;
}

@media screen and (max-width: 767px) {
  .seo-txt {
    font-size: 10px;
    font-size: 1rem;
  }
}

.info-tel {
  font-family: "Noto sans Bold", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .06em;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .info-tel {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.info-tel:hover {
  opacity: .7;
}

.info-btn {
  max-width: 313px;
  margin-left: 20px;
}

.info-btn .cmn-btn-txt {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .info-btn .cmn-btn-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*	mv  PC
------------------------------------ */
.mv {
  width: 100%;
  height: 700px;
  background: url(../img/top/mv.jpg) no-repeat center/cover;
  position: relative;
}

.mv-catch-wrap {
  position: absolute;
  top: 317px;
  left: 9.895%;
}

.mv-catch02 {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 10px 5px 25px;
  background: #e95464;
  text-align: center;
  -webkit-box-shadow: 3px 3px #fff;
          box-shadow: 3px 3px #fff;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .06em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .mv-catch02 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/*	gnav  PC
------------------------------------ */
.gnav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .gnav-item:nth-of-type(n+2) {
    margin-left: 33px;
    padding-left: 32px;
    position: relative;
  }
  .gnav-item:nth-of-type(n+2)::before {
    content: '';
    width: 5px;
    height: 5px;
    margin: auto;
    border-radius: 50%;
    background: #e95464;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}

.gnav-link {
  font-family: "Noto sans Regular", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .gnav-link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.gnav-link:hover {
  opacity: .7;
}

/* =========================================
  footer  PC
========================================= */
.s-top #footer .copyright {
  margin: auto;
  padding: 0;
  background: none;
}

.s-top #footer .copyright-txt, .s-top #footer .copyright-link {
  color: #000000;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Noto serif Regular", serif;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .s-top #footer .copyright-txt, .s-top #footer .copyright-link {
    font-size: 10px;
    font-size: 1rem;
  }
}

#footer .cmn-btn-txt {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  #footer .cmn-btn-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#footer .f-bg {
  background: #f7f7f7;
}

#footer .f-inner {
  padding: 43px 0 51px;
}

#footer .f-flex {
  margin: 30px auto 0;
}

#footer .f-left {
  max-width: 300px;
}

#footer .f-logo {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#footer .f-logo:hover {
  opacity: .7;
}

#footer .f-tel {
  display: inline-block;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: .06em;
  color: #000000;
}

@media screen and (max-width: 767px) {
  #footer .f-tel {
    font-size: 20px;
    font-size: 2rem;
  }
}

#footer .f-btn {
  max-width: 281px;
  margin-top: 20px;
  border-radius: 0;
}

#footer .f-btn::before {
  background-image: url(../img/top/f-btn-arrow.png);
  right: 8px;
}

@media screen and (min-width: 768px) {
  #footer .f-btn::before {
    width: 18px;
    height: 18px;
  }
}

#footer .f-btn:nth-of-type(n+2) {
  margin-top: 16px;
}

#footer .f-ico:nth-of-type(n+2) {
  margin-left: 43px;
}

#footer .f-ico-wrap {
  margin-top: 30px;
}

#footer .fnav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#footer .fnav-list:nth-of-type(n+2) {
  margin-left: 82px;
}

#footer .fnav-list .fnav-item:nth-of-type(n+2) {
  margin-top: 22px;
}

#footer .fnav-link {
  display: inline-block;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  #footer .fnav-link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#footer .fnav-link:hover {
  opacity: .7;
}

#footer .copyright {
  padding: 3px 0;
  background: #e95464;
  text-align: center;
}

#footer .copyright-txt, #footer .copyright-link {
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Noto serif Regular", serif;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  #footer .copyright-txt, #footer .copyright-link {
    font-size: 10px;
    font-size: 1rem;
  }
}

#footer .copyright-link {
  padding: 0 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#footer .copyright-link:hover {
  opacity: .7;
}

/* =========================================
  main  PC
========================================= */
/*	cmn parts  PC
------------------------------------ */
.sub-bg {
  position: relative;
  z-index: 1;
}

.sub-bg::before {
  content: '';
  display: inline-block;
  width: 49.47%;
  height: 100%;
  background: #f7f7f7;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/*	sec01  PC
------------------------------------ */
#sec01 .bg {
  position: relative;
  z-index: 1;
}

#sec01 .bg::before {
  content: '';
  display: inline-block;
  width: 49.791%;
  height: 100%;
  background: #f7f7f7;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

#sec01 .sec-inner {
  padding: 122px 0 104px;
  position: relative;
}

#sec01 .sec-inner::before {
  content: "rieko's office";
  font-family: "Noto sans Bold", sans-serif;
  font-size: 88px;
  font-size: 8.8rem;
  color: #f7f7f7;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  bottom: -6px;
  left: -7px;
  z-index: 1;
}

#sec01 .cmn-txt {
  margin-top: 30px;
  margin-left: 10px;
  padding-left: 20px;
  border-left: 1px solid #e95464;
}

#sec01 .cmn-btn-wrap {
  margin-top: 34px;
  text-align: left;
}

/*	sec02  PC
------------------------------------ */
#sec02 .sec-inner {
  width: 1152px;
  padding: 163px 0 134px;
}

#sec02 .box {
  padding: 59px 36px;
  background: #f7f7f7;
  position: relative;
}

#sec02 .head-type01 {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
}

#sec02 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#sec02 .list-item {
  width: 25%;
  height: 248px;
  position: relative;
}

@media screen and (min-width: 768px) {
  #sec02 .list-item:not(:nth-of-type(4n-3)) {
    border-left: 1px solid #e95464;
  }
  #sec02 .list-item:nth-of-type(n+5) {
    border-top: 1px solid #e95464;
  }
}

#sec02 .list-ico {
  margin: auto;
  text-align: center;
  position: absolute;
  bottom: 108px;
  left: 0;
  right: 0;
}

#sec02 .list-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 63px;
  margin: auto;
  text-align: center;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .06em;
  color: #000000;
  line-height: 1.5;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  #sec02 .list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*	sec03  PC
------------------------------------ */
#sec03 .bg {
  position: relative;
  z-index: 1;
}

#sec03 .bg::before, #sec03 .bg::after {
  content: '';
  display: inline-block;
  height: 528px;
  position: absolute;
  z-index: -1;
}

#sec03 .bg::before {
  width: 64%;
  background: #f7f7f7;
  top: 45px;
  left: 0;
}

#sec03 .bg::after {
  width: 36.66%;
  background: #f8cacf;
  top: 0;
  right: 0;
}

#sec03 .sec-inner {
  padding: 15px 0 0;
}

#sec03 .flex {
  margin: 14px auto 0;
}

#sec03 .flex-txt-box {
  width: 100%;
  max-width: 530px;
  padding-top: 45px;
}

#sec03 .flex-ttl {
  position: relative;
  z-index: 1;
}

#sec03 .flex-ttl-txt {
  display: inline-block;
  padding-right: 12px;
  background: #f7f7f7;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: .06em;
  line-height: 1;
  color: #e95464;
}

@media screen and (max-width: 767px) {
  #sec03 .flex-ttl-txt {
    font-size: 20px;
    font-size: 2rem;
  }
}

#sec03 .flex-ttl::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  margin: auto;
  background: #000000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

#sec03 .flex-figure {
  -webkit-box-shadow: 10px 10px #e95464;
          box-shadow: 10px 10px #e95464;
}

#sec03 .cmn-txt {
  margin-top: 15px;
}

#sec03 .cmn-btn-wrap {
  margin-top: 40px;
  text-align: right;
}

#sec03 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 172px;
  margin: 71px auto 0;
  background: #f7e1e3;
}

#sec03 .list-item {
  width: 33%;
  position: relative;
  z-index: 1;
}

#sec03 .list-item:nth-of-type(2)::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: auto;
  background: #f8cacf;
  -webkit-transform: skewX(-16deg);
          transform: skewX(-16deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

#sec03 .list-item:nth-of-type(3) .list-ico {
  bottom: 102px;
}

#sec03 .list-ico {
  margin: auto;
  text-align: center;
  position: absolute;
  bottom: 108px;
  left: 0;
  right: 0;
}

#sec03 .list-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 65px;
  text-align: center;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .06em;
  line-height: 1.875;
  color: #000000;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  #sec03 .list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*	voice  PC
------------------------------------ */
#voice .sec-inner {
  padding: 147px 0 188px;
}

#voice .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 34px auto 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#voice .list-item {
  width: 100%;
  max-width: 530px;
  padding: 25px 22px 35px;
  background: #f7f7f7;
}

#voice .list-item:nth-of-type(n+3) {
  margin-top: 20px;
}

#voice .list-ttl {
  padding-bottom: 7px;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .06em;
  color: #000000;
  border-bottom: 1px solid #e95464;
}

@media screen and (max-width: 767px) {
  #voice .list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#voice .list-txt {
  white-space: pre-line;
}

/*	cmn-contact  PC
------------------------------------ */
.cmn-contact {
  border-top: 1px solid #e95464;
  border-bottom: 1px solid #e95464;
  background: url(../img/top/cmn-contact-bg.jpg) no-repeat center/cover;
}

.cmn-contact-inner {
  padding: 70px 0 84px;
  text-align: center;
}

.cmn-contact-tel {
  display: inline-block;
  margin-top: 35px;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .06em;
  color: #000000;
}

@media screen and (max-width: 767px) {
  .cmn-contact-tel {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.cmn-contact .cmn-btn {
  max-width: 296px;
  background: #fff;
}

.cmn-contact .cmn-btn:hover {
  background: #e95464;
}

.cmn-contact .cmn-btn:nth-of-type(n+2) {
  margin-left: 20px;
}

.cmn-contact .cmn-btn-wrap {
  margin: 45px auto 0;
}

.cmn-contact-ico {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cmn-contact-ico:hover {
  opacity: .7;
}

.cmn-contact-ico:nth-of-type(n+2) {
  margin-left: 53px;
}

.cmn-contact-ico-wrap {
  margin: 37px auto 0;
}

/*	bnr  PC
------------------------------------ */
.bnr {
  background: #f7f7f7;
}

.bnr-inner {
  padding: 72px 0;
}

.bnr .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bnr .list-item {
  width: 100%;
  max-width: 346px;
}

.bnr .list-item:nth-of-type(1) .list-link {
  background: url(../img/top/bnr01.jpg) no-repeat center/cover;
}

.bnr .list-item:nth-of-type(2) .list-link {
  background: url(../img/top/bnr02.jpg) no-repeat center/cover;
}

.bnr .list-item:nth-of-type(3) .list-link {
  background: url(../img/top/bnr03.jpg) no-repeat center/cover;
}

.bnr .list-link {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 63.583%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bnr .list-link:hover {
  opacity: .7;
}

.bnr .list-link::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.bnr .list-link::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 23px;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.bnr .list-link:hover::after {
  height: 15px;
}

.bnr .list-ttl {
  text-align: center;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .06em;
  color: #fff;
  position: absolute;
  top: 95px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .bnr .list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*	blog  PC
------------------------------------ */
#blog .bg {
  background: #f8cacf;
}

#blog .md-inner {
  width: 95%;
  max-width: 1507px;
  margin: auto;
  background: #fff;
}

#blog .sec-inner {
  max-width: 95%;
  padding: 82px 0;
}

#blog .list {
  width: 100%;
  max-width: 783px;
  margin: 25px auto 0;
}

#blog .list-item {
  border-left: 10px solid #e95464;
}

#blog .list-item:nth-of-type(n+2) {
  margin-top: 15px;
}

#blog .list-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 17px 20px;
  background: #f7f7f7;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#blog .list-link:hover {
  background: #dbd7d7;
}

#blog .list-time {
  font-family: "Noto sans Bold", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #000000;
}

@media screen and (max-width: 767px) {
  #blog .list-time {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#blog .list-ttl {
  margin-left: 45px;
  color: #000000;
  line-height: 2.1875;
}

/* =========================================
  sub  PC
========================================= */
/*	sub headline  PC
------------------------------------ */
/*	sub mv  PC
------------------------------------ */
.sub .mv {
  height: 326px;
  background: url(../img/sub/sv.jpg) no-repeat center/cover;
  position: relative;
}

.sub-catch {
  margin: auto;
  text-align: center;
  font-size: 35px;
  font-size: 3.5rem;
  letter-spacing: .06em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 140px;
}

@media screen and (max-width: 767px) {
  .sub-catch {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.sub-catch::first-letter {
  color: #e95464;
}

.sub-catch::after {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  background: #e95464;
  margin: 7px auto 0;
}

/*	privacy  PC
------------------------------------ */
#privacy .sec-inner {
  padding: 0 0 50px;
}

#privacy .head-type03 {
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (max-width: 767px) {
  #privacy .head-type03 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#privacy .sec01 .sec-inner {
  padding: 100px 0 50px;
}

#privacy .txt-box {
  margin-top: 20px;
}

#privacy .section:last-of-type {
  padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .sub.privacy .catch-wrap {
    left: 19.5%;
  }
  .sub.privacy .catch-txt::before {
    left: 53px;
  }
  .sub.privacy .catch-txt::after {
    right: 153px;
  }
}

/*	site  PCSP
------------------------------------ */
#site .sec-inner {
  width: 800px;
  margin: auto;
  padding: 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #site .sec-inner {
    padding: 50px 15px;
  }
}

#site .site-li {
  border-bottom: 1px solid #000000;
}

#site .site-link {
  display: block;
  padding: 15px 2%;
  color: #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#site .site-link:hover {
  opacity: .7;
}

/*	e404  PCSP
------------------------------------ */
#e404 .sec-inner {
  padding: 90px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#e404 .top {
  display: contents;
  color: #000000;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#e404 .top:hover {
  opacity: .7;
}

#e404 .section-content {
  text-align: center;
}

@media screen and (max-width: 767px) {
  #e404 .sec-inner {
    padding: 50px 20px 100px;
  }
  #e404 .section-content {
    margin-top: 0;
  }
}

/*	concept  PC
------------------------------------ */
#concept .sec01 .sec-inner {
  padding: 170px 0 185px;
}

#concept .sec01 .list {
  margin: 80px auto 0;
}

#concept .sec01 .list-item:nth-of-type(n+2) {
  margin-top: 90px;
}

#concept .sec01 .list-flex {
  margin: 23px auto 0;
}

#concept .sec01 .list-txt {
  max-width: 714px;
}

@media screen and (min-width: 768px) {
  #concept .sec01 .semi {
    margin: 160px auto 0 !important;
  }
}

#concept .sec01 .semi-ttl {
  text-align: center;
  position: relative;
  z-index: 1;
}

#concept .sec01 .semi-ttl::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  margin: auto;
  background: #e95464;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#concept .sec01 .semi-ttl-txt {
  display: inline-block;
  padding: 5px 45px;
  background: url(../img/concept/ttl-bg.png) no-repeat center/cover;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .06em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #concept .sec01 .semi-ttl-txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/*	consultation  PC
------------------------------------ */
#consultation .sub-bg::before {
  width: 44.0625%;
}

#consultation .sec01 .sec-inner {
  padding: 175px 0 135px;
}

#consultation .sec01 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 65px auto 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#consultation .sec01 .list-item {
  width: 346px;
  height: 346px;
  border-radius: 50%;
  border: 2px solid #e95464;
  background: #eeeeee;
  position: relative;
}

#consultation .sec01 .list-item:nth-of-type(1) .list-figure {
  bottom: 155px;
}

#consultation .sec01 .list-item:nth-of-type(2) .list-figure {
  bottom: 134px;
}

#consultation .sec01 .list-item:nth-of-type(3) .list-figure {
  bottom: 131px;
}

#consultation .sec01 .list-figure {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

#consultation .sec01 .list-ttl {
  text-align: center;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .06em;
  line-height: 1.5;
  color: #000000;
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  #consultation .sec01 .list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#consultation .sec01 .list-ttl::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  margin: 8px auto 0;
  border-bottom: 2px dotted #e95464;
}

#consultation .sec01 .cmn-txt {
  margin: 15px auto 0;
}

@media screen and (min-width: 768px) {
  #consultation .sec01 .cmn-txt {
    padding-left: 70px;
  }
}

#consultation .sec01 .cmn-txt-box::before {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  margin: 34px auto 0;
  padding-top: 4.38%;
  background: url(../img/consoultation/sec01-border.png) no-repeat center/contain;
}

#consultation .sec02 .sec-inner {
  padding: 0 0 150px;
}

#consultation .sec02 .list {
  margin: 50px auto 0;
}

#consultation .sec02 .list-item {
  width: 100%;
  height: 270px;
  border-bottom: 2px solid #e95464;
  position: relative;
}

#consultation .sec02 .list-item::before {
  content: '';
  display: block;
  width: 20px;
  height: 15px;
  margin: auto;
  background: url(../img/consoultation/arrow.png) no-repeat 50% 0/contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
}

#consultation .sec02 .list-item:nth-of-type(n+2) {
  margin-top: 45px;
}

#consultation .sec02 .list-item:last-of-type {
  border: none;
}

#consultation .sec02 .list-item:last-of-type::before {
  content: none;
}

#consultation .sec02 .list-box {
  width: 100%;
  max-width: 715px;
  margin-left: auto;
}

#consultation .sec02 .list-num {
  font-size: 35px;
  font-size: 3.5rem;
  font-family: "Noto sans Bold", sans-serif;
  color: #e95464;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  #consultation .sec02 .list-num {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

#consultation .sec02 .list-num-txt {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "Noto sans Bold", sans-serif;
}

@media screen and (max-width: 767px) {
  #consultation .sec02 .list-num-txt {
    font-size: 20px;
    font-size: 2rem;
  }
}

#consultation .sec02 .list-ttl {
  margin-top: 15px;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  #consultation .sec02 .list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#consultation .sec02 .list-txt {
  margin-top: 16px;
}

#consultation .sec02 .list-figure {
  position: absolute;
  top: 0;
  left: 0;
}

#consultation .sec03 .sec-inner {
  padding: 0 0 185px;
}

#consultation .sec03 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 43px auto 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#consultation .sec03 .list-item {
  width: 255px;
  height: 255px;
  padding: 17px;
  background: #f4d6da;
}

#consultation .sec03 .list-item:nth-of-type(2n) {
  background: #ededed;
}

#consultation .sec03 .list-ttl {
  border-bottom: 1px solid #000000;
}

#consultation .sec03 .list-txt {
  margin-top: 10px;
}

/*	counseling  PC
------------------------------------ */
#counseling .sub-bg::before {
  width: 44.0625%;
}

#counseling .head-type03 {
  font-size: 25px;
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  #counseling .head-type03 {
    font-size: 20px;
    font-size: 2rem;
  }
}

#counseling .sec01 .sec-inner {
  padding: 165px 0 101px;
}

#counseling .sec01 .box {
  margin: 37px auto 0;
  padding: 25px 40px 63px;
  background: rgba(233, 84, 100, 0.2);
  position: relative;
}

#counseling .sec01 .box-ttl {
  padding-bottom: 4px;
  border-bottom: 2px solid #e95464;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .06em;
  color: #e95464;
  position: relative;
}

@media screen and (max-width: 767px) {
  #counseling .sec01 .box-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#counseling .sec01 .box-ttl::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 2px;
  background: #e95464;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  bottom: 3px;
  right: 0;
}

#counseling .sec01 .box-wrap {
  max-width: 485px;
}

#counseling .sec01 .box-figure {
  position: absolute;
  top: 8px;
  right: 74px;
}

#counseling .sec01 .box-txt {
  margin-top: 20px;
}

#counseling .sec01 .box-txt.mt {
  margin-top: 32px;
}

#counseling .sec01 .cmn-btn {
  max-width: 345px;
}

#counseling .sec01 .cmn-btn-wrap {
  margin: 75px auto 0;
}

#counseling .sec02 .sec-inner {
  padding: 0 0 83px;
}

#counseling .sec02 .flex {
  margin: 53px auto 0;
}

#counseling .sec02 .flex-txt:nth-of-type(n+2) {
  margin-top: 40px;
}

#counseling .sec02 .flex-txt-box {
  max-width: 710px;
}

#counseling .sec02 figure {
  -webkit-box-shadow: -10px 10px #e95464;
          box-shadow: -10px 10px #e95464;
}

#counseling .sec03 .sec-inner {
  padding: 0 0 157px;
}

#counseling .sec03 .list {
  margin: 45px auto 0;
}

#counseling .sec03 .list-item:nth-of-type(n+2) {
  margin-top: 44px;
}

#counseling .sec03 .list-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#counseling .sec03 .list-ttl::before, #counseling .sec03 .list-ttl::after {
  content: '';
  display: inline-block;
  height: 2px;
  background: #e95464;
}

#counseling .sec03 .list-ttl::before {
  width: 22px;
  margin-right: 7px;
}

#counseling .sec03 .list-ttl::after {
  width: 100%;
  margin-left: 7px;
}

#counseling .sec03 .list-ttl-txt {
  font-size: 20px;
  font-size: 2rem;
  font-family: "Noto sans Bold", sans-serif;
  letter-spacing: .06em;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  #counseling .sec03 .list-ttl-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#counseling .sec03 .list-txt {
  margin-top: 14px;
}

/*	qa  PC
------------------------------------ */
#qa .sec01 .sec-inner {
  padding: 146px 0 115px;
}

#qa .sec01 .list-item {
  border-bottom: 2px solid #e95464;
  padding-bottom: 45px;
}

#qa .sec01 .list-item:nth-of-type(n+2) {
  margin-top: 45px;
}

#qa .sec01 .list-item:last-of-type {
  border-bottom: none;
}

#qa .sec01 .list-txt {
  padding: 10px 80px;
  white-space: pre-line;
  position: relative;
}

#qa .sec01 .list-txt::before {
  content: '';
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 42px;
  border-radius: 50%;
  border: 2px solid #e95464;
  text-align: center;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  #qa .sec01 .list-txt::before {
    font-size: 20px;
    font-size: 2rem;
  }
}

#qa .sec01 .list-q::before {
  content: 'Q';
  background: #e95464;
  color: #fff;
}

#qa .sec01 .list-a {
  margin-top: 30px;
}

#qa .sec01 .list-a::before {
  content: 'A';
  background: #fff;
  color: #e95464;
}

/*	about  PC
------------------------------------ */
#about .sub-bg::before {
  width: 44.01%;
}

#about .sec01 .sec-inner {
  padding: 155px 0 94px;
}

#about .sec01 .head-type03 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#about .sec01 .img {
  margin: 50px auto 0;
  text-align: center;
}

#about .sec01 .name {
  margin: 60px auto 0;
  text-align: center;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: .06em;
  line-height: 1;
  color: #e95464;
}

@media screen and (max-width: 767px) {
  #about .sec01 .name {
    font-size: 20px;
    font-size: 2rem;
  }
}

#about .sec01 .name-sm {
  display: block;
  margin: 10px auto 0;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000000;
}

@media screen and (max-width: 767px) {
  #about .sec01 .name-sm {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#about .sec01 .wrap {
  max-width: 940px;
  margin: 18px auto 0;
}

#about .sec01 .box {
  margin: 38px auto 0;
  border: 2px solid #e95464;
  padding: 27px 0;
  text-align: center;
  position: relative;
}

#about .sec01 .box-ttl {
  display: inline-block;
  padding: 7px 27px;
  background: #e95464;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .06em;
  color: #fff;
  position: absolute;
  top: -25px;
  left: 18px;
}

@media screen and (max-width: 767px) {
  #about .sec01 .box-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#about .sec02 .sec-inner {
  padding: 0 0 160px;
}

#about .sec02 .head-type03 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#about .sec02 .table {
  width: 100%;
  max-width: 478px;
  margin: 30px auto 0;
}

#about .sec02 .table th, #about .sec02 .table td {
  padding: 25px 0 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  font-family: "Noto sans Regular", sans-serif;
}

@media screen and (max-width: 767px) {
  #about .sec02 .table th, #about .sec02 .table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#about .sec02 .table th {
  width: 124px;
  padding-left: 18px;
  color: #e95464;
  border-bottom: 2px solid #e95464;
}

#about .sec02 .table td {
  padding-left: 62px;
  border-bottom: 2px solid #000000;
}

/*	contact  PC
------------------------------------ */
#contact .sub-bg::before {
  width: 44.0625%;
}

#contact .sec01 .sec-inner {
  padding: 170px 0 110px;
}

#contact .sec01 .box {
  margin: 38px auto 0;
}

#contact .sec01 .box-txt {
  margin: 15px auto 0;
}

#contact .sec01 .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 346px;
  margin: auto;
  padding: 0 15px 15px;
  border-bottom: 2px solid #e95464;
  line-height: 1;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 35px;
  font-size: 3.5rem;
  letter-spacing: .06em;
  color: #000000;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  #contact .sec01 .tel {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

#contact .sec01 .tel::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 26px;
  margin-right: 16px;
  background: url(../img/contact/tel-ico.png) no-repeat center/contain;
}

#contact .sec02 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 750px;
  margin: 55px auto 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#contact .sec02 .list-item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #contact .sec02 .list-item {
    max-width: 351px;
  }
  #contact .sec02 .list-item:nth-of-type(2n) {
    margin-left: 40px;
  }
  #contact .sec02 .list-item:nth-of-type(n+3) {
    margin-top: 35px;
  }
}

#contact .sec02 .cmn-btn {
  max-width: 351px;
  height: 68px;
  padding: 0;
  border-radius: 35px;
  line-height: 65px;
}

#contact .sec02 .cmn-btn-txt {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  #contact .sec02 .cmn-btn-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#contact .sec02 .cmn-btn::after {
  content: '';
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
}

#contact .sec02 .line {
  padding-left: 40px;
}

#contact .sec02 .line::after {
  width: 48px;
  height: 48px;
  background: url(../img/contact/line.png) no-repeat center/contain;
}

#contact .sec02 .insta::after {
  width: 47px;
  height: 48px;
  background: url(../img/contact/insta.png) no-repeat center/contain;
}

#contact .sec02 .fb::after {
  width: 47px;
  height: 45px;
  background: url(../img/contact/fb.png) no-repeat center/contain;
}

#contact .sec02 .tw::after {
  width: 58px;
  height: 47px;
  background: url(../img/contact/tw.png) no-repeat center/contain;
}

#contact .sec03 .sec-inner {
  padding: 120px 0 163px;
}

/*	sub blog  Pc
------------------------------------ */
.sub #blog .sec-inner {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .sub #blog .sec-inner {
    padding: 100px 0;
  }
}

@media screen and (min-width: 768px) {
  .sub #blog .list {
    margin: 50px auto 0;
  }
}

.sub #blog .detail-txt-wrap {
  margin: 20px auto 0;
}

.sub #blog .detail .list-time {
  font-family: "Noto sans Regular", sans-serif;
}

/************************************************

  SP layout

************************************************/
@media screen and (max-width: 767px) {
  /* =========================================
  base  SP
========================================= */
  body {
    min-width: 320px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  body.active {
    /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  /*	parts  SP
------------------------------------ */
  .sec-inner,
  .bread-inner,
  .middle-inner,
  .lg-inner
.sec-inner.md {
    width: 100% !important;
  }
  /* ---- cmn-btn  SP ---- */
  .cmn-btn {
    height: 50px;
    line-height: 50px;
    padding-right: 4px;
  }
  .cmn-btn::before {
    width: 20px;
    height: 20px;
  }
  /* ---- cmn-table  SP ---- */
  table.cmn-table {
    width: 100%;
    max-width: 425px;
    margin: auto;
  }
  table.cmn-table tr {
    width: 100%;
  }
  table.cmn-table tr:nth-of-type(n+2) th {
    padding-top: 10px;
  }
  table.cmn-table tr:nth-of-type(n+2) td {
    padding-top: 0;
  }
  table.cmn-table th, table.cmn-table td {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 10px;
    text-align: left;
    line-height: 2;
  }
  table.cmn-table th {
    padding-bottom: 0;
  }
  table.cmn-table td {
    padding-top: 0;
    background: none !important;
  }
  table.cmn-table .th-txt {
    width: 100px;
  }
  /*	heading  SP
------------------------------------ */
  .head-type01-accent {
    display: inline-block;
  }
  .head-type02-txt::before, .head-type02-txt::after {
    width: 15%;
  }
  .head-type03 {
    font-size: 19px;
    font-size: 1.9rem;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .head-type03::before, .head-type03::after {
    width: 11px;
    height: 23px;
  }
  /*	pagetop  SP
------------------------------------ */
  .fixed {
    max-width: 100px;
    right: 5px;
    bottom: 10px;
    text-align: right;
  }
  .top-btn {
    max-width: 50px;
  }
  /*	pagenation  SP
------------------------------------ */
  .pagenation-inner {
    margin-top: 30px;
  }
  .to-works-btn {
    max-width: 150px;
  }
  /* =========================================
  header  SP
========================================= */
  /*	s-top  SP
------------------------------------ */
  .s-top-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .s-top-box {
    width: 100%;
    border-bottom: 2px solid #e95464;
    position: relative;
  }
  .s-top-box-link {
    height: auto;
    padding: 0;
  }
  .s-top-logo {
    width: 300px;
    margin: auto;
    padding: 25px;
    position: static;
  }
  .s-top-logo-link {
    width: 80%;
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .s-top-link {
    padding: 17% 15px;
  }
  .s-top-link::before {
    width: 50px;
    height: 15px;
    bottom: 10px;
    right: 10px;
  }
  .s-top-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .s-top-ttl-box {
    max-width: 94%;
    padding: 10px 15px;
  }
  /*	gnav  SP
------------------------------------ */
  #gnav {
    visibility: hidden;
    width: 100%;
    height: 100%;
    margin: auto;
    background: #ed7683;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    overflow-y: scroll;
  }
  #gnav.active {
    display: block;
    visibility: visible;
    z-index: 1000;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    opacity: 1;
  }
  #gnav .gnav-list {
    display: block;
    max-width: 1000px;
    height: 100%;
    margin: auto;
    padding: 55px 15px 0;
    top: auto;
  }
  #gnav .gnav-item {
    display: block;
    width: 100%;
    margin: auto;
    border-bottom: 1px solid #fff;
  }
  #gnav .gnav-item:nth-of-type(n+2) {
    border-left: none;
  }
  #gnav .gnav-link {
    display: block;
    padding: 10px 5px;
    font-size: 15px;
    font-size: 1.5rem;
    color: #fff;
  }
  #gnav .gnav-link::before {
    content: '・';
  }
  #gnav .info-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 30px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #gnav .info-btn {
    margin: 20px auto 0;
    background: #fff;
  }
  #gnav .cmn-btn-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
  /*	sp menu btn  SP
------------------------------------ */
  #sp-menu-btn {
    display: block;
    position: fixed;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    background: #e95464;
    z-index: 1010;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
  }
  #sp-menu-btn:hover {
    cursor: pointer;
    opacity: .8;
  }
  #sp-menu-btn.active .top {
    -webkit-transform: translateY(10px) translateX(-1px) rotate(45deg);
            transform: translateY(10px) translateX(-1px) rotate(45deg);
  }
  #sp-menu-btn.active .middle {
    opacity: 0;
  }
  #sp-menu-btn.active .bottom {
    -webkit-transform: translateY(-11px) translateX(-1px) rotate(-45deg);
            transform: translateY(-11px) translateX(-1px) rotate(-45deg);
  }
  #sp-menu-btn.active span::before {
    content: none;
  }
  #sp-menu-btn span {
    width: 30px;
    height: 2px;
    margin: auto;
    border: none;
    background: #fff;
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
  }
  #sp-menu-btn .middle {
    top: 0;
    bottom: 0;
  }
  #sp-menu-btn .bottom {
    top: 35px;
  }
  /*	headline  SP
------------------------------------ */
  .headline {
    padding: 0;
    position: relative;
  }
  .logo {
    width: 100px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
  }
  /*	mv  SP
------------------------------------ */
  .mv {
    height: 350px;
  }
  .mv-catch-wrap {
    width: 96%;
    top: auto;
    bottom: 50px;
    left: 10px;
  }
  .mv-catch-wrap img {
    height: 30px;
  }
  .mv-catch02 {
    display: block;
    width: 95%;
    max-width: 300px;
    padding: 10px;
  }
  /*	ggmap  SP
------------------------------------ */
  .ggmap {
    padding-top: 300px;
  }
  /* =========================================
  footer  SP
========================================= */
  #footer .f-logo {
    width: 100px;
  }
  #footer .f-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .f-left {
    text-align: center;
  }
  #footer .f-btn {
    padding-right: 30px;
  }
  #footer .fnav {
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #footer .fnav-list:nth-of-type(n+2) {
    margin: 15px 0 0;
  }
  #footer .fnav-list .fnav-item:nth-of-type(n+2) {
    margin-top: 15px;
  }
  #footer .copyright {
    text-align: center;
    padding: 7px 0;
  }
  #footer .copyright-txt, #footer .copyright-link {
    font-size: 10px;
    font-size: 1rem;
  }
  /* =========================================
  main  SP
========================================= */
  /*	headline  SP
------------------------------------ */
  /*	cmn parts  SP
------------------------------------ */
  /*	sec01  SP
------------------------------------ */
  #sec01 .sec-inner {
    padding: 50px 15px;
  }
  #sec01 .sec-inner::before {
    font-size: 30px;
    font-size: 3rem;
    bottom: 0;
    left: 0;
  }
  #sec01 .cmn-txt {
    margin-left: 5px;
    padding-left: 10px;
  }
  #sec01 .cmn-btn-wrap {
    text-align: center;
  }
  /*	sec02  SP
------------------------------------ */
  #sec02 .sec-inner {
    padding: 50px 15px;
  }
  #sec02 .box {
    max-width: 440px;
    margin: auto;
    padding: 40px 15px 20px;
  }
  #sec02 .head-type01 {
    top: -20px;
  }
  #sec02 .list-item {
    height: 164px;
    width: 50%;
  }
  #sec02 .list-item:nth-of-type(2n) {
    border-left: 1px solid #e95464;
  }
  #sec02 .list-item:nth-of-type(n+3) {
    border-top: 1px solid #e95464;
  }
  #sec02 .list-ico {
    bottom: 82px;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  #sec02 .list-ttl {
    height: 65px;
    bottom: 17px;
  }
  /*	sec03  SP
------------------------------------ */
  #sec03 .bg::before, #sec03 .bg::after {
    height: 18%;
  }
  #sec03 .bg::before {
    width: 100%;
    top: 20px;
  }
  #sec03 .sec-inner {
    padding: 50px 15px;
  }
  #sec03 .flex {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #sec03 .flex-ttl-txt {
    background: #fff;
  }
  #sec03 .flex-figure {
    -webkit-box-shadow: 5px 5px #e95464;
            box-shadow: 5px 5px #e95464;
  }
  #sec03 .cmn-btn-wrap {
    text-align: center;
  }
  #sec03 .list {
    height: auto;
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #sec03 .list-item {
    width: 100%;
    padding: 15px 15px 30px;
  }
  #sec03 .list-item:nth-of-type(2)::before {
    -webkit-transform: skewY(0);
            transform: skewY(0);
  }
  #sec03 .list-item:nth-of-type(3) {
    padding-top: 5px;
  }
  #sec03 .list-ico {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    position: static;
  }
  #sec03 .list-ttl {
    height: auto;
    position: static;
  }
  /*	voice  SP
------------------------------------ */
  #voice .sec-inner {
    padding: 50px 15px;
  }
  #voice .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #voice .list-item {
    padding: 20px 15px;
  }
  #voice .list-item:nth-of-type(n+2) {
    margin-top: 20px;
  }
  #voice .list-txt {
    margin-top: 5px;
  }
  /*	cmn-contact  SP
------------------------------------ */
  .cmn-contact-inner {
    padding: 50px 15px;
  }
  .cmn-contact-tel {
    margin-top: 20px;
  }
  .cmn-contact .cmn-btn:nth-of-type(n+2) {
    margin: 20px auto 0;
  }
  .cmn-contact .cmn-btn-wrap {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cmn-contact-ico:nth-of-type(n+2) {
    margin-left: 26px;
  }
  /*	bnr  SP
------------------------------------ */
  .bnr-inner {
    padding: 50px 15px;
  }
  .bnr .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bnr .list-item {
    max-width: 310px;
  }
  .bnr .list-item:nth-of-type(n+2) {
    margin-top: 20px;
  }
  /*	blog  SP
------------------------------------ */
  #blog .bg {
    padding: 10px 0;
  }
  #blog .md-inner {
    width: 100%;
  }
  #blog .sec-inner {
    max-width: 100%;
    padding: 50px 15px;
  }
  #blog .cmn-btn {
    margin: auto;
  }
  #blog .cmn-btn-wrap {
    text-align: center;
    margin: 50px auto 0;
  }
  #blog .list-item {
    border-left: none;
    border-bottom: 2px solid #e95464;
  }
  #blog .list-link {
    padding: 13px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #blog .list-ttl {
    width: 100%;
    margin: 10px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* =========================================
  sub  SP
========================================= */
  /*	sub headline  SP
------------------------------------ */
  .sub .logo {
    width: 60px;
  }
  /*	sub mv  SP
------------------------------------ */
  .sub .mv {
    height: 200px;
  }
  .sub-catch {
    top: 85px;
  }
  /*	privacy  SP
------------------------------------ */
  #privacy .section:last-of-type {
    padding-bottom: 50px;
  }
  #privacy .sec-inner {
    padding: 0 15px 30px;
  }
  #privacy .sec01 .sec-inner {
    padding: 60px 15px 30px;
  }
  #privacy .txt-box {
    margin-top: 15px;
  }
  /*	concept  SP
------------------------------------ */
  #concept .sec01 .sec-inner {
    padding: 50px 15px;
  }
  #concept .sec01 .list-item:nth-of-type(n+2) {
    margin-top: 30px;
  }
  #concept .sec01 .list-item.semi {
    margin-top: 80px;
  }
  #concept .sec01 .list-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #concept .sec01 .list-txt {
    margin-top: 15px;
  }
  #concept .sec01 .semi-ttl-txt {
    padding: 5px 20px;
  }
  /*	consultation  SP
------------------------------------ */
  #consultation .sec01 .sec-inner {
    padding: 50px 15px;
  }
  #consultation .sec01 .list {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #consultation .sec01 .list-item {
    width: 220px;
    height: 220px;
  }
  #consultation .sec01 .list-item:nth-of-type(n+2) {
    margin: 15px auto 0;
  }
  #consultation .sec01 .list-item:nth-of-type(1) .list-figure {
    bottom: 100px;
  }
  #consultation .sec01 .list-item:nth-of-type(2) .list-figure {
    bottom: 70px;
  }
  #consultation .sec01 .list-item:nth-of-type(3) .list-figure {
    bottom: 70px;
  }
  #consultation .sec01 .list-figure {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  #consultation .sec01 .list-ttl {
    bottom: 25px;
  }
  #consultation .sec02 .sec-inner {
    padding: 50px 15px;
  }
  #consultation .sec02 .list-item {
    height: auto;
    padding-bottom: 20px;
  }
  #consultation .sec02 .list-figure {
    margin: 15px auto 0;
    position: static;
    text-align: center;
  }
  #consultation .sec03 .sec-inner {
    padding: 50px 15px;
  }
  #consultation .sec03 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #consultation .sec03 .list-item {
    height: auto;
  }
  #consultation .sec03 .list-item:nth-of-type(n+2) {
    margin: 20px auto 0;
  }
  #consultation .sec03 .list-ttl {
    padding-bottom: 7px;
  }
  /*	counseling  SP
------------------------------------ */
  #counseling .sec01 .sec-inner {
    padding: 50px 15px;
  }
  #counseling .sec01 .box {
    margin-top: 20px;
    padding: 20px;
  }
  #counseling .sec01 .box-wrap {
    max-width: 100%;
  }
  #counseling .sec01 .box-figure {
    margin: 15px auto 0;
    text-align: center;
    position: static;
  }
  #counseling .sec01 .box-txt {
    margin-top: 20px;
  }
  #counseling .sec01 .box-txt:nth-of-type(n+2) {
    margin-top: 15px;
  }
  #counseling .sec01 .cmn-btn-wrap {
    margin-top: 30px;
  }
  #counseling .sec02 .sec-inner {
    padding: 50px 15px;
  }
  #counseling .sec02 .flex {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #counseling .sec02 .flex-txt:nth-of-type(n+2) {
    margin-top: 15px;
  }
  #counseling .sec02 .flex-txt-box {
    margin: 30px auto 0;
  }
  #counseling .sec03 .sec-inner {
    padding: 50px 15px;
  }
  #counseling .sec03 .list-item {
    overflow: hidden;
  }
  /*	qa  SP
------------------------------------ */
  #qa .sec01 .sec-inner {
    padding: 50px 15px;
  }
  #qa .sec01 .list-item {
    padding-bottom: 20px;
  }
  #qa .sec01 .list-item:nth-of-type(n+2) {
    margin-top: 20px;
  }
  #qa .sec01 .list-txt {
    padding: 0 0 0 40px;
  }
  #qa .sec01 .list-txt::before {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  #qa .sec01 .list-a {
    margin-top: 20px;
  }
  /*	about  SP
------------------------------------ */
  #about .sec01 .sec-inner {
    padding: 50px 15px;
  }
  #about .sec01 .img {
    margin-top: 20px;
  }
  #about .sec01 .name {
    margin-top: 30px;
  }
  #about .sec01 .box {
    margin-top: 40px;
    padding: 15px;
    text-align: left;
  }
  #about .sec02 .sec-inner {
    padding: 50px 15px;
  }
  #about .sec02 .table th, #about .sec02 .table td {
    display: block;
    width: 100%;
    padding: 10px 5px;
  }
  #about .sec02 .table th {
    border: none;
    padding-bottom: 0;
  }
  #about .sec02 .table td {
    padding-top: 5px;
  }
  /*	contact  SP
------------------------------------ */
  #contact .sec01 .sec-inner {
    padding: 80px 15px 50px;
  }
  #contact .sec01 .tel {
    max-width: 290px;
    padding: 0 10px 10px;
  }
  #contact .sec01 .tel::before {
    width: 15px;
    height: 20px;
    margin-right: 8px;
  }
  #contact .sec01 .box {
    margin-top: 20px;
  }
  #contact .sec02 .sec-inner {
    padding: 50px 15px;
  }
  #contact .sec02 .list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #contact .sec02 .list-item {
    text-align: center;
  }
  #contact .sec02 .list-item:nth-of-type(n+2) {
    margin: 15px auto 0;
  }
  #contact .sec02 .cmn-btn {
    height: 55px;
    line-height: 53px;
  }
  #contact .sec02 .cmn-btn::after {
    width: 35px !important;
    height: 35px !important;
    left: 23px;
  }
  #contact .sec03 .sec-inner {
    padding: 50px 15px;
  }
  /*	sub blog  SP
------------------------------------ */
  .sub #blog .detail .sec-inner {
    padding: 100px 15px 50px;
  }
  .sub #blog .detail .list-time {
    font-family: "Noto sans Regular", sans-serif;
  }
  /*----- */
}

/*----- */
/* =========================================
  breakpoint
========================================= */
