@charset "utf-8";

/*--------- ↓ここは消さない(block parts インサーター iframe用) ---------*/
.wp-block .hogehoge {
  color: #333;
}
/*--------- ↑ここは消さない ---------*/

/* ********************************************
common
******************************************** */

body {
  font-family: 'noto-sans-jp', sans-serif;
}
/* heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/* border-radius */
.block-bdr-radius {
  border-radius: var(--box-br);
}

/* box-shadow */
.block-box-shadow {
  box-shadow: 3px 3px 8px -5px var(--black);
}

/* ********************************************
タイトル
******************************************** */

/*タイトル01(block-ttl-01)*/
.block-ttl-01 {
  position: relative;
  padding: 0.8em 0;
  font-weight: bold;
  line-height: 1.8;
}
.block-ttl-01:before{
  content:'';
  display: inline-block;
  width:40px;
  height:3px;
  background: var(--cl-main);
  margin-right:1em;
  vertical-align: middle;
}

/*タイトル02(block-ttl-02)*/
.block-ttl-02 {
  position: relative;
  padding: 0 0 0.5em 0;
  font-weight: bold;
  line-height: 1.8;
  display: block;
}
.block-ttl-02:before {
  content:'';
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  background-color: var(--cl-main);
}


/*タイトル03(block-ttl-03)*/
.block-ttl-03 {
  position: relative;
  padding-left: 1.2em;
  /* margin-bottom: 1em; */
  font-weight: bold;
  line-height: 1.7;
  /* margin: 0; */
}
.block-ttl-03:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  content: '';
  background: var(--cl-main);
}
.block-ttl-03::after {
  position: absolute;
  top: 50%;
  left: 0.4em;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  content: '';
  background: var(--cl-main-02);
}
/*タイトル04(block-ttl-04)*/
.block-ttl-04 {
  position: relative;
  padding-left: 1.3em;
}
.block-ttl-04:before,
.block-ttl-04:after{
  position: absolute;
  width: 7.5px;
  height: 7.5px;
  border-radius: 50%;
  content: '';
  display: block;
}
.block-ttl-04::before{
  left: 0;
  top: .5em;
  background: var(--cl-main-02);
}
.block-ttl-04::after {
  left: 0.4em;
  top: .8em;
  background: var(--cl-main);
}

/* ********************************************
ふきだし
******************************************** */

/* ふきだし */
.block-balloon-01 {
  position: relative;
  font-size: var(--fs-ttl-s);
  padding: 0.8em 1em;
  color: var(--white);
  background: var(--cl-main);
  margin-bottom: 1.5em;
  line-height: 1.7;
}
.block-balloon-01::after {
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 0;
  height: 0;
  content: '';
  border-width: 13px 13px 0 13px;
  border-style: solid;
  border-color: var(--cl-main) transparent transparent transparent;
}

/* ********************************************
ボタン
******************************************** */

.editor-styles-wrapper :where(.wp-element-button, .editor-styles-wrapper .wp-block-button__link),
:root :where(.wp-element-button, .wp-block-button__link)
{
  padding:0!important;
}

