/*
 * トップページ
 */

/* fv */

.top-fv {
  margin-top: 90px;
  background-image: url(../images/bg_fv_pc.jpg);
  background-size: cover;
  margin-bottom: 100px;
}

.top-fv .content {
  height: 500px;
  position: relative;
}

.top-fv h1 {
  color: var(--color-base);
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  animation: fadeInH1 0.5s ease-in forwards;
}

@keyframes fadeInH1 {
  from {
    opacity: 0;
    margin-top: 20px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {

  .top-fv {
    margin-top: 70px;
    background-image: url(../images/bg_fv_sp.jpg);
    margin-bottom: 80px;
  }
  
  .top-fv .content {
    height: 400px;
  }
  
  .top-fv h1 {
    font-size: 28px;
    letter-spacing: 0;
    left: 10px;
  } 

}

/* btn */

.top-blog .btn {
  margin: 40px auto;
}

/* sns */

.top-sns .sns__list {
  display: flex;
  justify-content: space-between;
}

.top-sns .sns__item {
  width: 31%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  transition: all 0.5s;
}

.top-sns .sns__item:hover {
  background-color: var(--color-accent01);
}

.top-sns .sns__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px 25px;
}

.top-sns .sns__item img {
  width: auto;
  height: 60px;
}

.top-sns .sns__detail {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  
  .top-sns .sns__item {
    border-radius: 10px;
  }
  
  .top-sns .sns__item a {
    gap: 10px;
    padding: 15px;
  }
  
  .top-sns .sns__item img {
    height: 30px;
  }
  
  .top-sns .sns__detail {
    font-size: 10px;
  }

}

/* 更新情報 */

.update-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.update-item {
  padding-left: 50px;
  position: relative;
}

.update-item::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 20px;
  background-color: var(--color-accent02);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
}

.update-item a {
  display: flex;
  align-items: center;
}

.update-date {
  font-size: 14px;
}

.update-title {
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  position: relative;
}

.update-title.update-new::after {
  width: 40px;
  height: 20px;
  content: "NEW";
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent03);
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 2px;
  color: #FFFFFF;
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {

  .update-list {
    gap: 15px;
  }

  .update-item {
    padding-left: 20px;
    position: relative;
  }

  .update-item::before {
    left: 5px;
  }

  .update-title {
    font-size: 14px;
  }

  .update-title.update-new::after {
    width: 35px;
    height: 15px;
    right: -45px;
  }

}

/*
 * ブログページ
 */

/* ブログリスト */

.blog-list h2 { 
}

.posts-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px 20px;
}

.post-item {
  width: calc((100% - 40px)/3);
}

.top .post-item {
  width: calc((100% - 60px)/4);
}

.post-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.post-img::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 のアスペクト比（9 / 16 = 0.5625 * 100 = 56.25） */
}

.post-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-item:hover .post-img img {
  transform: scale(1.1); /* 10%拡大 */
}

.post-info {
  margin-top: 10px;
}

.post-title {
  font-size: 16px;
  font-weight: 700;
}

.post-date {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  
  .posts-list {
    gap: 20px;
  }
  
  .post-item {
    width: calc((100% - 20px)/2);
  }
  
  .top .post-item {
    width: calc((100% - 20px)/2);
  }
  
  .post-img {
    margin-bottom: 10px !important;
    border-radius: 10px;
  }
  
  .post-info {
    line-height: 1.5;
  }
  
  .post-title {
    font-size: 14px;
  }
  
  .post-date {
    font-size: 12px;
  }  

}

/*
 * ブログ詳細ページ
 */

.post-header .post-meta {
  text-align: right;
  margin-bottom: 40px;
}

article .post-thumbnail {
  margin-bottom: 40px;
}

article h2 {
  font-weight: 700;
  margin-bottom: 70px;
  margin-top: 80px;
  position: relative;
}

article h3 {
  margin-top: 70px;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
} 

article h3::before {
  width: 15px;
  height: 15px;
  content: "";
  background-color: var(--color-accent01);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
}

article h2::after {
  width: 100%;
  height: 4px;
  content: "";
  background-color: var(--color-accent02);
  position: absolute;
  left: 0;
  bottom: -10px;
}

.post-content {
  margin-bottom: 50px;
  line-height: 2.5;
}

