@charset "UTF-8";
/*zinf 180702*/
img {
  width: 100%;
  height: auto;
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*reset--------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

b, strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: top;
  border: 0;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

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

/*font-face--------------------------------------*/
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.woff2") format("woff2"), url("https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff2") fomat("woff2"), url("https://fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../fonts/NotoSerifJP-Regular.woff2.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/NotoSerifJP-Bold.woff2") format("woff2"), url("../fonts/NotoSerifJP-Bold.woff2.woff") format("woff");
  font-weight: 700;
}
/*base--------------------------------------*/
body,
html {
  height: 100%;
  min-height: 100%;
  color: #333;
  background: #000;
}

body {
  font-size: 14px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  min-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: initial;
    min-width: auto;
  }
}
body.fixed {
  overflow: hidden;
}

body {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
input,
select,
textarea {
  padding: 5px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

p {
  line-height: 1.8;
}

a:link,
a:visited {
  color: #333;
  text-decoration: none;
}

a:hover,
a:active {
  color: #b88c41;
  text-decoration: none;
}

/*layout--------------------------------------*/
@media screen and (max-width: 767px) {
  main {
    padding-top: 0px;
  }
}
main .wrap {
  width: 1100px;
  margin: 0px auto;
  padding: 60px 0px;
}
@media screen and (max-width: 767px) {
  main .wrap {
    width: 100%;
    margin: 0px auto;
    padding: 30px 15px;
  }
}
main .wrap::after {
  display: table;
  content: " ";
  clear: both;
}

.sidenav {
  width: 200px;
  float: left;
}
@media screen and (max-width: 767px) {
  .sidenav {
    width: auto;
    float: none;
    margin: 60px 0 0;
  }
}

.main_contents {
  width: 850px;
  float: right;
}
@media screen and (max-width: 767px) {
  .main_contents {
    width: auto;
    float: none;
    margin: 0 0px;
  }
}

/*header--------------------------------------*/
/*footer--------------------------------------*/
.footer {
  width: 100%;
  color: #fff;
}
.footer .contact_block {
  padding: 0px 0 0px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer .contact_block {
    margin: 0;
    padding: 10px 0 60px;
  }
}
.footer .contact_block .wrap {
  padding: 100px 15px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .wrap {
    width: 100%;
    padding: 0px 15px 0px;
    background-size: auto 50px;
  }
}
.footer .contact_block h3 {
  font-size: 0;
  height: 89px;
  background: url("../images/common/footer_contact_ttl.png") no-repeat center top;
  background-size: contain;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer .contact_block h3 {
    background-image: url(../images/common/footer_contact_ttl_sp.png);
    height: 55px;
  }
}
.footer .contact_block p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .contact_block p {
    font-size: 13px;
  }
}
.footer .contact_block .row {
  margin: 40px auto 0;
  max-width: 1200px;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row {
    width: 100%;
    padding: 15px 10px 5px;
    display: block;
    margin: 0;
  }
}
.footer .contact_block .row .col {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row .col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .contact_block .row .col:nth-child(1) {
  border-right: solid 1px #fff;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row .col:nth-child(1) {
    border-right: none;
    padding-left: 0px;
  }
}
.footer .contact_block .row .col:nth-child(2) {
  -ms-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 35px;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row .col:nth-child(2) {
    padding-right: 0px;
  }
}
.footer .contact_block .row .photo {
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row .photo {
    width: 30%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row .text {
    width: 70%;
  }
}
.footer .contact_block .row .tel {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row .tel {
    margin-bottom: 10px;
    font-size: 34px;
  }
  .footer .contact_block .row .tel img {
    height: 24px;
  }
}
.footer .contact_block .row .tel a {
  color: #fff;
}
.footer .contact_block .row h4 {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 2px;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row h4 {
    font-size: 17px;
    margin-bottom: 15px;
  }
}
.footer .contact_block .row p {
  font-size: 14px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row p {
    font-size: 13px;
  }
}
.footer .contact_block .row .contact_btn a {
  font-size: 16px;
  line-height: 1;
  display: block;
  padding: 25px 0px;
  border-radius: 60px;
  text-align: center;
  transition: 0.3s;
  background: transparent;
  border: solid 1px #fff;
  color: #fff;
  width: 320px;
}
@media screen and (max-width: 767px) {
  .footer .contact_block .row .contact_btn a {
    font-size: 14px;
    padding: 20px 0px;
    max-width: 245px;
    width: 100%;
  }
}
.footer .contact_block .row .contact_btn a:hover {
  background: #5c4621;
}
.footer .contact_block .row .contact_btn i {
  color: #b88c41;
  padding-right: 1em;
}
.footer .map_block iframe {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .footer .map_block iframe {
    height: 250px;
  }
}
.footer .area_nav_block {
  margin: 0px 0 40px;
}
@media screen and (max-width: 767px) {
  .footer .area_nav_block {
    margin: 0px 0 20px;
  }
}
.footer .area_nav_block ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.footer .area_nav_block ul li {
  width: 33.333%;
  flex-grow: 1;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .footer .area_nav_block ul li {
    margin-top: 10px;
    width: 100%;
  }
}
.footer .area_nav_block ul li:nth-child(1) {
  background-image: url(../images/common/footer_company_bg_c.jpg);
}
.footer .area_nav_block ul li:nth-child(1) .photo {
  background-image: url(../images/common/footer_company_bg_g.jpg);
}
.footer .area_nav_block ul li:nth-child(2) {
  background-image: url(../images/common/footer_faq_bg_c.png);
}
.footer .area_nav_block ul li:nth-child(2) i {
  background-image: url(../images/common/footer_nav_icon2.png);
}
.footer .area_nav_block ul li:nth-child(2) .photo {
  background-image: url(../images/common/footer_faq_bg_g.png);
}
.footer .area_nav_block ul li:nth-child(3) {
  background-image: url(../images/common/footer_blog_bg_c.png);
}
.footer .area_nav_block ul li:nth-child(3) i {
  background-image: url(../images/common/footer_nav_icon3.png);
}
.footer .area_nav_block ul li:nth-child(3) .photo {
  background-image: url(../images/common/footer_blog_bg_g.png);
}
.footer .area_nav_block ul li a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 100px 0;
  color: #fff;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer .area_nav_block ul li a {
    font-size: 18px;
    padding: 40px 0;
  }
}
.footer .area_nav_block ul li a:hover {
  opacity: 0.7;
}
.footer .area_nav_block ul li i {
  background: url("../images/common/footer_nav_icon1.png") no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 767px) {
  .footer .area_nav_block ul li i {
    width: 90px;
    height: 90px;
  }
}
.footer .area_nav_block ul li .text {
  position: relative;
  z-index: 10;
}
.footer .area_nav_block ul li .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.6s all;
}
.footer .area_nav_block ul li a:hover {
  opacity: 1;
}
.footer .area_nav_block ul li a:hover .photo {
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.footer .footer_nav_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 1200px;
  margin: 0px auto 20px;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .footer .footer_nav_block {
    width: 100%;
    padding: 15px;
    display: block;
    margin: 0px auto 20px;
  }
}
.footer .footer_nav_block .column {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .footer .footer_nav_block .column {
    width: 100%;
    display: block;
  }
}
.footer .footer_nav_block .column h4 {
  padding: 5px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}
.footer .footer_nav_block .column h4 + ul {
  margin-left: 1.5em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer .footer_nav_block .column h4 + ul {
    margin-left: 1em;
  }
}
.footer .footer_nav_block .column li {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer .footer_nav_block .column li {
    margin-bottom: 0;
    border-bottom: solid 1px #333;
  }
}
.footer .footer_nav_block .column a {
  display: block;
  padding: 5px;
  font-size: 13px;
  line-height: 1.6;
  transition: 0.3s;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .footer_nav_block .column a {
    position: relative;
    padding-right: 30px;
  }
  .footer .footer_nav_block .column a br {
    display: none;
  }
  .footer .footer_nav_block .column a::after {
    content: "\f105";
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -8px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
}
.footer .footer_nav_block .column a:hover {
  color: #b88c41;
}
.footer .copyright {
  max-width: 1200px;
  text-align: right;
  margin: 0 auto;
  padding: 30px 50px 10px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 11px;
    text-align: center;
  }
}

/*pagetop---------------------------------*/
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: right;
}
.pagetop a {
  display: inline-block;
  padding: 20px;
  background: rgba(64, 64, 64, 0.6);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 13px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    font-size: 12px;
  }
}
.pagetop a:hover {
  background: rgba(64, 64, 64, 0.8);
}

/*btn---------------------------------*/
.grey_btn a {
  font-size: 16px;
  line-height: 1.8;
  display: block;
  padding: 10px 10px;
  text-align: center;
  transition: opacity 0.3s;
  background: #878b98;
  color: #ffffff;
}
.grey_btn a:hover {
  opacity: 0.7;
}
.grey_btn i {
  margin-right: 3px;
}

.pink_btn a {
  font-size: 16px;
  line-height: 1.8;
  display: block;
  padding: 10px 10px;
  text-align: center;
  transition: opacity 0.3s;
  background: #fd739d;
  color: #ffffff;
}
.pink_btn a:hover {
  opacity: 0.7;
}
.pink_btn i {
  margin-right: 3px;
}

.ghost_btn {
  text-align: center;
}
.ghost_btn a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.8;
  padding: 15px 100px;
  letter-spacing: 2px;
  text-align: center;
  transition: 0.3s;
  background: transparent;
  border: solid 1px #fff;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ghost_btn a {
    font-size: 14px;
    padding: 10px 30px;
  }
}
.ghost_btn a:hover {
  background: #5c4621;
}
.ghost_btn i {
  margin-right: 3px;
}

.btn_arrow_r a {
  position: relative;
  padding-right: 30px;
}
.btn_arrow_r a::after {
  content: "\f105";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.btn_arrow_l a {
  position: relative;
  padding-right: 30px;
}
.btn_arrow_l a::after {
  content: "\f104";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.btn_arrow_d a {
  position: relative;
  padding-right: 30px;
}
.btn_arrow_d a::after {
  content: "\f107";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.btn_arrow_u a {
  position: relative;
  padding-right: 30px;
}
.btn_arrow_u a::after {
  content: "\f106";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

a.arrow_btn {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: solid 1px #fff;
  transition: 0.4s all;
  position: relative;
}
@media screen and (max-width: 767px) {
  a.arrow_btn {
    margin: 0 auto;
    padding: 0;
    display: block;
    font-size: 15px;
    max-width: 320px;
    border: solid 1px #fff;
    border-radius: 65px;
    line-height: 65px;
    text-align: center;
  }
}
a.arrow_btn::after {
  content: "\f35a";
  font-family: "font awesome 5 free";
  font-weight: 500;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  a.arrow_btn::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
a.arrow_btn:hover {
  color: #b88c41;
  border-color: #b88c41;
}
@media screen and (max-width: 767px) {
  a.arrow_btn:hover {
    color: #fff;
    border-color: #fff;
    background-color: #b88c41;
  }
}

a.box_btn {
  display: block;
  border: solid 1px #fff;
  border-radius: 75px;
  max-width: 400px;
  width: 100%;
  line-height: 75px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  position: relative;
  transition: 0.4s all;
}
@media screen and (max-width: 767px) {
  a.box_btn {
    max-width: 320px;
    font-size: 15px;
    line-height: 65px;
  }
}
a.box_btn::after {
  content: "\f35a";
  font-family: "font awesome 5 free";
  font-weight: 500;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
a.box_btn:hover {
  background-color: #b88c41;
}

/* pagenavi*/
.wp-pagenavi-wrapper {
  position: relative;
  margin: 20px 0px 0;
  overflow: hidden;
  zoom: 1;
}

.wp-pagenavi {
  position: relative;
  left: 50%;
  float: left;
}

.wp-pagenavi-wrapper:after,
.wp-pagenavi:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  left: -50%;
  float: left;
  display: block;
  background: #b88c41;
  border: solid 1px #b88c41;
  font-size: 15px;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  background: #fff;
  color: #b88c41;
  border: solid 1px #b88c41;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  display: none;
}

/*only---------------------------------*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block !important;
  }
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*placeholder*/
:placeholder-shown {
  color: #CCC;
  font-size: 14px;
  line-height: 1;
}

::-webkit-input-placeholder {
  color: #CCC;
  font-size: 14px;
  line-height: 1;
}

:-moz-placeholder {
  opacity: 1;
  color: #CCC;
  font-size: 14px;
  line-height: 1;
}

::-moz-placeholder {
  opacity: 1;
  color: #CCC;
  font-size: 14px;
  line-height: 1;
}

:-ms-input-placeholder {
  color: #CCC;
  font-size: 14px;
  line-height: 1;
}

/*フォーム部品*/
input[type=text],
input[type=submit],
input[type=email],
button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, select, textarea, select {
  padding: 5px;
  margin: 0;
  font-size: 14px;
  border: solid 1px #CCC;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  input, select, textarea, select {
    font-size: 16px !important;
  }
}

input[type=checkbox],
input[type=radio] {
  margin-right: 5px;
  vertical-align: middle;
}

input[type=submit] {
  display: block;
  padding: 15px 100px;
  font-size: 16px;
  line-height: 1.6;
  transition: 0.3s;
  background: #B88C41;
  color: #FFF;
  letter-spacing: 3px;
  border: none;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  input[type=submit] {
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
  }
}
input[type=submit]:hover {
  opacity: 0.7;
}

/*-------------------------------------------------
 　スライドメニューボタン部分
/*-------------------------------------------------*/
#toggle {
  position: absolute;
  top: 25px;
  right: 50px;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  #toggle {
    top: 8px;
    right: 15px;
  }
}
#toggle a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  background-size: 40px 40px;
}
@media screen and (max-width: 767px) {
  #toggle a {
    width: 45px;
    height: 45px;
  }
}
#toggle a span {
  display: block;
  height: 2px;
  width: 20px;
  background-color: rgba(200, 198, 199, 0.5);
  position: relative;
  transition: 0.4s all;
}
#toggle a span::before, #toggle a span::after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(200, 198, 199, 0.5);
  height: 2px;
  width: 100%;
  left: calc(50% - 10px);
  transform-origin: 50% 50%;
}
#toggle a span::before {
  animation: toggle_top_off cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}
#toggle a span::after {
  animation: toggle_bot_off cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}
@keyframes toggle_top_on {
  0% {
    top: calc(50% - 7px);
    transform: rotate(0deg);
  }
  50% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    top: 50%;
    transform: rotate(45deg);
  }
}
@keyframes toggle_top_off {
  0% {
    top: 50%;
    transform: rotate(45deg);
  }
  50% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    top: calc(50% - 7px);
    transform: rotate(0deg);
  }
}
@keyframes toggle_bot_on {
  0% {
    top: calc(50% + 5px);
    transform: rotate(0deg);
  }
  50% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    top: 50%;
    transform: rotate(-45deg);
  }
}
@keyframes toggle_bot_off {
  0% {
    top: 50%;
    transform: rotate(-45deg);
  }
  50% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    top: calc(50% + 5px);
    transform: rotate(0deg);
  }
}
#toggle.active a span {
  background-color: transparent;
}
#toggle.active a span:before {
  animation: toggle_top_on cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}
#toggle.active a span:after {
  animation: toggle_bot_on cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}

.sidr {
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  background: transparent;
}

.sidr.right {
  left: auto;
  right: -300px;
}

.sidr.left {
  left: -300px;
  right: auto;
}

.sidr-overlay {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999998;
  display: none;
}

.sidr-animating .sidr-overlay,
.sidr-open .sidr-overlay {
  display: block;
}

#slideMenu .innerbox {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: -10%;
  left: 0;
  padding: 0px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  border-left: solid 1px #666;
  transition: 0.6s all;
}

#slideMenu.active .innerbox {
  opacity: 1;
  visibility: visible;
  top: 0%;
}

