@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
.chainfade {
  opacity: 0;
  transition: all 1s;
}

.chainfade.show {
  animation-name: slideUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

/*===================================
//滑らかに出現
===================================*/
@keyframes smoothText {
  0% {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/*===================================
//フェードイン
===================================*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*===================================
//スライドイン上から
===================================*/
@keyframes slideDown {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*===================================
//スライドイン下から
===================================*/
@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*===================================
//スライドイン左から
===================================*/
@keyframes slideLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*===================================
//スライドイン右から
===================================*/
@keyframes slideRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*===================================
//2回転
===================================*/
@keyframes rotateTwice {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}
/*===================================
//トゥンク
===================================*/
@keyframes shoot {
  0% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*===================================
//じわっ
===================================*/
@keyframes blurAnime {
  0% {
    transform: scale(1.3);
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
  }
}
/*===================================
//浮遊感
===================================*/
@keyframes fuwari {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  50% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
}
body > .wrapper {
  opacity: 1;
}

body > .wrapper.hide {
  opacity: 0;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-image: url("../images/pattern1.png");
  background-size: 200px;
  background-repeat: repeat;
}

.loading span {
  display: inline-block;
  color: #999;
  font-weight: 500;
  font-size: 1em;
  animation: animation-loading-5 3s infinite;
}

.loading span:nth-of-type(2) {
  animation-delay: 0.1s;
}

.loading span:nth-of-type(3) {
  animation-delay: 0.2s;
}

.loading span:nth-of-type(4) {
  animation-delay: 0.3s;
}

.loading span:nth-of-type(5) {
  animation-delay: 0.4s;
}

.loading span:nth-of-type(6) {
  animation-delay: 0.5s;
}

.loading span:nth-of-type(7) {
  animation-delay: 0.6s;
}

@keyframes animation-loading-5 {
  50% {
    opacity: 0;
  }
}
input,
textarea {
  display: inline-block;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #555555;
  background-color: #ffffff;
  border: 1px dotted #000;
  margin: 0;
  padding: 0.3em;
}

input::placeholder,
textarea::placeholder {
  color: #BBB;
}

input[type=text]:focus {
  outline: 0;
  background-color: #FFF !important;
}

textarea:focus {
  outline: 0;
  background-color: #FFF !important;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
  border: 1px dotted #000;
}

input[type=submit],
input[type=button] {
  outline: 0;
  background-color: #F7931E;
  color: #FFF;
  border-radius: 2rem;
  border: 0;
  text-align: center;
  display: inline-block;
  padding: 0.8rem 2rem;
  margin: 0.5rem;
  width: 16rem;
  transition: 0.5s;
}

input[type=submit]:hover,
input[type=button]:hover {
  background-color: #FFB05F;
}

/* ======================================
Global Navigation
======================================== */
.clone_nav {
  position: fixed;
  width: 100%;
  z-index: 999999;
  background-color: #FFF;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  transform: translateY(-100%);
}
.clone_nav .global_nav {
  padding: 0.5rem 0;
}
.clone_nav .nav_wrap .title {
  width: 100px;
}
.clone_nav .nav_wrap .title img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .clone_nav .primary_nav {
    display: none;
  }
}
.clone_nav.active {
  transform: translateY(0);
}

.disnone {
  display: none;
}

.global_nav {
  z-index: 99999;
  padding: 1rem 0;
  width: 96%;
  margin: auto;
  padding: 1rem 0;
}

/* スクロールバー非表示　Chrome, Safari 対応 */
.global_nav::-webkit-scrollbar {
  display: none;
}

.nav_wrap {
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .nav_wrap {
    display: block;
  }
}
.nav_wrap .title {
  width: 150px;
}
.nav_wrap .title img {
  width: 100%;
}

.primary_nav {
  display: flex;
}
@media screen and (max-width: 960px) {
  .primary_nav {
    display: block;
    margin-top: 4rem;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: fixed;
    overflow-y: scroll;
    /* スクロールバー非表示　Edge 対応 */
    -ms-overflow-style: none;
    /* スクロールバー非表示　Firefox 対応 */
    scrollbar-width: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
    padding: 2rem 1rem 1rem 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .primary_nav.open {
    z-index: 999999;
    opacity: 1;
    left: 0;
  }
}
.primary_nav .title {
  display: none;
}
@media screen and (max-width: 960px) {
  .primary_nav .title {
    display: block;
    margin-bottom: 4rem;
  }
}
.primary_nav > li {
  padding: 0 1em;
  position: relative;
}
.primary_nav > li > a {
  padding: 0.5em 0;
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
}
.primary_nav > li > a::after {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #000;
  opacity: 0;
  transition: 0.5s;
}
.primary_nav > li > a:hover::after {
  width: 100%;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .primary_nav > li > a {
    font-size: 1.4rem;
  }
  .primary_nav > li > a::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    opacity: 1;
  }
  .primary_nav > li > a:hover::after {
    width: 100%;
  }
}

.child_nav {
  display: inline-block;
  visibility: hidden;
  position: absolute;
  top: 98%;
  left: 0;
  min-width: 24em;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1em 1em 1em 2.5em;
  margin: 0 auto;
  transform: translateX(-40%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .child_nav {
    display: block;
    visibility: visible;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    min-width: 2em;
    transform: translateX(0);
    background-color: transparent;
    padding: 1em 0;
    opacity: 1;
    z-index: 99999;
  }
}
.child_nav.active {
  display: inline-block;
}
.child_nav li {
  margin: 0;
}
.child_nav li a {
  color: #FFF;
  font-size: 0.9em;
  padding: 0.7em 1em 0.7em 3em;
  position: relative;
  display: inline-block;
}
.child_nav li a::before {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.child_nav li a::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5em;
  margin: auto;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  z-index: 999;
  transition: 0.5s;
}
.child_nav li a:hover::after {
  width: 2em;
  left: 0;
}
@media screen and (max-width: 960px) {
  .child_nav li {
    padding: 0 1em;
  }
  .child_nav li a {
    color: #000;
    font-size: 1.2rem;
    padding: 0.3em 0;
    margin: 0.7rem 0;
  }
  .child_nav li a::before {
    display: none;
  }
  .child_nav li a::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    opacity: 1;
  }
  .child_nav li a:hover::after {
    width: 100%;
  }
}

.primary_nav li:hover .child_nav {
  visibility: visible;
  opacity: 1;
  z-index: 99999;
}
@media screen and (max-width: 960px) {
  .primary_nav li:hover .child_nav {
    display: block;
  }
}

/* ==========================================================================
Mobile Navigation
========================================================================== */
.navicon {
  pointer-events: all;
  cursor: pointer;
  display: none;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999999;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 960px) {
  .navicon {
    display: block;
  }
}

.nav-toggle {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.nav-toggle:focus {
  outline: none;
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 30px;
  margin: auto;
  left: 0;
  right: 0;
  background: #000;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.nav-toggle span {
  top: 0px;
  bottom: 0;
}

.nav-toggle span:before {
  top: -10px;
}

.nav-toggle span:after {
  top: 10px;
}

.navicon.active .nav-toggle span {
  background-color: transparent;
}

.navicon.active .nav-toggle span:before,
.navicon.active .nav-toggle span:after {
  top: 0;
}

.navicon.active .nav-toggle span:before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navicon.active .nav-toggle span:after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*---------------------------------------------------------------/
　Copyright © R-DEPOT
/---------------------------------------------------------------*/
/*========== //ヘッダー// ==========*/
#hero {
  position: relative;
  width: 96%;
  margin: auto;
}
#hero .lead1, #hero .lead2 {
  z-index: 999;
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2em;
}
#hero .lead1 {
  writing-mode: vertical-rl;
  position: absolute;
  top: 4rem;
  right: 4rem;
}
#hero .lead2 {
  writing-mode: vertical-rl;
  position: absolute;
  top: 4rem;
  right: 13rem;
}
@media screen and (max-width: 720px) {
  #hero .lead1 {
    width: 5em;
    font-size: 1.1rem;
    writing-mode: vertical-rl;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  #hero .lead2 {
    writing-mode: lr-tb;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    padding: 1.5rem;
    letter-spacing: 0;
  }
  #hero .lead2 p {
    margin-left: 0;
  }
}
#hero p {
  margin-left: 3em;
}
#hero p span {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: -1em;
  margin-left: 0.8em;
  padding: 1em 0.1em;
}
#hero .top_img img {
  height: 40rem;
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
}
@media screen and (max-width: 720px) {
  #hero .top_img img {
    height: 30rem;
  }
}

