@charset "utf-8";



/*---------------------------------------------------
 メインカテゴリーページ
---------------------------------------------------*/

.PageCategoryTitle {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 7px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1E227B;
  border-color: #1E227B;
}

.PageCategoryTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: -webkit-gradient(linear,left top,right top,from(#1E227B),to(#F4F4F8));
  background-image: -webkit-linear-gradient(left,#1E227B 0%,#F4F4F8 100%);
  background-image: linear-gradient(to right,#1E227B 0%,#F4F4F8 100%);
}


.PageCategoryBox {
  display: flex;
  align-items: stretch;
  margin: 50px 0;
  height: auto;
  /* border: #787AB0 solid 1px; */
  border-radius: 10px;
  box-shadow: 2px 2px 10px 8px rgb(0 0 0 / 13%);
  transition: all 300ms ease-out;
}

.PageCategoryBox:first-child  {
  margin: 0;
}

/* タイトルエリア */
.PageCategoryLeft {
  display: flex;
  align-items: center;
  width: 25%;
  padding: 40px 20px;
  border-radius: 10px 0 0 10px;
  background-color: #787AB0;
}

.PageCategoryLeft:hover {
  background-color: #787ab0d4;
}

.PageCategoryLeft a{
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.PageCategoryLeft .CategoryListTitle {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.CategoryListTitle::before {
  margin: 0 5px 0 0;
  font-family: 'Material Icons Round';
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  vertical-align: middle;
}

.PageCategoryLeft span {
  margin: 0 5px 0 0;
  font-size: 40px;
  color: #fff;
}

.PageCategorySubBigBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px;
}

.is-layout-flex .PageCategorySubBox {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 20px;
}

.PageCategorySubBox .PageCategorySubGroupBox{
  width: 100%;
}

.PageCategorySubGroupBox div{

}

.PageCategorySubTitle, .PageCategorySubTitleTypeB {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 20px 0 0 0;
    width: 44vw;
    font-size: 18px;
    font-weight: 700;
    color: #787AB0;
}

.PageCategorySubTitleTypeC {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0 0;
  font-size: 18px;
  font-weight: 700;
  color: #787AB0;
}

.PageCategorySubTitle:first-child,
.PageCategorySubTitleTypeB:first-child  {
  padding: 0;
}

.PageCategorySubTitle:after {
  content: '';
  width: 88%;
  height: 1px;
  margin-left: 10px;
  background-color: #787AB0;
}

.PageCategorySubTitleTypeB:after {
  content: '';
  width: 38vw;
  height: 1px;
  margin-left: 10px;
  background-color: #787AB0;
}

.PageCategorySubTitleTypeC:after {
  content: '';
  width: 82%;
  height: 1px;
  margin-left: 10px;
  background-color: #787AB0;
}

.PageCategoryRight {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin: 0;
}

.PageCategoryRight li,
.PageCircleTitle {
  display: flex;
  align-items: center;
  margin: 0 20px 0 0;
  font-size: 15px;
  line-height: 2;
}

.PageCategoryRight li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: #333;
}


.PageCircleTitle:before,
.PageCategoryRight li>a:before {
  padding: 0 2px 0 0;
  font-family: 'Material Icons';
  content: '\e1c4';
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #787AB0;
  vertical-align: middle;
}

.PageCategoryRight li>a::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
  background: #787AB0;
}


.PageCategoryRight li>a:hover {
  color: #787AB0;
}

.PageCategoryRight li>a:hover::after{
  transform-origin: left top;
  transform: scale(1, 1);
}

/* 顧客グループ専用 */
.PageCircleGroupTop {
  margin: 0 0 0 10px;
}


.PageCircleGroupTop li a:before {
  padding: 0 2px 0 0;
  font-family: 'Material Icons';
  content: '\e1c4';
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #338DC3;
  vertical-align: middle;
}

.PageCircleGroupBottom {
  margin: 20px 0 0 0;
}





/*---------------------------------------------------
 サブカテゴリー
---------------------------------------------------*/
#CategoryBannerBox {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #F4F4F8;
}

#CategoryBannerBox>img {
  width: 15%;
  margin: 15px;
}