/*ボタン（通常）(block-btn-01)、
ボタン（通常）（戻る）(block-btn-01-back)*/
.block-btn-01 a,
.block-btn-01 > div {
  font-weight: bold;
  font-size: var(--fs-lead)!important;
  position: relative;
  min-width:150px;
  /* padding: 15px 65px 17px 65px !important; */
  padding: 0.8em 5em 0.9em 4.5em !important;
  box-shadow: var(--shadow2);
}
.block-btn-01 a:after,
.block-btn-01 > div:after{
  content: '';
  display: inline-block;
  width:7px;
  height:7px;
  border-top: 2px solid var(--cl-main);
  border-right:2px solid var(--cl-main);
  position: absolute;
  top: 50%;
  right: 29px;
  transition: 0.3s;
  transform:translateY(-50%) rotate(45deg);
}
.block-btn-01 a:before,
.block-btn-01 > div:before{
  content: '';
  display: inline-block;
  width:19px;
  height:19px;
  background:var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 22px;
  transition: 0.3s;
  transform:translateY(-50%);
}
.block-btn-01 a:hover::after,
.block-btn-01 > div:hover::after{
  right: 22px;
}
.block-btn-01 a:hover::before,
.block-btn-01 > div:hover::before{
  right: 15px;
}
.block-btn-01.block-btn-01-back a,
.block-btn-01.block-btn-01-back > div{
  padding: 0.8em 4.5em 0.9em 5em!important;
}
.block-btn-01.block-btn-01-back a:after,
.block-btn-01.block-btn-01-back > div:after{
  content: '';
  display: inline-block;
  width:7px;
  height:7px;
  border-top: 2px solid var(--cl-main);
  border-right:2px solid var(--cl-main);
  position: absolute;
  top: 50%;
  left: 29px;
  transition: 0.3s;
  transform:translateY(-50%) rotate(225deg);
}
.block-btn-01.block-btn-01-back a:before,
.block-btn-01.block-btn-01-back > div:before{
  content: '';
  display: inline-block;
  width:19px;
  height:19px;
  background:var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 22px;
  transition: 0.3s;
  transform:translateY(-50%);
}
.block-btn-01.block-btn-01-back a:hover::after,
.block-btn-01.block-btn-01-back > div:hover::before{
  left: 22px;
}
.block-btn-01.block-btn-01-back a:hover::before,
.block-btn-01.block-btn-01-back > div:hover::before{
  left: 15px;
}

/*ボタン白(block-btn-02)*/
.block-btn-02 a,
.block-btn-02 > div {
  font-weight: bold;
  font-size: var(--fs-default)!important;
  padding: 0.7em 4.5em 0.8em 4em !important;
  position: relative;
  min-width: 100px !important;
}
.block-btn-02 a:before,
.block-btn-02 > div:before{
  content: '';
  display: inline-block;
  width:7px;
  height:7px;
  border-top: 2px solid var(--cl-main);
  border-right:2px solid var(--cl-main);
  position: absolute;
  top: 50%;
  right: 29px;
  transition: 0.3s;
  transform:translateY(-50%) rotate(45deg);
}
.block-btn-02 a:after,
.block-btn-02 > div:after{
  content: '';
  display: inline-block;
  width:19px;
  height:19px;
  border:1px solid var(--cl-main);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 22px;
  transition: 0.3s;
  transform:translateY(-50%) rotate(45deg);
}
.block-btn-02 a:hover::before{
  right: 22px;
}
.block-btn-02 a:hover::after{
  right: 15px;
}

@media only screen and (max-width: 400px) {
  .wp-block-buttons,
  .wp-block-button,
  .block-btn-01 a,
  .block-btn-01 > div,
  .block-btn-02 a,
  .block-btn-02 > div{
    min-width: 100% !important;
    width: 100% !important;
  }
  .block-btn-01 a,
  .block-btn-01 > div{
    padding-right: 2.5em!important;
    padding-left: 1em!important;
  }
  .block-btn-01.block-btn-01-back a,
  .block-btn-01.block-btn-01-back > div{
    padding-left: 2.5em!important;
    padding-right: 1em!important;
  }
  .block-btn-02 a,
  .block-btn-02 > div{
    padding-right: 3.2em!important;
    padding-left: 1em!important;
  }

}

