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

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

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

@font-face {
  font-family: "Noto Serif SemiBold";
  src: url("../fonts/NotoSerifCJKjp-SemiBold.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: 8px;
  font-size: 16px;
  border: 1px solid #EEF;
  border-radius: 5px;
  -webkit-box-shadow: 1px 2px 8px 0px rgba(150, 150, 150, 0.1) inset;
          box-shadow: 1px 2px 8px 0px rgba(150, 150, 150, 0.1) inset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  width: 100%;
}

/* ボタン
  -------------------------------------------------- */
input[type='button'],
input[type='submit'] {
  margin: 0 4px;
  -webkit-appearance: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

input[type='button'].cmn-btn,
input[type='submit'].cmn-btn {
  width: 280px;
  height: 50px;
  border-radius: 27px;
  line-height: 50px;
  font-family: serif;
}

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

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

input[name="check"] {
  margin-left: auto;
  margin-right: auto;
  color: #268dcc;
  background: #fff;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  input[name="check"] {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

input[name="check"][disabled] {
  font-size: 20px;
  font-size: 2rem;
  color: #898f9c;
}

@media screen and (max-width: 767px) {
  input[name="check"][disabled] {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

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

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

input[name="send"] {
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}

@media screen and (max-width: 767px) {
  input[name="send"] {
    margin-top: 30px !important;
  }
}

/* チェックボックス・ラジオボタン
  -------------------------------------------------- */
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 {
  margin: 50px auto 0;
}

.contact-form-table th, .contact-form-table td {
  font-family: "Noto sans regular", sans-serif;
  font-weight: 400;
  vertical-align: middle;
  letter-spacing: .1em;
}

.contact-form-table th {
  width: 37%;
  background: #959595;
  padding: 17px 18px 17px 35px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  text-align: left;
  color: #fff;
}

.contact-form-table td {
  padding: 15px 25px;
  border: 1px solid #eee;
  background: #fff;
}

.contact-form-table a {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .contact-form-table th, .contact-form-table td {
    padding: 12px 3%;
  }
  .contact-form-table tr:nth-of-type(n+2) td {
    border-top: none;
  }
}

/* スマホ表示時にはテーブルを縦向きにする */
@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 {
  padding: 0 15px;
  text-align: center;
  color: #222222;
  font-family: "Noto sans regular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  float: right;
  background: #fff799;
  border-radius: 4px;
  line-height: 28px;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .required-mark {
    line-height: 22px;
  }
}

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

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

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

.inline-privacy-policy {
  width: 98%;
  height: 252px;
  margin: 20px auto 0;
  background: #fff;
}

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

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

/* リキャプチャ */
.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: 1120px;
  margin: auto;
  color: #413028;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
}

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

img {
  max-width: 100%;
  vertical-align: middle;
}

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

a {
  display: block;
}

a:hover {
  opacity: .7;
}

a,
input[type=submit],
a img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

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

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

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .sec-inner.md,
  .bread-inner.md {
    width: 1080px;
  }
}

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

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

.cmn-txt,
#privacy .txt-box
form p {
  line-height: 1.625;
}

.ofj {
  width: 100%;
  height: 100%;
  -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 {
  width: 140px;
  height: 40px;
  margin: auto;
  border-radius: 20px;
  border: 1px solid #268dcc;
  background: #fff;
  line-height: 40px;
  text-align: center;
  color: #268dcc;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .075em;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

/*--- cmn-table  PC ----*/
table {
  width: 100%;
}

table.cmn-table {
  max-width: 520px;
}

table.cmn-table tr:nth-of-type(2n-1) {
  background: #fff;
}

table.cmn-table tr:nth-of-type(2n-1) th {
  border-radius: 17px 0 0 17px;
}

table.cmn-table tr:nth-of-type(2n-1) td {
  border-radius: 0 17px 17px 0;
}

table.cmn-table th, table.cmn-table td {
  padding: 12px 0;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium","Yu Gothic", sans-serif;
  font-weight: 500;
  text-align: left;
  letter-spacing: .075em;
  vertical-align: middle;
}

table.cmn-table th {
  width: 30.7%;
  padding-left: 45px;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
}

table.cmn-table td {
  padding-left: 30px;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium","Yu Gothic", sans-serif;
  font-weight: 500;
}

table.date-table {
  max-width: 520px;
  margin-top: 30px;
}

table.date-table .ttl {
  width: 170px;
}

table.date-table .time {
  background: #fffed7;
}

table.date-table th, table.date-table td {
  padding: 10px 15px;
  border: 1px solid #e5e5e5;
  text-align: center;
  vertical-align: middle;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium","Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: .075em;
}

table.date-table th {
  padding: 6.5px 0;
  background: #a3d6e4;
  color: #fff;
}

table.date-table td:not(.time) {
  background: #fff;
}

/*	heading  PC
------------------------------------ */
.head-type01 {
  text-align: center;
}

.head-type02 {
  padding-bottom: 20px;
  border-bottom: 4px dotted #e5b26d;
}

/*	pagetop  PC
------------------------------------ */
.fixed {
  display: block;
  position: fixed;
  cursor: pointer;
  right: 20px;
  bottom: 141px;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 20;
}

.fixed a {
  padding: 10px 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.fixed a:not(.fixed-contact) {
  text-align: right;
}

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

.slide-none {
  right: -500px;
}

.top-btn {
  position: fixed;
  bottom: 20px;
  right: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

/*	breadcrumb  PC
------------------------------------ */
.breadcrumb {
  position: relative;
}

.breadcrumb li {
  font-size: 14px;
  font-size: 1.4rem;
  color: #413028;
}

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

.breadcrumb a {
  display: inline-block;
  color: #413028;
  -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;
  position: absolute;
  top: 9px;
  z-index: 99;
}

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

.breadcrumb .fle li:not(:first-child)::before {
  content: '>';
  padding: 0 5px;
}

/*	pagenation  PC
------------------------------------ */
.pagenation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 60px;
  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: #333333;
  line-height: 60px;
  position: relative;
  z-index: 10;
}

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

.pagenation li a, .pagenation li span {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
}

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

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

.pagenation li:hover {
  background: #268dcc;
}

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

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

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

.pagenation-arrow.back::before {
  background: url(../img/common/back-arrow.png) no-repeat center/contain;
}

.pagenation-arrow.next::before {
  background: url(../img/common/next-arrow.png) no-repeat center/contain;
}

.pagenation .current {
  background: #268dcc;
}

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

/*	detail pagenation  PC
------------------------------------ */
.detail .pagenation-inner {
  max-width: 1080px;
  margin: auto;
  padding-bottom: 145px;
  position: relative;
}

.detail .pagenation-inner li {
  position: absolute;
  top: 0;
}

.detail .top-works {
  margin: auto;
  left: 0;
  right: 0;
}

.detail .back {
  left: 0;
}

.detail .next {
  right: 0;
}

.detail .data-nav a {
  display: inline-block;
  color: #413028;
  padding: 5px 0;
}

.detail .data-nav {
  margin: 60px auto 0;
  position: relative;
}

.detail .data-nav .to-works {
  display: inline-block;
  width: 89px;
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .detail .data-nav .to-works {
    margin: auto;
  }
}

.detail .to-works .cmn-btn {
  color: #fff;
  line-height: 36px;
  height: 45px;
}

.detail .to-works .cmn-btn::after {
  content: none;
}

.detail .back, .detail .next, .detail .to-works {
  position: relative;
}

.detail .back a, .detail .next a, .detail .to-works a {
  width: 89px;
  height: 42px;
  background: #268dcc;
  line-height: 34px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 10;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.detail .back::after, .detail .next::after, .detail .to-works::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 100;
}

.detail .back::after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 12px;
}

.detail .back:hover::after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.detail .next::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 12px;
}

.detail .next:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

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

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

/* =========================================
  header  PC
========================================= */
/*	headline  PC
------------------------------------ */
.mv {
  height: 919px;
  background: url(../img/mv.jpg) no-repeat center/cover;
}

.headline {
  padding-top: 23px;
}

.seo-txt {
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0;
}

.info {
  margin-top: 10px;
}

.info-right a:nth-of-type(n+2) {
  margin-left: 14px;
}

.catch-wrap {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  padding-top: 136px;
  text-align: center;
  position: relative;
}

.catch01 {
  margin: auto;
  position: absolute;
  left: 249px;
  right: 0;
}

.catch02 {
  margin: auto;
  position: absolute;
  left: 250px;
  top: 379px;
  right: 0;
}

.catch03 {
  position: absolute;
  top: 173px;
  right: 0;
}

/* =========================================
  footer  PC
========================================= */
#footer .bg {
  background: url(../img/f-bg.png) no-repeat top/cover;
}

#footer .sec-inner {
  padding: 115px 0 93px;
  text-align: center;
}

#footer .f-address {
  margin-top: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  #footer .f-address {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#footer .f-tel {
  margin-top: 10px;
}

#footer .sns-wrap {
  margin-top: 14px;
}

