/**■■■■■■■■■■■■■■■■■■■■■■■■■
AKプリセットCSS
・AK汎用レイアウト
・コンテンツの幅
・記事呼び出しレイアウトプリセットCSS
・VKポスト書き換え
・便利系CSS
・AK多目的レイアウト
・AK資料レイアウト
・AKインタビューレイアウト
■■■■■■■■■■■■■■■■■■■■■■■■■**/

/**■■■■■■■■■■■■■■■■■■■■■■■■■
AK汎用レイアウト
■■■■■■■■■■■■■■■■■■■■■■■■■**/
.ak_outer a:link,
.ak_outer a:visited,
.ak_outer a:hover,
.ak_outer a:active {
  color: #333;
  transition: .5s;
}

/*全幅レイアウト時にアウターdivに付与*/
.ak_fw {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/*アウターの余白と色*/
.ak_outer {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  background-color: #f7f7f7;
}


.ak_outer h2 {
  font-style: normal;
  font-size: 1.5rem;
  text-align: center;
  margin: 0.5rem 0;
  text-align: left;
}

.ak_outer h3 {
  font-style: normal;
  font-size: 1.3rem;
  margin: 0.5rem 0;
  text-align: left;
}

.ak_outer h4 {
  font-style: normal;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  text-align: left;
}

.ak_outer h5 {
  font-style: normal;
  font-size: 1.1rem;
  margin: 0.5rem 0;
  text-align: left;
}

.ak_outer .inner .contents .item p {
  text-align: left;
}

/*インナーの幅と余白*/
.ak_outer .inner {
  max-width: 1110px;
  width: 100%;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

/*全コンテンツが入っているdiv*/
.ak_outer .contents {
  display: flex;
  flex-wrap: wrap;
}

/*★アイテム　横並びの数と余白*/
.ak_invk_item,
.ak_outer .item {
  width: 100%;
  padding: 10px;
  position: relative;
}

/*★アイテム内の見た目*/
.ak_invk_item .box,
.ak_outer .item .box {
  background-color: #fff;
  padding: 10px;
}

/*★リンクの見た目*/
.ak_outer .link {
  padding: 0 1rem;
  text-align: center;
}

.ak_outer .link a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  color: #fff;
  background-color: #333;
}

.ak_invk_item.preset .ak_subtitle,
.ak_outer .ak_subtitle {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.ak_invk_item.preset .ak_subdate,
.ak_outer .ak_subdate {
  margin: 0.5rem 0;
  font-size: 0.85rem;
}

.ak_invk_item.preset .ak_subtext,
.ak_outer .ak_subtext {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

/**■■■■■■■■■■■■■■■■■■■■■■■■■
コンテンツの幅
■■■■■■■■■■■■■■■■■■■■■■■■■**/
/*共通*/
.ak_outer .contents .item.row1 {
  width: calc(100% / 1)
}

.ak_outer .contents .item.row2 {
  width: calc(100% / 2)
}

.ak_outer .contents .item.row3 {
  width: calc(100% / 3)
}

.ak_outer .contents .item.row4 {
  width: calc(100% / 4)
}

.ak_outer .contents .item.row5 {
  width: calc(100% / 5)
}

.ak_outer .contents .item.row6 {
  width: calc(100% / 6)
}

/*スマホの時*/
@media (max-width:991.98px) {
  .ak_outer .contents .item.SProw1 {
    width: calc(100% / 1)
  }

  .ak_outer .contents .item.SProw2 {
    width: calc(100% / 2)
  }

  .ak_outer .contents .item.SProw3 {
    width: calc(100% / 3)
  }

  .ak_outer .contents .item.SProw4 {
    width: calc(100% / 4)
  }

  .ak_outer .contents .item.SProw5 {
    width: calc(100% / 5)
  }

  .ak_outer .contents .item.SProw6 {
    width: calc(100% / 6)
  }
}

/*PCの時*/
@media (min-width:992px) {
  .ak_outer .contents .item.PCrow1 {
    width: calc(100% / 1)
  }

  .ak_outer .contents .item.PCrow2 {
    width: calc(100% / 2)
  }

  .ak_outer .contents .item.PCrow3 {
    width: calc(100% / 3)
  }

  .ak_outer .contents .item.PCrow4 {
    width: calc(100% / 4)
  }

  .ak_outer .contents .item.PCrow5 {
    width: calc(100% / 5)
  }

  .ak_outer .contents .item.PCrow6 {
    width: calc(100% / 6)
  }
}

/**■■■■■■■■■■■■■■■■■■■■■■■■■
 * 記事呼び出しレイアウトプリセットCSS
 * プリセット内容（横幅指定のみ）
 　-横
■■■■■■■■■■■■■■■■■■■■■■■■■**/
.ak_invk_item.preset .box,
.ak_outer.preset .item .box {
  display: flex;
  flex-wrap: wrap;
}

/*縦並びレイアウト*/
.ak_invk_item.preset.ak_flexH .box .left,
.ak_outer.preset.ak_flexH .item .box .left {
  width: 100%;
}

.ak_invk_item.preset.ak_flexH .box .right,
.ak_outer.preset.ak_flexH .item .box .right {
  width: 100%;
}

/*横並びレイアウト*/
.ak_invk_item.preset.ak_flexW .box .left,
.ak_outer.preset.ak_flexW .item .box .left {
  width: 25%;
}

.ak_invk_item.preset.ak_flexW .box .right,
.ak_outer.preset.ak_flexW .item .box .right {
  width: 75%;
  padding-left: 1rem;
}

@media (min-width:992px) {

  /*PC縦並びレイアウト*/
  .ak_invk_item.preset.ak_flexH .box .left,
  .ak_outer.preset.PC_ak_flexH .item .box .left {
    width: 100%;
  }

  .ak_invk_item.preset.ak_flexH .box .right,
  .ak_outer.preset.PC_ak_flexH .item .box .right {
    width: 100%;
  }

  /*SP縦並びレイアウト*/
  .ak_invk_item.preset.ak_flexW .box .left,
  .ak_outer.preset.PC_ak_flexW .item .box .left {
    width: 25%;
  }

  .ak_invk_item.preset.ak_flexW .box .right,
  .ak_outer.preset.PC_ak_flexW .item .box .right {
    width: 75%;
    padding-left: 1.5rem;
  }
}

/**■■■■■■■■■■■■■■■■■■■■■■■■■
* VKポスト書き換え
■■■■■■■■■■■■■■■■■■■■■■■■■**/

.ak_invk_item.preset .ak_subtext {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media (min-width:992px) {
  .ak_invk_item.preset .ak_subtext {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.sub-section .ak_invk_item.preset .ak_subtitle {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-section .ak_invk_item.preset .ak_subtext {
  display: none;
}

/**■■■■■■■■■■■■■■■■■■■■■■■■■
* VKポスト書き換え：ベーシック
■■■■■■■■■■■■■■■■■■■■■■■■■**/
.ak_invk_item.type_basic.preset .left img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}


/**■■■■■■■■■■■■■■■■■■■■■■■■■
便利系CSS
■■■■■■■■■■■■■■■■■■■■■■■■■**/
/*■画像トリミング*/
.img_asp_1-1 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.img_asp_4-3 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.img_asp_16-9 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/*■三点リーダー*/
/*1行*/
.ak_text-ellipsis_1 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*2行*/
.ak_text-ellipsis_2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*3行*/
.ak_text-ellipsis_3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/*■ホバーアニメーション*/
a.ak_hov01:hover {
  opacity: 0.8;
  transition: .5s;
}



/**■■■■■■■■■■■■■■■■■■■■■■■■■
AK多目的レイアウト
■■■■■■■■■■■■■■■■■■■■■■■■■**/


/* ak_type01 ================================================= */
.ak_outer.ak_type01 {
  padding-top: 25rem;
  padding-bottom: 20rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/*PCの時*/
@media (min-width:992px) {
  .ak_outer.ak_type01 {
    padding-top: 35rem;
    padding-bottom: 30rem;
  }
}

.ak_outer.ak_type01 .bg-cover {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.ak_outer.ak_type01 .inner {
  position: relative;
  z-index: 2;
}

.ak_outer.ak_type01 .inner .contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
}

.ak_outer.ak_type01 .inner h2,
.ak_outer.ak_type01 .inner p {
  text-align: center;
}

/* ak_type02 ================================================= */
.ak_outer.ak_type02 {}

.ak_outer.ak_type02 .inner .contents {
  padding: 3rem 0;
}

.ak_outer.ak_type02 .inner .contents .item {
  text-align: center;
}

.ak_outer.ak_type02 .inner .contents .item img {
  max-width: 900px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border-radius: 30px;
  margin: 0 auto;
}

.ak_outer.ak_type02 .inner p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}


/* ak_type03 ================================================= */
.ak_outer.ak_type03 {}

.ak_outer.ak_type03 .inner .contents {
  padding: 3rem 0;
}

.ak_outer.ak_type03 .inner .contents .item {
  text-align: center;
}

.ak_outer.ak_type03 .inner .contents .item img {
  max-width: 900px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  margin: 0 auto;
}

.ak_outer.ak_type03 .inner p {
  max-width: 800px;
  margin: 0 auto;
}

.ak_outer.ak_type03 .inner>p {
  text-align: center;
}

/* ak_type04 ================================================= */
.ak_outer.ak_type04 {}

.ak_outer.ak_type04 .inner .contents {
  padding: 3rem 0;
}

.ak_outer.ak_type04 .inner .contents.L {
  flex-direction: row;
}

.ak_outer.ak_type04 .inner .contents.R {
  flex-direction: row-reverse;
}

.ak_outer.ak_type04 .inner .contents .item {
  text-align: center;
  padding: 0;
  width: 50%;
  position: relative;
  background-color: #fff;
}

.ak_outer.ak_type04 .inner .contents .item img {
  max-width: 900px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  margin-bottom: 0;
}

.ak_outer.ak_type04 .inner .contents .item .text_box {
  padding: 2rem;
}

.ak_outer.ak_type04 .inner p {
  max-width: 800px;
  margin: 0 auto;
}

.ak_outer.ak_type04 .inner>p {
  text-align: center;
}

/*PCの時*/
@media (min-width:992px) {
  .ak_outer.ak_type04 .inner .contents .item .text_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 2rem;
  }
}

/*スマホの時*/
@media (max-width:991.98px) {
  .ak_outer.ak_type04 .inner .contents.L {
    flex-direction: row;
  }

  .ak_outer.ak_type04 .inner .contents.R {
    flex-direction: row;
  }

  .ak_outer.ak_type04 .inner .contents .item {
    width: 100%;
  }
}

/* ak_type05 ================================================= */
.ak_outer.ak_type05 {}

.ak_outer.ak_type05 .inner .contents {
  padding: 3rem 0;
}

.ak_outer.ak_type05 .inner .contents .item {
  text-align: center;
}

.ak_outer.ak_type05 .inner .contents .item img {
  max-width: 900px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 5px;
  margin: 0 auto;
}

.ak_outer.ak_type05 .inner p {
  max-width: 800px;
  margin: 0 auto;
}

.ak_outer.ak_type05 .inner>p {
  text-align: center;
}

/* ak_type06 ================================================= */
.ak_outer.ak_type06 {}

.ak_outer.ak_type06 .inner .contents {
  padding: 3rem 0;
}

.ak_outer.ak_type06 .inner .contents .item {
  text-align: left;

}

.ak_outer.ak_type06 .inner .contents .item .FAQ_box {
  display: flex;
  /*必須*/
  flex-wrap: wrap;
  /*複数行表示*/
  align-items: center;
  /*上下位置を揃える*/
  background-color: #fff;
  position: relative;
  padding: 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.ak_outer.ak_type06 .inner .contents .item .FAQ_box .text_box {
  width: calc(100% - 50px);
}

.ak_outer.ak_type06 .inner .contents .item .FAQ_box .text_box p {
  background-color: #f5f5f5;
  padding: 0rem 1rem;
  margin-top: 0rem;
  margin-bottom: 0;
  height: 0;
  opacity: 0;
  transition-duration: 0.5s;
  /*変化時間*/
}

.ak_outer.ak_type06 .inner .contents .item .FAQ_box .text_box::after {
  content: "\f107";
  font: var(--fa-font-solid);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) translateX(0%);
}

.ak_outer.ak_type06 .inner .contents .item .FAQ_box.active .text_box::after {
  content: "\f106";
}

.ak_outer.ak_type06 .inner .contents .item .FAQ_box.active .text_box p {
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 0;
  height: auto;
  opacity: 1;
  transition-duration: 0.5s;
  /*変化時間*/
}

.ak_outer.ak_type06 .inner>p {
  text-align: center;
}

/* ak_type07 ================================================= */
.ak_outer.ak_type07 {}

.ak_outer.ak_type07 .inner .contents {
  padding: 0rem 0;
}

.ak_outer.ak_type07 .inner .contents .item {
  text-align: center;
}

.ak_outer.ak_type07 .inner p {
  max-width: 800px;
  margin: 0 auto;
}

.ak_outer.ak_type07 .inner .contents.img .item img {
  max-width: 300px;
  border-radius: 0px;
  margin: 0 auto;
}

.ak_outer.ak_type07 .inner .contents.list {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.ak_outer.ak_type07 .inner .contents.list dl {
  display: flex;
  /*必須*/
  flex-wrap: wrap;
  /*複数行表示*/
  align-items: center;
  /*上下位置を揃える*/
  border-bottom: 1px dotted #e8e8e8;
}

.ak_outer.ak_type07 .inner .contents.list dl dt {
  width: calc(100% - 150px);
  text-align: left;
}

.ak_outer.ak_type07 .inner .contents.list dl dd {
  width: calc(150px);
  text-align: right;
}

.ak_outer.ak_type07 .inner .contents.list dl dd span {
  font-size: 1.1rem;
  padding-left: 5px;
}

.ak_outer.ak_type07 .inner .small {
  font-size: 1.1rem;
}

.ak_outer.ak_type07 .inner .contents.pop {
  display: flex;
  /*必須*/
  flex-wrap: wrap;
  /*複数行表示*/
  justify-content: center;
  /*左右*/
}

.ak_outer.ak_type07 .inner .contents.pop .item {
  width: auto;
  padding: 0.5rem;
}

.ak_outer.ak_type07 .inner .contents.pop .item p {
  padding: 0.5rem;
  border: 4px solid #d2d2d2;
  background-color: #fff;
}

.ak_outer.ak_type07 .inner .cartbut {
  margin: 1.5rem 0;
  text-align: center;
}

.ak_outer.ak_type07 .inner .cartbut a {
  background-color: #333;
  color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0px 3px 3px #00000030;
}

.ak_outer.ak_type07 .inner .cartbut a i {
  padding-right: 5px;
}

.ak_outer.ak_type07 .inner p {
  text-align: center;
}




/**■■■■■■■■■■■■■■■■■■■■■■■■■
AK資料レイアウト
■■■■■■■■■■■■■■■■■■■■■■■■■**/

.ak_MA_typeA {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff00;
}

.ak_MA_typeA .sect_title .title {
  display: inline-block;
  background-color: var(--AKcolor1);
}

.ak_MA_typeA .sect_title .title span {
  display: inline-block;
  color: #fff;
  padding: 1rem 2rem;
}

.ak_MA_typeA .count {
  margin-bottom: 1.5rem;
}

.ak_MA_typeA .count .notes {
  font-size: 1.1rem;
}

.ak_MA_typeA .count .num {
  width: 300px;
  height: 140px;
  position: relative;
}

.ak_MA_typeA .count .num .__AK_numcnt {
  position: absolute;
  right: 80px;
  bottom: -20px;
  font-size: 8rem;
  font-weight: bold;
  color: var(--AKcolor1);
}

.ak_MA_typeA .count .num .unit {
  position: absolute;
  right: 0px;
  bottom: 5px;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--AKcolor1);
}

.ak_MA_typeA .ex {
  font-size: 1rem;
  line-height: 2;
}

/*PCの時*/
@media (min-width:992px) {
  .ak_MA_typeA .contents.pcR {
    flex-direction: row-reverse;
    /*行反転*/
  }
}


/*=====================
見出し上　縦並び
=====================*/
.ak_MA_typeA.typ_outV .sect_title {
  text-align: center;
}

.ak_MA_typeA.typ_outV .count {
  text-align: center;
}

.ak_MA_typeA.typ_outV .count {
  text-align: center;
}

.ak_MA_typeA.typ_outV .count .num {
  margin: 0 auto;
}

.ak_MA_typeA.typ_outV .ex {
  max-width: 700px;
  margin: 0 auto;
}

.ak_MA_typeA.typ_outV .ex {
  max-width: 700px;
  margin: 0 auto;
}

.ak_MA_typeA.typ_outV .item.img {
  max-width: 500px;
  margin: 0 auto;
}

/*=====================
見出し上　横並び
=====================*/
.ak_MA_typeA.typ_outH .sect_title {
  text-align: center;
}

@media (min-width:992px) {
  .ak_MA_typeA.typ_outH .contents .item {
    width: calc(100% / 2);
    padding: 1.5rem;
  }
}



/*=====================
見出し中　横並び
=====================*/
@media (min-width:992px) {
  .ak_MA_typeA.typ_inH .contents .item {
    width: calc(100% / 2);
    padding: 1.5rem;
  }
}



/*段組み*/
.ak_MA_typeA.typ_colms .contents dl,
.ak_MA_typeA.typ_colms .contents dl dt,
.ak_MA_typeA.typ_colms .contents dl dd {
  margin: 0;
}

.ak_MA_typeA.typ_colms .contents .colm h2{
  font-size: 1.2rem;
  color:var(--AKcolor2);
}
.ak_MA_typeA.typ_colms .contents .colm {
  display: flex;
  flex-wrap: wrap;
}


.ak_MA_typeA.typ_colms .contents .colm.colm-1 {
  width: calc(100% / 1);
}

.ak_MA_typeA.typ_colms .contents .colm.colm-2 {
  width: calc(100% / 2);
}

.ak_MA_typeA.typ_colms .contents .colm.colm-3 {
  width: calc(100% / 3);
}

.ak_MA_typeA.typ_colms .contents .colm.colm-4 {
  width: calc(100% / 4);
}

.ak_MA_typeA.typ_colms .contents .colm.colm-5 {
  width: calc(100% / 5);
}
/*PCの時*/
@media (min-width:992px){
  .ak_MA_typeA.typ_colms .contents .colm.colmPC-1 {
    width: calc(100% / 1);
  }
  
  .ak_MA_typeA.typ_colms .contents .colm.colmPC-2 {
    width: calc(100% / 2);
  }
  
  .ak_MA_typeA.typ_colms .contents .colm.colmPC-3 {
    width: calc(100% / 3);
  }
  
  .ak_MA_typeA.typ_colms .contents .colm.colmPC-4 {
    width: calc(100% / 4);
  }
  
  .ak_MA_typeA.typ_colms .contents .colm.colmPC-5 {
    width: calc(100% / 5);
  }
}
/*スマホの時*/
@media (max-width:991.98px){
  .ak_MA_typeA.typ_colms .contents .colm.colmSP-1 {
    width: calc(100% / 1);
  }
  
  .ak_MA_typeA.typ_colms .contents .colm.colmSP-2 {
    width: calc(100% / 2);
  }
  
  .ak_MA_typeA.typ_colms .contents .colm.colmSP-3 {
    width: calc(100% / 3);
  }
  
  .ak_MA_typeA.typ_colms .contents .colm.colmSP-4 {
    width: calc(100% / 4);
  }
  
  .ak_MA_typeA.typ_colms .contents .colm.colmSP-5 {
    width: calc(100% / 5);
  }
}

.ak_MA_typeA.typ_colms .contents dl {
  display: flex;
  justify-content: space-between;
  padding:5px 10px;

}

.ak_MA_typeA.typ_colms .contents dl dt {
  display: flex;/*必須*/
  align-items: center;/*上下位置を揃える*/
  flex: 1;
}

.ak_MA_typeA.typ_colms .contents dl dt .title{
  white-space: nowrap;
}
.ak_MA_typeA.typ_colms .contents dl dt .bar{
  flex: 1;      /* 残り全部を使う */
  min-width: 0; /* はみ出し防止 */
  height: 0px;  /* 棒として見せたいなら必要 */
  border-bottom: 1px dotted #d6d6d6;
  margin: 0rem 1rem;/* 間隔 */
}
.ak_MA_typeA.typ_colms .contents dl dd {
  text-align: right;
  color: var(--AKcolor1);
  font-weight: bold;
}
.ak_MA_typeA.typ_colms .contents dl dd .no{
  font-size: 2em;
  margin-right: 1rem;
}




/**■■■■■■■■■■■■■■■■■■■■■■■■■
AKインタビューレイアウト
■■■■■■■■■■■■■■■■■■■■■■■■■**/

/*=====================
typeA　
=====================*/
.ak_IV_typeA {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff00;
}

.ak_IV_typeA .IV_sub {
  font-size: 1.7rem;
  color: var(--AKcolor1);
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-weight: bold;
  padding-left: 30px;
  position: relative;
}

.ak_IV_typeA .IV_sub::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: var(--AKcolor1);
  position: absolute;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%) translateX(0%);
}

.ak_IV_typeA .IV_title {
  font-size: 1.7rem;
  color: var(--AKcolor1);
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-weight: bold;
}

.ak_IV_typeA .IV_title div {
  margin-bottom: 0.5rem;
}

.ak_IV_typeA .IV_title span {
  display: inline-block;
  color: #fff;
  background-color: var(--AKcolor1);
  padding: 0.6rem 1.5rem;
}

.ak_IV_typeA .IV_ex {
  font-size: 1.1rem;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ak_IV_typeA .sect_title {
  font-size: 1.3rem;
  color: var(--AKcolor1);
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 2;
}

.ak_IV_typeA .sect_Q {
  font-size: 1.1rem;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 20px;
  position: relative;
  line-height: 2;
}

.ak_IV_typeA .sect_Q::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #333;
  position: absolute;
  position: absolute;
  top: 1.55rem;
  left: 0%;
  transform: translateY(-50%) translateX(0%);
}

.ak_IV_typeA .sect_A {
  font-size: 1rem;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 2;
}

/* コンテンツヘッダー */
.ak_IV_typeA.typ_Head {
  padding-top: 25vh;
  padding-bottom: 25vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ak_IV_typeA.typ_Head .contents {
  max-width: 300px;
}

/*PCの時*/
@media (min-width:768px) {
  .ak_IV_typeA.typ_Head .contents {
    max-width: 500px;
  }
}

/* 画像-上 */
.ak_IV_typeA.typ_contT {
  margin-top: 0;
  margin-bottom: 0;
}

.ak_IV_typeA.typ_contT .item.img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 10 / 3;
}

@media (max-width:767.98px) {
  .ak_IV_typeA.typ_contT .item.img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
  }
}

/* 画像-下 */
.ak_IV_typeA .typ_contB {
  margin-top: 0;
  margin-bottom: 0;
}

.ak_IV_typeA.typ_contB .contents {
  flex-direction: column-reverse;
}

.ak_IV_typeA.typ_contB .item.img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 10 / 3;
}

@media (max-width:767.98px) {
  .ak_IV_typeA.typ_contB .item.img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
  }
}