/* 2カラムボタン */
.block-btn-03 div,
.block-btn-03 a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.block-btn-03 {
  gap: 20px;
  display: grid!important;
}
.block-btn-03 .col-item{
  margin-top: 0;
}
.block-btn-03 a.wp-element-button,
.block-btn-03 div.wp-element-button
{
  background-color: var(--white);
  border: 2px solid var(--cl-main);
  color: var(--cl-main);
  text-align: left;
  border-radius: var(--btn-br);
  padding: 1em 3em 1em 1.5em!important;
  position: relative;
  box-shadow: var(--shadow2);
  font-weight:bold;
}
.block-btn-03 a strong{
  color: var(--cl-main);
  font-size: var(--fs-lead);
}
.block-btn-03 a.wp-element-button:before,
.block-btn-03 div.wp-element-button:before{
  content: '';
  display: inline-block;
  width:7px;
  height:7px;
  border-top: 2px solid var(--cl-main);
  border-right:2px solid var(--cl-main);
  position: absolute;
  top: 50%;
  right: 29px;
  transition: 0.3s;
  transform:translateY(-50%) rotate(45deg);
}
.block-btn-03 a.wp-element-button:after,
.block-btn-03 div.wp-element-button:after{
  content: '';
  display: inline-block;
  width:19px;
  height:19px;
  border:1px solid var(--cl-main);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 22px;
  transition: 0.3s;
  transform:translateY(-50%) rotate(45deg);
}
.block-btn-03 a:hover::before{
  right: 22px;
}
.block-btn-03 a:hover::after{
  right: 15px;
}
@media only screen and (max-width: 599px){
  .block-btn-03 {
    display: block!important;
  }
}

/* ********************************************
リンク
******************************************** */

/*--------- 外部リンク(link) ---------*/
.block-link-outside a {
  display: inline-block;
  position: relative;
}
.block-link-outside a:after {
  content: '\f08e';
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  margin-left: 5px;
  color: var(--cl-main);
}

/* ********************************************
リスト
******************************************** */

/* 点リスト、数字リスト */
.block-list01 li {
  list-style-type: none;
  /* padding: 0.2em 0; */
  display: block;
}
@media only screen and (max-width: 781px){
  .block-list01 li {
    font-size: var(--fs-default);
  }
}
.block-list01 li > div {
  display: inline;
}

ul.block-list01{
  padding: 0;
}
ul.block-list01 li{
  position: relative;
  padding-left: 1.3em;
}
ul.block-list01 li:before,
ul.block-list01 li:after{
  position: absolute;
  width: 7.5px;
  height: 7.5px;
  border-radius: 50%;
  content: '';
  display: block;
}
ul.block-list01 li:before {
  left: 0;
  top: 0.6em;
  background: var(--cl-main-02);
}
ul.block-list01 li:after {
  left: 0.4em;
  top: 1em;
  background: var(--cl-main);
}

ol.block-list01 {
  list-style-type: none;
  counter-reset: item;
  padding-left: 0;
}
ol.block-list01 li {
  /* display: flex; */
  list-style-type: none;
  padding: 5px 0 5px 5px;
  text-indent: -.8em;
  padding-left: 1.5em;
}
ol.block-list01 li:before {
  content: '';
  display: inline-block;
  width: fit-content;
  margin-right: 10px;
  counter-increment: item;
  content: counter(item) '.';
  color: var(--cl-main);
  font-weight: bold;
  text-wrap: nowrap;
}

/* リストカラム（点リスト2列）（数字リスト2列） */
.block-list01.block-list01-col2 {
  column-count: 2;
}
@media only screen and (max-width: 768px) {
  .block-list01.block-list01-col2 {
    column-count: 1;
  }
}

/* リスト（四角アイコン） */
.block-list02 {
  margin: 1em 0;
}
.block-list02 li {
  list-style-type: none !important;
  position: relative;
  padding: 0.2em 0;
  display: flex;
  align-items: center;
  margin-left: 0 !important;
}
.block-list02 li:before {
  content: '';
  margin-right: 10px;
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--cl-main);
}

/* リストカラム（チェックマーク） */
.block-list03{
  display: block;
  padding: 0;
}
.block-list03 li {
  padding: .01em 0;
  list-style-type: none !important;
  position: relative;
  font-size: var(--fs-lead);
  line-height:1.5;
  padding-left: 2em;
  text-indent: -2em;
}
.block-list03 li:before {
  content: '\f14a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 3rem;
  color: var(--cl-main-02);
  margin-right: 10px;
  position: relative;
  top: .15em;
}
.block-list03 li.block-editor-block-list__block{
  display: flex;
  padding-left: 0;
  text-indent: 0;
  margin-top:.5em;
}
.block-list03 li.block-editor-block-list__block div{
  margin-left:0;
}
.block-list03 li.block-editor-block-list__block:before {
  top: -.2em;
}
@media only screen and (max-width: 1024px) {
  .block-list03 li {
    margin-left: 10px !important;
    font-size: var(--fs-default);
    padding-left: 1.8em;
    text-indent: -1.8em;
  }
  .block-list03 li:before {
    font-size: 2rem;
    top: .1em;
  }
}