/*========== //フッター// ==========*/
footer .foot_wrap {
  padding: 3rem 0 1rem 0;
}
@media screen and (max-width: 720px) {
  footer .foot_wrap {
    padding: 0 0 3rem 0;
  }
}
footer .logo {
  width: 190px;
}
footer .logo img {
  width: 100%;
}
@media screen and (max-width: 720px) {
  footer .logo {
    margin: auto;
  }
}
footer .foot_col {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
@media screen and (max-width: 720px) {
  footer .foot_col {
    display: block;
  }
}
footer .foot_nav ul li {
  padding: 0 0 1.4rem 0;
}
footer .foot_nav ul li a {
  padding: 0 0 0.2rem 0;
  display: inline-block;
  position: relative;
}
footer .foot_nav ul li a::after {
  content: "";
  width: 2em;
  height: 1px;
  background-color: #DBDBDB;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
footer .foot_nav ul li a:hover::after {
  width: 100%;
}
footer .foot_nav ul li.small {
  font-size: 0.8rem;
}
@media screen and (max-width: 720px) {
  footer .foot_nav {
    margin: 3rem auto 5rem auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: center;
  }
  footer .foot_nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
footer h3 {
  font-weight: 600;
}
footer h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
footer .sns {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 1rem;
}
footer .sns ul {
  display: flex;
  margin: 1rem 0;
}
footer .sns ul li {
  margin-right: 1rem;
}
footer .info {
  padding-top: 2rem;
}
footer .info ul li {
  padding: 0.5rem 0;
}
footer .copy {
  text-align: center;
  padding: 1rem;
}
footer .copy p {
  display: inline-block;
  text-align: left;
  font-size: 0.9rem;
}

/* ==========================================================================
Scroll to top button
========================================================================== */
.scroll-to-top {
  display: block;
  position: fixed;
  right: 1%;
  bottom: 30px;
  width: 40px;
  height: 70px;
  margin: 0;
  z-index: 9999;
  transition: 1s;
}
@media screen and (max-width: 720px) {
  .scroll-to-top {
    transform: scale(80%);
  }
}
.scroll-to-top::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
}
.scroll-to-top:hover::after {
  height: 100%;
}
.scroll-to-top div {
  width: 100%;
  height: 100%;
  position: relative;
}
.scroll-to-top div::before {
  content: "";
  width: 1px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.3);
  transform: rotate(-45deg);
  position: absolute;
  left: 25px;
  top: -2px;
  margin: auto;
}
.scroll-to-top div::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
}
.scroll-to-top p {
  display: inline-block;
  padding: 0;
  margin: 8px auto 0 auto;
  font-size: 0.7rem;
  width: auto !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  line-height: 1;
  text-align: center;
}

/*========== //デザイン// ==========*/
.wall_white {
  background-image: url("../images/pattern1.png");
  background-size: 200px;
  background-repeat: repeat;
}

.contents.col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  align-items: stretch;
  padding: 3rem 0 0 0;
}
@media screen and (max-width: 960px) {
  .contents.col2 {
    grid-template-columns: 1fr;
  }
}

h2 {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin: 2rem auto;
  position: relative;
  padding-bottom: 0.5rem;
}
h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #CCC;
}

.btn.more {
  display: block;
  width: 180px;
  margin: auto;
  border-radius: 3em;
  border: 1px solid #DBDBDB;
  background-color: #FFF;
  padding: 0.4rem 1.5rem;
  position: relative;
}
@media screen and (max-width: 720px) {
  .btn.more {
    padding: 0.8rem 1.5rem;
  }
}
.btn.more::before, .btn.more::after {
  content: "";
  display: block;
  position: absolute;
}
.btn.more::before {
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.btn.more::after {
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background-color: rgb(0, 0, 0);
  transition: 0.5s;
}
.btn.more:hover::after {
  width: 25px;
}
.btn.more p {
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

#blog .grid_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem 0.5rem;
  align-items: stretch;
  margin-top: 5rem;
}
@media screen and (max-width: 720px) {
  #blog .grid_wrap {
    grid-template-columns: 1fr;
    width: 500px;
    max-width: 100%;
    margin: 5rem auto;
  }
}
#blog .grid_wrap a {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  position: relative;
  background-color: #FFF;
  padding: 1.7rem 1rem 1rem 1rem;
  border: 1px solid #DBDBDB;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 720px) {
  #blog .grid_wrap a {
    padding-top: 3rem;
  }
}
#blog .grid_wrap a::before {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  background-color: #CCC;
  position: absolute;
  left: 8px;
  top: -6px;
  transition: 0.5s;
}
#blog .grid_wrap a:hover::before {
  height: 30px;
}
#blog .grid_wrap a:hover .ph img {
  width: 120%;
  height: 120%;
}
#blog .grid_wrap .date {
  position: absolute;
  right: 0;
  bottom: 101%;
  font-size: 0.7rem;
}
#blog .grid_wrap h3 {
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid #939393;
  padding: 0 0 0.5rem 0;
}
#blog .grid_wrap p {
  padding: 1rem 0;
  font-size: 0.9rem;
}
#blog .grid_wrap .ph {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
#blog .grid_wrap .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#blog .grid_wrap .tag {
  position: absolute;
  top: auto;
  right: 5px;
  bottom: 5px;
  left: 5px;
  margin: auto;
  color: #FFF;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
}

#project {
  flex-basis: 50%;
  border-right: 1px solid #DBDBDB;
  padding: 0 1.5rem 6rem 1.5rem;
}
@media screen and (max-width: 960px) {
  #project {
    border-right: 0;
    padding: 0 0 4rem 0;
  }
}
#project h2::after {
  background-color: #FC6C3D;
}
#project .grid_wrap a::before {
  background-color: #FC6C3D;
}
#project .tag {
  background-color: #FC6C3D;
}

#stock {
  flex-basis: 50%;
  padding: 0 1.5rem 6rem 1.5rem;
}
@media screen and (max-width: 960px) {
  #stock {
    padding: 0 0 4rem 0;
  }
}
#stock h2::after {
  background-color: #31B8D6;
}
#stock .grid_wrap a::before {
  background-color: #31B8D6;
}
#stock .tag {
  background-color: #31B8D6;
}

#support p {
  width: 800px;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 2;
  margin: auto;
}
#support .illust_wrap {
  width: 900px;
  max-width: 100%;
  padding: 40px 150px 0 150px;
  margin: 1rem auto;
  position: relative;
}
@media screen and (max-width: 720px) {
  #support .illust_wrap {
    padding: 150px 0 50px 0;
  }
}
#support .illust_wrap img {
  position: absolute;
}
#support .illust_wrap img.illust1 {
  left: 50px;
  bottom: 0;
  width: 60px;
}
@media screen and (max-width: 720px) {
  #support .illust_wrap img.illust1 {
    left: 0;
  }
}
#support .illust_wrap img.illust2 {
  right: 0;
  top: 0;
  width: 80px;
}
#support .illust_wrap img.illust3 {
  right: 50px;
  top: 80px;
  width: 70px;
}
#support .grid_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 720px) {
  #support .grid_wrap {
    grid-template-columns: 1fr;
  }
}
#support .grid_wrap li {
  border: 1px solid #DBDBDB;
  padding: 2rem;
  border-radius: 2rem;
}
#support .grid_wrap li p {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}
#support .grid_wrap li div.num {
  text-align: center;
}
#support .grid_wrap li div.num > p {
  display: inline-block !important;
  width: auto;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}
