@charset "UTF-8";
/* CSS Document */
/*////////////////////////////////////////////////////////

共通css

///////////////////////////////////////////////////////*/
/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  transition: background-color 0.8s;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
#wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  letter-spacing: 0.1em;
}
#loading {
  position: fixed;
  left: 50%;
  top: 40%;
  width: 30px;
  margin-left: -15px;
}
#loader-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(255, 255, 255, 1);
  z-index: 99999999;
}
.loader, .loader:after {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.6em solid rgba(58, 23, 2, 0.2);
  border-right: 0.6em solid rgba(58, 23, 2, 0.2);
  border-bottom: 0.6em solid rgba(58, 23, 2, 0.2);
  border-left: 0.6em solid #04772c;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*=======================================================

構成要素

=======================================================*/
img {
  width: 100%;
  max-width: 100%;
  line-height: 1;
  vertical-align: top;
}
/* =toTop
-------------------------------------------------------*/
#toTop {
  position: fixed;
  bottom: 5vw;
  right: 1vw;
  width: 60px;
  z-index: 9999;
}
@media screen and (max-width: 599px) {
  #toTop {
    bottom: 17vw;
    right: 2vw;
    width: 40px;
  }
}
/* マウスオーバー透過
-------------------------------------------------------*/
#wrapper a img {
  -webkit-transition: all .3s;
  transition: all .3s;
}
#wrapper a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.70;
  opacity: 0.70;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#wrapper a:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
}
/* クリアフィックス
-------------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: block;
}
/* 注釈
-------------------------------------------------------*/
.notes {
  position: relative;
}
.notes span.notes-head {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.notes span.notes-body {
  display: inline-block;
  padding-left: 1em;
}
/* アニメーション
-------------------------------------------------------*/
.animate {
  visibility: hidden;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn-bottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn-bottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleOut {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes scaleOut {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.fadein-animation {
  visibility: visible;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
.fadein-bottom-animation {
  visibility: visible;
  animation: fadeIn-bottom 1s ease 0s 1 normal;
  -webkit-animation: fadeIn-bottom 1s ease 0s 1 normal;
}
.scale-wrap {
  overflow: hidden;
}
.scale-wrap .scale-out-animation {
  visibility: visible;
  animation: scaleOut 3s ease 0s 1 normal;
  -webkit-animation: scaleOut 3s ease 0s 1 normal;
}
/* =ボタン
-------------------------------------------------------*/
.btn-normal {
  display: table;
  width: auto;
}
.btn-normal a {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: clamp(40px, 3.333vw, 60px); /*1500px:60px*/
  font-size: clamp(1.4rem, 1.067vw, 1.067vw); /*1500px:16px*/
  text-align: center;
  text-decoration: none !important;
  padding: 0 30px;
  background-color: #4a4a4a;
  border: solid 1px transparent;
  color: #fff !important;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
}
.btn-normal a:hover {
  background-color: transparent;
  border: solid 1px #4a4a4a;
  color: #4a4a4a !important;
}
/*text only*/
.btn-txt a {
  position: relative;
  color: #242424 !important;
  font-size: 1.2rem;
  text-decoration: none !important;
  letter-spacing: 0.1em;
}
.btn-txt a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -0.1em;
  width: 100%;
  height: 1px;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  transform-origin: right top;
  background-color: #242424;
  -webkit-transition: transform .3s;
  transition: transform .3s;
}
.btn-txt a:hover::after {
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
/*------------------------------------------------------

 =header
 
-------------------------------------------------------*/
header {
  position: relative;
  width: 100%;
  padding: 0 3vw;
  /*height: 6vw;*/
  height: clamp(60px, 6vw, 6vw);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 999999;
}
header:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
header .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header .header__container .logo {
  width: clamp(90px, 9.333vw, 9.333vw); /*1500px:140px*/
}
header .header__container .logo a:hover img {
  filter: alpha(opacity=100) !important;
  -moz-opacity: 1 !important;
  opacity: 1 !important;
}
@media screen and (max-width: 599px) {
  header {
    padding: 0 6vw;
  }
}
/* =hamburger-menu
-------------------------------------------------------*/
/*.hamburger-menu {
	display: none;
}*/
.hamburger-menu {
  display: block;
}
.hamburger {
  display: block;
  width: clamp(30px, 3.333vw, 3.333vw); /*1500px:50px*/
  height: auto;
  position: fixed;
  top: 1.333vw; /*1500px:20px*/
  right: 1.333vw; /*1500px:20px*/
  z-index: 2147483647;
  padding-top: 0;
  padding-left: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation; /*background: rgba(0, 0, 0, 1);*/
}
.hamburger__icon {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  /*width: 50px;*/
  width: clamp(30px, 3.333vw, 3.333vw); /*1500px:50px*/
  height: 3px;
  background-color: #000;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -10px;
  width: clamp(30px, 3.333vw, 3.333vw); /*1500px:50px*/
}
.hamburger__icon:after {
  top: 10px;
  width: clamp(30px, 3.333vw, 3.333vw); /*1500px:50px*/
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  width: clamp(30px, 3.333vw, 3.333vw); /*1500px:50px*/
}
.fat-nav {
  top: 0;
  left: 0;
  z-index: 999998;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(186, 229, 201, 1);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.fat-nav .fat-nav__wrapper {
  width: 100%;
  height: 100% !important;
  table-layout: fixed;
  transform: translateY(0) !important;
}
.fat-nav .fat-nav__wrapper a {
  position: relative;
  color: #242424;
  text-decoration: none;
}
.fat-nav .fat-nav__wrapper a:hover, .fat-nav .fat-nav__wrapper a:active {
  filter: alpha(opacity=60);
  -moz-opacity: 0.60;
  opacity: 0.60;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.fat-nav .fat-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 10vw;
}
.fat-nav .fat-nav-inner .fat-logo {
  width: 35%;
}
.fat-nav .fat-nav-inner .fat-gnav {
  width: 55%;
}
.fat-nav .to-home {
  font-size: clamp(1.8rem, 1.6vw, 1.6vw); /*1500px:24px*/
  font-weight: bold;
  border-bottom: solid 1px #242424;
  padding-bottom: 7px;
}
.fat-nav ul.global-nav li {
  display: block;
  margin-top: clamp(20px, 2.667vw, 2.667vw); /*1500px:40px*/
  margin-bottom: clamp(20px, 2.667vw, 2.667vw); /*1500px:40px*/
  font-size: clamp(1.4rem, 1.333vw, 1.333vw); /*1500px:20px*/
  color: #999;
}
.fat-nav ul.global-nav:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.fat-nav ul.global-nav li a {
  display: block;
  line-height: 1.4;
  color: #242424;
}
/* active */
/*#sigIndex .fat-nav .to-home a {
  color: #B7B7B7;
}
#sigIndex .fat-nav .to-home a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -2px;
  width: calc(100% + 4px);
  height: 1px;
  background-color: #B7B7B7;
}*/
@media screen and (max-width: 599px) {
  .hamburger {
    top: 15px;
    right: 15px;
  }
  .fat-nav .fat-nav-inner {
    display: block;
  }
  .fat-nav .fat-nav-inner .fat-logo {
    width: 100%;
    margin-top: 30px;
  }
  .fat-nav .fat-nav-inner .fat-gnav {
    width: 100%;
  }
}
/*------------------------------------------------------

 =footer
 
-------------------------------------------------------*/
footer {
  padding: 20px 6vw;
  font-size: clamp(1.0rem, 0.8vw, 14px); /*1500px:12px*/
  letter-spacing: 0.2em;
  background-color: #d8f0e0;
  text-align: center;
}
/*=======================================================

content

=======================================================*/
#container {
  padding: 4vw 6vw;
}
@media screen and (max-width: 599px) {
  #container {
    padding: 4vw 0;
  }
}
/*------------------------------------------------------
 =pankuzu
-------------------------------------------------------*/
#pankuzu {
  padding: 0 6vw;
  letter-spacing: -0.5em;
}
#pankuzu li {
  display: inline-block;
  font-size: clamp(1.1rem, 0.8vw, 0.8vw); /*1500px:12px*/
  letter-spacing: normal;
}
#pankuzu li::after {
  content: "";
  display: inline-block;
  background-image: url(https://www.shimz.co.jp/theme/civil/assets/common/img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(5px, 0.333vw, 0.333vw); /*1500px:5px*/
  height: clamp(5px, 0.467vw, 0.467vw); /*1500px:7px*/
  margin: 0 10px;
}
#pankuzu li:last-child::after {
  content: none;
  background: none;
  margin: 0;
}
#pankuzu li a {
  text-decoration: underline;
}
#pankuzu li a:link, #pankuzu li a:visited {
  color: #999;
}
#pankuzu li a:hover, #pankuzu li a:active {
  filter: alpha(opacity=70);
  -moz-opacity: 0.70;
  opacity: 0.70;
  -webkit-transition: all .3s;
  transition: all .3s;
}
@media screen and (max-width: 599px) {}
/*------------------------------------------------------
 =title
-------------------------------------------------------*/
.contents-headline {
  position: relative;
  font-size: clamp(2.4rem, 2.4vw, 2.4vw); /*1500px:36px*/
  font-family: 'Noto Serif JP', serif;
  color: #04772c;
  text-align: center;
  line-height: 1.5;
}
.contents-headline + * {
  margin-top: 4vw; /*1500px:60px*/
}
/*---------- section title ----------*/
/*Large*/
.section-ttl-l {
  position: relative;
  font-size: clamp(2.0rem, 2.4vw, 2.4vw); /*1500px:36px*/
  font-family: 'Noto Serif JP', serif;
  color: #04772c;
  text-align: center;
  line-height: 1.5;
}
.section-ttl-l + * {
  margin-top: 4vw; /*1500px:60px*/
}
/*Medium*/
.section-ttl-m {
  position: relative;
  font-size: clamp(1.8rem, 2vw, 2vw); /*1500px:30px*/
  font-family: 'Noto Serif JP', serif;
  color: #04772c;
  text-align: center;
  line-height: 1.5;
}
.section-ttl-m + * {
  margin-top: 2.667vw; /*1500px:40px*/
}
@media screen and (max-width: 599px) {
  .section-ttl-l + * {
    margin-top: 30px;
  }
  .section-ttl-m + * {
    margin-top: 20px;
  }
}