/* 
 * This is an example built for a Thinkful office hour
 * showcasing the stuff you'd want in a "minimal" / minimalist
 * blog template.
 */

@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%; /*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.big-font-size {
  font-size: 50px;
}

.middle-font-size {
  font-size: 40px;
}

.bold-font-size {
  font-size: 25px;
  font-weight: bold;
}

.bold-more-font-size {
  font-size: 30px;
  font-weight: bold;
}
.gradient {
  background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
}

.category {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffaa44;
}
.author {
  display: inline-block;
  background-color: #ffaa44;
  color: white;
  border-radius: 5px;
  padding: 8px 20px;
  margin-right: 15px;
}
.pub-date {
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
}
figure {
  padding: 0;
}

.test {
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 999;
}

.header-fixed {
  background-color: #292c2f;
  box-shadow: 0 1px 1px #ccc;
  padding: 20px 40px;
  height: 80px;
  color: #ffffff;
  box-sizing: border-box;
  top: -100px;

  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.header-fixed .header-limiter {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

/*	The header placeholder. It is displayed when the header is fixed to the top of the
	browser window, in order to prevent the content of the page from jumping up. */

.header-fixed-placeholder {
  height: 80px;
  display: none;
}

/* Logo */

.header-fixed .header-limiter h1 {
  float: left;
  font: normal 28px Cookie, Arial, Helvetica, sans-serif;
  line-height: 40px;
  margin: 0;
}

.header-fixed .header-limiter h1 span {
  color: #5383d3;
}

/* The navigation links */

.header-fixed .header-limiter a {
  color: #ffffff;
  text-decoration: none;
}

.header-fixed .header-limiter nav {
  font: 16px Arial, Helvetica, sans-serif;
  line-height: 40px;
  float: right;
}

.header-fixed .header-limiter nav a {
  display: inline-block;
  padding: 0 5px;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.9;
}

.header-fixed .header-limiter nav a:hover {
  opacity: 1;
}

.header-fixed .header-limiter nav a.selected {
  color: #608bd2;
  pointer-events: none;
  opacity: 1;
}

/* Fixed version of the header */

body.fixed .header-fixed {
  padding: 10px 40px;
  height: 50px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

body.fixed .header-fixed-placeholder {
  display: block;
}

body.fixed .header-fixed .header-limiter h1 {
  font-size: 24px;
  line-height: 30px;
}

body.fixed .header-fixed .header-limiter nav {
  line-height: 28px;
  font-size: 13px;
}

.box {
  padding: 10px 25px;
  display: block;
  margin-top: 60px;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.box-icon {
  background-color: #ffaae0;
  display: table;
  border-radius: 50%;
  height: 100px;
  margin: 0 auto;
  width: 100px;
  margin-top: -10%;
  background-image: url("img/chat.png") !important;
}

.box-icon > span {
  color: #fff;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.info > h4 {
  font-size: 24px;
  letter-spacing: 2px;
}

.info > a {
  margin: 0 auto;
  display: block;
  width: 20%;
  background-color: #03a9f4;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  color: #fff;
  transition: all 0.5s ease 0s;
}

.info > a:hover {
  background-color: #0288d1;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.12);
  color: #fff;
}

.bubbly-button {
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
}
.bubbly-button:focus {
  outline: 0;
}
.bubbly-button:before,
.bubbly-button:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.bubbly-button:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #ffc778 20%, transparent 30%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #ffc778 15%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
}
.bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #ffc778 15%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%),
    radial-gradient(circle, #ffc778 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubbly-button:active {
  transform: scale(0.9);
  background-color: #ffc778;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.card__list {
  max-width: 1200px;
  margin: 2rem auto;
}
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  height: 170px;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease-in;
}
.card:hover {
  transform: translateY(-5px);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.card__img {
  flex: 1 30%;
  -webkit-flex: 1 30%;
  overflow: hidden;
  position: relative;
}
.card__img-preview {
  display: block;
  object-fit: cover;
  margin: 0 auto;
  min-width: 150px;
  max-width: 100%;
  min-height: 100%;
  transition: all 0.5s ease 0s;
}
.card__img-preview:hover {
  transform: scale(1.5);
}
.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem;
}
.card__content {
  flex: 1 70%;
  -webkit-flex: 1 70%;
  padding: 0.8rem;
}
.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.card__text {
  font-size: 0.9rem;
  margin: 0;
}
.card__description {
  font-size: 0.8rem;
  margin: 0;
  margin-top: 0.5rem;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: 2rem;
  line-height: 1rem;
}
.card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #efefef;
  text-align: right;
  padding-top: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #888;
}
.card__price {
  color: #e35354;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

#testim {
  text-align: center;
  font-family: "Hammersmith One", sans-serif;
  text-shadow: 3px 3px 0px rgba(90, 90, 90, 1);
  text-transform: uppercase;
  font-size: 55px;
  color: white;
}

