@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://use.typekit.net/mxc5add.css");
/*
font-family: teko, sans-serif;
font-weight: 400;

font-family: 'Caveat', cursive;
font-family: 'Roboto', sans-serif;

Roboto
font-family: montserrat, sans-serif;
font-weight: 400, 500, 600, 700;
font-style: normal;
*/
@font-face {
  font-family: "YuGothicB";
  src: url("../font/YuGothicB.woff") format("woff");
}
@font-face {
  font-family: "YuGothicM";
  src: url("../font/YuGothicM.woff") format("woff");
}
@font-face {
  font-family: "YuGothicR";
  src: url("../font/YuGothicR.woff") format("woff");
}
@font-face {
  font-family: "KiwiMaruR";
  src: url("../font/KiwiMaru-Regular.woff") format("woff");
}
@font-face {
  font-family: "KiwiMaruM";
  src: url("../font/KiwiMaru-Medium.woff") format("woff");
}
@font-face {
  font-family: "ShueiMGoStdL";
  src: url("../font/ShueiMGoStd-L.woff") format("woff");
}
@font-face {
  font-family: "ShueiMGoStdB";
  src: url("../font/ShueiMGoStd-B.woff") format("woff");
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl,
dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 新規追加要素をブロック要素化 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* ulのマーカー非表示 */
ol, ul {
  list-style: none;
}

/* 引用符の非表示 */
blockquote, q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}
a:hover, a:active {
  text-decoration: none;
  /* opacity: 0.75; */
  /* filter: alpha(opacity=75); */
  filter: brightness(115%);
}
a:hover .thumb img, a:active .thumb img {
  transition: all 0.3s;
  transform: scale(1.1);
}

a,
a * {
  transition: opacity 0.6s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 追加 */
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  /* width: 100%; */
  max-width: 100%;
  height: auto;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
.sl_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 1680px;
  box-sizing: border-box;
}
@media screen and (max-width: 1680px) {
  .sl_contain {
    padding: 0 1rem;
  }
}

.xl_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .xl_contain {
    padding: 0 1rem;
  }
}

.lg_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 1000px;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .lg_contain {
    padding: 0 1rem;
  }
}

.lgs_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 960px;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .lgs_contain {
    padding: 0 1rem;
  }
}

.md_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 768px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .md_contain {
    padding: 0 1rem;
  }
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* 表示切り替え */
.sp_on,
.tb_on {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc_on {
    display: none !important;
  }
  .sp_on {
    display: block !important;
  }
}
a {
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* LAZYLOAD SETTINGS */
.blurUp {
  filter: blur(5px);
  transition: filter 400ms;
}
.blurUp.lazyloaded {
  filter: blur(0);
}

span.anchor::before {
  content: "";
  display: block;
  height: 20rem;
  margin-top: -20rem;
  visibility: hidden;
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/*--------------------------------------------------------------
    # メインコンテンツ
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 2.5;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.4vw;
    line-height: 1.7;
  }
}
html body {
  font-family: YuGothicM, "メイリオ", sans-serif;
  font-weight: 400;
  --global--color-primary: #060606;
  color: #060606;
}
html body #wrapper {
  position: relative;
  overflow: hidden;
}
html body #wrapper main {
  position: relative;
  padding-top: 11.3rem;
}
@media screen and (max-width: 768px) {
  html body #wrapper main {
    padding-top: 5.5rem;
  }
}
.thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.thumb img {
  transition: all 0.3s;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center";
}

.inview {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 1s;
}
.inview.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

h3.sect_ttl {
  position: relative;
  display: table;
  margin: auto;
  text-align: center;
  color: #2ca3da;
}
h3.sect_ttl .j_t {
  font-family: YuGothicB;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  h3.sect_ttl .j_t {
    font-size: 1.5rem;
  }
}
h3.sect_ttl .e_t {
  font-family: teko;
  font-weight: 400;
  font-size: 10rem;
  line-height: 1;
  letter-spacing: 10px;
}
h3.sect_ttl .e_t span {
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  h3.sect_ttl .e_t {
    font-size: 4rem;
    letter-spacing: 7px;
  }
}
h3.sect_ttl.white .e_t,
h3.sect_ttl.white .j_t {
  color: #fff;
}

/*--------------------------------------------------------------
    # pageTop
--------------------------------------------------------------*/
#pgtop {
  position: fixed;
  z-index: 9998;
  right: 3rem;
  bottom: 100px;
  z-index: 999;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  #pgtop {
    right: 2rem;
    bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  #pgtop {
    /*display: none;*/
    width: 50px;
  }
}
#pgtop.static {
  position: absolute;
  bottom: auto;
  top: 0;
}
.link_grid {
  width: 100%;
}

a.more_link {
  position: relative;
  z-index: 10;
  display: table;
  margin: auto;
  max-width: 26.3rem;
  width: 100%;
  border-radius: 10rem;
  text-align: center;
  background: #5dd1b7;
  font-family: YuGothicB;
  font-weight: 700;
  font-size: 2rem;
  line-height: 5.9rem;
  letter-spacing: 1px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  a.more_link {
    font-size: 16px;
    line-height:40px;
  }
}
a.more_link:hover {
  transform: translateY(-2px);
}

a.more_slink {
  position: relative;
  z-index: 10;
  display: table;
  margin: auto;
  max-width: 20rem;
  width: 100%;
  border-radius: 10rem;
  text-align: center;
  background: #5dd1b7;
  font-family: YuGothicB;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 3.6rem;
  letter-spacing: 1px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  a.more_slink {
    line-height:35px;
    font-size: 14px;
  }
}
a.more_slink:hover {
  transform: translateY(-2px);
}

a.more_mlink {
  position: relative;
  z-index: 10;
  display: table;
  margin: auto;
  max-width: 9rem;
  width: 100%;
  border-radius: 10rem;
  text-align: center;
  background: #5dd1b7;
  font-family: YuGothicB;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 3.9rem;
  letter-spacing: 1px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  a.more_mlink {
    line-height: 3.5rem;
  }
}
a.more_mlink:hover {
  transform: translateY(-2px);
}

