@charset "utf-8";

/* TOC
---------------------------------------------
  Chapter01 : 基本設定
  Chapter02 : テキスト
  Chapter03 : 見出し
  Chapter04 : ボタン
    Chapter04_01 : 線状のボタン
    Chapter04_02 : 塗りボタン
    Chapter04_03 : アイコン付きのボタン
    Chapter04_04 : アニメーション付きのボタン
    Chapter04_05 : ホバーで動くボタン
    Chapter04_06 : 特殊ボタン
  Chapter05 : 画像
  Chapter06 : リスト
  Chapter07 : テーブル
  Chapter08 : ボックス
  Chapter09 : アコーディオン
  Chapter10 : タブ
  Chapter11 : 吹き出し
  Chapter12 : コードボックス
  Chapter13 : FAQ
  Chapter14 : 
  Chapter15 : 
  Chapter16 : 
  Chapter17 : 
  Chapter18 : 
  Chapter19 : 
  Chapter20 : 
  Chapter97 : 要素の動き
  Chapter98 : エディット画面
  Chapter99 : レスポンシブ
    Chapter99_01 : 大型モニター
    Chapter99_02 : ノートパソコン
    Chapter99_03 : タブレット
    Chapter99_05 : スマートフォン
---------------------------------------------
*/
  

/*---------------------------------------------------
  Chapter01 : 基本設定
---------------------------------------------------*/




/*---------------------------------------------------
  Chapter02 : テキスト
---------------------------------------------------*/





/*---------------------------------------------------
  Chapter03 : 見出し
---------------------------------------------------*/


/* 下線
-----------------------------------------*/
.wp-block-heading.is-style-default {
  display: flex;
  align-items: center;
  position: relative;
  margin: 50px 0 20px 0;
  padding: 0 0 7px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #00A4E2;
  border-color: #00A4E2;
}