#slideMenu .innerbox * {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#slideMenu .innerbox .content {
  max-width: 1200px;
  margin: 110px auto;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: wrap;
  -webkit-flex-flow: wrap;
  flex-flow: wrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  #slideMenu .innerbox .content {
    min-width: auto;
    padding: 0 40px;
  }
}
#slideMenu .innerbox .content::after {
  content: "";
  width: 435px;
  height: 233px;
  background: url(../images/common/slide_menu_bg.png) bottom left no-repeat;
  background-size: contain;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #slideMenu .innerbox .content::after {
    margin-top: 40px;
    width: 100%;
    height: 160px;
    background-position: bottom center;
  }
}
#slideMenu .innerbox dt {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #slideMenu .innerbox dt {
    pointer-events: all;
    position: relative;
  }
  #slideMenu .innerbox dt::after {
    content: "\f139";
    font-family: "font awesome 5 free";
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s all;
  }
}
#slideMenu .innerbox dt.active::after {
  transform: translateY(-50%) rotate(180deg);
}
#slideMenu .innerbox .list {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  #slideMenu .innerbox .list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #slideMenu .innerbox .list:nth-child(n+2) {
    margin-top: 50px;
  }
}
#slideMenu .innerbox h2 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #slideMenu .innerbox h2 {
    font-size: 20px;
  }
}
#slideMenu .innerbox dd {
  margin-top: 30px;
}
#slideMenu .innerbox li {
  font-size: 18px;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  #slideMenu .innerbox li {
    font-size: 16px;
  }
}
#slideMenu .innerbox li:nth-child(n+2) {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  #slideMenu .innerbox li:nth-child(n+2) {
    margin-top: 30px;
  }
}
#slideMenu .innerbox a {
  color: #fff;
}

#slideMenu .searchbox {
  padding: 10px;
  border-bottom: solid 1px #666;
  background: #333;
}

#slideMenu .searchbox .ttl {
  font-size: 12px;
  margin-bottom: 5px;
}

#slideMenu .searchbox input[type=text]::-webkit-input-placeholder {
  font-size: 13px;
}

#slideMenu .searchbox input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid 1px #999 !important;
  border-radius: 0px !important;
  font-size: 16px;
  padding: 3px 33px 3px 3px;
  height: 30px;
  width: 100%;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNy8zMS8xN6MZYLkAAAAYdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3Jrc0+zH04AAAHvSURBVEiJtZbNcdswEIU/cVKAO4g7kHLao5wKZHdAVeBRBWYqkFOB2UHiCkwd3yl0ByqBHdAHghJHWfDP1rtwBli8jwAWwC7qumZIkm6AFdB+S6ACSjOrBg0cLfrAklLgMcBiKoHfZpZ/GizpHtgDtxO8jsDOzP7OAkt6AdIJwEvlZrYdCkq+GAqQBp9xYEn7L4B24fu+gEVd10i6A9564nKaJTy0DZLWND+a9oz7aWZFH/gffuYegQczK2POklbAH/xELM3shzcuCbP1oNUQFCD0P4T4S62C//9gYBPx3A1BL+C7SLfrnwDeHx2nXggh3pu150+Cv8wHp22MXp0299ZLvEaapJqj0eNi4Ksrwd+X+5l+3jj39UqAwmlfSrqdQgzxS6fL8ycBYq/J8xRwT7zr34K95dhIyscQQ5x3XqsYuL0yn4As4nsAMu/ODbdSBqwjYzMz++V1fAvfZ5rE8M7cGniT9E6zXxVNCXSHv6ddRcuiUyEgaRmMbwbMpmrr3YKnc2xm7zSzmFW89ehFUhYFd+ArIkfgE3q6rEqiVaakDU3i9FWYrY6ckzPviTvVY73lbfiBJefE6+5/RbMyRVipbnxBPFdyM9sOgudoBDy7CngEvLra6zRwSqqrzbhVZObp1cEB/p1zGVyY2eEDX5XemyyjLLAAAAAASUVORK5CYII=) #fff no-repeat 99% center;
  background-size: 15px 15px;
}

#slideMenu .searchbox form {
  position: relative;
}

#slideMenu .searchbox button {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #000;
  color: #fff;
  height: 30px;
  width: 40px;
  text-align: center;
  border: none;
}

#slideMenu .category input {
  display: none;
}

#slideMenu .category label {
  display: block;
  background: #333;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  padding: 12px 10px;
  text-decoration: none;
  background-position: 98% center;
  background-size: 15px 9px;
  border-bottom: solid 1px #666;
  position: relative;
}

#slideMenu .category label:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 8px;
  height: 8px;
  margin: -8px 0 0 0;
  border-top: solid 2px #b88c41;
  border-right: solid 2px #b88c41;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#slideMenu .category input:checked + label:after,
#slideMenu .category input:checked + label:hover:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 0;
  border-top: solid 2px #b88c41;
  border-right: solid 2px #b88c41;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

#slideMenu .category .child {
  height: 0;
  overflow: hidden;
}

#slideMenu .category input:checked ~ .child {
  height: auto;
}

#slideMenu .category ul li a {
  display: block;
  font-size: 13px;
  padding: 10px 10px;
  text-decoration: none;
  color: #FFF;
  border-bottom: solid 1px #666;
  position: relative;
  font-weight: bold;
}

#slideMenu .category ul li a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 0;
  border-top: solid 2px #B88C41;
  border-right: solid 2px #B88C41;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#slideMenu .category ul li ul li a {
  padding-left: 12px;
  font-size: 12px;
  font-weight: normal;
  color: #FFF;
  border-bottom: solid 1px #333;
  background: #666;
}

#slideMenu .closebtn {
  position: absolute;
  left: 0px;
  top: 5px;
}

#slideMenu .closebtn a {
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACAAgMAAAC+UIlYAAAAA3NCSVQICAjb4U/gAAAADFBMVEX////MzMwzMzMAAAAGOrWMAAAACXBIWXMAAAsSAAALEgHS3X78AAAAGHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3NPsx9OAAABQUlEQVRYhe2WsXHDMAxFpRTyDDkVGcEreBj33iDOCF7I5xUyhEdIYRcJIps8HkAReF3SEB0A3ucTRQIYhm7duv2nvVp3v1rwvtPeeK7zo5y0O8muWrCRq3Zn+awWvMlduwf5qhYc5UeJjhf5rhFEQ0yLayFeloiCmBf3wypcREMcxOy4ClXLi2iBmOyG69hskdeqDQQTbCEY2RaCibYQjG4TQYXbCEq4jaDibQSl7CCUhIdQpD2EkvEQiraLkFM+Qhb3ETKEj5AgbgFCgggQEkSAkCAChAQRITwhIoQM4SNkCB8hQUQIw/BgjPK4BULSZ+JB4VHjz6Lf/byO2wACrxxeWrr2+HDw6eHjpeePBQRLEBYxKoNYSLEUYzGndoANBVsSNjVqi9hYuTVTc8fxgAcMHFFwyMExiQetbt26/aX9AvH41kYAlluBAAAAAElFTkSuQmCC) #FFF no-repeat;
  background-position: center center;
  background-size: 24px 24px;
}

/*slider--------------------------------------*/
/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*header--------------------------------------*/
.header {
  width: 100%;
  min-width: 1100px;
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .header {
    width: 100%;
    min-width: auto;
    z-index: 1000;
    position: relative;
  }
}
.header .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .wrap {
  height: 110px;
  margin: 0 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .wrap {
    margin: 0 15px;
    height: 60px;
  }
}
.header .logo {
  width: 250px;
}
@media screen and (max-width: 1500px) {
  .header .logo {
    width: 150px;
  }
}
.header .logo .sub {
  margin-top: 5px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .header .logo .sub {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header .logo img {
    width: auto;
    height: 40px;
  }
}
.header .catch {
  padding-left: 40px;
}
@media screen and (max-width: 1500px) {
  .header .catch {
    display: none;
  }
}
.header .catch h1 {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 2px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .header .catch h1 {
    font-size: 10px;
    line-height: 1.3;
  }
}
.header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding-right: 120px;
}
.header .hnav {
  margin-bottom: 10px;
}
.header .hnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .hnav ul li a {
  display: block;
  padding: 0 20px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  transition: 0.3s;
}
.header .hnav ul li a:hover {
  color: #b88c41;
}
.header .hnav ul li.contact {
  position: relative;
  padding-left: 5px;
}
.header .hnav ul li.contact::before {
  content: "\f0e0";
  font-family: "font awesome 5 free";
  font-weight: 900;
  color: #b88c41;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .header .hnav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header .gnav {
    display: none;
  }
}
.header .gnav ul {
  width: 760px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .header .gnav ul {
    width: 100%;
  }
}
.header .gnav ul li {
  text-align: center;
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.header .gnav ul li a {
  letter-spacing: 2px;
  position: relative;
  transition: 0.3s;
  color: #fff;
  font-size: 14px;
  padding: 15px 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .header .gnav ul li a {
    padding: 10px 0;
    letter-spacing: 0px;
    line-height: 1.3;
  }
}
.header .gnav ul li a:hover {
  color: #b88c41;
}
.header .gnav ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  position: absolute;
  left: 0;
  top: 20%;
  background: #5e4621;
}
.header .gnav ul li:last-child::before {
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  position: absolute;
  right: 0;
  top: 20%;
  background: #5e4621;
}

.main_visual {
  /*test-------*/
  /*test-------*/
}
.main_visual.main_visual_time {
  position: relative;
  width: 100%;
  height: 100%;
}
.main_visual.main_visual_time > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main_visual.main_visual_time #bgMainSub,
.main_visual.main_visual_time #bgMain {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  width: 100%;
}
@media screen and (max-width: 1920px) {
  .main_visual.main_visual_time #bgMainSub,
.main_visual.main_visual_time #bgMain {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .main_visual.main_visual_time #bgMainSub,
.main_visual.main_visual_time #bgMain {
    max-width: 100%;
  }
}
.main_visual.main_visual_time::before {
  content: "";
  display: block;
  padding-top: 31%;
}
@media screen and (max-width: 1920px) {
  .main_visual.main_visual_time::before {
    padding-top: 600px;
  }
}
@media screen and (max-width: 767px) {
  .main_visual.main_visual_time::before {
    padding-top: 125%;
  }
}
.main_visual iframe {
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  border: none;
}

/*top_reason_block--------------------------------------*/
.top_reason_block {
  background: url("../images/top/top_reason_bg.jpg") no-repeat center top;
  background-size: cover;
}
.top_reason_block .wrap {
  padding: 120px 0px;
}
@media screen and (max-width: 767px) {
  .top_reason_block .wrap {
    padding: 60px 15px;
  }
}
.top_reason_block h2 {
  font-size: 0;
  height: 158px;
  background: url("../images/top/top_reason_ttl.png") no-repeat center top;
  background-size: contain;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_reason_block h2 {
    height: 100px;
  }
}
.top_reason_block p {
  text-align: center;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_reason_block p {
    font-size: 13px;
  }
}
.top_reason_block .ghost_btn {
  margin-top: 40px;
}
.top_reason_block .detail_box {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_reason_block .detail_box img {
    width: 80%;
  }
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*top共通--------------------------------------*/
.sec_ttl {
  color: #b88c41;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  margin-left: 85px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sec_ttl {
    margin-left: 65px;
    margin-bottom: 25px;
  }
}
.sec_ttl h3 {
  font-size: 60px;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_ttl h3 {
    font-size: 40px;
  }
}
.sec_ttl h3::before {
  content: "";
  display: block;
  background-color: #b88c41;
  width: 160px;
  height: 1px;
  position: absolute;
  left: -110px;
  top: -10px;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .sec_ttl h3::before {
    width: 110px;
    left: -80px;
    top: 0;
  }
}
.sec_ttl .sub {
  font-size: 24px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .sec_ttl .sub {
    font-size: 18px;
    margin-top: 20px;
  }
}