.CategoryTitle {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: #338DC3;
}


.CategorySubTitle {
  display: flex;
  align-items: center;
  position: relative;
  margin: 60px 0 0;
  padding: 0 0 7px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1E227B;
  border-color: #1E227B;
}

.CategorySubTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: -webkit-gradient(linear,left top,right top,from(#1E227B),to(#F4F4F8));
  background-image: -webkit-linear-gradient(left,#1E227B 0%,#F4F4F8 100%);
  background-image: linear-gradient(to right,#1E227B 0%,#F4F4F8 100%);
}

.CategoryPostTitle {
  margin: 20px 0 0;
  padding: 8px 20px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  background: #4B4E95;
}

.CategoryPostTitle:before {
    display: none;
}


.CategoryPostItem {
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px 0 0;
  padding: 0 0 15px 0;
  border-bottom: #CCCCCC dashed 1px;
}

.CategoryPostItem a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.CategoryPostItemLast {
  display: flex;
  align-items: center;
  margin: 10px 0 50px;
  padding: 0 0 15px 0;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  border-bottom: #CCCCCC dashed 1px;
}

.CategoryPostItem::before,
.CategoryPostItemLast::before {
  font-family: 'Material Icons';
  content: '\e7cd';
  padding: 0 3px 0 0;
  transform:rotate(-90deg);
  font-size: 15px;
  color: #787AB0;
}


.CategoryPostItem>a:hover,
.CategoryPostItemLast>a:hover {
  color: #787AB0;
}




/*---------------------------------------------------
 よくある質問
---------------------------------------------------*/
.wp-block-column.FAQAnkerItem {
    margin: 0 1% 0 0;
}

.FaQTitle {
  margin: 50px 0 20px;
  padding: 10px 15px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  color: #A066C4;
  border-left: 10px solid #A066C4;
  background-color: #fff;
}

#toc_content .FaQTitle:first-child  {
  margin: 0 0 20px;
}

.QuestionIcon {
  margin: 0 10px 0 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 0.5;
  color: #D5D5D5;
}

.QuestionIcon:before {
  content: "Q";
}

.box_accordion {
  width: 100%;
}

/* 質問ボックス */
.box_accordionQ {
  position: relative;
  cursor: pointer;
  display: flex;
  padding: 20px 50px 20px 10px;
  font-size: 18px;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: solid 1px #ccc;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #F3F3F3;
  align-items: center;
  align-content: center;
}

.box_accordionQ::after, .box_accordionQ::before {
    content: "";
    position: absolute;
    right: 30px;
    top: 35%;
    width: 1px;
    height: 20px;
    background-color: #999;
    transition: all 0.3s;
}

.box_accordionQ::after {
  transform: rotate(90deg);
}

/* 質問答えボックス */
.box_accordionA {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 30px 60px 30px 10px;
  border: solid 1px #e9e9e9;
}

.box_accordionA:before {
  content: "A";
  margin: 0;
  font-size: 60px;
  line-height: 0.8;
  font-weight: bold;
  color: #f1f1f1;
}

.box_accordionA .AnserMark {
  margin: 0;
  font-size: 60px;
  line-height: 0.8;
  font-weight: bold;
  color: #f1f1f1;
}


.box_accordionA .AnserText{
  margin: 0 0 0 1%;
  padding: 0;
  font-size: 18px;
  line-height: 1.8;
}

.box_accordionQ.close::before {
  transform: rotate(90deg) ;
}


/* 質問アンカー */
.FaqAnkerBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.scroll {

}

.scroll a {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px 0;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid#1D227B;
  font-size: 15px;
  line-height: 1.8;
  color: #1D227B;
}

.scroll a:hover {
  border: 1px solid#1D227B;
  color: #fff;
  background: #1D227B;
}


.FaqAnkerArrow {
  display: flex;
  align-items: center;
  align-content: center;
}


.scroll a:after {
  padding: 0 2px 0 0;
  font-family: 'Material Icons';
  content: '\ead0';
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  vertical-align: middle;
}


/*---------------------------------------------------------
  横幅の広いデスクトップのレイアウトの指定：〜1501px
---------------------------------------------------------*/
@media screen and (min-width:1501px) {





} /* 〜1501px END */




/*---------------------------------------------------------
  通常のデスクトップのレイアウトの指定：〜1280px
---------------------------------------------------------*/
@media screen and (min-width:960px) and ( max-width:1280px) {


  /*---------- レイアウト ：　〜1280px  ----------*/
  #main {width: 800px; }
  
   /*---------- メニュー ：　〜1280px  ----------*/
  .PageCategorySubTitle, .PageCategorySubTitleTypeB { width: 40vw; }
  .PageCategorySubTitleTypeB:after { width: 30vw;}



} /* 〜1280px END */






/*---------------------------------------------------------
  タブレット向けのレイアウトの指定：〜959px
---------------------------------------------------------*/
@media screen and (min-width:601px) and ( max-width:959px) {


  /*---------- レイアウト ：　〜959px  ----------*/
  #main { width: 550px; }
  

  /*---------- 会員募集 ：　〜959px  ----------*/
  .stepBox {width: 100%; }
  .stepBox_end {width: 100%;}


} /* 〜959px END */



/*---------------------------------------------------------
  スマホ向けのレイアウトの指定：〜600px
---------------------------------------------------------*/
@media screen and (min-width:351px) and ( max-width:600px) {


  /*---------- レイアウト ：〜600px  ----------*/
  #main { width: 340px; }
  .is-layout-flow.wp-block-column.PageCategoryIcon { margin: 0 5% 0 0; flex-basis: 20%;}
  .PageCategoryTitleBox{ padding: 3%; }




  /*---------- カテゴリーリスト ：〜600px  ----------*/
  .CategoryPostItem { margin: 10px 0 0; padding: 0 0 10px 0; }
   .is-layout-flow.wp-block-column.PageCategoryIcon {flex-basis: 50%; }
   .CategoryTitle { font-size: 30px;}
   

  /*---------- カテゴリーボックス ：〜600px  ----------*/
  .PageCategoryLeft { width: 100%; padding: 15px; border-radius: 10px 10px 0 0; }
  .PageCategoryLeft span { font-size: 35px; }
  .PageCategorySubTitle, .PageCategorySubTitleTypeB { width: 75vw; font-size: 18px;}
  .PageCategorySubTitleTypeB:after { width: 55vw; }
  .PageCategorySubTitleTypeC:after { width: 62%; }
  
  
  /*---------- よくある質問 ：〜600px  ----------*/
  .box_accordionQ { font-size: 15px; }
  .QuestionIcon { font-size: 30px; }
  .box_accordionA { padding: 20px 60px 20px 10px; }
  .box_accordionA .AnserText { font-size: 15px; }
  .box_accordionA:before { font-size: 40px; }

} /* 〜600px END */



/*---------------------------------------------------------
  カテゴリーボックス：
---------------------------------------------------------*/

@media screen and (min-width:781px) and ( max-width:959px) {
  .PageCategorySubTitle, .PageCategorySubTitleTypeB { width: 63vw;}
  .PageCategorySubTitleTypeB:after { width: 50vw;}
} /* 〜959px END */


@media screen and (min-width:601px) and ( max-width:780px) {
  .PageCategoryLeft { border-radius: 10px 10px 0 0; }
  .PageCategorySubTitle, .PageCategorySubTitleTypeB { width: 80vw;}
  .PageCategorySubTitleTypeB:after { width: 65vw;}
  .PageCategoryLeft { padding: 15px;}
} /* 〜959px END */


@media screen and (min-width:351px) and ( max-width:600px) {

  .PageCategoryLeft { width: 100%; padding: 15px; border-radius: 10px 10px 0 0; }
  .PageCategoryLeft span { font-size: 35px; }
  .PageCategorySubTitle, .PageCategorySubTitleTypeB { width: 75vw; font-size: 18px;}
  .PageCategorySubTitleTypeB:after { width: 55vw; }
  .PageCategorySubTitleTypeC:after { width: 62%; }
  
} /* 〜480px END */