@charset "UTF-8";
/* FONT
---------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300&family=Poiret+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique&family=Zen+Antique+Soft&display=swap");
/* FILE
---------------------------------------------------------------------------- */
/* 共通 */
/* VARIABLE
---------------------------------------------------------------------------- */
:root {
  /* Font */
  --font-gothic: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --font-mincho: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --font-heading: 'Zen Antique', serif;
  --font-en: 'Poiret One', cursive;
  /* font size */
  --main-font_size: 15px;
  /* font style */
  --main-line-height: 1.6;
  --main-letter-spacing: 0.08em;
  --letter-spacing: 0.2em;
  /* color */
  --main-color: #f2f6f7;
  --main-black: #1A1311;
  --col-whitesmoke: #f5f5f5;
  --col-right-blue: #265cc3;
  --col-right-blue-hover: #a0e9f8;
  --col-mint: #36BEAD;
  --col-lancdezinc: #F7F9FC;
  --col-lancdezinc-hover: #EAF0F9;
  --col-focus-yellow: #ffffe0; }

/*
STYLE
-------------------------------------------*/
.content p.check {
  color: #FF3333; }
.content p.p_st {
  font-size: 20px;
  color: #CA28B1; }
.content .cont_wrap .txt_box {
  background-color: #E6EDEE;
  padding: 20px;
  margin: 20px; }
  .content .cont_wrap .txt_box h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    padding-right: 0px;
    padding-left: 0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #B6CACD;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    color: #333; }
    .content .cont_wrap .txt_box h3::after {
      display: none; }

@media screen and (max-width: 460px) {
  input, textarea {
    max-width: 300px !important; } }
/*  BASE
-------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  color: var(--main-black);
  background-color: var(--col-lancdezinc);
  font-family: var(--font-gothic);
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  line-height: 1.7;
  letter-spacing: .1rem;
  font-weight: 500;
  height: 100%; }

section, article {
  display: block; }

article {
  color: var(--main-black);
  background-color: var(--col-lancdezinc); }

section {
  padding: 5%;
  display: flex;
  flex-flow: column;
  align-items: center; }
  @media screen and (max-width: 480px) {
    section {
      /*padding: 2%;*/ } }

img {
  vertical-align: top; }

a img {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  transition: 0.2s linear; }
a:hover img {
  filter: brightness(120%); }

li {
  list-style-type: none; }

a {
  color: var(--col-right-blue);
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  transition: 0.2s linear; }
  a:hover {
    color: var(--col-right-blue-hover);
    text-decoration: none; }

table {
  border-collapse: collapse; }
  table td {
    border-collapse: collapse; }

placeholder {
  color: #D8D8D8; }

@media screen and (max-width: 960px) {
  body {
    font-size: 16px; }
    body.fixed {
      overflow: hidden; }

  img {
    /* max-width: 100% !important; */
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto; }

  .no_sp {
    display: none; } }
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
    line-height: 1.6; } }
/*  GENERAL ELEMENTS
-------------------------------------------*/
/*
flex
-------------------------------------------*/
.flex-ctr {
  display: flex; }
  .flex-ctr.gap1 {
    gap: 1rem; }
  .flex-ctr.gap2 {
    gap: 2rem; }
  .flex-ctr.gap3 {
    gap: 3rem; }
    @media screen and (max-width: 800px) {
      .flex-ctr.gap3 {
        gap: 2rem; } }
    @media screen and (max-width: 480px) {
      .flex-ctr.gap3 {
        gap: 1rem; } }
  .flex-ctr.gap4 {
    gap: 4rem; }
    @media screen and (max-width: 480px) {
      .flex-ctr.gap4 {
        gap: 2rem; } }
  .flex-ctr.center {
    align-items: center;
    justify-content: center; }
  .flex-ctr.end {
    align-items: end;
    justify-content: center; }
  .flex-ctr.wrap {
    flex-wrap: wrap; }

.img-flex-ctr {
  display: flex;
  padding: 0 1rem;
  width: 100%;
  gap: 1rem; }
  @media screen and (max-width: 768px) {
    .img-flex-ctr {
      flex-flow: column; } }
  .img-flex-ctr li {
    max-width: 500px;
    width: 100%;
    margin: 0 auto; }
    .img-flex-ctr li img {
      width: 100%; }

.column3 {
  align-items: flex-start !important;
  gap: 1rem; }
  .column3 .check-list {
    padding: 0 !important;
    margin: 0 !important;
    width: calc(100% / 3); }
  @media screen and (max-width: 600px) {
    .column3 {
      flex-flow: column;
      align-items: center !important;
      gap: 0; }
      .column3 .check-list {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 280px;
        width: 100%; } }

/*
width
-------------------------------------------*/
.w50per {
  width: 50% !important; }

.w80per {
  width: 80% !important; }

.w100per {
  width: 100% !important; }

.w50per {
  width: 50% !important; }

.w800 {
  max-width: 800px !important;
  width: calc(100% - 1rem); }

.w1080 {
  max-width: 1080px !important;
  width: calc(100% - 1rem); }

/*
height
-------------------------------------------*/
.hmax300 {
  max-height: 300px !important; }

@media screen and (max-width: 768px) {
  .hmax300sp {
    height: 300px !important; } }

.hmax400 {
  max-height: 400px !important; }

.hmax450 {
  max-height: 450px !important; }

.hmax500 {
  max-height: 500px !important; }

/*
margin
-------------------------------------------*/
.mt-8rem {
  margin-top: -8rem; }
  @media screen and (max-width: 768px) {
    .mt-8rem {
      margin-top: 0; } }

.mnone {
  margin: 0 !important; }

.mtbnone {
  margin-bottom: 0 !important;
  margin-top: 0 !important; }

.mb1rem {
  margin-bottom: 1rem !important; }

.mb2rem {
  margin-bottom: 2rem !important; }
  @media screen and (max-width: 480px) {
    .mb2rem {
      margin-bottom: 1rem !important; } }

.mb4rem {
  margin-bottom: 4rem !important; }
  @media screen and (max-width: 480px) {
    .mb4rem {
      margin-bottom: 2rem !important; } }

.mrl2rem {
  margin-right: 2rem !important;
  margin-left: 2rem !important; }

.pnone {
  padding: 0 !important; }

.p2rem {
  padding: 2rem !important; }
  @media screen and (max-width: 480px) {
    .p2rem {
      padding: 1rem !important; } }

.p4rem {
  padding: 4rem !important; }
  @media screen and (max-width: 768px) {
    .p4rem {
      padding: 2rem !important; } }
  @media screen and (max-width: 480px) {
    .p4rem {
      padding: 1rem !important; } }

.prl2rem {
  padding: 0 2rem !important; }
  @media screen and (max-width: 480px) {
    .prl2rem {
      padding: 0 1rem !important; } }

@media screen and (max-width: 896px) {
  .br-mw896 {
    display: none; } }

@media screen and (min-width: 481px) {
  .br-mw480 {
    display: none; } }

img.maru-bt-img {
  border-radius: 1.5rem 0; }

/*
font
-------------------------------------------*/
.bold {
  font-weight: 600; }

.fs110per {
  font-size: 110%; }

.fs120per {
  font-size: 120%; }

.fs130per {
  font-size: 130%; }

.fs140per {
  font-size: 140%; }

.comment p {
  margin-bottom: 1rem; }
  .comment p:last-child {
    margin-bottom: 0; }

.txt-center {
  text-align: center; }

@media screen and (max-width: 768px) {
  .txt-left-sp {
    text-align: left; } }

.f-mincho {
  font-family: var(--font-mincho); }

/*
images
-------------------------------------------*/
.cover {
  object-fit: cover !important; }
  @media screen and (max-width: 768px) {
    .cover {
      width: 100% !important; } }

/*
effect
-------------------------------------------*/
.effect {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "alpha( opacity=0 )";
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -webkit-transition: 1.0s ease-out;
  -moz-transition: 1.0s ease-out;
  transition: 1.0s ease-out; }
  .effect.d_02 {
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s; }
  .effect.d_04 {
    transition-delay: 0.4s;
    -webkit-transition-delay: 0.4s; }
  .effect.d_06 {
    transition-delay: 0.6s;
    -webkit-transition-delay: 0.6s; }
  .effect.d_08 {
    transition-delay: 0.8s;
    -webkit-transition-delay: 0.8s; }
  .effect.start {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha( opacity=100 )";
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px); }