#support .grid_wrap li div.num > span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 0.1rem;
}

#topics h2 {
  margin-bottom: 0;
}
#topics h2::after {
  background-color: #61C14F;
}
#topics .grid_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  align-items: flex-start;
  width: 1000px;
  max-width: 100%;
  margin: -2rem auto 5rem auto;
}
@media screen and (max-width: 960px) {
  #topics .grid_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
#topics .grid_wrap a {
  display: block;
  position: relative;
  margin-top: 6rem;
  aspect-ratio: 1/1;
}
#topics .grid_wrap a .ph {
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  transform: scale(90%);
  aspect-ratio: 1/1;
  transition: 0.3s;
  /*position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;*/
  margin: auto;
}
#topics .grid_wrap a .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#topics .grid_wrap a .txt {
  width: 100%;
  padding-bottom: 0.5rem;
  text-align: center;
  margin-top: 1rem;
  position: relative;
}
#topics .grid_wrap a .txt::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #61C14F;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}
#topics .grid_wrap a .txt .date {
  font-size: 0.7rem;
}
#topics .grid_wrap a .txt .title {
  display: inline-block;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
#topics .grid_wrap a .tag {
  text-align: center;
  margin-top: 0.4rem;
}
#topics .grid_wrap a .tag p {
  display: inline-block;
  font-size: 0.8rem;
  border: 1px solid #DBDBDB;
  background-color: #FFF;
  border-radius: 2rem;
  padding: 0.2rem 0.8rem;
  margin-top: 0.2rem;
}
#topics .grid_wrap a .tag p + p {
  margin-left: 0.2rem;
}
#topics .grid_wrap a:hover .ph {
  transform: scale(100%);
}
#topics .grid_wrap a:hover .txt::after {
  width: 100%;
}
#topics .guide a {
  display: block;
  position: relative;
  padding: 8rem 0;
  margin: 1.5rem auto 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  #topics .guide a {
    padding: 4rem 0;
  }
}
#topics .guide a h3 {
  position: relative;
  z-index: 9999;
  width: 900px;
  max-width: 100%;
  margin: auto;
}
#topics .guide a h3 ul {
  width: 100%;
  display: grid;
  grid-template-columns: auto 22em auto;
  align-items: center;
}
@media screen and (max-width: 960px) {
  #topics .guide a h3 ul {
    grid-template-columns: auto 16em auto;
  }
}
#topics .guide a h3 ul li {
  position: relative;
}
#topics .guide a h3 ul li:nth-child(1) {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 960px) {
  #topics .guide a h3 ul li:nth-child(1) {
    background-color: rgba(255, 255, 255, 0);
  }
}
#topics .guide a h3 ul li:nth-child(1)::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #FFF;
  transition: 0.5s;
}
#topics .guide a h3 ul li:nth-child(2) {
  text-align: center;
  color: #FFF;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #topics .guide a h3 ul li:nth-child(2) {
    letter-spacing: 0;
  }
}
#topics .guide a h3 ul li:nth-child(3) {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 960px) {
  #topics .guide a h3 ul li:nth-child(3) {
    background-color: rgba(255, 255, 255, 0);
  }
}
#topics .guide a h3 ul li:nth-child(3)::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #FFF;
  transition: 0.5s;
}
#topics .guide a:hover ul li:nth-child(1)::after, #topics .guide a:hover ul li:nth-child(3)::before {
  width: 100%;
}
#topics .guide a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#sponsor {
  text-align: center;
}
#sponsor h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin: 2rem auto 1rem auto;
}
#sponsor a.nagano {
  width: 200px;
  margin: auto;
}
#sponsor a.hachini {
  width: 190px;
  margin: 0 10px 0 auto;
}
#sponsor a.nupri {
  width: 190px;
  margin: 0 auto 0 10px;
}
#sponsor .bn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
#sponsor .bn_wrap img {
  max-width: 100%;
}

/*---------------------------------------------------------------/
　Copyright © R-DEPOT
/---------------------------------------------------------------*/
/*---------------------------------------------------------------/
　Copyright © R-DEPOT
/---------------------------------------------------------------*/
/* 下層ページ */
.hero-cmn {
  width: 1220px;
  max-width: 100%;
  padding: 0 20px;
  margin: 40px auto 0;
  justify-content: space-between;
  display: flex;
}
.hero-cmn.short .hero-image {
  width: 71vw;
  height: 118px;
}
.hero-cmn.project .hero-title {
  border-color: #FC6C3D;
}
.hero-cmn.area .hero-title {
  border-color: #31B8D6;
}
.hero-cmn.topics .hero-title {
  border-color: #61C14F;
}
.hero-cmn .hero-image {
  margin-right: calc(50% - 50vw);
  height: 318px;
  width: 60.5vw;
  position: relative;
}
.hero-cmn .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.hero-cmn .hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-cmn .hero-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 39.5%;
  border-left: solid 1px #939393;
}
.hero-cmn .hero-title .ttl-01 {
  padding: 0 29px;
}

@media screen and (max-width: 960px) {
  .hero-cmn .hero-image {
    width: 67vw;
  }
  .hero-cmn.short .hero-title {
    width: 39.5%;
  }
  .hero-cmn.short .hero-title .ttl-01 {
    line-height: 1em;
  }
  .hero-cmn.short .hero-title .ttl-01 span {
    margin-top: 10px;
  }
  .hero-cmn .hero-title {
    width: 33%;
  }
}
@media screen and (max-width: 720px) {
  .hero-cmn {
    flex-direction: column;
    margin-top: 50px;
  }
  .hero-cmn .hero-image {
    height: 0;
    width: 100vw;
    border-left: solid 1px #939393;
    position: relative;
    overflow: hidden;
    padding-top: 45%;
  }
  .hero-cmn .hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .hero-cmn .hero-title {
    width: 100%;
    padding-bottom: 30px;
  }
  .hero-cmn .hero-title .ttl-01 {
    padding: 0 16px;
  }
  .hero-cmn.short .hero-title {
    width: 100%;
  }
  .hero-cmn.short .hero-title .ttl-01 {
    line-height: 1.26em;
  }
  .hero-cmn.short .hero-title .ttl-01 span {
    margin-top: 0;
  }
  .hero-cmn.short .hero-image {
    width: 100vw;
    height: 0;
    padding-top: 20%;
  }
  .hero-cmn.project .hero-image {
    border-color: #FC6C3D;
  }
}
.ttl-01 {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.33em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
.ttl-01 span {
  display: block;
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 720px) {
  .ttl-01 {
    font-size: 1.88rem;
    line-height: 1.27em;
  }
}
.ttl-02 {
  display: block;
  font-size: 1.44rem;
  letter-spacing: 0.05em;
  line-height: 1.33em;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 1px solid #DBDBDB;
  text-align: left;
  margin: 100px calc(50% - 50vw) 0 0;
}
.ttl-02::after {
  display: none;
}

.ttl-03 {
  display: block;
  font-size: 1.31rem;
  line-height: 1.43em;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  padding-bottom: 15px;
  text-align: left;
  position: relative;
}
.ttl-03::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2em;
  height: 1px;
  background: #202020;
}

.ttl-04 {
  display: block;
  font-size: 1.06rem;
  line-height: 1.59em;
  font-weight: bold;
  padding-left: 11px;
  text-align: left;
  position: relative;
  margin-top: 40px;
}
.ttl-04::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1.59em;
  background: #000;
}

.txt-01 {
  font-size: 0.9rem;
  line-height: 2;
  margin: 40px auto 0;
  font-weight: 500;
}
.txt-01.lh-lg {
  line-height: 2.43em;
}

@media screen and (max-width: 720px) {
  .txt-01 {
    margin-top: 35px;
  }
  .txt-01.lh-lg {
    line-height: 2em;
  }
}
.min-contents {
  width: 1020px;
  max-width: 100%;
  padding: 0 20px;
  margin: 80px auto 0;
}
.min-contents:first-of-type {
  margin-top: 100px;
}