#footer .fb {
  margin-left: 25px;
}

#footer .copyright {
  margin-top: 35px;
  color: #fff;
}

#footer .copyright small {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0;
}

#footer .copyright a {
  display: inline-block;
  color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* =========================================
  main  PC
========================================= */
/*	cmn parts  PC
------------------------------------ */
/*	sec01  PC
------------------------------------ */
#sec01 .bg {
  background: url(../img/sec01-bg.png) no-repeat bottom/cover;
  position: relative;
  z-index: 1;
}

#sec01 .sec-inner {
  padding: 81px 0 132px;
  position: relative;
}

#sec01 .cmn-btn {
  position: absolute;
  right: 40px;
  top: 166px;
}

#sec01 figure {
  width: 160px;
  height: 0;
  padding-top: 160px;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  position: relative;
}

#sec01 figure img {
  border-radius: 16px;
}

#sec01 figure.noimage {
  border: 2px solid #fff;
}

#sec01 .list {
  margin: 25px auto 0;
  padding: 40px 38px;
  border-radius: 17px;
  background: url(../img/blog-box-bg.png) repeat center;
  position: relative;
}

#sec01 .list::before {
  content: '';
  display: inline-block;
  width: 117px;
  height: 105px;
  background: url(../img/sec01-box-ico.png) no-repeat center/contain;
  position: absolute;
  top: -15px;
  left: -22px;
}

#sec01 .list-item {
  width: 100%;
  max-width: 470px;
}

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

#sec01 .list-txt-box {
  width: 100%;
  max-width: 292px;
  margin-top: 10px;
}

#sec01 .list time {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium","Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  color: #413028;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  #sec01 .list time {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#sec01 .list-tag {
  padding: 0 4px;
  background: #fff;
  margin-left: 15px;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium","Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  color: #268dcc;
  letter-spacing: .05em;
}

#sec01 .list-ttl {
  margin-top: 12px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: #413028;
}

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

/*	sec02  PC
------------------------------------ */
#sec02 .bg {
  background: url(../img/sec02-bg.jpg) no-repeat top/cover;
  position: relative;
}

#sec02 .bg::after {
  content: '';
  display: inline-block;
  width: 219px;
  height: 50px;
  margin: auto;
  background: url(../img/sec02-after.png) no-repeat center/contain;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
}

#sec02 .sec-inner {
  padding: 123px 0 90px;
}

#sec02 .head-type01 {
  position: relative;
}