.wp-block-heading.is-style-default:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: -webkit-gradient(linear,left top,right top,from(#00A4E2),to(#F4F4F8));
  background-image: -webkit-linear-gradient(left,#00A4E2 0%,#fff 95%);
  background-image: linear-gradient(to right,#00A4E2 0%,#fff 95%);
}


/* グラデーション下線
-----------------------------------------*/
.wp-block-heading.is-style-TypeA{
  position: relative;
  margin: 40px 0 30px 0;
  padding: 15px 0 5px 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  border-color: #ffd700; 
}

.wp-block-heading.is-style-TypeA:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffd700), to(#635e00));
  background-image: -webkit-linear-gradient(left, #ffd700 0%, #635e00 100%);
  background-image: linear-gradient(to right, #ffd700 0%, #635e00 100%);
}
  

/* 左線
-----------------------------------------*/
.wp-block-heading.is-style-TypeB{
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px #7db4e6;
}


/* 左線（背景あり）
-----------------------------------------*/
.wp-block-heading.is-style-TypeC{
  margin: 50px 0 20px 0;
  padding: 8px 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #1E227B;
  border-left: solid 10px #787AB0;
  background: #F4F4F8;
}


/* 背景グレー
-----------------------------------------*/
.wp-block-heading.is-style-TypeD{
  margin: 5% 0 1%;
  padding: 15px;
  border-radius: 7px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  background-color: #eee;
}


/* 点線
-----------------------------------------*/
.wp-block-heading.is-style-TypeE{
    margin: 30px 0 0;
    padding: 10px;
    border-top: 3px dotted #bdbdbd;
    border-bottom: 3px dotted #bdbdbd;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}
  


/*---------------------------------------------------
  Chapter04 : ボタン
---------------------------------------------------*/
  
  
/*---------------------------------------------------
  Chapter04_01 : 線状のボタン
---------------------------------------------------*/

/* 枠線
-----------------------------------------*/
.wp-block-button.is-style-button_typeA.is-style-button_type01 {
 margin: 5% 0;
}

.wp-block-buttons .is-style-button_type01 a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin:0 auto;
  padding: .9em 2em;
  color: #2589d0;
  font-size: 1em;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
}

.wp-block-buttons .is-style-button_type01 a::after {
  content: '';
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #2589d0;
  border-right: 2px solid #2589d0;
  transform: rotate(45deg);
}

/* エディット画面用 */
.block-editor-block-list__block.wp-block.is-selected.is-style-button_typeA.is-style-button_type01 .wp-block-button__link {
  color: #2589d0;
  font-size: 1em;
  border: 1px solid #2589d0;
  background-color: #fff;
}



/* 細い矢印
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type02 {
  margin: 3% 0;
 }

.is-style-button_type02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: .9em 3em .9em 2em;
  color: #2589d0;
  font-size: 1em;
  border: 1px solid #2589d0;
  border-radius: 25px;
  background-color: #fff;
}

.is-style-button_type02 a::after {
  position: absolute;
  right: 2em;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: .5em;
  background-color: #2589d0;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: '';
  transition: transform .3s;
}

.is-style-button_type02 a:hover::after {
  transform: translateY(-50%) scaleX(1.4);
}


/* 交差する枠線
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type03 {
  margin: 3% 0;
 }

.is-style-button_type03 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  color: #2589d0;
  font-size: 1em;
  border-top: 1px solid #2589d0;
  border-right: none;
  border-bottom: 1px solid #2589d0;
  border-left: none;
  border-radius: unset;
  background-color: #fff;
}

.is-style-button_type03 a::before,
.is-style-button_type03 a::after {
  position: absolute;
  width: 1px;
  height: 140%;
  background-color: #2589d0;
  content: '';
}

.is-style-button_type03 a::before {
  left: calc(3.1em / 5 - 1px);
}

.is-style-button_type03 a::after {
  right: calc(3.1em / 5 - 1px);
}


/* 平行四辺形
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type04 {
  margin: 3% 0;
 }

 .is-style-button_type04 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  background-color: #fff;
  color: #2589d0;
  font-size: 1em;
}

.is-style-button_type04 a::before {
  position: absolute;
  transform: skewX(-25deg);
  width: 100%;
  height: 100%;
  border: 1px solid #2589d0;
  content: '';
}


/*---------------------------------------------------
  Chapter04_02 : 塗りボタン
---------------------------------------------------*/

/* 塗りあり
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type05 {
  margin: 3% 0;
 }

.is-style-button_type05 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin:0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.is-style-button_type05 a::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

.is-style-button_type05 a:hover {
  background-color: #1579c0;
}


/* シャドウ
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type06 {
  margin: 3% 0;
}

.is-style-button_type06 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin:0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.is-style-button_type06 a::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

.is-style-button_type06 a:hover {
  background-color: #1579c0;
}


/* 立体的
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type07 {
  margin: 3% 0;
}

.is-style-button_type07 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin:0 auto;
  padding: .9em 2em;
  border: none;
  border-bottom: solid 5px #0059a0;
  border-radius: 5px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  transition: .5s ease;
}

.is-style-button_type07 a::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

.is-style-button_type07 a:hover {
  transform: translateY(3px);
  border-bottom-width: 2px;
}


/* 内側に枠線
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type08 {
  margin: 3% 0;
}

.is-style-button_type08 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 3px #2589d0;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}


/* グラデーション
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type09 {
  margin: 3% 0;
}

.is-style-button_type09 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  background-image: linear-gradient(0deg, #2589d0 0%, #2589d080 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}


/* ストライプ背景
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type24 {
  margin: 3% 0;
}

.is-style-button_type24 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: 1px solid #333333;
  border-radius: 5px;
  background-image: repeating-linear-gradient(-45deg, #eee, #eee 1px, #ffffff 1px, #ffffff 4px);
  color: #333333;
  font-weight: 600;
  font-size: 1em;
  transition: box-shadow .3s;
}

.is-style-button_type24 a:hover {
  box-shadow: 0 7px 30px -5px rgb(0 0 0 / 20%);
}


/* 白背景&シャドウ
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type25 {
  margin: 3% 0;
}

.is-style-button_type25 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  box-shadow: 0 7px 10px rgb(0 0 0 / 10%);
  background-color: #fff;
  color: #333;
  font-size: 1em;
  transition: transform .3s, box-shadow .3s;
}

.is-style-button_type25 a:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 10px rgb(0 0 0 / 15%);
}


/* ニューモーフェズム風
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type26 {
  margin: 3% 0;
}

.is-style-button_type26 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  padding: 1em 2em;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #fff;
  background-color: #e7e7e7;
  color: #555555;
  font-weight: 600;
}

.is-style-button_type26 a:hover {
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #fff;
}


/* コンストラスト
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type27 {
  margin: 3% 0;
}

.is-style-button_type27 a,
.is-style-button_type27 a span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.is-style-button_type27 a {
    position: relative;
    width: 250px;
    margin: 0 auto;
    padding: 0;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}

.is-style-button_type27 a::before {
    position: absolute;
    top: 7px;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 2px solid #000;
    border-radius: inherit;
    box-sizing: inherit;
    box-shadow: 0 5px 0 0 rgba(0, 0, 0, .2);
    background-color: #cfcf00;
    content: '';
}

.is-style-button_type27 a span {
    width: 100%;
    padding: .9em 2em;
    border: 2px solid #000;
    border-radius: inherit;
    background-color: #ffff00;
    color: #000;
    font-weight: 600;
    line-height: 1.5;
}

.is-style-button_type27 a span::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: '';
}

.is-style-button_type27 a:hover::before {
  transition: box-shadow .2s;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, .2);
}

.is-style-button_type27 a:hover span {
  transition: transform .2s;
  transform: translateY(2px);
}



/*---------------------------------------------------
  Chapter04_03 : アイコン付きのボタン
---------------------------------------------------*/

/* プラスアイコン
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type10 {
  margin: 3% 0;
}

.is-style-button_type10 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: .9em 3.2em .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #2589d0;
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%23fff%3B%22%2F%3E%0A%3C%2Fsvg%3E);
  background-position: right 3em center;
  background-size: 1.2em;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.is-style-button_type10 a:hover {
  background-color: #1579c0;
}

.is-style-button_type10 a::before,
.is-style-button_type10 a::after {
  position: absolute;
  right: calc(3.6em - 1.5px);
  width: 3px;
  height: 10px;
  border-radius: 1px;
  background-color: #2589d0;
  content: '';
}

.is-style-button_type10 a::before {
  transform: rotate(90deg);
}



/* 外部リンクアイコン
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type11 {
  margin: 3% 0;
}

.is-style-button_type11 a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.is-style-button_type11 a::after {
  width: 1.25em;
  height: 1.25em;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6V8H5V19H16V14H18V20C18 20.5523 17.5523 21 17 21H4C3.44772 21 3 20.5523 3 20V7C3 6.44772 3.44772 6 4 6H10ZM21 3V11H19L18.9999 6.413L11.2071 14.2071L9.79289 12.7929L17.5849 5H13V3H21Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  content: '';
}

.is-style-button_type11 a:hover {
  background-color: #1579c0;
}


/* メールアイコン
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type12 {
  margin: 3% 0;
}

.is-style-button_type12 a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.is-style-button_type12 a:hover {
  background-color: #1579c0;
}

.is-style-button_type12 a::before {
  content: '';
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0e0";
  width: 1.25em;
  height: 1.25em;
  margin-right: 8px;
}



/* TELアイコン
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type13 {
  margin: 3% 0;
}

.is-style-button_type13 a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.is-style-button_type13 a:hover {
  background-color: #1579c0;
}

.is-style-button_type13 a::before {
  content: '';
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f095";
  width: 1.25em;
  height: 1.25em;
  margin-right: 8px;
}



/*---------------------------------------------------
  Chapter04_04 : アニメーション付きのボタン
---------------------------------------------------*/

/* 通り抜ける光
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type14 {
  margin: 3% 0;

}

.is-style-button_type14 a {
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  overflow: hidden;
  font-size: 1em;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  background-color: #2589d0;
}

.is-style-button_type14 a::before {
  display: block;
  position: absolute;
  top: -50%;
  left: -30%;
  transform: rotate(30deg);
  width: 70px;
  height: 150px;
  content: '';
  background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
  animation: animation-button-10 2s infinite linear;
}

@keyframes animation-button-10 {
  17% {
      left: 120%;
  }
  100% {
      left: 120%;
  }
}

.is-style-button_type14 a::after {
  content: '';
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
  font-size: 150%;
  margin-left: 10px;
}



/*---------------------------------------------------
  Chapter04_05 : ホバーで動くボタン
---------------------------------------------------*/


/* 伸びる下線
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type15 {
  margin: 3% 0;
}

.is-style-button_type15 a {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  font-size: 1em;
  color: #333;
  font-weight: 600;
  border: none;
  border-bottom: 2px solid #e6edf3;
  border-radius: unset;
  background-color: transparent;
}

.is-style-button_type15 a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: scaleX(0);
  transform-origin: center left;
  width: 100%;
  height: 2px;
  background-color: #2589d0;
  transition: transform .3s ease;
}

.is-style-button_type15 a:hover::after {
  transform: scaleX(1);
}


/* 色が反転
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type16 {
  margin: 3% 0;
}

.is-style-button_type16 a {
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: .9em 2em;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1em;
  color: #2589d0;

}

.is-style-button_type16 a:hover {
  border: none;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
}

.is-style-button_type16 a::after {
  content: '';
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
  font-size: 150%;
  margin-left: 10px;
}

.is-style-button_type16 a:hover::after {
  border-color: #fff;
}



/* 横にスライド
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type17 {
  margin: 3% 0;
}

.is-style-button_type17 a {
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin:0 auto;
  padding: .9em 2em;
  font-size: 1em;
  color: #2589d0;
  overflow: hidden;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
}

.is-style-button_type17 a:hover {
  background-color: transparent;
  color: #fff;
}

.is-style-button_type17 a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: #2589d0;
  content: '';
  transition: width .3s ease;
}

.is-style-button_type17 a:hover::before {
  width: 100%;
}


/* 狭まりながら塗りつぶす
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type18 {
  margin: 3% 0;
}

.is-style-button_type18 a {
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin:0 auto;
  padding: .9em 2em;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
  color: #2589d0;
  font-size: 1em;
  transition: box-shadow .3s ease;
}

.is-style-button_type18 a:hover {
  box-shadow: inset #2589d0 0 0 0 2em;
  color: #fff;
}



/* 対角線上に広がる
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type19 {
  margin: 3% 0;
}

.is-style-button_type19 a {
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin:0 auto;
  padding: .9em 2em;
  overflow: hidden;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
  color: #2589d0;
  font-size: 1em;
}

.is-style-button_type19 a:hover {
  background-color: transparent;
  color: #fff;
}

.is-style-button_type19 a::before {
  position: absolute;
  z-index: -1;
  transform: rotate(-30deg);
  width: 100%;
  height: 0;
  border-radius: 5px;
  background-color: #2589d0;
  content: '';
  transition: height .3s ease;
}

.is-style-button_type19 a:hover::before {
  height: 350%;
}


/* 波紋
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type20 {
  margin: 3% 0;
}

.is-style-button_type20 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin:0 auto;
  padding: .9em 2em;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
  color: #2589d0;
  font-size: 1em;
}

.is-style-button_type20 a:hover {
  animation: anima-button-30 1s;
}

@keyframes anima-button-30 {
  0% {
      box-shadow: 0 0 0 0 rgb(37 137 208 / 50%);
  }
  100% {
      box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
  }
}



/* 枠線を描く
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type21 {
  margin: 3% 0;
}

.is-style-button_type21 a {
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  color: #2589d0;
  font-size: 1em;
  background: unset;
}

.is-style-button_type21 a::before,
.is-style-button_type21 a::after {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 1px;
  content: '';
}

.is-style-button_type21 a::before {
  top: -1px;
  left: 0;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
}

.is-style-button_type21 a::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
}

.is-style-button_type21 a:hover::before,
.is-style-button_type21 a:hover::after {
  width: 100%;
  height: 100%;
  border-color: #2589d0;
  transition: width .3s ease, height .3s .3s ease;
}


/* 跳ねる
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type22 {
  margin: 3% 0;
}

.is-style-button_type22 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.is-style-button_type22 a:hover {
  animation: anima-bound 2s linear infinite;
}

@keyframes anima-bound {
  7% {
      transform: translateY(-15px);
  }
  15% {
      transform: translateY(0);
  }
  20% {
      transform: translateY(-7px);
  }
  25% {
      transform: translateY(0);
  }
}


/* 震える
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_type23 {
  margin: 3% 0;
}

.is-style-button_type23 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.is-style-button_type23 a:hover {
  animation: anime-button-38 .3s linear infinite;
}

@keyframes anime-button-38 {
  20% {
      transform: translate(-2px, 2px);
  }
  40% {
      transform: translate(-2px, -2px);
  }
  60% {
      transform: translate(2px, 2px);
  }
  80% {
      transform: translate(2px, -2px);
  }
}



/*---------------------------------------------------
  Chapter04_06 : 特殊ボタン
---------------------------------------------------*/

/* ページ上部に戻る
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_typeA {
  margin: 3% 0;
}

.is-style-button_typeA a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #2589d0;
}

.is-style-button_typeA a:hover {
  border: 1px solid #2589d0;
  background-color: #fff;
}

.is-style-button_typeA a:hover path {
  fill: #2589d0;
}


/* 通知
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_typeB {
  margin: 3% 0;
}

.is-style-button_typeB a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: #f2f2f2;
}

.is-style-button_typeB a svg {
  width: 25px;
  height: 25px;
  fill: #aaaaaa;
}

.is-style-button_typeB a span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15%;
  right: -15%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2589d0;
  color: #fff;
  font-size: .9em;
}


/* お気に入り
-----------------------------------------*/
.wp-block-buttons .wp-block-button.is-style-button_typeC {
  margin: 3% 0;
}

.is-style-button_typeC a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: 1px solid #f1443e;
  border-radius: 5px;
  background-color: #fff;
  color: #f1443e;
  font-size: 1em;
}

.is-style-button_typeC a:hover {
  background-color: f1443e;
}

.is-style-button_typeC a::before {
  width: 1.25em;
  height: 1.25em;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.001 4.52853C14.35 2.42 17.98 2.49 20.2426 4.75736C22.5053 7.02472 22.583 10.637 20.4786 12.993L11.9999 21.485L3.52138 12.993C1.41705 10.637 1.49571 7.01901 3.75736 4.75736C6.02157 2.49315 9.64519 2.41687 12.001 4.52853ZM18.827 6.1701C17.3279 4.66794 14.9076 4.60701 13.337 6.01687L12.0019 7.21524L10.6661 6.01781C9.09098 4.60597 6.67506 4.66808 5.17157 6.17157C3.68183 7.66131 3.60704 10.0473 4.97993 11.6232L11.9999 18.6543L19.0201 11.6232C20.3935 10.0467 20.319 7.66525 18.827 6.1701Z' fill='%23f1443e'%3E%3C/path%3E%3C/svg%3E");
  content: '';
}





/*== 背景が流れる（中央から外） */
.bgcenterout:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #333;
    width: 100%;
    height: 100%;
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 0);
    transform-origin:center;
}

/*hoverした際の形状*/
.bgcenterout:hover:before{
    transform:scale(1, 1);
}



/* 影付き 丸形
-----------------------------------------*/

.btn02 {
  text-align: center;
}

.btnType02 {
  display: flex;
  justify-content: center;
  width: 30%;
  margin: 15px auto;
  padding: 10px 60px;
  border-bottom: solid 4px #8a8500;
  border-radius: 30px;
  text-decoration: none;
  background: #ffd700;
  color: #fff;
}

.btnType02:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
}