@media screen and (max-width: 960px) {
  /*
  MENU BTN
  -------------------------------------------*/
  .menu_btn {
    display: block;
    height: 40px;
    width: 40px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    z-index: 5000;
    top: 5px;
    right: 5px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    cursor: pointer; }
    .menu_btn:hover {
      cursor: pointer; }
    .menu_btn span {
      width: 28px;
      height: 2px;
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      margin-left: -14px;
      background-color: #1BD;
      transition: all 0.3s;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg); }
      .menu_btn span.top {
        transform: translateY(-8px);
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px); }
      .menu_btn span.bottom {
        transform: translateY(8px);
        -webkit-transform: translateY(8px);
        -moz-transform: translateY(8px); }
    .menu_btn:hover span.top {
      transform: translateY(-10px);
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px); }
    .menu_btn:hover span.bottom {
      transform: translateY(10px);
      -webkit-transform: translateY(10px);
      -moz-transform: translateY(10px); }
    .menu_btn.opened span {
      background-color: #7BC; }
      .menu_btn.opened span.middle {
        background: rgba(255, 255, 255, 0);
        transform: translateX(30px);
        -webkit-transform: translateX(30px);
        -moz-transform: translateX(30px); }
      .menu_btn.opened span.top {
        transform: rotate(-45deg) translateY(0px);
        -webkit-transform: rotate(-45deg) translateY(0px);
        -moz-transform: rotate(-45deg) translateY(0px); }
      .menu_btn.opened span.bottom {
        transform: rotate(45deg) translateY(0px);
        -webkit-transform: rotate(45deg) translateY(0px);
        -moz-transform: rotate(45deg) translateY(0px); }

  /*
  グローバルナビ
  -------------------------------------------*/
  #g_navi {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    overflow: auto;
    z-index: 3000;
    background-color: var(--col-lancdezinc);
    background-color: rgba(242, 246, 247, 0.85);
    display: none;
    padding: 10%; }
    #g_navi ul {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: column;
      flex-flow: column;
      -webkit-justify-content: center;
      justify-content: center; }
      #g_navi ul li a {
        color: var(--main-black);
        text-decoration: none;
        display: block;
        padding: 10px;
        line-height: 22px;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 1px; }
        #g_navi ul li a:hover {
          color: #1BD; }
      #g_navi ul li.contact a {
        text-align: center;
        background-color: #1BD;
        color: white;
        width: 90%; }
        #g_navi ul li.contact a:hover {
          background-color: white;
          color: #1BD; }

  /*
  メニューシャドウ
  -------------------------------------------*/
  .bg_bl {
    background-color: white;
    height: 100%;
    width: 100%;
    opacity: 0.80;
    filter: alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
    display: block;
    position: fixed;
    z-index: 2000; } }
/*  GNAV
-------------------------------------------*/
header.sub-header h1 a img {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%); }

header.fixed.sub-header h1 a img {
  filter: none; }

@media screen and (max-width: 960px) {
  #g_navi .g_nav {
    display: flex;
    flex-flow: column; }
  #g_navi ul.header-info {
    order: 2; }
    #g_navi ul.header-info li a {
      color: white;
      background: var(--main-black);
      margin-bottom: 1px; }
      #g_navi ul.header-info li a i {
        margin: 0 .5rem; }
  #g_navi ul.header-nav {
    order: 1;
    margin-bottom: 2rem; } }
@media screen and (min-width: 961px) {
  #g_navi {
    position: absolute;
    right: 1.5rem;
    top: .5rem;
    width: auto;
    margin-left: 200px;
    display: block !important;
    z-index: 1000; }
    #g_navi ul.header-info,
    #g_navi ul.header-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1rem; }
    #g_navi ul.header-info {
      text-align: right; }
      #g_navi ul.header-info li {
        font-weight: bold; }
        #g_navi ul.header-info li a {
          /* color: var(--main-black); */
          text-decoration: none; }
        #g_navi ul.header-info li.phone small {
          display: block;
          padding: 0.1rem 0 0.1rem;
          color: white;
          margin-bottom: 0.2rem;
          text-align: center;
          font-size: 12px;
          border: 1px solid white; }
        #g_navi ul.header-info li.phone a {
          font-size: 24px; }
          #g_navi ul.header-info li.phone a i {
            font-size: 18px;
            margin-right: .2rem; }
        #g_navi ul.header-info li.inq-btn a {
          color: var(--col-right-blue);
          background: white;
          border-radius: 5px;
          padding: 0.5rem 1.5rem;
          text-align: center; }
          #g_navi ul.header-info li.inq-btn a i {
            margin-right: .5rem; }
          #g_navi ul.header-info li.inq-btn a:hover {
            color: white;
            background: var(--col-right-blue); }
    #g_navi ul.header-nav li {
      display: inline; }
      #g_navi ul.header-nav li a {
        width: auto;
        padding: .5rem .6rem;
        position: relative;
        display: block;
        /* color: var(--main-black); */
        text-align: center;
        letter-spacing: 1px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none; }
        #g_navi ul.header-nav li a::before {
          display: block;
          height: 2px;
          position: absolute;
          top: 2px;
          width: 70%;
          left: 15%;
          background-color: rgba(17, 187, 221, 0);
          content: '';
          -webkit-transition: 0.2s linear;
          -moz-transition: 0.2s linear;
          transition: 0.2s linear; }
        #g_navi ul.header-nav li a:hover {
          color: white; }
          #g_navi ul.header-nav li a:hover::before {
            background-color: white;
            top: .3rem;
            width: 100%;
            left: 0%; }
    #g_navi.txt_w li a {
      color: white; }
    #g_navi.txt_b li a {
      color: var(--main-black); }

  header.fixed #g_navi.txt_w li.phone a,
  header.fixed #g_navi.txt_b li.phone a {
    color: var(--col-right-blue); }
  header.fixed #g_navi.txt_w li.inq-btn a,
  header.fixed #g_navi.txt_b li.inq-btn a {
    color: white;
    background: var(--col-right-blue); }
    header.fixed #g_navi.txt_w li.inq-btn a:hover,
    header.fixed #g_navi.txt_b li.inq-btn a:hover {
      color: var(--col-right-blue);
      box-shadow: 0 0 0 1px var(--col-right-blue);
      background: white; }
  header.fixed #g_navi.txt_w li a,
  header.fixed #g_navi.txt_b li a {
    color: var(--main-black); }
    header.fixed #g_navi.txt_w li a:hover,
    header.fixed #g_navi.txt_b li a:hover {
      color: var(--col-right-blue); }
      header.fixed #g_navi.txt_w li a:hover::before,
      header.fixed #g_navi.txt_b li a:hover::before {
        background-color: var(--col-right-blue);
        top: .3rem;
        width: 100%;
        left: 0%; }

  #g_navi li.contact a {
    background-color: #1BD;
    color: white !important;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px; }
    #g_navi li.contact a:hover {
      background-color: white;
      color: #1BD !important; }
    #g_navi li.contact a::before {
      display: none; }

  /*
  #g_navi li.phone{
          text-align: right;
          color: var(--main-black);
          font-size: 22px;
          padding: 10px;
          line-height: 30px;
          display: block;
          position: relative;
          letter-spacing: 1px;
          font-weight: bold;
  }*/
  #index_top {
    min-height: 850px; } }
@media screen and (min-width: 1200px) {
  header #g_navi {
    right: 50%;
    margin-right: -590px; } }
/*  HEADER
-------------------------------------------*/
header {
  width: 100%;
  height: 90px;
  position: fixed;
  z-index: 300;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease; }
  header.sub-header {
    background: rgba(21, 57, 74, 0.4); }
  @media screen and (max-width: 960px) {
    header {
      height: 52px; } }
  header.fixed {
    /* background-color: var(--main-black); */
    /* background-color: rgba(17,187,221, 0.7); */
    background-color: rgba(255, 255, 255, 0.9); }
  header h1 a img {
    position: absolute;
    display: block;
    top: 1.5rem;
    left: 1rem;
    height: 44px; }
    @media screen and (max-width: 960px) {
      header h1 a img {
        top: 10px;
        left: 10px;
        height: 36px; } }
  @media screen and (min-width: 1200px) {
    header h1 a img {
      left: 50%;
      margin-left: -590px; } }

#g_navi ul li a.ac_menu {
  cursor: pointer;
  overflow: hidden; }

/*  HEADING
-------------------------------------------*/
h2.heading-h2 {
  font-size: 26px;
  line-height: 1.8;
  font-weight: normal;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  color: var(--main-black);
  text-align: center;
  margin-bottom: 3%; }
  h2.heading-h2 i {
    padding: 10px;
    color: var(--col-right-blue-hover); }
  h2.heading-h2 span {
    font-size: 20px;
    font-family: var(--font-en);
    color: var(--col-right-blue);
    letter-spacing: 0.1em;
    display: block; }

@media screen and (max-width: 480px) {
  h2.heading-h2 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6; }
    h2.heading-h2 span {
      font-size: 16px; } }