@media screen and (max-width: 720px) {
  .min-contents {
    margin: 60px auto 0;
  }
  .min-contents:first-of-type {
    margin-top: 50px;
  }
}
.btn-01 {
  display: block;
  width: 332px;
  max-width: 100%;
  margin: 70px auto 0;
  border-radius: 3em;
  border: 1px solid #DBDBDB;
  background-color: #FFF;
  padding: 0.4rem 1.5rem;
  position: relative;
}
.btn-01.mt-s {
  margin-top: 30px;
}
.btn-01.small {
  width: 180px;
}
@media screen and (max-width: 720px) {
  .btn-01 {
    width: 100%;
    max-width: 315px;
    margin-top: 35px;
  }
  .btn-01.lg {
    max-width: 291px;
    width: 100%;
  }
}
.btn-01::before, .btn-01::after {
  content: "";
  display: block;
  position: absolute;
}
.btn-01::before {
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.btn-01::after {
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background-color: rgb(0, 0, 0);
  transition: 0.5s;
}
.btn-01:hover::after {
  width: 25px;
}
.btn-01 p {
  padding: 0;
  margin: 0;
  display: inline-block;
  font-size: 0.88rem;
  font-weight: bold;
}
.btn-01.lg {
  height: 60px;
  padding: 0 1.5rem;
  line-height: 58px;
  font-weight: bold;
}
.btn-01.lg p {
  font-size: 1.06rem;
}
.btn-01 + .btn-01.lg {
  margin-top: 60px;
}

.only-sp {
  display: none !important;
}

@media screen and (max-width: 720px) {
  .only-pc {
    display: none !important;
  }
  .only-sp {
    display: block !important;
  }
}
.under-wrap {
  padding-bottom: 160px;
}
.under-wrap .btn.more {
  margin-top: 30px;
  cursor: pointer;
}

@media screen and (max-width: 720px) {
  .under-wrap {
    padding-bottom: 80px;
  }
}
/* About */
.bg-wt {
  margin: 50px auto 0;
  background: #FFF;
  padding: 40px;
}
.bg-wt.pd-lg {
  padding: 50px 60px;
}
.bg-wt img {
  width: 100%;
}

@media screen and (max-width: 720px) {
  .bg-wt {
    width: 100vw;
    margin: 40px calc(50% - 50vw) 0;
    padding: 30px 20px;
  }
  .bg-wt.pd-lg {
    padding: 30px 20px;
  }
}
.overallview figure {
  margin: 40px auto 0;
}

@media screen and (max-width: 720px) {
  .overallview figure {
    margin: 30px auto 0;
    max-width: 350px;
  }
}
.grid-bulletin {
  margin: 40px -30px 0;
  display: flex;
}
.grid-bulletin .item {
  width: 50%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}
.grid-bulletin .item:first-of-type h4::after {
  background: #FC6C3D;
}
.grid-bulletin .item:nth-of-type(2) h4::after {
  background: #31B8D6;
}
.grid-bulletin .item figure {
  width: 250px;
  max-width: 100%;
  height: 180px;
  margin: 30px auto 0;
}
.grid-bulletin .item p {
  flex-grow: 1;
}
.grid-bulletin h4 {
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto;
  position: relative;
  padding-bottom: 10px;
}
.grid-bulletin h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #FC6C3D;
}

@media screen and (max-width: 720px) {
  .grid-bulletin {
    margin: 35px calc(50% - 50vw) 0;
    flex-direction: column;
  }
  .grid-bulletin .item {
    padding: 0;
    width: 100%;
    margin-top: 40px;
  }
  .grid-bulletin .item:first-of-type {
    margin-top: 0;
  }
  .grid-bulletin .item figure {
    margin: 20px auto 0;
  }
  .grid-bulletin .item .txt-01 {
    margin-top: 20px;
  }
}
.about-image {
  margin: 40px auto 0;
  width: 779px;
  max-width: 100%;
}

@media screen and (max-width: 720px) {
  .about-image {
    width: 100vw;
    margin: 35px calc(50% - 50vw) 0;
    max-width: unset;
  }
}
.about-image-wrap {
  margin: 40px auto 0;
  width: 620px;
  max-width: 100%;
}

.about-image-01 {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 40px auto 0;
  padding-top: 66.6666%;
}
.about-image-01:first-child {
  margin-top: 0;
}
.about-image-01 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.about-image-01 + .caption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 10px;
  font-weight: 400;
}

@media screen and (max-width: 720px) {
  .about-image-01 {
    padding-top: 75%;
  }
}
.btn-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 70px auto 0;
}
.btn-grid .btn-01 {
  margin: 0;
}