.post-content img {
  margin: 40px 0;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content p.nbsp {
  margin-bottom: 0;
}

.post-content a {
  color: var(--color-accent03);
  text-decoration: underline;
  position: relative;
}

.post-content a::after {
  width: 16px;
  height: 100%;
  content: "";
  background-image: url(../images/icon_link.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: -22px;
}

.post-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 50px 0 50px 20px;
}

.post-content li {
  padding-left: 30px;
  position: relative;
}

.post-content li::before {
  width: 16px;
  height: 40px;
  content: "";
  background-image: url(../images/check.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  
  article .post-thumbnail {
    margin-bottom: 30px;
  }

  article .page-title {
    margin-bottom: 10px;
  }
  
  article h2 {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 50px;
  }
  
  article h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    padding-left: 20px;
  } 
  
  article h3::before {
    width: 12px;
    height: 12px;
  }
  
  article h2::after {
    bottom: -5px;
  }
  
  .post-content {
    font-size: 14px;
    line-height: 2.2;
  }

  .post-content img {
    margin: 30px 0;
  }

  .post-content ul {
    margin: 30px 0 30px 20px;
  }

  .post-content a::after {
    width: 14px;
    height: 20px;
    background-size: 14px 14px;
    bottom: -2px;
  }

  .post-content li::before {
    width: 14px;
    height: 30.8px;
    background-size: 14px 14px;
  }

}

/* SNS */

.sns-share {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.share-message {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-right: 80px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.share-buttons a {
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--color-accent02);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.share-buttons a:hover {
  background-color: var(--color-accent03);
}

.post-categories {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {

  .sns-share {
    align-items: center;
  }
  
  .share-message {
    font-size: 16px;
    text-align: center;
    padding-right: 0;
  }
  
  .share-buttons a {
    padding: 7px 12px;
    font-size: 12px;
  }
  
  .post-categories {
    font-size: 14px;
    margin-bottom: 30px;
  }

}

/* コメント欄 */

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-form {
  display: flex;
  flex-direction: column;
}

.comment-form-url {
  display: none;
}

.comment-form-email {
  order: -1;
  display: none !important;
}

.comment-notes {
  display: none !important;
}

.comment-form-author {
  order: -1;
}

.comments-title {
  margin-bottom: 30px;
}

.comment-form-cookies-consent {
  display: none;
}

.comment-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.comment-author a {
  color: var(--color-accent03);
}

.comment-author img {
  width: auto;
  border-radius: 50%;
}

.comment-meta {
  padding: 0;
  color: var(--color-text);
  background-color: transparent;
}

.admin-icon img {
  width: 50px;
  height: 50px;
}

#comment-form-container {
  margin-bottom: 40px;
}

.comment-form {
  display: flex;
  flex-direction: column;
}

.comment-reply-title {
  margin-bottom: 20px;
  padding-left: 20px;
}

.comment-form-author, .comment-form-email, .comment-form-comment {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 20px;
}

.comment-form-comment {
  align-items: flex-start;
}

.comment-form-comment label {
  margin-top: 10px;
}

.comment-form-author label, .comment-form-email label, .comment-form-comment label {
  min-width: 80px;
  font-weight: 500;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-comment textarea {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px;
  width: 100%;
  max-width: 800px;
  font-weight: 500;
  padding: 15px;
  border: 2px solid var(--color-accent03);
  border-radius: 10px;
  box-sizing: border-box;
}

.comment-form-comment textarea {
  resize: none;
  height: 150px !important;
}

.submit {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
  margin-left: 100px;
  padding: 10px 20px;
  border: none;
  background-color: var(--color-accent02);
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.submit:hover {
  background-color: var(--color-accent03);
}


.comment-form-author input, .comment-form-email input {
  width: 300px;
}

.comment-form-comment textarea {
  width: 8000px;
  height: 100px;
}

.comment-notes {
  font-size: 12px;
  padding-left: 100px;
  margin-bottom: 10px;
}

/* コメントリストのスタイル */
.comment-list {
  list-style: none;
  padding: 0;
}

/* 各コメントのリプライリンクのスタイル */
.comment-reply-link {
  font-weight: bold;
  color: #007acc;
  cursor: pointer;
}

/* 返信コメントのインデント */
.comment-list .children {
  padding-left: 30px;
  border-left: 2px solid #ddd;
  margin-top: 0 !important;
  margin-left: 50px;
}

/* 返信フォームが表示されたときのスタイル */
#respond {
  width: 100%;
  border: 1px solid #ddd;
  padding: 20px;
  margin-top: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

#reply-to-comment {
  padding: 10px;
  margin-bottom: 15px;
  background-color: #f0f0f0;
  border-left: 4px solid #007acc;
  font-style: italic;
  border-radius: 5px;
}

/* ポップアップの基本スタイル */
.reply-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* ポップアップ内容のスタイル */
.popup-content {
  background-color: #fff;
  padding: 20px;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

/* 閉じるボタンのスタイル */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* 返信元コメントのスタイル */
#reply-to-comment {
  padding: 10px;
  background-color: #f9f9f9;
  border-left: 4px solid #007acc;
  margin-bottom: 15px;
  font-style: italic;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {

  .comments-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .admin-icon img, .avatar {
    width: 40px;
    height: 40px;
  }

  #respond {
    width: calc(100% - 40px);
    padding: 20px;
  }

  .comment-date {
    font-size: 12px;
  }

  .comment-reply-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 0px;
    text-align: center;
  }

  .comment-form-author, .comment-form-email, .comment-form-comment {
    padding-left: 0;
  }

  .comment-form-author label, .comment-form-email label, .comment-form-comment label {
    font-size: 14px;
    min-width: 50px;
  }

  .comment-form-author input,
  .comment-form-email input,
  .comment-form-comment textarea {
    font-size: 14px;
    padding: 10px;
    border: 1.5px solid var(--color-accent03);
    border-radius: 5px;
  }

  .comment-form-comment textarea {
    height: 200px !important;
  }

  .form-submit {
    display: flex;
    justify-content: center;
  }

  .submit {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    margin-left: 0;
  }

  .comment-form-author input, .comment-form-email input {
    width: 100%;
  }

  .comment-form-comment, .comment-form-author {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }

  .comment-form-comment label {
    margin-top: 0;
  }

  .comment-form-comment textarea {
    width: 100%;
  }

  .admin-author {
    font-size: 12px;
    font-weight: 700;
  }
  
  .comment-list .children {
    padding-left: 20px;
    margin-left: 30px;
  }

  .comment-content {
    font-size: 14px;
    margin-top: 5px;
  }

  .comment-author {
    font-size: 14px;
  }

}

/* 目次 */

#ez-toc-container {
  width: calc(100% - 100px) !important;
  border: 1px solid var(--color-accent03) !important;
  padding: 30px 50px !important;
}

#ez-toc-container nav li {
  line-height: 2.5 !important;
  padding-left: 15px !important;
}

#ez-toc-container nav li::before {
  display: none !important;
}

#ez-toc-container nav li a {
  color: #333333 !important;
}

#ez-toc-container nav li a::after, .ez-toc-pull-right::after {
  display: none !important;
}

.ez-toc-title-container {
  padding-bottom: 15px !important;
}

.ez-toc-title {
  font-weight: 700 !important;
}

@media screen and (max-width: 767px) {

  #ez-toc-container {
    width: calc(100% - 60px) !important;
    padding: 30px !important;
  }

  .ez-toc-title-container {
    padding-bottom: 5px !important;
  }
  
}

/*
 * ブログ詳細（カスタム）
 */

/* スタイル */

.is-style-point {
  display: block;
  color: var(--color-text);
  padding: 45px 20px 20px 20px;
  margin-top: 40px;
  margin-bottom: 40px !important;
  font-weight: 700;
  position: relative;
}

.is-style-point::before {
  width: 100%;
  height: calc(100% - 40px);
  content: "POINT";
  text-align: center;
  color: #FFFFFF;
  border: 3px solid var(--color-accent02);
  background-color: var(--color-base);
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
}

.is-style-point::after {
  width: 75px;
  height: 30px;
  content: "POINT";
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  background-color: var(--color-accent02);
  position: absolute;
  top: 0px;
  left: 0;
}

@media screen and (max-width: 767px) {

  .is-style-point {
    color: var(--color-text);
    padding: 30px 20px 20px 20px;
    margin-top: 30px;
    margin-bottom: 40px !important;
  }

}

/* 色 */

.has-dark-green-color {
  color: #789274;
}
.has-dark-green-background-color {
  background: #789274;
}