.sticky_tag {
  position: fixed;
  right: 0;
  top: 12vh;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .sticky_tag {
    top: unset;
    bottom: 5.5rem;
  }
}
.sticky_tag a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .sticky_tag a {
    margin-bottom: 0.5rem;
  }
}
header {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.7s;
  background: #fff;
}
@media screen and (max-width: 768px) {
  header {
    height: 5.5rem;
  }
}
header.over {
  transition: all 0.3s;
  background: #fff;
  filter: drop-shadow(0 0.2rem 0.5rem rgba(0, 0, 0, 0.1843137255));
}
@media screen and (max-width: 768px) {
  header.over {
    background: none;
    filter: none;
  }
}
@media screen and (max-width: 768px) {
  header .sl_contain {
    padding: 0;
    padding-left: 1rem;
    justify-content: flex-start;
    align-items: center;
  }
}
header .sl_contain .hd_nav {
  width: 100%;
  height: 11.3rem;
}
@media screen and (max-width: 768px) {
  header .sl_contain .hd_nav {
    height: 5.5rem;
  }
}
@media screen and (max-width: 1200px) {
  header .sl_contain .hd_nav a.logo {
    width: 21%;
  }
}
@media screen and (max-width: 768px) {
  header .sl_contain .hd_nav a.logo {
    width: 35vw;
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  header .sl_contain .hd_nav .header_nav {
    display: none;
  }
}
header .sl_contain .hd_nav .header_nav > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
@media screen and (max-width: 1660px) {
  header .sl_contain .hd_nav .header_nav > li {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 1500px) {
  header .sl_contain .hd_nav .header_nav > li {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 960px) {
  header .sl_contain .hd_nav .header_nav > li {
    padding: 0 1rem;
  }
}
header .sl_contain .hd_nav .header_nav > li > a {
  position: relative;
  display: inline-block;
  z-index: 999;
  font-family: YuGothicM;
  font-size: 1.7rem;
  line-height: 1;
}
header .sl_contain .hd_nav .header_nav > li > a.link::after {
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #5dd1b7;
  opacity: 0;
  transition: 0.3s;
}
header .sl_contain .hd_nav .header_nav > li > a.link:hover::after {
  bottom: -1.1rem;
  opacity: 1;
}
header .sl_contain .hd_nav .contact_banner {
  position: relative;
}
@media screen and (max-width: 768px) {
  header .sl_contain .hd_nav .contact_banner {
    display: none;
  }
}
header .sl_contain .hd_nav .contact_banner .tel_block a.tel_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1400px) {
  header .sl_contain .hd_nav .contact_banner .tel_block a.tel_link {
    display: none;
  }
}
header .sl_contain .hd_nav .contact_banner a.contact_link {
  margin-left: 4rem;
  width: 24.5rem;
  height: 6.2rem;
  background: #5dd1b7;
  border-radius: 8rem;
}
@media screen and (max-width: 1400px) {
  header .sl_contain .hd_nav .contact_banner a.contact_link {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  header .sl_contain .hd_nav .contact_banner a.contact_link {
    width: auto;
    padding: 0 2rem;
  }
}
header .sl_contain .hd_nav .contact_banner a.contact_link p {
  font-family: YuGothicB;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  header .sl_contain .hd_nav .contact_banner a.contact_link p {
    display: none;
  }
}
header .sl_contain .hd_nav .contact_banner a.contact_link img {
  margin-right: 1.5rem;
}
@media screen and (max-width: 1200px) {
  header .sl_contain .hd_nav .contact_banner a.contact_link img {
    margin: auto;
  }
}
header a.sp_tellink,
header a.sp_contact {
  display: none;
  width: 5.5rem;
  height: 5.5rem;
  position: fixed;
  top: 0;
  z-index: 8990;
}
@media screen and (max-width: 768px) {

  .tel_block a{
    cursor: pointer;
  }
  .tel_block a:hover{
    cursor: pointer;
  }
  header a.sp_tellink,
header a.sp_contact {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
header a.sp_tellink {
  background: #c0d9ff;
  right: 11rem;
  top: 0;
  display: none;
}
header a.sp_contact {
  background: #b0dd4f;
  right: 5.5rem;
  top: 0;
  display: none;
}
header .navToggle {
  position: fixed;
  right: 0;
  top: 0;
  display: none;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  header .navToggle {
    display: inline-block;
    background: #5dd1b7;
    width: 5.5rem;
    height: 5.5rem;
    padding: 1.8rem 1.5rem;
    cursor: pointer;
    z-index: 10010;
  }
  header .navToggle div {
    position: relative;
  }
  header .navToggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000;
    left: 0;
    transition: 0.35s ease-in-out;
  }
  header .navToggle span:nth-child(1) {
    top: 0;
  }
  header .navToggle span:nth-child(2) {
    top: 0.75rem;
  }
  header .navToggle span:nth-child(3) {
    top: 1.6rem;
  }
  header .navToggle p {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1;
    color: #59cadc;
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 1rem;
  }
}
header nav.sp-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav.sp-nav {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9000;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  }
  header nav.sp-nav a {
    display: block;
  }
  header nav.sp-nav a* {
    transition: 0s;
  }
  header nav.sp-nav .logo {
    width: 100%;
    padding: 5.5rem 0 0;
  }
  header nav.sp-nav .logo img {
    margin: 0;
    text-align: left;
  }
  header nav.sp-nav ul.l_menu {
    display: block;
    padding: 0 2.5rem;
  }
  header nav.sp-nav ul.l_menu li.l_menu-li {
    position: relative;
    padding: 1.8rem 0 0.4rem;
    border-bottom: solid #cccccc 1px;
  }
  header nav.sp-nav ul.l_menu li.l_menu-li span {
    position: relative;
    font-family: YuGothicB;
    font-size: 1.65rem;
  }
  header nav.sp-nav ul.l_menu li.l_menu-li span:nth-of-type(2) {
    margin-left: 2rem;
  }
  header nav.sp-nav ul.l_menu li.l_menu-li .sub_menu {
    padding: 1rem 2rem;
  }
  header nav.sp-nav ul.l_menu li.l_menu-li .sub_menu li {
    width: 100%;
    font-size: 1.5rem;
    line-height: 2.5;
  }
  header nav.sp-nav .contact_menu {
    margin-top: 4rem;
    width: 100%;
    padding: 0 2.5rem;
  }
  header nav.sp-nav .contact_menu li {
    padding: 1rem 0 0.5rem;
  }
  header nav.sp-nav .contact_menu li a {
    position: relative;
    margin: auto;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: YuGothicB;
    font-size: 2rem;
    line-height: 2;
    border-radius: 5rem;
    background: #2ca3da;
    color: #fff;
  }
  header nav.sp-nav .contact_menu li a::after {
    position: absolute;
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    transform: translate(0, -50%);
    right: 3rem;
    top: 50%;
    background: url(../img/arr-w.png) center center no-repeat;
  }
  header nav.sp-nav .contact_menu li a img {
    margin-right: 1.5rem;
    filter: brightness(100);
  }
}
header.open nav.sp-nav {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.4s, opacity 0.4s;
}
header.open .navToggle span:nth-child(1) {
  top: 0.7rem;
  transform: rotate(315deg);
}
header.open .navToggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
header.open .navToggle span:nth-child(3) {
  top: 0.7rem;
  transform: rotate(-315deg);
}

footer {
  position: relative;
  background: #fff;
}
footer .ft_grid {
  padding-top: 5.8rem;
  padding-bottom: 4.9rem;
}

@media screen and (max-width: 1430px) {
  footer .ft_grid{
    padding-right: 110px;
  }
}
@media screen and (max-width: 768px) {
  footer .ft_grid {
    padding-top: 4rem;
    padding-bottom: 3rem;
    padding-right: 0;
  }
}
footer .ft_grid > li {
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .ft_grid > li {
    width: 100%;
    margin-bottom: 1.5rem;
    display: block;
  }
  footer .ft_grid > li:nth-of-type(2) {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  footer .ft_grid > li .ft_logo {
    margin: auto;
    display: table;
    width: 22rem;
  }
}
footer .ft_grid > li .addr {
  margin-top: 2rem;
  font-family: YuGothicM;
  font-size: 1.4rem;
  line-height: 1.428;
  letter-spacing: 0.7px;
}
.addr:last-child{margin-left: 55px;}
@media screen and (max-width: 768px) {
  footer .ft_grid > li .addr {
    text-align: center;
    width: 100%;
  }
  .addr:last-child{margin-left: 0;}
}
footer .ft_grid > li .ft_menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  footer .ft_grid > li .ft_menu {
    width: 100%;
    display:block!important;
  }
  .ft_menu{
    width: 100%;
  }
}
footer .ft_grid > li .ft_menu:last-of-type {
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  footer .ft_grid > li .ft_menu:last-of-type {
    margin-left: 0;
  }
}
footer .ft_grid > li .ft_menu li {
  font-family: YuGothicM;
  font-size: 1.4rem;
  line-height: 2.142;
}
@media screen and (max-width: 768px) {
  footer .ft_grid > li .ft_menu li {
    width: 100%;
    line-height: 2;
    text-align: left;
  }
}
footer .ft_grid > li .ft_menu li:first-of-type {
  padding-left: 0;
}
footer .ft_grid > li .ft_menu li:last-of-type {
  padding-right: 0;
  border-right: none;
}
footer .cpy {
  background: #22a0d4;
  font-family: YuGothicM;
  font-size: 1.2rem;
  line-height: 3.4;
  color: #fff;
}
/*--------------------------------------------------------------
    # メインコンテンツ - main contents
--------------------------------------------------------------*/
main section {
  position: relative;
  width: 100%;
  /*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  # index1.html
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
main section.hero {
  z-index: 50;
}
main section.hero .mv_slider {
  width: 100%;
  height: 83.7rem;
}
@media screen and (max-width: 768px) {
  main section.hero .mv_slider {
    height: 50rem;
  }
}
main section.hero .mv_slider .thumb img {
  height: 100%;
}
main section.hero .slider .thumb img {
  height: 100%;
}
main section.hero .mv_slider .slick-dots {
  bottom: 3rem;
}
main section.hero .mv_slider .slick-dots li {
  margin: 0 1.6rem;
}
@media screen and (max-width: 768px) {
  main section.hero .mv_slider .slick-dots li {
    margin: 0 1rem;
  }
}
main section.hero .mv_slider .slick-dots li button {
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  border: solid #1f1e1e 1px;
}
main section.hero .mv_slider .slick-dots li.slick-active button {
  background: #333333;
}
main section.hero .xl_contain {
  position: absolute;
  transform: translate(-45%, -42%);
  left: 45%;
  top: 42%;
}
main section.hero .mv_slider .thumb img {
  height: 80%;
}
@media screen and (max-width: 1200px) {
  main section.hero .xl_contain {
    padding: 0 1rem;
    top: 43%;
  }
}
main section.hero .xl_contain .content {
  position: relative;
}
main section.hero .xl_contain h3 {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  main section.hero .xl_contain h3 img {
    width: 80%;
  }
}
main section.hero .xl_contain h3 p {
  margin-top: 0rem;
  font-family: ShueiMGoStdB;
  font-size: 7rem;
  line-height: 1.285;
  letter-spacing: 7.5px;
  color: #26566a;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main section.hero .xl_contain h3 p {
    font-size: 3.3rem;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 960px) {
  main section.hero .xl_contain h3 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  main section.hero .xl_contain h3 {
    font-size: 3rem;
    left: 33px;
    top: -40px;
  }
}
main section.about .xl_contain {
  padding-top: 13rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  main section.about .xl_contain {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
main section.about .xl_contain .media-block {
  width: 100%;
}
main section.about .xl_contain .media-block .content {
  width: 54%;
}
@media screen and (max-width: 768px) {
  main section.about .xl_contain .media-block .content {
    width: 100%;
  }
}
main section.about .xl_contain .media-block .media {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  main section.about .xl_contain .media-block .media {
    margin-top: 10rem;
  }
}
main section.about .xl_contain .media-block .media .fig1 {
  position: relative;
  z-index: 10;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  main section.about .xl_contain .media-block .media .fig1 {
    max-width: 65%;
    margin: auto;
    margin-left: 3rem;
  }
}
main section.about .xl_contain .media-block .media .fig2 {
  position: absolute;
  z-index: 5;
  transform: translate(75%, -18%);
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  main section.about .xl_contain .media-block .media .fig2 {
    max-width: 45%;
    transform: translate(-10%, -50%);
  }
}
main section.about .xl_contain h3.sect_ttl {
  margin-left: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  main section.about .xl_contain h3.sect_ttl {
    margin: auto;
    text-align: center;
  }
}
main section.about .xl_contain .ds {
  margin-top: 0.8rem;
  font-family: YuGothicM;
  font-size: 2rem;
  line-height: 2.5;
  letter-spacing: 2px;
}
main section.demolition {
  background: #2ca3da;
}
main section.demolition .xl_contain {
  padding-top: 12.5rem;
  padding-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  main section.demolition .xl_contain {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }
  main section.about .xl_contain .ds {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 2px;
  }
}
main section.demolition .xl_contain .media-block {
  width: 100%;
}
main section.demolition .xl_contain .media-block .media {
  width: 43.5%;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  main section.demolition .xl_contain .media-block .media {
    margin-top: 3rem;
    width: 100%;
    order: 2;
  }
}
main section.demolition .xl_contain .media-block .content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  main section.demolition .xl_contain .media-block .content {
    width: 100%;
    order: 1;
  }
}
main section.demolition .xl_contain .media-block .content h3.sect_ttl {
  margin-left: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  main section.demolition .xl_contain .media-block .content h3.sect_ttl {
    margin: auto;
    text-align: center;
  }
}
main section.demolition .xl_contain .media-block .content .ds {
  margin-top: 0.8rem;
  font-family: YuGothicM;
  font-size: 2rem;
  line-height: 2.5;
  letter-spacing: 2px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main section.demolition .xl_contain .media-block .content .ds {
    margin-top: 1rem;
    font-size: 16px;
    line-height: 1.6;
  }
}
main section.demolition .xl_contain .media-block .content a.more_link {
  margin-top: 2.5rem;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main section.demolition .xl_contain .media-block .content a.more_link {
    margin: 3rem auto 0;
  }
}
main section.demolition .xl_contain .ast {
  position: absolute;
  right: -8.5rem;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  main section.demolition .xl_contain .ast {
    width: 30%;
    right: 2rem;
  }
}
main section.business .xl_contain {
  padding-top: 13rem;
  padding-bottom: 13.5rem;
}
@media screen and (max-width: 768px) {
  main section.business .xl_contain {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}
main section.business .xl_contain h3.sect_ttl {
  margin-left: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  main section.business .xl_contain h3.sect_ttl {
    margin: auto;
    text-align: center;
  }
}
main section.business .xl_contain .ds {
  margin-top: 0.5rem;
  font-family: YuGothicR;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 2px;
}
main section.business .xl_contain .business_type {
  width: 100%;
  margin-top: 3.3rem;
}
main section.business .xl_contain .business_type li {
  position: relative;
  width: 31%;
}
@media screen and (max-width: 768px) {
  main section.business .xl_contain .business_type li {
    width: 100%;
    margin-bottom: 3rem;
  }
  main section.business .xl_contain .ds {
    margin-top: 0.5rem;
    font-family: YuGothicR;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 2px;
  }
}
main section.business .xl_contain .business_type li .thumb {
  border-radius: 2.5rem;
}
main section.business .xl_contain .business_type li .label {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  width: 73%;
  height: 5.8rem;
  border-radius: 0 2rem 0 0;
  padding: 0 3rem;
  font-family: YuGothicB;
  font-size: 1.8rem;
  line-height: 1;
}
main section.business .xl_contain .more_link {
  margin-top: 11rem;
}
@media screen and (max-width: 768px) {
  main section.business .xl_contain .more_link {
    margin-top: 3rem;
    margin-left: 0;
  }
  main section.business .xl_contain .business_type li .label {
    width: 73%;
    height: 3.8rem;
    padding: 0 3rem;
    font-size: 17px;
    line-height: 1;
  }
}
main section.business .xl_contain .ast {
  position: absolute;
  right: 0;
  bottom: -3.5rem;
}
@media screen and (max-width: 768px) {
  main section.business .xl_contain .ast {
    width: 22%;
    right: 1rem;
    bottom: -10px;
  }

}
main section.works {
  background: #efffff;
}
main section.works .xl_contain {
  padding-top: 9.5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  main section.works .xl_contain {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
main section.works .xl_contain h3.sect_ttl {
  margin-left: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  main section.works .xl_contain h3.sect_ttl {
    margin: auto;
    text-align: center;
  }
}
main section.works .xl_contain .wk_type {
  margin-top: 3rem;
  width: 100%;
}
main section.works .xl_contain .wk_type li {
  width: 22.7%;
}
@media screen and (max-width: 768px) {
  main section.works .xl_contain .wk_type li {
    width: 100%;
    margin-bottom: 4rem;
  }
}
main section.works .xl_contain .wk_type li .media {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
}
main section.works .xl_contain .wk_type li .media .thumb {
  position: relative;
  width: 100%;
}
main section.works .xl_contain .wk_type li .media .category {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  padding: 0 2.3rem 0 1.7rem;
  border-radius: 0 1.5rem 0 0;
  background: #34beed;
  font-family: YuGothicM;
  font-size: 1.4rem;
  line-height: 1.65;
  letter-spacing: 1px;
  color: #fff;
}
main section.works .xl_contain .wk_type li .date {
  margin-top: 0.8rem;
  font-family: YuGothicM;
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: 1.5px;
  color: #999999;
}
main section.works .xl_contain .wk_type li .label {
  font-family: YuGothicM;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 2px;
}
main section.works .xl_contain a.more_link {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  main section.works .xl_contain a.more_link {
    margin-top: 2rem;
  }
  main section.works .xl_contain .wk_type li .label {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 2px;
  }
  main section.works .xl_contain .wk_type li .date {
    margin-top: 0.5rem;
    font-size:14px;
    line-height: 1.4;
    letter-spacing: 1.5px;
  }
}
main section.quote .xl_contain {
  padding-top: 14.2rem;
  padding-bottom: 19rem;
}
@media screen and (max-width: 768px) {
  main section.quote .xl_contain {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
main section.quote .xl_contain h4 {
  position: relative;
  display: table;
  margin: auto;
}
@media screen and (max-width: 768px) {
  main section.quote .xl_contain h4 {
    margin-right: 1rem;
  }
}
main section.quote .xl_contain h4 p {
  position: relative;
  font-family: YuGothicB;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  main section.quote .xl_contain h4 p {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
}
main section.quote .xl_contain h4 img {
  position: absolute;
  transform: translate(-100%, -15%);
  left: -2rem;
  top: 0;
}
@media screen and (max-width: 768px) {
  main section.quote .xl_contain h4 img {
    left: -1rem;
    width: 30%;
  }
}
main section.quote .xl_contain .form_block {
  position: relative;
  margin-top: 2rem;
  background: url(../img/pattern_form.jpg);
  border-radius: 4.3rem;
  width: 100%;
  height: 26.7rem;
}
main section.quote .xl_contain .form_block .ds {
  font-family: YuGothicB;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 3px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main section.quote .xl_contain .form_block .ds {
    font-size: 14px;
  }
  main section.quote .xl_contain .form_block {
    height:auto;
    padding: 15px;
  }
}
main section.quote .xl_contain .form_block a.more_link {
  margin: 3.5rem auto 0;
}
@media screen and (max-width: 768px) {
  main section.quote .xl_contain .form_block a.more_link {
    margin-top: 2rem;
  }
}
main section.other {
  background: #ececec;
}
main section.other .xl_contain {
  padding-top: 8.4rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  main section.other .xl_contain {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
main section.other .xl_contain .other_grid {
  width: 100%;
}
main section.other .xl_contain .other_grid li {
  width: 30%;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main section.other .xl_contain .other_grid li {
    width: 100%;
    margin-bottom: 3rem;
  }
}
main section.other .xl_contain .other_grid li .thumb {
  width: 100%;
}
main section.other .xl_contain .other_grid li .content {
  position: relative;
  padding: 4rem 2.5rem 2.5rem;
}
main section.other .xl_contain .other_grid li .content .tag {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  background: #fff;
  border-radius: 100%;
}
main section.other .xl_contain .other_grid li .content .label {
  font-family: YuGothicB;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 3px;
  color: #2ca3da;
}
main section.other .xl_contain .other_grid li .content .ds {
  margin-top: 1.5rem;
  min-height: 13rem;
  font-family: YuGothicR;
  font-size: 1.6rem;
  line-height: 1.85;
  letter-spacing: 1.5px;
}
main section.area .xl_contain {
  padding-top: 8.5rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  main section.area .xl_contain {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  main section.other .xl_contain .other_grid li .content .label {
    font-size:17px;
    line-height: 1.2;
    letter-spacing: 3px;
    position: relative;
    top: -8px;
  }
  main section.other .xl_contain .other_grid li .content .ds {
    margin-top: 0;
    min-height: auto;
    font-family: YuGothicR;
    font-size:15px;
    line-height: 1.6;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }
}
main section.area .xl_contain .area_block {
  position: relative;
  width: 100%;
  height: 21.7rem;
  background: url(../img/pattern_area.jpg);
  border-radius: 3.5rem;
  overflow: hidden;
}
main section.area .xl_contain .area_block h4 {
  font-family: teko;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 9px;
  color: #fff;
}
main section.area .xl_contain .area_block .ds {
  margin-top: 1.5rem;
  font-family: YuGothicB;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 3px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main section.area .xl_contain .area_block .ds {
    font-size:14px;
    margin-top: 0.5rem;
  }
  main section.area .xl_contain .area_block h4{
    font-size: 4rem;
  }
}
main section.area .xl_contain .area_block .ast {
  position: absolute;
  left: 5rem;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  main section.area .xl_contain .area_block .ast {
    display: none;
  }
  main section.area .xl_contain .area_block {
    height:auto;
    padding: 15px;
  }
}
main section.news {
  background: #1ba4d7;
}
main section.news .xl_contain {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  main section.news .xl_contain {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
main section.news .xl_contain .news_grid {
  width: 100%;
}
@media screen and (max-width: 768px) {
  main section.news .xl_contain .news_grid .ttl_block {
    width: 100%;
  }
}
main section.news .xl_contain .news_grid .ttl_block h3.sect_ttl {
  margin-left: 0;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main section.news .xl_contain .news_grid .ttl_block h3.sect_ttl {
    margin: auto;
    text-align: center;
  }
}
main section.news .xl_contain .news_grid .ttl_block .more_mlink {
  margin-top: 2rem;
  margin-left: 0;
}
main section.news .xl_contain .news_grid .news_grid {
  width: calc(100% - 32.5rem);
}
@media screen and (max-width: 768px) {
  main section.news .xl_contain .news_grid .news_grid {
    width: 100%;
  }
}
main section.news .xl_contain .news_grid .news_grid li {
  padding: 1.9rem 0;
  border-bottom: solid #fff 1px;
  color: #fff;
}
main section.news .xl_contain .news_grid .news_grid li .date {
  width: 13.7%;
  padding-left: 0.7rem;
  font-family: teko;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 1.7px;
  line-height: 1.2;
}
main section.news .xl_contain .news_grid .news_grid li .label {
  flex-grow: 1;
  font-family: YuGothicM;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.6px;
  width: 86.3%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main section.news .xl_contain .news_grid .more_slink {
    margin-top: 3rem;
  }
  main section.news .xl_contain .news_grid .news_grid li .date {
    width: 100%;
    display: block;
    padding-left: 0;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 1.7px;
    line-height: 1;
  }
  main section.news .xl_contain .news_grid .news_grid li {
    padding: 1rem 0;
  }
  main section.news .xl_contain .news_grid .news_grid li .label {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.6px;
    width: 100%;
  }
}
main section.contact {
  background: url(../img/contact_bg.jpg) no-repeat center center/cover;
}
main section.contact .lg_contain {
  padding-top: 11rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  main section.contact .lg_contain {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
main section.contact .lg_contain .contact_block {
  width: 100%;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.9019607843);
  padding: 5rem 1rem;
}
main section.contact .lg_contain .contact_block h3 {
  font-family: teko;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 6px;
  color: #2ca3da;
}
@media screen and (max-width: 768px) {
  main section.contact .lg_contain .contact_block h3 {
    font-size: 5rem;
  }
  main section.contact .lg_contain .contact_block {
    padding: 3rem 1rem;
  }
}
main section.contact .lg_contain .contact_block h4 {
  margin-top: 0.5rem;
  font-family: YuGothicB;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  main section.contact .lg_contain .contact_block h4 {
    margin-top: 1.5rem;
    font-size: 14px;
  }
}
main section.contact .lg_contain .contact_grid {
  margin-top: 2.5rem;
}
main section.contact .lg_contain .contact_grid .tel_block .tel_link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: teko;
  font-weight: 400;
  font-size: 6rem;
  line-height: 0.7;
  letter-spacing: 6px;
  background: url(../img/contact_tel.png)no-repeat;
  background-position: 1px;
  padding-left: 50px;
  background-size: 32px 32px;
}
main section.contact .lg_contain .contact_grid .tel_block .tel_link a{
  cursor: pointer!important;
}

@media screen and (max-width: 768px) {

  main section.contact .lg_contain .contact_grid .tel_block .tel_link {
    font-size: 4rem;
  }
}
main section.contact .lg_contain .contact_grid .tel_block .tel_link img {
  margin-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  main section.contact .lg_contain .contact_grid .tel_block .tel_link {
    text-align: center;
    background-size: 25px 25px;
    padding-left: 35px;
    background-position: 3px 0px;
  }
  main section.contact .lg_contain .contact_grid .tel_block .tel_link img {
    margin-right: 1rem;
    display: inline-block;
    width: 8%;
  }
}
main section.contact .lg_contain .contact_grid .tel_block p {
  margin-top: 0.5rem;
  font-family: YuGothicM;
  font-size: 1.4rem;
  line-height: 1.2;
}
main section.contact .lg_contain .contact_grid a.contact_link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #5dd1b7;
  height: 6rem;
  border-radius: 8rem;
  padding: 0 4.5rem;
  font-family: YuGothicB;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main section.contact .lg_contain .contact_grid a.contact_link {
    margin-top: 2rem;
    font-size: 16px;
    height: 4rem;
  }
  main section.contact .lg_contain .contact_grid .tel_block p {
    margin-top: 0.5rem;
    font-size: 14px;
    line-height: 1.2;
  }
}
main section.contact .lg_contain .contact_grid a.contact_link img {
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  main section.contact .lg_contain .contact_grid a.contact_link img {
    width: 2rem;
    margin-right: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */




/*----------------------------
   bread_crumb_list
------------------------------*/
.bread_crumb_list{font-size: 14px;color:#888;margin:0 auto 50px;max-width: 1200px;}
.bread_crumb{text-align:left; margin: 0 auto; padding-top: 15px;display: inline-block;max-width: 1200px;}
.bread_crumb li { display:inline;}
.bread_crumb li:after {content : '>';padding-left:10px;}
.bread_crumb li:last-child:after { content : '';}
.bread_crumb li a {text-decoration:underline;}
.bread_crumb li a:hover{ text-decoration:none;}
.bread_crumb li.current { font-weight: normal;}

@media screen and (max-width: 1200px){.bread_crumb_list {width: 94%;}}
@media screen and (max-width:767px) {
.bread_crumb_list{margin-bottom:30px;font-size:13px;}
.bread_crumb{padding-top: 5px;}
}

/*----------------------------
   sub_visual 
-----------------------------*/
#sub_visual {background:url(../img/pattern_form.jpg);position: relative;width: 100%;padding-top: 60px;padding-bottom: 70px;}
#sub_visual h2 {font-size: 20px;line-height: 0.8;color: #fff;margin: 0;text-align: center;} 
#sub_visual h2 strong {display: block;font-size: 85px;letter-spacing:6px;font-weight:500;line-height: 1; font-family: teko;}
#sub_visual h2 span {letter-spacing:3px;font-size:17px;font-weight: bold;margin-bottom: 5px;display: block;}

@media screen and (max-width:767px) {
#sub_visual h2 strong {font-size: 38px;letter-spacing:2px;margin-bottom: 5px;}
#sub_visual h2 span{letter-spacing: 3px;font-size: 15px;font-weight: 500;}
#sub_visual {padding-top:40px;padding-bottom: 40px;margin-bottom: 10px;}
}

/*----------------------------
   sub_contents
-----------------------------*/
#sub_contents {margin-top: -13px;position: relative;}
#sub_contents .s_con{margin: 0 auto;}
#sub_contents img{width: 100%;}
#sub_contents section{max-width: 1200px;margin: 60px auto 100px;}
#sub_contents p{font-size: 16px;color: rgb(0, 0, 0);line-height: 1.8;}
#sub_contents input,select,button {border: 0;-webkit-appearance:auto;-moz-appearance: auto;-ms-appearance: auto;}
#sub_contents .sp{display: none;}
#sub_contents .mb10 {margin-bottom: 10px;}
#sub_contents .mb15 {margin-bottom: 15px;}
#sub_contents .mb30 {margin-bottom: 30px;}
#sub_contents .mb50 {margin-bottom: 50px!important;}
#sub_contents .mb80 {margin-bottom: 80px;}
#sub_contents .mb100 {margin-bottom: 100px;}
#sub_contents .flex-btw {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}
#sub_contents .flex-nml {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;}
#sub_contents .row-reverse {-webkit-box-orient: horizontal;-webkit-box-direction: reverse;-ms-flex-direction: row-reverse;flex-direction: row-reverse;}
#sub_contents .sub__ttl01{margin-bottom: 30px;text-align: left;font-size:14px;line-height: 1;color: #000;position: relative;color: #2ca3da;}
#sub_contents .sub__ttl01 strong{font-size: 70px;font-weight: 500;letter-spacing: 5px;/*background: #fff;*/padding-right: 10px;}
#sub_contents .sub__ttl01 span{display: block;font-weight: bold;font-size: 16px;}
/*#sub_contents .sub__ttl01::after{display: block;content: "";position: absolute;top: 64%;right: 0;transform: translateY(-50%);-webkit-transform: translateY(-50%);width:90%;height: 1px;background: #aaa;z-index: -1;}*/
#sub_contents .sub__ttl02{font-size: 35px;font-weight: bold;margin-bottom: 30px;line-height: 1.3;}
#sub_contents .sub__ttl02 span{font-size:20px;font-weight:500;color: #a3a3a3;letter-spacing: 0.1em;display:inline-block;}
#sub_contents .sub__ttl02 strong{font-size:15px;font-weight:500;color: #fff;background:#2ca3da;padding: 3px 8px;display:inline-block;margin-left: 15px;}
#sub_contents .sub__ttl04 {font-size: 20px;font-weight: 500;color: #2ca3da;}
#sub_contents .fnt_o{padding-right: 10px;color: #2ca3da;}
#sub_contents .sub__ttl03{font-size: 26px;margin-bottom: 20px;font-weight: 500;line-height: 1.5;letter-spacing: 0.1em;    border-bottom: 2px dashed #b7edff;padding-bottom: 10px;}
#sub_contents .sub__ttl03 span{font-size: 19px;font-weight:600;color: #2ca3da;display: block;line-height: 1;letter-spacing: 0;margin-bottom: 5px;}
#sub_contents .pc_vw{display: contents;}
#sub_contents .topics02{font-size: 24px;font-weight: 500;margin-bottom: 15px;line-height: 1.5;}
#sub_contents .topics{font-size: 25px;margin-bottom: 20px;font-weight: bold;position: relative;}
#sub_contents .m_color{color: #2ca3da;}
#sub_contents .t_cen{text-align: center;}
#sub_contents .flex__photo{width: 40%;z-index: 1;}
#sub_contents .flex__txt{width: 55%;}
#sub_contents .ulbox{font-size:15px;margin:0px 0px 10px 0px;padding: 5px 3px 16px;}
#sub_contents .ulbox li{padding-bottom:5px;list-style-type:disc;overflow:visible;list-style-position: inside;margin-left: 1.4em;text-indent: -1.4em;}
#sub_contents .ul_02{margin:0;padding:0;}
#sub_contents .pc {display: block;}
#sub_contents .bg {background:#eff8ff;padding-top: 1px;padding-bottom: 1px;}
#sub_contents .bubble::before{position: absolute;content: ""; background:url(../img/hukidashi_01.png);left:16%;top: 16%;z-index: -1;width: 50px;height: 72px;}
#sub_contents .bubble::after{position: absolute;content: ""; background:url(../img/hukidashi_02.png);z-index: -1;top: 16%;width: 61px;height: 72px;right:16%;}
#sub_contents img{border-radius: 20px;}
#sub_contents .font-en{font-family: teko;}


@media screen and (max-width: 1200px){
#sub_contents section {max-width: 94%;}
#sub_contents .bubble::before{left:6%;top: 16%;}
#sub_contents .bubble::after{top: 16%;right:6%;}
#sub_contents .topics.bubble{padding: 0 20px;}
}

@media screen and (max-width: 1040px){
#sub_contents .sub__ttl02 small{display: block;padding-left: 18px;line-height: 1;}
}

@media screen and (max-width: 767px) {
#sub_contents section{margin: 30px auto 40px;}
#sub_contents .ttl_01{font-size: 25px;margin-bottom: 15px;line-height: 1.4;}
#sub_contents .ttl_01 small{font-size: 14px;}
#sub_contents .sub__ttl02{font-size:20px;margin-bottom: 15px;line-height: 1.4;font-weight: 500;}
#sub_contents .sub__ttl02 span{font-size: 14px;line-height: 1;}
#sub_contents .sub__ttl03{font-size: 20px;margin-bottom: 10px;line-height: 1.5;letter-spacing: 0.1em;padding-bottom: 5px;}
#sub_contents .sub__ttl03 span{font-size: 13px;letter-spacing: 0;}
#sub_contents .mb30 {margin-bottom: 20px;}
#sub_contents .mb50 {margin-bottom: 30px!important;}
#sub_contents .mb80 {margin-bottom: 40px;}
#sub_contents .mb100 {margin-bottom: 50px;}
#sub_contents .sp {display: block; }
#sub_contents .pc_vw{display: none;}
#sub_contents .pc {display: none; }
#sub_contents p{font-size: 14px;line-height: 1.5;}
#sub_contents .topic{text-align: center;font-size: 2rem;}
#sub_contents .flex__photo{width: 100%;margin-bottom: 15px;}
#sub_contents .flex__txt{width: 100%;}
#sub_contents .s_con{margin-bottom: 40px;}
#sub_contents .topics02{font-size: 16px;font-weight: 500;margin-bottom: 10px;line-height: 1.5;}
#sub_contents .topics{font-size: 17px;margin-bottom:3px;font-weight: bold;}
#sub_contents .sub__ttl04 {font-size: 18px;line-height: 1.3;margin-bottom: 10px;}
#sub_contents .sub__ttl01{margin-bottom: 15px;}
#sub_contents .sub__ttl01 span{font-size: 13px;display: block;line-height: 1;font-weight:500;}
#sub_contents .sub__ttl01 strong{font-size: 38px;}
#sub_contents .bubble::before {display: none;}
#sub_contents .bubble::after {display: none;}
#sub_contents .sub__ttl02 strong{font-size:12px;padding: 2px 3px;line-height: 1;}
#sub_contents .topics.bubble{padding: 0;}
}


/* page_navi
------------------------------*/
#sub_contents .wp-pagenavi {clear: both;text-align:center;margin:0 auto;}
#sub_contents .wp-pagenavi a,.wp-pagenavi span {border-radius: 18px;font-size: 15px;display: inline-block;color: #fff;background-color: #2ca3da;border: 1px solid #2ca3da;padding: 3px 12px;margin: 0 0 5px;white-space: nowrap;text-align: center;text-decoration: none;line-height: 1.8; margin: 0 5px;}
#sub_contents .wp-pagenavi span.pages {display: none;}
#sub_contents .wp-pagenavi a:hover{color: #fff;background-color: #2ca3da;}
#sub_contents .wp-pagenavi span.current{color: #fff;background-color: #2ca3da;font-weight: bold;}
@media screen and (max-width: 767px) {
#sub_contents .wp-pagenavi a,.wp-pagenavi span{font-size: 13px;}
}


/* contact
----------------------------------- */
#sub_contents .con_cen{border: 1px dashed #2ca3da;text-align:center; padding:30px 50px 30px;font-size:16px;line-height:180%;margin:50px 0px 60px;border-radius: 20px;}
#sub_contents .con_cen a{ display: inline-block; margin:15px 0px;}
#sub_contents .con_cen .tel_link small{font-size: 28px;font-weight:500;}
#sub_contents .con_cen strong{font-size: 18px;color: #2ca3da;display:block;font-weight: bold;}
#sub_contents .contact_tel span{font-size: 50px;}
#sub_contents .contact_tel {line-height: 1;}

#sub_contents .con_cen .br_sp{display: none;}
#sub_contents .con_cen .br_380{display: none;}
#sub_contents table.defTable01{margin:0px auto;border-collapse:collapse; width:100%;box-sizing:border-box;}
#sub_contents table.defTable01 tr{ display:block;border-bottom:1px solid #ddd; padding:10px 0px;}
#sub_contents table.defTable01 tr:first-child{ border-top: 1px solid #ddd;}
#sub_contents table.defTable01 th{ font-size: 16px;padding-top: 10px;padding-bottom: 10px;padding-right: 3%; width:33%;display:inline-block; box-sizing:border-box; font-weight:bold;}
#sub_contents table.defTable01 td{ font-size:16px ;padding:10px 0px 10px 0px;display:inline-block;box-sizing:border-box;width:65.5%; text-align:left;}
#sub_contents table.defTable01 td a{text-decoration: underline;}
#sub_contents table.defTable01 th em.clrred{ color:#d30000;font-style: italic;font-weight: bold;}
#sub_contents table.defTable01 th em.any{ font-size:12px;color:#fff;font-style:normal; text-align:center;background:#333;padding:1px 5px;width:40px; float:right;}
#sub_contents table.defTable01 td.cen{ text-align:center; margin:0 auto; display:block;}
#sub_contents table.defTable01 td.cen input {padding: 10px;color: #000;font-size: 16px;width: 40%;background: #fff;cursor: pointer; border:1px solid #ccc; display:block; text-align:center; margin:0 auto;}
#sub_contents table.defTable01 td.cen input:hover{ background: #000;opacity: 0.8;filter: alpha(opacity=80);-moz-opacity: 1.0;-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out; color:#fff;}
#sub_contents table.defTable01 input {padding: 8px 10px; background: #eee; font-size:13px;border:none;box-sizing:border-box;width:100%;padding: 10px 10px;font-weight: normal;}
#sub_contents table.defTable01 textarea  {padding:8px 10px;background: #eee;font-size:13px; border:none; width:100%;box-sizing: border-box;padding: 10px 10px;font-weight: normal;}
#sub_contents table.defTable01 .bbn {border-bottom: none!important;}
#sub_contents table.defTable01 td.tel_area input {width:23%;}
#sub_contents table.defTable01 input[type=checkbox] { width:3%;}
#sub_contents table.defTable01 input[type=checkbox]::before {content: "";background: #000;}
#sub_contents table.defTable01 input[type="radio"] { width:3%;margin-bottom: 6px;}
#sub_contents table.defTable01 .privacyBox {padding:10px 35px 30px;width: calc(100% - 0px);height: 300px;overflow-y: scroll;margin-bottom: 20px;background: #fff; font-size:90%; border: 1px solid #ddd; box-sizing: border-box;}
#sub_contents table.defTable01 .privacyBox .sub_ttl {margin:20px 0px 15px 0px; font-size:140%; line-height: 120%; padding:2px 0px 2px 8px;border-left: 5px solid #2ca3da;font-weight: bold;}
#sub_contents table.defTable01 .privacyBox p{text-align:left; margin-bottom:10px; line-height: 160%;}
#sub_contents table.defTable01 .privacyBox ul.ulbox li{ list-style-type:disc; list-style-position:inside; margin-left:0px;font-size: 15px;}
#sub_contents table.defTable01 .privacyBox::-webkit-scrollbar {height: 5px;}
#sub_contents table.defTable01 .privacyBox::-webkit-scrollbar-track{background: #eee;}
#sub_contents table.defTable01 .privacyBox::-webkit-scrollbar-thumb{background: #2ca3da;}
#sub_contents table.defTable01 .br_bt{display: none;}

@media screen and (max-width: 767px) {
#sub_contents table.defTable01 th{width: 100%;text-align: left;padding: 5px 0;font-size: 15px;}
#sub_contents table.defTable01 td{width: 100%;padding: 5px 0;font-size: 14px;}
#sub_contents table.defTable01 tr{padding: 5px 0px;}
#sub_contents table.defTable01 .privacyBox{padding:10px 10px 30px ;}
#sub_contents table.defTable01 .privacyBox .sub_ttl{margin: 15px 0px 8px 0px;font-size: 18px;}
#sub_contents table.defTable01 .privacyBox ul.ulbox li{ line-height: 1.5;font-size: 15px;}
#sub_contents .con_cen{border: 1px dashed #2ca3da;padding:20px 10px;font-size:14px;line-height:1.6;margin:50px 0px 60px;}
#sub_contents .con_cen a{ display: inline-block; margin:0;line-height: 1.1;}
#sub_contents .con_cen .tel_link{margin:0; padding: 0; font-size:30px;}
#sub_contents .con_cen .tel_link small{font-size: 24px;}
#sub_contents .con_cen strong{font-size: 15px;display:block;font-weight:500;}
#sub_contents .con_cen .br_sp{display: none;}
#sub_contents .con_cen .br_380{display: none;}
#sub_contents .contact_txt{text-align: left;display: block;}
}


/* news
----------------------------------- */
#sub_contents .news_grid {width: 100%;}
#sub_contents .news_grid .news_grid li {padding: 1.9rem 0;border-bottom: solid #000 1px;color: #000;}
#sub_contents .news_grid .news_grid li .date {width: 12rem;padding-left: 0.7rem;font-family: teko;font-weight: 400;font-size: 1.8rem;letter-spacing: 1.7px;line-height: 1.2; width: 10%;}
#sub_contents .news_grid .news_grid li .label {flex-grow: 1;font-family: YuGothicM;font-size: 1.4rem;line-height: 1.5;letter-spacing: 0.6px;width: 90%;display: -webkit-box;-webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;}
#sub_contents .n_img{width:70%;margin: 0 auto 30px;text-align: center;}

@media screen and (max-width: 767px) {
#sub_contents .n_img {width: 100%;margin: 0 auto 15px;text-align: center;}
#sub_contents .news_grid .news_grid li .date{width: 100%;display: block; padding-left: 0;}
}


/* works
----------------------------------- */
#sub_contents .wk_type li .media {position: relative;border-radius: 2rem;overflow: hidden;}
#sub_contents .wk_type li .media .thumb {position: relative;width: 100%;}
#sub_contents .wk_type li .media .category {position: absolute;left: 0;bottom: 0;display: inline-block;padding: 0 2.3rem 0 1.7rem;border-radius: 0 1.5rem 0 0;background: #34beed;font-family: YuGothicM;font-size: 1.4rem;line-height: 1.65;letter-spacing: 1px;color: #fff;}
#sub_contents .wk_type li .date {margin-top: 0.8rem;font-family: YuGothicM;font-size: 1.4rem;line-height: 1.714;letter-spacing: 1.5px;color: #999999;}
#sub_contents .wk_type li .label {font-family: YuGothicM;font-size: 1.8rem;line-height: 1.6;letter-spacing: 2px;}
#sub_contents .wk_type li{margin-bottom: 30px; max-width: 272px;}

@media screen and (max-width: 767px) {
  #sub_contents .wk_type li{width: 100%;}
  #sub_contents .wk_type li .label{font-size: 15px;}
  #sub_contents .wk_type li .date {font-size: 14px;line-height: 1.4;margin-top: 0.5rem;}
  #sub_contents .news_grid .news_grid li{padding: 1rem 0;}
  }

/* company
----------------------------------- */
#sub_contents table.tbl_company{ width:100%;border-spacing: 0px;border-collapse:collapse;}
#sub_contents table.tbl_company th{font-weight: normal;border:1px solid #dfdfdf; width:30%; padding:20px 20px 20px 20px; background:#1ba4d7; color: #fff; vertical-align: middle;font-size: 18px;}
#sub_contents table.tbl_company td{background: #fff;border:1px solid #ccc; padding:20px 36px 20px 35px;line-height: 1.5;font-size: 16px;vertical-align: middle;}
#sub_contents table.tbl_company td a{ text-decoration: underline; color: #000;}
#sub_contents table.tbl_company td a.tel{color: inherit;}
#sub_contents .p_access{font-size: 15px;line-height: 1.3;}
#sub_contents .access_map {margin-bottom:10px;}
#sub_contents .access_map iframe{max-width: 100%;}
#sub_contents .tbl_history th{ background: #fff !important; color: #000!important;border: 0px none!important;}
#sub_contents .tbl_history td{ background: #fff !important; color: #000!important;border: 0px none!important;}
#sub_contents .tbl_history tr:nth-child(odd) th{ background: rgb(238, 238, 238)!important; color: #000;}
#sub_contents .tbl_history tr:nth-child(odd) td{ background: rgb(238, 238, 238)!important; color: #000;}
#sub_contents .m_name{font-weight: bold;text-align: right;}

@media screen and (max-width: 767px) {
#sub_contents table.tbl_company th{font-size: 15px;width:100%; padding:10px;display: block;-webkit-display: block;-webkit-width:100%; line-height: 1;}
#sub_contents table.tbl_company td{font-size: 14px;padding:10px;line-height: 1.5;display: block;border-left: 1px solid #ccc;border-right: 1px solid #ccc;border-top: none;border-bottom: none;-webkit-display: block;-webkit-width:100%;}
#sub_contents table.tbl_company tbody{border-bottom: 1px solid #ccc;}
#sub_contents .access_map iframe{height: 300px;}
#sub_contents .p_access{font-size: 14px;line-height: 1;}
#sub_contents .access_map {margin-bottom:25px;}
#sub_contents .access_map iframe{height: 300px;}
#sub_contents .p_access{font-size: 14px;line-height: 1;}
#sub_contents table.tbl_history tbody{border-bottom: 0px none!important;}
#sub_contents .tbl_history th{ background: rgb(238, 238, 238)!important; color: #000!important;}
#sub_contents .tbl_history tr:nth-child(odd) th{ background: rgb(238, 238, 238)!important; color: #000;}
#sub_contents .tbl_history tr:nth-child(odd) td{ background: #fff!important; color: #000;}
}


/* disassembly
----------------------------------- */
#sub_contents .facility-flex .flex__photo img{border-radius: 25px;}
#sub_contents .flow_step strong{font-size:30px;font-weight: bold;display: block;line-height: 1;}
#sub_contents .flow_step {font-family: teko;line-height: 1;text-align: center;font-weight: bold;letter-spacing: .2em;width:10%;z-index: 1;font-size:14px;color: #1ba4d7;margin-right: 0;position:relative;display:inline-block;background: #fff;}
#sub_contents .flow_ttl{line-height: 1;font-size:20px;color: #1ba4d7;margin-bottom:5px;letter-spacing: 1.3px;font-weight: 500;}
#sub_contents .flow_txt{line-height: 1.3;font-size:16px;color: #000;letter-spacing: 1.3px;background: #fff;}
#sub_contents .flow_list {align-items: center;}
#sub_contents .flow_area{width: 55%;display: flex;flex-flow: column;}
#sub_contents .flow_list .flex__txt{width: 100%;}
#sub_contents .flow_list .ff-txt{width: 85%;}
#sub_contents .flow_list .flex__photo {z-index: 2;}
#sub_contents .flow_list .flex__photo img{border-radius: 25px;}
#sub_contents .ff02{align-items: flex-start;padding: 5px 0 20px;display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}
#sub_contents .tbl_message table {border-collapse: collapse;margin: 0 auto; }
#sub_contents .tbl_message th,td {padding: 5px 10px; /* 余白指定 */}
#sub_contents .tbl_message td {background-color:  #fff; /* 背景色指定 */padding-left: 25px;/* 余白指定 */text-align: left;}
#sub_contents .tbl_message th::after {content:'';position:  absolute;height: 44px;width: 44px;background-color: #1ba4d7;transform:  rotate(45deg);top: 14%;right: -22px;z-index:  -1;}
/*#sub_contents .tbl_message tr {border-bottom:  solid #fff; }*/
#sub_contents .tbl_message {width: 100%;}
#sub_contents .tbl_message tr {background: #e5f8fd;margin-bottom: 15px;display: block;}
#sub_contents .tbl_message th {height: 62px;line-height: 1;width: 25%;font-weight: 500;background:#1ba4d7;color: #fff;vertical-align: middle;font-size: 17px;position:  relative;z-index: 10;}
#sub_contents .tbl_message th small{font-size: 14px;line-height: 1;}
#sub_contents .tbl_message td {max-width: 1200px;width: 1000px;vertical-align: middle;padding-left: 43px;font-size: 16px;line-height: 1.6;}
#sub_contents .recruit_list li {width:32%;display: block;padding: 30px 20px;background: #f7f7f7;position:relative;margin-right: 2%;border-radius: 20px;}
#sub_contents .recruit_list li:nth-of-type(3n){margin-right: 0;}
#sub_contents .recruit_list .nb__atc--ttl {left: 27px;margin: 15px auto;text-align: left;line-height: 1;font-size: 33px;font-weight:700;text-align: left;position:absolute;top: -28px;color:#0661bd;font-family:'EB Garamond', serif;}
#sub_contents .recruit_list .nb__txt {font-size: 16px;line-height: 1.8;text-align: left;margin: 0 auto;}
#sub_contents .recruit_list .nb__ttl{font-size: 20px;font-weight: bold;text-align: center;margin-bottom:10px;line-height: 1.2;} 
#sub_contents .recruit_list .nb__img {margin-bottom: 15px;}
#sub_contents .stg_ttl {font-size: 60px;line-height: 1;text-align: center;color: #fff;text-align: center}
#sub_contents .stg_ttl strong {font-size: 53px;display: block;font-weight:500;letter-spacing: 3px;}
#sub_contents .strongs {text-align:center;position: relative;background: url(../img/pattern_area.jpg);max-width: 1100px;padding:30px;margin: 0 auto;;border-radius: 30px;}
#sub_contents .mf_list .nb__img{text-align: center;}
#sub_contents .mf_list .nb__img img{width: 30%;margin: 0 auto;}
#sub_contents .ast {position: absolute;left: 5rem;bottom: 0;width: 14%;}
#sub_contents .ast img{border-radius: 0;}
#sub_contents .stg_txt{font-size: 16px;font-weight:500;letter-spacing: 3px;color: #fff;}

@media screen and (max-width: 987px) {
  #sub_contents .ast {
    width: 90px;
    left: 2rem;
    top: -8%;
    }
}

@media screen and (max-width: 767px) {
#sub_contents .flow_area{width: 100%;}
#sub_contents .flow_ttl{font-size: 17px;}
#sub_contents .flow_txt{font-size: 14px;}
#sub_contents .tbl_message tr{margin-bottom: 30px;}
#sub_contents .tbl_message td{font-size:14px;width: 100%;display:block;padding:12px 10px 5px;}
#sub_contents .tbl_message th{width: 100%;display:block;padding: 5px;height: 30px;font-size: 15px;line-height: 1.3;}
#sub_contents .tbl_message th::before {content:'';  /* 空の要素を作る */position:  absolute;/* 位置指定 */height: 20px;/* 高さ指定 */ width: 20px; /* 幅指定 */background-color: #2ca3da;  /* 背景色指定 */ transform:  rotate(45deg);  /* 要素を回転 */top: 11px;/* 位置指定 */right: 48%;/* 位置指定 */z-index:  -1; /* 重なり調整 */}
#sub_contents .tbl_message th::after{display: none;}
#sub_contents .recruit_list li {width:100%;padding: 17px 10px;margin-right: 0;border-radius: 20px;margin-bottom: 15px;}
#sub_contents .recruit_list .nb__txt{font-size:14px;line-height: 1.5;}
#sub_contents .recruit_list .nb__ttl{font-size: 16px;}
#sub_contents .stg_ttl strong{font-size: 38px;}
#sub_contents .stg_txt{font-size: 14px;text-align:left;letter-spacing: 1px;}
#sub_contents .ast { width: 73px;}
#sub_contents .strongs{padding: 30px 10px 15px;}
}

/* group
----------------------------------- */
#sub_contents .msg_topic{text-align: center;font-size: 25px;font-weight: bold;margin-bottom: 13px;color: #1ba4d7;line-height: 1.3;}
#sub_contents .msg_txt{text-align: center;}
#sub_contents .msg_topic small{display: block;font-size: 16px;font-weight: bold;}
#sub_contents .msg_box{position: relative;margin: 0 auto;padding:5px 0;}
#sub_contents .msg_box::before,#sub_contents .msg_box::after{ content:'';width: 20px;height: 30px;position: absolute;display: inline-block;}
#sub_contents .msg_box::before {border-left: solid 2px #1ba4d7;border-top: solid 2px #1ba4d7;top:0;left: 0;}
#sub_contents .msg_box::after {border-right: solid 2px #1ba4d7;border-bottom: solid 2px #1ba4d7;bottom:0;right: 0;}
#sub_contents table.c_table02{max-width: 1200px;width: 100%;}
#sub_contents .c_table02 th {background: #eee;border: solid 1px #999;color: #000;padding: 10px;font-size: 17px;}
#sub_contents .c_table02 td {border: solid 1px #999;padding: 10px;font-size: 16px;vertical-align: middle;}
#sub_contents .t_left{width: 30%;}
#sub_contents .t_right{width: 70%;}

@media screen and (max-width: 767px) {
#sub_contents .msg_box{position: relative;margin: 0 auto 30px;padding:8px 14px;}
#sub_contents .msg_box::before,#sub_contents .msg_box::after{ content:'';width: 15px;height: 19px;position: absolute;display: inline-block;}
#sub_contents .msg_box::before {border-left: solid 2px #1ba4d7;border-top: solid 2px #1ba4d7;top:0;left: 0;}
#sub_contents .msg_box::after {border-right: solid 2px #1ba4d7;border-bottom: solid 2px #1ba4d7;}
#sub_contents table.c_table02 {width: 100%;}
#sub_contents .c_table02 th {font-size: 15px;}
#sub_contents .c_table02 td {font-size: 14px;}
#sub_contents .msg_topic{font-size: 17px;margin-bottom: 5px;}
}


/* business
----------------------------------- */
#sub_contents .business_list {margin: 0 auto;}
#sub_contents .business_list li {width:32%;display: block;padding: 20px 16px;background: #eeeeee;position:relative;margin-bottom: 30px;border-radius: 20px;}
#sub_contents .business_list .nb__atc--ttl {left: 27px;margin: 15px auto;text-align: left;line-height: 1;font-size: 33px;font-weight:700;text-align: left;position:absolute;top: -28px;color:#0661bd;font-family:'Oswald', sans-serif ;}
#sub_contents .business_list .nb__txt {font-size: 16px;line-height: 1.8;text-align: left;margin: 0 auto;}
#sub_contents .business_list .nb__ttl{font-size: 23px;font-weight: bold;text-align: center;margin-bottom: 10px;line-height: 1.3;} 
#sub_contents .business_list .nb__img {margin-bottom: 15px;}
@media screen and (max-width: 767px) {
  #sub_contents .business_list li{width: 100%;padding: 13px 10px;margin-bottom: 20px;}
  #sub_contents .business_list .nb__ttl{font-size: 16px;}
  #sub_contents .business_list .nb__txt{font-size: 14px;line-height: 1.5;}
}


/* estimate
----------------------------------- */
#sub_contents .p_led{color: #f72626;}

#mitsumori-js .mitsumori-js-tbl{
  margin:0px auto;
  border-collapse:collapse; 
  box-sizing:border-box;
  width: 640px;
}
#mitsumori-js .mitsumori-js-tbl th{
  padding: 10px;
  font-weight: bold;
  border: 1px solid #ddd;
  width: 40%;
}
#mitsumori-js .mitsumori-js-tbl thead th{
  background: #2ca3da;
  color: #fff;
}
#mitsumori-js .mitsumori-js-tbl tbody{
  width: 100%;
}
#mitsumori-js .mitsumori-js-tbl tr{
  width: 100%;
}
#mitsumori-js .mitsumori-js-tbl td{
  padding: 10px;
  border: 1px solid #ddd;
  width: 60%;
}
#mitsumori-js .mitsumori-js-tbl input[type="text"]{
  width:100%;
  background: #eee;
  padding: 5px 10px;
}
#mitsumori-js .mitsumori-js-tbl input[type="number"]{
  width:100px;
  background: #eee;
  margin-right: 10px;
  padding: 5px 10px;
}
#mitsumori-js .mitsumori-js-tbl input[type="radio"]{
  margin-left: 10px;
}
#submit-btn{
  position: relative;
  z-index: 10;
  display: table;
  margin: 40px auto;
  max-width: 26.3rem;
  width: 100%;
  border-radius: 10rem;
  text-align: center;
  background: #5dd1b7;
  font-family: YuGothicB;
  font-weight: 700;
  font-size: 2rem;
  line-height: 5.9rem;
  letter-spacing: 1px;
  color: #fff;
}
#submit-btn:hover:not(:disabled){
  opacity: 0.8;
  cursor: pointer;
}
#submit-btn:disabled{
  background: #ccc;
}
.center{
  text-align: center;
}

