@charset "UTF-8";
/* MW WP Form
--------------------------------------------------------*/
.mw_wp_form .is-error {
  color: #B70000 !important;
  background-color: #F2DEDE !important;
  border: 2px solid #B70000 !important;
}
.mw_wp_form .error {
  font-size: 1.4rem !important;
  line-height: 1.8 !important;
  color: #fff !important;
  display: block !important;
	background: #B70000!important;
	margin-top:3px!important;
	padding: 0 10px!important;
}

/* main visual
--------------------------------------------------------*/
.l-mainvisual {
  background: #1c204f;
}
@media only screen and (max-width: 768px) {
  .l-mainvisual {
    border-bottom: 5px solid #d7913e;
    padding-bottom: 30px;
  }
}
.l-mainvisual_bottom {
  display: flex;
  align-items: flex-end;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  .l-mainvisual_bottom {
    flex-direction: column;
    margin-top: -30px;
  }
}
.l-mainvisual_bottom_btn {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-mainvisual_bottom_btn {
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
.l-mainvisual_bottom .items_tel {
  max-width: 500px;
  margin-top: -48px;
}
@media only screen and (max-width: 768px) {
  .l-mainvisual_bottom .items_tel {
    width: 100%;
    margin-top: 0;
    margin: 0 auto;
  }
  .l-mainvisual_bottom .items_tel_inner {
    max-width: 300px;
    margin: 0 auto;
  }
}
.l-mainvisual_bottom .items_tel_txt01 {
  font-size: 3rem;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-mainvisual_bottom .items_tel_txt01 {
    font-size: 1.8rem;
  }
  .l-mainvisual_bottom .items_tel_txt01 img {
    max-width: 300px;
    margin: 0 auto;
  }
}
.l-mainvisual_bottom .items_tel_time {
  font-size: 1.7rem;
  color: #fff;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .l-mainvisual_bottom .items_tel_time {
    font-size: 1.2rem;
  }
}
.l-mainvisual_bottom .items_btn {
  max-width: 350px;
  min-width: 100px;
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .l-mainvisual_bottom .items_btn {
    max-width: 350px;
    min-width: inherit;
    width: 49%;
    margin-left: 0;
    margin: 0;
  }
}

/* 404
---------------------------------------------------- */
.p-404 {
  background-color: #efefef;
  padding: 100px 0 100px;
  text-align: center;
  font-size: 1.8rem;
}
.p-404__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
.p-404__text {
  margin-bottom: 30px;
}
.p-404 a {
  color: #fff;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 60px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  text-decoration: none;
}
.p-404 a:hover {
  opacity: 1;
  color: #333;
}
.p-404 a:hover:before {
  animation: hover-in 0.3s forwards alternate;
}
.p-404 a:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  transform: scale(0, 1);
  transition: all 0.3s;
  background: #fff;
  border: 2px solid #333;
}