.has-light-green-color {
  color: #ABBAA9;
}
.has-light-green-background-color {
  background: #ABBAA9;
}

.has-yellow-color {
  color: #FFF9C4;
}

.has-yellow-background-color {
  background: #FFF9C4;
}

@media screen and (max-width: 767px) {

  .is-style-point {
    padding-top: 40px;
    margin-bottom: 30px !important;
  }

  .is-style-point::before {
    top: 27px;
  }

}

/* マーカー（黄） */

.marker-yellow {
  position: relative;
  font-weight: 700;
  background: linear-gradient(transparent 60%, #FFF9C4 0%);
}

@media screen and (max-width: 767px) {

  .marker-yellow::before {
    height: 8px;
  }
}

/* 吹き出し */

.speech-bubble {
  display: inline-block;
  margin-left: 90px;
  padding: 20px 30px;
  border-radius: 10px;
  font-weight: 500;
  background-color: #f0f0f0;
  line-height: 1.5;
  position: relative;
}

.speech-bubble::before {
  width: 20px;
  height: 40px;
  content: "";
  background-image: url(../images/speech_bubble.png);
  background-size: 100% 100%;
  position: absolute;
  top: 10px;
  left: -18px;
  z-index: -1;
}

.speech-bubble::after {
  width: 60px;
  height: 60px;
  content: "";
  background-size: 100% 100%;
  top: 0;
  left: -90px;
  position: absolute;
  border-radius: 100%;
}

.speech-bubble.kokeshi::after {
  background-image: url(../images/kokeshi.png);
}

.speech-bubble.shikeko::after {
  background-image: url(../images/shikeko.png);
}

p:empty {
  margin: 0 !important;
}

@media screen and (max-width: 767px) {

  .speech-bubble {
    margin-left: 75px;
    padding: 10px 20px;
  }
  
  .speech-bubble::before {
    top: 5px;
  }

  .speech-bubble::after {
    width: 50px;
    height: 50px;
    left: -75px;
  }

}

/* リンクカード */

@media screen and (max-width: 767px) {

  .wp-embedded-content {
    width: 100%;
  }

}

/*
 * 私について
 */

/* プロフィール */

.profile-box {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.profile-table {
  width: 600px;
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.profile-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-table dt {
  width: 100px;
  font-weight: bold;
  color: #333;
  text-align: left;
  padding-right: 16px;
  padding-left: 16px;
}

.profile-table dd {
  margin: 0;
  color: #555;
  flex: 1;
  text-align: left;
  padding-right: 32px;
}

.profile-img {
  width: 20%;
  height: 100%;
  margin-top: auto;
}

@media screen and (max-width: 767px) {

  .profile-box {
    position: relative;
  }
  
  .profile-table {
    width: calc(100% - 40px);
    padding: 10px 20px;
  }
  
  .profile-row {
    flex-direction: column;
  }
  
  .profile-table dt {
    font-size: 14px;
    padding-right: 0;
    padding-left: 0;;
  }
  
  .profile-table dd {
    font-size: 14px;
    padding-right: 0;
  }
  
  .profile-img {
    position: absolute;
    width: 40%;
    height: auto;
    top: -20px;
    right: 20px;
  }

}

/* これまでの活動 */

.history-list {
  display: flex;
  flex-direction: column;
  margin-left: 120px;
  margin-top: 20px;
  position: relative;
}

.history-list::after {
  width: 2px;
  height: 100%;
  content: "";
  background-color: var(--color-accent01);
  position: absolute;
  top: -10px;
  left: 167.5px;
}

.history-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.history-year {
  width: 130px;
  padding-right: 80px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.history-year::after {
  width: 15px;
  height: 15px;
  content: "";
  background-color: var(--color-accent01);
  border-radius: 20px;
  position: absolute;
  top: 50%;
  right: 34px;
  transform: translateY(-50%);
} 

@media screen and (max-width: 767px) {

  .history-list {
    margin-left: 20px;
  }
  
  .history-list::after {
    top: 0;
    left: 111.5px;
  }
  
  .history-item {
    align-items: center;
    gap: 0px;
    font-size: 14px;
  }
  
  .history-year {
    width: 100px;
    padding-right: 40px;
    font-size: 14px;
  }
  
  .history-year::after {
    width: 12px;
    height: 12px;
    right: 21.5px;
  } 

  .history-description {
    width: calc(100% - 160px);
  }

}

/*
 * 意見箱
 */

.opinion {
  padding-left: calc((100vw - 846px)/2);
}

.opinion .content__inner {
  margin: 0;
}

.opinion h2 {
  font-size: 24px;
  margin-bottom: 40px;
}

.opinion h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.opinion-type {
  margin-bottom: 40px;
}

.opinion-type__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 20px;
}

.opinion-type__item {
  font-size: 16px;
  padding-left: 20px;
  position: relative;
}

.opinion-type__item::before {
  width: 10px;
  height: 10px;
  content: "";
  background-color: var(--color-accent01);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.opinion-caution {
  font-size: 14px;
  color: #FF4C4C;
  font-weight: 700;
  margin-bottom: 20px;
}

.opinion-caution a {
  text-decoration: underline;
  color: #FF4C4C;
  margin: 0 5px;
}

.opinion-box {
  padding: 30px 0;
  border-radius: 20px;
}

.opinion-item {
  margin-bottom: 20px;
}

.opinion-question {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
}

.opinion-answer input, .opinion-answer textarea {
  font-size: 16px;
  width: 800px;
  padding: 20px;
  border-radius: 10px;
  border: 3px solid var(--color-accent01);
  resize: none;
}

.opinion-box .required {
  position: absolute;
  font-size: 12px;
  margin-left: 5px;
  background-color: #FF4C4C;
  color: #FFFFFF;
  top: 50%;
  transform: translateY(-50%);
  padding: 0px 4px 2px 4px;
}

.opinion-answer .wpcf7-submit {
  width: 846px;
  height: 70px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 24px;
  padding: 10px 20px;
  border: none;
  background-color: var(--color-accent02);
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.opinion-answer .wpcf7-submit:hover {
  background-color: var(--color-accent03);
}

.opinion-box .note {
  font-size: 12px;
  padding-left: 5px;
  color: var(--color-accent03);
}

@media screen and (max-width: 767px) {

  .opinion h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .opinion h3 {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .opinion-type {
    margin-bottom: 30px;
  }

  .opinion-type__list {
    padding-left: 20px;
  }

  .opinion-type__item {
    font-size: 14px;
    padding-left: 15px;
  }

  .opinion-type__item::before {
    width: 8px;
    height: 8px;
  }

  .opinion-caution {
    font-size: 12px;
  }

  .opinion-item {
    margin-bottom: 15px;
  }

  .opinion-question {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .opinion-answer input, .opinion-answer textarea {
    font-size: 14px;
    width: calc(100% - 46px);
    padding: 15px;
  }

  .opinion-box .required {
    font-size: 10px;
  }

  .opinion-answer .wpcf7-submit {
    width: calc(100% - 10px);
    height: 50px;
    font-size: 18px;
  }

  .opinion-box .note {
    font-size: 11px;
  }

}

/*
 * 歌える曲
 */

.artist__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.artist__box p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.artist__item a {
  display: flex;
  justify-content: center;
  align-self: center;
  line-height: 1.0;
  padding: 5px 10px 7px 10px;
  border-radius: 10px;
  border: 2px solid var(--color-accent01);
  transition: all 0.3s;
}

.artist__item a:hover {
  background-color: var(--color-accent01);
  color: white;
}

.artist-info {
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

.artist-info dt {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.artist-info dd {
  margin-left: 0;
}

.artist-info ul {
  display: flex;
  flex-wrap: wrap;
}

.artist-info li {
  width: 30%;
  margin-left: 0;
  padding-left: 12px;
  position: relative;
}

.artist-info li::before {
  width: 5px;
  height: 5px;
  content: "";
  background-color: var(--color-accent01);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

@media screen and (max-width: 767px) {


  .artist__list {
    gap: 8px;
  }

  .artist__box p {
    font-size: 16px;
  }

  .artist__item a {
    font-size: 14px;
    padding: 5px 9px 6px 9px;
  }

  .artist-info {
    padding: 20px 0;
  }

  .artist-info dt {
    font-size: 16px;
  }

  .artist-info dd {
    font-size: 14px;
  }

  .artist-info ul {
    justify-content: space-between;
  }

  .artist-info li {
    width: 44%;
    padding-left: 18px;
  }

  .artist-info li::before {
    left: 6px;
    top: 12px;
  }

}