@charset "UTF-8";
/* 
  関数
*/
/* underpages */
/* contact*/
/*$fc-black:#707070;
$bc-black:#707070;*/
/* about */
/* service */
/* toppage */
/*$content-bgc:#f6f8fa;*/
/* 
  関数  end
*/
/* 
  調整用スタイル 
*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
}

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

ul, li {
  list-style: none;
}

main {
  background-color: #fff;
}

/* 
  調整用スタイル end
*/
/* 
  ヘッダー 
*/
.header {
  background-color: white;
  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: white;
}

/*
@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;
  /* 追加20240309 */
  /* 追加20240309 end */
}
.nav-parent a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 24px;
  padding-top: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .nav-parent a {
    font-size: 18px;
  }
}
.nav-parent:hover {
  border-bottom: 2px solid #ffcec5;
}

.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 #ffcec5;
}

/* ハンバーガーメニュー */
.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: 40px;
  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;
  text-align: center;
}

@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: white;
}

/* 右画像 左文章 縦線*/
.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: white;
}

@media screen and (max-width: 960px) {
  .content-02 {
    background-color: #ffffff;
  }
  .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;
  }
}
/* キャッチコピー */
.content-04 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  background: linear-gradient(180deg, rgb(0, 0, 0), rgba(44, 44, 44, 0.5));
}
.content-04 .content-container {
  padding-top: 140px;
  padding-bottom: 100px;
}
.content-04 .content-container .content-wrapper {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.content-04 .content-container .content-wrapper .content-item-01 {
  padding-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
.content-04 .content-container .content-wrapper .content-item-01 h1 {
  color: white;
  font-size: 40px;
  text-align: center;
  line-height: 150%;
}
.content-04 .content-container .content-wrapper .content-item-01 h1 span {
  display: inline-block;
}
.content-04 .content-container .content-wrapper .content-item-02 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  padding-bottom: 40px;
  /*width: 650px;*/
  padding-right: 20px;
  padding-left: 20px;
}
.content-04 .content-container .content-wrapper .content-item-02 p {
  color: white;
  text-align: center;
}
.content-04 .content-container .content-wrapper .content-item-02 p span {
  display: inline-block;
}
.content-04 .content-container .content-wrapper .content-item-03 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.content-04 .content-container .content-wrapper .content-item-03 .btn-01 .btn-wrap {
  /* フレックスボックスに指定 */
  display: flex;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  width: 200px;
  margin-right: 25px;
  margin-left: 25px;
  border-radius: 5px;
  background-color: #3f6ae0;
}
.content-04 .content-container .content-wrapper .content-item-03 .btn-01 .btn-wrap a {
  width: 100%;
  height: 100%;
  font-weight: normal;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  color: white;
}
.content-04 .content-container .content-wrapper .content-item-03 .btn-02 .btn-wrap {
  /* フレックスボックスに指定 */
  display: flex;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  width: 200px;
  margin-right: 25px;
  margin-left: 25px;
  border-radius: 5px;
  background-color: #f4f4f4;
}
.content-04 .content-container .content-wrapper .content-item-03 .btn-02 .btn-wrap a {
  width: 100%;
  height: 100%;
  font-weight: normal;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  color: black;
}

@media screen and (min-width: 700px) {
  .content-04 .content-container .content-wrapper .content-item-01 h1 {
    font-size: 40px;
  }
  .content-04 .content-container .content-wrapper .content-item-02 p {
    font-size: 15px;
    line-height: 1.4;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .content-04 .content-container .content-wrapper .content-item-03 {
    /* 横に並べる */
    flex-direction: row;
  }
  .content-04 .content-container .content-wrapper .content-item-03 .btn-01 .btn-wrap {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .content-04 .content-container .content-wrapper .content-item-03 .btn-02 .btn-wrap {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 700px) {
  .content-04 .content-container .content-wrapper .content-item-01 h1 {
    font-size: 25px;
  }
  .content-04 .content-container .content-wrapper .content-item-02 p {
    font-size: 15px;
    line-height: 1.4;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .content-04 .content-container .content-wrapper .content-item-03 {
    /* 縦に並べる */
    flex-direction: column;
  }
  .content-04 .content-container .content-wrapper .content-item-03 .btn-01 .btn-wrap {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .content-04 .content-container .content-wrapper .content-item-03 .btn-02 .btn-wrap {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
/* 
  コンテンツ  end
*/
/* 
  スライド  
*/
.slide-01 {
  background-color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}
.slide-01 .slide-container {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  width: 100%;
  /*max-width: 1000px;*/
  /*width: 700px;*/
  /*height: 340px;*/
  overflow: hidden;
  /*width: 100%;*/
  /*margin: 20px auto;*/
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: white;
}
.slide-01 .slide-container .slide-content {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  animation: slide-flow 60s infinite linear 1s both;
}
.slide-01 .slide-container .slide-content .content-item {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.slide-01 .slide-container .slide-content .content-item .img {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0px 0px 3px rgb(216, 216, 216));
}
.slide-01 .slide-container .slide-content .content-item .img img {
  /* 縦横比を崩さないために */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-01 .slide-container .slide-content .content-item .caption {
  width: 150px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  font-size: 13px;
}
@keyframes slide-flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slide-02 {
  background-color: white;
  /*padding-bottom: 80px;*/
}
.slide-02 .slide-container {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  width: 100%;
  /*max-width: 1000px;*/
  /*width: 700px;*/
  /*height: 340px;*/
  overflow: hidden;
  /*width: 100%;*/
  /*margin: 20px auto;*/
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: white;
}
.slide-02 .slide-container .slide-content {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  animation: slide-flow 60s infinite linear 1s both;
}
.slide-02 .slide-container .slide-content .content-item {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  padding-right: 10px;
  padding-left: 10px;
}
.slide-02 .slide-container .slide-content .content-item .img {
  width: 200px;
  /*height: 150px;*/
}
.slide-02 .slide-container .slide-content .content-item .img img {
  /* 縦横比を崩さないために */
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  filter: drop-shadow(0px 0px 3px rgb(231, 231, 231));
}
@keyframes slide-flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 500px) {
  .slide-02 .slide-container .slide-content .content-item .img {
    width: 300px;
  }
}
/* 
  スライド  end
*/
/* 
  divider  
*/
/* 縦　余白普通 */
.divider-01 .content-container .content-wrapper {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.divider-01 .content-container .content-wrapper .content-item {
  width: 1px;
  height: 100px;
  background-color: black;
}

/* 縦　余白狭い */
.divider-03 .content-container .content-wrapper {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
.divider-03 .content-container .content-wrapper .content-item {
  width: 1px;
  height: 100px;
  background-color: black;
}

/* 横　余白普通 */
.divider-02 .content-container .content-wrapper {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.divider-02 .content-container .content-wrapper .content-item {
  width: 95vw;
  height: 1px;
  background-color: rgb(205, 205, 205);
}

/* 
  divider  end
*/
/* 
  追従ボタン
*/
.guid-btn-pc .content-container .content-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 500;
  height: 100vh;
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  padding-right: 10px;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-01 {
  padding-bottom: 20px;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper {
  height: 200px;
  padding-right: 10px;
  padding-left: 10px;
  background-color: #3f6ae0;
  border-radius: 30px;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper .btn {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  height: 100%;
  width: 100%;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper .btn .btn-img {
  height: 30px;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper .btn .btn-img img {
  /* 縦横比を崩さないために */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper .btn .btn-text {
  padding-top: 10px;
  font-size: 15px;
  color: white;
  writing-mode: vertical-rl;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper {
  height: 200px;
  padding-right: 10px;
  padding-left: 10px;
  background-color: #545454;
  border-radius: 30px;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper .btn {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  height: 100%;
  width: 100%;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper .btn .btn-img {
  height: 30px;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper .btn .btn-img img {
  /* 縦横比を崩さないために */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guid-btn-pc .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper .btn .btn-text {
  padding-top: 10px;
  font-size: 15px;
  color: white;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 500px) {
  .guid-btn-pc {
    display: none;
  }
}
.guid-btn-sp .content-container .content-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  /*transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);*/
  z-index: 999;
  height: 100vh;
  width: 100%;
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 
  justify-content: center;*/
  /* 子要素を垂直方向に下方に配置 
  align-items: flex-end;*/
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 子要素を水平方向に中央に配置 
  justify-content: center;*/
  /* 子要素を垂直方向に下方に配置 
  align-items: flex-end; */
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper {
  height: 50px;
  background-color: #3f6ae0;
  width: 50vh;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper .btn {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  height: 100%;
  width: 100%;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper .btn .btn-img {
  height: 30px;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper .btn .btn-img img {
  /* 縦横比を崩さないために */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-01 .btn-wrapper .btn .btn-text {
  padding-left: 10px;
  font-size: 15px;
  color: white;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper {
  height: 50px;
  background-color: #545454;
  width: 50vh;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper .btn {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  height: 100%;
  width: 100%;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper .btn .btn-img {
  height: 30px;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper .btn .btn-img img {
  /* 縦横比を崩さないために */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guid-btn-sp .content-container .content-wrapper .content-item-01 .btn-02 .btn-wrapper .btn .btn-text {
  padding-left: 10px;
  font-size: 15px;
  color: white;
}

@media screen and (min-width: 500px) {
  .guid-btn-sp {
    display: none;
  }
}
/* 
  追従ボタン  end
*/
/* 
  フッター 
*/
.footer {
  background-color: white;
  height: 165px;
}
.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;*/
  padding-top: 5px;
  padding-bottom: 5px;
  /* フレックスボックスに指定 */
  display: flex;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  /* 追加20240309 */
  /* 追加20240309 end */
}
.footer .footer-container .footer-icon .icon-parent .icon-child a {
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .footer .footer-container .footer-icon .icon-parent .icon-child a {
    font-size: 11px;
  }
}
.footer .footer-container .footer-icon .icon-parent .icon-child:hover {
  opacity: 0.8;
}
.footer .footer-container .footer-icon-02 .icon-parent {
  /* フレックスボックスに指定 */
  display: flex;
  /* 横に並べる */
  flex-direction: row;
  /* 折り返す */
  flex-wrap: wrap;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  /*height: 50px;*/
  /*padding-bottom: 10px;*/
  padding-bottom: 15px;
}
.footer .footer-container .footer-icon-02 .icon-parent .icon-child {
  margin-left: 10px;
  margin-right: 10px;
  /*margin-bottom: 10px;*/
  /* フレックスボックスに指定 */
  display: flex;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  /* 追加20240309 */
  /* 追加20240309 end */
}
.footer .footer-container .footer-icon-02 .icon-parent .icon-child a {
  font-size: 12px;
  color: #616161;
}
@media screen and (max-width: 600px) {
  .footer .footer-container .footer-icon-02 .icon-parent .icon-child a {
    font-size: 10px;
  }
}
.footer .footer-container .footer-icon-02 .icon-parent .icon-child:hover {
  opacity: 0.8;
}
.footer .footer-container .footer-bottom {
  height: 30px;
  width: 100%;
  background-color: #FE9077;
  /* 子要素*/
  /* フレックスボックスに指定 */
  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: #ffffff;
  margin-top: 3px;
  margin-bottom: 3px;
}

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