#sec02 .head-type01::before {
  content: '';
  display: inline-block;
  width: 100px;
  height: 97px;
  background: url(../img/sec02-ttl-ico.png) no-repeat center/contain;
  position: absolute;
  left: 252px;
  top: 53px;
}

#sec02 .list {
  margin-top: 37px;
}

#sec02 .list-item {
  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;
  font-family: "Noto Serif Regular", serif;
  font-weight: 400;
  font-size: 24px;
  font-size: 2.4rem;
  color: #413028;
  letter-spacing: .05em;
}

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

#sec02 .list-item::before {
  content: '';
  display: inline-block;
  width: 53px;
  height: 50px;
  margin-right: 9px;
  background: url(../img/sec02-check.png) no-repeat center/contain;
}

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

@media screen and (min-width: 768px) {
  #sec02 .list-item:nth-of-type(1) {
    margin-left: 187px;
  }
  #sec02 .list-item:nth-of-type(2) {
    margin-left: 217px;
  }
  #sec02 .list-item:nth-of-type(3) {
    margin-left: 246px;
  }
  #sec02 .list-item:nth-of-type(4) {
    margin-left: 277px;
  }
  #sec02 .list-item:nth-of-type(5) {
    margin-left: 307px;
  }
  #sec02 .list-item:nth-of-type(6) {
    margin-left: 337px;
  }
  #sec02 .list-item:nth-of-type(7) {
    margin-top: 30px;
    margin-left: 197px;
  }
  #sec02 .list-item:nth-of-type(8) {
    margin-left: 227px;
  }
  #sec02 .list-item:nth-of-type(9) {
    margin-left: 257px;
  }
  #sec02 .list-item:nth-of-type(10) {
    margin-left: 287px;
  }
  #sec02 .list-item:nth-of-type(11) {
    margin-left: 307px;
  }
}

#sec02 .list .accent {
  font-size: 30px;
  font-size: 3rem;
  font-family: "Noto Serif SemiBold", serif;
  font-weight: 600;
  letter-spacing: .05em;
  color: #268dcc;
}

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

/*	sec03  PC
------------------------------------ */
#sec03 .bg {
  height: 1829px;
  background: url(../img/sec03-bg-pc.jpg) no-repeat top/cover;
}

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

#sec03 .txt-box {
  margin: 30px auto 0;
  text-align: center;
}

#sec03 .txt-box .accent {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff799));
  background: -webkit-linear-gradient(transparent 50%, #fff799 50%);
  background: linear-gradient(transparent 50%, #fff799 50%);
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium","Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: .05em;
}

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

#sec03 .cmn-txt {
  line-height: 1.67;
}

#sec03 .cmn-txt:nth-of-type(n+2) {
  margin-top: 20px;
}

#sec03 .box {
  margin-top: 50px;
  padding: 60px 55px 60px 60px;
  border-radius: 25px;
  border: 6px solid #fff;
  background: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

#sec03 .box::before {
  content: '';
  width: 136px;
  height: 201px;
  background: url(../img/sec03-box-ico.png) no-repeat center/contain;
  position: absolute;
  top: -65px;
  right: -18px;
}

#sec03 .box-flex-wrap {
  width: 100%;
  max-width: 547px;
  margin-top: 16px;
}

#sec03 .box-flex-txt-box {
  margin-top: 35px;
}

#sec03 .box-flex-w100 {
  margin-top: 30px;
}

#sec03 .box-flex.fle-reverse {
  margin-top: 30px;
}

#sec03 .box-flex.fle-reverse .box-flex-wrap, #sec03 .box-flex.fle-reverse .box-flex-txt-box {
  margin-top: 0;
}

#sec03 .box-flex.fle-reverse .accent::before {
  content: none;
}

#sec03 .box .cmn-txt {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.56;
  letter-spacing: .05em;
}

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

#sec03 .box .cmn-txt:nth-of-type(n+2) {
  margin-top: 31px;
}

#sec03 .box .accent {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 19px;
  font-size: 1.9rem;
  color: #268dcc;
  letter-spacing: .05em;
}

#sec03 .box .accent-wrap {
  margin-top: 30px;
}

#sec03 .box .accent::before {
  content: '●';
  color: #268dcc;
  font-size: 19px;
  font-size: 1.9rem;
}

/*	sec04  PC
------------------------------------ */
#sec04 .bg {
  background: url(../img/sec04-bg.jpg) no-repeat center/cover;
  position: relative;
}

#sec04 .bg::before, #sec04 .bg::after {
  content: '';
  display: inline-block;
  position: absolute;
}

#sec04 .bg::before {
  width: 331px;
  height: 123px;
  background: url(../img/sec04-bg-ico01.png);
  left: 59px;
  top: -88px;
}

#sec04 .bg::after {
  width: 291px;
  height: 79px;
  background: url(../img/sec04-bg-ico02.png);
  right: 94px;
  top: -41px;
}

#sec04 .sec-inner {
  padding: 170px 0 87px;
}

#sec04 .head-type01 {
  position: relative;
}

#sec04 .head-type01::before {
  content: '';
  display: inline-block;
  width: 146px;
  height: 129px;
  background: url(../img/sec04-ttl-ico.png) no-repeat center/contain;
  position: absolute;
  top: -12px;
  left: 138px;
}

#sec04 .txt-box {
  margin-top: 35px;
  text-align: center;
}

#sec04 .cmn-txt {
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: .05em;
}

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

#sec04 .cmn-txt:nth-of-type(n+2) {
  margin-top: 30px;
}

/*	sec05  PC
------------------------------------ */
#sec05 .bg {
  background: url(../img/sec05-bg.png) repeat top/cover;
  position: relative;
}

#sec05 .bg::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 27px;
  background: url(../img/sec06-wave.png) repeat-x center/contain;
  position: absolute;
  bottom: -10px;
  z-index: 10;
}