h3.heading-h3 {
  font-family: var(--font-heading);
  font-weight: normal;
  color: var(--col-right-blue);
  position: relative;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: 24px;
  line-height: 30px;
  text-align: center; }
  h3.heading-h3:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 5px;
    background: var(--col-right-blue); }

@media screen and (max-width: 480px) {
  h3.heading-h3 {
    font-size: 20px;
    line-height: 1.4;
    padding: 1.5rem .5rem; } }
/*
h3.heading-h3 {
    color: var(--col-right-blue);
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
    position: relative;
    margin-top: 30px;
    padding-top: 15px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 44px;
    font-weight: normal;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    &::after {
        display: block;
        width: 3px;
        height: 20px;
        position: absolute;
        top: 20px;
        left: 20px;
        content: '';
        background-color: var(--col-right-blue);
    }
    span {
        font-size: 15px;
        color: #555;
        font-family: var(--font-gothic);
        padding-left: 15px;
    }
} */
h4.heading-h4 {
  color: var(--col-right-blue);
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding: .6rem 1rem .5rem;
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: var(--col-right-blue);
  background: white; }

/*
SNSボタン
-------------------------------------------*/
.h_sns {
  display: none;
  position: fixed;
  padding: 7px 0 5px;
  top: 130px;
  right: 0px;
  background-color: rgba(17, 187, 221, 0.8);
  border-radius: 8px 0px 0px 8px;
  -webkit-border-radius: 8px 0px 0px 8px;
  -moz-border-radius: 8px 0px 0px 8px; }
  .h_sns li {
    padding: 0 .5rem; }
    .h_sns li i {
      margin-right: .5rem; }
    .h_sns li a {
      text-orientation: upright;
      display: block;
      padding: 10px;
      color: white;
      line-height: 30px;
      width: 50px;
      text-align: center;
      text-decoration: none;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px; }
      .h_sns li a:hover {
        background-color: white;
        color: #1BD; }
      .h_sns li a.phone, .h_sns li a.mailform {
        font-weight: 600; }
      .h_sns li a.mailform {
        color: var(--col-right-blue);
        background: white; }
      @media screen and (min-width: 481px) {
        .h_sns li a .sp-block {
          display: none; } }
      @media screen and (max-width: 481px) {
        .h_sns li a .sp-none {
          display: none; } }

@media screen and (max-width: 960px) {
  .h_sns {
    display: block;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    top: auto;
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    /* padding-right: 60px; */
    background-color: rgba(17, 187, 221, 0.8); }
    .h_sns li:nth-child(1) {
      width: 50%; }
    .h_sns li:nth-child(2) {
      width: 50%; }
    .h_sns li a {
      width: 100%;
      text-align: center;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; } }
/* PANKUZU
-----------------------------------------------------------------------------------------------*/
.pankuzu {
  background-color: var(--col-right-blue);
  font-size: 14px;
  line-height: 30px;
  color: white;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px; }
  .pankuzu ul {
    width: 96%;
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto; }
  .pankuzu li {
    display: inline-block; }
    .pankuzu li a {
      text-decoration: none;
      color: white; }
      .pankuzu li a::after {
        content: ">";
        padding-left: 10px;
        padding-right: 10px; }
      .pankuzu li a:hover {
        color: white; }
    .pankuzu li i {
      padding-right: 5px; }

.price-tbl-ctr {
  /* padding: 0 6% 6%; */ }
  .price-tbl-ctr i {
    margin-right: .5rem; }
  .price-tbl-ctr table {
    font-size: 15px;
    width: 100%;
    /* max-width: 600px;
    min-width: 320px;*/
    margin: 0 auto;
    background: white;
    border: 7px solid var(--main-color); }
    .price-tbl-ctr table caption {
      text-align: left;
      margin-bottom: .5rem; }
    .price-tbl-ctr table tr:hover {
      background: var(--col-focus-yellow); }
    .price-tbl-ctr table tr th, .price-tbl-ctr table tr td {
      text-align: left;
      padding: .5rem 1rem;
      border: 1px solid var(--col-lancdezinc-hover); }
    .price-tbl-ctr table tr th {
      font-weight: normal;
      background: var(--col-lancdezinc); }
    .price-tbl-ctr table tr td.price {
      text-align: center;
      width: 140px;
      font-weight: 600; }

@media screen and (max-width: 640px) {
  .price-tbl-ctr table {
    font-size: 14px; }
    .price-tbl-ctr table tr th, .price-tbl-ctr table tr td {
      border-bottom: 0;
      display: block;
      width: 100%; }
    .price-tbl-ctr table tr th {
      text-align: center;
      background: var(--col-lancdezinc); }
    .price-tbl-ctr table tr td.price {
      text-align: right;
      width: 100%; }
    .price-tbl-ctr table tr td:last-child {
      border-bottom: 1px solid var(--col-lancdezinc-hover); } }
/*  BTN
-------------------------------------------*/
.btn_cnt a, .btn_cnt input {
  font-size: 16px;
  color: white;
  text-align: center;
  text-decoration: none;
  display: block;
  min-width: 240px;
  width: fit-content;
  background-color: var(--col-right-blue);
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  line-height: 22px;
  padding: 1rem 2rem;
  clear: both;
  font-weight: bold;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px; }
  .btn_cnt a i, .btn_cnt input i {
    padding-right: 10px; }
  .btn_cnt a:hover, .btn_cnt input:hover {
    color: var(--col-right-blue);
    background-color: white; }
.btn_cnt.rt a {
  float: right;
  max-width: 220px;
  margin-right: 10px; }

/*
list
-------------------------------------------*/
ul.subject-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  gap: .5rem; }
  ul.subject-list li {
    border: 1px solid var(--col-right-blue);
    background: white;
    padding: .2rem .8rem; }

/* check */
ul.check-list {
  margin: 1rem;
  padding: 0.5rem 1rem; }
  ul.check-list li {
    display: flex;
    align-items: center;
    line-height: 1.4;
    margin-bottom: 2px;
    padding: .2rem .5rem;
    background: white; }
    ul.check-list li::before {
      color: var(--col-right-blue);
      font-size: 20px;
      margin-right: .5rem;
      font-family: fontAwesome;
      content: "\f14a";
      font-weight: 500; }

ul.check-list2 {
  gap: 1px 1rem; }
  ul.check-list2 li {
    line-height: 1.2;
    margin-bottom: 0.4rem; }
    ul.check-list2 li::before {
      color: var(--col-right-blue);
      margin-right: .2rem;
      font-family: fontAwesome;
      content: "\f14a";
      font-weight: 500; }

/* 113 icon-list */
ul.icon-list {
  font-size: 90%;
  padding: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .3rem; }
  ul.icon-list li {
    color: white;
    background-color: var(--col-right-blue);
    border-radius: 1rem;
    padding: 0 .5rem; }
    ul.icon-list li::before {
      color: white;
      margin-right: .2rem;
      font-family: fontAwesome;
      content: "\f058";
      font-weight: 500; }

dl.dl-list {
  width: 100%; }
  dl.dl-list div {
    margin-bottom: 1rem; }
    dl.dl-list div:last-child {
      /* margin-bottom: 0; */ }
    dl.dl-list div dt {
      font-size: 18px;
      background: #e3f4f9;
      padding: .3rem 1rem;
      margin: 0 1rem;
      color: var(--col-right-blue);
      border-bottom: 1px dashed var(--col-right-blue); }
      dl.dl-list div dt::before {
        color: var(--col-right-blue);
        font-size: 20px;
        margin-right: .5rem;
        font-family: fontAwesome;
        content: "\f0a4";
        font-weight: 500; }
    dl.dl-list div dd {
      padding: 3%; }

/* num */
ul.num-list {
  margin-left: 2rem; }
  ul.num-list li {
    line-height: 1.4;
    margin-bottom: 0.5rem;
    list-style: decimal; }
    ul.num-list li:last-child {
      margin-bottom: 0; }

/* survey item */
.survey-item-list div {
  margin-bottom: 5%; }
  .survey-item-list div dt {
    padding: .5rem 1rem;
    background: var(--col-lancdezinc-hover);
    font-weight: 600; }
  .survey-item-list div dd {
    padding: 1rem; }

/* img-list */
ul.img-list, ul.img-list2 {
  display: flex;
  align-items: center;
  justify-content: center; }

ul.img-list li img, ul.img-list2 li img, ul.img-list3 li img {
  width: 100%; }

ul.img-list li, ul.img-list3 li {
  text-align: center;
  width: 100%; }
  ul.img-list li span, ul.img-list3 li span {
    display: block;
    padding: .5rem; }

ul.img-list {
  padding: 1rem 1rem 0;
  gap: 1rem 5%; }