@media screen and (max-width: 720px) {
  .btn-grid {
    flex-wrap: wrap;
  }
}
.gmap {
  margin: 85px auto 0;
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 600px;
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* My Project 一覧 */
.mid-contents {
  width: 1220px;
  max-width: 100%;
  padding: 0 20px;
  margin: 100px auto 0;
}

.list-wrap {
  margin-top: 130px;
}
.list-wrap .grid_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem 20px;
  align-items: stretch;
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .list-wrap .grid_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 720px) {
  .list-wrap .grid_wrap {
    grid-template-columns: 1fr;
    width: 500px;
    max-width: 100%;
    margin: 2rem auto 0;
  }
}
.list-wrap .grid_wrap a {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  position: relative;
  background-color: #FFF;
  padding: 1.7rem 1rem 1rem 1rem;
  border: 1px solid #DBDBDB;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 720px) {
  .list-wrap .grid_wrap a {
    padding-top: 3rem;
  }
}
.list-wrap .grid_wrap a::before {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  position: absolute;
  left: 8px;
  top: -6px;
  transition: 0.5s;
}
.list-wrap .grid_wrap a:hover::before {
  height: 30px;
}
.list-wrap .grid_wrap a:hover .ph img {
  width: 120%;
  height: 120%;
}
.list-wrap .grid_wrap.project-list a::before {
  background: #FC6C3D;
}
.list-wrap .grid_wrap.project-list a .tag {
  background-color: #FC6C3D;
}
.list-wrap .grid_wrap.area-list a::before {
  background: #31B8D6;
}
.list-wrap .grid_wrap.area-list a .tag {
  background-color: #31B8D6;
}
.list-wrap .grid_wrap .date {
  position: absolute;
  right: 0;
  bottom: 101%;
  font-size: 0.7rem;
}
.list-wrap .grid_wrap h3 {
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid #939393;
  padding: 0 0 0.5rem 0;
  margin-top: 0;
}
.list-wrap .grid_wrap p {
  padding: 1rem 0;
  font-size: 0.9rem;
}
.list-wrap .grid_wrap .ph {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.list-wrap .grid_wrap .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.list-wrap .grid_wrap .tag {
  position: absolute;
  top: auto;
  right: 5px;
  bottom: 5px;
  left: 5px;
  margin: auto;
  color: #FFF;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
}

@media screen and (max-width: 720px) {
  .list-wrap {
    margin-top: 70px;
  }
}
/* My Project・Area Stock 詳細 */
.plaid-wrap {
  background-image: url(../images/under/bg-100.jpg);
  background-size: 300px;
  background-repeat: repeat;
}
.plaid-wrap.project .hero-detail__inner::before {
  background: #FC6C3D;
}
.plaid-wrap.project .detail-item .heading {
  color: #FC6C3D;
}
.plaid-wrap.area .hero-detail__inner::before {
  background: #31B8D6;
}
.plaid-wrap.area .detail-item .heading {
  color: #31B8D6;
}
.plaid-wrap.topics {
  background-image: none;
}
.plaid-wrap.topics .hero-detail {
  width: 1020px;
}
.plaid-wrap.topics .hero-detail__inner::before {
  background: #61C14F;
}
.plaid-wrap.topics .detail-item .heading {
  color: #61C14F;
}
.plaid-wrap.topics .mid-contents {
  margin-top: 60px;
  width: 1020px;
}
.plaid-wrap.topics .mid-contents img {
  width: 780px;
  max-width: 100%;
  margin: 50px auto 0;
  height: auto !important;
}
.plaid-wrap.topics .mid-contents figure {
  width: 780px;
  max-width: 100%;
  margin: 50px auto 0;
}
.plaid-wrap.topics .mid-contents figure img {
  width: 100%;
  height: 100%;
}
.plaid-wrap.topics .mid-contents p {
  font-size: 0.9rem;
  line-height: 2;
  margin: 40px auto 0;
  font-weight: 500;
}
.plaid-wrap.topics .mid-contents h3:not([class]) {
  display: block;
  font-size: 1.06rem;
  line-height: 1.59em;
  font-weight: bold;
  padding-left: 11px;
  text-align: left;
  position: relative;
  margin-top: 40px;
}
.plaid-wrap.topics .mid-contents h3:not([class])::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1.59em;
  background: #000;
}
.plaid-wrap.topics .mid-contents .btn.more p {
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.plaid-wrap.topics .info-list dt {
  margin-top: 25px;
  font-size: 0.88rem;
  line-height: 2em;
}
.plaid-wrap.topics .info-list dd {
  font-size: 0.88rem;
  line-height: 2em;
}
.plaid-wrap.topics a:not([class]) {
  display: inline-block;
  margin-top: 30px;
  position: relative;
  font-size: 0.94rem;
  font-weight: bold;
  font-family: "Outfit", sans-serif;
  padding-right: 37px;
  transition: 0.3s;
}
.plaid-wrap.topics a:not([class])::before, .plaid-wrap.topics a:not([class])::after {
  content: "";
  display: block;
  position: absolute;
}
.plaid-wrap.topics a:not([class])::before {
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.plaid-wrap.topics a:not([class])::after {
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background-color: rgb(0, 0, 0);
  transition: 0.5s;
}
.plaid-wrap.topics a:not([class]):hover {
  color: #939393;
}
.plaid-wrap.topics a:not([class]):hover::after {
  width: 25px;
}
.plaid-wrap .caption {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 15px;
}

@media screen and (max-width: 720px) {
  .plaid-wrap.topics .mid-contents {
    margin-top: 40px;
    width: 1020px;
  }
  .plaid-wrap.topics .mid-contents img {
    margin: 40px auto 0;
  }
  .plaid-wrap.topics .mid-contents figure {
    margin: 40px auto 0;
  }
  .plaid-wrap.topics .mid-contents figure img {
    margin-top: 0;
  }
  .plaid-wrap.topics .mid-contents p {
    margin-top: 35px;
  }
  .plaid-wrap.topics .info-list dd {
    padding-left: 0;
  }
  .plaid-wrap.topics a:not([class]) {
    margin-top: 25px;
  }
}
.hero-detail {
  width: 1220px;
  max-width: 100%;
  padding: 55px 20px 0;
  margin: 0 auto;
}
.hero-detail__inner {
  position: relative;
  background-color: #FFF;
  padding: 35px 40px;
  border: 1px solid #DBDBDB;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.hero-detail__inner::before {
  content: "";
  display: block;
  width: 11px;
  height: 67px;
  position: absolute;
  left: 40px;
  top: -12px;
}
.hero-detail__inner .info {
  margin: 0 auto;
  display: flex;
}
.hero-detail__inner .date {
  font-size: 0.81rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 0 auto;
}
.hero-detail__inner .type {
  padding-left: 22px;
}
.hero-detail__inner .type span {
  font-size: 0.94rem;
  font-weight: bold;
  position: relative;
  padding: 0 10px;
}
.hero-detail__inner .type span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 1em;
  width: 1px;
  background: #DBDBDB;
}
.hero-detail__inner .type span:first-of-type {
  padding-left: 0;
}
.hero-detail__inner .type span:last-of-type::after {
  display: none;
}
.hero-detail__inner .title, .hero-detail__inner .vision {
  display: flex;
  margin: 20px auto 0;
  align-items: flex-end;
}
.hero-detail__inner .item {
  font-size: 0.81rem;
  font-weight: 500;
  line-height: 1.54em;
}
.hero-detail__inner .title h3 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1em;
  letter-spacing: 0.05em;
  padding-left: 25px;
  margin-top: 0;
}
.hero-detail__inner .vision h3 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1em;
  letter-spacing: 0.05em;
  padding-left: 17px;
  margin-top: 0;
}
.hero-detail__inner .schedule {
  color: #808080;
  font-size: 1.13em;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1em;
  padding-left: 25px;
  margin-top: 25px;
}
.hero-detail__grid {
  display: flex;
  margin: 40px -20px 0;
}
.hero-detail__grid .image {
  width: 53.6%;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-detail__grid .text {
  width: 46.4%;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-detail__grid .text .lead {
  margin-top: 25px;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 2em;
}

@media screen and (max-width: 720px) {
  .hero-detail {
    padding: 35px 10px 0;
  }
  .hero-detail__inner {
    padding: 17px 15px 30px;
  }
  .hero-detail__inner::before {
    left: 15px;
    top: -6px;
  }
  .hero-detail__inner .info {
    display: block;
    padding-left: 25px;
  }
  .hero-detail__inner .date {
    margin: 7px auto 0;
    width: 100%;
  }
  .hero-detail__inner .type {
    padding: 0;
    width: 100%;
  }
  .hero-detail__inner .title, .hero-detail__inner .vision {
    display: block;
    margin: 20px auto 0;
    align-items: center;
  }
  .hero-detail__inner .title h3 {
    font-size: 1.44rem;
    line-height: 1.3em;
    padding-left: 0;
  }
  .hero-detail__inner .vision h3 {
    font-size: 1.19rem;
    font-weight: bold;
    line-height: 1.53em;
    padding-left: 0;
  }
  .hero-detail__inner .schedule {
    padding-left: 0;
    margin-top: 20px;
  }
  .hero-detail__grid {
    flex-direction: column;
    margin: 30px auto 0;
  }
  .hero-detail__grid .image {
    order: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .hero-detail__grid .text {
    order: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .hero-detail__grid .text .lead {
    margin-top: 10px;
  }
  .hero-detail__grid .text .caption {
    margin-top: 30px;
  }
}
.detail-item {
  margin: 40px auto 0;
}
.detail-item__inner {
  display: flex;
}
.detail-item .heading {
  width: 62px;
  display: flex;
  flex-direction: column;
}
.detail-item .heading .num {
  font-size: 3.13rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
}
.detail-item .heading .caption {
  writing-mode: vertical-rl;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Outfit", sans-serif;
  margin-top: 10px;
  line-height: 62px;
}
.detail-item .heading .line {
  margin-top: 25px;
  flex-grow: 1;
  position: relative;
}
.detail-item .heading .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 45%;
  width: 1px;
  height: 100%;
  background: #939393;
}
.detail-item .text {
  width: calc(100% - 62px);
  padding-left: 65px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.detail-item .text .ttl-03 {
  margin-top: 10px;
}
.detail-item .text .description.half {
  width: 50%;
}
.detail-item .text .description.all {
  width: 100%;
}
.detail-item .text .description > p {
  font-size: 0.88rem;
  line-height: 2em;
  font-weight: 500;
  margin-top: 35px;
}
.detail-item .text .description ul {
  margin-top: 10px;
  list-style: circle;
}
.detail-item .text .description ul li {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 2em;
}
.detail-item .text .description h3:not(.ttl-03) {
  font-weight: bold;
  margin-top: 22px;
}
.detail-item .text .description h3:not(.ttl-03):first-of-type {
  margin-top: 38px;
}
.detail-item .text .description h3:not(.ttl-03) + p {
  margin-top: 10px;
}
.detail-item .text .image {
  width: 50%;
  padding-left: 40px;
}
.detail-item .text figure figcaption {
  font-size: 0.75rem;
  margin-top: 13px;
}
.detail-item .text figure img {
  margin-top: 15px;
}
.detail-item .text figure img:first-of-type {
  margin-top: 0;
}
.detail-item .text .detail-image-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 10px -9px 0;
}
.detail-item .text .detail-image-list figure {
  width: 33.3333%;
  padding: 0 9px;
  margin-top: 30px;
}

.detail-item-wrap {
  padding-bottom: 100px;
}

@media screen and (max-width: 720px) {
  .detail-item-wrap {
    padding-bottom: 50px;
  }
  .detail-item-wrap .mid-contents:first-of-type {
    margin: 25px auto 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 720px) {
  .detail-item {
    margin: 25px auto 0;
  }
  .detail-item:first-of-type {
    margin-top: 0;
  }
  .detail-item__inner {
    flex-direction: column;
    padding-right: 10px;
  }
  .detail-item .heading {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .detail-item .heading .num {
    font-size: 2.81rem;
    display: inline-block;
  }
  .detail-item .heading .caption {
    writing-mode: horizontal-tb;
    margin: 0;
    font-size: 0.94rem;
    display: inline-block;
    margin-top: 0;
    line-height: 1.19em;
    text-align: left;
    padding-left: 16px;
  }
  .detail-item .heading .line {
    display: none;
  }
  .detail-item .heading .line::after {
    display: none;
  }
  .detail-item .text {
    width: 100%;
    padding: 30px 0 30px 21px;
    display: block;
    margin: 0 auto;
    border-left: 1px solid #939393;
  }
  .detail-item .text .ttl-03 {
    margin-top: 0;
  }
  .detail-item .text .description.half {
    width: 100%;
  }
  .detail-item .text .description > p {
    margin-top: 30px;
  }
  .detail-item .text .description ul {
    margin-top: 10px;
    list-style: circle;
  }
  .detail-item .text .description h3:not(.ttl-03) {
    margin-top: 22px;
  }
  .detail-item .text .description h3:not(.ttl-03):first-of-type {
    margin-top: 22px;
  }
  .detail-item .text .image {
    width: 100%;
    padding-left: 0;
    margin-top: 35px;
  }
  .detail-item .text .detail-image-list {
    flex-direction: column;
    margin: 5px auto 0;
  }
  .detail-item .text .detail-image-list figure {
    width: 100%;
    padding: 0;
    margin-top: 25px;
  }
}
.detail-contact {
  margin: 100px auto 0;
}
.detail-contact__inner {
  display: flex;
  margin: 0 -10px;
}
.detail-contact .btn-wrap {
  width: 50%;
  margin: 0 10px;
}
.detail-contact .staff {
  width: 50%;
  border-radius: 20px;
  padding: 30px;
  background: #FFF;
  border: 1px solid #DDD;
  margin: 0 10px;
}
.detail-contact .staff p {
  font-size: 0.81rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 20px;
}
.detail-contact .staff .staff-name {
  font-size: 1.13rem;
  line-height: 1.33em;
  margin-top: 5px;
}
.detail-contact .staff .comment {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.71em;
  text-align: left;
  margin-top: 25px;
}
.detail-contact .staff figure {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.detail-contact .staff figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  object-fit: cover;
}

@media screen and (max-width: 720px) {
  .detail-contact {
    margin: 50px auto 0;
  }
  .detail-contact__inner {
    flex-direction: column;
    margin: 0;
  }
  .detail-contact .btn-wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .detail-contact .staff {
    width: 100%;
    max-width: 500px;
    padding: 30px 20px;
    margin: 15px auto 0;
  }
}
.btn-lg {
  display: block;
  width: 100%;
  height: 116px;
  line-height: 114px;
  font-size: 1.38rem;
  font-weight: bold;
  border: 1px solid #DBDBDB;
  border-radius: 20px;
  margin-top: 15px;
  padding: 0 40px 0 30px;
  position: relative;
  background: #FFF;
}
.btn-lg:first-of-type {
  margin-top: 0;
}
.btn-lg::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background: #DBDBDB;
  top: 50%;
  right: 40px;
  z-index: 0;
}
.btn-lg span {
  position: relative;
  display: inline-block;
  width: 100%;
}
.btn-lg span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: #202020;
  width: 8px;
  height: 1px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.btn-lg span::after {
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid #202020;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
  z-index: 1;
}
.btn-lg:hover span::before {
  width: 40px;
}

@media screen and (max-width: 720px) {
  .btn-lg {
    height: 80px;
    line-height: 78px;
    font-size: 1.13rem;
    padding: 0 20px;
  }
  .btn-lg::after {
    right: 20px;
  }
}
.new-list-wrap {
  padding-bottom: 100px;
}
.new-list-wrap .list-wrap {
  margin-top: 70px;
}
.new-list-wrap .btn {
  margin-top: 135px !important;
}

@media screen and (max-width: 720px) {
  .new-list-wrap {
    padding-bottom: 50px;
  }
  .new-list-wrap .list-wrap {
    margin-top: 50px;
  }
  .new-list-wrap .btn {
    margin-top: 40px !important;
  }
}
.new-myproject h2, .new-areastock h2, .new-topics h2 {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin: 2rem auto;
  position: relative;
  padding-bottom: 0.5rem;
}
.new-myproject h2::after, .new-areastock h2::after, .new-topics h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #CCC;
}

.new-myproject h2::after {
  background-color: #FC6C3D;
}

.new-areastock h2::after {
  background-color: #31B8D6;
}

.new-topics h2::after {
  background-color: #61C14F;
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.info-list dt {
  font-weight: bold;
  width: 101px;
  margin: 30px auto 0;
  line-height: 30px;
}
.info-list dd {
  width: calc(100% - 101px);
  padding-left: 20px;
  margin: 25px auto 0;
}
.info-list dd ul {
  display: flex;
  flex-wrap: wrap;
}
.info-list dd ul li {
  margin-top: 5px;
  font-size: 0.88rem;
  border-radius: 15px;
  line-height: 28px;
  height: 30px;
  display: inline-block;
  padding: 0 10px;
  margin-right: 5px;
  border: 1px solid #DBDBDB;
}
.info-list dd ul li.on {
  background: #202020;
  border-color: #202020;
  color: #FFF;
}

@media screen and (max-width: 720px) {
  .info-list {
    margin-top: 0;
    flex-direction: column;
  }
  .info-list dt {
    width: 100%;
    margin: 35px auto 0;
  }
  .info-list dd {
    width: 100%;
    padding-left: 20px;
    margin: 10px auto 0;
  }
}
@media screen and (max-width: 720px) {
  .stock-info {
    margin-top: 45px;
  }
}
/* Topics一覧 */
.topics-list-wrap .topics-cat-list-wrap {
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  justify-self: center;
}
.topics-list-wrap .topics-cat-list {
  display: none;
}
.topics-list-wrap .topics-cat-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}
.topics-list-wrap .topics-cat-list li {
  display: block;
  font-size: 0.88rem;
  border-radius: 15px;
  line-height: 28px;
  height: 30px;
  display: inline-block;
  padding: 0 10px;
  margin-right: 5px;
  border: 1px solid #DBDBDB;
  background: #FFF;
  transition: all 0.3s ease;
  margin-top: 5px;
  text-decoration: none;
}
.topics-list-wrap .topics-cat-list li.check {
  background: #61C14F;
  border-color: #61C14F;
  color: #FFF;
}
.topics-list-wrap .topics-cat-list li:hover {
  background: #61C14F;
  border-color: #61C14F;
  color: #FFF;
}
.topics-list-wrap .grid_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  align-items: flex-start;
  width: 1000px;
  max-width: 100%;
  margin: 50px auto 0;
}
@media screen and (max-width: 960px) {
  .topics-list-wrap .grid_wrap {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}
.topics-list-wrap .grid_wrap a {
  display: block;
  position: relative;
  margin-top: 0;
  aspect-ratio: 1/1;
}
.topics-list-wrap .grid_wrap a .ph {
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  transform: scale(90%);
  aspect-ratio: 1/1;
  transition: 0.3s;
  margin: auto;
}
.topics-list-wrap .grid_wrap a .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.topics-list-wrap .grid_wrap a .txt {
  width: 100%;
  padding-bottom: 0.5rem;
  text-align: center;
  margin-top: 1rem;
  position: relative;
}
.topics-list-wrap .grid_wrap a .txt::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #61C14F;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}
.topics-list-wrap .grid_wrap a .txt .date {
  font-size: 0.75rem;
}
.topics-list-wrap .grid_wrap a .txt .title {
  display: inline-block;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
.topics-list-wrap .grid_wrap a .tag {
  text-align: center;
  margin-top: 0.4rem;
}
.topics-list-wrap .grid_wrap a .tag p {
  display: inline-block;
  font-size: 0.8rem;
  border: 1px solid #DBDBDB;
  background-color: #FFF;
  border-radius: 2rem;
  padding: 0.2rem 0.8rem;
  margin-top: 0.2rem;
}
.topics-list-wrap .grid_wrap a .tag p + p {
  margin-left: 0.2rem;
}
.topics-list-wrap .grid_wrap a:hover .ph {
  transform: scale(100%);
}
.topics-list-wrap .grid_wrap a:hover .txt::after {
  width: 100%;
}

@media screen and (max-width: 720px) {
  .topics-list-wrap {
    margin-top: 50px;
  }
  .topics-list-wrap .topics-cat-list-wrap {
    margin: 30px auto 0;
  }
  .topics-list-wrap .topics-cat-list {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 1;
    display: block;
    background-color: #FFF;
    padding: 0 13px;
    font-size: 0.88rem;
    line-height: 1em;
    height: 40px;
    border: 1px solid #DBDBDB;
    cursor: pointer;
    border-radius: 32.5px;
    color: #000;
    min-width: 260px;
    margin: 0 auto;
  }
  .topics-list-wrap .topics-cat-list::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1px #202020;
    border-right: solid 1px #202020;
    position: absolute;
    right: 14px;
    top: 14px;
    transform: rotate(135deg);
  }
  .topics-list-wrap .topics-cat-list.open::after {
    transform: rotate(-45deg);
  }
  .topics-list-wrap .topics-cat-list li {
    display: none;
    list-style: none;
    font-size: 0.88rem;
    border-radius: 0;
    line-height: 38px;
    height: auto;
    padding: 0 10px;
    margin-right: 0;
    border: none;
    background: #FFF;
    margin: 0 auto;
    width: calc(100% - 4px);
  }
  .topics-list-wrap .topics-cat-list li a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
  }
  .topics-list-wrap .topics-cat-list li.check {
    background: #FFF;
    border-color: transparent;
    border: none;
    color: #000;
    font-weight: 600;
  }
  .topics-list-wrap .topics-cat-list li:hover {
    background: #FFF;
    border-color: transparent;
    border: none;
    color: #000;
    font-weight: 600;
  }
}
@media only screen and (max-width: 500px) {
  .topics-list-wrap .grid_wrap {
    grid-template-columns: 1fr;
  }
}
.faq-wrap {
  width: 1120px;
  max-width: 100%;
  padding: 0 20px;
  margin: 100px auto 0;
}
.faq-wrap .min-contents {
  padding: 0;
}

@media screen and (max-width: 720px) {
  .faq-wrap {
    margin-top: 50px;
  }
}
.faq-cat-list {
  display: flex;
  margin: 0 -2.5px;
}
.faq-cat-list li {
  display: block;
  padding: 0 2.5px;
  width: 20%;
}
.faq-cat-list li a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 24px 8px;
  background: #FFF;
  border: 1px solid #DBDBDB;
  transition: all 0.3s ease-in-out;
}
.faq-cat-list li a p {
  font-size: 0.94rem;
  font-weight: bold;
  line-height: 1.3em;
  text-align: center;
  margin-top: 15px;
}
.faq-cat-list li a img {
  width: 70px;
  height: 50px;
}
.faq-cat-list li a:hover {
  border-color: #202020;
}

@media screen and (max-width: 720px) {
  .faq-cat-list {
    display: block;
    margin: 0 auto;
  }
  .faq-cat-list li {
    display: block;
    padding: 0;
    width: 100%;
    max-width: 275px;
    margin: 0 auto;
  }
  .faq-cat-list li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 4px;
    margin-top: 3px;
  }
  .faq-cat-list li a p {
    line-height: 1em;
    text-align: left;
    margin: 0;
    display: inline-block;
    width: calc(100% - 85px);
  }
  .faq-cat-list li a img {
    margin: 0 auto 0 0;
  }
}
.accordion {
  width: 100%;
}