#sec05 .sec-inner {
  padding: 90px 0 100px;
}

#sec05 .ofj {
  border-radius: 50%;
}

#sec05 .list {
  margin-top: 50px;
}

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

#sec05 .list-box {
  width: 100%;
  max-width: 780px;
  height: 290px;
  padding: 20px 20px 20px 50px;
  border-radius: 18px;
  background: #fff;
  position: relative;
}

@media screen and (min-width: 768px) {
  #sec05 .list-box::before {
    content: '';
    width: 0;
    height: 0;
    margin: auto;
    border-style: solid;
    border-width: 22px 37px 22px 0;
    border-color: transparent #ffffff transparent transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -37px;
  }
}

#sec05 .list-scroll-wrap {
  height: 250px;
  padding-right: 46px;
  overflow-y: scroll;
  /*スクロールバーの背景色・角丸指定*/
  /*スクロールバーの色・角丸指定*/
}

#sec05 .list-scroll-wrap::-webkit-scrollbar {
  width: 16px;
}

#sec05 .list-scroll-wrap::-webkit-scrollbar-track {
  background: #e5e5e5;
}

#sec05 .list-scroll-wrap::-webkit-scrollbar-thumb {
  background: #bfbfbf;
}

#sec05 .list-ttl {
  padding: 0 10px 5px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #df7dac;
  letter-spacing: .05em;
  border-bottom: 1px dashed #df7dac;
}

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

#sec05 .list-txt {
  margin-top: 14px;
  white-space: pre-line;
  font-size: 18px;
  font-size: 1.8rem;
}

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

#sec05 .list-name {
  width: 200px;
  height: auto;
  margin-top: 10px;
  padding: 5.5px 8px;
  line-height: 1.5;
}

#sec05 .list-item:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#sec05 .list-item:nth-of-type(2n) .list-ttl {
  color: #268dcc;
  border-bottom: 1px dashed #268dcc;
}

@media screen and (min-width: 768px) {
  #sec05 .list-item:nth-of-type(2n) .list-box::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 0 22px 37px;
    border-color: transparent transparent transparent #ffffff;
    left: auto;
    right: -37px;
  }
}

#sec05 figure {
  width: 240px;
  height: 0;
  padding-top: 240px;
  border-radius: 50%;
  position: relative;
}

/*	sec06  PC
------------------------------------ */
#sec06 .bg {
  background: url(../img/sec06-bg.jpg) no-repeat top/cover;
  position: relative;
}

#sec06 .bg::after {
  content: '';
  width: 100%;
  height: 27px;
  background: url(../img/sec06-wave02.png) repeat-x center/contain;
  position: absolute;
  bottom: -14px;
  left: 0;
}

#sec06 .sec-inner {
  padding: 100px 0 94px;
}

#sec06 .list {
  margin-top: 50px;
}

#sec06 .list-item {
  width: 100%;
  max-width: 500px;
  padding: 20px 20px 0;
  border-radius: 17px;
  -webkit-box-shadow: 0 0 10px #f3ebe8;
          box-shadow: 0 0 10px #f3ebe8;
  background: #fff;
}

#sec06 .list-item img {
  border-radius: 18px;
}

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

#sec06 .list-ttl {
  text-align: center;
  position: relative;
  top: -63px;
}

#sec06 .list-txt {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 0 15px;
  letter-spacing: .05em;
  position: relative;
  top: -39px;
  line-height: 1.78;
}

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

#sec06 .list-txt.mt {
  margin-top: 37px;
}

#sec06 .list .accent {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium","Yu Gothic", sans-serif;
  font-weight: 500;
  color: #268dcc;
}

#sec06 .message {
  padding: 10px;
}

#sec06 .message-bg {
  padding: 50px 0;
  border-radius: 9px;
  background: url(../img/sec06-message-bg.png) no-repeat center/cover;
  text-align: center;
}

#sec06 .message-bg::before, #sec06 .message-bg:after {
  content: '';
  display: block;
  width: 378px;
  height: 27px;
  margin: auto;
}

#sec06 .message-bg::before {
  background: url(../img/sec06-frame01.png) no-repeat center/contain;
}

#sec06 .message-bg::after {
  margin-top: 68px;
  background: url(../img/sec06-frame02.png) no-repeat center/contain;
}

#sec06 .message-ttl {
  margin-top: 47px;
}

#sec06 .message-txt {
  margin-top: 22px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.22;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  #sec06 .message-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*	sec07  PC
------------------------------------ */
#sec07 .bg {
  padding: 100px 0 60px;
  background: url(../img/sec07-bg.jpg) no-repeat;
}

#sec07 .list {
  margin-top: 49px;
}

#sec07 .list-item {
  width: 980px;
  margin: auto;
  padding: 24px 10px 19px 40px;
  border-radius: 17px;
  background: rgba(227, 242, 247, 0.6);
}

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

#sec07 .list-ttl {
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e5b26d;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .05em;
}

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

#sec07 .list-txt {
  margin-top: 7px;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .05em;
}

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

#sec07 .list-txt-wrap {
  width: 100%;
  max-width: 720px;
}

#sec07 .list-price {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium","Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  #sec07 .list-price {
    font-size: 20px;
    font-size: 2rem;
  }
}

#sec07 .list-price-note {
  font-size: 18px;
  font-size: 1.8rem;
}

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

#sec07 .bnr-box {
  width: 1320px;
  margin: 60px auto 0;
  padding: 70px 0 64px;
  border-radius: 17px;
  background: url(../img/bnr-bg.jpg) no-repeat center/cover;
  text-align: center;
  position: relative;
}

#sec07 .bnr-box::before, #sec07 .bnr-box::after {
  content: '';
  display: inline-block;
  position: absolute;
}