ul.img-list2 {
  width: 100%;
  gap: 1rem 5%; }
  ul.img-list2 li {
    max-width: 33%; }

@media screen and (max-width: 600px) {
  ul.img-list2 {
    flex-wrap: wrap; }
    ul.img-list2 li {
      max-width: 47%; } }
ul.img-list3 {
  display: flex;
  gap: 1rem; }
  ul.img-list3 ul {
    margin: 0 !important; }

@media screen and (max-width: 800px) {
  ul.img-list3 {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; }
    ul.img-list3 li {
      max-width: 80%;
      max-width: 500px;
      margin: 0 auto 2px; } }
/* FOOTER
-------------------------------------------*/
footer {
  background-color: #DCE7E9;
  color: #345;
  clear: both;
  width: 100%;
  display: block;
  padding-top: 20px;
  border-bottom-width: 20px;
  border-bottom-style: solid;
  border-bottom-color: #D2E1E3; }
  footer .footer-info {
    font-size: 80%; }
    @media screen and (max-width: 480px) {
      footer .footer-info {
        font-size: 90%; } }
    footer .footer-info div {
      margin-bottom: 1rem !important; }
      footer .footer-info div dt {
        font-weight: 600 !important; }
  footer .cont_wrap {
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    footer .cont_wrap .f_box {
      padding: 1rem; }
      footer .cont_wrap .f_box.lg {
        width: 50%; }
      footer .cont_wrap .f_box img {
        max-width: 200px;
        margin-bottom: 1rem; }
    footer .cont_wrap p {
      font-size: 14px; }
    footer .cont_wrap ul {
      /* padding: 20px; */ }
      footer .cont_wrap ul li a {
        display: block;
        text-decoration: none;
        font-size: 14px;
        color: #555; }
      footer .cont_wrap ul li.contact a {
        text-align: center;
        color: white;
        background-color: var(--col-right-blue);
        font-size: 14px;
        padding: .5rem;
        border-radius: 5px;
        margin-top: 5px; }
        footer .cont_wrap ul li.contact a:hover {
          color: var(--col-right-blue); }
        footer .cont_wrap ul li.contact a::before {
          display: none; }
      footer .cont_wrap ul li a::before {
        content: "・ ";
        color: #999; }
      footer .cont_wrap ul li a:hover {
        color: var(--main-black);
        background-color: white; }

address {
  clear: both;
  font-size: 14px;
  font-style: normal;
  padding: 20px;
  text-align: center;
  letter-spacing: 1px; }

@media screen and (max-width: 960px) {
  footer {
    border-bottom-width: 60px; }
    footer .cont_wrap .f_box {
      width: 50%;
      text-align: center; }
      footer .cont_wrap .f_box ul {
        text-align: left; }
        footer .cont_wrap .f_box ul li {
          border-bottom: 1px dashed white; }
          footer .cont_wrap .f_box ul li:last-child {
            border-bottom: none; }
          footer .cont_wrap .f_box ul li a {
            padding: .5rem; }
      footer .cont_wrap .f_box.lg {
        width: 100%; } }
@media screen and (max-width: 480px) {
  footer .cont_wrap .f_box {
    width: 100%;
    padding: 0; }
    footer .cont_wrap .f_box ul li {
      border-bottom: 1px dashed white !important; }
  footer .contact {
    margin: 1rem; }
  footer .footer-info {
    padding: 0 2rem; } }
/* index */
/*  HERO
-------------------------------------------*/
.hero-visual-ctr {
  transform: skewY(-7deg);
  overflow: hidden;
  z-index: -1;
  background: linear-gradient(180deg, white 0%, white 50%, var(--col-right-blue) 50%, var(--col-right-blue) 100%); }
  .hero-visual-ctr .hero-visual {
    height: 94vh;
    min-height: 800px;
    /* width: 100%; */
    position: relative;
    overflow: hidden;
    margin: 0 1rem 0;
    transform: skewY(7deg);
    /* 正面に */ }
    @media screen and (max-width: 480px) {
      .hero-visual-ctr .hero-visual {
        height: 90vh;
        min-height: initial;
        mminax-height: auto; } }
    .hero-visual-ctr .hero-visual h2 {
      /* image */
      position: absolute;
      z-index: 10;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      /* text */
      font-size: 50px;
      letter-spacing: 1px;
      font-weight: normal;
      line-height: 1.5;
      margin-bottom: 20px;
      text-align: center;
      width: 90%; }
      .hero-visual-ctr .hero-visual h2 img {
        max-width: 905px;
        width: 100%; }
    .hero-visual-ctr .hero-visual .hero-visual-img {
      height: 100%; }
      .hero-visual-ctr .hero-visual .hero-visual-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: animationZoom 10s ease-in-out forwards; }
@keyframes animationZoom {
  100% {
    transform: scale(1.2); } }
/* contents */
/*
SUB-HEADER
-------------------------------------------*/
#sub_top {
  height: 340px;
  width: 100%;
  padding-top: 5rem;
  /* background */
  background-repeat: no-repeat;
  background-color: var(--col-right-blue);
  background-size: cover;
  background-position: center center;
  /* background-attachment: fixed; */
  /* flex */
  display: flex;
  justify-content: center;
  flex-flow: column;
  /* 消防設備工事 */
  /* 消防用設備点検 */
  /* 防火対象物 */
  /* 防災管理点検 */
  /* 自家発電設備点検・負荷試験 */
  /* 特殊建築物定期調査 */
  /* 建築設備・検査 */
  /* 防火設備・定期検査 */ }
  @media screen and (max-width: 960px) {
    #sub_top {
      padding-top: 2rem; } }
  @media screen and (max-width: 480px) {
    #sub_top {
      padding-top: 3rem;
      height: 150px; } }
  #sub_top.company {
    background-image: url("../img/company-head.webp"); }
  #sub_top.cause {
    background-image: url("../img/cause-head.webp"); }
  #sub_top.contact {
    background-image: url("../img/contact-head.webp"); }
  #sub_top.works {
    background-image: url("../img/works-head.webp"); }
  #sub_top.construction {
    background-image: url("../img/construction-head.webp"); }
  #sub_top.insp-firefighting {
    background-image: url("../img/insp-firefighting-head.webp"); }
  #sub_top.insp-fire-prevention-object {
    background-image: url("../img/insp-fire-prevention-object-head.webp"); }
  #sub_top.insp-disaster-management {
    background-image: url("../img/insp-disaster-management-head.webp"); }
  #sub_top.insp-private-power {
    background-image: url("../img/insp-private-power-head.webp"); }
  #sub_top.special-building-survey {
    background-image: url("../img/special-building-survey-head.webp"); }
  #sub_top.insp-building-equipment {
    background-image: url("../img/insp-building-equipment-head.webp"); }
  #sub_top.insp-fire-protection {
    background-image: url("../img/insp-fire-protection-head.webp"); }
  #sub_top h2 {
    line-height: 1.4;
    background-size: 100%;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 34px;
    letter-spacing: 0.1em; }
    @media screen and (max-width: 768px) {
      #sub_top h2 {
        font-size: 160%; } }

@media screen and (min-width: 960px) {
  header {
    height: 90px; }

  .menu_btn, .btn_close {
    display: none; }

  .no_pc {
    display: none !important; } }
@media screen and (max-width: 960px) {
  header {
    height: 52px; }
    header .h_menu, header #info {
      display: none; } }
/* SUB CONTENTS
-----------------------------------------------------------------------------------------------*/
#sub-contents section:nth-child(even) {
  background: white; }
@media screen and (max-width: 768px) {
  #sub-contents section.contents-img-ctr .flex-ctr {
    flex-flow: column; }
  #sub-contents section.contents-img-ctr .comment {
    order: 2; }
  #sub-contents section.contents-img-ctr img {
    order: 1;
    width: 100% !important;
    max-height: 200px;
    object-fit: cover;
    object-position: bottom center; } }

/*  ABOUT (index)
-------------------------------------------*/
#about-us {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAABxJREFUGFdj/P///39GRkZGBiiAMzAEYCoxVAAAZN0IBXg9KUwAAAAASUVORK5CYII="), url("../img/obi_001.jpg");
  background-repeat: repeat;
  text-align: center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center bottom;
  padding-top: 10%;
  padding-right: 1rem;
  padding-bottom: 10%;
  padding-left: 1rem;
  /*margin-top: 50px;
  margin-bottom: 50px;*/ }
  #about-us p {
    line-height: 2.4;
    width: calc(100% / - 1rem); }

@media screen and (max-width: 640px) {
  #about-us {
    /* background-image: url(../img/obi_001_sp.jpg);*/
    padding-left: 10px;
    padding-right: 10px; }
    #about-us p {
      text-align: left;
      margin-left: 15px;
      margin-right: 15px;
      font-size: 14px; } }