#testimonials1 {
  font-size: 27px;
  font-family: "Georgia", serif;
  line-height: 1.4;
  padding: 13px;
  padding-top: 5px;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 0px rgba(150, 150, 150, 1);
}

#container2 {
  width: 75%;
  height: 20%;
  background: none;
  margin: 0 auto;
}

#top {
  height: 50px;
  width: 100%;
  background: #b14646;
  position: relative;
  top: 20px;
}

#wrap {
  display: block;
  width: 160px;
  height: 160px;
  position: relative;
  bottom: 60px;
  left: 2px;
  float: right;
}

.bubble-bottom {
  top: 20px;
  background: #e44c41;
  height: 100%;
}

#cred {
  text-align: left;
  color: #fff;
  text-shadow: none;
  font-size: 20px;
  border-bottom: 10px solid #b14646;
  padding-left: 20px;
  padding-bottom: 15px;
}

#credit {
  background: none;
  position: relative;
}

@media screen and (max-width: 550px) {
  #testim {
    font-size: 35px;
  }
  #testimonials {
    font-size: 18px;
  }
  p#cred {
    font-size: 14px;
  }

  p#testimonials1 {
    font-size: 17px;
  }

  #top {
    height: 30px;
  }
}

/* 
 * 
 * 偉い人からの推薦、（著者でもOK）
 * 
 */

/* ----- 共通 ----- */

.talk {
  margin-bottom: 40px;
}

.talk figure img {
  width: 100%;
  height: 100%;
  border: 2px solid #9ce191;
  border-radius: 50%;
  margin: 0;
}

/* 画像の下のテキスト */
.talk-imgname {
  padding: 5px 0 0;
  font-size: 10px;
  text-align: center;
}

p.talk-text {
  margin: 0 0 8px;
}

p.talk-text:last-child {
  margin-bottom: 0px;
}

/* 回り込み解除 */
.talk:after,
.talk:before {
  clear: both;
  content: "";
  display: block;
}

/* ----- 右の場合 ----- */

/* 右画像 */
.talk-Rimg {
  margin-right: 4px;
  margin-top: -1px;
  float: right;
  width: 60px;
  height: 60px;
}

/* 右からの吹き出しテキスト */
.talk-Rtxt {
  position: relative;
  margin-right: 100px;
  padding: 1.2em;
  border: 3px solid #9ce191;
  background-color: #ebffe7;
  border-radius: 5px;
}

/* 右の三角形を作る */
.talk-Rtxt:before {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-left: 10px solid #9ce191;
  top: 15px;
  right: -23px;
}

.talk-Rtxt:after {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-left: 10px solid #ebffe7;
  top: 15px;
  right: -19px;
}

/* ----- 共通 ----- */

.talk {
  margin-bottom: 40px;
}

.talk figure img {
  width: 100%;
  height: 100%;
  border: 2px solid #9ce191;
  border-radius: 50%;
  margin: 0;
}

/* 画像の下のテキスト */
.talk-imgname {
  padding: 5px 0 0;
  font-size: 10px;
  text-align: center;
}

p.talk-text {
  margin: 0 0 8px;
}

p.talk-text:last-child {
  margin-bottom: 0px;
}

/* 回り込み解除 */
.talk:after,
.talk:before {
  clear: both;
  content: "";
  display: block;
}

/* ----- 左の場合 ----- */

/* 左画像 */
.talk-Limg {
  margin-left: 4px;
  margin-top: -1px;
  float: left;
  width: 60px;
  height: 60px;
}

/* 左からの吹き出しテキスト */
.talk-Ltxt {
  color: #444;
  position: relative;
  margin-left: 100px;
  padding: 1.2em;
  border: 3px solid #9ce191;
  background-color: #fff;
  border-radius: 5px;
}

/* 左の三角形を作る */
.talk-Ltxt:before {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-right: 10px solid #9ce191;
  top: 15px;
  left: -20px;
}

.talk-Ltxt:after {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-right: 10px solid #fff;
  top: 15px;
  left: -16px;
}
/* 
 * 
 * End 偉い人からの推薦、（著者でもOK）
 * 
 */