/*top_service_block--------------------------------------*/
.top_service_block .wrap {
  padding: 120px 0px;
}
@media screen and (max-width: 767px) {
  .top_service_block .wrap {
    padding: 100px 15px 60px;
  }
}
.top_service_block h2 {
  font-size: 0;
  height: 80px;
  background: url("../images/top/top_service_ttl.png") no-repeat center top;
  background-size: contain;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_service_block h2 {
    height: 60px;
    background-image: url(../images/top/top_service_ttl_sp.png);
  }
}
.top_service_block .intro {
  margin-bottom: 80px;
  color: #fff;
  font-size: 16px;
  line-height: 2.2;
  text-align: center;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.top_service_block .service_cosmetic {
  position: relative;
}
.top_service_block .service_cosmetic .sec_ttl {
  position: absolute;
  top: 70px;
  left: 40%;
  width: 60%;
  margin-left: 0px;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic .sec_ttl {
    position: relative;
    left: auto;
    top: auto;
    margin-left: 65px;
  }
}
.top_service_block .service_cosmetic .sec_ttl::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/top/service_05.png) bottom right no-repeat;
  background-size: contain;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 170px;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic .sec_ttl::after {
    display: none;
  }
}
.top_service_block .service_cosmetic .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-flow: wrap;
  -webkit-flex-flow: wrap;
  flex-flow: wrap;
}
.top_service_block .service_cosmetic .left {
  width: 40%;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic .left {
    width: 100%;
    padding-right: 0;
  }
}
.top_service_block .service_cosmetic .right {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic .right {
    width: 100%;
  }
}
.top_service_block .service_cosmetic .cate {
  margin: 50px 0 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic .cate {
    margin-top: 25px;
    -ms-flex-flow: wrap;
    -webkit-flex-flow: wrap;
    flex-flow: wrap;
    -ms-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}
.top_service_block .service_cosmetic li a {
  color: #fff;
  text-align: center;
  transition: 0.4s all;
}
.top_service_block .service_cosmetic li a:hover {
  color: #b88c41;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic li:nth-child(n+3) {
    margin-top: 30px;
  }
}
.top_service_block .service_cosmetic li .text {
  padding-top: 15px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic li .text {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .top_service_block .service_cosmetic li .text::after {
    content: "\f35a";
    font-family: "font awesome 5 free";
    font-weight: 500;
    padding-left: 1em;
  }
}
.top_service_block .service_cosmetic li .photo {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}
.top_service_block .service_cosmetic li.sp_only .photo {
  width: 80%;
}
.top_service_block .service_other {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_other {
    margin-top: 100px;
  }
}
.top_service_block .service_other .sec_ttl {
  position: relative;
}
.top_service_block .service_other .sec_ttl::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/top/service_06.png) bottom right no-repeat;
  background-size: contain;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 170px;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_other .sec_ttl::after {
    display: none;
  }
}
.top_service_block .service_other ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-flow: wrap;
  -webkit-flex-flow: wrap;
  flex-flow: wrap;
}
.top_service_block .service_other li {
  width: calc((100% - 120px) / 4);
}
@media screen and (max-width: 767px) {
  .top_service_block .service_other li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .top_service_block .service_other li:nth-child(n+3) {
    margin-top: 30px;
  }
}
.top_service_block .service_other a:hover h4 {
  color: #b88c41;
}
.top_service_block .service_other .text {
  text-align: center;
  padding-right: 15px;
}
.top_service_block .service_other h4 {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  transition: 0.4s all;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top_service_block .service_other h4 {
    font-size: 17px;
    display: inline-block;
    margin: 15px auto 0;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .top_service_block .service_other h4::after {
    content: "\f35a";
    font-family: "font awesome 5 free";
    font-weight: 500;
    position: absolute;
    right: -2em;
    top: 50%;
    transform: translateY(-50%);
  }
}
.top_service_block .service_other .illust {
  max-width: 280px;
  width: 100%;
  margin: 40px auto;
}

/*top_about_block--------------------------------------*/
@media screen and (max-width: 767px) {
  .top_about_block .wrap {
    padding: 60px 15px;
  }
}
.top_about_block .about_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_about_block .about_box {
    -ms-flex-flow: wrap;
    -webkit-flex-flow: wrap;
    flex-flow: wrap;
    position: relative;
    padding-top: 100px;
  }
}
.top_about_block .about_box:nth-child(n+2) {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .top_about_block .about_box:nth-child(n+2) {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .top_about_block .about_box.reverse {
    -ms-flex-flow: column-reverse;
    -webkit-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .top_about_block .sec_ttl {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.top_about_block .desc,
.top_about_block .link {
  margin-left: 85px;
}
@media screen and (max-width: 767px) {
  .top_about_block .desc,
.top_about_block .link {
    margin-left: 0;
  }
}
.top_about_block .desc {
  max-width: 400px;
  line-height: 2.2;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .top_about_block .desc {
    max-width: none;
    font-size: 15px;
    line-height: 2;
    padding-top: 25px;
  }
}
.top_about_block .link {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top_about_block .link {
    margin-top: 35px;
  }
}
.top_about_block .link a {
  margin: 0 auto;
}

/*top_blog_block--------------------------------------*/
.top_blog_block {
  background: url("../images/top/top_blog_bg2.png") left 30% top repeat-x;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top_blog_block {
    background-position-x: center;
  }
}
@media screen and (max-width: 767px) {
  .top_blog_block .wrap {
    padding: 60px 15px;
  }
}
.top_blog_block h2 {
  font-size: 0;
  height: 80px;
  background: url("../images/top/top_blog_ttl.png") no-repeat center top;
  background-size: contain;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_blog_block h2 {
    height: 80px;
    background-image: url(../images/top/top_blog_ttl_sp.png);
  }
}
.top_blog_block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-flow: wrap;
  -webkit-flex-flow: wrap;
  flex-flow: wrap;
}
.top_blog_block li {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 767px) {
  .top_blog_block li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .top_blog_block li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.top_blog_block li a {
  display: block;
  background-color: #fff;
  padding: 5px 5px 20px;
}
.top_blog_block li .text {
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .top_blog_block li .text {
    padding: 0;
  }
}
.top_blog_block li .date {
  font-size: 14px;
  color: #333;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .top_blog_block li .date {
    font-size: 13px;
    padding-top: 10px;
  }
}
.top_blog_block li .ttl {
  padding-top: 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .top_blog_block li .ttl {
    padding-top: 15px;
    font-size: 17px;
  }
}
.top_blog_block li .link {
  margin-top: 45px;
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .top_blog_block li .link {
    margin-top: 20px;
    font-size: 13px;
  }
}
.top_blog_block .btn {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .top_blog_block .btn {
    margin-top: 50px;
  }
}
.top_blog_block .btn a {
  margin: 0 auto;
}

/*top_case_block--------------------------------------*/
.top_case_block .wrap {
  padding: 60px 0px 120px;
  position: relative;
  /*
  &::before{
    content: "";
    width: 202px;
    height: 211px;
    display: block;
    background-image: url("../images/top/top_case_bg2.png");
    background-size:contain;
    background-repeat: no-repeat;
    position: absolute;
    right:0;
    bottom:150px;
    @include mq{
      width: 100px;
      height: 110px;
      bottom:10px;
    }
  }
  */
}
@media screen and (max-width: 767px) {
  .top_case_block .wrap {
    padding: 60px 15px;
  }
}
.top_case_block h2 {
  font-size: 0;
  height: 80px;
  background: url("../images/top/top_case_ttl.png") no-repeat center top;
  background-size: contain;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_case_block h2 {
    height: 60px;
    background-image: url("../images/top/top_case_ttl_sp.png");
  }
}
.top_case_block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
}
.top_case_block ul::after {
  content: "";
  display: block;
  width: 31%;
}
.top_case_block ul li {
  width: 31%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_case_block ul li {
    width: 48%;
    margin-bottom: 20px;
  }
}
.top_case_block ul li img {
  width: 100%;
  height: auto;
}
.top_case_block ul a {
  display: block;
  transition: 0.3s;
}
.top_case_block ul a h3 {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  padding: 0px;
  margin: 20px 0 0;
  border: none;
  text-align: center;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .top_case_block ul a h3 {
    margin: 10px 0 0;
    font-size: 17px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .top_case_block ul a h3::after {
    content: "\f35a";
    font-family: "font awesome 5 free";
    font-weight: 500;
    padding-left: 1em;
  }
}
.top_case_block ul a:hover h3 {
  color: #b88c41;
}

/*top_faq_block--------------------------------------*/
.top_faq_block {
  color: #fff;
}
.top_faq_block .wrap {
  padding: 60px 0px 170px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_faq_block .wrap {
    padding: 60px 15px 130px;
  }
}
.top_faq_block .wrap::before {
  content: "";
  width: 137px;
  height: 79px;
  display: block;
  background-image: url("../images/top/top_case_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 70px;
}
@media screen and (max-width: 767px) {
  .top_faq_block .wrap::before {
    bottom: 10px;
  }
}
.top_faq_block h2 {
  font-size: 0;
  height: 80px;
  background: url("../images/top/top_faq_ttl.png") no-repeat center top;
  background-size: contain;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_faq_block h2 {
    height: 80px;
    background-image: url("../images/top/top_faq_ttl_sp.png");
  }
}
.top_faq_block dl:nth-child(n+2) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top_faq_block dl:nth-child(n+2) {
    margin-top: 30px;
  }
}
.top_faq_block dt,
.top_faq_block dd {
  letter-spacing: 0.05em;
  position: relative;
}
.top_faq_block dt::before,
.top_faq_block dd::before {
  display: block;
  position: absolute;
  font-size: 24px;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top_faq_block dt::before,
.top_faq_block dd::before {
    left: 20px;
  }
}
.top_faq_block dt {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 70px;
  cursor: pointer;
}
.top_faq_block dt::before {
  content: "Q";
}
.top_faq_block dt.active h3::after {
  transform: translateY(-50%) rotate(90deg);
}
.top_faq_block dd {
  margin-top: 30px;
  padding: 0 90px;
  line-height: 1.8;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .top_faq_block dd {
    margin-top: 15px;
    font-size: 15px;
    padding: 0 5px 0 55px;
  }
}
.top_faq_block dd::before {
  top: -10px;
  content: "A";
  transform: translateY(0%);
}
.top_faq_block h3 {
  padding: 20px 90px;
  font-size: 20px;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_faq_block h3 {
    padding: 15px 55px;
    font-size: 17px;
  }
}
.top_faq_block h3::before, .top_faq_block h3::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 40px;
  transition: 0.4s all;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top_faq_block h3::before, .top_faq_block h3::after {
    width: 14px;
    right: 20px;
  }
}
.top_faq_block .link {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .top_faq_block .link {
    margin-top: 50px;
  }
}
.top_faq_block .link a {
  margin: 0 auto;
}

/*top_flow_block--------------------------------------*/
.top_flow_block {
  background: url("../images/top/top_flow_bg.jpg") repeat-x center top;
}
.top_flow_block .wrap {
  padding: 120px 0px 60px;
}
@media screen and (max-width: 767px) {
  .top_flow_block .wrap {
    padding: 40px 15px 10px;
  }
}
.top_flow_block h2 {
  font-size: 0;
  height: 97px;
  background: url("../images/top/top_flow_ttl.png") no-repeat center top;
  background-size: contain;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_flow_block h2 {
    height: 55px;
  }
}
.top_flow_block h2::before {
  content: "";
  width: 137px;
  height: 79px;
  display: block;
  background-image: url("../images/top/top_flow_bg.png");
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
}
.top_flow_block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
}
.top_flow_block ul li {
  width: 23%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_flow_block ul li {
    width: 48%;
    margin-bottom: 20px;
  }
}
.top_flow_block ul li img {
  width: 100%;
  height: auto;
}
.top_flow_block ul a {
  transition: 0.3s;
  position: relative;
  display: block;
}
.top_flow_block ul a h3 {
  display: block;
  color: #fff;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: normal;
  letter-spacing: 1px;
  padding: 0px;
  margin: 20px 0 20px;
  border: none;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top_flow_block ul a h3 {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
  }
}
.top_flow_block ul a p {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_flow_block ul a p {
    font-size: 12px;
  }
}
.top_flow_block ul a p span {
  font-size: 80%;
}
.top_flow_block ul a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: url("../images/top/top_flow_icon1.png") no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top_flow_block ul a::after {
    width: 50px;
    height: 50px;
  }
}
.top_flow_block ul li:nth-of-type(2) a::after {
  background-image: url("../images/top/top_flow_icon2.png");
}
.top_flow_block ul li:nth-of-type(3) a::after {
  background-image: url("../images/top/top_flow_icon3.png");
}
.top_flow_block ul li:nth-of-type(4) a::after {
  background-image: url("../images/top/top_flow_icon4.png");
}

/*top_info_block--------------------------------------*/
.top_info_block {
  background: url("../images/top/top_info_bg.png") no-repeat left top;
  background-size: cover;
}
.top_info_block .wrap {
  padding: 130px 0px 200px;
}
@media screen and (max-width: 767px) {
  .top_info_block .wrap {
    padding: 100px 15px 100px;
  }
}
.top_info_block h2 {
  font-size: 0;
  height: 80px;
  background: url("../images/top/top_info_ttl.png") no-repeat center top;
  background-size: contain;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_info_block h2 {
    height: 60px;
    background-image: url(../images/top/top_info_ttl_sp.png);
    margin-bottom: 30px;
  }
}
.top_info_block li {
  padding: 30px 0px;
  border-bottom: solid 1px #555;
}
@media screen and (max-width: 767px) {
  .top_info_block li {
    padding: 20px 0px;
  }
}
.top_info_block li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_info_block li a {
    -ms-flex-flow: column wrap;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}
.top_info_block li a .info {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .top_info_block li a .info {
    width: 100%;
    margin-bottom: 10px;
  }
}
.top_info_block li a .cap {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .top_info_block li a .cap {
    width: 100%;
  }
}
.top_info_block li a p {
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top_info_block li a p {
    font-size: 15px;
  }
}
.top_info_block li a p.date {
  width: 135px;
  vertical-align: middle;
  display: inline-block;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .top_info_block li a p.date {
    width: auto;
    padding-right: 20px;
  }
}
.top_info_block li a p.type {
  width: 100px;
  font-size: 14px;
  display: inline-block;
  margin: 0px auto;
  background: #333333;
  letter-spacing: 2px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_info_block li a p.type {
    width: 80px;
    font-size: 13px;
  }
}
.top_info_block .ghost_btn {
  margin-top: 40px;
}

.top_banner_block .flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_banner_block .flex {
    display: block;
  }
}
.top_banner_block .flex img {
  display: block;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_banner_block .flex img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top_banner_block .flex .banner-margin {
    margin-top: 20px;
  }
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*ヘッダータイトル部分*/
.header_title {
  background: url("../images/header/service_yk_main.jpg") no-repeat center center;
  background-size: cover;
}
.header_title .wrap {
  position: relative;
  height: 250px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: column nowrap;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header_title .wrap {
    height: 150px;
  }
}
.header_title h1 {
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0 0 10px;
  text-shadow: 2px 2px 10px #666;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .header_title h1 {
    font-size: 24px;
  }
}
.header_title p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .header_title p {
    font-size: 13px;
  }
}

/*パンくず*/
.breadcrumbs {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 11px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
.breadcrumbs span {
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
.breadcrumbs a {
  text-decoration: underline;
  color: #666;
}
.breadcrumbs a span {
  text-decoration: underline;
}

/*サービス他社との違い*/
.service_difference_block {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .service_difference_block {
    margin-bottom: 40px;
  }
}
.service_difference_block h2 {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service_difference_block h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.service_difference_block h2::before {
  content: "";
  background: url("../images/common/page_item_ttl_icon.png") no-repeat;
  background-size: contain;
  width: 150px;
  height: 37px;
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .service_difference_block h2::before {
    width: 75px;
    height: 24px;
    margin-bottom: 20px;
  }
}
.service_difference_block .textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 940px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .service_difference_block .textbox {
    width: 100%;
    margin: 0 0px 30px;
  }
}
.service_difference_block .textbox .text {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .service_difference_block .textbox .text {
    width: 100%;
  }
}
.service_difference_block .textbox .text h3 {
  color: #B88C41;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service_difference_block .textbox .text h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }
}
.service_difference_block .textbox .text .btn {
  display: inline-block;
  width: 350px;
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service_difference_block .textbox .text .btn {
    width: 100%;
  }
}
.service_difference_block .textbox .text .btn a {
  background-color: #B88C41;
  color: #FFF;
  border-radius: 5px;
  padding: 20px 0px;
  display: block;
}
.service_difference_block .textbox .text .btn a:hover {
  background-color: #DBC299;
}
.service_difference_block .textbox .text .btn::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 10%;
}
.service_difference_block .textbox .text p {
  font-size: 18px;
  line-height: 2;
}
.service_difference_block .textbox .text p span {
  font-size: 80%;
}
@media screen and (max-width: 767px) {
  .service_difference_block .textbox .text p {
    font-size: 14px;
  }
}
.service_difference_block .textbox .photo {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service_difference_block .textbox .photo {
    width: 100%;
    margin-top: 20px;
  }
  .service_difference_block .textbox .photo img {
    width: 80%;
    margin: 0 auto;
  }
}
.service_difference_block .arrowbox {
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 940px;
}
@media screen and (max-width: 767px) {
  .service_difference_block .arrowbox {
    width: 100%;
    margin: 20px auto;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
  }
}
.service_difference_block .arrowbox .img {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service_difference_block .arrowbox .img {
    width: 100%;
  }
  .service_difference_block .arrowbox .img img {
    height: 160px;
    margin: 0 auto;
    display: block;
  }
}
.service_difference_block .arrowbox .arrow {
  width: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service_difference_block .arrowbox .arrow {
    width: 100%;
    height: 40px;
  }
}
.service_difference_block .arrowbox .arrow::after {
  content: "\f0da";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -20px;
  font-family: Font Awesome\ 5 Free;
  font-size: 40px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .service_difference_block .arrowbox .arrow::after {
    right: 50%;
    margin-right: -20px;
    content: "\f0d7";
  }
}
.service_difference_block .text2 {
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 1.3;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .service_difference_block .text2 {
    font-size: 20px;
  }
}
.service_difference_block .text2 b,
.service_difference_block .text2 big {
  color: #B88C41;
  font-weight: bold;
}
.service_difference_block .text2 big {
  font-size: 200%;
}

/*サービスの流れ*/
.service_flow_block {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .service_flow_block {
    margin-bottom: 0px;
  }
}
.service_flow_block h2 {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service_flow_block h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.service_flow_block h2::before {
  content: "";
  background: url("../images/common/page_item_ttl_icon.png") no-repeat;
  background-size: contain;
  width: 150px;
  height: 37px;
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .service_flow_block h2::before {
    width: 75px;
    height: 24px;
    margin-bottom: 20px;
  }
}
.service_flow_block .flowbox {
  width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox {
    width: 100%;
  }
}
.service_flow_block .flowbox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox dl {
    margin-bottom: 20px;
  }
}
.service_flow_block .flowbox dl dt {
  position: relative;
  width: 50px;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox dl dt {
    width: 30px;
  }
}
.service_flow_block .flowbox dl dt span {
  background: #B8841C;
  color: #FFF;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  line-height: 50px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox dl dt span {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    line-height: 30px;
    font-size: 20px;
  }
}
.service_flow_block .flowbox dl dt::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  z-index: 1;
  background: #F1E8D9;
  position: absolute;
  left: 20px;
  top: 0px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox dl dt::before {
    width: 5px;
    left: 12px;
  }
}
.service_flow_block .flowbox dl dt::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #F1E8D9 transparent transparent transparent;
  position: absolute;
  left: 5px;
  bottom: -20px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox dl dt::after {
    left: 0;
    bottom: -15px;
    border-width: 15px 15px 0 15px;
  }
}
.service_flow_block .flowbox dl dd {
  width: calc(100% - 80px);
  text-align: left;
  padding-bottom: 40px;
  border-bottom: dotted 2px #D6BD91;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox dl dd {
    width: calc(100% - 50px);
    padding-bottom: 20px;
  }
}
.service_flow_block .flowbox dl dd h3 {
  color: #B88C41;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox dl dd h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.service_flow_block .flowbox dl dd .innerbox {
  border: dotted 2px #D6BD91;
  padding: 15px 20px;
  display: inline-block;
  font-size: 16px;
  line-height: 2;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .service_flow_block .flowbox dl dd .innerbox {
    font-size: 13px;
    padding: 10px;
  }
}
.service_flow_block .flowbox dl.last dt span {
  background: #C56161;
}
.service_flow_block .flowbox dl.last dt::before, .service_flow_block .flowbox dl.last dt::after {
  display: none;
}
.service_flow_block .flowbox dl.last dd {
  border-bottom: none;
}
.service_flow_block .flowbox dl.last dd h3 {
  color: #C56161;
}
.service_flow_block .textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: start;
  -webkit-align-items: start;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox {
    width: 100%;
  }
}
.service_flow_block .textbox .text {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox .text {
    width: 100%;
  }
}
.service_flow_block .textbox .text p {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox .text p {
    font-size: 14px;
  }
}
.service_flow_block .textbox .photo {
  width: 35%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox .photo {
    width: 100%;
    margin-top: 20px;
  }
  .service_flow_block .textbox .photo img {
    width: 80%;
    margin: 0 auto;
  }
}
.service_flow_block .textbox .photo p + p {
  margin-top: 30px;
}
.service_flow_block .textbox2 .text {
  width: 100%;
}
.service_flow_block .textbox2 .text p {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox2 .text p {
    font-size: 14px;
  }
}
.service_flow_block .textbox2 .photo {
  width: 80%;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox2 .photo {
    width: 100%;
  }
}
.service_flow_block .textbox2 .photo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: start;
  -webkit-align-items: start;
  align-items: start;
}
.service_flow_block .textbox2 .photo li {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox2 .photo li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.service_flow_block .textbox2 .photo li img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox2 .photo li img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}
.service_flow_block .textbox2 .photo p {
  margin-bottom: 10px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .service_flow_block .textbox2 .photo p {
    font-size: 13px;
    margin-bottom: 5px;
  }
}
.service_flow_block .arrowbox {
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 940px;
}
@media screen and (max-width: 767px) {
  .service_flow_block .arrowbox {
    width: 100%;
    margin: 20px auto;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
  }
}
.service_flow_block .arrowbox .img {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service_flow_block .arrowbox .img {
    width: 100%;
  }
  .service_flow_block .arrowbox .img img {
    height: 160px;
    margin: 0 auto;
    display: block;
  }
}
.service_flow_block .arrowbox .arrow {
  width: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service_flow_block .arrowbox .arrow {
    width: 100%;
    height: 40px;
  }
}
.service_flow_block .arrowbox .arrow::after {
  content: "\f0da";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -20px;
  font-family: Font Awesome\ 5 Free;
  font-size: 40px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .service_flow_block .arrowbox .arrow::after {
    right: 50%;
    margin-right: -20px;
    content: "\f0d7";
  }
}
.service_flow_block .text2 {
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 1.3;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .service_flow_block .text2 {
    font-size: 20px;
  }
}
.service_flow_block .text2 b,
.service_flow_block .text2 big {
  color: #B88C41;
  font-weight: bold;
}
.service_flow_block .text2 big {
  font-size: 200%;
}