/*  COMPANY
-------------------------------------------*/
/* corporate-philosophy */
.corporate-philosophy {
  font-size: 140%;
  padding: 4rem 1rem;
  font-family: var(--font-mincho); }
  @media screen and (max-width: 600px) {
    .corporate-philosophy br {
      display: none; } }

/*  greeting */
.greeting-ctr .greeting-inner {
  border-radius: 1rem;
  background: linear-gradient(110deg, var(--col-lancdezinc) 0%, var(--col-lancdezinc) 55%, var(--col-mint) 55%, var(--col-right-blue) 100%); }
  .greeting-ctr .greeting-inner .comment {
    padding: 2rem 0 2rem 4rem; }
@media screen and (max-width: 896px) {
  .greeting-ctr .greeting-inner {
    flex-flow: column;
    background: linear-gradient(165deg, var(--col-lancdezinc) 0%, var(--col-lancdezinc) 55%, var(--col-mint) 55%, var(--col-right-blue) 100%);
    margin: 0 auto 1rem; }
    .greeting-ctr .greeting-inner .comment {
      padding: 2rem 2rem 0; }
    .greeting-ctr .greeting-inner img {
      width: 80% !important;
      max-width: 420px; } }

/*  company */
table.company-tbl {
  margin: 0 auto;
  border: 1px solid var(--col-lancdezinc-hover); }
  table.company-tbl caption {
    background-color: #E5E5E5;
    color: var(--main-black);
    letter-spacing: 1px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1px solid white;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 2px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 2px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 2px 0px; }
  table.company-tbl th, table.company-tbl td {
    padding: 1rem;
    border-bottom: 1px solid var(--col-lancdezinc-hover); }
  table.company-tbl th {
    width: 20%;
    white-space: nowrap;
    font-weight: normal;
    letter-spacing: 1px;
    background: var(--col-lancdezinc); }
    table.company-tbl th span {
      font-size: 12px;
      color: #CCC; }
  table.company-tbl td {
    background-color: white; }
    table.company-tbl td div {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 1rem; }
      table.company-tbl td div:last-child {
        margin-bottom: 0; }
      table.company-tbl td div dt {
        font-size: 90%;
        padding: 0 1rem;
        margin-right: .5rem;
        background: var(--col-lancdezinc);
        border: 1px solid var(--col-lancdezinc-hover); }

.small {
  font-size: smaller;
  color: #666; }

.chui {
  color: #F03600; }

@media screen and (max-width: 460px) {
  table.company-tbl th, table.company-tbl td {
    width: 100% !important;
    display: block; }
  table.company-tbl th {
    /* background-color: #F6F6F6; */
    padding: 0.5rem; } }
/*  INFORMATION
-------------------------------------------*/
.information-price-ctr {
  background-color: #e3f4f9 !important; }
  .information-price-ctr h3.heading-h3 span {
    line-height: 2;
    padding: 0 .5rem; }
    @media screen and (max-width: 640px) {
      .information-price-ctr h3.heading-h3 span {
        display: block; } }
  .information-price-ctr .box_in a.tel {
    font-size: 24px;
    text-decoration: none; }
    .information-price-ctr .box_in a.tel strong {
      padding-left: 10px;
      font-size: 120%; }

.information {
  width: 100%;
  height: auto;
  background-image: url(../img/obi_002.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 50%;
  position: relative; }
  .information .box_in {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: column;
    flex-flow: column;
    position: absolute;
    color: var(--main-black);
    background-color: rgba(255, 255, 255, 0.85); }
  .information h2 {
    font-size: 36px; }
  .information p {
    line-height: 2;
    font-weight: bold; }

@media screen and (max-width: 640px) {
  .information {
    background-image: url(../img/obi_002_sp.jpg);
    padding: 0 0 100%; } }
.information .box_in p a.tel {
  font-size: 24px;
  color: var(--col-right-blue);
  text-decoration: none;
  line-height: 1.2; }
  .information .box_in p a.tel strong {
    padding-left: 10px;
    font-size: 150%; }

/* NEWS
---------------------------------------------------------------------------- */
#news {
  font-size: 14px;
  max-width: 1080px;
  width: 100%; }
  #news #information div:nth-child(odd) {
    background: white; }
  #news #information div dl {
    display: flex; }
    #news #information div dl dt {
      padding: 0 1rem; }
    #news #information div dl dt, #news #information div dl dd {
      padding: .5rem 1rem; }

@media screen and (max-width: 480px) {
  #news div dl {
    flex-flow: column;
    line-height: 1.6;
    padding: .5rem .5rem .2rem; }
    #news div dl dt {
      font-size: 80%; }
    #news div dl dt, #news div dl dd {
      width: 100%;
      padding: 0; } }
/*  SERVICES
-------------------------------------------*/
#services {
  padding: 2% 0 2%; }

.services-ctr {
  width: 100%; }
  .services-ctr ul {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 2rem);
    max-width: 1200px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: stretch;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 2rem;
    /*
    @media screen and (max-width: 820px) {
        width: 100%;
        gap: 1rem 0;
    }*/ }
    @media screen and (max-width: 480px) {
      .services-ctr ul {
        gap: .5rem; } }
    .services-ctr ul li {
      width: calc(100% / 3 - 2rem);
      position: relative; }
      .services-ctr ul li.full {
        width: calc(100% - 2rem); }
        @media screen and (max-width: 480px) {
          .services-ctr ul li.full {
            width: calc(100% - .5rem); } }
        .services-ctr ul li.full a {
          display: flex;
          align-items: center;
          gap: 1rem; }
          .services-ctr ul li.full a img {
            width: 50%;
            height: 100%;
            object-fit: cover; }
      .services-ctr ul li.half {
        width: calc(100% / 2 - 2rem);
        /*
        @media screen and (max-width: 820px) {
            width: 100%;
        }*/ }
        @media screen and (max-width: 820px) {
          .services-ctr ul li.half {
            width: calc(100% / 2 - 2rem); } }
        @media screen and (max-width: 480px) {
          .services-ctr ul li.half {
            width: calc(100% / 2 - .5rem); } }
      @media screen and (max-width: 820px) {
        .services-ctr ul li {
          width: calc(100% / 2 - 2rem); } }
      @media screen and (max-width: 480px) {
        .services-ctr ul li {
          width: calc(100% / 2 - .5rem);
        /*
        a {
            display: flex !important;
            align-items: center;
            gap: 1rem;
            img {
                width: 50% !important;
                height: 100%;
                object-fit: cover;
                @media screen and (max-width: 600px) {
                    width: 30%!important;
                }
            }
            
            @media screen and (max-width: 480px) {
                flex-flow: column;
                height: auto!important;
                
                img {                            
                    width: 100% !important;
                }
            }

        }*/ } }
      .services-ctr ul li a {
        display: block;
        height: 100%;
        border-radius: 0 1rem;
        overflow: hidden;
        position: relative;
        -webkit-transition: 0.2s linear;
        -moz-transition: 0.2s linear;
        transition: 0.2s linear;
        background: white;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
        border: 0.6rem solid white;
        text-decoration: none; }
        .services-ctr ul li a img {
          width: auto;
          max-width: 100%;
          z-index: 0; }
        .services-ctr ul li a:hover img {
          -webkit-transform: scale(1.05);
          -moz-transform: scale(1.05);
          -o-transform: scale(1.05);
          -ms-transform: scale(1.05);
          transform: scale(1.05);
          opacity: 1;
          filter: alpha(opacity=100);
          -ms-filter: "alpha( opacity=100 )"; }
        .services-ctr ul li a::before {
          content: "";
          display: block;
          width: 100%;
          height: 100%;
          mix-blend-mode: multiply;
          /* 乗算 */
          /* background-color: rgba(92, 189, 202, 0.2); */
          z-index: 5;
          position: absolute;
          top: 0;
          left: 0;
          -webkit-transition: 0.2s linear;
          -moz-transition: 0.2s linear;
          transition: 0.2s linear; }
        .services-ctr ul li a:hover::before {
          background-color: rgba(17, 187, 221, 0.1); }
        .services-ctr ul li a div {
          color: var(--main-black);
          line-height: 1.5;
          text-align: center;
          display: block;
          text-align: left;
          padding: 1.5rem;
          /*font-weight: bold;*/
          -webkit-transition: 0.2s linear;
          -moz-transition: 0.2s linear;
          transition: 0.2s linear;
          z-index: 10; }
          @media screen and (max-width: 480px) {
            .services-ctr ul li a div {
              font-size: 14px;
              line-height: 1.6;
              padding: 1rem 0.5rem 2.5rem; } }
          .services-ctr ul li a div span {
            display: block; }
          .services-ctr ul li a div::after {
            padding: 0rem .8rem;
            font-size: 26px;
            color: white;
            position: absolute;
            right: 0;
            bottom: 0;
            font-family: fontAwesome;
            content: '\f105';
            font-weight: 500;
            background: var(--col-right-blue); }
          .services-ctr ul li a div h3, .services-ctr ul li a div h2 {
            font-size: 20px;
            color: var(--col-right-blue);
            position: relative;
            letter-spacing: 0.05rem;
            margin-bottom: 1rem; }
            @media screen and (max-width: 480px) {
              .services-ctr ul li a div h3, .services-ctr ul li a div h2 {
                line-height: 1.4;
                font-size: 16px;
                margin-bottom: .5rem; } }