/**/
.block-list-check-bk > div{
  text-align: center;
}
.block-list-check-bk > div ul{
  text-align: left;
  padding:2em;
}
@media only screen and (max-width: 599px){
  .block-list-check-bk > div ul{
    padding:1em;
  }
}

/* リスト（アイコン手入力1文字Ver.） */
.block-list04 {
  margin: 1em 0;
}
.block-list04 li {
  list-style-type: none !important;
  position: relative;
  padding: 0.2em 0;
  text-indent: -1.3em;
  padding-left: 1.3em;
  display: flex;
  align-items: center;
  margin-left: 0 !important;
}

/* リスト（アイコン手入力3文字Ver.） */
.block-list05 {
  margin: 1em 0;
}
.block-list05 li {
  list-style-type: none !important;
  position: relative;
  padding: 0.2em 0;
  text-indent: -3.2em;
  padding-left: 3.2em;
  display: flex;
  align-items: center;
  margin-left: 0 !important;
}

/* ********************************************
画像
******************************************** */
/*-- 画像 --*/
.img-box{
  width: 100%;
}
.img-box img{
  /* border-radius: var(--box-br-02); */
  max-width:900px;
  /* width: 100%; */
  width:100%!important;
}
.img-box figure{
  margin: 0;
  width: fit-content;
}

/*-- 説明文つき画像 --*/
.img-box-discription{
  gap:0
}
.img-box-discription > div{
  width: 100%;
}
.img-box-discription img{
  /* border-radius: var(--box-br-02); */
}
.img-box-discription figure{
  margin: 0;
  width: 75%;
}

@media only screen and (max-width: 900px){
  .img-box-discription figure{
    width: 100%;
  }
  .img-box img{
    width:100%!important;
  }
}

/*-- ワイドな画像 --*/
.img-box.block-img-wide img{
  max-width:100%;
}

/* ********************************************
カラム
******************************************** */

/*--------- リストカラム（左右カラム） ---------*/
/* .block-box-01 {
  margin: 1em 0;
} */
.block-box-01 .block-box-01-inner:last-of-type {
  border-bottom: 1px solid var(--gray);
}
.block-box-01-inner {
  border-top: 1px solid var(--gray);
  padding: 1em 0;
  gap: 0;
  margin-bottom: 0;
}
.block-box-01-left {
  padding-right: 10px;
  font-weight: bold;
  color: var(--cl-main);
}
.block-box-01-right {
  padding-left: 20px;
  border-left: 1px solid var(--gray);
}
.block-box-01-no-bdr .block-box-01-right {
  border-left: none;
}
@media only screen and (max-width: 781px) {
  .block-box-01-right {
    border-left: 0;
  }
}

/*--------- カラム（メインカラー枠線） ---------*/
.block-box-02 {
  padding: 2em 1em;
  border: 2px solid var(--black);
}
.block-box-02 h1,
.block-box-02 h2,
.block-box-02 h3,
.block-box-02 h4,
.block-box-02 h5,
.block-box-02 h6 {
  font-size: var(--fs-ttl-ml);
}
@media only screen and (max-width: 768px) {
  .block-box-02 * {
    text-align:left;
  }
}
@media only screen and (max-width: 599px) {
  .block-box-02 {
    padding: 2em 0.5em;
  }
  .block-box-02 h1,
  .block-box-02 h2,
  .block-box-02 h3,
  .block-box-02 h4,
  .block-box-02 h5,
  .block-box-02 h6 {
    font-size: 1.8rem;
  }
}