/*ページレイアウト1列*/
.column1_page {
  background: url("../images/common/page_bg.jpg") #F1ECE6 repeat center top;
}
.column1_page .main_contents {
  float: none;
  width: 100%;
}
.column1_page .wrap {
  width: 1200px;
  padding: 40px 50px 100px;
  background: #FFF;
  position: relative;
  box-shadow: 1px 2px 10px rgba(100, 100, 100, 0.2);
}
@media screen and (max-width: 767px) {
  .column1_page .wrap {
    width: 100%;
    padding: 15px 15px;
  }
}
.column1_page .intro_block {
  margin: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .column1_page .intro_block {
    margin: 40px 0;
  }
}
.column1_page .intro_block h2 {
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #B88C41;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .column1_page .intro_block h2 {
    font-size: 20px;
  }
}
.column1_page .intro_block p {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .column1_page .intro_block p {
    font-size: 14px;
  }
  .column1_page .intro_block p br {
    display: none;
  }
}
.column1_page .service_list_block h2 {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.column1_page .service_list_block h2::before {
  content: "";
  background: url("../images/common/page_item_ttl_icon.png") no-repeat;
  background-size: contain;
  width: 150px;
  height: 37px;
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block h2::before {
    width: 75px;
    height: 24px;
    margin-bottom: 20px;
  }
}
.column1_page .service_list_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column1_page .service_list_block .list_wrap::before {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block .list_wrap::before {
    display: none;
  }
}
.column1_page .service_list_block .list_wrap::after {
  content: "";
  display: block;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block .list_wrap::after {
    display: none;
  }
}
.column1_page .service_list_block .list_wrap .itembox {
  width: 32%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block .list_wrap .itembox {
    width: 48%;
  }
}
.column1_page .service_list_block .list_wrap .itembox img {
  width: 100%;
  height: auto;
}
.column1_page .service_list_block .list_wrap .itembox a {
  display: block;
}
.column1_page .service_list_block .list_wrap .itembox h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block .list_wrap .itembox h3 {
    font-size: 14px;
  }
}
.column1_page .service_list_block .list_wrap .itembox h3 span {
  font-size: 80%;
}
.column1_page .example_contact_block {
  margin: 0 0 60px;
  background: #FFF;
  border: #D4BE98 1px solid;
  padding: 50px 150px 20px 150px;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block {
    margin: 40px auto;
    padding: 20px 20px 1px;
  }
}
.column1_page .example_contact_block p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block p {
    font-size: 15px;
    text-align: left;
    margin-bottom: 30px;
  }
}
.column1_page .example_contact_block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: start;
  -webkit-align-items: start;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row {
    width: 100%;
    display: block;
    margin: 0;
  }
}
.column1_page .example_contact_block .row .col {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row .col {
    width: 100%;
    margin-bottom: 20px;
  }
}
.column1_page .example_contact_block .row .tel {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row .tel img {
    height: 24px;
  }
}
.column1_page .example_contact_block .row h4 {
  border-left: solid 3px #B88C41;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 5px 0 5px 20px;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
  }
}
.column1_page .example_contact_block .row p {
  font-size: 13px;
  text-align: left;
}
.column1_page .example_contact_block .row .contact_btn a {
  font-size: 16px;
  line-height: 1.8;
  display: block;
  padding: 20px 0px;
  text-align: center;
  transition: 0.3s;
  background: transparent;
  background-color: #CC3333;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row .contact_btn a {
    font-size: 14px;
  }
}
.column1_page .example_contact_block .row .contact_btn a:hover {
  background: #DC7474;
}
.column1_page .example_contact_block .row .contact_btn i {
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin-right: 40px;
}
.column1_page .example_contact_block .row .contact_btn i::after {
  content: "";
  background: url("../images/example/contact_mail_wh.png") no-repeat;
  background-size: contain;
  width: 28px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: 5px;
}
.column1_page .item_list_block .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .flex {
    display: block;
    justify-content: start;
    margin-bottom: 30px;
  }
}
.column1_page .item_list_block .health_itembox .health_name .main-image img {
  width: 1550px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_itembox .health_name .main-image img {
    width: 100%;
  }
}
.column1_page .item_list_block .nmn-area {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .nmn-area {
    padding-left: 0;
  }
}
.column1_page .item_list_block .nmn-area .headding-h3 {
  border-bottom: none;
  margin-bottom: 0;
  font-weight: bold;
}
.column1_page .item_list_block .nmn-area .sub-h4 {
  display: block;
  margin-bottom: 15px;
}
.column1_page .item_list_block .nmn-area .headding-h4 {
  margin-bottom: 5px;
}
.column1_page .item_list_block .nmn-area .product-text {
  margin-bottom: 15px;
}
.column1_page .item_list_block .nmn-area .about-nmn .nmn-h3 {
  border-bottom: none;
  margin-bottom: 0;
  background: #b28146;
  color: #fff;
  width: 400px;
  padding: 10px 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .nmn-area .about-nmn .nmn-h3 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .nmn-area .about-nmn span {
    display: inline;
  }
}
.column1_page .item_list_block .nmn-area .about-nmn .opacity {
  opacity: 0.7;
}
.column1_page .item_list_block h2 {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.column1_page .item_list_block h2::before {
  content: "";
  background: url("../images/common/page_item_ttl_icon.png") no-repeat;
  background-size: contain;
  width: 150px;
  height: 37px;
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block h2::before {
    width: 75px;
    height: 24px;
    margin-bottom: 20px;
  }
}
.column1_page .item_list_block h3 {
  padding: 0 0 10px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column1_page .item_list_block h3 span {
  font-size: 13px;
  font-weight: normal;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block h3 span {
    font-size: 11px;
    display: block;
  }
}
.column1_page .item_list_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column1_page .item_list_block .list_wrap::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap::before {
    display: none;
  }
}
.column1_page .item_list_block .list_wrap::after {
  content: "";
  display: block;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap::after {
    display: none;
  }
}
.column1_page .item_list_block .list_wrap .itembox {
  width: 23%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap .itembox {
    width: 48%;
  }
}
.column1_page .item_list_block .list_wrap .itembox a {
  display: block;
}
.column1_page .item_list_block .list_wrap .itembox img {
  width: 250px;
  height: 250px;
}
.column1_page .item_list_block .list_wrap .itembox img.border_img {
  border: 1px solid #E4E4E4;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap .itembox img {
    width: 100%;
    height: 45.514vw;
  }
}
.column1_page .item_list_block .list_wrap .itembox h4 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap .itembox h4 {
    font-size: 14px;
  }
}
.column1_page .item_list_block .list_wrap .itembox h4 span {
  font-size: 80%;
}
.column1_page .item_list_block .health_list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column1_page .item_list_block .health_list_wrap::before {
  content: "";
  display: block;
  width: 31%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_list_wrap::before {
    display: none;
  }
}
.column1_page .item_list_block .health_list_wrap::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_list_wrap::after {
    display: none;
  }
}
.column1_page .item_list_block .health_list_wrap .health_itembox {
  width: 31%;
  margin-bottom: 50px;
}
.column1_page .item_list_block .health_list_wrap .health_itembox .health_list dt {
  margin-bottom: 10px;
}
.column1_page .item_list_block .health_list_wrap .health_itembox .health_list dd {
  line-height: 20px;
  margin-bottom: 20px;
}
.column1_page .item_list_block .health_list_wrap .health_itembox .health_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 10px;
}
.column1_page .item_list_block .health_list_wrap .health_itembox .health_name .photo {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_list_wrap .health_itembox {
    width: 100%;
  }
}
.column1_page .item_list_block .health_list_wrap .health_itembox a {
  display: block;
}
.column1_page .item_list_block .health_list_wrap .health_itembox h4 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_list_wrap .health_itembox h4 {
    font-size: 14px;
  }
}
.column1_page .item_list_block .health_list_wrap .health_itembox h4 span {
  font-size: 80%;
}
.column1_page .search_block {
  background: #F0F0F0;
  padding: 40px;
  font-size: 0;
  width: 80%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .column1_page .search_block {
    width: 100%;
    padding: 15px;
  }
}
.column1_page .search_block h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 5px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .column1_page .search_block h3 {
    font-size: 16px;
  }
}
.column1_page .search_block h3 i {
  margin-left: -5px;
  margin-right: 5px;
}
.column1_page .search_block dl {
  width: 49%;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .column1_page .search_block dl {
    width: 100%;
    display: block;
  }
}
.column1_page .search_block dl:nth-of-type(2n) {
  margin-left: 2%;
}
@media screen and (max-width: 767px) {
  .column1_page .search_block dl:nth-of-type(2n) {
    margin-left: 0px;
  }
}
.column1_page .search_block dt {
  font-size: 12px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .column1_page .search_block dt {
    font-size: 11px;
  }
}
.column1_page .search_block dd input[type=text] {
  width: 100%;
}
.column1_page .search_block dd select {
  width: 100%;
}
.column1_page .search_block button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 10px;
  width: 100%;
  border: none;
  background: #000;
  color: #FFF;
  text-align: center;
  padding: 10px;
}

/*ページレイアウト2列*/
.column2_page {
  background: url("../images/common/page_bg.jpg") #F1ECE6 repeat center top;
}
.column2_page .wrap {
  width: 1200px;
  padding: 40px 50px 100px;
  background: #FFF;
  position: relative;
  box-shadow: 1px 2px 10px rgba(100, 100, 100, 0.2);
}
@media screen and (max-width: 767px) {
  .column2_page .wrap {
    width: 100%;
    padding: 15px 15px;
  }
}
.column2_page .item_list_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .column2_page .item_list_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .item_list_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.column2_page .item_list_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column2_page .item_list_block .list_wrap::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_list_block .list_wrap::after {
    display: none;
  }
}
.column2_page .item_list_block .list_wrap .itembox {
  width: 31%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column2_page .item_list_block .list_wrap .itembox {
    width: 48%;
  }
}
.column2_page .item_list_block .list_wrap .itembox a {
  display: block;
}
.column2_page .item_list_block .list_wrap .itembox h4 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column2_page .item_list_block .list_wrap .itembox h4 {
    font-size: 14px;
  }
}
.column2_page .item_list_block .list_wrap .itembox h4 span {
  font-size: 80%;
}
.column2_page .item_detail_block {
  margin-bottom: 60px;
}
.column2_page .item_detail_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .item_detail_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.column2_page .item_detail_block .photo_wrap {
  overflow: hidden;
}
.column2_page .item_detail_block .photo_wrap .main_photo {
  width: 600px;
  float: left;
}
.column2_page .item_detail_block .photo_wrap .main_photo img {
  border: solid 1px #EEE;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .photo_wrap .main_photo {
    width: 100%;
    float: none;
  }
}
.column2_page .item_detail_block .photo_wrap .thumb_photo {
  width: 230px;
  float: right;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .photo_wrap .thumb_photo {
    display: none;
  }
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul::after {
  content: "";
  display: block;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .photo_wrap .thumb_photo ul::after {
    display: none;
  }
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul li {
  width: 32%;
  margin-bottom: 6px;
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul li img {
  width: 100%;
  height: auto;
  border: solid 1px #EEE;
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul li.thumbnail-current img {
  border: solid 1px #B88C41;
}
.column2_page .item_detail_block .order_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap {
    margin: 30px 0;
  }
}
.column2_page .item_detail_block .order_wrap .item_name {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap .item_name {
    width: 100%;
    margin-bottom: 20px;
  }
}
.column2_page .item_detail_block .order_wrap .item_name p {
  margin: 0 0 5px;
  font-size: 12px;
}
.column2_page .item_detail_block .order_wrap .item_name h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap .item_name h1 {
    font-size: 24px;
  }
}
.column2_page .item_detail_block .order_wrap .order_btn {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap .order_btn {
    width: 100%;
  }
}
.column2_page .item_detail_block .order_wrap .order_btn a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  display: block;
  padding: 20px 0px;
  text-align: center;
  transition: 0.3s;
  border: solid 1px #B88C41;
  background: #B88C41;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap .order_btn a {
    font-size: 14px;
  }
}
.column2_page .item_detail_block .order_wrap .order_btn a:hover {
  opacity: 0.7;
}
.column2_page .item_detail_block .order_wrap .order_btn i {
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin-right: 30px;
}
.column2_page .item_detail_block .order_wrap .order_btn i::after {
  content: "";
  background: url("../images/common/page_item_btn_icon.png") no-repeat;
  background-size: contain;
  width: 17px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: 5px;
}
.column2_page .item_detail_block .description {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .description {
    margin: 30px auto;
  }
}
.column2_page .item_detail_block .description p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .spec_tbl {
    overflow: auto;
    white-space: nowrap;
  }
  .column2_page .item_detail_block .spec_tbl::-webkit-scrollbar {
    height: 5px;
  }
  .column2_page .item_detail_block .spec_tbl::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .column2_page .item_detail_block .spec_tbl::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
.column2_page .item_detail_block .spec_tbl table {
  border-collapse: collapse;
  /*table-layout: fixed;*/
  border: solid 1px #CCC;
  width: 100%;
}
.column2_page .item_detail_block .spec_tbl table th,
.column2_page .item_detail_block .spec_tbl table td {
  padding: 15px 10px;
  border: solid 1px #CCC;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: middle;
  width: 16.6666666667%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .spec_tbl table th,
.column2_page .item_detail_block .spec_tbl table td {
    padding: 10px;
    font-size: 13px;
  }
}
.column2_page .item_detail_block .spec_tbl table th {
  background: #DFDFDF;
  border-bottom: none;
  text-align: center;
}
.column2_page .item_detail_block .spec_tbl table tbody tr:first-of-type td {
  border-top: none;
}
.column2_page .item_detail_block .spec_tbl + .spec_tbl {
  margin-top: 20px;
}
.column2_page .item_relation_block {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .item_relation_block {
    margin: 40px 0;
  }
}
.column2_page .item_relation_block h3 {
  padding: 0 0 10px 0px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column2_page .item_relation_block h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .item_relation_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.column2_page .item_relation_block .list_wrap .itembox {
  width: calc((100% - 101px) / 6);
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column2_page .item_relation_block .list_wrap .itembox {
    width: calc((100% - 21px) / 3);
    margin-right: 10px;
  }
  .column2_page .item_relation_block .list_wrap .itembox:nth-of-type(3n) {
    margin-right: 0px !important;
  }
}
.column2_page .item_relation_block .list_wrap .itembox:nth-of-type(6n) {
  margin-right: 0;
}
.column2_page .item_relation_block .list_wrap .itembox a {
  display: block;
}
.column2_page .item_relation_block .list_wrap .itembox h4 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column2_page .item_relation_block .list_wrap .itembox h4 {
    font-size: 11px;
  }
}
.column2_page .item_relation_block .list_wrap .itembox h4 span {
  font-size: 80%;
}