/* 
 * 
 * リスト
 * 
 */
ul,
ol {
  color: #1e366a;
  border: dotted #1e366a 1px; /*ドット 色 太さ*/
  padding: 0.5em 0.5em 0.5em 2em;
}

ul li,
ol li {
  line-height: 1.5;
  padding: 0.5em 0;
}
/* 
 * 
 * End リスト
 * 
 */

/* 
 * 
 * CTAボタン
 * 
 */

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-c {
  font-size: 1.8rem;

  position: relative;

  padding: 1.5rem 2rem 1.5rem 2rem;

  color: #fff;
  border-radius: 100vh;
  background: #eb6877;
  -webkit-box-shadow: 0 5px 0 #e85163;
  box-shadow: 0 5px 0 #e85163;
}

a.btn-c span {
  color: #fff100;
}

a.btn-c small {
  font-weight: bold;
}

a.btn-c i {
  margin-right: 1rem;
}

a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #ee7f8b;
  -webkit-box-shadow: 0 2px 0 #e85163;
  box-shadow: 0 2px 0 #e85163;
}

h1 {
  font-size: 2em;
  line-height: 1.3em;
}
h2 {
  font-size: 2em;
  line-height: 1;
  border-bottom: double 5px #ffc778;
  line-height: 2em;
}
h3 {
  font-size: 1.1em;
  line-height: 1.2;

  padding: 0.5em; /*文字周りの余白*/
  color: #494949; /*文字色*/
  background: #fffaf4; /*背景色*/
  border-left: solid 5px #ffaf58; /*左線（実線 太さ 色）*/
}

body {
  font-family: "Ubuntu", sans-serif;
  /* Unitless == good */
  color: #333333;
  font-size: 18px;
  line-height: 1.75;

  font-family: "Noto Sans JP", sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.article {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 30px;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/* 
*
*
* 
*テーブル2 CTAボタン
*
*
*
*
*
 */

.btn-square-so-pop {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #fff;
  background: #fd9535; /*色*/
  border-radius: 4px; /*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  font-weight: bold;
  border: solid 2px #d27d00; /*線色*/
  margin: 5px;
}

.btn-square-so-pop:active {
  /*押したとき*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* 
*
*
*
*テーブル2
*
*
*
*
*
 */

.newImg {
  width: 105px;
  height: 105px;
  object-fit: contain;
}

.container {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.table {
  width: 100%;
  border: 1px solid #eeeeee;
}

.table-header {
  display: flex;
  width: 100%;
  background: #000;
  padding: 18px 0;
}

.table-row {
  display: flex;
  width: 100%;
  padding: 18px 0;
}
.table-row:nth-of-type(odd) {
  background: #eeeeee;
}

.table-data,
.header__item {
  flex: 1 1 20%;
  text-align: center;
  font-size: 13px;
}

.header__item {
  text-transform: uppercase;
}

.filter__link {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 24px;
  padding-right: 24px;
}
.filter__link::after {
  content: "";
  position: absolute;
  right: -18px;
  color: white;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.filter__link.desc::after {
  content: "(desc)";
}
.filter__link.asc::after {
  content: "(asc)";
}

.pinkBackGround {
  background-color: pink !important;
}

/* 
*
*
*
*テーブル
*
*
*
*
*
 */

.header {
  background-color: #327a81;
  color: white;
  font-size: 1.5em;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
}

.tableImg {
  height: 120px;
  width: 120px;
  object-fit: contain;
}

.table-users {
  border: 1px solid #327a81;
  border-radius: 10px;
}

table {
  width: 100%;
}
table td,
table th {
  color: #2b686e;
  padding: 10px;
}
table td {
  text-align: center;
  vertical-align: middle;
}
table td:last-child {
  font-size: 0.95em;
  line-height: 1.4;
  text-align: left;
}
table th {
  background-color: #daeff1;
  font-weight: 300;
}
table tr:nth-child(2n) {
  background-color: white;
}
table tr:nth-child(2n + 1) {
  background-color: #edf7f8;
}

@media screen and (max-width: 700px) {
  table,
  tr,
  td {
    display: block;
  }

  td:first-child {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
  }
  td:not(:first-child) {
    clear: both;
    margin-left: 200px;
    padding: 20px 20px 4px 90px;
    position: relative;
    text-align: left;
  }
  td:not(:first-child):before {
    color: #91ced4;
    content: "";
    display: block;
    left: 0;
    position: absolute;
  }
  td:nth-child(2):before {
    content: "Name:";
  }
  td:nth-child(3):before {
    content: "Email:";
  }
  td:nth-child(4):before {
    content: "Phone:";
  }
  td:nth-child(5):before {
    content: "Comments:";
  }

  tr {
    padding: 10px 0;
    position: relative;
  }
  tr:first-child {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .header {
    background-color: #327a81;
    color: white;
    font-size: 2em;
    font-weight: 700;
    padding: 0;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  }

  .tableImg {
    height: 100px;
    margin: 0.5rem 0;
    width: 100px;
  }

  td:first-child {
    background-color: #c8e7ea;
    border-bottom: 1px solid #91ced4;
    border-radius: 10px 10px 0 0;
    position: relative;
    top: 0;
    transform: translateY(0);
    width: 100%;
  }
  td:not(:first-child) {
    margin: 0;
    padding: 5px 1em;
    width: 100%;
  }
  td:not(:first-child):before {
    font-size: 0.8em;
    padding-top: 0.3em;
    position: relative;
  }
  td:last-child {
    padding-bottom: 1rem !important;
  }

  tr {
    background-color: white !important;
    border: 1px solid #6cbec6;
    border-radius: 10px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
    padding: 0;
  }

  .table-users {
    border: none;
    box-shadow: none;
    overflow: visible;
  }
}

/* 
*
*
*
*全体レスポンシブ
*
*
*
*
*
 */

@media screen and (max-width: 1000px) {
  /*　画面サイズが1000px以下の場合ここの記述が適用される　*/
  .card {
    flex-direction: column !important;
    height: auto;
  }
  .article {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/*======== Start of card ========*/
.kiziCard {
  background-color: hsl(0, 0%, 18%);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1em;
  color: hsl(0, 0%, 100%);
  border-radius: 10px;
  text-align: center;
}
@media (min-width: 600px) {
  .kiziCard {
    flex-direction: row;
    text-align: left;
  }
}
.kiziCard .card__profile-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
}
.kiziCard .card__profile-sidebar .profile-sidebar__img {
  max-width: 115px;
  margin-bottom: 0.8em;
  border: 3px solid hsl(0, 0%, 100%);
  border-radius: 10px;
}
.kiziCard .card__profile-sidebar .profile-sidebar__social {
  display: flex;
}
.kiziCard .card__profile-sidebar .profile-sidebar__social i {
  color: hsl(0, 0%, 100%);
  font-size: 1.3rem;
  font-family: "Sawarabi Gothic";
  opacity: 0.7;
}
.kiziCard .card__profile-sidebar .profile-sidebar__social li:not(:first-child) {
  margin-left: 1.2em;
}
.card .card__profile-sidebar .profile-sidebar__social i:hover {
  opacity: 1;
}
@media (min-width: 530px) {
  .kiziCard .card__profile-info {
    margin-top: 0.5em;
    margin-left: 1em;
    align-items: flex-start;
  }
}
.kiziCard .card__profile-info .profile-info__name {
  line-height: 1.1;
  margin-bottom: 0.5em;
}
.kiziCard .card__profile-info .profile-info__position,
.kiziCard .card__profile-info .profile-info__description {
  color: hsl(0, 0%, 88%);
  font-size: 1.3rem;
  font-family: "Sawarabi Gothic";
}
.kiziCard .card__profile-info .profile-info__position {
  position: relative;
  margin-bottom: 2em;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Sawarabi Gothic";
}
.kiziCard .card__profile-info .profile-info__position::after {
  content: "";
  position: absolute;
  bottom: -1em;
  left: 50%;
  width: 50%;
  height: 1px;
  transform: translate(-50%, -50%);
  background-color: hsl(0, 0%, 88%);
  opacity: 0.2;
}
@media (min-width: 530px) {
  .kiziCard .card__profile-info .profile-info__position::after {
    left: 0;
    transform: translateX(0%);
  }
}
/*-------- end of card --------*/

.sakusyaFontoH2 {
  font-size: 25px !important;
}

.sakusyaFontoH3 {
  font-size: 18px !important;
}

.sakusyaFontoH4 {
  font-size: 15px !important;
}

/*-------- キラッと光るテキスト --------*/
.text {
  padding: 10px 0;
  margin: 0;
  font-size: 20px;
  font-weight: bold;

  background-image: linear-gradient(
    0deg,
    #dc143c 45%,
    /* font color */ #fff 50%,
    #dc143c 55% /* font color */
  );
  background-size: 100% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}