/*-- 左右カラム（左に画像、右に文章） --*/
.block-box-03 {
  margin: 0;
  /* padding: 20px; */
}
/* .block-box-03 div:first-of-type {
  text-align: center;
} */
.block-box-03 div:first-of-type img {
  margin-left: auto;
  margin-right: auto;
  /* border-radius: var(--box-br); */
}
/* .block-box-03 p {
  margin-top: 10px;
} */
@media only screen and (max-width: 768px) {
  .block-box-03 {
    gap: 0 !important;
  }
  .block-box-03 .wp-block-column:last-child {
    margin-top: 20px;
  }
}

/*-- 左右カラム（右に画像、左に文章） --*/
.block-box-04 {
  /* padding: 20px; */
  flex-direction: row-reverse !important;
  margin: 0;
}
/* .block-box-04 div:first-of-type {
  text-align: center;
} */
.block-box-04 div:first-of-type img {
  margin-left: auto;
  margin-right: auto;
  /* border-radius: var(--box-br); */
}
.block-box-04 div:last-of-type {
  margin-left: 0 !important;
  /*margin-right: var(--wp--style--block-gap,2em);*/
}
/* .block-box-04 p {
  margin-top: 10px;
} */
@media only screen and (max-width: 768px) {
  .block-box-04 {
    gap: 0 !important;
  }
  .block-box-04 .wp-block-column:last-child {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .block-box-04 div:last-of-type {
    margin-right: 0;
  }
}

/*--------- 矢印つき左右カラム ---------*/
/* .block-box-05 {
  margin: 1em 0;
} */

.block-box-05-outer {
  position: relative;
  margin-bottom: 50px;
}
.block-box-05-inner {
  border:2px solid var(--cl-main);
  border-radius: var(--box-br);
  gap: 0;
  overflow: hidden;
}
.block-box-05-outer:before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--cl-main);
  bottom:-1.7em;
  left: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.block-box-05-outer:after {
  content: "";
  position: absolute;
  left: calc(50% + 9px);
  width: 10px;
  height: 2px;
  bottom:-34px;
  background-color: var(--cl-main);
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: calc(100% - 2px) 50%;
}
.block-box-05-outer:last-child:before,
.block-box-05-outer:last-child:after {
  display: none;
}
.block-box-05-left{
  display: flex;
  align-items: center;
  padding:.5em 0 .5em .5em;
}
.block-box-05-left figure,
.block-box-05-left figure div{
  margin: 0;
  /* height: 100%!important; */
}
/* .block-box-05-left img{
  height: 100%;
  width: 100%;
  object-fit: cover;
} */
.block-box-05-right{
  padding: 1.5em;
  /* padding-right: 1em;
  padding-left: var(--col-gap); */
}
.block-box-05-title{
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}
.block-box-05-title p:first-of-type{
  width: fit-content;
  color: var(--cl-main);
  font-weight: bold;
  margin-right: 2em;
}
.block-box-05-title p:nth-of-type(2){
  width: fit-content;
  font-weight: bold;
  font-size: var(--fs-ttl-xs);
}

.block-box-05-right h1,
.block-box-05-right h2,
.block-box-05-right h3,
.block-box-05-right h4,
.block-box-05-right h5,
.block-box-05-right h6 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .block-box-05-left {
    padding-right: 0;
  }
  .block-box-05-right{
    padding: 1.5em 0.5em;
  }
}

/*-- カラム（ポイント） --*/
.block-box-06 {
  position: relative;
  padding: 1.5em 2em;
  border: 2px solid var(--cl-block-main);
  border-radius: 0 var(--box-br) 0 var(--box-br);
  padding-top: 60px;
  margin-top: 20px;
}
.block-box-06-ribbon-ttl {
  display: inline-block;
  position: absolute;
  max-width: 95%;
  left: 0;
  top: 5px;
  box-sizing: border-box;
  padding: 3px 15px;
  margin: 0;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--cl-block-main);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
  font-weight: bold;
}
.block-box-06-ribbon-ttl:before {
  position: absolute;
  content: '';
  top: 0;
  left: -7px;
  border: none;
  height: calc(100% + 8px);
  width: 7px;
  background: var(--cl-block-main);
  border-radius: var(--btn-br) 0 0 var(--btn-br);
}
.block-box-06-ribbon-ttl:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #63450b;
  border-radius: var(--btn-br) 0 0 var(--btn-br);
}
/*管理画面用*/
.block-box-06.wp-block {
  padding: 20px;
}
.block-box-06.wp-block .block-box-06-ribbon-ttl {
  left: -20px;
  top: -15px;
}
@media only screen and (max-width: 768px) {
  .block-box-06 {
    padding: 70px 1em 2.5em;
    padding-top: 70px;
  }
}