/* 画像-左 */
.ak_IV_typeA.typ_contL {
  margin-top: 0;
  margin-bottom: 0;
}

.ak_IV_typeA.typ_contL .item.img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 10 / 8;
  padding-right: 3rem;
}

@media (min-width:768px) {
  .ak_IV_typeA.typ_contL .item {
    width: calc(100% /2);
  }
}

@media (max-width:767.98px) {
  .ak_IV_typeA.typ_contL .item.img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: 0;
  }
}

/* 画像-右 */
.ak_IV_typeA.typ_contR {
  margin-top: 0;
  margin-bottom: 0;
}

.ak_IV_typeA.typ_contR .contents {
  flex-direction: row-reverse;
}

.ak_IV_typeA.typ_contR .item.img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 10 / 8;
  padding-left: 3rem;
}

@media (min-width:768px) {
  .ak_IV_typeA.typ_contR .item {
    width: calc(100% /2);
  }
}

@media (max-width:767.98px) {
  .ak_IV_typeA.typ_contR .item.img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-right: 0;
  }
}



/**■■■■■■■■■■■■■■■■■■■■■■■■■
AKテーブルレイアウト
■■■■■■■■■■■■■■■■■■■■■■■■■**/

.ak_TBL .inner .contents dl,
.ak_TBL .inner .contents dl dt,
.ak_TBL .inner .contents dl dd {
  margin: 0;
}

.ak_TBL .inner .contents dl {
  display: flex;
  /*必須*/
  padding-top: 1rem;
  padding-bottom: 1rem;

}

.ak_TBL .inner .contents dl dt {
  min-width: 125px;
  width: 30%;
}

.ak_TBL .inner .contents dl dd {
  max-width: 70%;
  width: auto;
}

.ak_TBL .inner .contents dl dd ul {
  margin: 0;
}

/*=====================
typeA　
=====================*/
.ak_TBL.ak_TBL_typeA .inner .contents dl {
  border-bottom: 1px solid #e1e1e1;
}

.ak_TBL.ak_TBL_typeA .inner .contents dl:first-child {
  border-top: 1px solid #e1e1e1;
}

.ak_TBL.ak_TBL_typeA .inner .contents dl dt {
  color: var(--AKcolor1);
}