@charset "UTF-8";
/*
Theme Name:		DRONEHOLIC cafe-THEME
Theme URI:		https://digiheads.co.jp/
Description:	Base Theme
Author:			Digiheads Inc.
Author URI:		https://digiheads.co.jp/
Version:		1.0.0
License:
License URI:
*/
/* DRONEHOLIC cafe THEME */
/* contents block */
.std_width {
  max-width: 1280px;
  min-width: 1024px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .std_width {
    max-width: 100vw;
    min-width: 100vw;
  }
}

.min_width {
  max-width: 1024px;
  min-width: 1024px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .min_width {
    max-width: calc(100vw - 40px);
    min-width: calc(100vw - 40px);
  }
}

.smin_width {
  max-width: 750px;
  min-width: 750px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .smin_width {
    max-width: calc(100vw - 40px);
    min-width: calc(100vw - 40px);
  }
}

/* Devaice Switching */
@media screen and (max-width: 500px) {
  .dpc {
    display: none !important;
  }
}

@media screen and (min-width: 501px) {
  .dsp {
    display: none !important;
  }
}

br.pc {
  display: block;
}
@media screen and (max-width: 500px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 500px) {
  br.sp {
    display: block;
  }
}

/* Themify Css Reset */
@media screen and (max-width: 500px) {
  .module_row > .row_inner,
.module-layout-part .module_row.fullwidth_row_container > .row_inner {
    max-width: 100% !important;
  }
}
.module.image-full-overlay .image-content:before {
  background-color: transparent !important;
}

.module.image-full-overlay:hover .image-content:before {
  background-color: rgba(0, 0, 0, 0) !important;
}

/* Reset CSS */
p, span, pre, div,
h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
}

ul,
ul > li {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol {
  padding-left: 1.5em;
}

a,
a > img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  will-change: opacity; /* safariでマウスオーバーした時のがたつきをなくす */
}
a:hover,
a > img:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

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

a:link:hover,
a[href]:hover {
  color: #6d91b4;
  text-decoration: none;
}

img {
  display: block;
}

::-moz-selection {
  background: #6d91b4;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #6d91b4;
  color: #ffffff;
  text-shadow: none;
}

ul#fixed_link {
  display: none;
}

a.tb_turn_on,
span.edit-button {
  display: none !important;
}

#entry.topics .entry-content {
  max-width: 1024px;
  margin: 0 auto;
}

.list-post .post.topics {
  margin: 0 !important;
}

/* DRONEHOLIC cafe ORIGINAL */
html {
  font-size: 62.5% !important;
}

body {
  min-width: 1024px;
  font-family: "Roboto", "Noto Sans JP", -apple-system, "YuGothic", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #333333;
}
@media screen and (max-width: 500px) {
  body {
    min-width: 100vw;
  }
}

p {
  font-weight: 300;
}

small {
  font-weight: 300;
}

h1, h2, h3, h4, h5 {
  letter-spacing: 0.1em;
  font-family: "Roboto", "Noto Sans JP", -apple-system, "YuGothic", "Yu Gothic", sans-serif !important;
}

/* Common Css Override */
/* Contents Css Override */
/* Base CSS Reset */
#container {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 1024px;
  background: #f7f7f7;
  padding: 0;
  margin: 0 auto;
  /*padding-top: 100px;*/
  padding-bottom: 5rem;
}
@media screen and (max-width: 500px) {
  #container {
    max-width: 100vw;
    min-width: 100vw;
    /* padding-top: 60px;*/
  }
}

#main_column.colnum1 {
  width: 100%;
  margin: 0;
}

/* Header Section */
header {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
header.min_height {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header.min_height:hover {
  background: rgba(0, 0, 0, 0.8);
}
header:hover {
  /*background: rgba(0,0,0,.7);*/
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
@media screen and (max-width: 500px) {
  header {
    height: auto;
    background: rgba(0, 0, 0, 0.8);
  }
}

#header_sec {
  width: 100%;
  max-width: 1024px;
  min-width: 1024px;
  margin: auto;
}
#header_sec.min_height .site_logo {
  height: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 500px) {
  #header_sec.min_height .site_logo {
    height: 32px;
  }
}
@media screen and (max-width: 500px) {
  #header_sec {
    max-width: 100vw;
    min-width: 100vw;
    height: 74px;
  }
}
@media screen and (max-width: 500px) {
  #header_sec .upper_box {
    padding: 0 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  #header_sec .upper_box .site_logo {
    padding: 0;
    width: 65vw;
    height: auto;
    display: block;
  }
  #header_sec .upper_box .site_logo a {
    display: block;
    line-height: 1;
    font-size: 0;
  }
  #header_sec .upper_box .blank {
    width: 10px;
    height: 10px;
  }
}
#header_sec .site_logo {
  height: 124px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 500px) {
  #header_sec .site_logo {
    height: 32px;
  }
}
#header_sec .site_logo h1 {
  display: block;
  padding: 0;
  margin: auto;
}
#header_sec .site_logo h1 a > img {
  max-height: 30px;
  width: auto;
}
#header_sec .navi_blank {
  display: block;
  height: 0px;
  width: 37px;
  padding: 0;
  margin: 0;
}
#header_sec .site_navi {
  display: block;
  text-align: center;
  padding-bottom: 5px;
}
@media screen and (max-width: 500px) {
  #header_sec .site_navi {
    padding-top: 1em;
  }
}
#header_sec .site_navi .lower_navi {
  padding: 0.5em 0;
}
@media screen and (max-width: 500px) {
  #header_sec .site_navi .lower_navi {
    display: none;
  }
}
#header_sec .site_navi .lower_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header_sec .site_navi .lower_navi ul li {
  display: block;
}
#header_sec .site_navi .lower_navi ul li a {
  color: #ffffff;
  font-size: 1.4rem;
  display: block;
  text-align: center;
  padding: 0 1em;
}
#header_sec .site_navi .lower_navi ul li a:hover {
  color: #ffffff;
}
@media screen and (max-width: 500px) {
  #header_sec .site_navi .lower_navi ul li a {
    padding: 0 1rem;
  }
}