.accordion-hidden {
  display: none;
}

.accordion-open {
  display: block;
  padding: 25px 80px 25px 75px;
  background: #FFF;
  cursor: pointer;
  margin: 5px 0 0;
  position: relative;
  border: 1px solid #DBDBDB;
}
.accordion-open::before, .accordion-open::after {
  content: "";
  width: 17px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s ease-in-out;
}

.accordion-hidden:checked + .accordion-open::after {
  transform: translateY(-50%) rotate(0);
}
.accordion-hidden:checked + .accordion-open + .accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px;
}

.accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.accordion_qa .Q, .accordion_qa .A {
  position: relative;
}
.accordion_qa .Q {
  font-size: 1rem;
  font-weight: bold;
}
.accordion_qa .Q::before {
  content: "Q";
  font-size: 2.06rem;
  font-family: "Outfit", sans-serif;
  display: block;
  position: absolute;
  top: -0.6em;
  left: -58px;
  font-weight: 400;
}
.accordion_qa .A {
  font-size: 1rem;
  font-weight: bold;
}
.accordion_qa .A::before {
  content: "A";
  font-size: 2.06rem;
  font-family: "Outfit", sans-serif;
  display: block;
  position: absolute;
  top: -0.6em;
  left: -58px;
  font-weight: 400;
}
.accordion_qa .answer-text {
  display: block;
  margin-top: 10px;
}
.accordion_qa .accordion-hidden:checked + .accordion-open {
  border-bottom: none;
}
.accordion_qa .accordion-hidden:checked + .accordion-open + .accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 75px;
  border: 1px solid #DBDBDB;
  border-top: none;
  background: #FFF;
}

