@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;700&family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  /* アニメーション時間は 0.8秒 */
  transition: opacity 0.8s ease;
}

body.fadeout::after {
  opacity: 1;
}

body.fadeout div {
  transform: scale(1.05);
}

div {
  transition: transform 0.5s ease;
}

section {
  width: 100%;
  padding: 10rem 0;
}

@media (max-width: 900px) {
  section {
    padding: 5rem 0;
  }
}

.container {
  width: 100%;
  max-width: 1140;
  margin: 0 auto;
  padding: 0 2rem 0 2rem;
}

.container-fruid {
  width: 100%;
}

.grayarea {
  background-color: #f2f2f2;
}

.flexarea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

img {
  width: 100%;
}

h2 {
  font-size: 3.2rem;
  color: #76d1f3;
  text-align: center;
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2rem;
  color: #000;
  text-align: center;
  padding: 2rem 0 1rem;
  line-height: 1.7em;
}

p {
  line-height: 2em;
  text-align: center;
}

a:hover {
  color: #76d1f3;
}

.yohaku {
  margin-top: 96px;
}

@media (max-width: 600px) {
  .yohaku {
    margin-top: 80px;
  }
}

.pc {
  display: block;
}

@media (max-width: 600px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 600px) {
  .sp {
    display: block;
  }
}

.loading {
  width: 100%;
  height: 100vh;
  background-color: #76d1f3;
  position: relative;
}

/*========= ヘッダー===============*/
header {
  position: fixed;
  z-index: 100;
  width: 100%;
}

header .line {
  background: #b1d7e5;
  background: linear-gradient(90deg, #b1d7e5 0%, #c2e5b1 100%);
  height: 3px;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}

.header__logo {
  width: 200px;
}

.header__nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.header__nav ul li+li {
  margin-left: 2rem;
}

.header__nav ul li.telnav {
  background-color: #76d1f3;
  padding: 0.5rem;
  font-size: 2rem;
  color: #fff;
  border-radius: 10px;
}

.header__nav ul a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
}

.header__nav ul a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #76d1f3;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.4s;
}

.header__nav ul a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media (max-width: 1050px) {
  .header__nav {
    display: none;
  }
}

.header__nav-sp {
  display: none;
}

@media (max-width: 1050px) {
  .header__nav-sp {
    display: block;
  }
}

/*========= スマホ用ハンバーガー　ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000000;
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
  width: 80%;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

#g-nav.panelactive ul li img {
  width: 70%;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*========= メインビジュアル ===============*/
.mv {
  z-index: -1;
  height: 100vh;
  width: 100%;
  background-image: url("../img/mv/mv2.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

@media (max-width: 900px) {
  .mv {
    background-image: url("../img/mv/mv1_sp.jpg");
  }
}

.mv h2 {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3vw;
  color: #000;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  background: rgba(255, 255, 255, 0.7);
  padding: 5rem 0;
}

@media (max-width: 900px) {
  .mv h2 {
    width: 95%;
    top: 50%;
    font-size: 4.5vw;
  }
}

.mv h2 span {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #b1d7e5 60%);
}

@media (max-width: 900px) {
  ul.companycontents__list {
    flex-direction: column;
  }
}

ul.companycontents__list li {
  width: 30%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 8px 3px #ccc;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  ul.companycontents__list li {
    width: 90%;
    margin-bottom: 2rem;
  }
}

ul.companycontents__list li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 900px) {
  ul.companycontents__list li img {
    height: 170px;
  }
}

ul.companycontents__list li div {
  padding: 0 2rem 2rem 2rem;
}

ul.companycontents__list li p {
  line-height: 1.5;
  text-align: left;
}

ul.companycontents__list li a {
  text-align: center;
  display: block;
  border: 1px solid #000;
  padding: 1.5rem;
  margin-top: 1rem;
  position: relative;
}

ul.companycontents__list li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

ul.companycontents__list li a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #76d1f3;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

ul.companycontents__list li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

ul.companycontents__list li a:hover {
  border: 1px solid #76d1f3;
  color: #fff;
}

footer {
  width: 100%;
  font-size: 1.4rem;
  padding: 5rem 0 2rem 0;
}

@media (max-width: 900px) {
  footer {
    padding: 4rem 0 2rem 0;
  }
}

footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
  }
}



@media (max-width: 900px) {
  footer .footer__companyprofile {
    margin-bottom: 3rem;
  }
}

footer li {
  margin-bottom: 1.5rem;
}

footer .footer__nav {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  footer .footer__nav {
    flex-direction: row;
  }

  footer .footer__nav ul+ul {
    margin-left: 1rem;
  }
}

footer .footer__nav li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
}

footer .copyright {
  text-align: center;
  padding-top: 5rem;
}

@media (max-width: 600px) {
  footer .copyright {
    padding-top: 2rem;
    padding-bottom: 5rem;
    font-size: 1rem;
  }
}

.fixedfooter {
  display: none;
}

@media (max-width: 900px) {
  .fixedfooter {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    background-color: #000000;
    padding: 1rem 0 1rem 0;
    transition: 0.5s;
  }

  .fixedfooter ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .fixedfooter ul li {
    font-size: 1.7rem;
    color: #fff;
    width: 47%;
    text-align: center;
    border: 1px solid #fff;
  }

  .fixedfooter ul li a {
    display: block;
    padding: 1rem 0 1rem 0;
  }

  .fixedfooter ul li a:hover {
    background-color: #fff;
    color: #afea92;
  }
}

.show {
  transform: translate(-50%, 0);
}

.formarea table {
  border-collapse: collapse;
}

.formarea p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}