/*サイドナビカテゴリ*/
.sidenav .banner_block {
  margin-bottom: 30px;
}
.sidenav .banner_block li {
  margin-bottom: 20px;
}
.sidenav .banner_block li:last-child {
  margin-bottom: 0;
}
.sidenav .search_block {
  background: #F0F0F0;
  padding: 15px;
  margin-bottom: 40px;
}
.sidenav .search_block h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 5px;
  text-align: center;
}
.sidenav .search_block h3 i {
  margin-left: -5px;
  margin-right: 5px;
}
.sidenav .search_block dl {
  margin-bottom: 10px;
}
.sidenav .search_block dt {
  font-size: 11px;
  margin-bottom: 5px;
}
.sidenav .search_block dd input[type=text] {
  width: 100%;
}
.sidenav .search_block dd select {
  width: 100%;
}
.sidenav .search_block button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 10px;
  width: 100%;
  border: none;
  background: #000;
  color: #FFF;
  text-align: center;
  padding: 10px;
}
.sidenav .category_nav_block {
  margin-bottom: 30px;
  border-top: solid 3px #000;
}
.sidenav .category_nav_block > ul li a {
  position: relative;
  display: block;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
  border-bottom: solid 1px #000;
  transition: 0.3s;
}
.sidenav .category_nav_block > ul li a:hover, .sidenav .category_nav_block > ul li a.active {
  background: #F0F0F0;
}
.sidenav .category_nav_block > ul li a::after {
  content: "\f105";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\ 5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.sidenav .category_nav_block dt {
  position: relative;
  display: block;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: solid 1px #000;
  transition: 0.3s;
}
.sidenav .category_nav_block dt:hover {
  background: #F0F0F0;
}
.sidenav .category_nav_block dt::after {
  content: "\f107";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\ 5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.sidenav .category_nav_block dt.active::after {
  content: "\f106";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\ 5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.sidenav .category_nav_block dd {
  display: none;
}
.sidenav .category_nav_block dd li {
  font-size: 13px;
  line-height: 1.8;
  border-bottom: dotted 1px #999;
}
.sidenav .category_nav_block dd li:last-child {
  border-bottom: solid 1px #000;
}
.sidenav .category_nav_block dd li a {
  display: block;
  text-decoration: underline;
  padding: 8px 10px;
}
.sidenav .category_nav_block dd li a:hover {
  text-decoration: none;
}

.cbd_width {
  border: 1px solid #efefef;
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*ページレイアウト2列*/
.column2_page .company_block {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .column2_page .company_block {
    margin-bottom: 30px;
  }
}
.column2_page .company_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .column2_page .company_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .company_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.column2_page .company_block p {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .company_block p {
    font-size: 14px;
  }
}
.column2_page .company_block p + p {
  margin-top: 1em;
}
.column2_page .company_block .rec_ttl {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  padding-left: 15px;
  margin: 40px 0 -20px;
  border-left: solid 3px #333;
}
@media screen and (max-width: 767px) {
  .column2_page .company_block .rec_ttl {
    padding-left: 8px;
    font-size: 18px;
    margin: 20px 0 0px;
  }
}
.column2_page .company_block .tbl {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .company_block .tbl {
    margin: 20px 0;
  }
}
.column2_page .company_block .tbl table {
  border-collapse: collapse;
  /*table-layout: fixed;*/
  border: solid 1px #CCC;
  width: 100%;
}
.column2_page .company_block .tbl table th, .column2_page .company_block .tbl table td {
  padding: 15px 10px;
  border: solid 1px #CCC;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  vertical-align: middle;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .column2_page .company_block .tbl table th, .column2_page .company_block .tbl table td {
    padding: 10px;
    font-size: 13px;
  }
}
.column2_page .company_block .tbl table th {
  background: #F0F0F0;
  text-align: center;
  font-weight: bold;
}
.column2_page .factory_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .column2_page .factory_block {
    margin-bottom: 30px;
  }
}
.column2_page .factory_block .text {
  width: 60%;
  order: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .factory_block .text {
    width: 100%;
  }
}
.column2_page .factory_block .text h3 {
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column2_page .factory_block .text h3 {
    font-size: 20px;
  }
}
.column2_page .factory_block .text2 {
  width: 100%;
  order: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .factory_block .text2 {
    width: 100%;
  }
}
.column2_page .factory_block .text2 h3 {
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column2_page .factory_block .text2 h3 {
    font-size: 20px;
  }
}
.column2_page .factory_block .photo-r {
  width: 35%;
  text-align: center;
  order: 3;
}
@media screen and (max-width: 767px) {
  .column2_page .factory_block .photo-r {
    width: 100%;
    order: 3;
    margin-top: 20px;
  }
  .column2_page .factory_block .photo-r img {
    width: 50%;
  }
}
.column2_page .factory_block .photo-l {
  width: 35%;
  text-align: center;
  order: 1;
}
@media screen and (max-width: 767px) {
  .column2_page .factory_block .photo-l {
    width: 100%;
    order: 3;
    margin-top: 20px;
  }
  .column2_page .factory_block .photo-l img {
    width: 50%;
  }
}

/*サイドナビカテゴリ*/
/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*ページレイアウト2列*/
.column2_page .inquiry_block {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block {
    margin-bottom: 30px;
  }
}
.column2_page .inquiry_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .inquiry_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.column2_page .inquiry_block p {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block p {
    font-size: 14px;
  }
}
.column2_page .inquiry_block p + p {
  margin-top: 1em;
}
.column2_page .inquiry_block h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  padding-left: 15px;
  margin: 40px 0 20px;
  border-left: solid 3px #333;
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block h3 {
    padding-left: 8px;
    font-size: 18px;
    margin: 30px 0 15px;
  }
}
.column2_page .inquiry_block .telbox {
  margin-bottom: 40px;
}
.column2_page .inquiry_block .telbox p {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block .telbox p {
    display: block;
    font-size: 13px;
  }
  .column2_page .inquiry_block .telbox p img {
    height: 24px;
  }
}
.column2_page .inquiry_block .form_tbl {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block .form_tbl {
    margin: 20px 0;
  }
}
.column2_page .inquiry_block .form_tbl table {
  border-collapse: collapse;
  /*table-layout: fixed;*/
  border: solid 1px #CCC;
  border-bottom: none;
  width: 100%;
  margin-bottom: 40px;
}
.column2_page .inquiry_block .form_tbl table th, .column2_page .inquiry_block .form_tbl table td {
  padding: 15px;
  border: solid 1px #CCC;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  vertical-align: middle;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block .form_tbl table th, .column2_page .inquiry_block .form_tbl table td {
    padding: 10px;
    font-size: 13px;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block .form_tbl table tr {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block .form_tbl table td {
    border: none;
    border-bottom: solid 1px #CCC;
  }
}
.column2_page .inquiry_block .form_tbl table th {
  background: #F0F0F0;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column2_page .inquiry_block .form_tbl table th {
    border: none;
    border-bottom: solid 1px #CCC;
  }
}
.column2_page .inquiry_block .form_tbl table th.need::after {
  content: "必須";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  background: #CC0000;
  color: #FFF;
  font-size: 10px;
  line-height: 20px;
  padding: 0 10px;
}
.column2_page .inquiry_block .form_tbl input[type=text], .column2_page .inquiry_block .form_tbl input[type=email], .column2_page .inquiry_block .form_tbl textarea {
  width: 100%;
}
.column2_page .inquiry_block .form_tbl .address {
  margin-top: 10px;
}
.column2_page .inquiry_block .form_tbl .zip {
  width: 8em !important;
}

/*サイドナビカテゴリ*/
/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*ページレイアウト2列*/
.blog_list_block {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog_list_block {
    margin-bottom: 30px;
  }
}
.blog_list_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .blog_list_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.blog_list_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.blog_list_block .list_wrap {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .blog_list_block .list_wrap {
    margin: 20px 0;
  }
}
.blog_list_block .list_wrap .itembox {
  margin-bottom: 20px;
}
.blog_list_block .list_wrap .itembox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  background: #EEE;
  padding: 30px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blog_list_block .list_wrap .itembox a {
    padding: 15px;
  }
}
.blog_list_block .list_wrap .itembox .text {
  width: 80%;
  order: 1;
  text-align: left;
}
.blog_list_block .list_wrap .itembox .photo {
  width: 15%;
  order: 2;
}
.blog_list_block .list_wrap .itembox img {
  width: 100%;
  height: auto;
}
.blog_list_block .list_wrap .itembox .date {
  color: #B88C41;
  letter-spacing: 2px;
}
.blog_list_block .list_wrap .itembox h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .blog_list_block .list_wrap .itembox h3 {
    font-size: 14px;
  }
}
.blog_list_block .list_wrap .itembox p {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .blog_list_block .list_wrap .itembox p {
    font-size: 12px;
  }
}

.blog_list_block {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog_list_block {
    margin-bottom: 30px;
  }
}
.blog_list_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .blog_list_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.blog_list_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.blog_list_block .list_wrap {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .blog_list_block .list_wrap {
    margin: 20px 0;
  }
}
.blog_list_block .list_wrap .itembox {
  margin-bottom: 20px;
}
.blog_list_block .list_wrap .itembox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  background: #EEE;
  padding: 30px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blog_list_block .list_wrap .itembox a {
    padding: 15px;
  }
}
.blog_list_block .list_wrap .itembox .text {
  width: 80%;
  order: 1;
  text-align: left;
}
.blog_list_block .list_wrap .itembox .photo {
  width: 15%;
  order: 2;
}
.blog_list_block .list_wrap .itembox img {
  width: 100%;
  height: auto;
}
.blog_list_block .list_wrap .itembox .date {
  color: #B88C41;
  letter-spacing: 2px;
}
.blog_list_block .list_wrap .itembox h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .blog_list_block .list_wrap .itembox h3 {
    font-size: 14px;
  }
}
.blog_list_block .list_wrap .itembox p {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .blog_list_block .list_wrap .itembox p {
    font-size: 12px;
  }
}

.blog_content_block {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog_content_block {
    margin-bottom: 30px;
  }
}
.blog_content_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .blog_content_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.blog_content_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.blog_content_block .content_wrap {
  overflow: hidden;
}
.blog_content_block p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .blog_content_block p {
    font-size: 13px;
  }
}
.blog_content_block p + p {
  margin-top: 1em;
}
.blog_content_block h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  padding-left: 15px;
  margin: 0 0 20px;
  border-left: solid 3px #333;
}
@media screen and (max-width: 767px) {
  .blog_content_block h3 {
    padding-left: 8px;
    font-size: 18px;
    margin: 0 0 15px;
  }
}
.blog_content_block p + h3 {
  margin-top: 40px;
}
.blog_content_block .aligncenter {
  display: block;
  margin: 0 auto;
}
.blog_content_block .alignright {
  float: right;
  margin-left: 1em;
}
.blog_content_block .alignleft {
  float: left;
  margin-right: 1em;
}
.blog_content_block img[class*=wp-image-],
.blog_content_block img[class*=attachment-] {
  height: auto;
  max-width: 100%;
}
.blog_content_block .clear {
  clear: both;
}

/*サイドナビカテゴリ*/
.sidenav .blog_recent_block {
  margin-bottom: 40px;
}
.sidenav .blog_recent_block h3 {
  background: #000;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 0px;
}
.sidenav .blog_recent_block li {
  padding: 15px 0;
  border-bottom: solid 1px #000;
  font-size: 14px;
  line-height: 1.8;
}
.sidenav .blog_recent_block a {
  display: block;
  text-decoration: underline;
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*ページレイアウト2列*/
.column2_page .faq_list_block {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_list_block {
    margin-bottom: 30px;
  }
}
.column2_page .faq_list_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_list_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .faq_list_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.column2_page .faq_list_block .list_wrap {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_list_block .list_wrap {
    margin: 20px 0;
  }
}
.column2_page .faq_list_block dl {
  background: #F0F0F0;
  padding: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_list_block dl {
    padding: 15px;
  }
}
.column2_page .faq_list_block dl dt {
  padding: 0 0 5px 30px;
  position: relative;
  font-size: 18px;
  line-height: 1.8;
  border-bottom: solid 1px #000;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_list_block dl dt {
    font-size: 16px;
  }
}
.column2_page .faq_list_block dl dt::before {
  content: "Q";
  color: #B88C41;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
}
.column2_page .faq_list_block dl dd {
  padding: 0 0 5px 30px;
  position: relative;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_list_block dl dd {
    font-size: 13px;
  }
}
.column2_page .faq_list_block dl dd::before {
  content: "A";
  color: #C56161;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
}
.column2_page .faq_contact_block {
  margin: 20px 0 0px;
  padding: 0px;
}
.column2_page .faq_contact_block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: start;
  -webkit-align-items: start;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_contact_block .row {
    width: 100%;
    display: block;
    margin: 0;
  }
}
.column2_page .faq_contact_block .row .col {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_contact_block .row .col {
    width: 100%;
    margin-bottom: 20px;
  }
}
.column2_page .faq_contact_block .row .tel {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_contact_block .row .tel img {
    height: 24px;
  }
}
.column2_page .faq_contact_block .row h4 {
  border-left: solid 3px #B88C41;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 5px 0 5px 20px;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_contact_block .row h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
  }
}
.column2_page .faq_contact_block .row p {
  font-size: 13px;
  text-align: left;
}
.column2_page .faq_contact_block .row .contact_btn a {
  font-size: 16px;
  line-height: 1.8;
  display: block;
  padding: 15px 0px;
  text-align: center;
  transition: 0.3s;
  background: transparent;
  border: solid 1px #000;
  color: #000;
}
@media screen and (max-width: 767px) {
  .column2_page .faq_contact_block .row .contact_btn a {
    font-size: 14px;
  }
}
.column2_page .faq_contact_block .row .contact_btn a:hover {
  background: #CCC;
}
.column2_page .faq_contact_block .row .contact_btn i {
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin-right: 40px;
}
.column2_page .faq_contact_block .row .contact_btn i::after {
  content: "";
  background: url("../images/example/contact_mail.png") no-repeat;
  background-size: contain;
  width: 28px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: 5px;
}