@media screen and (max-width: 720px) {
  .accordion-open {
    padding: 18px 29px 17px 36px;
    margin: 5px 0 0;
  }
  .accordion-open::before, .accordion-open::after {
    content: "";
    width: 13px;
    right: 10px;
  }
  .accordion_qa .Q {
    font-size: 0.88rem;
    font-weight: bold;
  }
  .accordion_qa .Q::before {
    font-size: 1.56rem;
    top: -0.5em;
    left: -26px;
  }
  .accordion_qa .A {
    font-size: 0.88rem;
    font-weight: bold;
  }
  .accordion_qa .A::before {
    font-size: 1.56rem;
    top: -0.5em;
    left: -26px;
  }
  .accordion_qa .answer-text {
    margin-top: 15px;
    font-size: 0.88rem;
  }
  .accordion_qa .accordion-hidden:checked + .accordion-open + .accordion-inner {
    padding: 5px 29px 17px 36px;
  }
}
.faq-item:first-of-type .ttl-02 {
  margin-top: 100px;
}
.faq-item .ttl-02 {
  margin-top: 70px;
}
.faq-item .min-contents {
  margin-top: 60px;
}
.faq-item .ttl-03 {
  margin-top: 60px;
}
.faq-item .ttl-03 + .accordion {
  margin-top: 40px;
}

@media screen and (max-width: 720px) {
  .faq-item:first-of-type .ttl-02 {
    margin-top: 50px;
  }
  .faq-item .ttl-02 {
    margin-top: 40px;
  }
  .faq-item .min-contents {
    margin-top: 30px;
  }
  .faq-item .ttl-03 {
    margin-top: 30px;
  }
  .faq-item .ttl-03 + .accordion {
    margin-top: 25px;
  }
}
/* お問い合わせ */
.contact-wrap {
  width: 820px;
  max-width: 100%;
  padding: 0 20px;
  margin: 100px auto 0;
}
.contact-wrap > .btn-01.lg {
  margin-top: 70px;
}

