/*
.tab-002 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
     margin: 35px;
    max-width: 100%;
        color: #fff;
}

.tab-002 > label {
    flex: 1 1;
    order: -1;
   /* opacity: .5;*/
    min-width: 100px;
    border-radius: 5px 5px 5px 5px;
    background-color: #0789ed;
    font-size: .9em;
  padding:20px 0;
    text-align: center;
    cursor: pointer;
     margin: 5px;
    font-weight: bold;
}

.tab-002 > label:hover {
    opacity: .8;
       color: #fff;
  
}

.tab-002 input {
    display: none;
      color: #fff;
}

.wrap.pattern-5{
  height:60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.tab-002 > div {
  
    display: none;
    width: 100%;
    padding: 1.5em 1em;
      color: #fff;
}

.a1{
  color:inherit;
  text-decoration: none;
}




*/

/*リスト1*/
  /*リスト内の枠*/
.li1{
  border: solid 2px #ffb03f;
  border-radius: 10px;
  padding: 0.5em 0.5em 0.5em 2em;
   margin: 35px;
  position: relative;
  margin-top: 2em;
}

  /*リスト内の点線*/
.li1 li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
.li1 li:last-of-type {
  border-bottom: none;
}

.li1 li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f138";/*アイコン種類*/
  position: absolute;
  left : 1.5em; /*左端からのアイコンまで*/
  color: #ffb03f; /*アイコン色*/
}

.li1 li:after {
    /*タイトルタブ*/
  background: #ffb03f;
    border-radius: 10px;
  color: #fff;
    font-size: 120%;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 5px 10px;
  content: "お肌のお悩み";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}
/*リスト1*/

/*リスト2*/
  /*リスト内の枠*/
.li2{
  border: solid 2px #ffb03f;
  border-radius: 10px;
  padding: 0.5em;
   margin: 35px;
  position: relative;
  margin-top: 2em;
}
  /*リスト内の点線*/
.li2 li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
.li2 li:last-of-type {
  border-bottom: none;
}
.li2 li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f138";/*アイコン種類*/
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #ffb03f; /*アイコン色*/
}
.li2 li:after {
  
  /*タイトルタブ*/
  background: #ffb03f;
    border-radius: 10px;
  color: #fff;
    font-size: 120%;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 5px 10px;
  content: "カラダのお悩み";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}
/*リスト2*/

/*リスト3*/
  /*リスト内の枠*/
.li3{
  border: solid 2px #ffb03f;
  border-radius: 10px;
  padding: 0.5em;
   margin: 35px;
  position: relative;
  margin-top: 2em;
}
  /*リスト内の点線*/
.li3 li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
.li3 li:last-of-type {
  border-bottom: none;
}
.li3 li:before {
  /*リスト内のアイコン*/
  font-family: "Font Awesome 5 Free";
  content: "\f138";/*アイコン種類*/
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #ffb03f; /*アイコン色*/
}

.li3 li:after {
  
  /*タイトルタブ*/
  background: #ffb03f;
    border-radius: 10px;
  color: #fff;
    font-size: 120%;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 5px 10px;
  content: "年代別のお悩み";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}
/*リスト3*/


<!--動かすｃｓｓ-->
.custom-blink {
  animation: blink-slow 1s infinite;
}

@keyframes blink-slow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}




<!--モットメニューのｃｓｓ-->

@charset"UTF-8";
table{
    width:100%;
    margin-right:auto;
    margin-left:auto;
 /* border:1px solid gray; */
}
td{
    /* border:1px solid gray; */
}

.boxbox {
  width: 90%;
 text-align: center;
 margin:0 auto;
}

.boxbox .mojimoji {
 display: inline-block;
  text-align: left;
}

div.example {
  width: 90%;
  overflow: auto;
}

hr {
  border: none;
  width:100%;
  border-top: 1px double;
  color: #808080;
  overflow: visible;
  text-align: center;
  height: 5px;
}


a:hover img.overwhite{
    cursor:pointer;
    filter: alpha(opacity=60);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";  /* ie 8 */
    -moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.6;              /* Safari 1.x */
    opacity:0.6;
    zoom:1;
}


.marker_yellow {
background: linear-gradient(transparent 60%, #ffff66 60%);
}
 