.formarea input[type="submit"],
.formarea input[type="text"],
.formarea input[type="email"],
.formarea input[type="number"],
.formarea select,
.formarea textarea,
.formarea button {
  /* -moz-appearance: none;
  -webkit-appearance: none; */
  box-shadow: none;
  outline: none;
  border: none;
}

.formarea input[type="text"],
.formarea input[type="email"],
.formarea input[type="number"],
.formarea textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 480px;
  transition: 0.8s;
  border-radius: 0;
}

@media (max-width: 600px) {

  .formarea input[type="text"],
  .formarea textarea {
    width: 300px;
  }
}

.formarea input[type="text"]:focus,
.formarea textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.formarea textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

.formarea input::placeholder,
.formarea textarea::placeholder {
  color: #ccc;
}

.formarea ::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.formarea ::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

.formarea :-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.formarea .form-table {
  width: 100%;
}

.formarea .form-table th,
.formarea .form-table td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px;
}

@media (max-width: 600px) {

  .formarea .form-table th,
  .formarea .form-table td {
    display: block;
    width: 300px;
    border-bottom: none;
  }
}

.formarea .form-table th {
  background: rgba(175, 234, 146, 0.3);
  padding-left: 50px;
  position: relative;
  text-align: left;
  min-width: 200px;
}

@media (max-width: 600px) {
  .formarea .form-table th {
    text-align: center;
    padding-left: 0;
    width: 100%;
  }
}

.formarea .submit {
  background-color: salmon;
  padding: 1rem 5rem;
  border-radius: 5px;
}

.formarea .submit:hover {
  color: salmon;
  background-color: white;
  border: 1px solid salmon;
}

.pageheader_housingsupport {
  background: url("../img/housing_support/pageheader.jpg") no-repeat center;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageheader_housingsupport h3 span {
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .pageheader_housingsupport {
    height: 300px;
  }
}

.pageheader_mediation {
  background: url("../img/mediation/pageheader.jpg") no-repeat center;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageheader_mediation h3 {
  color: white;
}

.pageheader_mediation h3 span {
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .pageheader_mediation {
    height: 300px;
  }
}

.pageheader_sustainability {
  background: url("../img/sustainability/pageheader.jpg") no-repeat center;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageheader_sustainability h3 {
  color: white;
}

.pageheader_sustainability h3 span {
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .pageheader_sustainability {
    height: 300px;
  }
}

.pageheader_companyprofile {
  background: url("../img/companyprofile/pageheader.jpg") no-repeat center;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageheader_companyprofile h3 {
  color: white;
}

.pageheader_companyprofile h3 span {
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .pageheader_companyprofile {
    height: 300px;
  }
}

#companyprofile dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  border-top: 1px solid #ccc;
}

#companyprofile dl dt {
  flex-basis: 25%;
  padding: 20px;
  background-color: rgba(118, 209, 243, 0.2);
  border-bottom: 1px solid #ccc;
}

#companyprofile dl dd {
  flex-basis: 75%;
  padding: 20px;
  background-color: white;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 600px) {
  #companyprofile dl {
    flex-flow: column;
  }
}

.pageheader_privacypolicy {
  background: url("../img/privacypolicy/pageheader.jpg") no-repeat center;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageheader_privacypolicy h3 {
  color: white;
}

.pageheader_privacypolicy h3 span {
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .pageheader_privacypolicy {
    height: 300px;
  }
}

#privacypolicycontents h3 {
  color: #afea92;
  border-bottom: 3px dotted #afea92;
  margin-top: 5rem;
}

#privacypolicycontents h3:first-child {
  margin-top: 0;
}

.pageheader_group {
  background: url("../img/group/pageheader.jpg") no-repeat center;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageheader_group h3 {
  color: white;
}

.pageheader_group h3 span {
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .pageheader_group {
    height: 300px;
  }
}

#groupcontents .groupcontainer {
  display: flex;
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  #groupcontents .groupcontainer {
    flex-flow: column;
  }
}

#groupcontents .groupcontainer:last-child {
  margin-bottom: 0;
}

#groupcontents .group_photo {
  flex-basis: 50%;
}

#groupcontents .group_text {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(175, 234, 146, 0.2);
  padding: 2rem;
}

#groupcontents .group_text h3 {
  color: #76d1f3;
  font-size: 3rem;
  padding-bottom: 2rem;
}

#groupcontents .group_text ul {
  text-align: center;
}

#groupcontents .group_text ul li {
  line-height: 1.5;
}

#groupcontents .group_text p {
  margin-top: 2rem;
  line-height: 1.2;
}

/*# sourceMappingURL=style.css.map */


/* 事例紹介のcssはここに記入しました。   */

.pageheader_example {
  background: url("../img/example/pageheader.jpg") no-repeat center;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageheader_example h3 {
  color: white;
}

.pageheader_example h3 span {
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .pageheader_example {
    height: 300px;
  }
}

ul.example li {
  text-align: center;
  font-size: 2.5rem;
  margin: 4rem 0 4rem;
}


/* 個別ページのcssはここに記入しました。*/
.singleTitle {
  margin-top: 3rem;
}

@media screen and (max-width: 900px) {
  .singleTitle {
    margin-top: 6rem;
  }

}

.singleContent {
  max-width: 100%;
  width: 1000px;
  padding: 1rem;
  margin: 0 auto;
}

.singleContent p {
  text-align: justify;
}

.singleBack {
  text-align: center;
  display: block;
  border: 1px solid #000;
  padding: 1.5rem;
  width: 100%;
  max-width: 375px;
  margin: 1rem auto;
}