@charset "UTF-8";
/* 
  関数
*/
/*$fc-black:#707070;
$bc-black:#707070;*/
/*$header-bgc:#EAEAE9;*/
/* underpages */
/* about */
/* contact*/
/* service */
/* btn */
/* job */
/* numbers */
/* 
  関数  end
*/
/* 
  調整用スタイル 
*/
body {
  font-family: "Noto Serif JP", serif;
  color: #000000;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, li {
  list-style: none;
}

main {
  background-color: #fff;
}

/* 
  調整用スタイル end
*/
/* 
  ヘッダー 
*/
.header {
  background-color: #edebeb;
  width: 100%;
  height: 10vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

@media screen and (min-width: 960px) {
  .header {
    height: 80px;
  }
}
.header-inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header-title {
  width: 150px;
}

.header-title:hover {
  opacity: 0.8;
}

@media screen and (min-width: 960px) {
  .header-title {
    width: 200px;
  }
}
.header-title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header-nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: ease 0.4s;
  display: flex;
  background-color: #edebeb;
}

/*
@media screen and (min-width: 960px) {
  .header-nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 40%;
  }
}*/
.header-nav-items {
  margin: auto;
}

/*
@media screen and (min-width: 960px) {
  .header-nav-items {
    margin: initial;
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}*/
.header-nav-items-item {
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  /* 縦に並べる */
  flex-direction: column;
}

/*
@media screen and (min-width: 960px) {
  .header-nav-items-item:before {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 5px;
    background:#14A1A2;
    opacity: 0;

  }
  .header-nav-items-item:hover:before {
    opacity: 1;
  }

}*/
/* ナビのリンク */
.nav-parent {
  width: 250px;
  border-bottom: 2px solid #fff;
  margin-bottom: 10px;
}
.nav-parent a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 24px;
  padding-top: 30px;
  padding-bottom: 10px;
}
.nav-parent:hover {
  border-bottom: 2px solid #f0d3d3;
}

.nav-parent:last-child a {
  margin-bottom: 0;
}

/*
@media screen and (min-width: 960px) {
  .header-nav-items-item a {
    margin-bottom: 0;
    font-size: 18px;
  }
}*/
.nav-child {
  /*display: none;*/
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
}
.nav-child .nav-child-item {
  height: 30px;
  width: 150px;
  border-bottom: 1px solid #fff;
  padding-top: 10px;
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる 
  flex-direction:column;*/
  /* 子要素を水平方向に中央に配置 
  justify-content: center;　*/
  /* 子要素を垂直方向に中央に配置
  align-items: center; */
}
.nav-child .nav-child-item a {
  color: black;
  width: 100%;
  display: block;
  /*
  text-align: center;
  */
  font-size: 18px;
  margin-bottom: 0px;
}
.nav-child .nav-child-item:hover {
  border-bottom: 1px solid #f0d3d3;
}

/* ハンバーガーメニュー */
.header-hamburger {
  width: 48px;
  height: 100%;
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
}

/*
@media screen and (min-width: 960px) {
  .header-hamburger {
    display: none;
  }
}*/
/* ハンバーガーメニューの線 */
.header-hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease 0.4s;
  display: block;
}

.header-hamburger span:nth-child(1) {
  top: 0;
}

.header-hamburger span:nth-child(2) {
  margin: 8px 0;
}

.header-hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header-nav.active {
  transform: translateX(0);
}

.header-hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.header-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header-hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/* 
  ヘッダー  end
*/
/* 
  タイトル  
*/
.title {
  background-color: #fff;
}
.title .title-container {
  padding-top: 100px;
  padding-bottom: 40px;
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.title .title-container .title-main {
  font-size: 35px;
  font-weight: normal;
  padding-bottom: 15px;
}
.title .title-container .title-sub {
  font-size: 17px;
  font-weight: normal;
}

@media screen and (max-width: 960px) {
  .title .title-container .title-main {
    font-size: 30px;
  }
  .title .title-container .title-sub {
    font-size: 15px;
  }
  .title-02 {
    background-color: #F5F4F4;
  }
}
@media screen and (max-width: 500px) {
  .title .title-container .title-main {
    font-size: 30px;
  }
  .title .title-container .title-sub {
    font-size: 15px;
  }
}
/* 
  タイトル  end
*/
/* 
  コンテンツ  
*/
.content-01 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  background-color: #fff;
  padding-bottom: 100px;
}
.content-01 .content-container {
  width: 900px;
  height: 400px;
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  position: relative;
}
.content-01 .content-container .content-wrapper-01 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  z-index: 100;
}
.content-01 .content-container .content-wrapper-01 .content-item-01 {
  width: 400px;
  padding-left: 30px;
  padding-right: 20px;
}
.content-01 .content-container .content-wrapper-01 .content-item-01 .item-img {
  width: 100%;
}
.content-01 .content-container .content-wrapper-01 .content-item-01 .item-img img {
  /* 縦横比を崩さないために */
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-01 .content-container .content-wrapper-01 .content-item-02 {
  width: 450px;
}
.content-01 .content-container .content-wrapper-01 .content-item-02 .item-text {
  padding-right: 50px;
}
.content-01 .content-container .content-wrapper-01 .content-item-02 .item-text p {
  text-align: center;
  line-height: 1.4;
  padding-top: 10px;
  padding-bottom: 10px;
}
.content-01 .content-container .content-wrapper-02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 400px;
  background-color: #F5F4F4;
}