/*サイドナビカテゴリ*/
.sidenav .faq_nav_block {
  margin-bottom: 40px;
}
.sidenav .faq_nav_block h3 {
  background: #000;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 0px;
}
.sidenav .faq_nav_block li {
  padding: 15px 0;
  border-bottom: solid 1px #000;
  font-size: 14px;
  line-height: 1.8;
}
.sidenav .faq_nav_block a {
  display: block;
  text-decoration: underline;
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*ページレイアウト2列*/
.column2_page .example_list_block {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .column2_page .example_list_block {
    margin-bottom: 30px;
  }
}
.column2_page .example_list_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .column2_page .example_list_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .example_list_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.column2_page .example_list_block p {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .example_list_block p {
    font-size: 14px;
  }
}
.column2_page .example_list_block p + p {
  margin-top: 1em;
}
.column2_page .example_list_block .examplebox {
  margin-bottom: 60px;
}
.column2_page .example_list_block .examplebox h3 {
  font-weight: normal;
  font-size: 28px;
  color: #C19a58;
  line-height: 1.6;
  padding-bottom: 5px;
  margin: 0 0 20px;
  border-bottom: solid 2px #C19a58;
}
@media screen and (max-width: 767px) {
  .column2_page .example_list_block .examplebox h3 {
    font-size: 20px;
  }
}
.column2_page .example_list_block .textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.column2_page .example_list_block .textbox .text {
  width: 62%;
  background: #C7E5D8;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column2_page .example_list_block .textbox .text {
    width: 100%;
    order: 1;
    margin-top: 20px;
  }
}
.column2_page .example_list_block .textbox .text::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: dashed 2px #FFF;
  z-index: 2;
}
.column2_page .example_list_block .textbox .text::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 30px;
  background: url("../images/example/example_icon_type03.png") no-repeat;
  width: 100px;
  height: 100px;
  background-size: contain;
  z-index: 1;
}
.column2_page .example_list_block .textbox .text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .column2_page .example_list_block .textbox .text p {
    font-size: 14px;
  }
}
.column2_page .example_list_block .textbox.type01 .text {
  background: #EEDFCC;
}
.column2_page .example_list_block .textbox.type01 .text::after {
  background: url("../images/example/example_icon_type01.png") no-repeat;
}
.column2_page .example_list_block .textbox.type02 .text {
  background: #C7E5D8;
}
.column2_page .example_list_block .textbox.type02 .text::after {
  background: url("../images/example/example_icon_type02.png") no-repeat;
}
.column2_page .example_list_block .textbox.type03 .text {
  background: #F9E3E3;
}
.column2_page .example_list_block .textbox.type03 .text::after {
  background: url("../images/example/example_icon_type03.png") no-repeat;
}
.column2_page .example_list_block .textbox .photo {
  width: 35%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .column2_page .example_list_block .textbox .photo {
    width: 100%;
  }
}
.column2_page .example_list_block .textbox .photo img {
  width: 100%;
  margin: 0 auto;
}
.column2_page .example_flow_block {
  margin-bottom: 60px;
}
.column2_page .example_flow_block h2 {
  font-size: 24px;
  background: #000;
  color: #FFF;
  padding: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .column2_page .example_flow_block h2 {
    font-size: 18px;
  }
}
.column2_page .example_flow_block ul {
  position: relative;
}
.column2_page .example_flow_block ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.column2_page .example_flow_block ul li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #333 transparent transparent transparent;
  position: absolute;
  left: 110px;
  bottom: -5px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .example_flow_block ul li::after {
    left: 50%;
  }
}
.column2_page .example_flow_block ul .photo {
  width: 30%;
  position: relative;
}
.column2_page .example_flow_block ul .photo::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: url("../images/example/example_flow_icon1.png") no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .example_flow_block ul .photo::after {
    width: 40px;
    height: 40px;
  }
}
.column2_page .example_flow_block ul li:nth-of-type(2) .photo::after {
  background-image: url("../images/example/example_flow_icon2.png");
}
.column2_page .example_flow_block ul li:nth-of-type(3) .photo::after {
  background-image: url("../images/example/example_flow_icon3.png");
}
.column2_page .example_flow_block ul li:nth-of-type(4) .photo::after {
  background-image: url("../images/example/example_flow_icon4.png");
}
.column2_page .example_flow_block ul li:nth-of-type(4)::after {
  display: none;
}
.column2_page .example_flow_block ul .text {
  width: 67%;
  text-align: left;
}
.column2_page .example_flow_block ul .text h3 {
  display: block;
  color: #333;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0px;
  margin: 0px 0 10px;
  border: none;
}
@media screen and (max-width: 767px) {
  .column2_page .example_flow_block ul .text h3 {
    font-size: 15px;
    line-height: 1.6;
  }
}
.column2_page .example_flow_block ul p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 767px) {
  .column2_page .example_flow_block ul p {
    font-size: 12px;
  }
}
.column2_page .example_flow_block ul p span {
  font-size: 80%;
}
.column2_page .example_contact_block {
  margin: 0 0 60px;
  background: #F0F0F0;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .column2_page .example_contact_block {
    margin: 40px auto;
    padding: 20px 20px 1px;
  }
}
.column2_page .example_contact_block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: start;
  -webkit-align-items: start;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .column2_page .example_contact_block .row {
    width: 100%;
    display: block;
    margin: 0;
  }
}
.column2_page .example_contact_block .row .col {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .column2_page .example_contact_block .row .col {
    width: 100%;
    margin-bottom: 20px;
  }
}
.column2_page .example_contact_block .row .tel {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .column2_page .example_contact_block .row .tel img {
    height: 24px;
  }
}
.column2_page .example_contact_block .row h4 {
  border-left: solid 3px #B88C41;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 5px 0 5px 20px;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .column2_page .example_contact_block .row h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
  }
}
.column2_page .example_contact_block .row p {
  font-size: 13px;
  text-align: left;
}
.column2_page .example_contact_block .row .contact_btn a {
  font-size: 16px;
  line-height: 1.8;
  display: block;
  padding: 15px 0px;
  text-align: center;
  transition: 0.3s;
  background: transparent;
  border: solid 1px #000;
  color: #000;
}
@media screen and (max-width: 767px) {
  .column2_page .example_contact_block .row .contact_btn a {
    font-size: 14px;
  }
}
.column2_page .example_contact_block .row .contact_btn a:hover {
  background: #CCC;
}
.column2_page .example_contact_block .row .contact_btn i {
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin-right: 40px;
}
.column2_page .example_contact_block .row .contact_btn i::after {
  content: "";
  background: url("../images/example/contact_mail.png") no-repeat;
  background-size: contain;
  width: 28px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: 5px;
}
.column2_page .example_type_block h2 {
  font-size: 24px;
  background: #000;
  color: #FFF;
  padding: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .column2_page .example_type_block h2 {
    font-size: 18px;
  }
}
.column2_page .example_type_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column2_page .example_type_block .list_wrap::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .column2_page .example_type_block .list_wrap::after {
    display: none;
  }
}
.column2_page .example_type_block .list_wrap .itembox {
  width: 31%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column2_page .example_type_block .list_wrap .itembox {
    width: 48%;
  }
}
.column2_page .example_type_block .list_wrap .itembox a {
  display: block;
}
.column2_page .example_type_block .list_wrap .itembox h3 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column2_page .example_type_block .list_wrap .itembox h3 {
    font-size: 14px;
  }
}
.column2_page .example_type_block .list_wrap .itembox h3 span {
  font-size: 80%;
}

/*サイドナビカテゴリ*/
/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*選ばれる理由*/
.reason_block {
  background-color: #F6F6F6;
  padding: 60px 80px 50px 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .reason_block {
    padding: 30px 10px 5px 10px;
  }
}
.reason_block .reason_box {
  background-color: #FFF;
  padding: 40px 50px 50px 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box {
    padding: 20px;
  }
}
.reason_block .reason_box .reason_main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box .reason_main {
    display: block;
    margin-bottom: 10px;
  }
}
.reason_block .reason_box .reason_main .text {
  width: 410px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box .reason_main .text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.reason_block .reason_box .reason_main .text .bg1 {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.reason_block .reason_box .reason_main .text .bg2 {
  position: absolute;
  right: 0px;
  top: 20px;
}
.reason_block .reason_box .reason_main .text .bg3 {
  position: absolute;
  bottom: 0px;
  right: -15px;
}
.reason_block .reason_box .reason_main .text .bg4 {
  position: absolute;
  right: 0px;
  top: 20px;
}
.reason_block .reason_box .reason_main .text .bg5 {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box .reason_main .text .bg1, .reason_block .reason_box .reason_main .text .bg2, .reason_block .reason_box .reason_main .text .bg3, .reason_block .reason_box .reason_main .text .bg4, .reason_block .reason_box .reason_main .text .bg5 {
    display: none;
  }
}
.reason_block .reason_box .reason_main .text .title {
  background: repeating-linear-gradient(-45deg, #F5AB9F, #F5AB9F 4px, #FFF 0, #FFF 6px);
  padding-left: 8px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box .reason_main .text .title {
    background: none;
    margin-bottom: 10px;
  }
}
.reason_block .reason_box .reason_main .text h3 {
  background-color: #FFF;
  color: #EC5840;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box .reason_main .text h3 {
    background: none;
    font-size: 25px;
    text-align: center;
    padding-left: 0px;
  }
}
.reason_block .reason_box .reason_main .text p {
  color: #040000;
  font-size: 16px;
}
.reason_block .reason_box .reason_main .text p span {
  font-size: 13px;
}
.reason_block .reason_box .reason_main .text .btn {
  display: inline-block;
  width: 350px;
  background-color: #EC5840;
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box .reason_main .text .btn {
    width: 100%;
  }
}
.reason_block .reason_box .reason_main .text .btn a {
  color: #FFF;
  padding: 20px 0px;
  display: block;
}
.reason_block .reason_box .reason_main .text .btn::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 10%;
}
.reason_block .reason_box .reason_main .photoimg img {
  width: 395px;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box .reason_main .photoimg img {
    width: 100%;
  }
}
.reason_block .reason_box ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .reason_block .reason_box li:nth-child(2) {
    padding: 0px 5px;
  }
  .reason_block .reason_box li:last-child {
    display: none;
  }
}

.reason_list_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .reason_list_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.reason_list_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.reason_list_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.reason_list_block .list_wrap::before {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .reason_list_block .list_wrap::before {
    display: none;
  }
}
.reason_list_block .list_wrap::after {
  content: "";
  display: block;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .reason_list_block .list_wrap::after {
    display: none;
  }
}
.reason_list_block .list_wrap .itembox {
  width: 32%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .reason_list_block .list_wrap .itembox {
    width: 48%;
  }
}
.reason_list_block .list_wrap .itembox img {
  width: 100%;
  height: auto;
}
.reason_list_block .list_wrap .itembox a {
  display: block;
}
.reason_list_block .list_wrap .itembox h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason_list_block .list_wrap .itembox h3 {
    font-size: 14px;
  }
}
.reason_list_block .list_wrap .itembox h3 span {
  font-size: 80%;
}

/*ページレイアウト1列*/
.column1_page {
  background: url("../images/common/page_bg.jpg") #F1ECE6 repeat center top;
}
.column1_page .main_contents {
  float: none;
  width: 100%;
}
.column1_page .wrap {
  width: 1200px;
  padding: 40px 50px 100px;
  background: #FFF;
  position: relative;
  box-shadow: 1px 2px 10px rgba(100, 100, 100, 0.2);
}
@media screen and (max-width: 767px) {
  .column1_page .wrap {
    width: 100%;
    padding: 15px 15px;
  }
}
.column1_page .intro_block {
  margin: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .column1_page .intro_block {
    margin: 40px 0;
  }
}
.column1_page .intro_block h2 {
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #B88C41;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .column1_page .intro_block h2 {
    font-size: 20px;
  }
}
.column1_page .intro_block p {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .column1_page .intro_block p {
    font-size: 14px;
  }
  .column1_page .intro_block p br {
    display: none;
  }
}
.column1_page .service_list_block h2 {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.column1_page .service_list_block h2::before {
  content: "";
  background: url("../images/common/page_item_ttl_icon.png") no-repeat;
  background-size: contain;
  width: 150px;
  height: 37px;
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block h2::before {
    width: 75px;
    height: 24px;
    margin-bottom: 20px;
  }
}
.column1_page .service_list_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column1_page .service_list_block .list_wrap::before {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block .list_wrap::before {
    display: none;
  }
}
.column1_page .service_list_block .list_wrap::after {
  content: "";
  display: block;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block .list_wrap::after {
    display: none;
  }
}
.column1_page .service_list_block .list_wrap .itembox {
  width: 32%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block .list_wrap .itembox {
    width: 48%;
  }
}
.column1_page .service_list_block .list_wrap .itembox img {
  width: 100%;
  height: auto;
}
.column1_page .service_list_block .list_wrap .itembox a {
  display: block;
}
.column1_page .service_list_block .list_wrap .itembox h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .column1_page .service_list_block .list_wrap .itembox h3 {
    font-size: 14px;
  }
}
.column1_page .service_list_block .list_wrap .itembox h3 span {
  font-size: 80%;
}
.column1_page .example_contact_block {
  margin: 0 0 60px;
  background: #FFF;
  border: #D4BE98 1px solid;
  padding: 50px 150px 20px 150px;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block {
    margin: 40px auto;
    padding: 20px 20px 1px;
  }
}
.column1_page .example_contact_block p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block p {
    font-size: 15px;
    text-align: left;
    margin-bottom: 30px;
  }
}
.column1_page .example_contact_block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: start;
  -webkit-align-items: start;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row {
    width: 100%;
    display: block;
    margin: 0;
  }
}
.column1_page .example_contact_block .row .col {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row .col {
    width: 100%;
    margin-bottom: 20px;
  }
}
.column1_page .example_contact_block .row .tel {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row .tel img {
    height: 24px;
  }
}
.column1_page .example_contact_block .row h4 {
  border-left: solid 3px #B88C41;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 5px 0 5px 20px;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
  }
}
.column1_page .example_contact_block .row p {
  font-size: 13px;
  text-align: left;
}
.column1_page .example_contact_block .row .contact_btn a {
  font-size: 16px;
  line-height: 1.8;
  display: block;
  padding: 20px 0px;
  text-align: center;
  transition: 0.3s;
  background: transparent;
  background-color: #CC3333;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .column1_page .example_contact_block .row .contact_btn a {
    font-size: 14px;
  }
}
.column1_page .example_contact_block .row .contact_btn a:hover {
  background: #DC7474;
}
.column1_page .example_contact_block .row .contact_btn i {
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin-right: 40px;
}
.column1_page .example_contact_block .row .contact_btn i::after {
  content: "";
  background: url("../images/example/contact_mail_wh.png") no-repeat;
  background-size: contain;
  width: 28px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: 5px;
}
.column1_page .item_list_block h2 {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.column1_page .item_list_block h2::before {
  content: "";
  background: url("../images/common/page_item_ttl_icon.png") no-repeat;
  background-size: contain;
  width: 150px;
  height: 37px;
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block h2::before {
    width: 75px;
    height: 24px;
    margin-bottom: 20px;
  }
}
.column1_page .item_list_block h3 {
  padding: 0 0 10px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column1_page .item_list_block h3 span {
  font-size: 13px;
  font-weight: normal;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block h3 span {
    font-size: 11px;
    display: block;
  }
}
.column1_page .item_list_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column1_page .item_list_block .list_wrap::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap::before {
    display: none;
  }
}
.column1_page .item_list_block .list_wrap::after {
  content: "";
  display: block;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap::after {
    display: none;
  }
}
.column1_page .item_list_block .list_wrap .itembox {
  width: 23%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap .itembox {
    width: 48%;
  }
}
.column1_page .item_list_block .list_wrap .itembox a {
  display: block;
}
.column1_page .item_list_block .list_wrap .itembox h4 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .list_wrap .itembox h4 {
    font-size: 14px;
  }
}
.column1_page .item_list_block .list_wrap .itembox h4 span {
  font-size: 80%;
}
.column1_page .item_list_block .health_list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column1_page .item_list_block .health_list_wrap::before {
  content: "";
  display: block;
  width: 31%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_list_wrap::before {
    display: none;
  }
}
.column1_page .item_list_block .health_list_wrap::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_list_wrap::after {
    display: none;
  }
}
.column1_page .item_list_block .health_list_wrap .health_itembox {
  width: 31%;
  margin-bottom: 50px;
}
.column1_page .item_list_block .health_list_wrap .health_itembox .health_list dt {
  margin-bottom: 10px;
}
.column1_page .item_list_block .health_list_wrap .health_itembox .health_list dd {
  line-height: 20px;
  margin-bottom: 20px;
}
.column1_page .item_list_block .health_list_wrap .health_itembox .health_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 10px;
}
.column1_page .item_list_block .health_list_wrap .health_itembox .health_name .photo {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_list_wrap .health_itembox {
    width: 100%;
  }
}
.column1_page .item_list_block .health_list_wrap .health_itembox a {
  display: block;
}
.column1_page .item_list_block .health_list_wrap .health_itembox h4 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column1_page .item_list_block .health_list_wrap .health_itembox h4 {
    font-size: 14px;
  }
}
.column1_page .item_list_block .health_list_wrap .health_itembox h4 span {
  font-size: 80%;
}

/*ページレイアウト2列*/
.column2_page {
  background: url("../images/common/page_bg.jpg") #F1ECE6 repeat center top;
}
.column2_page .wrap {
  width: 1200px;
  padding: 40px 50px 100px;
  background: #FFF;
  position: relative;
  box-shadow: 1px 2px 10px rgba(100, 100, 100, 0.2);
}
@media screen and (max-width: 767px) {
  .column2_page .wrap {
    width: 100%;
    padding: 15px 15px;
  }
}
.column2_page .item_list_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .column2_page .item_list_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .item_list_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.column2_page .item_list_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}
.column2_page .item_list_block .list_wrap::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_list_block .list_wrap::after {
    display: none;
  }
}
.column2_page .item_list_block .list_wrap .itembox {
  width: 31%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column2_page .item_list_block .list_wrap .itembox {
    width: 48%;
  }
}
.column2_page .item_list_block .list_wrap .itembox a {
  display: block;
}
.column2_page .item_list_block .list_wrap .itembox h4 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column2_page .item_list_block .list_wrap .itembox h4 {
    font-size: 14px;
  }
}
.column2_page .item_list_block .list_wrap .itembox h4 span {
  font-size: 80%;
}
.column2_page .item_detail_block {
  margin-bottom: 60px;
}
.column2_page .item_detail_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .item_detail_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.column2_page .item_detail_block .photo_wrap {
  overflow: hidden;
}
.column2_page .item_detail_block .photo_wrap .main_photo {
  width: 600px;
  float: left;
}
.column2_page .item_detail_block .photo_wrap .main_photo img {
  border: solid 1px #EEE;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .photo_wrap .main_photo {
    width: 100%;
    float: none;
  }
}
.column2_page .item_detail_block .photo_wrap .thumb_photo {
  width: 230px;
  float: right;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .photo_wrap .thumb_photo {
    display: none;
  }
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul::after {
  content: "";
  display: block;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .photo_wrap .thumb_photo ul::after {
    display: none;
  }
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul li {
  width: 32%;
  margin-bottom: 6px;
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul li img {
  width: 100%;
  height: auto;
  border: solid 1px #EEE;
}
.column2_page .item_detail_block .photo_wrap .thumb_photo ul li.thumbnail-current img {
  border: solid 1px #B88C41;
}
.column2_page .item_detail_block .order_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap {
    margin: 30px 0;
  }
}
.column2_page .item_detail_block .order_wrap .item_name {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap .item_name {
    width: 100%;
    margin-bottom: 20px;
  }
}
.column2_page .item_detail_block .order_wrap .item_name p {
  margin: 0 0 5px;
  font-size: 12px;
}
.column2_page .item_detail_block .order_wrap .item_name h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap .item_name h1 {
    font-size: 24px;
  }
}
.column2_page .item_detail_block .order_wrap .order_btn {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap .order_btn {
    width: 100%;
  }
}
.column2_page .item_detail_block .order_wrap .order_btn a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  display: block;
  padding: 20px 0px;
  text-align: center;
  transition: 0.3s;
  border: solid 1px #B88C41;
  background: #B88C41;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .order_wrap .order_btn a {
    font-size: 14px;
  }
}
.column2_page .item_detail_block .order_wrap .order_btn a:hover {
  opacity: 0.7;
}
.column2_page .item_detail_block .order_wrap .order_btn i {
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin-right: 30px;
}
.column2_page .item_detail_block .order_wrap .order_btn i::after {
  content: "";
  background: url("../images/common/page_item_btn_icon.png") no-repeat;
  background-size: contain;
  width: 17px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: 5px;
}
.column2_page .item_detail_block .description {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .description {
    margin: 30px auto;
  }
}
.column2_page .item_detail_block .description p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .spec_tbl {
    overflow: auto;
    white-space: nowrap;
  }
  .column2_page .item_detail_block .spec_tbl::-webkit-scrollbar {
    height: 5px;
  }
  .column2_page .item_detail_block .spec_tbl::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .column2_page .item_detail_block .spec_tbl::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