/* Sub navi Sec */
.uk-offcanvas-bar {
  background: rgba(67, 69, 68, 0.98);
  width: 480px;
  left: -480px;
}
@media screen and (max-width: 500px) {
  .uk-offcanvas-bar {
    width: 100vw;
    left: -100vw;
  }
}

.sub_navi_box {
  font-family: "Roboto", "Noto Sans JP", -apple-system, "YuGothic", "Yu Gothic", sans-serif;
}
.sub_navi_box h2.sbn_tit {
  text-align: center;
  padding: 0.5em 0 1em;
}
.sub_navi_box h2.sbn_tit a > img {
  display: inline-block;
  max-height: 25px;
  width: auto;
}
@media screen and (max-width: 500px) {
  .sub_navi_box h2.sbn_tit a > img {
    max-height: 20px;
  }
}
.sub_navi_box ul, .sub_navi_box li {
  padding: 0;
  margin: 0;
}
.sub_navi_box a {
  color: #ffffff;
}
.sub_navi_box .sbn_close_bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub_navi_box .sbn_close_bot a {
  display: block;
  width: auto;
  font-size: 1.5rem;
}
.sub_navi_box .sbn_close_bot a:hover {
  opacity: 0.7;
}
.sub_navi_box .sbn_close_bot img.cls_icon {
  display: inline-block;
  padding-left: 0.5em;
  max-height: 30px;
  width: auto;
}
.sub_navi_box .sbn_menu {
  padding: 1em 0;
}
.sub_navi_box .sbn_menu h4 {
  text-align: left;
  padding-bottom: 0.5em;
}
.sub_navi_box .sbn_menu ul {
  display: block;
}
.sub_navi_box .sbn_menu ul li {
  display: block;
  width: 100%;
  padding: 0;
  border-top: #ffffff solid 1px;
}
.sub_navi_box .sbn_menu ul li:last-child {
  border-bottom: #ffffff solid 1px;
}
.sub_navi_box .sbn_menu ul li a {
  display: block;
  font-size: 1.5rem;
  padding: 1em 0 1em 0.5em;
  letter-spacing: 0.2em;
}
.sub_navi_box .sbn_menu ul li a:hover {
  color: #ffffff;
  opacity: 0.7;
}
.sub_navi_box .sbn_menu_list {
  padding: 1em 0;
}
.sub_navi_box .sbn_menu_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sub_navi_box .sbn_menu_list ul li {
  padding: 0.5em;
}
.sub_navi_box .sbn_menu_list ul li a {
  font-size: 1.2rem;
}
.sub_navi_box .sbn_menu_list ul li a:hover {
  color: #ffffff;
  opacity: 0.7;
}
.sub_navi_box .sbn_menu_list ul li:nth-child(2)::after, .sub_navi_box .sbn_menu_list ul li:nth-child(2)::before {
  font-size: 0.9em;
  content: "|";
  color: #333333;
}
.sub_navi_box .sbn_menu_list ul li:nth-child(2)::after {
  padding-left: 1em;
}
.sub_navi_box .sbn_menu_list ul li:nth-child(2)::before {
  padding-right: 1em;
}