@media screen and (max-width: 720px) {
  .contact-wrap {
    margin-top: 50px;
  }
}
.lead01 {
  font-weight: bold;
  line-height: 2em;
  font-size: 1rem;
}

@media screen and (max-width: 720px) {
  .lead01 {
    font-size: 0.94rem;
  }
}
.form-table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin-top: 30px;
}
.form-table dt {
  width: 100%;
  padding: 35px 0 0;
  display: block;
  font-size: 1rem;
  font-weight: bold;
}
.form-table dt.req span {
  position: relative;
  display: block;
}
.form-table dt.req span:first-of-type::after {
  content: "※必須";
  display: inline-block;
  color: #E81212;
  font-size: 0.81rem;
  margin: 2px 0 0 15px;
  font-weight: 500;
  position: absolute;
  top: 0;
}
.form-table dt span + span {
  display: block;
  font-size: 0.88rem;
  font-weight: bold;
  margin-top: 10px;
}
.form-table dd {
  width: 100%;
  padding: 10px 0 0;
  display: block;
}
.form-table dd.check-wrap {
  padding: 5px 0;
}
.form-table .hidden {
  display: none;
}
.form-table .err-msg {
  color: #E81212;
  font-size: 0.88rem;
  margin-top: 10px;
}
.form-table input[type=text],
.form-table input[type=tel],
.form-table input[type=email],
.form-table select,
.form-table textarea {
  font-size: 1rem;
  background-color: #FFF;
  border: 1px solid #DBDBDB !important;
  padding: 18px 10px;
  width: 100%;
}
.form-table dd.err input[type=text],
.form-table dd.err input[type=tel],
.form-table dd.err input[type=email],
.form-table dd.err textarea {
  border: 1px solid #E81212 !important;
}
.form-table .form-agreement {
  margin: 30px auto 0;
  text-align: center;
  font-size: 0.88rem;
}
.form-table .form-agreement a {
  text-decoration: underline;
  transition: all 0.3s ease;
}
.form-table .form-agreement a:hover {
  text-decoration: none;
}
.form-table input[type=checkbox] {
  display: none;
}
.form-table input[type=checkbox]:checked + span::after {
  transform: scale(1) rotate(-45deg);
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}
.form-table input[type=checkbox]:checked + span::before {
  background-color: #202020;
  border-color: #202020;
}
.form-table input[type=checkbox] + span {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}
.form-table input[type=checkbox] + span:before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  left: 0;
  top: calc(50% - 10px);
  background-color: #FFF;
  transition: all 0.3s ease;
  border: 1px solid #DBDBDB;
}
.form-table input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(50% - 2px);
  width: 11px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: scale(0);
  transition: all 0.3s ease;
}
.form-table .true button:hover:hover::after {
  width: 5px;
}
.form-table .btn-01.lg {
  margin-top: 23px;
}

@media screen and (max-width: 720px) {
  .form-table dt {
    padding-top: 30px;
  }
  .form-table input[type=text],
.form-table input[type=tel],
.form-table input[type=email],
.form-table select,
.form-table textarea {
    padding: 14px 10px;
  }
}
/* フッター修正 */
.foot_contact .btn-01 {
  margin: 0;
  width: 220px;
}

/* トップページ修正 */
#hero .inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  z-index: 9;
}
#hero .inner .name {
  font-size: 1.2rem;
  margin: 0 auto;
  letter-spacing: 0.05em;
  width: 100px;
}
#hero .inner .title {
  width: 670px;
  max-width: 80%;
  height: auto;
  margin: 30px auto 0;
}
#hero .inner .title img {
  width: 100%;
  height: 100%;
}
#hero .inner .catch {
  font-size: 1rem;
  margin: 30px auto 0;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 720px) {
  #hero .inner .name {
    font-size: 1rem;
  }
  #hero .inner .title {
    margin-top: 20px;
    width: 70%;
    max-width: none;
  }
  #hero .inner .catch {
    font-size: 1.05rem;
    margin-top: 20px;
  }
}
#project h2 span {
  font-size: 1.1rem;
  display: block;
  color: #FC6C3D;
  letter-spacing: 0.05em;
}

#stock h2 span {
  font-size: 1.1rem;
  display: block;
  color: #31B8D6;
  letter-spacing: 0.05em;
}

#about .guide a {
  display: block;
  position: relative;
  padding: 8rem 0;
  margin: 1.5rem auto 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  #about .guide a {
    padding: 4rem 0;
  }
}
#about .guide a h3 {
  position: relative;
  z-index: 9999;
  width: 900px;
  max-width: 100%;
  margin: auto;
}
#about .guide a h3 ul {
  width: 100%;
  display: grid;
  grid-template-columns: auto 22em auto;
  align-items: center;
}
@media screen and (max-width: 960px) {
  #about .guide a h3 ul {
    grid-template-columns: auto 16em auto;
  }
}
#about .guide a h3 ul li {
  position: relative;
}
#about .guide a h3 ul li:nth-child(1) {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 960px) {
  #about .guide a h3 ul li:nth-child(1) {
    background-color: rgba(255, 255, 255, 0);
  }
}
#about .guide a h3 ul li:nth-child(1)::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #FFF;
  transition: 0.5s;
}
#about .guide a h3 ul li:nth-child(2) {
  text-align: center;
  color: #FFF;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #about .guide a h3 ul li:nth-child(2) {
    letter-spacing: 0;
  }
}
#about .guide a h3 ul li:nth-child(3) {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 960px) {
  #about .guide a h3 ul li:nth-child(3) {
    background-color: rgba(255, 255, 255, 0);
  }
}
#about .guide a h3 ul li:nth-child(3)::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #FFF;
  transition: 0.5s;
}
#about .guide a:hover ul li:nth-child(1)::after, #about .guide a:hover ul li:nth-child(3)::before {
  width: 100%;
}
#about .guide a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#contact p {
  width: 800px;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 2;
  margin: auto;
  text-align: center;
}
#contact .btn-grid {
  margin-top: 30px;
}
#contact .btn-01 p {
  text-align: left;
}

.lum-lightbox.lum-open {
  z-index: 9999999;
  background: transparent;
  background: rgba(0, 0, 0, 0.85);
}

.lum-close-button {
  top: 37px !important;
  right: 37px !important;
  opacity: 1 !important;
}

.lum-lightbox-caption {
  margin-top: 20px !important;
}

.lum-gallery-button::after {
  width: 22px !important;
  height: 22px !important;
}

.lum-lightbox-inner img {
  width: 856px !important;
  padding: 0 28px !important;
}

.lum-lightbox-inner {
  left: 0 !important;
  right: 0 !important;
}

.lum-next-button {
  left: calc(50% + 392px) !important;
  right: unset !important;
  top: calc(50% - 34px) !important;
}

.lum-previous-button {
  right: calc(50% + 392px) !important;
  left: unset !important;
  top: calc(50% - 34px) !important;
}

@media only screen and (max-width: 960px) {
  .lum-next-button {
    left: unset !important;
    right: calc(50% - 400px - 38px) !important;
  }
  .lum-previous-button {
    right: unset !important;
    left: calc(50% - 400px - 38px) !important;
  }
}
@media only screen and (max-width: 890px) {
  .lum-next-button {
    right: calc(50% - 400px - 28px) !important;
  }
  .lum-previous-button {
    left: calc(50% - 400px - 28px) !important;
  }
}
@media only screen and (max-width: 856px) {
  .lum-next-button {
    right: 0 !important;
  }
  .lum-previous-button {
    left: 0 !important;
  }
}
@media screen and (max-width: 720px) {
  .lum-close-button {
    top: 17px !important;
    right: 17px !important;
  }
}
@media only screen and (max-width: 460px) {
  .lum-previous-button,
.lum-next-button {
    top: calc(50% - 10px) !important;
  }
  .lum-lightbox-caption {
    bottom: unset !important;
  }
  .lum-lightbox-inner img {
    max-width: 100% !important;
  }
}
#project-list .btn.more.red, #topics-list .btn.more.red {
  color: red;
}/*# sourceMappingURL=style.css.map */