/*--------- 材料 ---------*/
.block-box-07 {
  margin: 1em auto;
  width: 700px;
  max-width: 100%;
}
.block-box-07-inner {
  background-color: var(--l-gray);
  padding: 15px 20px;
  margin-bottom: 2px;
}
.block-box-07-inner-left {
  font-weight: bold;
}
@media only screen and (max-width: 599px) {
  .block-box-07-inner {
    padding: 5px 10px;
  }
}

/*-- 3カラム --*/
.block-box-08{
  align-items: stretch!important;
}
.block-box-08 img{
  max-width:100%;
}

/*-- 1カラム --*/
.block-box-09{
  gap:0
}
.block-box-09 > div{
  width: 100%;
}
.block-box-09 img{
  border-radius: var(--box-br);
}
.block-box-09 figure{
  margin: 0;
  width: 75%;
}

/* ********************************************
カラム
******************************************** */
/*-- 背景つきリード文 --*/
.block-lead{
  padding:1em;
}
@media only screen and (max-width: 768px){
  .block-lead, .block-lead *{
    text-align: left;
  }
}

/* ********************************************
もくじ
******************************************** */

/*-- 目次・もくじ(block-mokuji-01) --*/
.block-mokuji-01 {
  padding: 25px 40px;
  border: 2px solid var(--cl-base);
  min-width: 500px;
  margin-left: auto;
  margin-right: auto;
  flex-basis: auto !important;
  flex-grow: 0 !important;
  border-radius: var(--btn-br);
  margin: 2em 0 !important;
}
.block-mokuji-01 p {
  font-size: 2rem;
  border-bottom: 2px solid var(--cl-main);
  font-weight: bold;
  padding: 5px 0 15px;
}
.block-mokuji-01 ol {
  list-style-type: none;
  counter-reset: item;
  padding-left: 0;
  margin-top: 20px;
  font-weight: bold;
}
.block-mokuji-01 ol li {
  list-style-type: none;
  padding: 5px 0 5px 1em !important;
  margin-left: 10px;
  text-indent: -0.7em;
}
.block-mokuji-01 ol li:before {
  counter-increment: item;
  content: counter(item) '.';
  padding: 0 5px 0 0;
  display: inline-block;
  color: var(--cl-main);
}
.block-mokuji-01 ol li .block-editor-rich-text__editable {
  padding-left: 10px;
}
.block-mokuji-01 ol li > div {
  display: inline;
}

@media only screen and (max-width: 768px) {
  .block-mokuji-01 {
    min-width: 100%;
  }
}

/* ********************************************
テキスト
******************************************** */

/*-- 注意点テキスト --*/
.block-txt-01 {
  position: relative;
  display: flex;
  align-items: center;
}
.block-txt-01:before {
  /*content:url(../images/common/icon24.svg);
  padding:7px 5px 0 0;*/
  padding-right: 5px;
  display: flex;
  align-items: center;
  content: '\f06a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--red);
}

/* ********************************************
電話番号
******************************************** */
.block-tel-col-01 {
  padding: 1.5em 1em;
  border: 2px solid var(--cl-main);
  margin: 1em 0;
  border-radius: var(--box-br);
}
.block-tel-col-01 a,
.block-tel-col-01 .wp-element-button {
  text-decoration: none !important;
  background: transparent !important;
  color: var(--black);
  font-weight: bold;
  text-align: left;
}
.block-tel-col-01 a span,
.block-tel-col-01 .wp-element-button span {
  display: block;
  font-size: 3rem;
  color: var(--cl-main);
  text-align: center;
}
.block-tel-col-01 a span:before {
  content: '\f095';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 0.2em;
}