/* Contents TEXT SET */
@media screen and (min-width: 501px) {
  .top_slide .module-image .image-wrap img {
    min-height: 640px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 500px) {
  .top_slide .module-image .image-wrap img {
    height: calc(var(--vh) * 100 - 74px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top_slide .module-image .image-content::before {
  background-color: transparent;
}
.top_slide .module-image .image-content .image-title {
  font-size: 4rem;
  font-weight: 100;
  margin-top: 1.5em;
}
@media screen and (max-width: 500px) {
  .top_slide .module-image .image-content .image-title {
    font-size: 2.4rem;
    margin-top: 0;
  }
}
.top_slide .module-image .image-content .image-caption {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 500px) {
  .top_slide .module-image .image-content .image-caption {
    font-size: 1.4rem;
  }
}

.sec {
  padding-top: 5rem;
}
.sec h2 {
  font-size: 3.6rem;
  color: #8c7459;
  font-weight: 100;
  text-align: center;
  /*padding: 5% 0 3%;*/
}
@media screen and (max-width: 500px) {
  .sec h2 {
    font-size: 3rem;
  }
}
.sec .dit {
  padding-top: 5rem;
  font-size: 1.8rem;
  line-height: 2em;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 500px) {
  .sec .dit {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.6em;
  }
}
.sec .sub_dit {
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: left;
}
.sec .list_box {
  display: block;
  border: #b3b3b3 solid 0.14rem;
  text-align: left;
  margin: 1em 0;
  padding: 1em;
}
.sec .list_box ul li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.sec .list_box ul li::before {
  content: "●";
  color: #8cc63f;
  padding-right: 0.25em;
}
.sec .subrow_inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .sec .subrow_inner {
    display: block;
  }
}

.module-divider {
  margin: 5rem 0 0;
}

.tit_box h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
}
@media screen and (max-width: 500px) {
  .tit_box h2 {
    font-size: 2rem;
    padding-bottom: 1em;
  }
}

.dit_box p {
  ont-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 3em;
}
@media screen and (max-width: 500px) {
  .dit_box p {
    font-size: 1.3rem;
    line-height: 2.6em;
  }
}

@media screen and (max-width: 500px) {
  .sec_tit_img .image-wrap {
    padding-bottom: 2em;
  }
  .sec_tit_img .image-wrap img {
    max-height: 20px;
    width: auto;
  }
}

.sec .scroll_box {
  text-align: center;
  display: block;
  margin: 10% 0;
}
.sec .scroll_box .scroll_bot {
  display: inline-block;
  max-height: 35px;
  width: auto;
}
@media screen and (max-width: 500px) {
  .sec .scroll_box .scroll_bot {
    max-height: 28px;
  }
}

.slide_sec .scroll_box .scroll_bot {
  margin: 0 auto;
  max-height: 30px;
  width: auto;
}
@media screen and (max-width: 500px) {
  .slide_sec .scroll_box .scroll_bot {
    max-height: 26px;
  }
}

/* Post Contents */
body.single-post .entry-content {
  max-width: 1024px;
  min-width: 1024px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  body.single-post .entry-content {
    max-width: calc(100vw - 40px);
    min-width: calc(100vw - 40px);
  }
}

.top_sec {
  display: block;
  text-align: right;
}
.top_sec .sns_link {
  display: block;
  width: 220px;
  margin: 1em 0 0 auto;
}
@media screen and (max-width: 500px) {
  .top_sec .sns_link {
    margin: 1em auto;
  }
}

/* Contents Section */
.content_sec {
  padding: 3% 0;
}
.content_sec h2 {
  text-align: center;
  border: none !important;
  font-size: 113%;
}
.content_sec h2 small {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  padding-top: 0.7em;
}
.content_sec .cont_half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content_sec .cont_half .content_box {
  width: 41%;
}
.content_sec .cont_half .content_box .uk-panel-scrollable {
  height: 600px;
}
.content_sec .content_box {
  display: block;
  padding: 2em;
  margin-bottom: 3%;
}
.content_sec .content_box .uk-panel-scrollable {
  resize: vertical;
}
.content_sec .content_box .tit_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 1em;
}
.content_sec .content_box .tit_box .tit_icon {
  display: block;
  padding-right: 1em;
}
.content_sec .content_box .tit_box .tit_set {
  display: block;
  width: 100%;
}
.content_sec .content_box .tit_box .tit_set h3 {
  padding-bottom: 0.3em;
  margin-bottom: 0.3em;
}
.content_sec .content_box .tit_box .tit_set .h3_sub_tit {
  font-size: 1.2rem;
}
.content_sec .content_box .more_btn {
  display: block;
  text-align: right;
  padding: 1em 0 0;
}
.content_sec .content_box .more_btn a {
  display: inline-block;
  width: 75px;
}
.content_sec .media_list .media_item {
  color: #333333;
}
.content_sec .media_list .media_item p {
  margin: 0.5em 0 0;
}
.content_sec .media_list .media_item .media_image {
  max-height: 170px;
}
.content_sec .media_list .media_item .media_date {
  color: #6db08e;
  font-size: 1.2rem;
}
.content_sec .uk-panel-scrollable {
  height: 300px;
}
.content_sec .news_list li.uk-padding {
  padding: 1em 0;
  margin-top: 0;
}
.content_sec .news_list .image_wrap {
  display: block;
  width: 90px;
}
.content_sec .news_list .detail {
  color: #333333;
}
.content_sec .news_list .detail .date {
  color: #6db08e;
  font-size: 1.2rem;
}
.content_sec .news_list .detail .title {
  text-indent: -0.5em;
  font-size: 1rem;
  font-weight: 400;
}
.content_sec .news_list .detail .cont {
  font-size: 1rem;
}

/* TOP NEWS LIST */
.news .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-bottom: 0.25em;
}
.news .post-meta .date {
  color: #f7931e;
  font-weight: 600;
}
.news .post-meta .cat_icon {
  font-size: 1.3rem;
  font-weight: 600;
  margin-left: 1em;
}
.news .post-meta .cat_icon .event {
  color: #6d91b4;
}
.news .post-meta .cat_icon .news {
  color: #662D91;
}
.news .post-meta .cat_icon .update {
  color: #6db08e;
}
.news .post-meta .cat_icon .workshop {
  color: #c94653;
}
.news .topics {
  margin-top: 4em;
}
.news .topics .post-image img {
  max-height: 6em;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.news .topics .post-content {
  overflow: hidden !important;
}
.news .topics .post-content .title_wrap {
  display: inline;
}
.news .topics .post-content .title_wrap .post-title {
  font-size: 1.4rem !important;
  font-weight: 600;
  text-align: left;
  display: inline;
}
.news .topics .post-content .title_wrap .post-title a {
  color: #333333;
  word-break: break-all;
}
.news .topics .post-content .title_wrap .read-more-button {
  display: inline-block;
  border-radius: 0;
  color: #399989;
  border: 1px solid #399989;
  background-color: transparent;
  padding: 0 0.25em;
  white-space: nowrap;
}
.news .topics .post-content .title_wrap .read-more-button:hover {
  color: #399989;
}
.news .topics .edit-button {
  display: none;
}

/* Privacy Policy Sec */
.privacy {
  font-size: 1.5rem;
  line-height: 1.6em;
}
.privacy p {
  padding-bottom: 1em;
}
@media screen and (max-width: 500px) {
  .privacy {
    font-size: 1.4rem;
    margin-top: 0;
  }
}

/* Back to Top */
a.back-to-top {
  display: none;
  z-index: 999;
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

/* SNS LINK BOX */
.sns_link h3 {
  text-align: center;
  padding-bottom: 0.5em;
}
.sns_link h3 img {
  max-height: 16px;
  width: auto;
}
.sns_link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns_link ul li {
  margin: 0 2em;
  padding: 0.5em;
}
.sns_link ul li a {
  font-size: 5.5rem;
}
@media screen and (max-width: 500px) {
  .sns_link ul li a {
    font-size: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .sns_link ul li {
    margin: 0 1em;
  }
}

/* Footer Section */
#footer_wrap {
  font-family: "Roboto", "Noto Sans JP", -apple-system, "YuGothic", "Yu Gothic", sans-serif;
  background: #4d4d4d;
  border-top: none !important;
  padding: 2% 0 1%;
  color: #ffffff;
}
#footer_wrap a, #footer_wrap h3 {
  color: #ffffff;
}
#footer_wrap .footer_info {
  display: block;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 500px) {
  #footer_wrap .footer_info {
    max-width: calc(100vw - 40px);
    min-width: calc(100vw - 40px);
  }
}
#footer_wrap .footer_info .info_box {
  display: block;
  border-bottom: #999999 solid 1px;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