#mitsumori-js .item-str td > .mitsumori-js-item{
  width: 48%;
  float: left;
}

@media screen and (max-width: 767px) {

  #mitsumori-js .mitsumori-js-tbl{
    width: 100%;
  }
  #submit-btn{
    font-size: 1.5rem;
    line-height: 4.9rem;
  }
  #mitsumori-js .item-str td > .mitsumori-js-item{
    width: 100%;
    margin-bottom: 5px;
  }
}

/*
Wordpress 
__________________________*/

/* single-page*/
.sgl-cts strong{font-weight:bold;}
.sgl-cts cite,.sgl-cts em,.sgl-cts i{font-style:italic;}
.sgl-cts big{font-size:131.25%;}
.sgl-cts ins{background:#ffc;text-decoration:none;}
.sgl-cts blockquote{font-style:italic;padding:0.3em;}
.sgl-cts blockquotecite,.sgl-cts blockquoteem,.sgl-cts blockquotei{font-style:normal;}
.sgl-cts pre{background:#f7f7f7;color:#222;line-height:18px;margin-bottom:18px;overflow:auto;padding:1.5em;}
.sgl-cts abbr,.sgl-cts acronym{border-bottom:1px dotted #666;cursor:help;}
.sgl-cts sup,.sgl-cts sub{height:0;line-height:1;position:relative;vertical-align:baseline;}
.sgl-cts sup{bottom:1ex;}
.sgl-cts sub{top:.5ex;}
.sgl-cts p {display: block;margin-bottom: 1em;}
.sgl-cts table,	.sgl-cts th,	.sgl-cts td{border: 1px solid #000;}
.sgl-cts table{
  display: table;
  border-collapse: separate;
  box-sizing: border-box;
  text-indent: initial;
  border-spacing: 2px;
  border-color: grey;
}

.sgl-cts table th,	.sgl-cts table caption {	border-width: 0 1px 1px 0;	padding: 7px;	text-align: left;	vertical-align: baseline;}
.sgl-cts table td {	border-width: 0 1px 1px 0;	padding: 7px;	vertical-align: baseline;}
.sgl-cts ol{ list-style: decimal outside;}
.sgl-cts ul{list-style: disc outside;}
.sgl-cts li{margin-left: 1em;}

.sgl-cts .wp-block-image{margin-bottom: 1em;}
.sgl-cts .single-tn{margin-bottom: 1em;text-align: center;}

/*useragent reset.cssの上書き*/
.sgl-cts h1 {font-size: 2em;font-weight: bold;}
.sgl-cts h2 {font-size: 1.5em;font-weight: bold;}
.sgl-cts h3 {font-size: 1.17em;font-weight: bold;}
.sgl-cts h4 {font-weight: bold;}
.sgl-cts h5 {font-size: 0.83em;font-weight: bold;}
.sgl-cts h6 {display: block;font-size: 0.67em;font-weight: bold;}


/*投稿画面の表のスタイルを当てる*/
.sgl-cts .wp-block-table thead {border-bottom: 3px solid;}
.sgl-cts .wp-block-table tfoot {border-top: 3px solid;}
.sgl-cts .wp-block-table td,.wp-block-table th {padding: 0.5em;border: 1px solid;word-break: normal;}
.sgl-cts .wp-block-table figcaption {color: #555;font-size: 13px;text-align: center;}
.sgl-cts .wp-block-table td,.wp-block-table th {border: 1px solid;}
.sgl-cts .wp-block-table figcaption {color: #555;font-size: 13px;text-align: center;}
.sgl-cts .is-dark-theme .wp-block-table figcaption {color: hsla(0, 0%, 100%, 0.65);}


/*Contact Form 7*/
.wpcf7-mail-sent-ok {display: none!important;}
.wpcf7-spinner{display: none!important;}
.wpcf7-spinner{position: absolute!important; top: 50%;}
.wpcf7-form input[type="checkbox"] {width: 1em!important; margin-left:0.1em!important; margin-right: 0.1em!important;}
.wpcf7-form input[type="radio"] {width: 1em!important;margin: 0 0.1em!important;}
.wpcf7-list-item{display: inline-block!important;margin-left: 0em!important;margin-right: 0em!important;}
.wpcf7-list-item-label::before {content: ""; margin-right: 0.2em;}
.wpcf7-list-item-label::after {content: ""; margin-right: 1em;}
.wpcf7-form.invalid .wpcf7-acceptance + .wpcf7-not-valid-tip{ 
white-space: nowrap;
}

/*others*/
.thankspage{text-align: center;}
.post_none{font-size: 15px; padding-top: 2em; padding-bottom: 2em;}
.post_none2{font-size: 15px; text-align: center; padding: 2em 0;margin-left: auto; margin-right: auto}
img{height:auto;}
.bread_crumb li br{display:none;}


/* 2307__追加
----------------------------------- */
#sub_contents .tbl__ttl{margin-bottom: 20px;position: relative;text-align: left;font-size: 30px;letter-spacing: .1em;font-weight: bold;z-index: 1;width: fit-content;padding-left: 30px;color: #000;line-height: 1.5;}
#sub_contents .tbl__ttl:before{
    content: '■';
    position: absolute;
    top: 10px;
    display: inline-block;
    font-size: 15px;
    color: #2ca3da;
    left: 0;
  }
table.c_table01 {
	max-width:100%;
  width: 100%;
	border-right:#dfdfdf solid 1px;
	border-collapse: collapse;
}
/*table.c_table01 thead{
	border-right:#dfdfdf solid 1px;
	border-left:#dfdfdf solid 1px;
	border-top:#dfdfdf solid 1px;
}
*/
table.c_table01 thead th {
	background:#1ba4d7;
	color:#fff;
	padding:10px 15px;
	font-size: 17px;
	border:#dfdfdf solid 1px;
}
table.c_table01 thead th:first-child{
  background: none;
  border: none;
}
table.c_table01 tbody th {
	font-size: 17px;
	background:#1ba4d7;
	color:#fff;
	padding:10px 15px;
	border:#dfdfdf solid 1px;
	border-left:#dfdfdf solid 1px;
	vertical-align:middle;
  width: 30%;
}
table.c_table01 tbody tr:last-child th {
	border-bottom:#dfdfdf solid 1px;
}
table.c_table01 tbody td {
	background:#FFF;
	padding:10px 15px;
	border-left:#dfdfdf solid 1px;
	border-bottom:#dfdfdf solid 1px;
	vertical-align:top;
}

/*tbl02*/
#sub_contents table.tbl_02{ width:100%;border-spacing: 0px;border-collapse:collapse;}
#sub_contents table.tbl_02 th{font-weight: normal;border:1px solid #dfdfdf; width:30%; padding:20px 20px 20px 20px; background:#1ba4d7; color: #fff; vertical-align: middle;font-size: 18px;}
#sub_contents table.tbl_02 td{background: #fff;border:1px solid #ccc; padding:20px 36px 20px 35px;line-height: 1.5;font-size: 16px;vertical-align: middle;}

.half_box{width: 48%;}
#sub_contents .list_disc{list-style-type: disc;padding-left: 30px;}
#sub_contents .list_disc li{font-size: 16px;padding: 0.2em 0;line-height: 1.5;}

/*license_list*/
.license_list li{width: 24%;font-size: 16px;}
.license_list::before{
  content:"";
  display: block;
  width:24%;
  order:1;
}
.license_list::after{
  content:"";
  display: block;
  width:24%;
}
.license_list li i{margin-right: 5px;color: #2ca3da;}

@media screen and (max-width: 1200px) {
  .license_list li{width: 30%;font-size: 16px;}
  .license_list ::after{
    content:"";
    display: block;
    width:30%;
  }
  .license_list::before{
    display: none;
  }
}

.tbl_scr_txt{display: none;}
@media screen and (max-width: 1000px) {
  .tbl_scr_txt{display: block;}
  table.c_table01{width: 1000px;max-width:1000px;}
  .tbl_scr{overflow-x: scroll;}
  .tbl_scr::-webkit-scrollbar {height: 8px;}
  .tbl_scr::-webkit-scrollbar-thumb {background: #BCBCBC;}
  .tbl_scr::-webkit-scrollbar-track {background: #fff;}
  .license_list li{width: 48%;}
}
@media screen and (max-width: 800px) {
  #sub_contents table.tbl_02{width: 800px;}
}
@media screen and (max-width: 767px) {
  #sub_contents .tbl__ttl{margin-bottom: 15px;font-size: 20px;padding-left: 20px;}
  #sub_contents .tbl__ttl:before{top: 5px;font-size: 13px;}
  table.c_table01 tbody th{font-size: 15px;}
  table.c_table01 thead th{font-size: 15px;}
  table.c_table01{width: 767px;max-width:767px;}
  #sub_contents table.tbl_02 th{font-size: 15px;padding: 10px;}
  #sub_contents table.tbl_02 td{font-size: 14px;padding: 10px;}
  /*license_list*/
  .license_list li{width: 100%;font-size: 14px;margin-bottom: 5px;}
  .license_list li i{margin-right: 3px;color: #2ca3da;}

  #sub_contents .list_disc li{font-size: 14px;}
}

@media screen and (max-width: 400px) {
  #sub_contents table.tbl_02{width: 500px;}
  table.c_table01{width: 570px;max-width:570px;margin-bottom: 1px;}
}