.content-02 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  background-color: #fff;
  padding-bottom: 100px;
}
.content-02 .content-container {
  width: 900px;
  height: 400px;
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  position: relative;
}
.content-02 .content-container .content-wrapper-01 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 入れ替え */
  flex-direction: row-reverse;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  z-index: 100;
}
.content-02 .content-container .content-wrapper-01 .content-item-01 {
  width: 400px;
  padding-right: 50px;
}
.content-02 .content-container .content-wrapper-01 .content-item-01 .item-img {
  width: 100%;
}
.content-02 .content-container .content-wrapper-01 .content-item-01 .item-img img {
  /* 縦横比を崩さないために */
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-02 .content-container .content-wrapper-01 .content-item-02 {
  width: 450px;
}
.content-02 .content-container .content-wrapper-01 .content-item-02 .item-text {
  padding-left: 50px;
}
.content-02 .content-container .content-wrapper-01 .content-item-02 .item-text p {
  text-align: center;
  line-height: 1.4;
  padding-top: 10px;
  padding-bottom: 10px;
}
.content-02 .content-container .content-wrapper-02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 400px;
  background-color: #7D7671;
}

@media screen and (max-width: 960px) {
  .content-02 {
    background-color: #F5F4F4;
  }
  .content-02 .content-container {
    width: 350px;
    height: auto;
  }
  .content-02 .content-container .content-wrapper-01 .content-item-01 {
    display: none;
  }
  .content-02 .content-container .content-wrapper-01 .content-item-02 {
    width: auto;
  }
  .content-02 .content-container .content-wrapper-01 .content-item-02 .item-text {
    padding-left: 0px;
  }
  .content-02 .content-container .content-wrapper-02 {
    display: none;
  }
}
.content-03 .content-container .content-wrapper .content-box {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 
  align-items: center;*/
  padding-bottom: 30px;
}
.content-03 .content-container .content-wrapper .content-box .content-item-01 {
  width: 50px;
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 
  justify-content: center;*/
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.content-03 .content-container .content-wrapper .content-box .content-item-01 .item-number {
  height: 35px;
  width: 35px;
  border: 1px solid #c4c3bf;
  /* フレックスボックスに指定 */
  display: flex;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.content-03 .content-container .content-wrapper .content-box .content-item-01 .item-number h3 {
  font-weight: normal;
  font-size: 15px;
}
.content-03 .content-container .content-wrapper .content-box .content-item-01 .item-line {
  height: 150px;
  width: 1px;
  background-color: #c4c3bf;
}
.content-03 .content-container .content-wrapper .content-box .content-item-02 {
  width: 400px;
}
.content-03 .content-container .content-wrapper .content-box .content-item-02 .item-text {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.content-03 .content-container .content-wrapper .content-box .content-item-02 .item-text h4 {
  font-weight: normal;
  font-size: 18px;
  padding-bottom: 20px;
}
.content-03 .content-container .content-wrapper .content-box .content-item-02 .item-text p {
  font-size: 15px;
  line-height: 1.4;
}

@media screen and (max-width: 500px) {
  .content-03 .content-container .content-wrapper .content-box .content-item-01 .item-line {
    height: 200px;
    width: 1px;
  }
  .content-03 .content-container .content-wrapper .content-box .content-item-02 {
    width: 250px;
  }
}
/* 
  コンテンツ  end
*/
/* 
  フッター 
*/
.footer {
  background-color: #edebeb;
  height: 150px;
}
.footer .footer-container {
  /* 子要素*/
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.footer .footer-container .footer-logo {
  /* 子要素*/
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  height: 50px;
  margin-top: 10px;
}
.footer .footer-container .footer-logo .footer-logo-container {
  height: 40px;
  /* tablet表示  */
  /* sp表示  */
}
@media (max-width: 960px) {
  .footer .footer-container .footer-logo .footer-logo-container {
    /* 画像の高さ */
    height: 30px;
  }
}
@media (max-width: 450px) {
  .footer .footer-container .footer-logo .footer-logo-container {
    /* 画像の高さ */
    height: 30px;
  }
}
.footer .footer-container .footer-logo .footer-logo-container img {
  /* 縦横比を崩さないために */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .footer-container .footer-logo:hover {
  opacity: 0.8;
}
.footer .footer-container .footer-icon .icon-parent {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 折り返す */
  flex-wrap: wrap;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  /*height: 50px;*/
  padding-bottom: 10px;
}
.footer .footer-container .footer-icon .icon-parent .icon-child {
  margin-left: 10px;
  margin-right: 10px;
  /*margin-bottom: 10px;*/
  height: 40px;
  /* フレックスボックスに指定 */
  display: flex;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.footer .footer-container .footer-icon .icon-parent .icon-child:hover {
  opacity: 0.8;
}
.footer .footer-container .footer-bottom {
  height: 50px;
  width: 100%;
  background-color: rgb(131, 128, 121);
  /* 子要素*/
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.footer .footer-container .footer-bottom .footer-bottom-container {
  /* 子要素*/
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.footer .footer-container .footer-bottom .footer-bottom-container a {
  font-size: 10px;
  color: #D3D1D1;
  margin-top: 3px;
  margin-bottom: 3px;
}

/* 
  フッター  end
*/
body.active {
  height: 100%;
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */