@charset "UTF-8";

/* -- outline / link ------------------------------------------------------------------ */
.h3-3-outline {
  position: relative;
  padding: 0.35rem 0.5rem;
  font-weight: bold;
  font-size: 1.05rem !important;
  margin-bottom: 0.75rem !important;
}

.h3-3-outline:before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#6c757d),
    to(#f5f7fa)
  );
  background-image: -webkit-linear-gradient(right, #6c757d 0%, #f5f7fa 110%);
  background-image: linear-gradient(135deg, #6c757d 0%, #f5f7fa 110%);
}

.h3-3-outline:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#6c757d),
    to(#f5f7fa)
  );
  background-image: -webkit-linear-gradient(right, #6c757d 0%, #f5f7fa 110%);
  background-image: linear-gradient(135deg, #6c757d 0%, #f5f7fa 110%);
}

.h3-3-outline:before {
  top: 0;
}

.h3-3-outline:after {
  bottom: 0;
}

/* -- greeting ------------------------------------------------------------------ */
.img-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

.img-container > img{
  max-width: 180px;
}

.img-container ul {
  margin: 0 0 7px 0;
  padding: 0;
}

.img-container ul li {
  list-style: none;
  line-height: 1.65;
  font-size: 105%;
  color: #4a4a4a;
  /* padding-right: 1rem; */
}

.img-container ul li:nth-child(1) {
  font-size: 105%;
  line-height: 1.45;
  color: #4a4a4a;
  margin-bottom: 7px;
}

.img-container ul li:nth-child(2) {
  margin-bottom: 4px;
}

.img-container ul li:nth-child(3) {
  font-size: 80%;
  color: #4a4a4a;
  line-height: 1.45;
}

.img-container ul li:nth-child(1) > span,
.img-container ul li:nth-child(3) > span {
  display: inline-block;
}

@media (max-width: 575px) {
  .img-container {
    flex-direction: column; /* スマホ表示時は縦に並べる */
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .img-container img {
    order: 1; /* 画像を最初に表示 */
    margin-bottom: 15px; /* 画像の下に余白を追加 */
  }

  .img-container .chaiman {
    order: 2; /* リストを2番目に表示 */
  }

  .img-container ul {
    margin: 0;
  }

  .img-container ul li:nth-child(1) {
    font-size: 16px;
  }

  .img-container ul li:nth-child(2) {
    font-size: 16px;
  }

  .img-container ul li:nth-child(3) {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .img-container img {
    width: 100%;
  }
}

/* -- アクセス ------------------------------------------------------------------ */
.content-area iframe {
  width: 100%;
  min-height: 350px;
}


.txt-int{
  padding-left: 1em;
  text-indent: -1em;
}


.circle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.circle-list li {
  position: relative;
  padding-left: 2em;      /* 全体のインデント */
  text-indent: -2em;    /* 1行目だけ戻して丸数字と揃える */
  line-height: 1.65;
  margin-bottom: 0.5em;
}

.circle-list .maru {
  display: inline-block;
  width: 1.5em;           /* 固定幅 */
  text-align: right;
  margin-right: 0.5em;
  font-weight: bold;
}