.column2_page .item_detail_block .spec_tbl table {
  border-collapse: collapse;
  /*table-layout: fixed;*/
  border: solid 1px #CCC;
  width: 100%;
}
.column2_page .item_detail_block .spec_tbl table th, .column2_page .item_detail_block .spec_tbl table td {
  padding: 15px 10px;
  border: solid 1px #CCC;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: middle;
  width: 16.6666666667%;
}
@media screen and (max-width: 767px) {
  .column2_page .item_detail_block .spec_tbl table th, .column2_page .item_detail_block .spec_tbl table td {
    padding: 10px;
    font-size: 13px;
  }
}
.column2_page .item_detail_block .spec_tbl table th {
  background: #DFDFDF;
  border-bottom: none;
  text-align: center;
}
.column2_page .item_detail_block .spec_tbl table tbody tr:first-of-type td {
  border-top: none;
}
.column2_page .item_detail_block .spec_tbl + .spec_tbl {
  margin-top: 20px;
}
.column2_page .item_relation_block {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .column2_page .item_relation_block {
    margin: 40px 0;
  }
}
.column2_page .item_relation_block h3 {
  padding: 0 0 10px 0px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column2_page .item_relation_block h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.column2_page .item_relation_block .list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.column2_page .item_relation_block .list_wrap .itembox {
  width: calc((100% - 101px) / 6);
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column2_page .item_relation_block .list_wrap .itembox {
    width: calc((100% - 21px) / 3);
    margin-right: 10px;
  }
  .column2_page .item_relation_block .list_wrap .itembox:nth-of-type(3n) {
    margin-right: 0px !important;
  }
}
.column2_page .item_relation_block .list_wrap .itembox:nth-of-type(6n) {
  margin-right: 0;
}
.column2_page .item_relation_block .list_wrap .itembox a {
  display: block;
}
.column2_page .item_relation_block .list_wrap .itembox h4 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .column2_page .item_relation_block .list_wrap .itembox h4 {
    font-size: 11px;
  }
}
.column2_page .item_relation_block .list_wrap .itembox h4 span {
  font-size: 80%;
}