/* ********************************************
アコーディオン
******************************************** */
summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.block-acc-01{
  border-radius: var(--box-br);
  overflow: hidden;
  background: var(--cl-base);
  cursor:pointer;
}
.block-acc-01 .block-acc-content > div{
  padding: 27px 32px;
}
.block-acc-01 summary {
  color: var(--cl-main);
  font-size: var(--fs-lead);
  display: block;
  position: relative;
  font-weight: bold;
  padding: 27px 32px;
  padding-right: 72px;
  transition: all 0.3s;
}
.block-acc-01 summary:before,
.block-acc-01 summary:after{
  top: 50%;
  line-height: 1;
  position: absolute;
  display: block;
  font-size: 2em;
  transition: transform 0.2s;
  transform: translateY(-50%);
}
.block-acc-01 summary:before{
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  right: 32px;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--cl-main);
  transform-origin: center;
}
.block-acc-01 summary:after{
  content: '';
  display: inline-block;
  border-bottom: 2px solid var(--cl-main);
  border-right:2px solid var(--cl-main);
  position: absolute;
  transition: 0.3s;
  transform:translateY(-50%) rotate(45deg);
  width:10px;
  height:10px;
  top: 48%;
  right: 42px;
  transform-origin: center;
}
.block-acc-01 summary.acc-open:after,
.block-acc-01 summary.acc-open::before{
  transform: translateY(-50%) rotate(-135deg);
}
.block-acc-01 summary.acc-open:after{
  top: 52%;
}
.block-acc-01:hover summary{
  opacity: .7;
}
.block-acc-01 .block-acc-content:after{
  content: "";
  margin: 0 32px;
  width: calc(100% - 64px);
  height: 1px;
  background-color: var(--cl-main);
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 781px){
  .block-acc-01 summary,
  .block-acc-01 .block-acc-content > div{
    padding: 18px;
  }
  .block-acc-01 summary {
    padding-right: 54px;
  }
  .block-acc-01 summary:after {
    right: 30px;
  }
  .block-acc-01 summary:before {
    right: 0.6em;
  }
  .block-acc-01 .block-acc-content:after{
    width: calc(100% - 36px);
    margin: 0 18px;
  }
}

/*「課題から探す」専用アコーディオン*/
.issue-acc{
  border-radius: 0;
  background: transparent;
  border-bottom:var(--gray) 1px solid ;
}
.issue-acc:hover{
  opacity:1;
}
.issue-acc summary {
  font-size:var(--fs-default);
  color:var(--black);
  padding: 1em 4em 1em 1em;
}
.issue-acc summary.acc-open{
}
.issue-acc:hover summary {
  opacity:1;
}
.issue-acc summary.acc-open:hover{
  opacity:1;
}
.issue-acc .block-acc-content:after{
  background: var(--white);
}
.issue-acc .block-acc-content > div{
  padding: 0 3em 1em 1em;
}
.issue-acc .block-acc-content .service-archive-lists{
  padding:.5em 1em 1em!important;
}
@media only screen and (max-width: 599px){
  .issue-acc summary {
    padding: 1em 4em 1em 0;
  }
  .block-acc-01 summary:before {
    right: 0;
  }
  .block-acc-01 summary:after {
    right: 10px;
  }
  .issue-acc .block-acc-content > div{
    padding: 0 1em 1em;
  }
  .issue-acc .block-acc-content > div ul.block-list01{
    padding:0!important;
  }
  .issue-acc .block-acc-content > div ul.block-list01 li a{
    font-size:var(--fs-notes);
  }
}

/* ********************************************
表
******************************************** */
.block-table table th{
  background-color: var(--cl-base-02)!important;
  font-weight: bold;
}
.block-table table tr td,
.block-table table th{
  border-color: var(--l-gray)!important;
}
