@charset "UTF-8";
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
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); */
  -webkit-filter: brightness(115%);
          filter: brightness(115%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a,
a * {
  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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix {
  *zoom: 1;
}

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

br {
  line-height: inherit;
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
.xl_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1400px;
}

@media screen and (max-width: 1400px) {
  .xl_contain {
    padding: 0 1.6rem;
  }
}

.xlm_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

@media screen and (max-width: 1200px) {
  .xlm_contain {
    padding: 0 1.6rem;
  }
}

.lg_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1040px;
}

@media screen and (max-width: 1040px) {
  .lg_contain {
    padding: 0 1.6rem;
  }
}

.lgm_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 850px;
}

@media screen and (max-width: 850px) {
  .lgm_contain {
    padding: 0 1.6rem;
  }
}

.md_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 768px;
}

@media screen and (max-width: 768px) {
  .md_contain {
    padding: 0 1.6rem;
  }
}

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

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

.xlm_on {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .xlm_on {
    display: block !important;
  }
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* LAZYLOAD SETTINGS */
.blurUp {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: -webkit-filter 400ms;
  transition: -webkit-filter 400ms;
  transition: filter 400ms;
  transition: filter 400ms, -webkit-filter 400ms;
}

.blurUp.lazyloaded {
  -webkit-filter: blur(0);
          filter: blur(0);
}

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

.inview.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* 画面外にいる状態 */
.fadein {
  opacity: 0.1;
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.thumb img {
  -webkit-transition: all 0.3s;
  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";
}

span.anchor::before {
  content: '';
  display: block;
  height: 6rem;
  margin-top: -6rem;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  span.anchor::before {
    height: 5.5rem;
    margin-top: -5.5rem;
  }
}

/*--------------------------------------------------------------
    # メインコンテンツ
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.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;
  }
}

body {
  width: 100%;
  font-weight: 500;
  font-family: SourceHanSansJPR, "メイリオ", sans-serif;
  --global--color-primary: #000;
  color: #000;
}

#wrapper {
  overflow: hidden;
  position: relative;
}

#wrapper main {
  position: relative;
  padding-top: 9.5rem;
}

@media screen and (max-width: 768px) {
  #wrapper main {
    padding-top: 0;
  }
}

/*--------------------------------------------------------------
    # text & background style
--------------------------------------------------------------*/
@-webkit-keyframes stretch-animate {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  28% {
    -webkit-transform: scale(1.15, 0.85);
            transform: scale(1.15, 0.85);
  }
  50% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes stretch-animate {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  28% {
    -webkit-transform: scale(1.15, 0.85);
            transform: scale(1.15, 0.85);
  }
  50% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes change_color {
  0% {
    color: #fff;
  }
  80% {
    color: #59cadc;
  }
}

@keyframes change_color {
  0% {
    color: #fff;
  }
  80% {
    color: #59cadc;
  }
}

@-webkit-keyframes hd_menu_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hd_menu_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fwb {
  font-weight: 700;
}

.fwm {
  font-weight: 500;
}

.stxt {
  font-size: 1.4rem;
}

.ntxt {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .ntxt {
    font-size: 1.56rem;
  }
}

.mtxt {
  font-weight: 500;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .mtxt {
    font-size: 1.55rem;
  }
}

a.link_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #ff4800), color-stop(70%, #ff682c));
  background: linear-gradient(90deg, #ff4800 30%, #ff682c 70%);
  border-radius: 0.8rem;
  max-width: 73rem;
  width: 100%;
  height: 7rem;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
}

@media screen and (max-width: 768px) {
  a.link_btn {
    width: 100%;
    max-width: unset;
    font-size: 1.5rem;
    height: 5rem;
    border-radius: 0.5rem;
  }
}

a.link_btn img {
  width: auto;
  margin-right: 1rem;
}

@media screen and (max-width: 768px) {
  a.link_btn img {
    width: 2rem;
  }
}

a.pg_top {
  position: fixed;
  z-index: 9999;
  z-index: 9999;
  width: 5rem;
  height: 5rem;
  background: #fff;
  right: 2rem;
  bottom: 2rem;
  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;
}

a.pg_top:hover {
  background: #dadada;
}

@media screen and (max-width: 768px) {
  a.pg_top {
    width: 3rem;
    height: 3rem;
  }
}

a.pg_top img {
  width: 1.9rem;
}

@media screen and (max-width: 768px) {
  a.pg_top img {
    width: 1rem;
  }
}

.blink {
  /* border: #FF0000 solid 5px !important; */
  border-color: #f00;
  border-style: solid !important;
  border-width: 4px !important;
  -webkit-animation: 0.5s ease-in-out 0s infinite alternate blink;
          animation: 0.5s ease-in-out 0s infinite alternate blink;
  /* position: relative; */
  /* z-index: 100; */
  /* background-color: transparent; */
}

@-webkit-keyframes blink {
  0% {
    border-color: red;
  }
  100% {
    border-color: rgba(255, 0, 0, 0);
  }
}

@keyframes blink {
  0% {
    border-color: red;
  }
  100% {
    border-color: rgba(255, 0, 0, 0);
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 10000;
  background: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  /*	グローバナビ（スマホ用）- global navigator(smartphone)
    ---------------------------------*/
}

@media screen and (max-width: 768px) {
  header {
    position: relative;
  }
}

header.over .hd-menu {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

header.over .hd-menu ul.hd-nav li a {
  line-height: 6rem;
}

header .lg_contain {
  height: 9.5rem;
}

@media screen and (max-width: 768px) {
  header .lg_contain {
    padding: 0;
    padding-bottom: 0.5rem;
    height: auto;
  }
}

header .lg_contain .tagline {
  width: 100%;
  background: #f3f3e9;
  font-size: 1.13rem;
}

@media screen and (max-width: 1040px) {
  header .lg_contain .hd_logo {
    width: 43%;
  }
}

@media screen and (max-width: 768px) {
  header .lg_contain .hd_logo {
    width: 35%;
    margin-left: 1rem;
  }
}

@media screen and (max-width: 1040px) {
  header .telgrid {
    width: 55%;
  }
}

@media screen and (max-width: 768px) {
  header .telgrid {
    margin-top: 0.7rem;
    margin-right: 1rem;
  }
}

header .telgrid p.time {
  background: #f5ec00;
  text-align: center;
  font-family: SourceHanSansJPR;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  header .telgrid p.time {
    font-size: 0.85rem;
  }
}

header .telgrid p.time span {
  letter-spacing: -1px;
  margin-right: 1rem;
  font-family: SourceHanSansJPH;
  font-size: 1.625rem;
  color: #333;
}

@media screen and (max-width: 768px) {
  header .telgrid p.time span {
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
}

header .telgrid .tel_box {
  width: 100%;
  margin-top: 0.7rem;
}

@media screen and (max-width: 768px) {
  header .telgrid .tel_box {
    margin-top: 0.3rem;
  }
}

header .telgrid .tel_box a p {
  margin-bottom: 0.5rem;
  font-family: SourceHanSansJPB;
  font-size: 1.5rem;
  line-height: 1;
}

@media screen and (max-width: 1040px) {
  header .telgrid .tel_box a p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  header .telgrid .tel_box a p {
    margin-bottom: 0.3rem;
    font-size: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  header .telgrid .tel_box a:first-of-type {
    width: 13rem;
  }
  header .telgrid .tel_box a:last-of-type {
    width: 9rem;
  }
}

header .telgrid .tel_box p.sep {
  margin: 0 0.5rem;
}

@media screen and (max-width: 768px) {
  header .telgrid .tel_box p.sep {
    margin: 0 0.1rem;
    width: 0.6rem;
  }
}

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: #fff;
    width: 5.8rem;
    height: 5.5rem;
    padding: 2rem 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;
    -webkit-transition: 0.35s ease-in-out;
    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;
    -webkit-transform: translate(-50%, 0);
            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;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  }
  header nav.sp-nav a {
    display: block;
  }
  header nav.sp-nav a* {
    -webkit-transition: 0s;
    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-weight: 500;
    font-size: 1.65rem;
  }
  header nav.sp-nav ul.n_menu {
    display: block;
    margin-top: 3.5rem;
    padding: 0 2.5rem;
  }
  header nav.sp-nav ul.n_menu li.n_menu-li {
    position: relative;
    padding: 1.1rem 0;
  }
  header nav.sp-nav ul.n_menu li.n_menu-li span {
    font-weight: 500;
    font-size: 1.35rem;
  }
}

header.open nav.sp-nav {
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

header.open .navToggle span:nth-child(1) {
  top: 0.7rem;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

header.open .navToggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

header.open .navToggle span:nth-child(3) {
  top: 0.7rem;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}

footer {
  position: relative;
}

footer .tb {
  padding-top: 2rem;
  padding-bottom: 11rem;
}

@media screen and (max-width: 768px) {
  footer .tb {
    padding-top: 2rem;
    padding-bottom: 2.6rem;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  footer .tb .l_block {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: solid #cbcbbc 1px;
  }
}

footer .tb .l_block p {
  margin-top: 1.5rem;
  font-family: YuGothicM;
  font-size: 1.6rem;
  color: #000;
}

@media screen and (max-width: 768px) {
  footer .tb .l_block p {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
  }
}

footer .tb ul.ft_menu {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  footer .tb ul.ft_menu {
    width: 100%;
    margin-top: 1.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .tb ul.ft_menu li {
  margin-left: 2rem;
  font-family: YuGothicM;
  font-size: 1.6rem;
  word-break: keep-all;
}

@media screen and (max-width: 768px) {
  footer .tb ul.ft_menu li {
    margin-left: 1rem;
    font-size: 1.35rem;
  }
}

footer .tb ul.ft_menu li:first-of-type {
  margin-left: 0;
}

section {
  position: relative;
}

section.hero {
  background: url(../images/mv.gif) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  section.hero {
    background: url(../images/mv-sp.gif) top center no-repeat;
    background-size: contain;
  }
}

section.hero .lg_contain .mv_title {
  position: relative;
  z-index: 99;
  width: 100%;
  padding-top: 2.4rem;
  padding-bottom: 9.2rem;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .mv_title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 1040px) {
  section.hero .lg_contain h3 {
    width: calc( 100% - 33rem);
  }
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain h3 {
    padding: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain h3 p.mv01 img {
    max-width: 89%;
  }
}

section.hero .lg_contain h3 p.mv02 {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain h3 p.mv02 {
    font-size: 1.7rem;
    line-height: 1.4;
  }
}

section.hero .lg_contain .contact_banner {
  position: relative;
  margin-top: -3rem;
}

@media screen and (max-width: 1040px) {
  section.hero .lg_contain .contact_banner {
    margin-top: -1rem;
  }
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .contact_banner {
    width: 100%;
    margin-top: 0;
  }
}

section.hero .lg_contain .form_inner {
  position: relative;
  background: #fff;
  border-radius: 0;
  padding: 9rem 2rem 1.5rem;
  margin: auto;
  width: 40rem;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .form_inner {
    width: 100%;
    margin-top: 3rem;
    padding: 9.5rem 2.3rem 1.6rem;
  }
}

section.hero .lg_contain .form_inner .media {
  margin-left: -3rem;
  width: 31rem;
  position: absolute;
  top: 0.7rem;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .form_inner .media {
    margin-left: 1rem;
  }
}

section.hero .lg_contain .form_inner p.desc {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .form_inner p.desc {
    font-size: 1.45rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .form_inner dl.content {
    width: 100%;
    margin-top: 1.9rem;
  }
}

section.hero .lg_contain .form_inner dl.content dt {
  margin-bottom: 0.5rem;
  font-family: SourceHanSansJPM;
  font-size: 1.6rem;
  color: #666666;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .form_inner dl.content dt {
    font-size: 1.45rem;
  }
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .form_inner dl.content dd {
    margin-bottom: 1rem;
  }
}

section.hero .lg_contain .form_inner dl.content dd input {
  border: #333333 solid 2px;
  border-radius: 1rem;
  background: #f8f8f8;
  width: 100%;
  height: 6.2rem;
  -webkit-box-shadow: 4px 4px 0 0 #e6e6e6 inset;
          box-shadow: 4px 4px 0 0 #e6e6e6 inset;
  padding: 0 10px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .form_inner dl.content dd input {
    height: 5.8rem;
  }
}

section.hero .lg_contain .form_inner .alert {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  color: #fe1a3f;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .form_inner .alert {
    margin-top: 1rem;
    font-size: 1.45rem;
  }
}

section.hero .lg_contain .btn {
  width: 100%;
}

section.hero .lg_contain .btn .sbmt {
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 9.9rem;
  cursor: pointer;
  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;
  width: 100%;
  background: url(../images/form_btn.png) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  section.hero .lg_contain .btn .sbmt {
    height: 7.5rem;
    background: url(../images/form_btn_sp.png) center center no-repeat;
    background-size: contain;
  }
}

section.efforts {
  position: relative;
  background: url(../images/feature_bg.jpg);
}

section.efforts .lg_contain {
  padding-top: 1rem;
}

section.efforts .lg_contain h3 {
  margin-top: -8.5rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  section.efforts .lg_contain h3 {
    margin-top: 1.3rem;
    -webkit-transform: translateX(-3.8vw);
            transform: translateX(-3.8vw);
    width: 99vw;
  }
}

section.efforts .lg_contain .kv {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  section.efforts .lg_contain .kv {
    margin-top: 2.4rem;
    -webkit-transform: translateX(-2vw);
            transform: translateX(-2vw);
    width: 99vw;
  }
}

section.feature {
  padding-top: 1rem;
  background: url(../images/bg_lblue.jpg);
}

section.feature .lg_contain {
  margin-top: -7.5rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 768px) {
  section.feature .lg_contain {
    margin-top: -4rem;
    padding-bottom: 2.5rem;
  }
}

section.feature .lg_contain .f_block {
  width: 100%;
  border: solid #fc0d1d 8px;
  background: #fff;
  margin-bottom: 3.5rem;
  -webkit-filter: drop-shadow(0 5px 0 #0000002f);
          filter: drop-shadow(0 5px 0 #0000002f);
}

@media screen and (max-width: 768px) {
  section.feature .lg_contain .f_block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1.8rem;
  }
}

section.feature .lg_contain .f_block:last-of-type {
  margin-bottom: 0;
}

section.feature .lg_contain .f_block p.thumb {
  position: relative;
  width: 35.3rem;
  height: 25.3rem;
}

@media screen and (max-width: 768px) {
  section.feature .lg_contain .f_block p.thumb {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    z-index: 20;
    width: 100%;
    height: 21.4rem;
  }
}

section.feature .lg_contain .f_block .content {
  position: relative;
  width: calc( 100% - 35.3rem);
  padding: 0 4.5rem;
}

@media screen and (max-width: 768px) {
  section.feature .lg_contain .f_block .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    z-index: 30;
    width: 100%;
    padding: 0 2rem;
    padding-bottom: 2.3rem;
  }
}

@media screen and (max-width: 768px) {
  section.feature .lg_contain .f_block .content .label {
    margin-top: -3rem;
  }
  section.feature .lg_contain .f_block .content .label img {
    margin: auto;
  }
}

section.feature .lg_contain .f_block .content .desc {
  margin-top: 1rem;
  font-size: 2rem;
}

@media screen and (max-width: 1040px) {
  section.feature .lg_contain .f_block .content .desc {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  section.feature .lg_contain .f_block .content .desc {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

section.worries {
  padding-top: 1rem;
  background: url(../images/asset03bg.jpg) top center no-repeat;
  background-size: cover;
}

section.worries .lg_contain {
  padding-bottom: 7rem;
}

@media screen and (max-width: 768px) {
  section.worries .lg_contain {
    padding-bottom: 3rem;
  }
}

section.worries .lg_contain h3 {
  margin-top: -3.5rem;
}

@media screen and (max-width: 768px) {
  section.worries .lg_contain h3 {
    margin-top: -2.3rem;
  }
}

section.worries .lg_contain .board {
  position: relative;
  background: url(../images/asset041.png) no-repeat top center;
  background-size: 100%;
  margin: -1.7rem auto 0;
}

@media screen and (max-width: 768px) {
  section.worries .lg_contain .board {
    margin-top: 0;
    background: url(../images/asset041_sp.png) no-repeat top center;
    background-size: 100%;
  }
}

section.worries .lg_contain .board ul {
  width: 100%;
  background: url(../images/asset042.png) no-repeat bottom center;
  background-size: 100%;
  margin: 0 auto;
  padding: 12.3rem 6rem 8rem 15rem;
}

@media screen and (max-width: 1040px) {
  section.worries .lg_contain .board ul {
    padding: 10rem 6rem 6rem;
  }
}

@media screen and (max-width: 768px) {
  section.worries .lg_contain .board ul {
    padding: 6.8rem 5rem 3rem 4.5rem;
    background: url(../images/asset042_sp.png) no-repeat bottom center;
    background-size: 100%;
  }
}

section.worries .lg_contain .board ul li {
  position: relative;
  padding-left: 6rem;
  margin-bottom: 3.6rem;
  font-family: SourceHanSansJPB;
  font-size: 3rem;
  line-height: 1.2;
}

@media screen and (max-width: 1040px) {
  section.worries .lg_contain .board ul li {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  section.worries .lg_contain .board ul li {
    padding-left: 3.5rem;
    margin-bottom: 1.95rem;
    font-size: 1.69rem;
    line-height: 1.2;
  }
}

section.worries .lg_contain .board ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: -0.5rem;
  width: 4.7rem;
  height: 4.6rem;
  background: url(../images/asset05.png) left top no-repeat;
  background-size: 4.6rem;
}

@media screen and (max-width: 1040px) {
  section.worries .lg_contain .board ul li::before {
    width: 4rem;
    height: 4rem;
    background-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  section.worries .lg_contain .board ul li::before {
    top: 0.4rem;
    width: 2.6rem;
    height: 3rem;
    background-size: 2.6rem;
  }
}

section.contact_sect {
  padding-top: 1rem;
  background: url(../images/bg_red.jpg);
}

section.contact_sect .lg_contain {
  padding-bottom: 5.5rem;
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain {
    padding-bottom: 2.9rem;
  }
}

section.contact_sect .lg_contain .contact_block {
  max-width: 90.8rem;
  margin: -3.2rem auto 0;
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain .contact_block {
    margin-top: -2.5rem;
  }
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain .contact_block p.kv {
    -webkit-transform: translateX(-4.5vw);
            transform: translateX(-4.5vw);
    width: 98vw;
  }
}

section.contact_sect .lg_contain .contact_block p.kv img {
  margin: auto;
}

section.contact_sect .lg_contain .contact_block .cgrid {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain .contact_block .cgrid {
    margin-top: -1rem;
  }
}

section.contact_sect .lg_contain .contact_block .cgrid li {
  border-radius: 0.8rem;
  overflow: hidden;
  background: #fff;
}

section.contact_sect .lg_contain .contact_block .cgrid li p.tp {
  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;
  width: 100%;
  height: 4rem;
  text-align: center;
  background: #f5ec00;
  font-family: SourceHanSansJPM;
  font-size: 1.38rem;
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain .contact_block .cgrid li p.tp {
    font-size: 1.15rem;
    line-height: 1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

section.contact_sect .lg_contain .contact_block .cgrid li p.tp span {
  margin-right: 0.5rem;
  font-family: SourceHanSansJPH;
  font-size: 1.88rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain .contact_block .cgrid li p.tp span {
    margin: 0;
    font-size: 1.33rem;
    line-height: 1.2;
  }
}

section.contact_sect .lg_contain .contact_block .cgrid li:first-of-type .cont {
  width: 100%;
  height: 14rem;
}

@media screen and (max-width: 1040px) {
  section.contact_sect .lg_contain .contact_block .cgrid li:first-of-type .cont {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain .contact_block .cgrid li:first-of-type .cont {
    height: 7.5rem;
    padding: 0 1rem;
  }
}

section.contact_sect .lg_contain .contact_block .cgrid li:first-of-type .cont a {
  width: 100%;
  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;
}

section.contact_sect .lg_contain .contact_block .cgrid li:last-of-type {
  background: url(../images/asset10bg.png) bottom center no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain .contact_block .cgrid li:last-of-type {
    background: url(../images/asset10bg_sp.png) bottom center no-repeat;
    background-size: 100%;
  }
}

section.contact_sect .lg_contain .contact_block .cgrid li:last-of-type a.contact_link {
  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;
  width: 100%;
  height: 14.5rem;
}

@media screen and (max-width: 1040px) {
  section.contact_sect .lg_contain .contact_block .cgrid li:last-of-type a.contact_link {
    padding: 0 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  section.contact_sect .lg_contain .contact_block .cgrid li:last-of-type a.contact_link {
    height: 7.6rem;
    padding: 0 0.5rem;
  }
}

section.reason::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 47.6rem;
  background: url(../images/asset11bg.jpg) top center no-repeat;
  background-size: cover;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  section.reason::before {
    height: 21.3rem;
    background: url(../images/asset11bg_sp.jpg) top center no-repeat;
    background-size: cover;
  }
}

section.reason .lg_contain {
  padding-top: 8.2rem;
  padding-bottom: 7.5rem;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain {
    padding-top: 3.5rem;
    padding-bottom: 2.3rem;
  }
}

section.reason .lg_contain h3 img {
  margin: auto;
}

section.reason .lg_contain ul.reason_grid {
  margin-top: 8.2rem;
  background: #fff;
  padding: 4rem 4rem;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.reason_grid {
    margin-top: 3.6rem;
    padding: 2rem 2.2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

section.reason .lg_contain ul.reason_grid li.content {
  width: 42%;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.reason_grid li.content {
    width: 100%;
  }
}

section.reason .lg_contain ul.reason_grid li.content p.label {
  font-family: SourceHanSansJPB;
  font-size: 3.6rem;
  line-height: 4.8rem;
  color: #0075dc;
}

@media screen and (max-width: 1040px) {
  section.reason .lg_contain ul.reason_grid li.content p.label {
    font-size: 3rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.reason_grid li.content p.label {
    font-size: 1.95rem;
    line-height: 2.8rem;
  }
}

section.reason .lg_contain ul.reason_grid li.content p.desc {
  margin-top: 1rem;
  font-family: YuGothicM;
  font-size: 2rem;
  color: #333333;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.reason_grid li.content p.desc {
    margin-top: 2rem;
    font-size: 1.45rem;
    line-height: 1.8;
  }
}

section.reason .lg_contain ul.reason_grid li.thumb {
  width: 52%;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.reason_grid li.thumb {
    width: 93%;
    margin-top: 1.3rem;
  }
}

section.reason .lg_contain p.ex_label {
  margin-top: 2.5rem;
  width: 100%;
  height: 8.4rem;
  background: #0075dc;
  font-family: SourceHanSansJPB;
  font-size: 3rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain p.ex_label {
    margin-top: 1.3rem;
    font-size: 1.6rem;
    height: 4.6rem;
  }
}

section.reason .lg_contain ul.ex_grid {
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.ex_grid {
    margin-top: 2rem;
  }
}

section.reason .lg_contain ul.ex_grid li p.thumb {
  height: auto;
}

section.reason .lg_contain ul.ex_grid li p.label {
  margin-top: 1rem;
  font-family: YuGothicB;
  font-size: 2rem;
  color: #007dec;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.ex_grid li p.label {
    font-size: 1.45rem;
    line-height: 1.4;
  }
}

section.reason .lg_contain ul.ex_grid li p.desc {
  font-family: YuGothicM;
  font-size: 2rem;
  color: #333;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.ex_grid li p.desc {
    font-size: 1.45rem;
    line-height: 1.1;
    margin-top: 0.3rem;
  }
}

section.reason .lg_contain ul.ex_grid li p.desc span {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  section.reason .lg_contain ul.ex_grid li p.desc span {
    font-size: 1.1;
  }
}

section.flow {
  background: url(../images/bg_green.jpg);
}

section.flow .lg_contain {
  padding-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain {
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain h3 {
    -webkit-transform: translateX(-2vw);
            transform: translateX(-2vw);
    width: 99vw;
  }
}

section.flow .lg_contain ul.flow_grid {
  width: 100%;
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid {
    margin-top: 2.6rem;
  }
}

section.flow .lg_contain ul.flow_grid li {
  position: relative;
  background: #fff;
  border: solid #fcef35 8px;
  padding: 3.5rem 5rem 3.5rem 6rem;
  margin-bottom: 7rem;
}

@media screen and (max-width: 1040px) {
  section.flow .lg_contain ul.flow_grid li {
    padding: 3rem 3rem;
  }
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid li {
    padding: 1.5rem 1rem 1.5rem 1.8rem;
    margin-bottom: 3.8rem;
  }
}

section.flow .lg_contain ul.flow_grid li::after {
  position: absolute;
  content: "";
  width: 4.7rem;
  height: 3.3rem;
  background: url(../images/arr_down.png) no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  bottom: -6rem;
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid li::after {
    bottom: -3.4rem;
    width: 2.5rem;
    height: 2rem;
  }
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid li:last-of-type {
    margin-bottom: 0;
  }
}

section.flow .lg_contain ul.flow_grid li:last-of-type::after {
  content: unset;
}

section.flow .lg_contain ul.flow_grid li .content {
  width: 65%;
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid li .content {
    width: 55%;
  }
}

section.flow .lg_contain ul.flow_grid li .content p.label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid li .content p.label {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

section.flow .lg_contain ul.flow_grid li .content p.label span {
  margin-left: 1rem;
  font-family: SourceHanSansJPH;
  font-size: 3.6rem;
  color: #333;
}

@media screen and (max-width: 1040px) {
  section.flow .lg_contain ul.flow_grid li .content p.label span {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid li .content p.label span {
    margin-left: 0;
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 0.5rem;
  }
}

section.flow .lg_contain ul.flow_grid li .content p.label span.lt4 {
  letter-spacing: -4px;
}

section.flow .lg_contain ul.flow_grid li .content p.desc {
  margin-top: 1.5rem;
  font-family: YuGothicM;
  font-size: 2rem;
  color: #333;
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid li .content p.desc {
    margin-top: 1.1rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

section.flow .lg_contain ul.flow_grid li .av {
  width: 35%;
}

@media screen and (max-width: 768px) {
  section.flow .lg_contain ul.flow_grid li .av {
    width: 44%;
  }
}

section.flow .lg_contain ul.flow_grid li .av img {
  margin: auto;
}

section.thought {
  background: url(../images/asset15bg.jpg) top center no-repeat;
}

@media screen and (max-width: 768px) {
  section.thought {
    background: url(../images/asset15bg_sp.jpg) top center no-repeat;
    background-size: cover;
  }
}

section.thought .lg_contain {
  padding-top: 6rem;
  padding-bottom: 9rem;
}

@media screen and (max-width: 768px) {
  section.thought .lg_contain {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

section.thought .lg_contain .th_block {
  padding: 13rem 7rem 6rem;
  background: url(../images/asset14.png) top center no-repeat, url(../images/asset14_bg.jpg) bottom center no-repeat;
  background-size: 100%, contain;
}

@media screen and (max-width: 768px) {
  section.thought .lg_contain .th_block {
    padding: 8.3rem 2.3rem 2.8rem;
    background: url(../images/asset14_sp.png) top center no-repeat, url(../images/asset14_bg.jpg) bottom center no-repeat;
    background-size: 100%, contain;
  }
}

section.thought .lg_contain .th_block h3 img {
  margin: auto;
}

section.thought .lg_contain .th_block p.desc {
  margin-top: 8rem;
  font-family: YuGothicM;
  font-size: 2rem;
  line-height: 2.2;
  color: #333;
}

@media screen and (max-width: 768px) {
  section.thought .lg_contain .th_block p.desc {
    margin-top: 1.6rem;
    font-size: 1.45rem;
    line-height: 1.85;
  }
}

section.thought .lg_contain .th_block p.ceo {
  margin-top: 1rem;
  font-family: YuGothicM;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  section.thought .lg_contain .th_block p.ceo {
    margin-top: 0.1rem;
    font-size: 1.37rem;
  }
}

section.ft_contact {
  background: #f8f8f5;
}

section.ft_contact .lg_contain h3 {
  position: relative;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain h3 {
    width: 100vw;
    -webkit-transform: translateX(-1.6rem);
            transform: translateX(-1.6rem);
  }
}

section.ft_contact .lg_contain h3 img {
  margin: auto;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain h3 img {
    margin-right: 0;
    width: 96vw;
  }
}

section.ft_contact .lg_contain h3::before {
  position: absolute;
  width: 100vw;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 0;
  content: "";
  background: url(../images/bg_blue.jpg);
}

section.ft_contact .lg_contain .contact_grid {
  position: relative;
  max-width: 58rem;
  background: #f8f8f5;
  margin: -8rem auto 0;
  padding: 3.7rem 4rem 5rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid {
    margin-top: -5rem;
    padding: 2.5rem 2.3rem 4.5rem;
  }
}

section.ft_contact .lg_contain .contact_grid .link_box {
  padding-bottom: 1.5rem;
}

section.ft_contact .lg_contain .contact_grid .link_box p.tag {
  width: 100%;
  height: 3.3rem;
  background: #f5ec00;
  text-align: center;
  font-family: SourceHanSansJPM;
  font-size: 1.54rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .link_box p.tag {
    height: 4.7rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0;
    font-size: 1.35rem;
    line-height: 1.6;
  }
}

section.ft_contact .lg_contain .contact_grid .link_box p.tag span {
  margin-right: 0.5rem;
  font-family: SourceHanSansJPH;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .link_box p.tag span {
    display: block;
    margin-right: 0;
    font-size: 1.37rem;
    line-height: 1.2;
  }
}

section.ft_contact .lg_contain .contact_grid .link_box a {
  display: inline-block;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .link_box a {
    width: 100%;
    margin-top: 0.7rem;
  }
}

section.ft_contact .lg_contain .contact_grid .form_block {
  border-top: solid #cbcbbc 1px;
  padding-top: 2rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .form_block {
    padding-top: 1.5rem;
  }
}

section.ft_contact .lg_contain .contact_grid .form_block p.desc {
  font-family: YuGothicM;
  font-size: 2rem;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .form_block p.desc {
    font-size: 1.45rem;
    line-height: 1.3;
  }
}

section.ft_contact .lg_contain .contact_grid .form_block ul.content {
  width: 100%;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .form_block ul.content {
    margin-top: 1rem;
    padding-bottom: 1.6rem;
  }
}

section.ft_contact .lg_contain .contact_grid .form_block ul.content li {
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .form_block ul.content li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1.3rem;
  }
}

section.ft_contact .lg_contain .contact_grid .form_block ul.content li p {
  width: 18rem;
  font-family: SourceHanSansJPB;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .form_block ul.content li p {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
}

section.ft_contact .lg_contain .contact_grid .form_block ul.content li input {
  width: calc( 100% - 18rem);
  border: #333333 solid 2px;
  border-radius: 6px;
  background: #f8f8f8;
  width: 100%;
  height: 5.8rem;
  -webkit-box-shadow: 4px 4px 0 0 #e6e6e6 inset;
          box-shadow: 4px 4px 0 0 #e6e6e6 inset;
  padding: 0 10px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .form_block ul.content li input {
    width: 100%;
  }
}

section.ft_contact .lg_contain .contact_grid .form_block .btn {
  width: 100%;
}

section.ft_contact .lg_contain .contact_grid .form_block .btn .sbmt {
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 9.6rem;
  cursor: pointer;
  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;
  width: 100%;
  background: url(../images/form_fbtn.png) center center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  section.ft_contact .lg_contain .contact_grid .form_block .btn .sbmt {
    height: 7.6rem;
    background: url(../images/form_fbtn_sp.png) center center no-repeat;
    background-size: contain;
  }
}

@font-face {
  font-family: SourceHanSansJPH;
  src: url("../font/SourceHanSansJP-Heavy.woff") format("woff");
}

@font-face {
  font-family: SourceHanSansJPB;
  src: url("../font/SourceHanSansJP-Bold.woff") format("woff");
}

@font-face {
  font-family: SourceHanSansJPM;
  src: url("../font/SourceHanSansJP-Medium.woff") format("woff");
}

@font-face {
  font-family: SourceHanSansJPR;
  src: url("../font/SourceHanSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: YuGothicB;
  src: url("../font/YuGothicB.woff") format("woff");
}

@font-face {
  font-family: YuGothicM;
  src: url("../font/YuGothicM.woff") format("woff");
}
/*# sourceMappingURL=style.css.map */

/*_________20240221 ExTop 施工事例 Before & After___________*/

@media screen and (min-width: 768px) {
.ex_top_warpper  {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1em;
}

.ex_top_top, .ex_top_bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ex_top_top {
  height: 250px;
}

.ex_top_bottom {
  margin-top: -4rem;
  margin-bottom: -6rem;
}

.ex_top_1 {
  width: 40%;
  font-size: 350%;
  padding: 0.25em 0.5em 0.25em 0;
}

.ex_top_2 {
  width: 5%;
  font-size: 350%;
  text-align: center;
  color: #0075dc;
}

.ex_top_3 {
  width: 25%;
  font-size: 350%;
  padding: 0.5em;
}

.ex_top_4 {
  width: 30%;
  font-size: 175%;
}

p.label_top {
  font-size: 2rem;
  color: #007dec;
}

.ex_top_before {}

img.ex_top_before_img {}

.ex_top_after {}

img.ex_top_after_img {}

}

@media screen and (max-width: 768px) {
  .ex_top_warpper  {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1em;
  }
  
  .ex_top_top, .ex_top_bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .ex_top_top {
    height: auto;
  }
  
  .ex_top_bottom {
    margin-top: -1.5rem;
    margin-bottom: -1rem;
  }
  
  .ex_top_1 {
    width: 47.5%;
    font-size: 150%;
    padding: 0.25em 0.5em 0.25em 0;
  }
  
  .ex_top_2 {
    width: 5%;
    font-size: 100%;
    text-align: center;
    color: #0075dc;
  }
  
  .ex_top_3 {
    width: 47.5%;
    font-size: 150%;
    padding: 0.5em;
  }
  
  .ex_top_4 {
    width: 100%;
  }
  
  span.label_top {
    font-size: 155%;
    color: #007dec;
    margin-bottom: -0.75em;
  }
  
  .ex_top_before {}
  
  img.ex_top_before_img {
    object-fit: cover;
    max-width: 305.27px;
    width: 100%;
    max-height: 250px;
    height: 17vh;
  }
  
  .ex_top_after {}
  
  img.ex_top_after_img {
    object-fit: cover;
    max-width: 305.27px;
    width: 100%;
    max-height: 250px;
    height: 17vh;
  }

  .ex__bottom.sp_on {
    width: 100%;
    margin-top: 1em;
  }

  span.ex_text_1 {
    font-size: 150%;
  }

  span.ex_text_2 {
    font-size: 125%;
  }
  .spaceText {
    padding-left: 1em;
  }
}

.ex_top_3.ex_text_space {
  letter-spacing: 0.075em;
}

/*_________20240313 ExTop 施工事例 Before & After___________*/

/*   共通   */
.ExTop_ColumnWapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.ExTop_RowWapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.ExTop_LeftTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #666;
  color: #fff;
}
.ExTop_CenterSpace {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.ExTop_RightTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f60;
  color: #fff;
}
.ExTop_CenterTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #008b8b;
  color: #fff;
}
.ExTop_LeftContents, .ExTop_RightContents, .ExTop_CenterContentsMain {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-style: solid;
  border-width: 3px;
  padding: 0.25em;
}
.ExTop_LeftContents {border-color: #666;}
.ExTop_CenterContentsMain {border-color: #008b8b;}
.ExTop_RightContents {border-color: #f60;}
.ExTop_CenterContents {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.LeftContents_Title, .RightContents_Title, .CenterContents_Title {padding-right: 0.25em; max-width: 20%; text-align: center;}
.LeftContents_Title, .ExTop_CenterContents {color: #666;}
.RightContents_Title {color: #f60; letter-spacing: 0.05em;}
.CenterContents_Title {color: #008b8b;}
.LeftContents_ImgWarpper, .RightContents_ImgWarpper, .CenterContents_ImgWarpper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
/*.ColorBlack {color: #000;}*/

/*   (min-width: 768px)   */
@media only screen and (min-width: 768px) {
  .ExTop_ColumnWapper {margin-top: 2em;}
  .ExTop_RowWapper {font-size: 255%; margin-bottom: 1em;}
  .ExTop_LeftTitle, .ExTop_RightTitle, .ExTop_LeftContents, .ExTop_RightContents, .ExTop_CenterTitle, .ExTop_CenterContentsMain {width: 45%; margin-bottom: -1em;}
  .ExTop_CenterSpace, .ExTop_CenterContents {width: 10%;}
  .LeftContents_ImgWarpper, .RightContents_ImgWarpper, .CenterContents_ImgWarpper {height: 300px; margin: 0 auto;}
  img.ExTopImg {object-fit: cover; width: 450px; max-width: 100%; height: 300px;}
  .ExTop_CenterContents {font-size: 200%;}
  .ExTop_Client {border-style: solid; border-width: 3px; color: #666; margin-top: 1em; padding: 1em; width: 100%;}
  .LabelTop {color: #007dec; font-weight: bold;}
  .LabelBottom {font-size: 75%;}
}

/*   (max-width: 768px)   */
@media only screen and (max-width: 768px) {
  .ExTop_ColumnWapper {margin-top: 0.75em;}
  .ExTop_RowWapper {font-size: 125%; margin-bottom: 0.75em;}
  .ExTop_LeftTitle, .ExTop_RightTitle, .ExTop_LeftContents, .ExTop_RightContents, .ExTop_CenterTitle, .ExTop_CenterContentsMain {width: 47.5%; margin-bottom: -0.75em;}
  .ExTop_CenterSpace, .ExTop_CenterContents {width: 5%;}
  .LeftContents_ImgWarpper, .RightContents_ImgWarpper, .CenterContents_ImgWarpper {height: 150px; margin: 0 auto;}
  img.ExTopImg {object-fit: cover; width: 380px; max-width: 100%; height: 150px;}
  .ExTop_CenterContents {font-size: 80%;}
  .ExTop_Client {border-style: solid; border-width: 3px; color: #666; margin-top: 0.75em; padding: 0.75em; width: 100%;}
  .LabelTop {color: #007dec; font-weight: bold;}
  .LabelBottom {font-size: 75%;}
}

/*_________20240514 作業工程 ___________*/

  .WorkingProcess_ColumnWapper{display: flex;flex-direction: column; justify-content: center;align-items: center;width: 100%;border-style: solid;border-width: 0px;border-color: #0075dc;}

  .WorkingProcess_RowWapper {display: flex;flex-direction: row; justify-content: center;align-items: center;width: 100%;}

  .WorkingProcess_LeftWapper, .WorkingProcess_RightWapper {width: 50%;}

  .WorkingProcess_LeftTitle, .WorkingProcess_RightTitle {color: #0075dc;font-weight: bold;text-align: center;width: 95%;filter: drop-shadow(2px 4px 6px #777);}

  .WorkingProcess_LeftTitle:before, .WorkingProcess_RightTitle:before {content: "●";color: #fff;position: absolute;left: 1vw;top: 0vh;filter: drop-shadow(1px 1px 0px #777);}

  .WorkingProcess_LeftTitle:after, .WorkingProcess_RightTitle:after {content: "●";color: #fff;position: absolute;right: 1vw;top: 0vh;filter: drop-shadow(1px 1px 0px #777);}

  .Col_gy {background-color: #D3D3D3;}

  .Col_cy {background-color: #D3D3D3;}

  .Col_or {background-color: #D3D3D3;}

  .Col_ye {background-color: #D3D3D3;}

  .LeftImg_ImgWarpper, .RightImg_ImgWarpper {
    /*border-top-style: solid;
    border-top-width: 3px;
    border-top-color: #0075dc;*/
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  img.WorkingProcessImg {object-fit: cover;max-width: 100%;box-shadow: 4px 3px 10px 1px #777;border: solid 7px #fff;}

  .mr__01 {margin-bottom: 1em;}

/*   (min-width: 768px)   */
@media only screen and (min-width: 768px) {
  .WorkingProcess_LeftTitle, .WorkingProcess_RightTitle {font-size: 255%;}
  .LeftImg_ImgWarpper, .RightImg_ImgWarpper {height: 450px;}
  img.WorkingProcessImg {height: 400px;}
}

/*   (max-width: 768px)   */
@media only screen and (max-width: 768px) {
  .WorkingProcess_LeftTitle, .WorkingProcess_RightTitle {font-size: 100%;}
  .LeftImg_ImgWarpper, .RightImg_ImgWarpper {height: 300px;}
  img.WorkingProcessImg {height: 250px;}
}

/*_________20250711 追加修正分 ___________*/

nav.navigation, nav.navigation2, .nav-warp, ul.nav-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

nav.navigation {
  font-size: 200%;
  font-weight: bold;
  margin: 1% auto 0;
  background-color: #0F52BA;
  color: #fff;
}

nav.navigation2 {
  font-size: 200%;
  font-weight: bold;
  margin: 0% auto 0;
  background-color: #0F52BA;
  color: #fff;
}

ul.nav-list {
  padding: 3% 0%;
}

ul.nav-list li a {
  padding: 10px 5px;
}

ul.nav-list li a:hover {
  color: #0F52BA;
  background-color: #fff;
  padding: 10px 5px;
} 

li.sideline::before {
  content: "　/　";
}

@media screen and (min-width: 768px) {
  .sp-view {display: none;}
  .pc-view {display: flex;}
}

@media screen and (min-width: 550px) and (max-width: 1200px) {
  nav.navigation, nav.navigation2, .copyRight {font-size: 125%;}
}

@media screen and (max-width: 768px) {
  .sp-view {display: flex;}
  .pc-view {display: none;}
  .copyRight{font-size: 55%;}
}

#capture6 {
  /*background-color: #D3D3D3;*/
  filter: drop-shadow();
}

.contact_grid {
      filter: drop-shadow(2px 0px 6px #aaa);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 7%;
  width: 100%;
  height: 150px;
  background-color: #0F52BA;
  color: #fff;
  font-size: 150%;
}

.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 150px;
  background-color: rgba(102, 102, 102, 0.7);
  text-align: center;
  padding: 0.5%;
  z-index: 1000;
}

@media screen and (min-width: 770px) {
.fixed-content {
  background-color: #fff;
  padding: 1%;
  border-radius: 7px;
  max-height: calc(225px - 1%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  .time {
    background-color: #f5ec00;
    border-radius: 7px;
    text-align: center;
    font-family: SourceHanSansJPR;
    padding: 0.15% 0;
    margin-top: 5px;
    font-size: 14px;
  }

  .tel_box {
    display: flex;
    justify-content: center;
    gap: 1%;
    padding-left: 7%;
    margin: 0 auto;
    width: 100%;

    p {padding-left: 0%;}
    a.qr {width: 30%;}
  }

  .text-center {
    font-size: 14px;
    margin-top: 10px;
    height: 135px;

    img:not(.code) {
      margin-top: 5px;
      margin-left: 5px;
      width: 20vw;
    }
  }

  img {
    max-height: 85px;
    margin-top: 5px;

    &:hover {opacity: 0.7;}
  }
}
}

@media only screen and (min-width: 770px) and (max-width: 1080px) {
  .fixed-banner {width: 50% !important;}
  .tel_box {
    padding-left: 0% !important;
    p {padding-left: 3% !important;white-space:nowrap;}
  }
  img:not(.code) {
      width: 32vw !important;
    }
}

@media screen and (min-width: 730px) and (max-width: 769px) {
.fixed-content {
  background-color: #fff;
  padding: 1%;
  border-radius: 7px;
  max-height: calc(225px - 1%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  .time {
    background-color: #f5ec00;
    border-radius: 7px;
    text-align: center;
    font-family: SourceHanSansJPR;
    padding: 0.5% 0;
    margin-top: -15px;
  }

  .tel_box {
    display: flex;
    justify-content: center;
    gap: 5%;
    padding-left: 0%;

    a.qr {width: 12vw;}
  }

  .text-center {
    font-size: 1rem;
    margin-top: 10px;

    img:not(.code) {
      margin-top: 5px;
      padding-left: 12%;
    }
  }

  img {
    max-height: 80px;
    margin-top: 5px;
  }
}
.fixed-banner {width: 100%;height: 150px;}
}

@media screen and (max-width: 729px) {
.fixed-content {
  background-color: #fff;
  padding: 1%;
  border-radius: 7px;
  max-height: calc(225px - 1%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  .time {
    background-color: #f5ec00;
    border-radius: 7px;
    text-align: center;
    font-family: SourceHanSansJPR;
    padding: 0.5% 0;
    margin-top: -15px;
  }

  .tel_box {
    display: flex;
    justify-content: center;
    gap: 3%;
    padding-left: 0%;
    width: 100%;

    a.qr {width: 12vw;}
  }

  .text-center {
    font-size: 10px;
    margin-top: 7px;

    img:not(.code) {
      margin-top: 5px;
      padding-left: 0%;
    }
  }

  img {
    max-height: 55px;
    margin-top: 5px;
  }
}
.fixed-banner {width: 100%;height: 100px;}
}