#sec07 .bnr-box::before {
  width: 146px;
  height: 129px;
  background: url(../img/sec04-ttl-ico.png) no-repeat center/contain;
  left: 146px;
  bottom: 54px;
}

#sec07 .bnr-box::after {
  width: 127px;
  height: 158px;
  background: url(../img/bnr-ico02.png) no-repeat center/contain;
  right: -24px;
  bottom: -20px;
}

#sec07 .bnr-txt {
  margin-top: 39px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: .05em;
}

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

#sec07 .bnr-sub {
  width: 100%;
  max-width: 420px;
  margin: 60px auto 0;
  text-align: center;
}

#sec07 .cmn-contact {
  margin: 60px auto 0;
}

#sec07 .cmn-contact-box {
  width: 100%;
  max-width: 510px;
  border-radius: 9px;
}

#sec07 .contact {
  padding: 20px;
  background-size: auto auto;
  background-color: #f3dbba;
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 3px, #f7e7d1 3px, #f7e7d1 6px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 3px, #f7e7d1 3px, #f7e7d1 6px);
  text-align: center;
}

#sec07 .contact-bg {
  padding: 27px 0 23px;
  border-radius: 8px;
  background: #e5b26d;
  position: relative;
}

#sec07 .contact-bg::before, #sec07 .contact-bg::after {
  content: '';
  display: inline-block;
  position: absolute;
}

#sec07 .contact-bg::before {
  width: 63px;
  height: 73px;
  background: url(../img/contact-ico01.png) no-repeat center/contain;
  left: 11px;
  bottom: 9px;
}

#sec07 .contact-bg::after {
  width: 62px;
  height: 68px;
  background: url(../img/contact-ico02.png) no-repeat center/contain;
  bottom: 14px;
  right: 10px;
}

#sec07 .contact-tel, #sec07 .contact-mail {
  width: 280px;
  margin: auto;
}

#sec07 .contact-tel {
  margin-top: 17px;
}

#sec07 .contact-mail {
  margin-top: 9px;
}

#sec07 .line {
  margin-left: 60px;
  padding: 48px 35px 40px;
  background: #00b900;
}

#sec07 .line-flex {
  margin-top: 47px;
}

#sec07 .line-flex-txt-box {
  margin-left: 37px;
}

#sec07 .line-txt {
  margin-top: 18px;
  text-align: center;
}

/*	sec08  PC
------------------------------------ */
#sec08 .bg {
  background: url(../img/sec08-bg.jpg) no-repeat center/cover;
}

#sec08 .sec-inner {
  padding: 100px 0;
}

#sec08 .head-type01 {
  position: relative;
}

#sec08 .head-type01::before {
  content: '';
  display: inline-block;
  width: 107px;
  height: 99px;
  background: url(../img/sec08-ttl-ico.png) no-repeat center/contain;
  position: absolute;
  right: 191px;
  top: 40px;
}

#sec08 .flex {
  margin: 49px auto 0;
}

#sec08 .cmn-table .accent {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #sec08 .cmn-table .accent {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*	contact  PC
------------------------------------ */
#contact .bg {
  background-size: auto auto;
  background-color: #e9f5f9;
  background-image: -webkit-repeating-linear-gradient(left, transparent, transparent 8px, #f4fafc 8px, #f4fafc 10px);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 8px, #f4fafc 8px, #f4fafc 10px);
  position: relative;
}

#contact .bg::after {
  content: '';
  position: absolute;
  border-style: none;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 74px;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0, #fff 100px);
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 100px);
}

#contact .sec-inner {
  padding: 100px 0 85px;
}

#contact .head-type01 {
  position: relative;
}

#contact .head-type01::before {
  content: '';
  display: inline-block;
  width: 78px;
  height: 75px;
  background: url(../img/sec09-ttl-ico.png) no-repeat center/contain;
  position: absolute;
  top: 67px;
  left: 215px;
}

/* =========================================
  sub  PC
========================================= */
/*	sub mv  PC
------------------------------------ */
.sub .mv {
  height: 450px;
  background-position: top;
}

.sub .catch-wrap {
  padding-top: 91px;
}

.catch-sub {
  font-size: 42px;
  font-size: 4.2rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
}

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

/*	e404  PCSP
------------------------------------ */
#e404 .sec-inner {
  padding: 120px 6%;
}

#e404 .top {
  display: inline-block;
  color: #413028;
  text-decoration: underline;
}

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

@media screen and (max-width: 767px) {
  #e404 .sec-inner {
    padding: 50px 20px;
  }
  #e404 .section-content {
    margin-top: 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: 120px 0 50px;
}

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

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

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

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

.sub #blog .sec-inner {
  padding: 94px 0 100px;
}

.sub #blog .list-tag {
  display: inline-block;
  margin-left: 15px;
}

.sub #blog .tag-nav {
  margin-top: 60px;
  padding: 35px 35px 25px;
  border-radius: 18px;
  background: url(../img/blog-box-bg.png) repeat center/cover;
}

.sub #blog .tag-head {
  word-break: keep-all;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #413028;
}

.sub #blog .tag-ul {
  margin-left: 34px;
}

.sub #blog .tag-li {
  margin-right: 10px;
  margin-bottom: 10px;
}

.sub #blog .tag-link {
  padding: 0 5px;
  background: #fff;
  color: #268dcc;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .sub #blog .tag-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sub #blog .blog-ul {
  margin-top: 80px;
}

.sub #blog .blog-li:nth-of-type(n+2) {
  border-top: 1px solid #959595;
}

.sub #blog .blog-detail-box {
  width: 100%;
}

.sub #blog .blog-txt-wrap {
  width: 100%;
}

.sub #blog .blog-ttl {
  font-size: 20px;
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #413028;
}

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