/*サイドナビカテゴリ*/
.sidenav .banner_block {
  margin-bottom: 30px;
}
.sidenav .banner_block li {
  margin-bottom: 20px;
}
.sidenav .banner_block li:last-child {
  margin-bottom: 0;
}
.sidenav .search_block {
  background: #F0F0F0;
  padding: 15px;
  margin-bottom: 40px;
}
.sidenav .search_block h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 5px;
  text-align: center;
}
.sidenav .search_block h3 i {
  margin-left: -5px;
  margin-right: 5px;
}
.sidenav .search_block dl {
  margin-bottom: 10px;
}
.sidenav .search_block dt {
  font-size: 11px;
  margin-bottom: 5px;
}
.sidenav .search_block dd input[type=text] {
  width: 100%;
}
.sidenav .search_block dd select {
  width: 100%;
}
.sidenav .search_block button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 10px;
  width: 100%;
  border: none;
  background: #000;
  color: #FFF;
  text-align: center;
  padding: 10px;
}
.sidenav .category_nav_block {
  margin-bottom: 30px;
  border-top: solid 3px #000;
}
.sidenav .category_nav_block > ul li a {
  position: relative;
  display: block;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
  border-bottom: solid 1px #000;
  transition: 0.3s;
}
.sidenav .category_nav_block > ul li a:hover, .sidenav .category_nav_block > ul li a.active {
  background: #F0F0F0;
}
.sidenav .category_nav_block > ul li a::after {
  content: "\f105";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\ 5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.sidenav .category_nav_block dt {
  position: relative;
  display: block;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: solid 1px #000;
  transition: 0.3s;
}
.sidenav .category_nav_block dt:hover {
  background: #F0F0F0;
}
.sidenav .category_nav_block dt::after {
  content: "\f107";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\ 5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.sidenav .category_nav_block dt.active::after {
  content: "\f106";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-family: Font Awesome\ 5 Free;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.sidenav .category_nav_block dd {
  display: none;
}
.sidenav .category_nav_block dd li {
  font-size: 13px;
  line-height: 1.8;
  border-bottom: dotted 1px #999;
}
.sidenav .category_nav_block dd li:last-child {
  border-bottom: solid 1px #000;
}
.sidenav .category_nav_block dd li a {
  display: block;
  text-decoration: underline;
  padding: 8px 10px;
}
.sidenav .category_nav_block dd li a:hover {
  text-decoration: none;
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

/*プライバシーポリシー*/
.privacy_list_block h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .privacy_list_block h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.privacy_list_block h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #000;
}
.privacy_list_block h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .privacy_list_block h3 {
    font-size: 16px;
    line-height: 1.8;
  }
}
.privacy_list_block p, .privacy_list_block ol, .privacy_list_block ul {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .privacy_list_block p, .privacy_list_block ol, .privacy_list_block ul {
    font-size: 14px;
  }
}
.privacy_list_block ol {
  list-style-type: decimal;
}
.privacy_list_block ol li {
  margin-left: 20px;
}
.privacy_list_block .privacy_text {
  margin-bottom: 30px;
}

/* blogsite */
.align_center {
  text-align: center;
}

.header.blog {
  height: 170px;
}
@media screen and (max-width: 767px) {
  .header.blog {
    height: auto;
  }
}
.header.blog .logo {
  width: 430px;
}
@media screen and (max-width: 767px) {
  .header.blog .logo {
    width: auto;
    left: 0px;
    top: 0px;
  }
}
@media screen and (max-width: 767px) {
  .header.blog .logo img {
    height: 60px;
  }
}
.header.blog .snav {
  position: absolute;
  right: 0px;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .header.blog .snav {
    display: none;
  }
}
.header.blog .snav h1 {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 32px;
  margin-right: 10px;
  vertical-align: middle;
}
.header.blog .snav p {
  display: inline-block;
}
.header.blog .snav a {
  color: #fff;
}
.header.blog .hnav {
  top: 65px;
  right: 0px;
}
.header.blog .gnav {
  left: 0px;
  top: 100px;
  width: 100%;
}
.header.blog .gnav ul {
  width: 1000px;
}
.header.blog .gnav ul li {
  width: auto;
  text-align: center;
}
.header.blog .gnav ul li a {
  letter-spacing: 0.5px;
  line-height: 1.6em;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.header.blog .gnav ul li::after {
  background: #666;
}
.header.blog .gnav ul li:last-child::before {
  background: #666;
}

.footer.blog .contact_block .wrap {
  padding: 30px 15px;
  background: none;
}
.footer.blog .contact_block ul {
  display: flex;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer.blog .contact_block ul {
    display: block;
  }
}
.footer.blog .contact_block ul li h3 {
  font-size: 20px;
  height: auto;
  background: none;
}
.footer.blog .contact_block ul li p {
  text-align: left;
}
.footer.blog .contact_block ul li:nth-child(2) {
  width: 360px;
  background-image: url(../images/common_blogsite/footer_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom 10px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .footer.blog .contact_block ul li:nth-child(2) {
    padding-left: 0px;
    width: auto;
    padding-bottom: 120px;
    background-position: center bottom 0px;
  }
}
.footer.blog .contact_block ul li:nth-child(2) img {
  margin-bottom: 20px;
}
.footer.blog .contact_block ul li:nth-child(2) p {
  font-size: 12px;
  line-height: 1.6em;
}
.footer.blog .contact_block ul li:nth-child(2) a {
  color: #fff;
}

.blog_page {
  background: #FFF;
}
.blog_page article {
  background: #fff;
}
.blog_page .main_contents {
  width: 850px;
  float: left;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents {
    width: auto;
  }
}
.blog_page .main_contents .ttl h2, .blog_page .main_contents .ttl h1 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #333;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .ttl h2, .blog_page .main_contents .ttl h1 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.blog_page .main_contents .ttl h2:before, .blog_page .main_contents .ttl h1:before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #333;
}
.blog_page .main_contents .content_detail p {
  line-height: 2em;
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail p {
    font-size: 13px;
    line-height: 1.6em;
  }
}
.blog_page .main_contents .content_detail p span.gold_line {
  background: linear-gradient(transparent 60%, #EBDEC8 0%);
  font-weight: bold;
  padding: 0 1px;
}
.blog_page .main_contents .content_detail span.underline {
  text-decoration: underline;
}
.blog_page .main_contents .content_detail span.red {
  color: #c40;
}
.blog_page .main_contents .content_detail h1 {
  font-size: 30px;
  color: #B88C41;
  line-height: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail h1 {
    font-size: 18px;
  }
}
.blog_page .main_contents .content_detail h1:after {
  content: "";
  background-image: url(../images/common_blogsite/bg_border.jpg);
  height: 3px;
  margin-top: 10px;
  display: block;
}
.blog_page .main_contents .content_detail .opt p {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
  font-size: 12px;
}
.blog_page .main_contents .content_detail .opt p.date {
  background-image: url(../images/common_blogsite/icon_calender.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}
.blog_page .main_contents .content_detail .opt p.types {
  background-image: url(../images/common_blogsite/icon_folder.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}
.blog_page .main_contents .content_detail .opt p.types a {
  display: inline-block;
  margin-right: 5px;
}
.blog_page .main_contents .content_detail h2 {
  padding: 0 0 10px 20px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0 0 30px;
  border-bottom: solid 1px #B88C41;
  position: relative;
  vertical-align: top;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail h2 {
    padding: 0 0 10px 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
.blog_page .main_contents .content_detail h2:before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 80%;
  background: #B88C41;
}
.blog_page .main_contents .content_detail h3 {
  font-size: 20px;
  line-height: 2em;
  position: relative;
  padding-left: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail h3 {
    font-size: 16px;
    padding-left: 25px;
  }
}
.blog_page .main_contents .content_detail h3:before {
  content: "";
  background: #B88C41;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0px;
  top: 11px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail h3:before {
    width: 15px;
    height: 15px;
    top: 9px;
  }
}
.blog_page .main_contents .content_detail h4 {
  font-size: 18px;
  line-height: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.blog_page .main_contents .content_detail .list {
  border: solid 1px #B88C41;
  padding: 20px;
  overflow: hidden;
  zoom: 1;
  margin-bottom: 40px;
}
.blog_page .main_contents .content_detail .list:after {
  display: block;
  clear: both;
  content: "";
}
.blog_page .main_contents .content_detail .list p {
  margin-bottom: 0px;
}
.blog_page .main_contents .content_detail .list ul li {
  position: relative;
  margin: 5px 0px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail .list ul li {
    padding-left: 20px;
  }
}
.blog_page .main_contents .content_detail .list ul li:before {
  content: "";
  border: solid 1px #B88C41;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0px;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail .list ul li:before {
    width: 10px;
    height: 10px;
    top: 5px;
  }
}
.blog_page .main_contents .content_detail .list .thumbnail {
  float: left;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail .list .thumbnail {
    float: none;
    margin-bottom: 10px;
    padding-right: 0px;
    text-align: center;
  }
}
.blog_page .main_contents .content_detail .comment {
  border: dashed 1px #B29C77;
  background: #F1E8D9;
  padding: 20px;
}
.blog_page .main_contents .content_detail .comment h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 0px;
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail .comment h3 {
    font-size: 18px;
  }
}
.blog_page .main_contents .content_detail .comment h3:before {
  display: none;
}
.blog_page .main_contents .content_detail .float_area {
  overflow: hidden;
  zoom: 1;
  margin-bottom: 30px;
}
.blog_page .main_contents .content_detail .float_area:after {
  display: block;
  clear: both;
  content: "";
}
.blog_page .main_contents .content_detail .float_area .float_left {
  float: left;
  width: 350px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail .float_area .float_left {
    float: none;
    margin: 0px auto;
    margin-bottom: 20px;
    width: auto;
    padding-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail .float_area .float_left img {
    margin: 0px auto;
    width: 100%;
    max-width: 350px;
    display: block;
  }
}
.blog_page .main_contents .content_detail .float_area .float_right {
  float: right;
  width: 350px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail .float_area .float_right {
    margin-bottom: 20px;
    float: none;
    width: auto;
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .blog_page .main_contents .content_detail .float_area .float_right img {
    margin: 0px auto;
    width: 100%;
    max-width: 350px;
    display: block;
  }
}
.blog_page .main_contents .content_detail .merit_area h3 {
  margin-bottom: 10px;
}
.blog_page .main_contents .content_detail .merit_area p {
  margin-left: 30px;
}
.blog_page .main_contents .content_detail .demerit_area h3 {
  margin-bottom: 10px;
}
.blog_page .main_contents .content_detail .demerit_area h3:before {
  background: none;
  border: solid 1px #B88C41;
}
.blog_page .main_contents .content_detail .demerit_area p {
  margin-left: 30px;
}
.blog_page .main_contents .content_detail dl dt {
  font-size: 16px;
  line-height: 2em;
  font-weight: bold;
  margin-bottom: 5px;
}
.blog_page .main_contents .content_detail dl dd {
  font-size: 16px;
  line-height: 2em;
  margin-left: 15px;
  margin-bottom: 30px;
}
.blog_page .sidenav {
  width: 200px;
  float: right;
}
@media screen and (max-width: 767px) {
  .blog_page .sidenav {
    width: 100%;
    padding-left: 0px;
  }
}
.blog_page .sidenav h3 {
  background: #040000;
  color: #fff;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.blog_page .sidenav .sec {
  margin-bottom: 30px;
}
.blog_page .sidenav .sec.onborder p a {
  border-bottom: dashed 1px #040000;
  background-position: left top 14px;
  padding: 10px 0px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .blog_page .sidenav .sec.onborder p a {
    line-height: 40px;
    padding: 0px;
    padding-left: 15px;
  }
}
.blog_page .sidenav .sec p a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  background-image: url(../images/common_blogsite/arrow_black.png);
  background-repeat: no-repeat;
  background-position: left top 3px;
  padding-left: 15px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .blog_page .sidenav .sec p a {
    background-position: left top 14px;
    line-height: 40px;
    padding: 0px;
    padding-left: 15px;
  }
}

/* blogsite_top */
.blogsite_mainvisual .wrap {
  background: #fff;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .wrap {
    padding-top: 10px;
  }
}
.blogsite_mainvisual .visual1 {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .visual1 {
    margin: -10px -15px 30px;
  }
}
.blogsite_mainvisual .blog_list {
  margin-bottom: 40px;
}
.blogsite_mainvisual .blog_list.colum4 {
  overflow: hidden;
}
.blogsite_mainvisual .blog_list.colum4 ul {
  display: flex;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  margin-right: -20px;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .blog_list.colum4 ul {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
  }
}
.blogsite_mainvisual .blog_list.colum4 ul li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .blog_list.colum4 ul li {
    width: 50%;
  }
}
@media screen and (max-width: 370px) {
  .blogsite_mainvisual .blog_list.colum4 ul li {
    width: auto;
  }
}
.blogsite_mainvisual .blog_list.colum4 ul li .sec {
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
}
.blogsite_mainvisual .blog_list.colum4 ul li .sec h3 {
  font-size: 15px;
  line-height: 1.4em;
  margin-bottom: 20px;
}
.blogsite_mainvisual .blog_list ul li .sec {
  overflow: hidden;
  zoom: 1;
  margin-bottom: 40px;
}
.blogsite_mainvisual .blog_list ul li .sec:after {
  display: block;
  clear: both;
  content: "";
}
.blogsite_mainvisual .blog_list ul li .sec .thumbnail {
  float: left;
  width: 390px;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .blog_list ul li .sec .thumbnail {
    width: 150px;
  }
}
@media screen and (max-width: 370px) {
  .blogsite_mainvisual .blog_list ul li .sec .thumbnail {
    float: none;
    width: auto;
  }
}
.blogsite_mainvisual .blog_list ul li .sec .thumbnail img {
  width: 100%;
}
.blogsite_mainvisual .blog_list ul li .sec .data {
  margin-left: 420px;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .blog_list ul li .sec .data {
    margin-left: 170px;
  }
}
@media screen and (max-width: 370px) {
  .blogsite_mainvisual .blog_list ul li .sec .data {
    margin-left: 0px;
  }
}
.blogsite_mainvisual .blog_list ul li .sec img {
  margin-bottom: 20px;
  width: 100%;
}
.blogsite_mainvisual .blog_list ul li .sec h3 {
  color: #B88C41;
  font-size: 18px;
  border-bottom: dashed 1px #666666;
  padding-bottom: 15px;
  margin-bottom: 15px;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .blog_list ul li .sec h3 {
    font-size: 16px;
  }
}
.blogsite_mainvisual .blog_list ul li .sec .opt p {
  display: inline-block;
  font-size: 12px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.blogsite_mainvisual .blog_list ul li .sec .opt p.date {
  background-image: url(../images/common_blogsite/icon_calender.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}
.blogsite_mainvisual .blog_list ul li .sec .opt p.types {
  background-image: url(../images/common_blogsite/icon_folder.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}
.blogsite_mainvisual .blog_list ul li .sec .opt p.types a {
  display: inline-block;
  margin-right: 5px;
}
.blogsite_mainvisual .blog_list ul li .sec .cap {
  font-size: 15px;
  margin-bottom: 20px;
}
.blogsite_mainvisual .blog_list ul li .sec .link {
  border: solid 1px #333;
  display: block;
  line-height: 40px;
  width: 150px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  margin: 0px auto;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .blog_list ul li .sec .link {
    width: auto;
  }
}
.blogsite_mainvisual .blog_list ul li .sec .link:before {
  content: url(../images/common_blogsite/arrow_black.png);
  margin-right: 10px;
}
.blogsite_mainvisual .blog_list ul li .sec .link h3 {
  color: #B88C41;
}
.blogsite_mainvisual .more_btn a {
  border: solid 1px #333;
  display: block;
  padding: 15px 0;
  width: 80%;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  margin: 0px auto;
}
@media screen and (max-width: 767px) {
  .blogsite_mainvisual .more_btn a {
    width: 80%;
  }
}
.blogsite_mainvisual .more_btn a:before {
  content: url(../images/common_blogsite/arrow_black.png);
  margin-right: 10px;
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.lp_contact .form_width {
  width: 80Ppx;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width {
    width: 100%;
  }
}
.lp_contact .form_width .form_title {
  padding: 0 15px;
  border-left: 6px solid #000;
  font-size: 25px;
  line-height: 1.2;
}
.lp_contact .form_width .form_area {
  margin-top: 25px;
  margin: 0 auto;
}
.lp_contact .form_width .form_area .form-table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table tr {
    max-width: 360px;
    display: block;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.lp_contact .form_width .form_area .form-table th {
  font-size: 15px;
  background: #F8F2EB;
  position: relative;
  text-align: left;
  padding-left: 40px;
  padding-right: 40px;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  width: 200px;
  line-height: 1.5;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table th {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 360px;
    display: block;
    padding-left: 20px;
  }
}
.lp_contact .form_width .form_area .form-table td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px 30px;
  width: 50px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table td {
    width: 100%;
    padding: 20px 0px;
    display: block;
    border-bottom: none;
  }
}
.lp_contact .form_width .form_area .form-table td .d-flex {
  display: flex;
  align-items: center;
}
.lp_contact .form_width .form_area .form-table input[type=text] {
  background: #F0F0F0;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 300px;
  border-radius: 5px;
  border: none;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table input[type=text] {
    width: 100%;
    max-width: 360px;
    display: block;
  }
}
.lp_contact .form_width .form_area .form-table input[name=zipcode-first] {
  width: 115px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table input[name=zipcode-first] {
    width: 100%;
    max-width: 360px;
    display: block;
  }
}
.lp_contact .form_width .form_area .form-table input[name=zipcode-second] {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table input[name=zipcode-second] {
    width: 100%;
    max-width: 360px;
    display: block;
  }
}
.lp_contact .form_width .form_area .form-table select[name=menu-prefecture] {
  background: #F0F0F0;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 180px;
  border-radius: 5px;
  border: none;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table select[name=menu-prefecture] {
    width: 100%;
    max-width: 360px;
    display: block;
  }
}
.lp_contact .form_width .form_area .form-table .flex {
  display: flex;
  align-items: center;
}
.lp_contact .form_width .form_area .form-table input[name=first-number] {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table input[name=first-number] {
    width: 100%;
    max-width: 360px;
    display: block;
  }
}
.lp_contact .form_width .form_area .form-table input[name=second-number] {
  width: 105px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table input[name=second-number] {
    width: 100%;
    max-width: 360px;
    display: block;
  }
}
.lp_contact .form_width .form_area .form-table input[name=third-number] {
  width: 105px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table input[name=third-number] {
    width: 100%;
    max-width: 360px;
    display: block;
  }
}
.lp_contact .form_width .form_area .form-table textarea {
  background: #F0F0F0;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 500px;
  height: 200px;
  border-radius: 5px;
  border: none;
  resize: none;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table textarea {
    width: 100%;
    max-width: 360px;
    display: block;
  }
}
.lp_contact .form_width .form_area .form-table .need {
  position: relative;
}
.lp_contact .form_width .form_area .form-table .need::after {
  content: "必須";
  top: 38px;
  right: 15px;
  margin-top: -5px;
  background: #B8803A !important;
  font-weight: normal;
  font-size: 11px;
  color: #FFF;
  padding: 4px 5px;
  position: absolute;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table .need::after {
    top: 25px;
  }
}
.lp_contact .form_width .form_area .form-table .need_02 {
  position: relative;
}
.lp_contact .form_width .form_area .form-table .need_02::after {
  content: "必須";
  top: 115px;
  right: 15px;
  margin-top: -5px;
  background: #B8803A !important;
  font-weight: normal;
  font-size: 11px;
  color: #FFF;
  padding: 4px 5px;
  position: absolute;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table .need_02::after {
    top: 25px;
  }
}
.lp_contact .form_width .form_area .form-table .need_03 {
  position: relative;
}
.lp_contact .form_width .form_area .form-table .need_03::after {
  content: "必須";
  top: 180px;
  right: 15px;
  margin-top: -5px;
  background: #B8803A !important;
  font-weight: normal;
  font-size: 11px;
  color: #FFF;
  padding: 4px 5px;
  position: absolute;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table .need_03::after {
    top: 25px;
  }
}
.lp_contact .form_width .form_area .form-table .need_04 {
  position: relative;
}
.lp_contact .form_width .form_area .form-table .need_04::after {
  content: "必須";
  top: 25px;
  right: 15px;
  margin-top: -5px;
  background: #B8803A !important;
  font-weight: normal;
  font-size: 11px;
  color: #FFF;
  padding: 4px 5px;
  position: absolute;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .form_area .form-table .need_04::after {
    top: 25px;
  }
}
.lp_contact .form_width .zipcode_first {
  width: 115px !important;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .zipcode_first {
    width: 100% !important;
    max-width: 360px !important;
    display: block;
  }
}
.lp_contact .form_width .zipcode_second {
  width: 180px !important;
}
@media screen and (max-width: 767px) {
  .lp_contact .form_width .zipcode_second {
    width: 100% !important;
    max-width: 360px !important;
    display: block;
  }
}
.lp_contact .mt5 {
  margin-top: 5px;
}
.lp_contact .mt10 {
  margin-top: 10px;
}
.lp_contact .mt20 {
  margin-top: 20px;
}
.lp_contact .mt30 {
  margin-top: 30px;
}
.lp_contact .mt40 {
  margin-top: 40px;
}
.lp_contact .mt50 {
  margin-top: 50px;
}
.lp_contact .mt60 {
  margin-top: 60px;
}
.lp_contact .mt70 {
  margin-top: 70px;
}
.lp_contact .mb5 {
  margin-bottom: 5px;
}
.lp_contact .mb10 {
  margin-bottom: 10px;
}
.lp_contact .mb20 {
  margin-bottom: 20px;
}
.lp_contact .mb30 {
  margin-bottom: 30px;
}
.lp_contact .mb40 {
  margin-bottom: 40px;
}
.lp_contact .mb50 {
  margin-bottom: 50px;
}
.lp_contact .mb60 {
  margin-bottom: 60px;
}
.lp_contact .mb70 {
  margin-bottom: 70px;
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.oem_970 {
  margin: 0 auto;
  width: 970px;
}
@media screen and (max-width: 767px) {
  .oem_970 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .intro_block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.intro_block .annoy_area {
  background: #F5F5F5;
  padding: 30px;
}
.intro_block .annoy_area ul {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .intro_block .annoy_area ul {
    width: 100%;
  }
}
.intro_block .annoy_area ul li {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .intro_block .annoy_area ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .intro_block .annoy_area ul li:nth-child(3) {
    margin-bottom: 0;
  }
}
.intro_block .annoy_area ul li .fas {
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .oem_block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.oem_block p {
  text-align: left;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .oem_block p {
    font-size: 14px;
  }
}
.oem_block span {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .oem_feature {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.oem_feature ul li {
  background: #F5F5F5;
  padding: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .oem_feature ul li {
    padding: 40px 20px;
  }
}
.oem_feature ul li h3 {
  color: #EC5840;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .oem_feature ul li h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}
.oem_feature ul li p {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .oem_feature ul li p {
    font-size: 14px;
  }
}

.oem_essense table {
  width: 100%;
  border: 1px solid #e3e0cd;
  border-collapse: collapse;
  border-spacing: 0;
}
.oem_essense table tbody th {
  background: #fff;
  border-right: 1px solid #e3e0cd;
  padding: 0;
  width: 160px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .oem_essense table tbody th {
    width: 100px;
  }
}
.oem_essense table tbody td {
  padding: 15px;
  border-bottom: 1px solid #e3e0cd;
  line-height: 1.3;
}
.oem_essense p {
  margin-top: 10px;
  line-height: 1.3 !important;
}

.oem_shampoo .flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .oem_shampoo .flex {
    display: block;
    justify-content: start;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .oem_shampoo ul li {
    margin-bottom: 15px;
  }
}
.oem_shampoo ul li p {
  color: #B88C41;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .oem_shampoo ul li p {
    font-size: 14px;
  }
}
.oem_shampoo ul li .width300 {
  width: 300px;
}
.oem_shampoo h3 {
  font-size: 24px;
  margin-top: 40px;
  color: #B88C41;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .oem_shampoo h3 {
    font-size: 18px;
  }
}
.oem_shampoo .other_shampoo {
  margin-top: 20px;
  border: 1px solid #B88C41;
  padding: 20px 60px;
}
@media screen and (max-width: 767px) {
  .oem_shampoo .other_shampoo {
    padding: 20px 60px;
  }
}
.oem_shampoo .other_shampoo .flex {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .oem_shampoo .other_shampoo .flex {
    display: block;
  }
}
.oem_shampoo .other_shampoo ul li {
  font-size: 18px;
  line-height: 1.8;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .oem_shampoo .other_shampoo ul li {
    font-size: 14px;
    width: 100%;
    margin-bottom: 0px;
  }
}
.oem_shampoo table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 970px;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .oem_shampoo table {
    width: 100%;
  }
}
.oem_shampoo table tbody {
  background: #eeeeee;
  border: 5px solid #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .oem_shampoo table tbody {
    font-size: 11px;
  }
}
.oem_shampoo table tbody .bg_skyblue {
  background: #eef9fe;
  color: #00a0e9;
  font-weight: bold;
}
.oem_shampoo table tbody tr {
  border: 5px solid #fff;
  vertical-align: middle;
}
.oem_shampoo table tbody th {
  vertical-align: middle;
  font-weight: bold;
  width: 250px;
  padding: 15px 0;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .oem_shampoo table tbody th {
    width: 100px;
    font-size: 14px;
  }
}
.oem_shampoo table tbody td {
  border: 5px solid #fff;
  vertical-align: middle;
  padding: 5px 5px;
  text-align: left;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .oem_shampoo table tbody td {
    font-size: 14px;
  }
}
.oem_shampoo table tbody .color_gray {
  color: #777777;
  font-weight: bold;
}
.oem_shampoo .flex-wrap-mouthwash {
  flex-wrap: wrap;
  justify-content: space-around;
}
.oem_shampoo .flex-wrap-mouthwash::after {
  content: "";
  display: block;
  width: 32%; /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
}

.oem-mouthwash ul li {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .oem-mouthwash ul li {
    width: 100%;
  }
}
.oem-mouthwash ul li h3 {
  color: #EC5840;
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .oem-mouthwash ul li h3 {
    font-size: 18px;
  }
}
.oem-mouthwash ul li p {
  height: 220px;
  color: #333;
  padding: 15px;
  font-weight: normal;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .oem-mouthwash ul li p {
    height: 180px;
  }
}

.service_flow_block h2 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service_flow_block h2 {
    margin-top: 40px;
  }
}
.service_flow_block h2::before {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .oem_flow {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.oem_flow h2 {
  color: #B88C41;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .oem_flow h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .oem_question {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.oem_question ul {
  margin-top: 40px;
}
.oem_question ul li h3 {
  font-size: 24px;
  color: #B88C41;
  font-weight: bold;
  border-bottom: solid 3px #c7c7c7;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .oem_question ul li h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}
.oem_question ul li p {
  font-size: 24px;
  color: #EC5840;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .oem_question ul li p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.oem_question ul li p a {
  color: #EC5840;
}

.oem_btn {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .oem_btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.oem_btn a button {
  cursor: pointer;
  width: 400px;
  height: 70px;
  background: #B88C41;
  border: none;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .oem_btn a button {
    width: 200px;
    height: 50px;
  }
}
.oem_btn a button span {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .oem_btn a button span {
    font-size: 14px;
  }
}

/*PCのみ表示*/
.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.simple-oem-block {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .simple-oem-block {
    padding: 0 15px;
  }
}
.simple-oem-block .simple_oem_img {
  max-width: 462px;
  height: auto;
  margin: 0 auto;
}
.simple-oem-block .simple-oem-textblock {
  max-width: 500px;
}
.simple-oem-block .simple-oem-textblock h2 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .simple-oem-block .simple-oem-textblock h2 {
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: center;
  }
}
.simple-oem-block .simple-oem-textblock .headding3-oem {
  color: #B88C41;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .simple-oem-block .simple-oem-textblock .headding3-oem {
    font-size: 18px;
    text-align: center;
  }
}
.simple-oem-block .simple-oem-textblock .oem-table {
  width: 100%;
  border-collapse: collapse;
}
.simple-oem-block .simple-oem-textblock .oem-table td {
  width: 50%;
  text-align: center;
  border: 1px solid;
  padding: 10px;
  vertical-align: middle;
  line-height: 1.5;
}
.simple-oem-block .simple-oen-border {
  font-size: 16px;
  background: linear-gradient(transparent 70%, #FFFF00 0%);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .simple-oem-block .simple-oen-border {
    font-size: 14px;
  }
}
.simple-oem-block .detail_btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .simple-oem-block .detail_btn {
    margin-top: 15px;
  }
}
.simple-oem-block .detail_btn a {
  max-width: 350px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  display: block;
  padding: 20px 0px;
  text-align: center;
  transition: 0.3s;
  background: transparent;
  background-color: #B88C41;
  color: #FFF;
}/*# sourceMappingURL=style.css.map */