/*  ADVANTAGE
-------------------------------------------*/
.advantage-ctr,
.cause-ctr {
  /* max-width: 1200px; */
  display: flex;
  flex-flow: column;
  align-items: center; }

.advantage-ctr {
  width: 100%;
  margin: 1rem auto 0;
  padding: 5% 5% 0;
  border-radius: 1rem;
  background: url("../img/advantage-bg.png") no-repeat center bottom var(--col-right-blue); }
  .advantage-ctr h3 {
    margin-bottom: 5%; }
    .advantage-ctr h3 img {
      width: 100%;
      max-width: 400px;
      min-width: 320px; }
  .advantage-ctr img.worry-img,
  .advantage-ctr .worry-img img {
    width: 100%;
    max-width: 626px;
    filter: drop-shadow(0px 0px 5px rgba(11, 147, 174, 0.7));
    transform: translateZ(0); }

.cause-ctr {
  /*width: calc(100% - 2rem);*/
  padding: 2% 0 5%;
  /*margin-top: -14rem;*/ }
  .cause-ctr h3 img {
    width: 100%;
    max-width: 360px;
    min-width: 200px; }
  .cause-ctr .btn_cnt a, .cause-ctr .btn_cnt input {
    border: 1px solid white;
    width: 100%; }
  .cause-ctr .cause {
    padding: 5% 5% 5%;
    display: flex;
    align-items: stretch;
    width: 100%;
    flex-wrap: wrap;
    gap: 4%; }
    .cause-ctr .cause .cause-inner {
      font-weight: 600;
      line-height: 1.7;
      letter-spacing: .5px;
      position: relative;
      padding: 6% 4% 4%;
      text-align: center;
      border-radius: 1rem;
      background: white;
      width: calc(92% / 3); }
      .cause-ctr .cause .cause-inner img {
        position: absolute;
        top: -2rem;
        right: 42%;
        width: 75px; }
  @media screen and (max-width: 820px) and (max-width: 768px) {
    .cause-ctr .cause {
      flex-flow: column;
      gap: .5rem; }
      .cause-ctr .cause .cause-inner {
        font-size: 96%;
        width: 100%;
        padding: 1rem 1rem 1rem 4.5rem;
        text-align: left;
        border: 1px solid var(--col-right-blue); }
        .cause-ctr .cause .cause-inner img {
          width: 50px;
          left: .5rem;
          right: auto;
          top: 0; } }
  @media screen and (max-width: 480px) {
    .cause-ctr .cause .cause-inner {
      font-size: 14px; } }

/* FAQ
-----------------------------------------------------------------------------------------------*/
.accordion .toggle {
  display: none; }
.accordion .Label {
  position: relative;
  font-weight: 600;
  padding: 1rem 3rem;
  display: block;
  background: #e3f4f9;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s; }
  .accordion .Label::after {
    position: absolute;
    top: 1.9rem;
    left: 0;
    content: "Q.";
    font-weight: bold;
    margin-left: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%); }
  .accordion .Label::before {
    top: .4rem;
    font-size: 180%;
    position: absolute;
    font-family: fontAwesome;
    content: '\2b';
    font-weight: 500;
    right: 0.5rem; }
.accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  /*本文*/
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden; }
.accordion .toggle:checked + .Label + .content {
  /*開閉時*/
  height: auto;
  padding: 20px;
  transition: all .3s;
  background: white; }
.accordion .toggle:checked + .Label::before {
  transform: rotate(-45deg) !important; }

@media screen and (max-width: 480px) {
  .accordion {
    font-size: 14px;
    line-height: 1.6; } }
/*  FACILITY
-------------------------------------------*/
/* 対象施設 */
.target-facility-ctr .target-facility-inner {
  font-weight: 600;
  width: 50%;
  border-radius: 1rem;
  background: #e3f4f9; }
  .target-facility-ctr .target-facility-inner h4 {
    color: white;
    text-align: center;
    font-size: 24px;
    line-height: 1.5;
    background-color: var(--col-right-blue);
    box-shadow: 4px 4px 0 var(--col-right-blue-hover);
    padding: 1rem 0;
    margin: 1rem; }
    .target-facility-ctr .target-facility-inner h4 span {
      font-size: 16px;
      display: block; }

@media screen and (max-width: 1024px) {
  .target-facility-ctr.colum2 {
    flex-flow: column;
    align-items: center; }
    .target-facility-ctr.colum2 .target-facility-inner {
      max-width: 600px;
      width: 100%; } }
/* 点検対象の消防設備 */
.facility-list-ctr {
  max-width: 1080px;
  width: 100%;
  gap: 4%; }
  .facility-list-ctr .facility-list-inner {
    width: 48%;
    margin-bottom: 2rem;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px; }

/*  INSP TIMING
-------------------------------------------*/
.insp-timing-ctr .insp-timing-inner {
  /* padding: 5%; */
  margin-bottom: 5%;
  border-radius: 1rem;
  background-color: #e3f4f9; }
  .insp-timing-ctr .insp-timing-inner .images {
    width: 40%; }
    .insp-timing-ctr .insp-timing-inner .images img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      object-position: bottom; }
  .insp-timing-ctr .insp-timing-inner .comment {
    width: 60%;
    padding: 5%; }
  .insp-timing-ctr .insp-timing-inner h4 {
    font-size: 18px;
    color: var(--col-right-blue);
    display: inline-block;
    margin-bottom: 1rem;
    line-height: 1.2; }
    .insp-timing-ctr .insp-timing-inner h4 span {
      color: var(--main-black);
      font-size: 24px;
      margin-right: .5rem; }

/* ipad */
@media screen and (max-width: 768px) {
  .insp-timing-ctr .insp-timing-inner {
    padding: 5% 2%;
    margin-bottom: 5%; }
    .insp-timing-ctr .insp-timing-inner .images {
      text-align: center;
      width: 100%; }
      .insp-timing-ctr .insp-timing-inner .images img {
        width: 80%;
        order: 1;
        height: auto;
        object-fit: contain;
        object-position: bottom; }
    .insp-timing-ctr .insp-timing-inner .comment {
      width: 100%;
      order: 2;
      padding: 3% 5% !important; }
    .insp-timing-ctr .insp-timing-inner h4 {
      text-align: center; } }
/*  VOICE
-------------------------------------------*/
.voice-ctr {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1080px;
  gap: 4%;
  flex-wrap: wrap; }
  .voice-ctr .voice-inner {
    text-align: center;
    width: calc(92% / 3);
    margin-bottom: 2rem; }
    .voice-ctr .voice-inner .comment {
      position: relative;
      display: inline-block;
      text-align: center;
      padding: 8%;
      background: white;
      border-radius: 5px;
      border-top: 1px solid white; }
      .voice-ctr .voice-inner .comment:before {
        content: '';
        position: absolute;
        display: block;
        z-index: 1;
        border-style: solid;
        border-color: white transparent;
        border-width: 0 10px 10px 10px;
        top: -10px;
        left: 50%;
        margin-left: -10px; }
    .voice-ctr .voice-inner img {
      max-width: 90px; }

@media screen and (max-width: 768px) {
  .voice-ctr .voice-inner {
    width: calc(92% / 2); } }
@media screen and (max-width: 600px) {
  .voice-ctr .voice-inner {
    width: calc(92% / 1); } }
@media screen and (max-width: 480px) {
  .voice-ctr .voice-inner {
    font-size: 14px;
    line-height: 1.6; } }
/* STAFF
-----------------------------------------------------------------------------------------------*/
.staff-ctr {
  gap: 3%;
  flex-wrap: wrap; }
  .staff-ctr .staff-inner {
    text-align: center;
    width: calc(91% / 4); }
    .staff-ctr .staff-inner img {
      width: 100%;
      max-width: 280px;
      object-fit: cover;
      border-radius: 50%;
      object-position: 50% 50%;
      margin-bottom: 1rem; }
    .staff-ctr .staff-inner .staff-name {
      font-weight: 600;
      /*border-bottom: 1px dashed var(--col-right-blue);*/
      padding: 0 0 .5rem;
      margin: 0 0 .5rem; }
      .staff-ctr .staff-inner .staff-name span {
        color: white;
        font-size: 80%;
        width: fit-content;
        border-radius: 1rem;
        padding: .2rem .5rem;
        margin-right: .5rem;
        background-color: var(--col-right-blue); }
    .staff-ctr .staff-inner dl {
      font-size: 90%;
      width: 100%;
      border-radius: 5px;
      padding: .2rem;
      background: white; }
      .staff-ctr .staff-inner dl div {
        display: table; }
        .staff-ctr .staff-inner dl div dt, .staff-ctr .staff-inner dl div dd {
          font-size: 90%;
          line-height: 1.6;
          vertical-align: middle;
          display: table-cell; }
        .staff-ctr .staff-inner dl div dt {
          white-space: nowrap;
          border-radius: 5px;
          padding: .2rem .5rem;
          margin-bottom: .2rem;
          background-color: var(--col-lancdezinc-hover); }
        .staff-ctr .staff-inner dl div dd {
          text-align: left;
          padding: 0 .5rem; }

@media screen and (max-width: 1024px) {
  .staff-ctr {
    max-width: 600px;
    gap: 10%; }
    .staff-ctr .staff-inner {
      width: calc(90% / 2); }
      .staff-ctr .staff-inner dl {
        margin-bottom: 10%; }
        .staff-ctr .staff-inner dl div dt, .staff-ctr .staff-inner dl div dd {
          font-size: 100%;
          padding: .5rem; } }
@media screen and (max-width: 600px) {
  .staff-ctr {
    gap: 5%; }
    .staff-ctr .staff-inner {
      width: calc(95% / 2); }
      .staff-ctr .staff-inner dl {
        margin-bottom: 5%; }
        .staff-ctr .staff-inner dl div {
          display: flex;
          align-items: flex-start;
          flex-flow: column; }
          .staff-ctr .staff-inner dl div dt, .staff-ctr .staff-inner dl div dd {
            padding: .2rem .5rem;
            width: 100%; } }
/*  CAUSE
-------------------------------------------*/
.cause-step-ctr {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 6%;
  /* photo */ }
  .cause-step-ctr:nth-child(even) {
    flex-direction: row-reverse; }
  .cause-step-ctr .images {
    position: relative;
    width: 50%;
    min-height: 240px;
    background-size: cover;
    background-repeat: no-repeat; }
    .cause-step-ctr .images img {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      margin: auto; }
      @media screen and (max-width: 480px) {
        .cause-step-ctr .images img {
          top: 1rem;
          bottom: auto; } }
  .cause-step-ctr#cause1 .images img, .cause-step-ctr#cause3 .images img, .cause-step-ctr#cause5 .images img {
    right: 0; }
  .cause-step-ctr#cause .images2 img, .cause-step-ctr#cause .images4 img {
    left: 0; }
  .cause-step-ctr#cause1 .images {
    background-image: url("../img/cause-step-photo1.webp");
    background-position: left center; }
  .cause-step-ctr#cause2 .images {
    background-image: url("../img/cause-step-photo2.webp");
    background-position: center center; }
  .cause-step-ctr#cause3 .images {
    background-image: url("../img/cause-step-photo3.webp");
    background-position: left center; }
  .cause-step-ctr#cause4 .images {
    background-image: url("../img/cause-step-photo4.webp");
    background-position: center center; }
  .cause-step-ctr#cause5 .images {
    background-image: url("../img/cause-step-photo5.webp");
    background-position: center center; }
  .cause-step-ctr .cause-inner {
    width: 50%;
    max-width: 700px;
    margin: 0 auto;
    padding: 5% 1%;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    align-content: center;
    align-items: center; }
    .cause-step-ctr .cause-inner h4 {
      font-size: 150%;
      margin-bottom: 1rem; }
    .cause-step-ctr .cause-inner strong {
      color: var(--col-right-blue); }

