body {
  position: relative;
  font-size: normal!important;
  line-height: 160%;
  font-family: serif;
  width: 100%;
  height: 100%;
  color: #222;
  background-color: #fff;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  scroll-behavior: smooth;
  padding:0;
  border:0;
}

address{

  font-family: sans-serif;
}

a, a:visited {
  text-decoration: underline;
  color: #222;
}

a:hover {
  text-decoration: none;
  color: #222;
}

.ex_h1 {
  color: #222222;
  font-family: serif;
  font-size: 1.5em;
  /*letter-spacing: -2px;*/
}

.ex_h2 {
  color: #222222;
  font-family: serif;
  font-size: 1.25em;
  letter-spacing: -2px;
}

.ex_p {
  color: #222222;
  font-family: sans-serif;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 1em;
}

footer p {
  color: #222222;
  font-family: serif;
  padding-right: 24px;
  padding-left: 24px;
  font-size: 1em;
}

#about {
  padding-right: 16px;
  padding-left: 16px;
}

#portfolio {
  background: #efefef;
  padding-right: 16px;
  padding-left: 16px;
}

#contact {
  padding-right: 16px;
  padding-left: 16px;
}

#location {
  background: #efefef;
  padding-right: 16px;
  padding-left: 16px;
}

.ex_btn {
  background: transparent;
  width: 280px;
  height: 60px;
  line-height: 42px;
  margin: 24px;
  font-size: 1em;
  font-family: sans-serif;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(0,0,0,0);
}

.breadcrumb {
  padding-top: 16px;
  padding-bottom: 16px;
}

#logo {
  /*display: none;*/
}

@media (min-width: 768px) {
  #logo {
    display: block;
  }
}

/* 丸が動いてスクロールを促す */

/* スクロールダウン全体の場所 */

.scrolldown {
  position: relative;
  bottom: 150px;
  left: 50%;
  right: 50%;
  width: 32px;
  text-align: center;
  z-index: 10;
}

/* Scrollテキストの描写 */

.scrolldown span {
  position: absolute;
  left: 8px;
  bottom: 10px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */

.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/* 下からの距離が変化して丸の全体が上から下に動く */

@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

/* 上から下にかけて丸が透過→不透明→透過する */

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */

.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 2px;
  height: 50px;
  background: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, " > ");
}

#smp_list {
  font-family: sans-serif;
  margin: 0 auto;
  padding: 0;
  border: solid 1px #ccc;
  border-radius: 6px;
  text-align: left;
  width: 90%;
}

#smp_list li {
  line-height: 350%;
  list-style: none;
  margin: 0;
  border-bottom: solid 1px #ccc;
}

#smp_list li a {
  padding-left: 24px;
  display: block;
  text-decoration: none!important;
}

/* li:nth-child(even){
		background: #fafafa;
	} */

#smp_list li:last-child {
  border: none;
}

#about p {
  text-align: left;
  font-size: 1em;
}

/* トップ画面 */

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

#cover::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.3);
  /*background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);*/
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAABtJREFUGFdjZGBg+M/AwMDIAAVwBjYBsEoMFQBW5gIF0HSEnwAAAABJRU5ErkJggg==);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  z-index: 1;
}

.flexbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo_area {
  position: absolute;
  max-width: 600px;
  max-height: 75px;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 420px) {
  #logo_area {
    width: 320px;
    height: 180px;
    margin: 0 auto;
    margin-top: 180px;
    z-index: 5;
  }
}

@media (max-width: 420px) {
  .flexbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

/* ナビゲーションバー */

/* Navbar & Navmenu color */

:root {
  --background-navbar: rgba(255, 555, 255, 0.7);
}

header {
  background: var(--background-navbar);
  position: fixed;
  width: 100%;
  height: 52px;
  z-index: 10;
}

/* Nav items */

.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */

.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */

.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: normal;
  text-transform: capitalize;
  color: #222;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid #ccc;
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a, .menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #222;
  display: block;
  height: 2px;
  width: 24px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before, .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #222;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger Menu Animation End */

/* Navbar Container */

.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */

.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 4px;
  font-size: 20px;
}
.menu  > li > a{

  font-family: sans-serif;
}

/* ajaxローダー */

#loader {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  _position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 100;
}

#fade {
  width: 100%;
  height: 100%;
  display: none;
  background-color: #FFFFFF;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 50;
}

/* スクロールでトップへ */

#scroll-to-top {
  background-color: rgba(19,20,25,0.6);
  width: 44px;
  height: 40px;
  position: fixed;
  bottom: 0;
  right: 18px;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: center;
  color: #fff;
  font-size: 22px;
  line-height: 44px;
}

/* 数字のインクリメント */

.all-capital {
  text-transform: uppercase;
}

.counter-font {
  font-size: 60px;
  font-weight: 500;
  line-height: 76px;
  letter-spacing: 0px;
  text-align: center;
}

span.plus-k::after {
  content: 'K +';
}

span.plus::after {
  content: '+';
}

.Justify-Flex-Center {
  display: flex;
  justify-content: center;
}

.font-dark {
  color: var(--primary-color);
}

.Justify-Flex-Center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* パンくずリスト */

.breadcrumb {
  margin: 16px;
}

.breadcrumb a::after {
  content: " / ";
}

/* メインビジュアル */
.wrap {
  padding: 0;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.5);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

.slide-img img {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
}

#container {
  display: none;
}

#fade,
#loader {
  display: block;
}