/* 影付き 丸形
-----------------------------------------*/
.btn03 {
  text-align: center;
}

.btnType03 {
  display: flex;
  justify-content: center;
  width: 30%;
  margin: 15px auto;
  padding: 10px 60px;
  border-bottom: solid 4px #8a8500;
  border-radius: 15px;
  text-decoration: none;
  background: #ffd700;
  color: #fff;
}

.btnType03:hover {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
}


/* 注目ボックス
-----------------------------------------*/
.btnType04 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 15px auto;
  padding: 15px 0;
  border-bottom: solid 4px #8a8500;
  border-radius: 15px;
  text-decoration: none;
  background: #ffd700;
  font-size: 22px;
  color: #000;
}

.btnType04:hover {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
}



  
/*---------------------------------------------------
  Chapter05 : 画像
---------------------------------------------------*/
.article_content img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 20px 0;
}
  
  

/*---------------------------------------------------
  Chapter06 : リスト
---------------------------------------------------*/

/* リストtype01
-----------------------------------------*/
.is-style-list_type01{
  position: relative;
  padding: 0.5em 1em 0.5em 2.3em;
}

.is-style-list_type01 li{
  margin: 1% 0;
  padding: 0 0 0 5%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  list-style-type: disc;
}



/* シェブロンマーク
-----------------------------------------*/
.wp-block-list.is-style-list_type02{
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

.wp-block-list.is-style-list_type02 li{
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none;
  list-style: none;
}

.wp-block-list.is-style-list_type02 li:before{
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  position: absolute;
  left : 1em;
  color: gray;
}


/* チェックリスト
-----------------------------------------*/
.wp-block-list.is-style-list_type03{
padding: 0.5em 1em 0.5em 2.3em;
position: relative;
}

.wp-block-list.is-style-list_type03 li{
line-height: 1.5;
padding: 0.5em 0;
list-style-type: none;
}

.wp-block-list.is-style-list_type03 li:before{
font-family: "Font Awesome 5 Free";
content: "\f00c";
font-weight: 900;
position: absolute;
left : 1em;
color: #ffb03f; 
}


/* 丸矢印
-----------------------------------------*/
.wp-block-list.is-style-list_type04 {
margin: 3% 0;
padding: 0 0.5em;
position: relative;
}

.wp-block-list.is-style-list_type04 li{
padding: 0.5em 0 0.5em 1.4em;
border-top: dashed 1px silver;
list-style-type: none;
line-height: 1.5;
}

.wp-block-list.is-style-list_type04 li:last-child {
border-bottom: dashed 1px silver;
}

.wp-block-list.is-style-list_type04 li:before{
font-family: "Font Awesome 5 Free";
content: "\f138";
font-weight: 900;
position: absolute;
left : 0.5em;
color: #ffb03f;
}


/* 四角チェックリスト
-----------------------------------------*/
.wp-block-list.is-style-list_type05{
margin: 3% 0;
padding: 0;
position: relative;
}

.wp-block-list.is-style-list_type05 li{
padding: 0.5em 0.5em 0.5em 2em;
list-style-type: none;
color: white;
line-height: 1.5;
font-weight: bold;
border-bottom: 2px solid white;
background: #81d0cb;
}

.wp-block-list.is-style-list_type05 li:before{
font-family: "Font Awesome 5 Free";
content: "\f14a";
font-weight: 900;
position: absolute;
left : 0.5em;
color: white;
}


/* 丸番号
-----------------------------------------*/
.wp-block-list.is-style-list_type06{
counter-reset:number;
list-style-type: none;
padding:0.5em;
}

.wp-block-list.is-style-list_type06 li{
position: relative;
padding-left: 30px;
line-height: 1.5em;
padding: 0.5em 0.5em 0.5em 30px;
}

.wp-block-list.is-style-list_type06 li:before{
position: absolute;
counter-increment: number;
content: counter(number);
display:inline-block;
font-family: 'Avenir','Arial Black','Arial',sans-serif;
font-size: 15px;
font-weight:bold;
color: white;
border-radius: 50%;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
  background: #5c9ee7;
}


/* 四角番号
-----------------------------------------*/
.wp-block-list.is-style-list_type07{
  counter-reset:number;
  list-style-type: none;
  padding:0.5em;
}

.wp-block-list.is-style-list_type07 li{
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 5%;
}

.wp-block-list.is-style-list_type07 li:before{
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display:inline-block;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  color: white;
  background: #74c2f8;
}



/* アスタリスク
-----------------------------------------*/
.wp-block-list.is-style-list_type08 {
  padding: 0;
  list-style-type: none;
}

.wp-block-list.is-style-list_type08 li {
  margin: 10px 0 0 20px;
  padding: 0;
  text-indent: 0em;
  padding-left: 0.5em;
  font-weight: 400;
}

.is-style-list_type08 li:nth-of-type(1)::marker {
  content: "※1";
}
.is-style-list_type08 li:nth-of-type(2)::marker {
  content: "※2";
}
.is-style-list_type08 li:nth-of-type(3)::marker {
  content: "※3";
}
.is-style-list_type08 li:nth-of-type(4)::marker {
  content: "※4";
}
.is-style-list_type08 li:nth-of-type(5)::marker {
  content: "※5";
}
.is-style-list_type09 li:nth-of-type(6)::marker {
  content: "※6";
}
.is-style-list_type09 li:nth-of-type(7)::marker {
  content: "※7";
}
.is-style-list_type09 li:nth-of-type(8)::marker {
  content: "※8";
}
.is-style-list_type09 li:nth-of-type(9)::marker {
  content: "※9";
}
.is-style-list_type09 li:nth-of-type(10)::marker {
  content: "※10";
}



/* パーレン
-----------------------------------------*/
.wp-block-list.is-style-list_type09 {
  list-style-type: none;
  padding: 0;

}

.wp-block-list.is-style-list_type09 li {
  margin: 10px 0 0 20px;
  padding: 0;
  text-indent: 0em;
  padding-left: 0.5em;
  font-weight: 400;
}

.is-style-list_type09 li:nth-of-type(1)::marker {
  content: "⑴";
}
.is-style-list_type09 li:nth-of-type(2)::marker {
  content: "⑵";
}
.is-style-list_type09 li:nth-of-type(3)::marker {
  content: "⑶";
}
.is-style-list_type09 li:nth-of-type(4)::marker {
  content: "⑷";
}
.is-style-list_type09 li:nth-of-type(5)::marker {
  content: "⑸";
}
.is-style-list_type09 li:nth-of-type(6)::marker {
  content: "⑹";
}
.is-style-list_type09 li:nth-of-type(7)::marker {
  content: "⑺";
}
.is-style-list_type09 li:nth-of-type(8)::marker {
  content: "⑻";
}
.is-style-list_type09 li:nth-of-type(9)::marker {
  content: "⑼";
}
.is-style-list_type09 li:nth-of-type(10)::marker {
  content: "⑽";
}



/* 丸番号
-----------------------------------------*/
.wp-block-list.is-style-list_type10 {
  list-style-type: none;
  padding: 0;

}

.wp-block-list.is-style-list_type10 li {
  margin: 10px 0 0 20px;
  padding: 0;
  text-indent: 0em;
  padding-left: 0.5em;
  font-weight: 400;
}


.is-style-list_type10 li:nth-of-type(1)::marker {
  content: "①";
}
.is-style-list_type10 li:nth-of-type(2)::marker {
  content: "②";
}
.is-style-list_type10 li:nth-of-type(3)::marker {
  content: "③";
}
.is-style-list_type10 li:nth-of-type(4)::marker {
  content: "④";
}
.is-style-list_type10 li:nth-of-type(5)::marker {
  content: "⑤";
}
.is-style-list_type10 li:nth-of-type(6)::marker {
  content: "⑥";
}
.is-style-list_type10 li:nth-of-type(7)::marker {
  content: "⑦";
}
.is-style-list_type10 li:nth-of-type(8)::marker {
  content: "⑧";
}
.is-style-list_type10 li:nth-of-type(9)::marker {
  content: "⑨";
}
.is-style-list_type10 li:nth-of-type(10)::marker {
  content: "⑩";
}
.is-style-list_type10 li:nth-of-type(11)::marker {
  content: "⑪";
}
.is-style-list_type10 li:nth-of-type(12)::marker {
  content: "⑫";
}
.is-style-list_type10 li:nth-of-type(13)::marker {
  content: "⑬";
}
.is-style-list_type10 li:nth-of-type(14)::marker {
  content: "⑭";
}
.is-style-list_type10 li:nth-of-type(15)::marker {
  content: "⑮";
}
.is-style-list_type10 li:nth-of-type(16)::marker {
  content: "⑯";
}
.is-style-list_type10 li:nth-of-type(17)::marker {
  content: "⑰";
}
.is-style-list_type10 li:nth-of-type(18)::marker {
  content: "⑱";
}
.is-style-list_type10 li:nth-of-type(19)::marker {
  content: "⑲";
}
.is-style-list_type10 li:nth-of-type(20)::marker {
  content: "⑳";
}


/* 黒丸番号
-----------------------------------------*/
.wp-block-list.is-style-list_type11 {
  list-style-type: none;
  padding: 0;

}

.wp-block-list.is-style-list_type11 li {
  margin: 10px 0 0 20px;
  padding: 0;

  font-weight: 400;
}

.is-style-list_type11 li:nth-of-type(1)::marker {
  content: "❶";
}
.is-style-list_type11 li:nth-of-type(2)::marker {
  content: "❷";
}
.is-style-list_type11 li:nth-of-type(3)::marker {
  content: "❸";
}
.is-style-list_type11 li:nth-of-type(4)::marker {
  content: "❹";
}
.is-style-list_type11 li:nth-of-type(5)::marker {
  content: "❺";
}
.is-style-list_type11 li:nth-of-type(6)::marker {
  content: "❻";
}
.is-style-list_type11 li:nth-of-type(7)::marker {
  content: "❼";
}
.is-style-list_type11 li:nth-of-type(8)::marker {
  content: "❽";
}
.is-style-list_type11 li:nth-of-type(9)::marker {
  content: "❾";
}
.is-style-list_type11 li:nth-of-type(10)::marker {
  content: "❿";
}
.is-style-list_type11 li:nth-of-type(11)::marker {
  content: "⓫";
}
.is-style-list_type11 li:nth-of-type(12)::marker {
  content: "⓬";
}
.is-style-list_type11 li:nth-of-type(13)::marker {
  content: "⓭";
}
.is-style-list_type11 li:nth-of-type(14)::marker {
  content: "⓮";
}
.is-style-list_type11 li:nth-of-type(15)::marker {
  content: "⓯";
}
.is-style-list_type11 li:nth-of-type(16)::marker {
  content: "⓰";
}
.is-style-list_type11 li:nth-of-type(17)::marker {
  content: "⓱";
}
.is-style-list_type11 li:nth-of-type(18)::marker {
  content: "⓲";
}
.is-style-list_type11 li:nth-of-type(19)::marker {
  content: "⓳";
}
.is-style-list_type11 li:nth-of-type(20)::marker {
  content: "⓴";
}


/*---------------------------------------------------
  Chapter07 : テーブル
---------------------------------------------------*/
  
/* デフォルト
-----------------------------------------*/
figure.wp-block-table.is-style-regular {
  margin: 5% 0;
}

figure.wp-block-table.is-style-stripes {
  margin: 5% 0;
}


/* テーブルtypeA（線のみ01）
-----------------------------------------*/
.is-style-table_typeA table{
  width: 100% ;
  margin: 30px 0;
  border-collapse: collapse;
  border-top: solid 1px #d8d8d8;
  border-bottom: solid 1px #d8d8d8;
}

.is-style-table_typeA table tr{
  border-bottom: solid 1px #d8d8d8;
}

.wp-block-table.is-style-table_typeA thead {
  border-bottom: unset;
}

.is-style-table_typeA table th{
  width: 25%;
  position: relative;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  text-align: left;
  vertical-align: middle;
  border-top: unset;
  border-bottom: unset;
  border-right: unset;
  border-left: unset;
  background: #eee;
}

/* th1列目だけ */
.is-style-table_typeA table th:nth-child(1){
}

.is-style-table_typeA table td{
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
  background: #fff;
  border: unset;
}

/* 1列目だけ */
.is-style-table_typeA table td:nth-child(1){
  width: 25%;
  position: relative;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  text-align: left;
  vertical-align: middle;
}

.is-style-table_typeA table td:last-child{

}
  
.is-style-table_typeA table td p{
  margin: 15px 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
}


/* 線のみ02
-----------------------------------------*/
.is-style-table_typeB table{
  width: 100% ;
  margin: 30px 0;
  border-collapse: collapse;
  border-top: solid 1px #d8d8d8;
  border-bottom: solid 1px #d8d8d8;
}

.is-style-table_typeB table tr{
  border-bottom: solid 1px #d8d8d8;
}

.wp-block-table.is-style-table_typeB thead {
  border-bottom: unset;
}

.is-style-table_typeB table th{
  width: 25%;
  position: relative;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  text-align: left;
  vertical-align: middle;
  border-top: unset;
  border-bottom: unset;
  border-right: unset;
  border-left: unset;
  background: #eee;
}

/* th1列目だけ */
.is-style-table_typeB table th:nth-child(1){
  border-right: solid 1px #d8d8d8;
}


.is-style-table_typeB table td{
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
  background: #fff;
  border: unset;
}

/* 1列目だけ */
.is-style-table_typeB table td:nth-child(1){
  width: 25%;
  position: relative;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  text-align: left;
  vertical-align: middle;
  border-right: solid 1px #d8d8d8;
}

.is-style-table_typeB table td:last-child{

}
  
.is-style-table_typeB table td p{
  margin: 15px 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
}



/* 線のみ03
-----------------------------------------*/
.is-style-table_typeC table{
  width: 100% ;
  margin: 30px 0;
  border-collapse: collapse;
}

.is-style-table_typeC table tr{

}

.wp-block-table.is-style-table_typeC thead {
  border-bottom: unset;
}

.is-style-table_typeC table th{
  width: 25%;
  position: relative;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  text-align: left;
  vertical-align: middle;
  border: unset;
  background: #eee;
}

/* th1列目だけ */
.is-style-table_typeC table th:nth-child(1){
  border-right: solid 1px #d8d8d8;
}

.is-style-table_typeC table td{
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
  background: #fff;
  border: unset;
}

/* 1列目だけ */
.is-style-table_typeC table td:nth-child(1){
  width: 25%;
  position: relative;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  text-align: left;
  vertical-align: middle;
  border-right: solid 1px #d8d8d8;
}

.is-style-table_typeC table tr:last-child td{
  border-bottom: solid 1px #d8d8d8;
}
  
.is-style-table_typeC table td p{
  margin: 15px 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
}



/*---------------------------------------------------
  Chapter08 : ボックス
---------------------------------------------------*/
  
  
/* 注目ボックス
-----------------------------------------*/
.infobox {
  padding: 1em 4%;
  margin: 2em 0 2em;
  border: 2px solid #dddddd;
  border-radius: 0.2em;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.infobox.glaybox {
background: #ececec;
border-color: #c5c5c5;
color: #555555;
}

.infobox.infotitle {
  padding-top: 0;
  padding-bottom: 1.4em;
}

.article_content .infobox p {
  margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
}

.infobox.infotitle .boxtitle span {
  position: relative;
  top: -0.85em;
  padding: 0.3em 1em;
  border-radius: 0.2em;
  display: inline-block;
  vertical-align: bottom;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
  color: #fff;
  background: #6d6d6d;
}

.infobox.glaybox .boxtitle span {
  background: #9c9c9c;
}


/* 枠の途中にタイトル
-----------------------------------------*/
.boxtype02 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.boxtype02 .boxtitle {
position: absolute;
display: inline-block;
top: -13px;
left: 10px;
padding: 0 9px;
background: #FFF;
font-size: 19px;
font-weight: 600;
line-height: 1.5;
color: #95ccff;
}

.article_content .boxtype02 .boxtext {
margin: 0; 
padding: 10px 0 0;
font-size: 15px;
font-weight: 300;
line-height: 2;
}



/* 枠の途中にタイトル
-----------------------------------------*/
.boxtype03 {
  margin: 30px 0;
  border-radius: 10px;
  background: #f1f1f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}

.boxtype03 .boxtitle {
position: relative;
display: block;
padding: 10px;
border-radius: 10px 10px 0 0;
font-size:20px;
font-weight: 600;
line-height: 1.5;
text-align: center;
letter-spacing: 0.05em;
color: #FFF;
background: #5fc2f5;
}

.boxtype03 .boxtext {
margin: 0;
padding: 15px 20px;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
}



/* 注意BOX
-----------------------------------------*/
.boxtype04 {
position: relative;
margin: 2em 0;
padding: 0.5em 1em;
border: solid 3px #E60123;
border-radius: 8px;
}

.boxtype04 .boxtitle {
position: absolute;
display: inline-block;
top: -13px;
left: 10px;
padding: 0 9px;
line-height: 1;
font-size: 19px;
background: #FFF;
color: #E60123;
font-weight: bold;
}

.boxtype04 .boxtitle:before {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: '\f071';
color: #E60123;
}

.boxtype04 .boxtext {
margin: 0; 
padding: 10px 0 0;
font-size: 15px;
font-weight: 400;
line-height: 1.8;
}



/* 合わせて読みたいボックス
-----------------------------------------*/
.boxtype05 {
  position: relative;
  margin: 4em 0;
  padding: 0.5em 1em;
  border: solid 3px #62c1ce;
}

.boxtype05 .box-title {
  position: absolute;
  display: inline-block;
  top: -38px;
  left: -3px;
  padding: 5px 15px;
  height: 25px;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  background: #62c1ce;
}

.boxtype05 .box-title::before {
  font-family: "Font Awesome 5 Free";
  content: '\f0eb';
  font-weight: 500;
  color: #fff;
  padding: 0 5px 0 0;
}

.boxtype05 p {
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #666;
}

.boxtype05 a {
  color: #666;
}

.boxtype05 ul {
  margin: 0;
  padding: 5px 15px 5px 30px;
  list-style-type: disc;
}

.boxtype05 ul li{
font-size: 15px;
line-height: 2;
font-weight: 500;
color: #666;
}
  


/*---------------------------------------------------
  Chapter09 : アコーディオンボックス
---------------------------------------------------*/
  
.accordion {
  width: 100%;
  margin: 30px auto 20px;
  background: #ffd700;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.accordion .accordion_head {
position: relative;
cursor: pointer;
display: block;
padding: 15px;
color: #4D4D4D;
font-size: 18px;
/* font-weight: 700; */
border-bottom: 1px solid #CCC;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}

.accordion i.fa-chevron-down {
position: absolute;
right: 5%;
font-size: 20px;
}

.accordion_head .open i.fa-chevron-down {
 -webkit-transform: rotate(180deg);
 -ms-transform: rotate(180deg);
 -o-transform: rotate(180deg);
 transform: rotate(180deg);
}

.accordion_head.open i.fa-chevron-down:before {
content: "\f106";
transition: transform .4s cubic-bezier(.215,.61,.355,1);
}

.accordion_open {
padding: 20px;
background: #f7f7f7;
}

.submenu {
  display: none;
  background: #444359;
  font-size: 14px;
}



/* コードアコーディオン
-----------------------------------------*/
.code_accordion {
width: 100%;
margin: 30px auto 20px;
background: #fff;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}

.code_accordion .code_head {
display: flex;
justify-content: center;
width: 50%;
margin: 0 auto 30px;
padding: 10px 60px;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
color: #84700078;
text-shadow: 1px 1px 1px rgb(255 255 255 / 50%);
background-image: linear-gradient(#ffd700 0%, #ffeb7e 100%);
box-shadow: 0px 2px 2px rgb(0 0 0 / 29%);
border-bottom: solid 3px #ffeb7e;
}

.code_accordion .code_head:active {
-webkit-transform: translateY(4px);
transform: translateY(4px);
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
border-bottom: none;
}

.code_open {
padding: 1px 20px 1px 20px;
background: #f7f7f7;
}

.submenu {
display: none;
background: #444359;
font-size: 14px;
}


.code_open .hcb_wrap {
position: relative;
z-index: 0;
display: block;
margin-top: .5em;
margin-bottom: .5em;
padding: 0;
}



/* アコーディオンボックス（制作実績用）
-----------------------------------------*/
.works_accordion {
  width: 100%;
  margin: 30px auto 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.works_accordion .workshead {
position: relative;
cursor: pointer;
display: block;
padding: 15px;
color: #fff;
font-size: 18px;
/* font-weight: 700; */
border-bottom: 1px solid #CCC;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
 background-color: #f907fc;
background: -moz-linear-gradient(45deg, #f907fc 0%, #05d6d9 74%);
background: -webkit-linear-gradient(45deg, #f907fc 0%, #05d6d9 74%);
background: linear-gradient(45deg, #f907fc 0%, #05d6d9 74%);
}

.works_accordion i.fa-chevron-down {
position: absolute;
right: 5%;
font-size: 20px;
}

.workshead .works_open i.fa-chevron-down {
 -webkit-transform: rotate(180deg);
 -ms-transform: rotate(180deg);
 -o-transform: rotate(180deg);
 transform: rotate(180deg);
}

.workshead_open {
padding: 20px;
background: #fff;
}

.submenu {
  display: none;
  background: #444359;
  font-size: 14px;
}



/* アコーディオンボックス（Q&A）
-----------------------------------------*/
.qa_accordion {
width: 100%;
margin: 30px auto 20px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}

.qa_accordion .qahead {
position: relative;
cursor: pointer;
display: block;
padding: 0px 20px 15px 40px;
color: #4D4D4D;
font-size: 18px;
/* font-weight: 700; */
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}

.qa_accordion i.fa-plus {
position: absolute;
left: 2%;
font-size: 20px;
}

.qahead .qaopen i.fa-plus {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}

.qahead.qaopen i.fa-plus:before {
content: "\f00d";
transition: transform .4s cubic-bezier(.215,.61,.355,1);
}

.qa_open {
margin: 0 0 0 30px;
padding: 20px;
background: #f7f7f7;
}

.article_content .qa_open p{
margin: 0;
font-size: 18px;
font-weight: 300;
line-height: 2;
}


/* アコーディオンボックス（ボックスデザイン）
-----------------------------------------*/
.box_accordion {
width: 100%;
}

/* 質問ボックス */
.box_accordionQ {
position: relative;
cursor: pointer;
display: block;
padding: 1em;
font-size: 18px;
color: #333;
font-weight: bold;
border: solid 1px #ccc;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}

.box_accordionQ::after,
.box_accordionQ::before {
content: "";
position: absolute;
right: 30px;
top: 20px;
width: 1px;
height: 20px;
background-color: #999;
transition: all 0.3s;
}

.box_accordionQ::after {
transform: rotate(90deg);
}

/* 質問答えボックス */
.box_accordionA {
position: relative;
padding: 30px 20px;
border: solid 1px #e9e9e9;
}

.box_accordionA:before {
content: "A";
position: absolute;
margin: auto;
top: 7%;
bottom: 0;
font-size: 60px;
font-weight: bold;
color: #f1f1f1;
}

.box_accordionA p {
position: relative;
margin: 0;
padding: 0 0 0 70px;
font-size: 18px;
line-height: 1.8;
}

.box_accordionQ.open::before {
transform: rotate(90deg) !important;
}



/* アコーディオンボックス（ボックスデザイン02）
-----------------------------------------*/
.box02_accordion {
width: 100%;
margin: 30px auto 20px;
background: #1b25341a;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}


/* 質問ボックス */
.box02_accordionQ {
position: relative;
cursor: pointer;
display: block;
padding: 1em;
font-size: 18px;
color: #333;
font-weight: bold;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}

.box02_accordionQ::after,
.box02_accordionQ::before {
content: "";
position: absolute;
right: 30px;
top: 20px;
width: 1px;
height: 20px;
background-color: #999;
transition: all 0.3s;
}

.box02_accordionQ::after {
transform: rotate(90deg);
}

/* 質問答えボックス */
.box02_accordionA {
position: relative;
padding: 30px 20px;
background: #fff;
}

.box02_accordionA:before {
content: "A";
position: absolute;
margin: auto;
top: 7%;
bottom: 0;
font-size: 60px;
font-weight: bold;
color: #dadada;
}

.box02_accordionA p {
position: relative;
margin: 0;
padding: 0 0 0 70px;
font-size: 18px;
line-height: 1.8;
}

.box02_accordionQ.open::before {
transform: rotate(90deg) !important;
}


.accordion .home_qa_head {
position: relative;
cursor: pointer;
display: block;
padding: 15px;
color: #4D4D4D;
font-size: 18px;
/* font-weight: 700; */
border-bottom: 1px solid #CCC;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}


/*---------------------------------------------------
  Chapter10 : タブ
---------------------------------------------------*/

.tab_typeAbox{
  margin:30px auto;
background:#fefefe;
}


/*tabの形状*/
.tab_typeA {
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0;
}

.tab_typeA li a {
display: block;
margin: 0 2px;
padding: 10px 20px;
color: #333;
background: #ddd;
border-radius: 10px 10px 0 0;
}

/*liにactiveクラスがついた時の形状*/
.tab_typeA li.active a{
  background:#f7f7f7;
}

.article_content .tab_area h2{
font-size: 1.3rem;
margin: 0 0 20px 10px;
padding: 0;
background: unset;
}

/*エリアの表示非表示と形状*/
.tab_area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #f7f7f7;
  padding:50px 20px;
border-radius: 0 10px 10px 10px;
}

.tab_area li{
  padding: 10px; 
  border-bottom: 1px solid #ddd;
}

/*areaにis-activeというクラスがついた時の形状*/
.tab_area.is-active {
  display: block;/*表示*/
  animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}



/*テーブルタブ
-----------------------------------------*/
p.tagButton {
  margin: 0;
  line-height: 2;
}

.tagButton a{
  display: inline-flex;
margin: 0 5px 0 0;
padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
color: #000;
background: #ffd700;
}

.tagButton a:before {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f292";
margin: 0 3px 0 0;
}

.tagButton a:hover{
background: #000;
color: #ffd700;
}


/*実績画像
-----------------------------------------*/
.worksListBox {
display: flex;
  margin: 30px 0;
}

.worksList {
padding: 0 40px 0 0;
}

.worksList:last-child  {
padding: 0;
}

.worksList img{
margin: 0 auto;
}



/*---------------------------------------------------
  Chapter11 : 吹き出し
---------------------------------------------------*/


/*---------------------------------------------------
  Chapter12 : コードボックス
---------------------------------------------------*/


/*---------------------------------------------------
  Chapter13 : FAQ
---------------------------------------------------*/



  
/*---------------------------------------------------
  引用
---------------------------------------------------*/
  .article_content blockquote {
    color: #555;
    background: #eee;
    background: rgba(53, 53, 53, 0.05);
    margin: 3em 0;
    font-size: 1em;
    line-height: 2;
    padding: 3.5em 2.5em 1em;
    border-radius: 3px;
    position: relative;
  }
  
  p.blockquote_link {
    margin: 20px 10px 25px 0;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
    text-align: right;
  }
  
  .article_content blockquote:before,
  .article_content blockquote:after {
    font-family: "Font Awesome 5 Free";
    position: absolute;
    width: 1em;
    height: 1em;
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    color: #999;
    opacity: 20;
    filter: alpha(opacity=20);
    -ms-filter: "alpha(opacity=20)";
  }
  
  .article_content blockquote:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f10d';
    left: 0.8em;
    top: 0.8em;
  }
  
  .article_content blockquote:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f10e';
    right: 0.8em;
    bottom: 0.4em;
  }
  
  
  
  
  


  




/*---------------------------------------------------
  Chapter98 : エディット画面
---------------------------------------------------*/






/*---------------------------------------------------
  Chapter99 : レスポンシブ
---------------------------------------------------*/



/*---------------------------------------------------------
  Chapter99_01 : 大型モニター（1500px〜）
---------------------------------------------------------*/
@media screen and (min-width: 1500px) {
      
  
  /*---------- テーブル ：1500px〜  ----------*/
      
}/* 1500px〜 END */



  
/*---------------------------------------------------------
  Chapter99_02 : タブレット（〜1024px）
---------------------------------------------------------*/
@media screen and (max-width: 1024) {
    
  /*---------- テーブル ： 〜1024px  ----------*/

    
}/* 〜1024px END */
  
  
  
/*---------------------------------------------------------
  Chapter99_03 : スマホ（〜768px）
---------------------------------------------------------*/

@media screen and (max-width: 768px) {

  /*---------- テーブル ： 〜768px  ----------*/

    
}/* 〜768px END */