@media screen and (max-width: 768px) {
  .cause-step-ctr {
    flex-direction: column;
    width: 100%;
    margin-bottom: 1rem; }
    .cause-step-ctr:last-child {
      margin-bottom: 0; }
    .cause-step-ctr .images {
      width: 100%;
      margin-bottom: 0; }
    .cause-step-ctr:nth-child(even) {
      flex-direction: column; }
    .cause-step-ctr .cause-inner {
      width: 100%;
      padding: 1rem; } }
/*  MAIL FORM
-------------------------------------------*/
form#mail_form {
  max-width: 900px;
  width: 100%;
  background: white;
  border: 1px solid var(--col-lancdezinc-hover);
  border-radius: 1rem;
  /*}*/ }
  form#mail_form * {
    margin: 0;
    padding: 0;
    box-sizing: content-box; }
  form#mail_form dl {
    padding: 1rem;
    /*div {*/
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dotted var(--col-lancdezinc-hover); }
    @media screen and (max-width: 480px) {
      form#mail_form dl {
        padding: .2rem; } }
    form#mail_form dl:last-child {
      border-bottom: 0; }
    form#mail_form dl:after {
      content: ".";
      display: block;
      height: 0;
      clear: both;
      visibility: hidden; }
    form#mail_form dl dt, form#mail_form dl dd {
      padding: .5rem; }
    form#mail_form dl dt {
      width: 25%;
      min-width: 250px; }
      form#mail_form dl dt:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden; }
      form#mail_form dl dt i {
        font-family: auto;
        float: left;
        position: relative;
        top: -2px;
        margin-right: .5rem; }
      form#mail_form dl dt span.required, form#mail_form dl dt span.optional {
        font-family: auto;
        font-size: 13px;
        color: white;
        padding: .1rem .3rem;
        border-radius: 3px; }
      form#mail_form dl dt span.required {
        background: #d9534f;
        border: 1px solid #d43f3a; }
      form#mail_form dl dt span.optional {
        background: #337ab7;
        border: 1px solid #2e6da4; }
    form#mail_form dl dd {
      width: 75%; }
      form#mail_form dl dd span.error_blank, form#mail_form dl dd span.error_format, form#mail_form dl dd span.error_match {
        display: block;
        color: #ff0000;
        margin-top: 5px; }

.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000; }

span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid white;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px; }

@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
form#mail_form input[type="text"], form#mail_form input[type="email"], form#mail_form input[type="tel"] {
  width: calc(100% - 4% - 2px);
  padding: 7px 2%;
  border: 1px solid var(--col-lancdezinc-hover);
  border-radius: 3px;
  background: var(--col-lancdezinc);
  -webkit-appearance: none;
  font-size: 16px;
  font-family: inherit;
  line-height: normal; }
form#mail_form input[type="text"]:focus, form#mail_form input[type="email"]:focus, form#mail_form input[type="tel"]:focus {
  box-shadow: 0px 0px 5px var(--col-right-blue);
  border: 1px solid var(--col-right-blue);
  background: white; }
form#mail_form textarea:focus {
  box-shadow: 0px 0px 5px var(--col-right-blue);
  border: 1px solid var(--col-right-blue);
  background: white; }
form#mail_form ul li input[type="radio"], form#mail_form ul li input[type="checkbox"] {
  margin: 0 10px 0 0; }
form#mail_form select {
  padding: 7px 2%;
  border: 1px solid var(--col-lancdezinc-hover);
  font-size: 16px;
  font-family: inherit;
  line-height: normal;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist; }
form#mail_form textarea {
  display: block;
  width: calc(100% - 4% - 2px);
  height: 200px;
  padding: 7px 2%;
  resize: vertical;
  border: 1px solid var(--col-lancdezinc-hover);
  border-radius: 3px;
  background: var(--col-lancdezinc);
  -webkit-appearance: none;
  font-size: 16px;
  font-family: inherit;
  line-height: normal; }
form#mail_form ul {
  list-style-type: none; }
  form#mail_form ul li label {
    display: block;
    margin-top: 10px;
    padding: 7px 2%;
    border-radius: 3px;
    border: 1px solid var(--col-lancdezinc-hover);
    background: var(--col-lancdezinc); }
  form#mail_form ul li:first-child label {
    margin-top: 0px; }
  form#mail_form ul li label:hover {
    cursor: pointer;
    background: var(--col-lancdezinc-hover); }
form#mail_form input[name="company"], form#mail_form input[name="name"], form#mail_form input[name="read"] {
  width: 70%; }
form#mail_form input[name="name_1"], form#mail_form input[name="name_2"], form#mail_form input[name="read_1"], form#mail_form input[name="read_2"], form#mail_form input[name="postal"], form#mail_form input[name="phone"], form#mail_form input[name="schedule"] {
  width: 30%; }
form#mail_form input[name="mail_address"], form#mail_form input[name="mail_address_confirm"] {
  width: 80%; }
