@charset "UTF-8";
/*----------------------------------------
表示を切り替える幅
----------------------------------------*/
/*----------------------------------------
フォント
----------------------------------------*/
/*----------------------------------------
カラー 
----------------------------------------*/
/*--------ガムシス ----------*/
/*--------コーポレートサイト ----------*/
/*----------------------------------------
カラー 
----------------------------------------*/
/*----------------------------------------
フォント
----------------------------------------*/
/*----------------------------------------
カラー 
----------------------------------------*/
/*----------------------------------------
フォント
----------------------------------------*/
/*----------------------------------------
表示を切り替える幅
----------------------------------------*/
/*----------------------------------------
ブレークポイント
----------------------------------------*/
.anim_page_loading_c::after {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "ロード中";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  font-size: 4vmin;
  font-weight: 900;
  color: #fff;
  z-index: 9999;
  animation-name: loadingTextIN, loading;
  animation-duration: 1s, 1s;
  animation-delay: 0s, 1s;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
}

@keyframes loadingTextIN {
  0% {
    color: #fff;
  }
  100% {
    color: #ff7300;
  }
}
@keyframes loading {
  0% {
    content: "ロード中";
  }
  80% {
    content: "ロード中..";
  }
  100% {
    content: "ロード中...";
  }
}
.page_all_c {
  overflow-x: hidden;
  width: 100%;
}

.area_backglund_image {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.backglund_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.mask_backglund_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(215, 246, 255, 0.1568627451);
}

.header_c {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 70px;
  padding-top: 10px;
  color: #f7f7f7;
  font-size: 22px;
  font-weight: 600;
  border-bottom: 7px solid #008da0;
  z-index: 9000;
}

.area_logo_header_c {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 30px;
}

.nav_header_c {
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  align-items: center;
  height: 60px;
  padding-right: 30px;
}

.nav_OODOUGU_header_c {
  font-family: "Zen Antique", serif;
}

.ul_header_c {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.li_header_c {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 180px;
  margin-right: 50px;
}

.li_header_c[data-index="0"] {
  --index: 0;
}

.li_header_c[data-index="1"] {
  --index: 1;
}

.li_header_c[data-index="2"] {
  --index: 2;
}

.li_header_c[data-index="3"] {
  --index: 3;
}

.li_header_c[data-index="4"] {
  --index: 4;
}

.button_header_c {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
  width: 150px;
  height: 40px;
  padding: 5px 0;
  color: #eeeeee;
  font-size: 19px;
  font-weight: 900;
  border-left: 4px solid #eeeeee;
  border-right: 4px solid #eeeeee;
  animation-name: BHhoverNot;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  transition-timing-function: steps(3);
}

@keyframes BHhoverNot {
  from {
    width: 180px;
  }
  to {
    width: 150px;
  }
}
.area_button_header_c {
  display: flex;
  align-items: center;
}

/* ホバー演出 */
@media (any-hover: hover) {
  .button_header_c:hover {
    animation-name: BHhover;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    transition-timing-function: steps(3);
  }
  @keyframes BHhover {
    from {
      width: 150px;
    }
    to {
      width: 180px;
    }
  }
}
.footer_c {
  display: flex;
  justify-content: space-around;
  width: 88%;
  padding: 30px 0;
  background-color: #c0c0c0;
  border-top: 12px solid #da7400;
  z-index: 9000;
}

.title_footer_c {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.button_footer_c {
  width: auto;
  margin-top: 7px;
  margin-left: 20px;
  font-size: 16px;
}

.text_footer_c {
  margin-top: 7px;
  margin-left: 20px;
  font-size: 14px;
  line-height: 1.2;
}

.area_main_c {
  width: 88%;
  min-height: 80vh;
  margin-top: 80px;
}

.area_pagemap_c {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12%;
  height: 100%;
  border-left: 0.5vmin solid;
}

.nav_pagemap_c {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 2vmin 0;
  background-color: #fff;
  border-radius: 2%;
}

.ul_pagemap_c {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
}

.list_pagemap_c {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 5.5vmin;
  border-bottom: 0.4vmin solid #707070;
}

.button_li_pagemap_c {
  position: relative;
  width: 95%;
  height: 100%;
  margin: 0.5vmin 0;
  border-radius: 1vmin;
}

.p_pagemap_c {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  padding: 0 5%;
  font-size: 2vmin;
  font-weight: 900;
  border-radius: 1vmin;
}

.p_pagemap_pagetop_c {
  align-items: center;
  text-align: center;
}

.back_p_pagemap_c {
  opacity: 0;
}

.list_contact {
  height: 10vmin;
  border: none;
}

.a_contact_c {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 90%;
  height: 60%;
  margin: auto auto;
  color: #fff;
  font-weight: bold;
  background-color: #F99900;
  border-radius: 1000px;
}

.tel_pagemap {
  position: relative;
  text-align: center;
  font-size: 1.3vmax;
}

@media (any-hover: hover) {
  .p_pagemap_c:hover {
    background-color: rgba(0, 0, 0, 0.1254901961);
    animation-name: pPMhover;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
  }
  .a_contact_c:hover {
    background-color: #F99900;
  }
}/*# sourceMappingURL=common_ver1.0.css.map */