#footer_wrap .footer_info .footer_navi {
  display: block;
  text-align: center;
  border-bottom: #999999 solid 1px;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
#footer_wrap .footer_info .footer_navi ul {
  display: block;
}
#footer_wrap .footer_info .footer_navi ul li a {
  font-size: 1.4rem;
  white-space: nowrap;
}
#footer_wrap .footer_info .footer_navi ul li a:hover {
  opacity: 0.8;
}
#footer_wrap .footer_info h2 {
  display: block;
  text-align: center;
}
#footer_wrap .footer_info h2 a {
  display: block;
  text-align: center;
}
#footer_wrap .footer_info h2 a img {
  display: inline-block;
  max-height: 20px;
  width: auto;
  /*max-width: 100%;
  height: auto;*/
}
@media screen and (max-width: 500px) {
  #footer_wrap .footer_info h2 a img {
    max-width: 80%;
    /*max-height: 14px;*/
    /*width: 160px;*/
  }
}
#footer_wrap .copyright {
  font-size: 1.2rem;
  text-align: center;
}
#footer_wrap .copyright span {
  display: block;
  padding-bottom: 0.5em;
}
.page.labo .advice .module-post {
  margin-top: 2em;
}
.page.labo .advice .module-post .sub_title {
  margin-top: 2em;
  font-size: 2.4rem;
  color: #333333;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .module-post .sub_title {
    font-size: 1.8rem;
  }
}
.page.labo .advice .module-post .sub_title span {
  color: #399989;
}
.page.labo .advice .module-post .main_title {
  font-size: 2.8rem;
  color: #6d91b4;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .module-post .main_title {
    font-size: 2rem;
  }
}
.page.labo .advice .module-post .post-content {
  text-align: left;
  border: 1px solid #b3b3b3;
  padding: 1.5em 2em;
  margin-top: 1em;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .module-post .post-content {
    padding: 1em;
  }
}
.page.labo .advice .module-post .post-content .post-image {
  float: right;
  margin: 0 0 1em 1.5em;
  max-width: 300px;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .module-post .post-content .post-image {
    max-width: 100%;
    margin-left: 0;
  }
}
.page.labo .advice .module-post .post-content h3 {
  font-size: 1.8rem;
  margin: 1em 0;
  color: #6d91b4;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .module-post .post-content h3 {
    font-size: 1.6rem;
  }
}
.page.labo .advice .module-post .post-content h4 {
  font-size: 1.4rem;
  color: #399989;
  margin: 1em 0;
}
.page.labo .advice .module-post .post-content h4 em {
  color: #662D91;
  display: block;
  font-style: normal;
  font-weight: 300;
}
.page.labo .advice .module-post .post-content ul {
  margin: 1em 0 1em 1em;
}
.page.labo .advice .module-post .post-content ul li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.page.labo .advice .module-post .post-content ul li::before {
  content: "★";
  margin-right: 0.25em;
  color: #c94653;
}
.page.labo .advice .module-post .load-more-button {
  border-radius: 0;
  color: #399989;
  border: 1px solid #399989;
  background-color: transparent;
}
.page.labo .advice .advice_title .main-head {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 2.8rem;
  font-weight: 600;
  color: #399989;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .advice_title .main-head {
    font-size: 2rem;
  }
}
.page.labo .advice .advice_list {
  padding: 2.5em 0;
}
.page.labo .advice .advice_list li.uk-open .uk-accordion-title::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.page.labo .advice .advice_list li:nth-child(n+2) {
  margin-top: 0.5em;
}
.page.labo .advice .advice_list li .uk-accordion-title {
  text-align: left;
  font-size: 1.8rem;
  color: #6d91b4;
  padding-left: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .advice_list li .uk-accordion-title {
    font-size: 1.6rem;
  }
}
.page.labo .advice .advice_list li .uk-accordion-title::before {
  width: 2em;
  height: 2em;
  margin: 0 0.5em 0 -2em;
  float: left;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22uuid-5d73898b-22a9-44e0-9501-38a236cffa53%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228%22%20height%3D%2228%22%20viewBox%3D%220%200%2028%2028%22%3E%20%3Cg%20id%3D%22uuid-00f66c24-6249-454c-952f-408a3181f3ad%22%20data-name%3D%22labo2%22%3E%20%3Cg%3E%20%3Cpath%20d%3D%22m17.362%2C10.598q1.914%2C1.724%2C4.449%2C3.517c-1.966%2C1.345-2.81%2C2-4.449%2C3.535l-.397-.465c.362-.379.379-.397.828-.862q.431-.465.896-.931c.328-.345.5-.5.862-.896H6.31v-.759h13.242c-1.069-1.051-1.173-1.155-1.328-1.345q-.827-.931-1.259-1.397l.397-.397Z%22%20fill%3D%22%23c94653%22%2F%3E%20%3Cpath%20d%3D%22m14%2C1c7.168%2C0%2C13%2C5.832%2C13%2C13s-5.832%2C13-13%2C13S1%2C21.168%2C1%2C14%2C6.832%2C1%2C14%2C1m0-1C6.268%2C0%2C0%2C6.268%2C0%2C14s6.268%2C14%2C14%2C14%2C14-6.268%2C14-14S21.732%2C0%2C14%2C0h0Z%22%20fill%3D%22%23c94653%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 100%;
}
.page.labo .advice .advice_list li .uk-accordion-title div {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .advice_list li .uk-accordion-title div {
    width: 80%;
  }
}
.page.labo .advice .advice_list li .uk-accordion-title span {
  font-size: 2.4rem;
  color: #399989;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .advice_list li .uk-accordion-title span {
    font-size: 1.8rem;
  }
}
.page.labo .advice .advice_list li .uk-accordion-content {
  margin-top: 0;
  margin-bottom: 2em;
}
.page.labo .advice .post-content {
  text-align: left;
  border: 1px solid #b3b3b3;
  background-color: #e6e6e6;
  padding: 1.5em 2em;
  margin-top: 1em;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .post-content {
    padding: 1em;
  }
}
.page.labo .advice .post-content .post-image {
  float: right;
  margin: 0 0 1em 1.5em;
  max-width: 300px;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .post-content .post-image {
    max-width: 100%;
    margin-left: 0;
  }
}
.page.labo .advice .post-content h3 {
  font-size: 1.8rem;
  margin: 1em 0;
  color: #6d91b4;
}
@media screen and (max-width: 500px) {
  .page.labo .advice .post-content h3 {
    font-size: 1.6rem;
  }
}
.page.labo .advice .post-content h4 {
  font-size: 1.4rem;
  color: #399989;
  margin: 1em 0;
}
.page.labo .advice .post-content h4 em {
  color: #662D91;
  display: block;
  font-style: normal;
  font-weight: 300;
}
.page.labo .advice .post-content ul {
  margin: 1em 0 1em 1em;
}
.page.labo .advice .post-content ul li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.page.labo .advice .post-content ul li::before {
  content: "★";
  margin-right: 0.25em;
  color: #c94653;
}
.page.labo .advice .post-content ol {
  margin: 1em 0 1em 1em;
}
.page.labo .advice .post-content p + p {
  margin-top: 1em;
}
.page.labo .link .fancy-heading .main-head {
  font-size: 2.8rem;
  font-weight: 300;
  margin-top: 1.2em;
}
.page.labo .link .tb_link_block_heading {
  color: #399989;
  font-weight: 300;
  font-size: 1.8rem;
}
.page.labo .link .tb_link_block_heading small {
  color: #333333;
}
@media screen and (max-width: 500px) {
  .page.labo .link .tb_link_block_heading {
    font-size: 1.6rem;
  }
}
.page.labo .link .tb_link_block_blurb {
  color: #333333;
  font-size: 1.4rem;
  line-height: 2em;
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.page.labo .link .tb_link_block_blurb::before {
  content: "★";
  margin-right: 0.25em;
  color: #8CC63F;
}
.page.labo .download {
  /*
  .tb_link_block_heading {
      color: $color-labo-green;
      font-weight: 300;
      font-size: 1.4rem;
      color: $color-base-text;
      padding-left: 1.25em;
      text-indent: -1.25em;
      &::before {
          content: "●";
          color: $color-labo-star;
          margin-right: .25em;
      }
  }
  .tb_link_block_container {
      padding-top: 0;
      padding-bottom: 0;
      img {
          margin-left: 1em;
      }
      .tf-lb-content {
          display: flex;
          flex-direction: row-reverse;
          align-items: center;
          width: 100%;
          justify-content: space-between;
      }
  }
  */
}
.page.labo .download .fancy-heading .main-head {
  font-size: 2.8rem;
  font-weight: 300;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}
.page.labo .download .module-plain-text {
  padding: 0 1em;
  margin-bottom: 1em;
}
.page.labo .download .module-link-block.pdf_button .tb_link_block_container .tf-lb-icon::before {
  content: "PDF";
}
.page.labo .download .module-link-block.zip_button .tb_link_block_container .tf-lb-icon::before {
  content: "ZIP";
}
.page.labo .download .module-link-block .tb_link_block_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.page.labo .download .module-link-block .tb_link_block_container .tf-lb-icon {
  border: 1px solid #F91603;
  border-radius: 4px;
  padding-left: 2.75em;
  padding-right: 0.25em;
  position: relative;
}
.page.labo .download .module-link-block .tb_link_block_container .tf-lb-icon::before {
  content: "";
  display: inline-block;
  color: #F91603;
  position: absolute;
  left: 0.5em;
  bottom: 0;
  top: 0;
  margin: auto;
  font-weight: bold;
}
.page.labo .download .module-link-block .tb_link_block_container .tf-lb-icon .tb_link_block_icon {
  margin: 0;
  font-size: 1em;
  color: #F91603;
}
.page.labo .download .module-link-block .tb_link_block_container .tf-lb-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.page.labo .download .module-link-block .tb_link_block_container .tf-lb-content .tb_link_block_heading {
  color: #399989;
  font-weight: 300;
  font-size: 1.4rem;
  color: #333333;
  padding-left: 1.25em;
  text-indent: -1.25em;
  margin-bottom: 0;
}
.page.labo .download .module-link-block .tb_link_block_container .tf-lb-content .tb_link_block_heading::before {
  content: "●";
  color: #8CC63F;
  margin-right: 0.25em;
}

/* Service Page */
.service .fancy-heading {
  margin-bottom: 1.5em;
}
.service .fancy-heading .main-head {
  font-size: 2.8rem;
  color: #333333;
  font-weight: 300;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .service .fancy-heading .main-head {
    font-size: 2rem;
  }
}
.service .fancy-heading .sub-head {
  font-size: 1.8rem;
  color: #6d91b4;
  font-weight: 300;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .service .fancy-heading .sub-head {
    font-size: 1.6rem;
  }
}
.service .note li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.service .note li::before {
  content: "※";
  padding-right: 0.25em;
}
.service .subrow_inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .service .subrow_inner {
    display: block;
  }
}
.service .main_ph {
  margin-bottom: 2em;
}
.service .ph_box {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 500px) {
  .service .ph_box {
    padding-top: 1.5em;
    margin-top: 0.5em;
    border-top: #b3b3b3 dotted 1px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.service .ph_box .image-wrap {
  margin: 1em 0 0 2em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service .ph_box .image-wrap img {
  max-width: 400px;
}
@media screen and (max-width: 500px) {
  .service .ph_box .image-wrap img {
    width: 90vw;
  }
}
@media screen and (max-width: 500px) and (max-width: 500px) {
  .service .ph_box .image-wrap img {
    max-width: initial;
  }
}
.service .ph_box.square .image-wrap img {
  max-width: 270px;
}
@media screen and (max-width: 500px) {
  .service .ph_box.square .image-wrap img {
    max-width: initial;
    margin-bottom: 2em;
  }
}
.service .ph_box .image-content {
  padding-top: 0 !important;
}
.service .ph_box .image-content h4.image-title {
  position: relative;
  width: 300px;
  height: 48px;
  background: #6db08e;
  -webkit-clip-path: polygon(0% 0%, 94% 0%, 100% 50%, 94% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 94% 0%, 100% 50%, 94% 100%, 0% 100%);
}
@media screen and (max-width: 500px) {
  .service .ph_box .image-content h4.image-title {
    width: 65vw;
    height: 2.5em;
  }
}
.service .ph_box .image-content h4.image-title span.inside {
  display: inline-block;
  font-family: "Roboto", "Noto Sans JP", -apple-system, "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #f7f7f7;
  -webkit-clip-path: polygon(0% 0%, 94% 0%, 100% 50%, 94% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 94% 0%, 100% 50%, 94% 100%, 0% 100%);
  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;
  color: #666;
}
@media screen and (max-width: 500px) {
  .service .ph_box .image-content h4.image-title span.inside {
    font-size: 1.6rem;
  }
}
.service .ph_box .image-content .image-caption.tb_text_wrap {
  margin-top: 1em;
  text-align: left;
}

@media screen and (max-width: 500px) {
  .page.news .top_slide .module-image .image-wrap img {
    -o-object-position: 25% center;
       object-position: 25% center;
  }
}

.single.news-events .module-featured-image {
  float: right;
  width: 30%;
  overflow: hidden;
  margin-left: 5%;
  margin-top: 1em;
}
@media screen and (max-width: 500px) {
  .single.news-events .module-featured-image {
    width: 100%;
    margin-bottom: 1em;
  }
}
.single.news-events .module-featured-image a {
  pointer-events: none;
}
.single.news-events h3 {
  font-size: 2.8rem;
}
@media screen and (max-width: 500px) {
  .single.news-events h3 {
    font-size: 2rem;
  }
}
.single.news-events p {
  margin: 1em auto;
}
.single.news-events .module-post-navigation .tbp_post_navigation_title {
  display: inline-block;
  text-align: left;
  word-break: break-all;
}
@media screen and (max-width: 500px) {
  .single.news-events .module-post-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .single.news-events .module-post-navigation a[rel=prev] {
    padding-right: 39px;
  }
  .single.news-events .module-post-navigation a[rel=next] {
    padding-left: 39px;
  }
}

/* TOP Page */
.page.top {
  /* TOP SLIDER */
}
.page.top .about .icon_box {
  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;
}
@media screen and (max-width: 500px) {
  .page.top .about .icon_box {
    display: block;
  }
}
.page.top .about .icon_box .tit_icon {
  padding-right: 4em;
}
@media screen and (max-width: 500px) {
  .page.top .about .icon_box .tit_icon {
    padding: 0.5em 0;
    display: block;
    margin: 0 auto;
  }
}
.page.top .about .icon_box .tit {
  padding: 0;
}
.page.top .about .btn_about_us {
  margin-top: 1em;
  text-align: right;
}
.page.top .about .btn_about_us .module-buttons-item a {
  background-color: #6db08e;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.125em 1em 0.125em 0.75em;
  -webkit-clip-path: polygon(0% 0%, 94% 0%, 100% 50%, 94% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 94% 0%, 100% 50%, 94% 100%, 0% 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 500px) {
  .page.top .about .btn_about_us .module-buttons-item a {
    font-size: 1.6rem;
  }
}
.page.top .service .fancy-heading {
  margin-top: 2em;
}
.page.top .service .fancy-heading .main-head {
  font-size: 2.8rem;
  font-weight: 300;
}
@media screen and (max-width: 500px) {
  .page.top .service .fancy-heading .main-head {
    font-size: 2rem;
  }
}
.page.top .service .module-image .module-title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #6db08e;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .page.top .service .module-image .module-title {
    font-size: 1.6rem;
  }
}
.page.top .service .module-text {
  margin-bottom: 1em;
}
.page.top .service .module-divider {
  margin: 5rem 0 0;
}
.page.top .service .licence {
  padding: 1.5em;
  border: 1px solid #b3b3b3;
  margin-top: 2em;
}
.page.top .service .licence .subrow_inner {
  margin-top: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page.top .service .licence .subrow_inner .sub_column {
  -ms-flex-preferred-size: 22.6%;
      flex-basis: 22.6%;
}
@media screen and (max-width: 500px) {
  .page.top .service .licence .subrow_inner .sub_column {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.page.top .service .licence .subrow_inner .sub_column.first {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 1em;
}
@media screen and (min-width: 501px) {
  .page.top .service .licence .subrow_inner .sub_column.first + .sub_column::before {
    content: none;
  }
}
.page.top .service .licence .subrow_inner .sub_column .module-text h3 {
  border: 1px solid #808080;
  border-radius: 24px;
  color: #808080;
  display: block;
  font-size: 2.4rem;
  font-weight: 300;
  background-color: #fff;
  padding: 0.25em 1em;
  width: 500px;
  text-align: center;
  letter-spacing: 0;
  margin: 0 auto 1em;
}
@media screen and (max-width: 500px) {
  .page.top .service .licence .subrow_inner .sub_column .module-text h3 {
    font-size: 4.4vw;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page.top .service .licence .subrow_inner .sub_column .module-text h4 {
  font-size: 1.8rem;
  font-weight: 300;
  color: #662D91;
  margin-bottom: 1em;
  letter-spacing: 0;
}
@media screen and (max-width: 500px) {
  .page.top .service .licence .subrow_inner .sub_column .module-text h4 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 501px) {
  .page.top .service .licence .subrow_inner .sub_column + .sub_column::before {
    content: "";
    display: inline-block;
    height: 100%;
    border-left: 1px solid #b3b3b3;
    position: absolute;
    left: -7%;
  }
}
.page.top .sec_divider {
  margin-bottom: 5rem;
}
@media screen and (max-width: 500px) {
  .page.top .uk-slideshow-items {
    min-height: calc(var(--vh) * 100 - 74px) !important;
  }
}
.page.top .uk-slideshow-items .slider_text {
  margin-left: 5em;
  margin-bottom: 8em;
}
@media screen and (max-width: 500px) {
  .page.top .uk-slideshow-items .slider_text {
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 0;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 6em;
    height: 100%;
    width: 100vw;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page.top .uk-slideshow-items .slider_text h2 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 500px) {
  .page.top .uk-slideshow-items .slider_text h2 {
    font-size: 2rem;
  }
}
.page.top .uk-slideshow-items .slider_text p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 500px) {
  .page.top .uk-slideshow-items .slider_text p {
    font-size: 1.4rem;
  }
}
.page.top .labo .tb_link_block_heading {
  font-size: 1.8rem;
  font-weight: 300;
  color: #6db08e;
}
@media screen and (max-width: 500px) {
  .page.top .labo .tb_link_block_heading {
    font-size: 1.6rem;
  }
}
.page.top .labo .tb_link_block_blurb {
  font-size: 1.4rem;
  color: #333333;
  text-align: left;
}
.page.top .labo .tb_link_block_blurb img {
  margin-bottom: 1em;
}

.page.about_us {
  /* MESSAGE Section */
  /* DRONE LIST Section */
  /* Company Section */
}
.page.about_us .message .ms_dit {
  text-align: left;
  line-height: 1.6em;
}
.page.about_us .message .prof_ph {
  margin-bottom: 1em;
}
.page.about_us .message .prof_ph .image-wrap {
  margin-right: 0;
}
.page.about_us .message .prof_box {
  text-align: left;
}
.page.about_us .message .prof_box h4 {
  font-size: 1.6rem;
  font-weight: 400;
  padding-bottom: 0.5em;
  letter-spacing: 0;
}
.page.about_us .message .prof_box .prof_dit {
  letter-spacing: 0;
}
.page.about_us .dronelist .drone_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 41em;
  margin: 2em auto 4em;
}
@media screen and (max-width: 500px) {
  .page.about_us .dronelist .drone_list {
    height: auto;
  }
}
.page.about_us .dronelist .drone_list a {
  font-size: 1.8rem;
}
.page.about_us .dronelist .drone_list a::before {
  content: "→";
  display: inline-block;
  margin-right: 0.25em;
}
@media screen and (max-width: 500px) {
  .page.about_us .dronelist .drone_list a {
    font-size: 1.6rem;
  }
}
.page.about_us .dronelist .drone_list a em {
  font-weight: 600;
  color: #6d91b4;
  font-style: normal;
}
.page.about_us .company .com_dit .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  padding-bottom: 1em;
}
@media screen and (max-width: 500px) {
  .page.about_us .company .com_dit .list {
    display: block;
  }
}
.page.about_us .company .com_dit .list dt,
.page.about_us .company .com_dit .list dd {
  display: block;
  text-align: left;
}
.page.about_us .company .com_dit dt {
  min-width: 5em;
  font-weight: 400;
}
.page.about_us .company .com_dit dt::before {
  display: inline-block;
  content: "●";
  color: #8cc63f;
  padding-right: 0.5em;
}
.page.about_us .company .com_dit dd {
  margin-left: 1em;
}
@media screen and (max-width: 500px) {
  .page.about_us .company .com_dit dd {
    margin-left: 1.5em;
    padding-top: 1em;
  }
}

.page.contact #container {
  padding-bottom: 0;
}
.page.contact .contact a.mail_link {
  color: #6d91b4;
}
.page.contact .contact .form_dit {
  line-height: 2em;
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .page.contact .contact .form_dit {
    text-align: left;
  }
}
.page.contact .contact .form {
  padding: 3% 0;
}
.page.contact .contact .form .inv-recaptcha-holder .grecaptcha-badge {
  margin: 0 auto;
}
.page.contact .contact .form .form_section {
  display: block;
  margin: 0 auto;
}
.page.contact .contact .form .form_section h4 {
  font-size: 1.8rem;
  font-weight: 200;
}
@media screen and (max-width: 500px) {
  .page.contact .contact .form .form_section h4 {
    font-size: 1.6rem;
  }
}
.page.contact .contact .form .form_section .requied {
  color: #810002;
}
@media screen and (max-width: 500px) {
  .page.contact .contact .form .form_section .accept {
    text-align: left;
  }
}
.page.contact .contact .form .form_section .cont_link {
  padding: 0.5em 0;
}
.page.contact .contact .form .form_section .cont_link a {
  color: #8cc63f;
}
.page.contact .contact .form .form_section .cont_link a:hover {
  opacity: 0.7;
}
.page.contact .contact .form .form_section .conf_bot .wpcf7-form-control.wpcf7-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 2em;
  margin: 1em auto;
}
.page.contact .contact .form .form_section input[type=reset], .page.contact .contact .form .form_section input[type=submit] {
  background-color: #8c7459;
  font-size: 2.2rem;
  text-align: center;
  color: #ffffff;
  border: 0;
  padding: 0.5em 1em;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page.contact .contact .form .form_section input[type=reset]:hover, .page.contact .contact .form .form_section input[type=submit]:hover {
  background-color: #8c7459;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page.contact .contact .form .form_section .ent_box {
  text-align: left;
  padding: 0;
  margin: 0;
}
.page.contact .contact .form .form_section .ent_box dl {
  list-style: none;
  padding: 1em 0;
  margin: 1em 0;
  border-bottom: #999999 solid 1px;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 500px) {
  .page.contact .contact .form .form_section .ent_box dl {
    display: block;
  }
}
.page.contact .contact .form .form_section .ent_box dl dt {
  font-weight: 300;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}
.page.contact .contact .form .form_section .ent_box dl dt::before {
  display: inline-block;
  content: "●";
  color: #8cc63f;
  padding-right: 0.5em;
}
.page.contact .contact .form .form_section .ent_box dl dd {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 2 auto;
          flex: 0 2 auto;
  width: 100%;
}
.page.contact .contact .form .form_section .ent_box dl dd textarea {
  background-color: #ffffff;
  width: 95% !important;
  line-height: 1.2em;
  padding: 0.2em;
  margin: 0;
  margin-right: 0.5em;
  border: 1px solid #999999;
  font-size: 1rem;
}
.page.contact .contact .form .form_section .ent_box dl dd input[type=text], .page.contact .contact .form .form_section .ent_box dl dd input[type=textarea], .page.contact .contact .form .form_section .ent_box dl dd input[type=email], .page.contact .contact .form .form_section .ent_box dl dd input[type=tel] {
  background-color: #ffffff;
  width: 95% !important;
  line-height: 1.2em;
  padding: 0.2em;
  margin: 0;
  margin-right: 0.5em;
  border: 1px solid #999999;
  font-size: 1.6rem;
}
@media screen and (max-width: 500px) {
  .page.contact .contact .form .form_section .ent_box dl dd.cols .wpcf7-form-control-wrap + .wpcf7-form-control-wrap input {
    margin-top: 0.5em;
  }
}
.page.contact .contact .form .form_section .ent_box dl dd.cols .wpcf7-form-control-wrap input {
  width: calc((95% - 0.5em) / 2) !important;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .page.contact .contact .form .form_section .ent_box dl dd.cols .wpcf7-form-control-wrap input {
    width: 95% !important;
  }
}
@media screen and (max-width: 500px) {
  .page.contact .contact .form .form_section .ent_box dl dd.cols .your-name-sei,
.page.contact .contact .form .form_section .ent_box dl dd.cols .your-furigana-sei {
    display: block;
    padding-bottom: 0.5em;
  }
}
.page.contact .contact .form .form_section .ent_box dl dd small {
  display: block;
  padding-bottom: 0.5em;
}
.page.contact .contact .form .form_section .ent_box dl dd ::-webkit-input-placeholder {
  color: #bbb;
}
.page.contact .contact .form .form_section .ent_box dl dd ::-moz-placeholder {
  color: #bbb;
}
.page.contact .contact .form .form_section .ent_box dl dd :-ms-input-placeholder {
  color: #bbb;
}
.page.contact .contact .form .form_section .ent_box dl dd ::-ms-input-placeholder {
  color: #bbb;
}
.page.contact .contact .form .form_section .ent_box dl dd ::placeholder {
  color: #bbb;
}
.page.contact .contact .form .form_section .ent_box dl dd .wpcf7-list-item {
  margin: 0 1em 1em 0;
}
.page.contact .access .dit {
  font-size: 1.4rem;
}/*# sourceMappingURL=style.css.map */