form#mail_form input[name="postal"] + a {
  color: white;
  display: inline-block;
  padding: 7px 20px;
  border-radius: 3px;
  background: var(--col-right-blue);
  font-weight: 600;
  text-decoration: none; }
  form#mail_form input[name="postal"] + a:hover {
    cursor: pointer;
    color: var(--col-right-blue);
    box-shadow: 0 0 0 1px var(--col-right-blue);
    background: white; }
form#mail_form p#form_submit {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0; }
form#mail_form input[type="button"] {
  margin: 3% auto;
  padding: 1rem;
  border-radius: 3px;
  background: var(--col-right-blue);
  font-size: 16px;
  color: white;
  font-family: inherit;
  -webkit-appearance: none; }
  form#mail_form input[type="button"]:hover {
    cursor: pointer;
    background: white;
    color: var(--col-right-blue);
    box-shadow: 0 0 0 1px var(--col-right-blue);
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    transition: 0.2s linear; }

@media screen and (max-width: 768px) {
  form#mail_form {
    width: 100%;
    font-size: 100%; }
    form#mail_form dl {
      /*div {*/
      flex-wrap: wrap;
      /*}*/ }
      form#mail_form dl dt, form#mail_form dl dd {
        width: 100%; }
      form#mail_form dl dt {
        padding: .5rem .5rem 0; }
        form#mail_form dl dt i {
          float: none;
          position: static;
          font-weight: normal; }
        form#mail_form dl dt span.required, form#mail_form dl dt span.optional {
          margin: 0 15px 0 0; }
    form#mail_form input[name="phone"], form#mail_form input[name="schedule"] {
      width: 60%; } }
.inst-ctr {
  padding: 1rem;
  display: flex;
  flex-flow: column; }
  .inst-ctr .inst-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--col-right-blue); }
    .inst-ctr .inst-inner:last-child {
      border-bottom: none; }
    .inst-ctr .inst-inner .images {
      width: 30%; }
      .inst-ctr .inst-inner .images img {
        width: 100%; }
    .inst-ctr .inst-inner .exp {
      width: 70%; }
      .inst-ctr .inst-inner .exp dl div dt {
        margin-bottom: .5rem; }
      .inst-ctr .inst-inner .exp dl div dd {
        font-size: 90%; }
        .inst-ctr .inst-inner .exp dl div dd .check-list {
          font-size: 120%;
          margin: 0; }
        .inst-ctr .inst-inner .exp dl div dd small {
          font-size: 12px;
          line-height: 1.2 !important; }
  @media screen and (max-width: 800px) {
    .inst-ctr .inst-inner {
      flex-flow: column; }
      .inst-ctr .inst-inner .images {
        width: 100%; }
        .inst-ctr .inst-inner .images img {
          height: 200px;
          object-fit: cover;
          width: 100%; }
      .inst-ctr .inst-inner .exp {
        width: 100%; } }

/* privacy
---------------------------------------------------------------------------- */
.privacy-policy-ctr {
  max-width: 800px;
  margin: 0 auto; }
  .privacy-policy-ctr .privacy-policy-inner {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #E1E1E1; }
    .privacy-policy-ctr .privacy-policy-inner h3 {
      color: var(--col-right-blue);
      font-weight: 500; }

/*
item of trade
-------------------------------------------*/
.item-of-trade-ctr {
  padding: 2%;
  width: 100%;
  max-width: 1080px;
  border-radius: 1rem;
  background: #e3f4f9; }
  .item-of-trade-ctr:last-child {
    margin-bottom: 0; }
  .item-of-trade-ctr h4 {
    color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    font-size: 120%;
    background: var(--col-right-blue); }
    @media screen and (max-width: 480px) {
      .item-of-trade-ctr h4 {
        padding: 0.3rem .5rem; } }
  .item-of-trade-ctr .item-of-trade-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem; }
    .item-of-trade-ctr .item-of-trade-header .images {
      width: 35%; }
      .item-of-trade-ctr .item-of-trade-header .images img {
        width: 100%; }
    .item-of-trade-ctr .item-of-trade-header .exp {
      width: 50%; }
      .item-of-trade-ctr .item-of-trade-header .exp .dl-list div dt {
        margin: 0; }
      .item-of-trade-ctr .item-of-trade-header .exp .dl-list div dd {
        padding: 0; }
        .item-of-trade-ctr .item-of-trade-header .exp .dl-list div dd ul.check-list {
          padding: 0; }
  @media screen and (max-width: 600px) {
    .item-of-trade-ctr .item-of-trade-header {
      flex-flow: column;
      gap: 0; }
      .item-of-trade-ctr .item-of-trade-header .images {
        width: 50%; }
      .item-of-trade-ctr .item-of-trade-header .exp {
        width: 100%; } }
  .item-of-trade-ctr .item-of-trade-inner strong {
    /* padding: .3rem 1rem;
    background: #b9e4f0;
    border: 5px solid white; */ }
  .item-of-trade-ctr .item-of-trade-inner .price-ctr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5%;
    padding: 1rem;
    border: 1px solid var(--col-lancdezinc-hover);
    background: white; }
    .item-of-trade-ctr .item-of-trade-inner .price-ctr h5 {
      width: 100%;
      font-size: 120%;
      color: var(--col-right-blue); }
    .item-of-trade-ctr .item-of-trade-inner .price-ctr .images {
      width: 30%; }
      .item-of-trade-ctr .item-of-trade-inner .price-ctr .images img {
        width: 100%;
        object-fit: cover;
        object-position: center center;
        height: 200px; }
    .item-of-trade-ctr .item-of-trade-inner .price-ctr .price-inner {
      width: 65%; }
  @media screen and (max-width: 600px) {
    .item-of-trade-ctr .item-of-trade-inner .price-ctr {
      flex-flow: column; }
      .item-of-trade-ctr .item-of-trade-inner .price-ctr .images {
        width: 100%;
        margin-bottom: 1rem; }
        .item-of-trade-ctr .item-of-trade-inner .price-ctr .images img {
          width: 100%; }
      .item-of-trade-ctr .item-of-trade-inner .price-ctr .price-inner {
        width: 100%; } }

/* js */
/* LOOP
-------------------------------------------*/
.loop_wrap_base {
  width: 100%;
  height: auto;
  overflow: hidden; }
  .loop_wrap_base h2 {
    font-weight: normal;
    color: #111;
    text-align: center;
    line-height: 1.2;
    padding: 10px;
    font-size: 24px; }
    .loop_wrap_base h2 span {
      letter-spacing: 0.2em;
      font-size: 14px;
      color: #555; }

.loop_wrap {
  display: flex;
  width: 220%;
  height: auto; }
  .loop_wrap ul {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .loop_wrap ul li {
      width: 20%;
      display: block;
      text-decoration: none;
      color: #555;
      text-align: center;
      line-height: 1.6;
      font-size: 14px;
      position: relative; }
      .loop_wrap ul li img {
        width: 100%;
        display: block;
        margin-bottom: 5px; }
      .loop_wrap ul li span {
        display: inline-block;
        background-color: #36BEAD;
        color: #FFF;
        font-size: 12px;
        position: absolute;
        top: 0;
        left: 0;
        padding: 5px;
        letter-spacing: 1px;
        z-index: 10; }
        .loop_wrap ul li span.cl_2 {
          background-color: #333; }
        .loop_wrap ul li span.cl_3 {
          background-color: #FF9900; }
    .loop_wrap ul:first-child {
      animation: loop 50s -25s linear infinite; }
    .loop_wrap ul:last-child {
      animation: loop2 50s linear infinite; }
  .loop_wrap:hover ul {
    animation-play-state: paused; }

@keyframes loop {
  0% {
    transform: translateX(100%); }
  to {
    transform: translateX(-100%); } }
@keyframes loop2 {
  0% {
    transform: translateX(0); }
  to {
    transform: translateX(-200%); } }
/*
TO TOP
-------------------------------------------*/
.to_top {
  position: fixed;
  bottom: 4rem;
  right: 0px;
  z-index: 800; }
  .to_top a {
    text-decoration: none;
    text-align: center;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #DCE7E9;
    color: #333;
    text-align: center;
    font-size: 32px;
    line-height: 50px; }
    .to_top a:hover {
      background-color: #1BD;
      color: white; }

@media screen and (min-width: 961px) {
  .to_top {
    position: fixed;
    bottom: 0;
    right: 0px;
    z-index: 800; }
    .to_top a {
      text-decoration: none;
      text-align: center;
      display: block;
      width: 50px;
      height: 50px;
      background-color: #DCE7E9;
      color: #333;
      text-align: center;
      font-size: 32px;
      line-height: 50px; }
      .to_top a:hover {
        background-color: #1BD;
        color: white; } }
