@charset "utf-8";
/* CSS Document */
.radius {
	border-radius: 1rem;
}
.text-indent{
padding-left:1em;
text-indent:-1em;
}

/* 吹き出し　左 */
.balloon-004 {
    /* display: flex; */
    align-items: center;
    position: relative;
    max-width: 90%;
    margin-left: 15px;
    padding: .8em 1.2em;
    border-radius: 5px;
    background-color: #fff;
    border:#8b008b solid 2px;
    color: #333333;
}

.balloon-004::before {
    position: absolute;
    left: -15px;
    width: 15px;
    height: 30px;
    background-color: #8b008b;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
}
@media (max-width: 767px) {
.balloon-004 {
    margin-top: 15px;
    margin-left:0;
    max-width:100%;
  }

  .balloon-004::before {
    position: absolute;
    top: -15px;
    left:15px;
    width: 15px;
    height: 15px;
    background-color: #8b008b;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    content: '';
  }
}

.kyuhu{
  background:#ebe4ef;
  font-size:120%;
  padding:0.3em 0.5em;
}

.table_plan{
  width:100%;
}
.table_plan th,.table_plan td{
  border:1px solid #dddddd;
  padding:0.2em 0.4em;
  line-height:1.3;
}
.table_plan .td-title{
  width: 55%;
}
.table_plan .td-content{
width: 22%;
}

@media (max-width: 767px) {
.table_plan .td-title {
    width: 44%;
  }

  .table_plan .td-content {
    width: 28%;
  }
}


/*タブ切り替え全体のスタイル*/
.tabs,.tabs-dw {
  margin-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fff;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

/*タブのスタイル*/
.tab_item ,.tab_item-dw{
  box-sizing: border-box;
  width: calc(100% / 2);
  height: 3rem;
  background-color: #d9d9d9;
  font-size: 14px;
  text-align: center;
  color: #4b4b4b;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  border: #fff solid 1px;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] ,input[name="tab_item-dw"]{
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 1rem 0 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#plan-01:checked~#plan-01content,
#plan-02:checked~#plan-02content {
  display: block;
}
/*選択されているタブのコンテンツのみを表示*/
#plan-dw01:checked~#plan-dw01content,
#plan-dw02:checked~#plan-dw02content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tab_item::before ,
.tabs-dw input:checked+.tab_item-dw::before{
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background-color: #d9d9d9;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#plan-01:checked+.tab_item,
#plan-01:checked+.tab_item::before,
.tab_item:nth-of-type(1):hover {
  background: #8b008b;
  color: #fff;
}

#plan-02:checked+.tab_item,
#plan-02:checked+.tab_item::before,
.tab_item:nth-of-type(2):hover {
  background: #28a3ca;
  color: #fff;
}

#plan-dw01:checked+.tab_item-dw,
#plan-dw01:checked+.tab_item-dw::before,
.tab_item-dw:nth-of-type(1):hover {
  background: #da69a4;
  color: #fff;
}

#plan-dw02:checked+.tab_item-dw,
#plan-dw02:checked+.tab_item-dw::before,
.tab_item-dw:nth-of-type(2):hover {
  background: #23ab9f;
  color: #fff;
}

.page_kanyu .midashi-pink:first-letter{
  color:#da69a4;
}


.btn-file {
  position: relative;
}

.btn-file::after {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
}

/* アコーディオン */
#kyosai-acc .card-header {
  background-color: #fff;
}

#kyosai-acc .card-body {
  background-color: #f9f8ef;
}

#kyosai-acc .card h5 span {
  color: #fff;
  ;
}

#kyosai-acc .card-header h5 a::after {
  content: "";
  font-size: 130%;
  color: #ffffff;
  line-height: 1.1;
  padding-left: 0.5rem;
}

#kyosai-acc .card-header h5 a[aria-expanded="false"]::after {
  content: "+";
}

#kyosai-acc .card-header h5 a[aria-expanded="true"]::after {
  content: "-";
}