
/*_! カスタムプロパティ  */

:root {
  --c0: #333333;
  --c0b: #666666;
  --c0c: #999999;
  --c0d: #444444;
  --c0e: #3F3832;
  --c1: #f03e3e;
  --c1b: #FA7878;
  --c1c: #FFC9C9;
  --c1d: #FFF4F4;
  --c1e: #D68DB5;
  --c1f: #C25591;
  --c2: #2f9e44;
  --c2b: #4caf50;
  --c2c: #D8F5A2;
  --c2d: #FFFCF3;
  --c3: #228be6;
  --c3b: #a5d8ff;
  --c3c: #F5FAFF;
  --c3d: #4834d4;
  --c4: #FD8345;
  --c4b: #F8BD0A;
  --c4c: #FFFF99;
  --c5: #9F5DC5;
  --c5b: #9FA2F7;
  --c6: #00A0B0;
  --c6b: #55BFCA;
  --c7: #e84393;
  --c7b: #EED2E1;
  --c10: #ffffff; 
  --c10b: #eeeeee;
  --c10c: #dddddd;  
  --c10d: #cccccc;
  --c10e: #F5F5F5;  
  
  --marker_a1: linear-gradient(rgba(255, 201, 201, 0) 30%, #ffc9c9 90%);
  --marker_a2: linear-gradient(rgba(216, 245, 162, 0) 30%, #d8f5a2 90%);
  --marker_a3: linear-gradient(rgba(165, 216, 255, 0) 30%, #a5d8ff 90%);
  --marker_a4: linear-gradient(rgba(255, 255, 102, 0) 30%, #FFFF66 90%);
  --marker_a5: linear-gradient(rgba(255, 224, 102, 0) 30%, #ffe066 90%);  
  --marker_a6: linear-gradient(rgba(227, 209, 252, 0) 30%, #E3D1FC 90%);
  --marker_a7: linear-gradient(rgba(159, 162, 247, 0) 30%, #9FA2F7 90%);

  --marker_b1: linear-gradient(rgba(255, 201, 201, 0) 60%, #ffc9c9 90%);
  --marker_b2: linear-gradient(rgba(216, 245, 162, 0) 60%, #d8f5a2 90%);
  --marker_b3: linear-gradient(rgba(165, 216, 255, 0) 60%, #a5d8ff 90%);
  --marker_b4: linear-gradient(rgba(255, 255, 102, 0) 60%, #FFFF66 90%);
  --marker_b5: linear-gradient(rgba(255, 224, 102, 0) 60%, #ffe066 90%);
  --marker_b6: linear-gradient(rgba(227, 209, 252, 0) 50%, #E3D1FC 90%);
  --marker_b7: linear-gradient(rgba(159, 162, 247, 0) 65%, #9FA2F7 90%);

  --marker_d1: linear-gradient(rgba(249, 99, 105, 0) 95%, #f03e3e 30%);
  --marker_d2: linear-gradient(rgba(47, 158, 68, 0) 95%, #2f9e44 30%);
  --marker_d3: linear-gradient(rgba(34, 139, 230, 0) 95%, #228be6 30%);
  --marker_d4: linear-gradient(rgba(112, 116, 243, 0) 95%, #FD8345 30%);
  --marker_d4b: linear-gradient(rgba(249, 155, 76, 0) 95%, #F8BD0A 30%);
  --marker_d5: linear-gradient(rgba(112, 116, 243, 0) 95%, #9F5DC5 30%);
  --marker_d6: linear-gradient(rgba(112, 116, 243, 0) 95%, #00A0B0 30%);
  --marker_d7: linear-gradient(rgba(232, 67, 147, 0) 95%, #e84393 30%);
}

/*_! ヘッダー領域 */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: var(--c1e);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  z-index: 1002;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .header {
    padding: 0 5px;
  }
  .header .sp-nav {
    width: 100%;
    right: -100%;
    height: calc(100vh - 60px);
  }
  .header .overlay {
    top: 60px;
    height: calc(100vh - 60px);
  }
}
@media (min-width: 480px) {
  .header {
    padding: 0 10px;
  }
  .header sp-nav {
    width: 250px;
    right: -250px;
    height: calc(100vh - 60px);
  }
}

.logo {
  width: 250px;
  line-height: 1px;
  margin: 0;
}
.logo a {
  display: block;
  color: var(--c10);
}
.logo img {
  max-width: 100%;
  vertical-align: bottom;
}
.logo h1 {
  font-size: 1.8rem;
  color: var(--c10);
  margin-top: 10px;
}


/*_! ハンバーガーメニュー */
.hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s;
}
.hamburger span {
  position: absolute;
  width: 60%;
  height: 2.5px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.4s;
  left: 20%;
}
.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 16px;
}
.hamburger span:nth-child(3) {
  top: 24px;
}
.hamburger::after {
  content: "MENU";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--c10);
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }
}

/* チェックボックス */
#menu-toggle {
  display: none;
}
#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
#menu-toggle:checked + .hamburger::after {
  content: "CLOSE";
}
#menu-toggle:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}
#menu-toggle:checked ~ .sp-nav {
  right: 0;
}

/*_! オーバーレイ */
.overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 900;
  cursor: pointer;
}

/*_! モバイル用ナビゲーションメニュー */
.sp-nav {
  position: fixed;
  top: 60px;
  right: -300px;
  width: 300px;
  height: calc(100vh - 60px);
  background-color: var(--c0e);
  transition: right 0.4s;
  z-index: 1001;
  overflow-y: auto;
}
.sp-nav ul {
  list-style: none;
  padding: 20px;
}
.sp-nav li {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: bold;
}
.sp-nav a {
  color: var(--c10);
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 12px 10px;
  transition: all 0.3s;
}
.sp-nav a:hover {
  background-color: var(--c0b);
  border-radius: 8px;
}
@media (min-width: 992px) {
  .sp-nav .sp-nav {
    width: 300px;
    right: -300px;
    height: calc(100vh - 60px);
  }
}

.sns-ico {
  display: flex !important;
  list-style: none !important;
}
.sns-ico i {
  font-size: 18px;
  margin-right: 5px;
}

/*_! PC表示用ナビ */
.pc-nav {
  display: flex;
}
@media (min-width: 992px) {
  .pc-nav ul {
    display: flex;
    list-style: none;
  }
  .pc-nav li {
    margin-left: 20px;
  }
  .pc-nav a {
    color: var(--c10);
    text-decoration: none;
    font-size: 1rem;
    padding: 10px;
    transition: all 0.3s;
  }
  .pc-nav a:hover {
    background-color: var(--c0z);
    border-radius: 4px;
    border-radius: 10px;
  }
}
@media (max-width: 992px) {
  .pc-nav {
    display: none;
  }
}

#main_top{
    margin-left : auto;
    margin-right : auto;
    width : 1000px;
    box-sizing : content-box;
}

#main_top img{
  width: 100%;
  object-fit: cover;
}

 @media screen and (max-width: 767px)  {
#main_top{
    margin-left : auto;
    margin-right : auto;
    width : 100%;
    box-sizing : content-box;
}
}

.card-box_a{    
display: block;
padding: 10px;
margin-bottom: 20px;
background-color: var(--c10e);
}

.card_area{
display: grid;
grid-template-columns: 1fr 3fr;
grid-template-areas:
"A B B" 
"A C C"
"A D D";
gap: 1em;
padding: 10px;
border-radius: 10px;
background-color: var(--c10);
}

.card_a{
  grid-area: A;
}
.card_a img{
border-radius: 8px;
}

.card_b{
  grid-area: B;
}
.card_b h3{
  margin-bottom: 5px;
  color: var(--c0b);
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
}
.card_b h3::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 2px;
  background-color: var(--c7b);
  }

   @media screen and (max-width: 400px)  {
  .card_b h3 {
  font-size: 1.1rem;
}
}

.card_c{
  grid-area: C;
}
  .card_c li{
font-size: 1.3rem;
}

.card_d{
  grid-area: D;
}

.card-radius {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.3em 1em;
  text-decoration: none;
  background: var(--c4);
  border-radius: 15px 15px;
  transition: 0.4s;
  margin-bottom: 0;
}
 .card-radius a {
  text-decoration: none;
  color: var(--c10);
}
 .card-radius:hover {
 background: var(--c7b);
}

 @media screen and (max-width: 767px) {
  .card-radius {
  font-weight: bold;
  padding: 0.6em 1.4em;
  text-decoration: none;
  background: var(--c4);
  border-radius: 15px 15px;
  transition: 0.4s;
  margin-bottom: 0;
  font-size: 0.9rem;
}
 .card-radius a {
  text-decoration: none;
  color: var(--c10);
}
 .card-radius hover {
 background: var(--c7b);
}
}

.footer {
  background-color: var(--c0e);
  color: var(--c10);
  padding: 15px 15px;
  width: 100%;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  padding: 10px;
}

.footer-info {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
& p{
  color: var(--c10b);
  font-size: 0.9em; 
}
& ul {
  list-style: none;
}

& ul li {
  margin-bottom: 6px;
}

& a{
  display: inline-block;
  text-decoration: none;
  font-size: 0.9em;
	transition: 0.3s;
  color: var(--c10b);
  -webkit-transform: scale(1);
  transform: scale(1);
}

& a:hover {
  color: var(--c5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

  & .footer_l1 h5,
  .footer-m1 h5,
  .footer-m2 h5,
  .footer-m3 h5,
  .footer-m4 h5{
  margin-bottom: 15px;
  color: var(--c10);
  font-size: 1em;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}
  & .footer_l1 h5::after,
  .footer-m1 h5::after,
  .footer-m2 h5::after,
  .footer-m3 h5::after,
  .footer-m4 h5::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 2px;
  background-color: var(--c5);
}
}

ul.cp_list {
  padding: 0;
  list-style-type: none;
}
ul.cp_list li {
  position: relative;
  padding: 0 2em;
  margin-bottom:5px;
  font-size: 1.1rem;
}
ul.cp_list li:after,
ul.cp_list li:before{
  position: absolute;
  content:'';
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.cp_list li:before {
  left: 0;
  width: 12px;
  height: 12px;
  background: rgba(25,118,210, 1);
}
ul.cp_list li:after {
  top: 0.5em;
  left: 0.5em;
  width: 10px;
  height: 10px;
  background: rgba(25,118,210, 0.5);
}

.contact_box p {
  font-size: 1em;
  color: #333;
  text-decoration: none;
  line-height: 180%;
}
.side_title_a {
  position: relative;
  font-size: 1.2em;
  padding: 5px 0px 10px 5px;
}
.side_title_a:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #ffe6e6, #ffe6e6 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #ffe6e6, #ffe6e6 2px, #fff 2px, #fff 4px);
}
.side_title_b {
  padding: 0px 6px;
  margin-bottom: 10px;
  border-bottom: double 5px #F3E1EB;
  font-size: 1em;
  font-weight: 900;
}
.side_text {
  font-size: 1em;
  padding: 0px 10px 0px 10px;
  margin-bottom: 20px;
}
.heading_a {
  position: relative;
  font-size: 1.25em;
  font-weight: 900;
  color: #666;
  margin-bottom: 10px;
  border-bottom: 2px solid #F3E1EB;
}
.heading_a::before {
  content: attr(data-number);
  display: inline-block;
  margin-right: 5px;
  color: #D691A9;
  font-size: 1.5em;
}
.heading_a1 {
  display: inline;
  font-size: 1.3em;
  font-weight: 900;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, rgb(243, 225, 235) 70%);
}

.va-px {
  vertical-align: -5px;
}

sup {
	font-size: 70%;
	vertical-align: 17%;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}
.dl_info_a {
  background-color: #fff;
  margin: 0px 0px 1em 0px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.dl_info_a dt {
  width: 100%;
  font-size: 1.3em;
  text-decoration: none;
  line-height: 130%;
  background: #f7eef0;
  margin: 0em 0em 0.8em 0em;
  padding: 8px 10px;
  font-weight: bold;
  border-radius: 8px;
  color: #6a6361;
  margin-top: 0.8em;
}
.dl_info_a dd {
  font-size: 1em;
  color: #333333;
  text-decoration: none;
  line-height: 160%;
  margin: 0em 1.8em 1em 1.8em;
  padding: 0px;
}
.dl_info_a dd ul {
  margin-left: 0px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.dl_info_a ul li {
  line-height: 180%;
  color: #0080c0;
  font-size: 0.95em;
  margin-left: 0.45em;
}
.dl_info_z li:before {
  content: ""; /* 空の要素作成 */
  width: 4px; /* 幅指定 */
  height: 4px; /* 高さ指定 */
  display: inline-block; /* インラインブロックにする */
  background-color: #0074bf; /* 背景色指定 */
  position: relative; /* 位置調整 */
  top: -2px; /* 位置指定 */
  border-radius: 50%; /* 要素を丸くする */
  margin-right: 5px; /* 余白指定 */
}
.dl_info_b {
  background-color: #fff;
  margin: 0px 0px 1em 0px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.dl_info_b dt {
  width: 100%;
  font-size: 1.3em;
  text-decoration: none;
  line-height: 160%;
  background: #f7eef0;
  margin-bottom: 0.8em;
  padding: 8px 10px;
  font-weight: bold;
  border-radius: 8px;
  color: #6a6361;
  margin-top: 0.8em;
}
.dl_info_b dd {
  font-size: 1em;
  color: #333333;
  text-decoration: none;
  line-height: 150%;
  margin-left: 0.8em;
  margin: 0em 1.8em 1em 1.8em;
  padding: 0px;
}
.dl_info_b dd ul {
  margin-left: 0px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.dl_info_b dd ul li {
  line-height: 180%;
  color: #0080c0;
  font-size: 0.95em;
  margin-left: 1.5em;
}
.dl_info_b dd li:before {
  content: ""; /* 空の要素作成 */
  width: 4px; /* 幅指定 */
  height: 4px; /* 高さ指定 */
  display: inline-block; /* インラインブロックにする */
  background-color: #0074bf; /* 背景色指定 */
  position: relative; /* 位置調整 */
  top: -2px; /* 位置指定 */
  border-radius: 50%; /* 要素を丸くする */
  margin-right: 5px; /* 余白指定 */
}
.dl_info_c {
  background-color: #fff;
  margin: 0px 0px 1em 0px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.dl_info_c dt {
  width: 100%;
  font-size: 1.1em;
  text-decoration: none;
  line-height: 130%;
  background: #f7eef0;
  margin-bottom: 0.8em;
  padding: 0.4em 1em 0.3em 1em;
  font-weight: bold;
  border-radius: 20px;
  color: #6a6361;
  margin-top: 0.8em;
}
.dl_info_c dd {
  font-size: 1em;
  color: #333333;
  text-decoration: none;
  line-height: 150%;
  margin-left: 0.8em;
  margin: 0em 0.9em 1em 0.9em;
  padding: 0px;
}
.dl_info_c dd img {
  width: 90%;
  margin: auto;
  display: block;
  border: 1px #ccc solid;
}
.dl_info_c dd ul {
  margin-left: 0px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.dl_info_c dd ul li {
  line-height: 180%;
  color: #0080c0;
  font-size: 0.95em;
  margin-left: 1.5em;
}
.dl_info_c dd li:before {
  content: ""; /* 空の要素作成 */
  width: 4px; /* 幅指定 */
  height: 4px; /* 高さ指定 */
  display: inline-block; /* インラインブロックにする */
  background-color: #0074bf; /* 背景色指定 */
  position: relative; /* 位置調整 */
  top: -2px; /* 位置指定 */
  border-radius: 50%; /* 要素を丸くする */
  margin-right: 5px; /* 余白指定 */
}
hr[line_a0] {
  height: 5px;
  background-image: repeating-linear-gradient(45deg, #333 0, #333 1px, transparent 0, transparent 50%);
  background-size: 5px 5px;
  margin: 2.5em 1em;
}
hr[line_a1] {
  height: 5px;
  background-image: repeating-linear-gradient(45deg, #f03e3e 0, #f03e3e 1px, transparent 0, transparent 50%);
  background-size: 5px 5px;
  margin: 2.5em 1em;
}
hr[line_a2] {
  height: 5px;
  background-image: repeating-linear-gradient(45deg, #2f9e44 0, #2f9e44 1px, transparent 0, transparent 50%);
  background-size: 5px 5px;
  margin: 2.5em 1em;
}
hr[line_a3] {
  height: 5px;
  background-image: repeating-linear-gradient(45deg, #228be6 0, #228be6 1px, transparent 0, transparent 50%);
  background-size: 5px 5px;
  margin: 2.5em 1em;
}
hr[line_a4] {
  height: 5px;
  background-image: repeating-linear-gradient(45deg, #f59f00 0, #f59f00 1px, transparent 0, transparent 50%);
  background-size: 5px 5px;
  margin: 2.5em 1em;
}
hr[line_b] {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0.8em 2em;
}
hr[partition] {
  height: 5px;
  border: 1px solid rgba(0, 0, 0, 0);
  background-image: repeating-linear-gradient(45deg, #eed2e1 0, #eed2e1 1px, transparent 0, transparent 50%);
  background-size: 5px 5px;
  margin: 3em auto 3em auto;
}
hr[partition_b] {
  height: 5px;
  border: 1px solid rgba(0, 0, 0, 0);
  background-image: repeating-linear-gradient(45deg, #eed2e1 0, #eed2e1 1px, transparent 0, transparent 50%);
  background-size: 5px 5px;
  margin: 1em auto 1em auto;
}

hr[dots] {
  border: none!important;
  height: 10px;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
hr[dots]::before {
  content: "•••";
  font-size: 1.25em;
  color: #999!important;
  letter-spacing: 0.7em;
  opacity: 0.5;
}

.title-qualifications {
  font-size: 1.25em;
  color: #eb6100;
  text-decoration: none;
  margin-top: 0em;
  margin-bottom: 0.3em;
}
.content-section p:first-of-type::first-letter {
  color: #666;
  float: left;
  font-size: 3rem;
  line-height: 4vw;
  padding-right: 6px;
  /* border: 0.25em double; */
}
.pege-title_a1 {
  font-weight: 900;
  border: 2px solid #eed2e1;
  padding: 0.5em 1em;
  box-shadow: 4px -4px #eed2e1;
  margin: 10px 0px 10px 0px;
  color: #666;
  position: relative;
  font-size: 1.4em;
}
.section-title_a1::before {
  content: attr(data-en);
  display: block;
  color: #f2a8cd;
  font-size: 0.6em;
  font-style: italic;
  margin-left: 2px;
}
.title_d1 {
  display: block;
  font-weight: bold;
  font-size: 1.5em;
  border-left: solid 5px #eed2e1;
  border-bottom: solid 1px #eed2e1;
  margin: 0 auto 10px;
  padding: 5px 12px 5px 12px;
}
@media screen and (max-width: 640px) {
  .section-title_a1 {
    position: relative;
    font-size: 1em;
  }
  .title_d1 {
    display: block;
    font-weight: bold;
    font-size: 1em;
    border-left: solid 5px #eed2e1;
    border-bottom: solid 1px #eed2e1;
    margin: 0 auto 1.2em;
    padding: 5px 12px 5px 12px;
  }
.heading_a {
  position: relative;
  font-size: 1em;
  font-weight: 900;
  color: #666;
  margin-bottom: 10px;
  border-bottom: 2px solid #F3E1EB;
}
  .title_sid_a {
    position: relative;
    font-size: 0.8em;
    padding: 5px 0px 10px 5px;
  }
  .box-row_a figcaption {
    display: table-caption;
    caption-side: bottom;
    background-color: #222;
    color: #fff;
    font: italic sans-serif;
    font-size: 0.6em;
    padding: 4px 6px;
    text-align: center;
  }
  .box-row_b figcaption {
    display: table-caption;
    caption-side: bottom;
    background-color: #222;
    color: #fff;
    font: italic sans-serif;
    font-size: 0.6em;
    padding: 4px 6px;
    text-align: center;
  }
  .box-row_c figcaption {
    display: table-caption;
    caption-side: bottom;
    background-color: #222;
    color: #fff;
    font-size: 0.6px;
    font: italic sans-serif;
    padding: 4px 6px;
    text-align: center;
  }
  .box-row_d img {
    border-radius: 4px;
    width: 75%;
    margin: auto;
  }
  .box-row_d figure {
    display: table;
    width: 100%;
    margin: 0px;
  }
  .box-row_d figcaption {
    display: table-caption;
    caption-side: bottom;
    background-color: #222;
    color: #fff;
    font: italic sans-serif;
    padding: 4px 6px;
    text-align: center;
    font-size: 0.6em;
  }
}
.sub-title_a0 {
  position: relative;
  font-size: 1.5em;
}
.sub-title_a0::before {
  content: attr(data-text);
  display: block;
  color: #999;
  font-size: 0.7em;
  font-style: italic;
  margin-left: 2px;
}
.sub-title_a1 {
  position: relative;
  font-size: 1.5em;
}
.sub-title_a1::before {
  content: attr(data-text);
  display: block;
  color: #f2a8cd;
  font-size: 0.7em;
  margin-left: 2px;
}
.box-row {
  display: flex;
  margin: 10px auto;
  align-items: stretch;
}
.box-row > div {
  display: flex;
  align-items: start;
  width: 40%;
  margin: 10px;
}
.box-row img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.box-row figure {
  display: table;
  width: 100%;
  margin: 0px;
}
.box-row figcaption {
  display: table-caption;
  caption-side: bottom;
  background-color: #222;
  color: #fff;
  font: italic smaller sans-serif;
  padding: 4px 6px;
  text-align: center;
}
@media screen and (max-width: 640px), print {
  .box-row {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .box-row > div {
    width: 75%;
    margin: 20px 10px;
  }
}
.box-row_a {
  display: flex;
  margin: 8px auto;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box-row_a::before {
  content: "";
  display: block;
  width: 20%;
  order: 1;
}
.box-row_a::after {
  content: "";
  display: block;
  width: 32%;
}
.box-row_a > div {
  display: flex;
  align-items: start;
  width: 32%;
  margin: 4px 0px 6px 4px;
}
.box-row_a img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.box-row_a figure {
  display: table;
  width: 100%;
  margin: 0px;
}
.box-row_a figcaption {
  display: table-caption;
  caption-side: bottom;
  background-color: #222;
  color: #fff;
  font: italic sans-serif;
  padding: 4px 6px;
  text-align: center;
  font-size: 0.8em;
}
.box-row_b {
  display: flex;
  margin: 8px auto;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.box-row_b::before {
  content: "";
  display: block;
  width: 10%;
  order: 1;
}
.box-row_b::after {
  content: "";
  display: block;
  width: 32%;
}
.box-row_b > div {
  display: flex;
  align-items: center;
  width: 40%;
  margin: 4px 10px 6px 4px;
}
.box-row_b img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.box-row_b figure {
  display: table;
  width: 100%;
  margin: 0px;
}
.box-row_b figcaption {
  display: table-caption;
  caption-side: bottom;
  background-color: #222;
  color: #fff;
  font: italic sans-serif;
  padding: 4px 6px;
  text-align: center;
  font-size: 0.8em;
}

.box-row_c {
  display: flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.box-row_c > div {
  display: flex;
  width: 80%;
  height: auto;
  margin: 15px;
  justify-content:center;
}
.box-row_c img {
  border-radius: 4px;
  height: auto;
  object-fit: contain;
}
.box-row_c figure {
  display: table;
  width: 100%;
  margin: 0px;
}
.box-row_c figcaption {
  display: table-caption;
  caption-side: bottom;
  background-color: #222;
  color: #fff;
  font: italic sans-serif;
  padding: 4px 6px;
  text-align: center;
  font-size: 0.8em;
}

.box-row_c1 {
  display: flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.box-row_c1 > div {
  display: flex;
  width: 100%;
  height: auto;
  margin: 15px;
  justify-content:center;
}
.box-row_c1 img {
  border-radius: 4px;
  height: auto;
  object-fit: contain;
}
.box-row_c1 figure {
  display: table;
  width: 100%;
  margin: 0px;
}
.box-row_c1 figcaption {
  display: table-caption;
  caption-side: bottom;
  background-color: #222;
  color: #fff;
  font: italic sans-serif;
  padding: 4px 6px;
  text-align: center;
  font-size: 0.8em;
}

.box-row_d {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box-row_d > div {
  display: flex;
  width: 80%;
  height: auto;
  margin: 15px;
}
.box-row_d img {
  border-radius: 4px;
}
.box-row_d figure {
  display: table;
  width: 100%;
  margin: 0px;
}
.box-row_d figcaption {
  display: table-caption;
  caption-side: bottom;
  background-color: #222;
  color: #fff;
  font: italic sans-serif;
  padding: 4px 6px;
  text-align: center;
  font-size: 0.8em;
}

.message {
  position: relative;
}
.message span.remark {
  display: none;
}
.message a:hover span.remark {
  background: none repeat scroll 0 0 #eeffee;
  border: 1px solid #cccccc;
  color: #000000;
  display: block;
  line-height: 1.5em;
  margin: 0.5em;
  padding: 0.5em;
  position: absolute;
  top: 50px;
  width: 20em;
}
.popup-desc {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  border-bottom: 1px dotted #ddd;
}
.popup-desc:after {
  content: "?";
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -2px;
  right: -10px;
  background-color: #ccc;
  transform: scale(-50%);
  border-radius: 50%;
}
.popup-desc span {
  display: none;
  font-size: 12px;
  line-height: 1.5;
  min-width: 100px;
  padding: 10px;
  position: absolute;
  bottom: 2.2em;
  left: 50%;
  transform: translateX(-50%);
  background-color: #faf5f6;
  border: 2px solid #ddd;
  border-radius: 5px;
}
.popup-desc span:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -7.5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  background-color: #faf5f6;
  transform: translateX(-50%) rotate(45deg);
}
.popup-desc:hover span {
  display: block;
  animation: animShow 0.2s linear forwards;
}
.popup-desc span:hover {
  display: none !important;
}
@keyframes animShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
span[marker_a1] {
  font-size: 1.25em;
  color: #666666;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 56%, #ffc9c9 30%);
}
span[marker_a2] {
  font-size: 1.25em;
  color: #666666;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 56%, #d8f5a2 30%);
}
span[marker_a3] {
  font-size: 1.25em;
  color: #666666;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 56%, #a5d8ff 30%);
}
span[marker_a4] {
  font-size: 1.25em;
  color: #666666;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 56%, #ffe066 30%);
}
span[marker_b1] {
  font-size: 1.1em;
  color: #666;
  font-weight: bold;
  background: linear-gradient(transparent 75%, #ffc9c9 30%);
}
span[marker_b2] {
  font-size: 1.1em;
  color: #666;
  font-weight: bold;
  background: linear-gradient(transparent 75%, #d8f5a2 30%);
}
span[marker_b3] {
  font-size: 1.1em;
  color: #666;
  font-weight: bold;
  background: linear-gradient(transparent 75%, #a5d8ff 30%);
}
span[marker_b4] {
  font-size: 1.1em;
  color: #666;
  font-weight: bold;
  background: linear-gradient(transparent 75%, #ffe066 30%);
}
span[marker_c0] {
  font-size: 1em;
  font-weight: 900;
  color: #848484;
}
span[marker_c1] {
  font-size: 1em;
  font-weight: bold;
  color: #f03e3e;
}
span[marker_c2] {
  font-size: 1em;
  font-weight: bold;
  color: #2f9e44;
}
span[marker_c3] {
  font-size: 1em;
  font-weight: bold;
  color: #228be6;
}
span[marker_c4] {
  font-size: 1em;
  font-weight: bold;
  color: #f59f00;
}
span[marker_c5] {
  font-size: 1em;
  font-weight: bold;
  color: #cc5de8;
}

span[marker_c01] {
  font-weight: bold;
  color: #f03e3e;
	font-size: 80%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
span[marker_c02] {
  font-weight: bold;
  color: #2f9e44;
	font-size: 80%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
span[marker_c03] {
  font-weight: bold;
  color: #228be6;
	font-size: 80%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
span[marker_c04] {
  font-weight: bold;
  color: #f59f00;
	font-size: 80%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
span[marker_c05] {
  font-weight: bold;
  color: #8C8C8C;
	font-size: 1.2rem;
	vertical-align: bottom;
	position: relative;
	top: -0.2em;
}

span[marker_d0] {
  font-size: 1em;
  color: #666;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 95%, #666 30%);
}
span[marker_d1] {
  font-size: 1em;
  color: #fa5252;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 95%, #fa5252 30%);
}
span[marker_d2] {
  font-size: 1em;
  color: #2f9e44;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 95%, #2f9e44 30%);
}
span[marker_d3] {
  font-size: 1em;
  color: #228be6;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 95%, #228be6 30%);
}
span[marker_d4] {
  font-size: 1em;
  color: #f59f00;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 95%, #f59f00 30%);
}
span[marker_d5] {
  font-size: 1em;
  color: #333;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 95%, #333 30%);
}
span[marker_e1] {
  font-size: 1.1em;
  color: #d6336c;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 75%, #7878f4 30%);
}
span[storong] {
  font-size: 1.25em;
  font-weight: bold;
  color: #666;
}
.btn-right-radius {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #ffffff;
  background: #ff8f58;
  border-radius: 15px 15px;
  transition: 0.4s;
  margin-bottom: 5px;
  margin-top: 10px;
}
.btn-right-radius a {
  text-decoration: none;
  color: #ffffff;
}
.btn-right-radius:hover {
  background: #636363;
}

.btn-radius {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #ffffff;
  background: #ff8f58;
  border-radius: 15px 15px;
  transition: 0.4s;  
}
.btn-radius a {
  text-decoration: none;
  color: #ffffff;
}
.btn-radius:hover {
  background: #636363;
}

.block_a{
  display:block;
  width:-moz-fit-content; /* Firefox */
  width:fit-content; /* other browsers */
  margin:8px auto 8px auto;
}

.btn-right-radius2 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.1em 1em;
  text-decoration: none;
  color: #ffffff;
  background: #ff8f58;
  border-radius: 15px 15px;
  transition: 0.4s;
  margin-bottom: 5px;
  margin-top: 10px;
}
.btn-right-radius2 a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8em;
}
.btn-right-radius2:hover {
  background: #636363;
}
.btn-sns {
  position: relative;
  display: inline-block;
  font-weight: bold;
  height: 1.5em;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #ffffff;
  background: #1d9bf0;
  border-radius: 15px 15px;
  transition: 0.4s;
  margin: 3px 6px 3px 6px;
}
.btn-sns a {
  text-decoration: none;
  color: #ffffff;
}
.btn-sns:hover {
  background: #636363;
}
ul.sns-btn {
  counter-reset: list;
  list-style-type: none;
  font: 12px/1.6;
  padding: 0;
}
ul.sns-btn li {
  position: relative;
  color: #fff;
  padding: 0 25px 0 25px;
  margin: 7px 0px 7px 0px;
  font-weight: bold;
  font-size: 12px;
  line-height: 30px;
  background: #77b4fd;
  border-radius: 20px;
  width: -moz-fit-content; /* Firefox */
  width: fit-content; /* other browsers */
}
ul.sns-btn li:before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.sns-btn a {
  text-decoration: none;
  color: #ffffff;
}
ul.sns-btn li:hover {
  background: #8393ca;
}
.sausage ul {
  counter-reset: list;
  list-style-type: none;
  font: 12px/1.6;
  padding: 0;
  display: flex;
}
ul.sausage li {
  position: relative;
  color: #fff;
  padding: 0 20px 0 25px;
  margin: 7px 0 7px 0;
  font-weight: bold;
  font-size: 12px;
  line-height: 30px;
  background: #77b4fd;
  border-radius: 20px;
  width: -moz-fit-content; /* Firefox */
  width: fit-content; /* other browsers */
}
ul.sausage li:before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.sausage a {
  text-decoration: none;
  color: #ffffff;
}
ul.sausage li:hover {
  background: #8393ca;
}
ol.point_1 {
  counter-reset: number;
  list-style-type: none !important;
  padding: 10px 5px;
}
ol.point_1 li {
  position: relative;
  padding: 0.5em;
  line-height: 1.6em;
  background: #ffe3e3;
  font-weight: bold;
  font-size: 1.2em;
  border-left: solid 35px #ff8787;
  margin-bottom: 4px;
  border-radius: 4px;
  width: 100%;
}
ol.point_1 li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 1.3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -35px;
  width: 35px;
  height: 1em;
  line-height: 1.2;
  text-align: center;
}
ol.point_2 {
  counter-reset: number;
  list-style-type: none !important;
  padding: 10px 5px;
}
ol.point_2 li {
  position: relative;
  padding: 0.5em;
  line-height: 1.5em;
  background: #c3fae8;
  font-weight: bold;
  font-size: 1.2em;
  border-left: solid 35px #12b886;
  margin-bottom: 4px;
  border-radius: 4px;
  width: 50%;
}
ol.point_2 li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 1.3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -35px;
  width: 35px;
  height: 1em;
  line-height: 1.2;
  text-align: center;
}
ol.point_3 {
  counter-reset: number;
  list-style-type: none !important;
  padding: 10px 5px;
}
ol.point_3 li {
  position: relative;
  padding: 0.5em;
  line-height: 1.5em;
  background: #dbe4ff;
  font-weight: bold;
  font-size: 1.2em;
  border-left: solid 35px #5c7cfa;
  margin-bottom: 4px;
  border-radius: 4px;
  width: 50%;
}
ol.point_3 li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 1.3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -35px;
  width: 35px;
  height: 1em;
  line-height: 1.2;
  text-align: center;
}
ul.summary1 {
  position: relative;
  padding: 10px 5px 5px 5px;
  margin: 20px 10px;
  font: 1.2em;
  border: solid 2px #adcce8;
  border-radius: 8px;
  color: #448ccb;
  width: 85%;
  background: #fff;
}
ul.summary1:before {
  content: "BODY STUDiO ZERO提供のボディメイクプラン";
  position: absolute;
  display: block;
  top: -12px;
  left: 20px;
  background: #fff;
  font-size: 1.25em;
  font-weight: bold;
  color: #eb6100;
  padding: 0 5px;
}
ul.summary1 li {
  list-style: circle;
}
ul.summary2 {
  position: relative;
  padding: 10px 5px 5px 5px;
  margin: 20px 10px;
  font: 1.2em;
  border: solid 2px #adcce8;
  border-radius: 8px;
  color: #448ccb;
  width: 85%;
  background: #fff;
}
ul.summary2:before {
  content: "BODY STUDiO ZERO提供 ボディメイクプラン";
  position: absolute;
  display: block;
  top: -12px;
  left: 20px;
  background: #fff;
  font-size: 1.2em;
  font-weight: bold;
  color: #eb6100;
  padding: 0px 5px 0px 5px;
}
ul.summary2 li {
  margin: 5px 10px;
}
ol.sample1 {
  counter-reset: list;
  list-style-type: none;
  font: 1em;
  padding: 5px 20px 5px 0px;
}
ol.sample1 li {
  position: relative;
  padding: 0px 10px 0px 20px;
  margin: 0px 0px 10px 0px;
  font-size: 1em;
  line-height: 20px;
  border-bottom: dashed 1px #f6a38b;
}
ol.sample1 li:before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #f6a38b;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ol.sample1 li:after {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  height: 0;
  width: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
h3[news1] {
  color: #fff;
  font-size: 120%;
  line-height: 150%;
  letter-spacing: 0.03em;
  font-weight: bold;
  background-image: url(../images/bg/bg-h3_a.png);
  background-repeat: repeat;
  background-color: #e5d5c9;
  padding: 8px 10px;
  margin: 0px 0px 10px 0px;
  border-radius: 4px;
}
#banner-rev {
  display: flex;
  flex-direction: row;
}
.banner_top {
  width: 100%;
  margin: 0px 0px 0px 0px;
}
.banner_box {
  margin: 0px 5px 5px 0px;
}
.banner_box img {
  width: 100%;
  border: 1px #ccc solid;
}

.banner_a {
  display: flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.banner_a > div {
  display: flex;
  width: 100%;
  margin: 5px;
}
.banner_a img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.banner_b {
  display: flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
}
.banner_b > div {
  width: 100%;
  margin: 5px;
}
.banner_b img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.banner_c {
  display: flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.banner_c > div {
  display: flex;
  width: 100%;
  margin: 5px;
}
.banner_c img {
  width: 70%;
  margin: auto;
  display: block;
  height: auto;
  object-fit: contain;
}

.cmt_a {
  font-size: 1em;
  line-height: 160%;
  display: block;
  background: #f5f5f5;
  padding: 12px;
  margin: 8px;
}
.cmt_b {
  font-size: 1.2em;
  line-height: 180%;
  display: block;
  background: #f5f5f5;
  padding: 8px;
  margin: 8px;
}
.outside {
  list-style-position: outside;
  list-style-type: circle;
  margin-left: -10px;
}

@media screen and (max-width: 640px) {
  .banner_box img {
    width: 95%;
    margin: auto;
    display: block;
    border: 1px #ccc solid;
  }
  .banner_box {
    margin: 0px 0px 10px 0px;
  }
  #banner-rev {
    flex-direction: column;
  }
    
.banner_b {
  display:flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.banner_b > div {
  width: 100%;

}
.banner_b img {
  width: 90%;
  object-fit: contain;
  margin: auto;
  display: block
}
}

small {
  font-size: 0.75em;
}
.youtube_wrap {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
.youtube_wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

h5[title_a] {
  font-size: 1.25em;
  color: #eb6100;
  text-decoration: none;
  margin: 4px;
}
h5[title_a0] {
  font-size: 1.25em;
  color: #eb6100;
  text-decoration: none;
  margin: 0;
}
h5[title_a1] {
  font-size: 1.25em;
  color: #eb6100;
  padding-left: 10px;
  margin: 8px;
  font-weight: bold;
  border-left: 4px solid #eb6100;
}
h5[title_a2] {
  font-size: 1.5em;
  color: #eb6100;
  padding-left: 10px;
  margin: 8px;
  font-weight: bold;
  border-left: 4px solid #eb6100;
}
h5[title_a3] {
  font-size: 1.25em;
  color: #eb6100;
  margin: 8px;
  font-weight: bold;
  text-align: center;
}

h3[title_a_1] {
  font-size: 1.6em;
  color: #333;
  position: relative;
  padding-left: 25px;
  margin-bottom: 1.5em;
}
h3[title_a_1]:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px transparent;
  border-bottom: solid 20px rgb(240, 62, 62);
}
h3[title_a_1]:after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 10px;
  width: 95%;
  display: block;
  height: 8px;
  background: -webkit-linear-gradient(to right, rgb(240, 62, 62), transparent);
  background: linear-gradient(to right, rgb(240, 62, 62), transparent);
}
h3[title_a_2] {
  font-size: 1.6em;
  color: #333;
  position: relative;
  padding-left: 25px;
  margin-bottom: 1.5em;
}
h3[title_a_2]:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px transparent;
  border-bottom: solid 20px rgb(47, 158, 68);
}
h3[title_a_2]:after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 10px;
  width: 95%;
  display: block;
  height: 8px;
  background: -webkit-linear-gradient(to right, rgb(47, 158, 68), transparent);
  background: linear-gradient(to right, rgb(47, 158, 68), transparent);
}
h3[title_a_3] {
  font-size: 1.6em;
  color: #333;
  position: relative;
  padding-left: 25px;
  margin-bottom: 1.5em;
}
h3[title_a_3]:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px transparent;
  border-bottom: solid 20px rgb(34, 139, 230);
}
h3[title_a_3]:after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 10px;
  width: 95%;
  display: block;
  height: 8px;
  background: -webkit-linear-gradient(to right, rgb(34, 139, 230), transparent);
  background: linear-gradient(to right, rgb(34, 139, 230), transparent);
}
h3[title_a_4] {
  font-size: 1.6em;
  color: #333;
  position: relative;
  padding-left: 25px;
  margin-bottom: 1.5em;
}
h3[title_a_4]:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px transparent;
  border-bottom: solid 20px rgb(255, 224, 102);
}
h3[title_a_4]:after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 10px;
  width: 95%;
  display: block;
  height: 8px;
  background: -webkit-linear-gradient(to right, rgb(255, 224, 102), transparent);
  background: linear-gradient(to right, rgb(255, 224, 102), transparent);
}
h3[title_a_5] {
  font-size: 1.6em;
  color: #333;
  position: relative;
  padding-left: 25px;
  margin-bottom: 1.5em;
}
h3[title_a_5]:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px transparent;
  border-bottom: solid 20px rgb(131, 115, 166);
}
h3[title_a_5]:after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 10px;
  width: 95%;
  display: block;
  height: 8px;
  background: -webkit-linear-gradient(to right, rgb(131, 112, 166), transparent);
  background: linear-gradient(to right, rgb(131, 112, 166), transparent);
}
ul.note1 {
  padding: 10px;
  font-size: 1.1em;
  line-height: 180%;
  width: 90%;
  list-style: none;
}
ul.note1 li {
  position: relative;
  padding: 7px 5px 7px 10px;
  margin-bottom: 8px;
  border-left: solid 10px #ffc9c9;
  background: #fff3f3;
  color: #333;
}
ul.note2 {
  padding: 10px;
  font-size: 1.1em;
  line-height: 180%;
  width: 90%;
  list-style: none;
}
ul.note2 li {
  position: relative;
  padding: 7px 5px 7px 10px;
  margin-bottom: 8px;
  border-left: solid 10px #d8f5a2;
  background: #fafdf4;
  color: #333;
}
ul.note3 {
  padding: 10px;
  font-size: 1.1em;
  line-height: 180%;
  width: 90%;
  list-style: none;
}
ul.note3 li {
  position: relative;
  padding: 7px 5px 7px 10px;
  margin-bottom: 8px;
  border-left: solid 10px #5c9ee7;
  background: #f1f8ff;
  color: #333;
}
ul.note4 {
  padding: 10px;
  font-size: 1.1em;
  line-height: 180%;
  width: 90%;
  list-style: none;
}
ul.note4 li {
  position: relative;
  padding: 7px 5px 7px 10px;
  margin-bottom: 8px;
  border-left: solid 10px #ffe066;
  background: #fffcf3;
  color: #333;
}
h5[title_a1] {
  font-size: 1.25em;
  color: #eb6100;
  text-decoration: none;
  margin: 6px 0px 10px 0px;
}
h5[title_a2] {
  font-size: 1.25em;
  color: #eb6100;
  padding-left: 10px;
  margin: 6px 0px 10px 0px;
  font-weight: bold;
  border-left: 4px solid #eb6100;
}
h5[title_a3] {
  font-size: 1.1em;
  color: #eb6100;
  padding-left: 10px;
  margin: 6px 0px 10px 0px;
  font-weight: bold;
  border-left: 4px solid #eb6100;
}

h5[head_a1] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5px;
}
h5[head_a1]::before, h5[head_a1]::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #eb6100;
  border-radius: 8px;
}
h5[head_a1]::before {
  margin-right: 20px;
}
h5[head_a1]::after {
  margin-left: 20px;
}
h5[head_a2] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5px;
}
h5[head_a2]::before, h5[head_a2]::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #2f9e44;
  border-radius: 8px;
}
h5[head_a2]::before {
  margin-right: 20px;
}
h5[head_a2]::after {
  margin-left: 20px;
}
h5[head_a3] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5px;
}
h5[head_a3]::before, h5[head_a3]::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #5c9ee7;
  border-radius: 8px;
}
h5[head_a3]::before {
  margin-right: 20px;
}
h5[head_a3]::after {
  margin-left: 20px;
}
h5[head_a4] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5px;
}
h5[head_a4]::before, h5[head_a4]::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #f59f00;
  border-radius: 8px;
}
h5[head_a4]::before {
  margin-right: 20px;
}
h5[head_a4]::after {
  margin-left: 20px;
}
 .right_img {
 float: left;
padding-right: 10px;
shape-outside: circle(50%);
 }
 .right_img_a {
 float: left;
padding-right: 10px;
 }

.price_l3 {
  width: 100%;
    margin-bottom: 1.2em;
}

.price_l3 table{
   table-layout: fixed;
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

.price_l3 th:nth-child(1){
  width: 25%;
}

.price_l3 table td{
  text-align: center;
  border-left: 1.5px solid #ccc;
  border-bottom: 1.5px solid #ccc;
  border-top:none;
  padding: 10px 0;
}

.price_l3 table th:first-child{
  border-radius: 8px 0 0 0;
}
.price_l3 table th:last-child{
  border-radius: 0 8px 0 0;
}
.price_l3 table tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}
.price_l3 table tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}
.price_l3 table th{
  text-align: center;
  color:#fff;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #FF8A8A;
  border-left: 1.5px solid #ccc;
  border-top: 1.5px solid #ccc;
  border-bottom: 1.5px solid #ccc;
  padding: 6px 0px;
}
.price_l3 table td:last-child{
  border-right: 1.5px solid #ccc;
}
.price_l3 table td:nth-child(1) {
  font-weight: bold;
  background-color: #FFECF8;
  color: #228BE6;
}

.price_l2 {
  width: 100%;
    margin-bottom: 1.2em;
}

.price_l2 table{
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

.price_l2 th:nth-child(1){
}

.price_l2 table td{
  text-align: center;
  border-left: 1.5px solid #ccc;
  border-bottom: 1.5px solid #ccc;
  border-top:none;
  padding: 10px 0;
}

.price_l2 table th:first-child{
  border-radius: 8px 8px 0 0;
}
.price_l2 table th:last-child{
  border-radius: 8px 8px 0 0;
}
.price_l2 table tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}
.price_l2 table tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}
.price_l2 table th{
  text-align: center;
  color:#fff;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #FF8A8A;
  border-left: 1.5px solid #ccc;
  border-top: 1.5px solid #ccc;
  border-bottom: 1.5px solid #ccc;
  padding: 6px 0px;
}
.price_l2 table td:last-child{
  border-right: 1.5px solid #ccc;
}
.price_l2 table td:nth-child(1) {
  font-weight: bold;
  color: #228BE6;
  background-color: #FFECF8;
  width: 30%;
}
.picup td{
  font-weight: bold;
  font-size: 125%;
  font-weight: bold;
  background-color: #FDD8A7 !important;
}
