@charset "UTF-8";
/*||| component |||*/
/*▽a,button*/
.linkButton {
  position: relative;
  display: block;
  padding: 3px 18px;
  background-color: #efefef;
  text-align: center;
  text-decoration: none;
  color: #2e393c;
}

.linkButton::after {
  font-family: 'Material Icons Outlined';
  content: "\e5e1";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*▽nav*/
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-bottom: 5px;
}

nav li {
  position: relative;
}

nav li::after,
nav li:first-child:before {
  position: absolute;
  /* bottom: calc(50% - 12px); */
  bottom: 4px;
  content: "";
  height: 20px;
}

nav li::after {
  right: 0;
  border-right: 1px solid #fff;
}

nav li:first-child:before {
  left: 0;
  border-left: 1px solid #fff;
}

nav a {
  display: block;
  padding: 2px 24px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
nav a p{
	font-size: 12px;
}

nav .child {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 999;
}

nav .child a {
  /*background-color: #d82258;*/
  background-color: rgba(216, 34, 88, 0.9);
}

/*▽mainVisual*/
.mainVisual {
  position: relative;
}

.mainVisual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.mainVisual .textArea {
  position: relative;
  /*z-index用*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0 10px;
  width: 980px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 400px;
  z-index: 99;
}

.mainVisual .textArea .text {
  padding: 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 0 20px black ,0 0 20px black ,0 0 20px black;
}

/*▽componentブレイクポイント*/
@media screen and (min-width: 800px) {
  /*pc*/
  .linkButton {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .linkButton:hover {
    background-color: #a40b5e;
    color: #fff;
  }
  /*pc*/
  nav a:hover {
    background-image: url("/images/bg_hover.png");
    background-repeat: repeat;
  }
}

/*||| project |||*/
/*トップページ*/
.catchArea{
	margin-bottom: 50px;
}
.catchArea h1 {
  margin-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #a40b5e;
  font-size: 45px;
  font-weight: 400;
}
.catchArea p{
	font-weight: 500;
	font-size: 24px;
}

/*ご相談項目*/
.consultationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 15px;
  margin-bottom: 50px;
  list-style: none;
}

.consultationList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: calc(50% - 10px);
}

.consultationList li .consultationTag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: calc(80px / 2);
  background-color: #a40b5e;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 2px;
  line-height: 1.3;
  white-space: nowrap;
}

.consultationList li .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  line-height: 1.2;
}

/*お知らせ*/
.newsArea {
  width: 600px;
}

.newsArea .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 10px;
}

.newsArea .title::before {
  display: block;
  content: "";
  margin: 3px 10px 3px 0;
  border-left: 5px solid #a40b5e;
}

.newsArea dl {
  padding: 10px;
  height: 260px;
  border: 1px solid #ccc;
  overflow: hidden;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.newsArea dl dt, .newsArea dl dd {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.newsArea dl dt {
  margin-bottom: 5px;
  font-size: 18px;
}

.newsArea dl dt time {
  margin-right: 10px;
  font-size: 16px;
}

.newsArea dl dt .newsTag {
  margin-right: 10px;
  padding: 0 8px;
  background-color: #a40b5e;
  font-size: 12px;
  font-weight: 200;
  color: #fff;
  vertical-align: 1px;
}

.newsArea dl dd:not(:last-of-type) {
  margin-bottom: 10px;
}

.newsArea dl dd a {
  color: #2e393c;
  text-decoration: none;
}

.newsArea .linkButton {
  margin-top: 10px;
}

/*▽projectブレイクポイント*/
@media screen and (min-width: 800px) {
  /*pc*/
  .newsArea dl a {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .newsArea dl a:hover {
    color: #a40b5e;
  }
}
/*# sourceMappingURL=object.css.map */