.sub #blog .blog-link {
  padding: 27px;
  border-radius: 8px;
}

.sub #blog .blog-detail-box.md .blog-txt-wrap {
  width: 100%;
  max-width: 700px;
}

.sub #blog .head-type03 {
  padding-left: 30px;
  padding-right: 30px;
  color: #413028;
}

.sub #blog figure {
  width: 230px;
  height: 0;
  padding-top: 208px;
  border-radius: 17px;
  border: 6px solid #fff;
  position: relative;
}

.sub #blog figure img {
  border-radius: 17px;
}

.sub #blog .cmn-txt {
  margin-top: 16px;
  color: #413028;
}

.sub #blog .detail .sec-inner {
  max-width: 800px;
  margin: auto;
}

.sub #blog .detail .head-type03, .sub #blog .detail .cmn-txt {
  color: #413028;
}

.sub #blog .detail .head-type03 {
  border-bottom: 1px solid #fff;
}

.sub #blog .detail time {
  display: block;
  margin-top: 10px;
  padding: 0;
  background: none;
  color: #413028;
}

.sub #blog .detail figure {
  width: 55.5%;
  padding-top: 43.4%;
  margin: 30px auto 0;
}

.sub #blog .detail .cmn-txt {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 10px;
}

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

.sub #blog .detail .blog-ttl {
  text-align: center;
}

.sub #blog .detail .pagenation-inner {
  margin: auto;
  padding-bottom: 100px;
}