@keyframes hover-in {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  100% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
/* お問い合わせ完了ページ（Thanks）
---------------------------------------------------- */
.p-thank {
  padding: 100px 0;
  text-align: center;
  font-size: 1.8rem;
}
.p-thank_tlt {
  font-size: 2.5rem;
}
.p-thank figure {
  margin-bottom: 30px;
  text-align: center;
}
.p-thank figure img {
  margin: 0 auto;
}
.p-thank_btn {
  display: inline-block;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  background: #3c3c3c;
  border: none;
  outline: none;
  padding: 10px;
 padding:0;
  box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.6);
  margin-top: 30px;
}
.p-thank_btn p {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
display:block;
  background: none;
  border: none;
  padding: 10px;
  background: -moz-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dfcd83), color-stop(42%, #f8e7c0), color-stop(100%, #805f2b));
  background: -webkit-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  background: -o-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  background: -ms-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  background: linear-gradient(0deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dfcd83", endColorstr="#805f2b",GradientType=0 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  outline: none;
}

/* 記事詳細ページ（singlepage）
---------------------------------------------------- */
.l-content .single-entry a {
  text-decoration: underline;
  color: #00e;
}
.l-content .single-entry p {
  margin-bottom: 30px;
}
.l-content .single-entry ul, .l-content .single-entry ol {
  background-color: #f9f9f9;
  padding-top: 20px;
  padding-left: 40px;
  padding-bottom: 20px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.02);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.02);
  margin-bottom: 30px;
}
.l-content .single-entry ul {
  list-style: disc;
}
.l-content .single-entry ol {
  list-style: decimal;
}
.l-content .single-entry h2 {
  background: #333;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.6;
  padding: 15px;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry h3 {
  background-color: #fff;
  color: #333;
  font-size: 2.2rem;
  line-height: 1.6;
  padding: 15px 0;
  border-top: 3px solid #333;
  border-bottom: 3px solid #333;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry h4 {
  background-color: #fff;
  color: #333;
  border-left: 4px solid #333;
  font-size: 2rem;
  line-height: 1.6;
  padding: 15px;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry h5 {
  background-color: #fff;
  color: #333;
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 15px 0;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry h6 {
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 15px 0;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry blockquote {
  padding: 30px;
  border: 1px solid #666;
  position: relative;
  margin-bottom: 30px;
}
.l-content .single-entry blockquote:before, .l-content .single-entry blockquote:after {
  font-family: fontello;
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  background: #fff;
  position: absolute;
  color: #666;
}
.l-content .single-entry blockquote:before {
  content: "";
  top: -6px;
  left: -6px;
}
.l-content .single-entry blockquote:after {
  content: "";
  bottom: -6px;
  right: -6px;
}
.l-content .single-entry blockquote p {
  margin-bottom: 0 !important;
}
.l-content .single-entry code {
  background-color: #eee;
  padding: 0px 5px 0px;
  border-radius: 2px;
  margin: 0 5px;
  border: solid 1px #bbb;
  color: #333;
  font-size: 1.6rem;
  line-height: 40px;
  display: inline-block;
  margin-bottom: 30px;
}

.pre-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  list-style: none;
  background: no-repeat;
  box-shadow: none;
  border: none;
  padding: 0;
  border-radius: unset;
}
@media only screen and (max-width: 768px) {
  .pre-next {
    margin: 20px 0;
  }
}
.pre-next li {
  position: relative;
  border: 0 solid #ddd;
  border-width: 1px 1px 1px 0;
  font-size: 14px;
  list-style: none;
  -webkit-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pre-next li:first-child {
  border-width: 1px;
}
.pre-next li:before {
  font-size: 1.4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
}
.pre-next a {
  color: #333;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .pre-next a {
    justify-content: center;
    padding: 10px 40px;
  }
}
.pre-next a .image {
  width: 120px;
  overflow: hidden;
}
.pre-next a .image .thumb {
  width: 100%;
  padding-top: 60%;
  position: relative;
}
.pre-next a .image .thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 768px) {
  .pre-next a .image {
    display: none;
  }
}
.pre-next a span {
  flex: 1;
  margin: 0 10px;
  font-size: 1.4rem;
  max-height: 40px;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 768px) {
  .pre-next a span {
    display: none;
  }
}
.pre-next .pre-post:before {
  left: 10px;
}
.pre-next .pre-post a {
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .pre-next .pre-post a:before {
    content: attr(data-prev);
  }
}
.pre-next .pre-post a span {
  margin-right: 0;
  margin-left: 15px;
}
.pre-next .next-post:before {
  right: 10px;
}
.pre-next .next-post a {
  text-align: right;
  width: 100%;
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .pre-next .next-post a:before {
    content: attr(data-next);
  }
}
.pre-next .next-post a span {
  margin-left: 0;
  margin-right: 15px;
}
.pre-next .l-arrow:before {
  content: "";
  font-family: fontello;
}
.pre-next .r-arrow:before {
  content: "";
  font-family: fontello;
}

/* COMPONENT: c-tlt;
---------------------------------------------- */
.c-tlt {
  text-align: center;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .c-tlt {
    margin-bottom: 25px;
  }
}
.c-tlt_main {
  font-size: 5rem;
  line-height: 1;
  margin: 15px 0;
  font-weight: bold;
  background: -moz-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dfcd83), color-stop(42%, #f8e7c0), color-stop(100%, #805f2b));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* ie10+ */
  background: linear-gradient(0deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dfcd83", endColorstr="#805f2b",GradientType=0 );
  /* ie6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 768px) {
  .c-tlt_main {
    font-size: 2.5rem;
    margin: 10px 0;
  }
}
.c-tlt_sub {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  margin: 10px 0;
  font-weight: bold;
  background: -moz-linear-gradient(270deg, #e4bf68 0%, #8c5e00 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4bf68), color-stop(100%, #8c5e00));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(270deg, #e4bf68 0%, #8c5e00 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(270deg, #e4bf68 0%, #8c5e00 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(270deg, #e4bf68 0%, #8c5e00 100%);
  /* ie10+ */
  background: linear-gradient(180deg, #e4bf68 0%, #8c5e00 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e4bf68", endColorstr="#8c5e00",GradientType=0 );
  /* ie6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: rgba(245, 245, 245, 0.2) -1px -1px 3px;
}
@media only screen and (max-width: 768px) {
  .c-tlt_sub {
    font-size: 1.8rem;
  }
}

/* COMPONENT: c-contact;
---------------------------------------------- */
.c-contact {
  background: #1c204f;
}
.c-contact:before, .c-contact:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #d7913e;
}
.c-contact_top {
  text-align: center;
  background-image: url("../img/c-contact-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  padding: 10px 0;
}
.c-contact_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  .c-contact_bottom {
    flex-direction: column;
  }
}
.c-contact_tlt {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  background: -moz-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dfcd83), color-stop(42%, #f8e7c0), color-stop(100%, #805f2b));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* ie10+ */
  background: linear-gradient(0deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dfcd83", endColorstr="#805f2b",GradientType=0 );
  /* ie6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 10px 0;
}
@media only screen and (max-width: 768px) {
  .c-contact_tlt {
    font-size: 2rem;
    line-height: 1.1;
  }
}
.c-contact_tel {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .c-contact_tel {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.c-contact_tel_inner {
  max-width: 400px;
}
.c-contact_tel_txt01 {
  font-size: 3rem;
  color: #fff;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .c-contact_tel_txt01 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.c-contact_tel_time {
  font-size: 1.7rem;
  color: #fff;
  text-align: right;
}
.c-contact_btn {
  max-width: 600px;
  display: block;
  margin: 0 auto;
}
.c-contact_btn02 {
  margin-left: 20px;
  max-width: 400px;
  width:100%;
}
@media only screen and (max-width: 768px) {
  .c-contact_btn02 {
    margin-left: 0;
  }
}

/* basic layout
---------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  padding-bottom: 70px;
}
body.page-id-6 {
  padding-bottom: 0;
}
@media only screen and (min-width: 769px) {
  body {
    min-width: 1400px;
  }
}
@media only screen and (max-width: 768px) {
  body {
    padding-bottom: 40px;
  }
}

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

.pc {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: inline-block;
  }
}

.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 95%;
  }
}

.l-no__padding {
  padding: 0;
}
.l-no__margin {
  margin: 0;
}
.l-flex {
  display: flex;
}
.l-flex__no-wrap {
  flex-wrap: nowrap;
}
.l-flex__wrap {
  flex-wrap: wrap;
}
.l-flex__spb {
  justify-content: space-between;
}
.l-block {
  display: block;
}
.l-none {
  display: none;
}
.l-inline {
  display: inline;
}

/* until
-------------------------------------------------- */
.mt0 {
  margin-top: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mr0 {
  margin-right: 0px;
}

.mt1 {
  margin-top: 5px;
}

.mb1 {
  margin-bottom: 5px;
}

.ml1 {
  margin-left: 5px;
}

.mr1 {
  margin-right: 5px;
}

.mt2 {
  margin-top: 10px;
}

.mb2 {
  margin-bottom: 10px;
}

.ml2 {
  margin-left: 10px;
}

.mr2 {
  margin-right: 10px;
}

.mt3 {
  margin-top: 15px;
}

.mb3 {
  margin-bottom: 15px;
}

.ml3 {
  margin-left: 15px;
}

.mr3 {
  margin-right: 15px;
}

.mt4 {
  margin-top: 20px;
}

.mb4 {
  margin-bottom: 20px;
}

.ml4 {
  margin-left: 20px;
}

.mr4 {
  margin-right: 20px;
}

.mt5 {
  margin-top: 25px;
}

.mb5 {
  margin-bottom: 25px;
}

.ml5 {
  margin-left: 25px;
}

.mr5 {
  margin-right: 25px;
}

.mt6 {
  margin-top: 30px;
}

.mb6 {
  margin-bottom: 30px;
}

.ml6 {
  margin-left: 30px;
}

.mr6 {
  margin-right: 30px;
}

.mt7 {
  margin-top: 35px;
}

.mb7 {
  margin-bottom: 35px;
}

.ml7 {
  margin-left: 35px;
}

.mr7 {
  margin-right: 35px;
}

.mt8 {
  margin-top: 40px;
}

.mb8 {
  margin-bottom: 40px;
}

.ml8 {
  margin-left: 40px;
}

.mr8 {
  margin-right: 40px;
}

.mt9 {
  margin-top: 45px;
}

.mb9 {
  margin-bottom: 45px;
}

.ml9 {
  margin-left: 45px;
}

.mr9 {
  margin-right: 45px;
}

.mt10 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 50px;
}

.ml10 {
  margin-left: 50px;
}

.mr10 {
  margin-right: 50px;
}

/* l-pageTitle
-------------------------------------------------- */
.l-pageTitle {
  background-color: #cdcdcd;
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
}
.l-pageTitle h1, .l-pageTitle h2 {
  margin-bottom: 0;
}

/* menu
-------------------------------------------------- */
.menu {
  display: none;
}
@media only screen and (max-width: 768px) {
  .menu {
    display: block;
    margin-top: 5px;
    margin-bottom: -25px;
    z-index: 1000;
  }
}
.menu_icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu_icon_bar {
  width: 30px;
  height: 2px;
  background: #1c204f;
  position: relative;
}
.menu_icon_bar:before, .menu_icon_bar:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: #1c204f;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.menu_icon_bar:before {
  top: -8px;
}
.menu_icon_bar:after {
  top: 8px;
}
.menu_icon.active .menu_icon_bar {
  background: transparent;
}
.menu_icon.active .menu_icon_bar:before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.menu_icon.active .menu_icon_bar:after {
  top: 0;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* l-header
-------------------------------------------------- */
.l-header {
  background: #fff;
  width: 100%;
  top: 0;
  padding: 0 10px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-header {
    height: 60px;
    padding: 0;
    top: 0;
    display: flex;
    align-items: center;
  }
}
.l-header_btn {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .l-header_btn {
    display: flex !important;
    flex: 0 0 auto;
  }
  .l-header_btn a {
    flex: 1;
  }
  .l-header_btn img {
    height: 60px;
    widows: auto;
  }
}
.l-header_inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .l-header_inner {
    width: 100%;
  }
}
.l-header .logo a {
  display: inline-block;
}
.l-header .logo_inner {
  display: flex;
}
.l-header .logo_img {
  max-width: 150px;
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  .l-header .logo_img {
    max-width: 80px;
    flex: 0 0 auto;
  }
  .l-header .logo_img img {
    height: 60px;
    width: auto;
  }
}
.l-header .logo_img figure {
  margin-bottom: -70%;
}
@media only screen and (max-width: 768px) {
  .l-header .logo_img figure {
    margin-bottom: inherit;
  }
}
.l-header .logo_info {
  margin-top: 10px;
}
.l-header .logo_slogan {
  font-size: 1.4rem;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .l-header .logo_slogan {
    font-size: 1rem;
  }
}
.l-header .logo_tlt {
  font-size: 3rem;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .l-header .logo_tlt {
    font-size: 1.4rem;
  }
}
.l-header_func {
  display: flex;
  align-items: baseline;
  margin-top: 5px;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.l-header_func {
	  align-items: center;
	}
}
@media only screen and (max-width: 768px) {
  .l-header_func {
    display: none;
    position: fixed;
    top: -10px;
    left: 0;
    width: 100%;
    height: calc(100% + 10px);
    background: #fff;
    z-index: 999;
    padding: 80px 20px;
  }
}
.l-header .func_tel {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .l-header .func_tel {
    max-width: 300px;
    margin: 0 auto;
  }
}
.l-header .func_tel_num {
  max-width: 230px;
}
@media only screen and (max-width: 768px) {
  .l-header .func_tel_num {
    max-width: 300px;
  }
}
.l-header .func_tel_time {
  font-size: 1.5rem;
}
.l-header .func_btn {
  margin-left: 10px;
  max-width: 215px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .l-header .func_btn {
    max-width: 300px;
    margin: 10px auto;
  }
}

/* l-footer
------------------------------------------------------ */
.l-footer {
  position: relative;
}
.l-footer:after {
  content: "";
  width: 100%;
  height: 5px;
  background-image: url("../img/bg-border.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.l-footer_inner {
  display: flex;
  align-items: center;
  max-width: 590px;
  margin: 0 auto;
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .l-footer_inner {
    padding: 30px 0;
    flex-direction: column;
    text-align: center;
  }
}
.flogo {
  max-width: 100px;
	width: 100%;
}
.l-footer_info {
  flex: 1;
  padding-left: 30px;
}
@media only screen and (max-width: 768px) {
  .l-footer_info {
    padding-left: 0;
  }
}
.l-footer_txt01 {
  font-size: 2rem;
  color: #212121;
}
@media only screen and (max-width: 768px) {
  .l-footer_txt01 {
    font-size: 1.4rem;
  }
}
.l-footer_txt02 {
  font-size: 4rem;
  color: #212121;
}
@media only screen and (max-width: 768px) {
  .l-footer_txt02 {
    font-size: 2.5rem;
  }
}
.l-footer small {
  font-size: 1.2rem;
  color: #1c204f;
}

/* l-layout
------------------------------------------------------ */
.single-2column {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .single-2column {
    flex-direction: column;
  }
}
.single-2column .l-layout--content {
  flex: 1 1 auto;
  padding-right: 30px;
}
.single-2column .l-layout--sidebar {
  flex: 0 0 300px;
}

/* l-sidebar
------------------------------------------------------ */
/* Breadcrumb
------------------------------------------------------ */
.c-breakcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  margin: 30px 0;
  list-style: none;
}

@media only screen and (max-width: 639px) {
  .c-breakcrumb {
    padding: 15px 0;
    margin: 20px 0;
  }
}
.c-breakcrumb li {
  font-size: 11px;
  position: relative;
  margin: 0 10px;
  padding-right: 25px;
}

.c-breakcrumb li a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #112942;
  vertical-align: middle;
}

.c-breakcrumb li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -5px;
  width: 6px;
  height: 10px;
  background: url(../img/arrow-right.svg) center center no-repeat;
  background-size: cover;
}

.c-breakcrumb li span {
  font-size: 1.2rem;
  text-decoration: none;
  color: #333;
}

/* Sidebar -Widget
------------------------------------------------------ */
.sidebar-main {
  margin-bottom: 40px;
}
.sidebar-main:last-child {
  margin-bottom: 0;
}
.sidebar-main .sidebar-title {
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 6px 12px;
  background: #333;
  border: 3px double #fff;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-main img {
  width: 100%;
}

.wide-layout ul {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.wide-layout ul li {
  margin-bottom: 30px;
}
.wide-layout ul li .side-ranking-title {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}
.wide-layout ul li .side-ranking-meta {
  margin-top: 15px;
}
.wide-layout ul li .side-ranking-meta .side-ranking-img img {
  display: none;
}
.wide-layout ul li .side-ranking-meta .side-ranking-img a {
  overflow: hidden;
  display: block;
}
.wide-layout ul li .side-ranking-meta .side-ranking-img a img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  -webkit-transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.wide-layout ul li .side-ranking-meta .side-ranking-img a:hover img {
  -webkit-filter: opacity(0.8);
  filter: opacity(0.8);
}
.wide-layout ul li .side-ranking-meta .side-ranking-info {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 10px;
}
.wide-layout ul li .side-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wide-layout ul li .side-ranking-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.wide-layout ul li .side-ranking-btn a {
  width: 100%;
  height: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.wide-layout ul li:last-child {
  margin-bottom: 0;
}
.wide-layout ul li:first-child .side-ranking-title {
  border-color: #FFCF24;
}
.wide-layout ul li:nth-child(2) .side-ranking-title {
  border-color: #A0A9B1;
}
.wide-layout .color-button01 a {
  line-height: 40px;
  font-size: 1.4rem;
}
.wide-layout .color-button02 a {
  line-height: 40px;
  font-size: 1.4rem;
}

.simple-style .side-ranking-title {
  border-bottom: 1px solid;
  padding-left: 45px;
  padding-bottom: 3px;
  letter-spacing: 0;
}
.simple-style .side-ranking-title img {
  width: 45px;
  position: absolute;
  left: -2px;
  bottom: 4px;
}

.c-profile {
  text-align: center;
}
.c-profile .img {
  width: 110px;
  height: 110px;
  margin: 0 auto 10px auto;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.c-profile .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-profile .name {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.c-profile .job {
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 3px;
}
.c-profile .profile-sns {
  margin-top: 10px;
}

.link--wrap a {
  display: inline-block;
  vertical-align: top;
  margin: 4px;
  padding: 8px 12px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 13px;
  color: #fff;
  background: #666;
}

.searchform {
  position: relative;
}
.searchform .screen-reader-text {
  display: none;
}
.searchform .label__submit {
  display: inherit;
  margin-bottom: 10px;
}
.searchform .label__submit:before {
  content: "";
  font-family: fontello;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  height: 45px;
  width: 34px;
  background: none;
  display: inline-block;
  font-size: 2rem;
  color: #aaa !important;
  line-height: 45px;
}
.searchform input[type=text] {
  background-color: #fff;
  border: 1px solid #ddd;
  height: 45px;
  width: 100%;
  margin: 0;
  padding: 0 10px;
  padding-right: 40px;
  font-size: 1.3rem;
  -webkit-transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.searchform input[type=text]:focus {
  border: 1px solid #0094c8;
}
.searchform input[type=submit] {
  display: none;
}

.tagcloud a {
  display: inline-block;
  vertical-align: top;
  margin: 4px;
  padding: 8px 12px;
  font-size: 1.3rem !important;
  font-weight: 500;
  line-height: 13px;
  color: #fff;
  background: #666666;
}

.recent-post.c-list01 .c-list01_items {
  width: 100%;
  margin-right: 0;
}

.post-sidebar .items {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.post-sidebar .items:last-child {
  margin-bottom: 0;
}
.post-sidebar .items a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.post-sidebar .items .img {
  width: 33%;
  margin-right: 2%;
}
.post-sidebar .items .img .thumb {
  padding-top: 60%;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.post-sidebar .items .img .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.post-sidebar .items .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.post-sidebar .items .inner {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
}
.post-sidebar .items .inner .date {
  margin-right: 10px;
}
.post-sidebar .items .tlt p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  font-weight: bold;
  line-height: 18px;
  max-height: 36px;
  margin-bottom: 3px;
}
.post-sidebar .items .view p {
  font-size: 1.2rem;
  color: #aaa;
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-sidebar .items .view span {
  position: relative;
}
.post-sidebar .items .view span:before {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.2rem;
  left: -15px;
  top: 0px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-sidebar .items .date p {
  font-size: 1.2rem;
  color: #aaa;
}

.twobutton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.color-button01 {
  margin: 0 5px;
}
.color-button01 a {
  border-radius: 6px;
  text-align: center;
  padding: 0px 80px;
  line-height: 60px;
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
}
.color-button01 a:hover {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: 0 0 0 #c07800 !important;
  box-shadow: 0 0 0 #c07800 !important;
  -webkit-transition: all 0.01 ease-in-out;
  -o-transition: all 0.01 ease-in-out;
  transition: all 0.01 ease-in-out;
}

.color-button02 {
  margin: 0 5px;
}
.color-button02 a {
  border-radius: 6px;
  text-align: center;
  padding: 0px 80px;
  line-height: 60px;
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
}
.color-button02 a:hover {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: 0 0 0 #c07800 !important;
  box-shadow: 0 0 0 #c07800 !important;
  -webkit-transition: all 0.01 ease-in-out;
  -o-transition: all 0.01 ease-in-out;
  transition: all 0.01 ease-in-out;
}

@media (max-width: 767px) {
  .wide-layout ul li .side-ranking-title {
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .wide-layout ul li .side-btn-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .wide-layout ul li .side-ranking-btn {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    width: 100%;
    margin: 5px auto;
  }
}
@media print {
  .post-sidebar .items .tlt p {
    font-size: 1.6rem;
  }

  .color-button01 {
    display: block;
    width: 100%;
    margin: 5px 0px;
  }
  .color-button01 a {
    width: 100%;
    display: block;
  }

  .color-button02 {
    display: block;
    width: 100%;
    margin: 5px 0px;
  }
  .color-button02 a {
    width: 100%;
    display: block;
  }

  .wide-layout .color-button01 a {
    line-height: 60px;
    font-size: 1.6rem;
  }
  .wide-layout .color-button02 a {
    line-height: 60px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .post-sidebar .items .tlt p {
    font-size: 1.6rem;
  }

  .color-button01 {
    display: block;
    width: 100%;
    margin: 5px 0px;
  }
  .color-button01 a {
    width: 100%;
    display: block;
  }

  .color-button02 {
    display: block;
    width: 100%;
    margin: 5px 0px;
  }
  .color-button02 a {
    width: 100%;
    display: block;
  }

  .wide-layout .color-button01 a {
    line-height: 60px;
    font-size: 1.6rem;
  }
  .wide-layout .color-button02 a {
    line-height: 60px;
    font-size: 1.6rem;
  }
}
.widget_pages ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_pages ul li:last-child {
  border-bottom: none;
}
.widget_pages ul li a {
  display: block;
  padding: 10px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_pages ul li a:hover:after {
  right: 5px;
  -webkit-transform: translate(1px, 0);
  -ms-transform: translate(1px, 0);
  transform: translate(1px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_pages ul li a:after {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.4rem;
  right: 10px;
  color: #666;
}

.widget_popularpost_widget .post-sidebar .img {
  position: relative;
}

.widget_categories ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_categories ul li a {
  display: block;
  padding: 10px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_categories ul li a:hover:after {
  right: 5px;
  -webkit-transform: translate(1px, 0);
  -ms-transform: translate(1px, 0);
  transform: translate(1px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_categories ul li a:after {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.4rem;
  right: 10px;
  color: #666;
}
.widget_categories label {
  font-size: 0;
  position: relative;
  display: none;
}
.widget_categories select {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding-left: 10px;
  z-index: 1;
  background: transparent;
  position: relative;
  font-size: 1.6rem;
  -webkit-appearance: none;
  background: url("../img/60781.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.widget_categoryC select {
  width: 100%;
  height: 40px;
  border: 1px solid #e5e5e5;
  padding-left: 10px;
  z-index: 1;
  background: transparent;
  position: relative;
  font-size: 1.6rem;
  -webkit-appearance: none;
  background: url("../img/60781.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.widget_meta ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_meta ul li a {
  display: block;
  padding: 10px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_meta ul li a:hover:after {
  right: 5px;
  -webkit-transform: translate(1px, 0);
  -ms-transform: translate(1px, 0);
  transform: translate(1px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_meta ul li a:after {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.4rem;
  right: 10px;
  color: #666;
}

.widget_archive ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_archive ul li:last-child {
  border-bottom: none;
}
.widget_archive ul li a {
  display: block;
  padding: 10px 20px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_archive ul li a:hover {
  -webkit-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  transform: translate(5px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_archive ul li a:before {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 0.9rem;
  line-height: 14px;
  top: 50%;
  left: 0;
  color: #fff;
  background: #333;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-indent: 2px;
}
.widget_archive label {
  font-size: 0;
  position: relative;
  display: none;
}
.widget_archive select {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding-left: 10px;
  z-index: 1;
  background: transparent;
  position: relative;
  font-size: 1.6rem;
  -webkit-appearance: none;
  background: url("../img/60781.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.widget_calendar table caption {
  padding: 8px 0;
  margin-bottom: 8px;
  background: #ececec;
}
.widget_calendar table tr th {
  text-align: center;
  padding: 3px 0;
}
.widget_calendar table tr td {
  text-align: center;
  font-size: 1.4rem;
  padding: 3px 0;
}
.widget_calendar #calendar_wrap {
  background: #fff;
  padding-bottom: 8px;
}
.widget_calendar #prev a {
  color: #333 !important;
  font-size: 1.4rem;
}
.widget_calendar #next a {
  color: #333 !important;
}

.widget_pages ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_pages ul li:last-child {
  border-bottom: none;
}
.widget_pages ul li a {
  display: block;
  padding: 10px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_pages ul li a:hover:after {
  right: 5px;
  -webkit-transform: translate(1px, 0);
  -ms-transform: translate(1px, 0);
  transform: translate(1px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_pages ul li a:after {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.4rem;
  right: 10px;
  color: #666;
}

.intro-site .intro-text {
  margin-top: 5px;
  text-align: center;
  color: #333;
}

.widget_rss h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.widget_rss h4 .rsswidget {
  font-size: 1.6rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 5px;
}
.widget_rss ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.widget_rss ul li a {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
  display: block;
}
.widget_rss ul li .rss-date {
  font-size: 1.4rem;
  padding: 5px 0;
  display: block;
}
.widget_rss ul li .rssSummary {
  font-size: 1.4rem;
  display: block;
}
.widget_rss ul li cite {
  display: none;
}

.widget_nav_menu ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_nav_menu ul li:last-child {
  border-bottom: none;
}
.widget_nav_menu ul li .sub-menu {
  padding-left: 15px;
}
.widget_nav_menu ul li .sub-menu a {
  border-bottom: none;
}
.widget_nav_menu ul li a {
  display: block;
  padding: 10px 20px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_nav_menu ul li a:hover {
  -webkit-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  transform: translate(5px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_nav_menu ul li a:before {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 0.9rem;
  line-height: 14px;
  top: 50%;
  left: 0;
  color: #fff;
  background: #333;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(-50%);
  text-indent: 2px;
}
.widget_nav_menu ul .menu-item-has-children {
  border-bottom: none;
}
.widget_nav_menu ul .menu-item-has-children a {
  border-bottom: 1px dotted #ddd;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gallery dt a {
  width: 100%;
  display: block;
  position: relative;
  padding-top: 100%;
}
.gallery dt a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* l-part
--------------------------------------------------------*/
.l-part {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .l-part {
    padding: 50px 0;
  }
}

/* l-msg
--------------------------------------------------------*/
.l-msg {
  background-image: url("../img/msg-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.l-msg:after {
  content: "";
  width: 100%;
  height: 5px;
  background-image: url("../img/bg-border.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-msg_txt {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-msg_txt {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* l-reason
--------------------------------------------------------*/
.l-reason {
  background-color: #1b1b1f;
  background-image: url("../img/reason-bg.png");
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: top right;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .l-reason {
    padding-top: 50px;
  }
}
.l-reasonList .items:not(:last-child) {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items:not(:last-child) {
    margin-bottom: 30px;
  }
}
.l-reasonList .items:nth-child(odd) .items_info {
  padding-right: 60px;
  padding-left: 30px;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items:nth-child(odd) .items_info {
    padding-right: 0;
    padding-left: 0;
  }
}
.l-reasonList .items:nth-child(even) .items_inner {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items:nth-child(even) .items_inner {
    flex-direction: column;
  }
}
.l-reasonList .items:nth-child(even) .items_info {
  padding-left: 60px;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items:nth-child(even) .items_info {
    padding-left: 0;
  }
}
.l-reasonList .items_inner {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items_inner {
    flex-direction: column;
  }
}
.l-reasonList .items_info {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items_info {
    width: 100%;
    margin-bottom: 30px;
  }
}
.l-reasonList .items_img {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items_img {
    width: 100%;
  }
}
.l-reasonList .items_num {
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  background: -moz-linear-gradient(90deg, #ffd200 0%, #ff8a00 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff8a00), color-stop(100%, #ffd200));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(90deg, #ffd200 0%, #ff8a00 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(90deg, #ffd200 0%, #ff8a00 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(90deg, #ffd200 0%, #ff8a00 100%);
  /* ie10+ */
  background: linear-gradient(0deg, #ffd200 0%, #ff8a00 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff8a00", endColorstr="#ffd200",GradientType=0 );
  /* ie6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items_num {
    font-size: 2.5rem;
  }
}
.l-reasonList .items_tlt {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items_tlt {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}
.l-reasonList .items_txt {
  font-size: 2.1rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .l-reasonList .items_txt {
    font-size: 1.6rem;
  }
}

/* l-works
--------------------------------------------------------*/
.l-works {
  background-color: #1b1b1f;
  background-image: url("../img/works-bg.png");
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: top left;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .l-works {
    padding-top: 50px;
  }
}
.l-worksList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-worksList .items {
  width: calc(50% - 30px);
}
.l-worksList .items:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .l-worksList .items {
    width: 100%;
  }
}
.l-worksList .items_tlt {
  font-size: 2.2rem;
  color: #fff;
  margin: 15px 0;
  font-size: 1.6rem;
}
.l-worksList .items_txt01 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .l-worksList .items_txt01 {
    font-size: 1.8rem;
  }
}
.l-worksList .items_txt02 {
  font-size: 1.6rem;
  color: #fff;
  padding: 15px 0;
  margin-bottom: 10px;
  border-top: 1px solid #fff;
}
.l-worksList .items_btn {
  display: block;
  background: #1c204f;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .l-worksList .items_btn {
    font-size: 1.6rem;
    margin-top: 0;
  }
}

/* l-feature
--------------------------------------------------------*/
.l-feature {
  background-color: #fff;
  background-image: url("../img/feature-bg.png");
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: top right;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .l-feature {
    padding-top: 50px;
  }
}
.l-featureList .items:not(:last-child) {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items:not(:last-child) {
    margin-bottom: 30px;
  }
}
.l-featureList .items:nth-child(odd) .items_info {
  padding-right: 60px;
  padding-left: 30px;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items:nth-child(odd) .items_info {
    padding-left: 0;
    padding-right: 0;
  }
}
.l-featureList .items:nth-child(even) .items_inner {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items:nth-child(even) .items_inner {
    flex-direction: column;
  }
}
.l-featureList .items:nth-child(even) .items_info {
  padding-left: 60px;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items:nth-child(even) .items_info {
    padding-left: 0;
  }
}
.l-featureList .items_inner {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items_inner {
    flex-direction: column;
  }
}
.l-featureList .items_info {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items_info {
    width: 100%;
    margin-bottom: 30px;
  }
}
.l-featureList .items_img {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items_img {
    width: 100%;
  }
}
.l-featureList .items_num {
  margin-right: 10px;
  display: inline-block;
}
.l-featureList .items_num img {
  display: inline-block;
  max-height: 50px;
  vertical-align: sub;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items_num img {
    max-height: 30px;
  }
}
.l-featureList .items_tlt {
  display: flex;
  align-items: baseline;
  font-size: 4rem;
  font-weight: bold;
  color: #161616;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items_tlt {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}
.l-featureList .items_txt {
  font-size: 2.1rem;
  color: #161616;
}
@media only screen and (max-width: 768px) {
  .l-featureList .items_txt {
    font-size: 1.6rem;
  }
}

/* l-flow
--------------------------------------------------------*/
.l-flow {
  background-color: #1b1b1f;
  background-image: url("../img/flow-bg.png");
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: top right;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .l-flow {
    padding-top: 50px;
  }
}
.l-flowList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-flowList .items {
  background: #1c204f;
  width: 100%;
  padding: 30px 20px;
  position: relative;
}
.l-flowList .items:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .l-flowList .items:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .l-flowList .items {
    padding: 30px 10px;
  }
}
.l-flowList .items_inner {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .l-flowList .items_inner {
    flex-direction: column;
  }
}
.l-flowList .items_info {
  padding-left: 100px;
  position: relative;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .l-flowList .items_info {
    padding-left: 60px;
    margin-bottom: 30px;
  }
}
.l-flowList .items_num {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  border-radius: 50%;
  line-height: 70px;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  background: -moz-linear-gradient(90deg, #694e39 0%, #ac8961 50%, #735b43 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #735b43), color-stop(50%, #ac8961), color-stop(100%, #694e39));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(90deg, #694e39 0%, #ac8961 50%, #735b43 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(90deg, #694e39 0%, #ac8961 50%, #735b43 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(90deg, #694e39 0%, #ac8961 50%, #735b43 100%);
  /* ie10+ */
  background: linear-gradient(0deg, #694e39 0%, #ac8961 50%, #735b43 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#735b43", endColorstr="#694e39",GradientType=0 );
  /* ie6-9 */
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.l-flowList .items_num{
		line-height:85px;
	}
}

@media only screen and (max-width: 768px) {
  .l-flowList .items_num {
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
    line-height: 50px;
  }
	
	@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
		.l-flowList .items_num{
			line-height:60px;
		}
	}
}
.l-flowList .items_tlt {
  font-size: 4.2rem;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .l-flowList .items_tlt {
    font-size: 2.6rem;
  }
}
.l-flowList .items_txt {
  font-size: 2.2rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .l-flowList .items_txt {
    font-size: 1.6rem;
  }
}
.l-flowList .items_img {
  max-width: 300px;
}
@media only screen and (max-width: 768px) {
  .l-flowList .items_img {
    max-width: unset;
    text-align: center;
  }
}
.l-flowList .items_img img {
  margin: 0 auto;
}
.l-flowList .items_arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 150px;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
@media only screen and (max-width: 768px) {
  .l-flowList .items_arrow {
    max-width: 100px;
  }
}

/* l-qa
--------------------------------------------------------*/
.l-qa {
  position: relative;
}
.l-qa:after {
  content: "";
  width: 100%;
  height: 5px;
  background-image: url("../img/bg-border.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-qaList .items:not(:last-child) {
  margin-bottom: 20px;
}
.l-qaList .items_q {
  font-size: 3rem;
  padding: 15px 0 15px 80px;
  border-bottom: 1px solid #aa8860;
  position: relative;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .l-qaList .items_q {
    font-size: 1.8rem;
    padding: 15px 0 15px 40px;
  }
}
.l-qaList .items_q:before {
  content: "Q.";
  background: #1c204f;
  font-size: 3.2rem;
  line-height: 55px;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 12px;
}
@media only screen and (max-width: 768px) {
  .l-qaList .items_q:before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 2rem;
  }
}
.l-qaList .items_a {
  font-size: 2rem;
  padding: 15px 0 15px 80px;
}
@media only screen and (max-width: 768px) {
  .l-qaList .items_a {
    font-size: 1.6rem;
    padding: 15px 0 15px 40px;
  }
}

/* l-shop
--------------------------------------------------------*/
.l-shop_tb dl{
  display: flex;
  flex-wrap:wrap;
  border:1px solid #ddd;
  border-bottom: none;
}
.l-shop_tb dl:last-child{
  border-bottom: 1px solid #ddd;
}
.l-shop_tb dt{
  flex: 0 0 200px;
  padding: 20px;
  border-right: 1px solid #ddd;
	background: #1c204f;
	color:#fff;
}
.l-shop_tb dd{
  flex: 1;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .l-shop_tb dt{
    flex: 0 0 100px;
    padding: 20px 10px;
  }
  .l-shop_tb dd{
    padding: 20px 10px;
  }
}
/* l-contact
--------------------------------------------------------*/
.l-contact {
  background: #1c204f;
  position: relative;
  padding-top: 20px;
}
.l-contact .c-tlt {
  margin-bottom: 50px;
}
.l-contact ._box {
  background: #fff;
  border: 2px solid #ed3224;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
}
.l-contact ._box_inner {
  padding: 10px 20px;
  position: relative;
  z-index: 1;
}
.l-contact ._box_tlt {
  line-height: 1;
  text-align: center;
  padding: 5px;
  color: #fff;
  background: -moz-linear-gradient(90deg, #e31000 0%, #ff6b60 99%, #ff6b60 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff6b60), color-stop(1%, #ff6b60), color-stop(100%, #e31000));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(90deg, #e31000 0%, #ff6b60 99%, #ff6b60 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(90deg, #e31000 0%, #ff6b60 99%, #ff6b60 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(90deg, #e31000 0%, #ff6b60 99%, #ff6b60 100%);
  /* ie10+ */
  background: linear-gradient(0deg, #e31000 0%, #ff6b60 99%, #ff6b60 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff6b60", endColorstr="#e31000",GradientType=0 );
  /* ie6-9 */
}
.l-contact ._box_tlt p {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.2;
}
.l-contact ._box_tlt span {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .l-contact ._box_tlt p {
    font-size: 2rem;
  }
  .l-contact ._box_tlt span {
    font-size: 2rem;
  }
}
.l-contact ._box_img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 250px;
  z-index: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
@media only screen and (max-width: 768px) {
  .l-contact ._box_img {
    max-width: 150px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
}
.l-contact ._box_green {
  color: #42af47;
  font-weight: bold;
}
.l-contact ._box_txt01 {
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
}
@media only screen and (max-width: 768px) {
  .l-contact ._box_txt01 {
    font-size: 1.8rem;
  }
}
.l-contact ._box_txt02 {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  margin: 5px 0;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
	.l-contact ._box_txt02{
		display:block;
		word-break:break-all;
		padding:5px;
	}
}
.l-contact ._box_txt02:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #fdfca5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-contact ._box_txt02 span {
  font-size: 5rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1;
  background: -webkit-linear-gradient(#e31000, #ff6b60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	padding-right:10px;
}
@media only screen and (max-width: 768px) {
  .l-contact ._box_txt02 span {
    font-size: 3rem;
	  display:block;
	  word-break:break-all;
  }
}
.l-contact ._box_txt03 {
  font-size: 4rem;
  font-weight: bold;
  font-style: italic;
}
.l-contact ._box_txt03 small{
	font-size:2.4rem;
	 display: inherit;
}
@media only screen and (max-width: 768px) {
  .l-contact ._box_txt03 {
    font-size: 2.5rem;
  }
	.l-contact ._box_txt03 small{
		font-size:1.6rem;
	}
}
.l-contact ._box_txt03_sub {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .l-contact ._box_txt03_sub {
    font-size: 3.5rem;
  }
}
.l-contact_describe {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .l-contact_describe {
    font-size: 1.6rem;
  }
}
.l-contact_form dl {
  display: flex;
  align-items: end;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .l-contact_form dl {
    flex-direction: column;
  }
}
.l-contact_form dt, .l-contact_form dd {
  margin-bottom: 10px;
}
.l-contact_form dd {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .l-contact_form dd {
    width: 100%;
  }
}
.l-contact_form dt {
  font-size: 2.5rem;
  color: #fff;
  width: 280px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
@media only screen and (max-width: 768px) {
  .l-contact_form dt {
    font-size: 1.6rem;
  }
}
.l-contact_form dt:after {
  white-space: nowrap;
  font-size: 1.5rem;
  padding: 0 5px;
  position: absolute;
  right: 30px;
  top: 16px;
}
@media only screen and (max-width: 768px) {
  .l-contact_form dt:after {
    position: relative;
    top: unset;
    right: unset;
    margin-left: 10px;
    font-size: 1.2rem;
  }
}
.l-contact_form dt:not(.required):after {
  content: "任意";
  background: #5b63c0;
}
.l-contact_form dt.required:after {
  content: "必須";
  background: #c10808;
}
.l-contact_form .fieldInput textarea,
.l-contact_form .fieldInput input {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05rem;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  border-style: solid;
  border-width: 2px;
  border-radius: 4px;
  outline: none;
}
.l-contact_form .fieldSubmit {
  text-align: center;
}
.l-contact_form .fieldSubmit label {
  display: inline-block;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  background: #3c3c3c;
  border: none;
  outline: none;
  /*padding: 10px;*/
  box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.6);
}
.l-contact_form .fieldSubmit input {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
	display:block;
	text-align:center;
width:100%;

  background: none;
  border: none;
  padding: 0;
		padding:10px;
  background: -moz-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dfcd83), color-stop(42%, #f8e7c0), color-stop(100%, #805f2b));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(90deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* ie10+ */
  background: linear-gradient(0deg, #805f2b 0%, #f8e7c0 58%, #dfcd83 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dfcd83", endColorstr="#805f2b",GradientType=0 );
  /* ie6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  outline: none;
}
@media only screen and (max-width: 768px) {
  .l-contact_form .fieldSubmit input {
    font-size: 1.8rem;
	  -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
  }
}

div.wpcf7 .ajax-loader{
  display: none;
}
.wpcf7-response-output {
  font-size: 1.2rem !important; }

.wpcf7-not-valid {
  background: #ffb6c1 !important; }

span.wpcf7-not-valid-tip {
  font-size: 1.4rem !important;
  line-height: 1.8 !important;
  color: #fff !important;
  display: block !important;
  background: #B70000!important;
  margin-top: 3px!important;
  padding: 0 10px!important;
}

.wpcf7 .wpcf7-validation-errors {
  color: #B70000 !important;
  background-color: #F2DEDE !important;
  border: 2px solid #B70000 !important;
}
div.wpcf7-validation-errors {
  border: 1px solid #f00;
  color: #f00;
  background: #F2DEDE;
  padding: 10px; }
.wpcf7-not-valid{
  color: #B70000 !important;
  background-color: #F2DEDE !important;
  border: 2px solid #B70000 !important;
}
div.wpcf7-mail-sent-ok {
  background: #e6faeb;
  border: 1px solid #159867;
  color: #159867;
  padding: 10px; }
/* fixedBottom
--------------------------------------------------------*/
.fixedBottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
}
@media only screen and (max-width: 768px) {
  .fixedBottom_pc {
    display: none;
  }
}
.fixedBottom_sp {
  display: none;
  padding: 10px 3px;
  background: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 768px) {
  .fixedBottom_sp {
    display: flex;
  }
}
.fixedBottom .items {
  font-size: 1.2rem;
  flex: 1;
  text-align: center;
  color: #fff;
  margin: 0 3px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-weight: bold;
}
.fixedBottom .items:nth-child(1) {
  background: #e94d0b;
  box-shadow: 0px 3px #943005;
}
.fixedBottom .items:nth-child(2) {
  background: #176b9f;
  box-shadow: 0px 3px #044167;
}
.fixedBottom .items:nth-child(3) {
  background: #05895f;
  box-shadow: 0px 3px #02402c;
}

.marker_yellow_futo {
  background: linear-gradient(transparent 0%, #ffff66 0%);
  font-weight:bold;
}

.marker_yellow_futo_black {
  background: linear-gradient(transparent 0%, #ffff66 0%);
  color:#333;
  font-weight:bold;
}

.marker_yellow_hoso {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}

/*# sourceMappingURL=style.css.map */

/* Added 05-18-2020 Fixed IE*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.c-tlt_main{
		background:transparent;
		color:rgba(221, 183, 95, 1);
	}
	
	.c-tlt_sub{
		color:rgba(221, 183, 95, 1);
		background:transparent;
	}
	
	.c-contact_tlt{
		color:rgba(221, 183, 95, 1);
		background:transparent;
	}
	
	.l-reasonList .items_num{
		color:rgba(255, 143, 0, 1);
		background:transparent;
	}
}

/* 05-18-2020 */
.agreeBox {
    margin: 30px 0 50px;
    color: #fff;
    font-size: 2rem;
}
.agreeBox label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.agreeBox input[type=checkbox] {
 display:none;
}

.agreeBox .checkbox-field{
    position: relative;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 4px;
    display: inline-block;
    margin-right: 8px;
}

.agreeBox .checkbox-field:after{
	content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.agreeBox.is-active .checkbox-field{
	background:#333;
}

.agreeBox.is-active .checkbox-field:after{
	display:block;
}

.agreeBox label a{
	color:#00bfff;
	text-decoration:underline;
}

.l-contact_choices-wr{
    font-size: 2rem;
    color: #fff;
}

.l-contact_choices-wr > p{
	margin-bottom:10px;
	text-align:center;
}

.l-contact_choices{
	padding-left: 280px;
    display: flex;
	margin-bottom:20px;
}

.l-contact_choices .choice{
	margin-right:40px;
}
.l-contact_choices .choice input{
	display:none;
}

.l-contact_choices .choice .radio-field{
	position:relative;
	height:22px;
	width:22px;
	background:#eee;
	border-radius:50%;
	margin-right:8px;
	display:inline-block;
}
.l-contact_choices .choice .radio-field:after{
	content:'';
	position:absolute;
	height:10px;
	width:10px;
	top:50%;
	left:50%;
	border-radius:50%;
	transform:translate(-50%, -50%);
	background:#333;
	display:none;
}

.l-contact_choices .choice label{
	opacity:0.7;
}

.l-contact_choices .choice label.is-active{
	opacity:1;
}

.l-contact_choices .choice label.is-active .radio-field:after{
	display:block;
}

.l-contact_choices .choice label{
	display:flex;
	align-items:center;
}

@media only screen and (max-width: 768px) {
	.agreeBox{
		font-size:1.6rem;
	}
	
	.l-contact_choices-wr{
		font-size:1.6rem;
	}
	
	.l-contact_choices{
		padding-left: 0;
		display:block;
	}
	
	.l-contact_choices .choice{
		margin-right:0px;
		margin-bottom:10px;
	}
	
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.flogo figure{
		max-width:inherit;
	}
	
	.f-logo figure img{
		max-width:inherit;
	}
}

.page-id-6 .l-footer.header-cus{
	background: #1c204f;
}
.page-id-6 .l-footer.header-cus .l-footer_inner{
	background: #1c204f;
}
.page-id-6 .l-footer.header-cus .l-footer_txt01{
	color:#fff;
}
.page-id-6 .l-footer.header-cus .l-footer_txt02{
	color:#fff;
}
.page-id-6 .l-footer.header-cus .l-footer small{
	color:#fff;
}