@charset "utf-8";

/* -----------------------------
■カラーコード
ポイントパープル：#8C57D8;

■ゴシックフォント
font-family: "Noto Sans JP", sans-serif;
■丸フォント
font-family: "Zen Maru Gothic", sans-serif;
--------------------------------*/

/* -------------------------------
共通ヘッダー
---------------------------------*/
.header {
  width: 100%;
  height: 11rem;
  background-color: #fff;
  position: fixed;
  z-index: 10000;
  /* border-bottom: solid 1px #333; */
}
.header::before {
  content: '';
  width: 100%;
  height: .5rem;
  background-color: #8C57D8;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1023px) {
  .header {
    height: 7rem;
  }
}

.header-container {
  width: 90%;
  max-width: 100rem;
  height: 11rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .header-container {
    height: 7rem;
    position: relative;
  }
}

.header-logo-container {
  display: block;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .header-logo-container {
    line-height: 1.5;
    font-size: 1.4rem;
  }
}

.header-logo-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #8C57D8;
}

.header-menulist-container {

}

@media screen and (max-width: 1023px) {
  .header-menulist-container {
    position: fixed;
    top: 7rem;
    left: 105%;
    width: 100%;
    height: calc(100% - 7rem);
    transition: .2s all ease-in-out;
    background-color: #fff;
  }
  .header-menulist-container.active {
    left: 0;
  }
}

.header-menulist {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 50rem;
}

@media screen and (max-width: 1023px) {
  .header-menulist {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #8C57D8;
  }
}

.header-menulist-item {

}

@media screen and (max-width: 1023px) {
  .header-menulist-item {
    border-bottom: 1px solid #8C57D8;
  }
}

.header-menulist-item-link {
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  padding-left: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
.header-menulist-item-link::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background-color: #8C57D8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

@media screen and (max-width: 1023px) {
  .header-menulist-item-link {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}

.drawer-menu {
  display: none;
}

@media screen and (max-width: 1023px) {
  .drawer-menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 7rem;
    height: 7rem;
    cursor: pointer;
  }

  .drawer-menu-line01 {
    width: 5rem;
    height: .5rem;
    background-color: #8C57D8;
    border-radius: .2rem;
    position: absolute;
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
    transition: .2s all ease-in-out;
  }
  .drawer-menu.active .drawer-menu-line01 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .drawer-menu-line02 {
    width: 5rem;
    height: .5rem;
    background-color: #8C57D8;
    border-radius: .2rem;
    position: absolute;
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    transition: .2s all ease-in-out;
  }
  .drawer-menu.active .drawer-menu-line02 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}



/* -------------------------------
共通メイン
---------------------------------*/

.main {
  margin-top: 11rem;
}

@media screen and (max-width: 1023px) {
  .main {
    margin-top: 7rem;
  }
}


/* -------------------------------
セクションタイトル
---------------------------------*/
.sec-title {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  padding-left: 6.5rem;
  position: relative;
}
.sec-title::before {
  content: '';
  width: 5rem;
  height: 5rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url(../img/common/icon_spanner.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 2.4rem;
    padding-left: 5rem;
  }
  .sec-title::before {
    width: 4rem;
    height: 4rem;
  }
}


/* -------------------------------
リンクボタン
---------------------------------*/
.linkbtn {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background-color: #8C57D8;
  border-radius: 5rem;
  font-size: 1.2em;
  padding: 2rem 6rem 2rem 4rem;
  position: relative;
}
.linkbtn::after {
  content: '';
  width: 3.5rem;
  height: 3.5rem;
  background-image: url(../img/common/icon_arrow_right_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.linkbtn:hover::after {
  transform: translate(.5rem, -50%);
}


/* -----------------------
リンクリスト
--------------------------*/
.links-list {
  list-style: none;
}

.links-list-item {

}

.links-list-item-link {
  display: block;
  text-decoration: none;
  color: #333;
  padding-left: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  transition: .2s all ease-in-out; 
}
.links-list-item-link::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #8C57D8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.links-list-item-link:hover {
  opacity: .6;
}

/* -------------------------------
外部リンク
---------------------------------*/
.link_external {
  padding-right: 3.5rem;
  position: relative;
}

.link_external::after {
  content: '';
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-image: url(../img/common/icon_link_external.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}




/* -------------------------------
共通フッター
---------------------------------*/
.footer {
  padding-bottom: 3rem;
  position: relative;
}
/* .footer::after {
  content: '';
  width: 100%;
  height: .5rem;
  background-color: #8C57D8;
  position: absolute;
  left: 0;
  bottom: 0;
} */

.footer-container {
  width: 90%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 50rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem;
}

@media screen and (max-width: 1023px) {
  .footer-list {
    display: none;
  }
}

.footer-list-item {

}

.footer-list-item-link {
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  padding-left: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
.footer-list-item-link::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background-color: #8C57D8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.footer-copyright {
  font-size: 1.4rem;
  text-align: center;
}


/* -------------------------------
TOPに戻るボタン
---------------------------------*/
.totopbtn {
  position: fixed;
  bottom: 6rem;
  right: 6rem;
  width: 7.8rem;
  height: 7.8rem;
  border-radius: 50%;
  border: solid 2px #333;
  background-color: #fff;
  cursor: pointer;
}
.totopbtn::before {
  content: '';
  width: 4rem;
  height: 4rem;
  background-image: url(../img/common/icon_arrow_right_bk.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: .2s all ease-in-out;
}
.totopbtn:hover::before {
  top: 29%;
}

@media screen and (max-width: 1023px) {
  .totopbtn {
    bottom: 4rem;
    right: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .totopbtn {
    width: 7rem;
    height: 7rem;
    bottom: 2rem;
    right: 2rem;
  }
}

.totopbtn-text {
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
}



/* -------------------------------
下層ページタイトルセクション
---------------------------------*/
.page-mainimg-sec {
  
}

.page-mainimg-container {
  width: 90%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.page-mainimg-text-container {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #fff;
}

.page-mainimg-title {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #8C57D8;
  padding-right: 3rem;
}

@media screen and (max-width: 767px) {
  .page-mainimg-title {
    font-size: 2.4rem;
    padding-right: 2rem;
  }
}

.page-mainimg-img-container {
  width: 100%;
  max-width: 60rem;
}

.page-mainimg-img-container img {
  width: 100%;
  vertical-align: bottom;
}



/* -------------------------------
パンくずセクション
---------------------------------*/
.breadcrumb-sec {
  margin-bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .breadcrumb-sec {
    margin-bottom: 6.4rem;
  }
}

.breadcrumb-container {
  width: 90%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
}

.breadcrumb-list-item {
  position: relative;
}
.breadcrumb-list-item:not(:last-child) {
  margin-right: 4rem;
}
.breadcrumb-list-item:not(:last-child)::after {
  content: '';
  width: 2rem;
  height: 2rem;
  background-image: url(../img/common/icon_arrow_right_bk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translate(0, -50%);
}

.breadcrumb-list-item-link {
  display: block;
  /* text-decoration: none; */
  color: #333;
}