/************************************************

  SP layout

************************************************/
@media screen and (max-width: 767px) {
  /* =========================================
  base  SP
========================================= */
  body {
    min-width: 350px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  body.active {
    /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a img {
    pointer-events: all;
  }
  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: 40px;
    line-height: 40px;
  }
  /* ---- cmn-table  SP ---- */
  table th, table td {
    display: block;
    width: 100%;
  }
  table.cmn-table {
    width: 100%;
  }
  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: center;
    border: none;
  }
  table.cmn-table th {
    padding-top: 12px;
    padding-bottom: 0;
    border-radius: 10px 10px 0 0;
  }
  table.cmn-table td {
    padding-top: 2px;
    border-radius: 0 0 10px 10px;
  }
  table.cmn-table td::before {
    content: none;
    display: block;
    width: 50px;
    height: 1px;
    margin: 10px auto;
  }
  /*	heading  SP
------------------------------------ */
  .head-type02 {
    padding-bottom: 12px;
  }
  .head-type01 {
    margin: auto;
  }
  /*	pagetop  SP
------------------------------------ */
  .fixed {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 10px;
  }
  .fixed a {
    display: inline-block;
    width: 150px;
    margin: auto;
    padding: 0;
  }
  .fixed a:not(.fixed-contact) {
    text-align: center;
  }
  .top-btn {
    width: 50px;
    margin-left: auto;
  }
  .top-btn.top {
    bottom: 530px;
  }
  .slide-none {
    display: none !important;
  }
  /*  breadcrumb  SP
------------------------------------ */
  .breadcrumb .bread-inner {
    padding: 0 2% 0;
  }
  .breadcrumb.detail-bg .fle {
    position: static;
  }
  /*	pagenation  SP
------------------------------------ */
  .pagenation {
    margin: 60px auto 0;
  }
  .pagenation-inner .cmn-btn {
    width: 105px;
    min-width: 100px;
  }
  .pagenation-inner .cmn-btn span {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pagenation-inner .cmn-btn span::after {
    content: none;
  }
  .pagenation-inner .back .cmn-btn,
  .pagenation-inner .next .cmn-btn {
    width: 60px;
  }
  .pagenation li {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    line-height: 40px;
  }
  .pagenation li + li {
    margin-left: 2%;
  }
  .pagenation span,
  .pagenation li a {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 40px;
  }
  .detail .pagenation-inner {
    padding: 0;
  }
  .back::before, .next::before {
    width: 11px;
    height: 11px;
  }
  .data-nav {
    margin-top: 30px;
    padding-bottom: 50px;
  }
  .data-nav .to-works {
    margin: auto;
  }
  /* =========================================
  header  SP
========================================= */
  /*	mv  SP
------------------------------------ */
  /*	sp-tel  SP
------------------------------------ */
  .sp-tel {
    position: fixed;
    top: 12px;
    right: 22px;
    z-index: 1010;
  }
  .sp-tel a {
    padding: 7px;
  }
  .sp-tel .fa {
    font-size: 33px;
    color: #268dcc;
  }
  /*	ggmap  SP
------------------------------------ */
  .ggmap {
    width: 100%;
    margin-top: 30px;
    padding-top: 250px;
  }
  /* =========================================
  footer  SP
========================================= */
  #footer .bg {
    background-position: 72%;
  }
  #footer .sec-inner {
    padding: 40px 15px;
  }
  #footer .f-logo {
    width: 200px;
    margin: auto;
  }
  #footer .f-tel {
    width: 193px;
    margin: 10px auto 0;
  }
  #footer .copyright {
    text-align: center;
  }
  #footer .copyright small {
    font-size: 10px;
    font-size: 1rem;
  }
  /* =========================================
  main  SP
========================================= */
  /*	headline  SP
------------------------------------ */
  .headline {
    padding-top: 1px;
    position: relative;
  }
  .headline::before {
    content: '';
    width: 337px;
    height: 168px;
    background: url(../img/mv-sp-wave.png) no-repeat center/contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .logo {
    width: 200px;
    position: relative;
    z-index: 10;
  }
  .mv {
    background-image: url(../img/mv-sp.jpg);
    height: 600px;
    background-position: 50%;
  }
  .catch-wrap {
    padding-top: 99px;
  }
  .catch01 {
    width: 200px;
    left: 53px;
  }
  .catch02 {
    width: 200px;
    top: 257px;
    right: -52px;
    left: 0;
  }
  .catch03 {
    width: 165px;
    top: 300px;
    right: auto;
    left: 6px;
  }
  /*	mv  SP
------------------------------------ */
  /*	cmn parts  SP
------------------------------------ */
  /*	sec01  SP
------------------------------------ */
  #sec01 .bg {
    background-size: contain;
  }
  #sec01 .sec-inner {
    padding: 30px 15px;
  }
  #sec01 .list {
    padding: 20px;
  }
  #sec01 .list::before {
    width: 93px;
    height: 81px;
  }
  #sec01 .list-item:nth-of-type(n+2) {
    margin-top: 20px;
  }
  #sec01 .list-txt-box {
    max-width: 60%;
    margin-left: 5%;
  }
  #sec01 figure {
    width: 100%;
    max-width: 35%;
    padding-top: 35%;
  }
  #sec01 .cmn-btn {
    position: static;
    top: 0;
    margin: 20px auto 0;
  }
  /*	sec02  SP
------------------------------------ */
  #sec02 {
    background: #eee;
  }
  #sec02 .bg {
    background-image: url(../img/sec02-sp-bg.jpg);
    background-size: contain;
  }
  #sec02 .bg::after {
    width: 107px;
    height: 25px;
    bottom: -23px;
  }
  #sec02 .sec-inner {
    padding: 30px 15px;
  }
  #sec02 .sec-inner::before, #sec02 .sec-inner::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }
  #sec02 .sec-inner::before {
    background-image: url(../img/sec02-sp-ico03.png);
    width: 40px;
    top: 520px;
    right: 10px;
  }
  #sec02 .sec-inner::after {
    background-image: url(../img/sec02-sp-ico02.png);
    width: 40px;
    top: 665px;
    right: 20px;
  }
  #sec02 .head-type01::before {
    width: 49px;
    height: 45px;
    left: 0;
    top: 79px;
  }
  #sec02 .list {
    position: relative;
  }
  #sec02 .list::before, #sec02 .list::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }
  #sec02 .list::before {
    background-image: url(../img/sec02-sp-ico01.png);
    width: 25px;
    top: 33px;
    right: 10px;
  }
  #sec02 .list::after {
    background-image: url(../img/sec02-sp-ico04.png);
    top: 180px;
    right: 32px;
  }
  #sec02 .list-item {
    display: block;
    padding-left: 37px;
    font-size: 16px;
    font-size: 1.6rem;
    position: relative;
  }
  #sec02 .list-item::before {
    width: 28px;
    height: 27px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
  }
  #sec02 .list-item:nth-of-type(n+2) {
    margin-top: 20px;
  }
  #sec02 .list .accent {
    font-size: 20px;
    font-size: 2rem;
  }
  /*	sec03  SP
------------------------------------ */
  #sec03 .bg {
    height: auto;
  }
  #sec03 .sec-inner {
    padding: 30px 15px;
  }
  #sec03 .txt-box {
    margin-top: 20px;
  }
  #sec03 .txt-box .accent {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #sec03 .box {
    margin-top: 30px;
    padding: 6px 15px;
  }
  #sec03 .box::before {
    width: 59px;
    height: 91px;
    top: -26px;
  }
  #sec03 .box figure {
    width: 200px;
    margin: auto;
  }
  #sec03 .box-flex-txt-box {
    margin-top: 15px;
  }
  #sec03 .box-flex-w100 {
    margin-top: 20px;
  }
  #sec03 .box-flex.fle-reverse {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #sec03 .box .cmn-txt {
    line-height: 1.875;
  }
  #sec03 .box .cmn-txt:nth-of-type(n+2) {
    margin-top: 19px;
  }
  #sec03 .box .accent {
    font-size: 17px;
    font-size: 1.7rem;
  }
  #sec03 .box .accent-wrap {
    margin-top: 24px;
  }
  /*	sec04  SP
------------------------------------ */
  #sec04 .bg {
    background-position: 83%;
  }
  #sec04 .bg::before, #sec04 .bg::after {
    width: 110px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  #sec04 .bg::before {
    height: 52px;
    left: 10px;
    top: -26px;
  }
  #sec04 .bg::after {
    height: 40px;
    right: 9px;
    top: -17px;
  }
  #sec04 .sec-inner {
    padding: 30px 15px;
  }
  #sec04 .head-type01 {
    width: 300px;
  }
  #sec04 .head-type01::before {
    width: 51px;
    height: 50px;
    top: 46px;
    left: -9px;
  }
  #sec04 .txt-box {
    margin-top: 16px;
  }
  #sec04 .cmn-txt:nth-of-type(n+2) {
    margin-top: 20px;
  }
  /*	sec05  SP
------------------------------------ */
  #sec05 .sec-inner {
    padding: 30px 15px;
  }
  #sec05 .list {
    margin-top: 20px;
  }
  #sec05 .list-item {
    -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: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #sec05 .list-item:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #sec05 .list-item:nth-of-type(n+2) {
    margin-top: 30px;
  }
  #sec05 .list-box {
    height: auto;
    margin-top: 20px;
    padding: 20px 11px 28px 27px;
  }
  #sec05 .list-name {
    width: 250px;
    margin: 10px auto 0;
  }
  #sec05 .list-scroll-wrap {
    height: 170px;
    padding-right: 19px;
  }
  #sec05 .list-scroll-wrap::-webkit-scrollbar {
    width: 5px;
  }
  #sec05 figure {
    width: 180px;
    margin: auto;
    padding-top: 180px;
  }
  /*	sec06  SP
------------------------------------ */
  #sec06 .sec-inner {
    padding: 30px 15px;
  }
  #sec06 .message-bg::before, #sec06 .message-bg::after {
    width: 249px;
  }
  #sec06 .list {
    margin-top: 30px;
  }
  #sec06 .list-item {
    padding: 10px;
  }
  #sec06 .list-item:nth-of-type(n+2) {
    margin-top: 30px;
  }
  #sec06 .list-ttl {
    width: 261px;
    margin: auto;
    top: -43px;
  }
  #sec06 .list-txt {
    padding: 0 9px;
    top: -32px;
  }
  #sec06 .list-txt.mt {
    margin-top: 20px;
  }
  #sec06 .message-bg {
    padding: 20px 7px;
  }
  #sec06 .message-bg::after {
    margin-top: 32px;
  }
  #sec06 .message-ttl {
    width: 218px;
    margin: 17px auto 0;
  }
  #sec06 .message-txt {
    margin-top: 0px;
  }
  /*	sec07  SP
------------------------------------ */
  #sec07 .bg {
    padding: 30px 15px;
    background-position: 50%;
  }
  #sec07 .list-item {
    width: 100%;
    padding: 24px 15px 19px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #sec07 .list-ttl {
    padding: 0  0 5px;
  }
  #sec07 .list-price {
    margin-top: 13px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  #sec07 .list-price-note {
    font-size: 14px;
    font-size: 1.4rem;
  }
  #sec07 .cmn-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #sec07 .line {
    margin: 30px auto 0;
  }
  #sec07 .bnr-box {
    margin-top: 30px;
    padding: 20px 9px;
  }
  #sec07 .bnr-box::before {
    width: 46px;
    height: 51px;
    left: 0;
    bottom: -17px;
  }
  #sec07 .bnr-box::after {
    width: 54px;
    height: 83px;
    right: 0;
    bottom: -28px;
  }
  #sec07 .bnr-txt {
    margin-top: 14px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  #sec07 .bnr-sub {
    margin-top: 50px;
  }
  #sec07 .cmn-contact {
    margin-top: 50px;
  }
  #sec07 .contact {
    padding: 10px;
  }
  #sec07 .contact-tel, #sec07 .contact-mail {
    width: 200px;
  }
  #sec07 .contact-bg {
    padding: 20px 10px;
  }
  #sec07 .contact-bg::before {
    width: 38px;
    height: 63px;
    left: 4px;
    bottom: 1px;
  }
  #sec07 .contact-bg::after {
    width: 48px;
    height: 43px;
    bottom: 8px;
    right: 3px;
  }
  #sec07 .line {
    padding: 25px;
  }
  #sec07 .line-flex {
    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;
  }
  #sec07 .line-flex-txt-box {
    margin: 20px auto 0;
  }
  #sec07 .line-btn {
    width: 200px;
    margin: auto;
  }
  /*	sec08  SP
------------------------------------ */
  #sec08 .sec-inner {
    padding: 30px 15px;
  }
  #sec08 .head-type01::before {
    width: 65px;
    height: 60px;
    right: 0;
    top: 60px;
  }
  #sec08 .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;
  }
  #sec08 .cmn-table {
    margin-top: 20px;
  }
  #sec08 .date-table th, #sec08 .date-table td {
    padding: 0;
    display: table-cell;
    width: 31px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  #sec08 .date-table .ttl {
    width: 64px;
    padding: 0 2px;
  }
  #sec08 .date-table td img {
    width: 17px;
  }
  /*	contact  SP
------------------------------------ */
  #contact .sec-inner {
    padding: 30px 15px;
  }
  #contact .head-type01::before {
    width: 50px;
    height: 50px;
    top: 47px;
    left: 0;
  }
  /* =========================================
  sub  SP
========================================= */
  /*	sub mv  SP
------------------------------------ */
  .sub .mv {
    height: 260px;
  }
  .sub .catch-wrap {
    padding-top: 72px;
  }
  /*	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;
  }
  /*	sub blog  SP
------------------------------------ */
  .sub #blog .sec-inner {
    padding: 50px 15px;
  }
  .sub #blog .tag-nav {
    margin-top: 20px;
    padding: 10px;
    -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: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sub #blog .tag-ul {
    width: 100%;
    margin: auto;
    padding: 10px 0 0;
  }
  .sub #blog .tag-li {
    padding-top: 0;
  }
  .sub #blog .head-type03 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sub #blog .blog-ul {
    max-width: 400px;
    margin: 30px auto 0;
  }
  .sub #blog .blog-li {
    padding: 0;
  }
  .sub #blog .blog-li:nth-of-type(n+2) {
    margin-top: 15px;
  }
  .sub #blog .blog-link {
    padding: 15px;
  }
  .sub #blog .blog-detail-box {
    padding: 0 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sub #blog figure {
    width: 90%;
    margin: 7px auto 0;
    border: 3px solid #fff;
    padding-top: 80%;
  }
  .sub #blog .blog-detail-txt-wrap {
    margin-top: 10px;
  }
  .sub #blog .blog-detail-box {
    max-width: 400px;
    margin: auto;
    padding: 0;
  }
  .sub #blog .blog-detail-box.md .cmn-txt {
    padding: 0;
  }
  .sub #blog .detail figure {
    width: 100%;
    max-width: 320px;
    padding-top: 250px;
  }
  .sub #blog .detail .pagenation-inner {
    padding: 0 15px 50px;
  }
  .sub #blog .detail .data-nav {
    margin-top: 0;
  }
  /*----- */
}

/*----- */
/* =========================================
  breakpoint
========================================= */
@media screen and (max-width: 1380px) {
  #sec07 .bnr-box {
    width: 100%;
    max-width: 1080px;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  #sec01 .list-item {
    margin-right: auto;
  }
  #sec01 .list-tag {
    padding: 2px 5px;
    font-family: sans-serif;
  }
  .sub #blog .tag-link {
    padding: 2px 6px;
    font-family: sans-serif;
  }
}
