/*---------------------------------
共通CSS
---------------------------------*/
body {
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.display-pc {
  display: block;
}

@media screen and (max-width: 480px) {
  .display-pc {
    display: none !important;
  }
}

.display-sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .display-sp {
    display: block;
  }
}

.display-tab {
  display: none;
}

@media screen and (max-width: 960px) {
  .display-tab {
    display: block;
  }
}

.df {
  display: flex;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home h2 {
  font-size: 30px;
  font-family: "Shippori Mincho", serif;
  color: transparent;
  background-image: url(../images/text-background.webp);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  /* Google ChromeとSafariに対応するため */
}

.home h2.heading__underline,
.support_wrap h2.heading__underline {
  position: relative;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto;
}

.home h2.heading__underline img,
.support_wrap h2.heading__underline img {
  height: 32px;
  width: auto;
  margin: 0 auto;
}
.home h2.heading__underline img.h_long {
  height: 74px;
}

.home h2.heading__underline::before,
.support_wrap h2.heading__underline::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 120px;
  height: 3px;
  transform: translate(-50%);
  background-image: linear-gradient(90deg, #25a7ea 0 35%, #cbe0ee 20%);
  background-color: #cbe0ee;
}

p.heading__black {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  margin-bottom: 10px;
}

.home h3 {
  position: relative;
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-align: center;
}

.home h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 120px;
  height: 1px;
  transform: translate(-50%);
  background-color: #333333;
}

/*---------------------------------
固定ボタン
---------------------------------*/
.side_btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}
@media screen and (max-width: 1215px) {
  .side_btn {
    top: 110px;
  }
}
@media screen and (max-width: 960px) {
  .side_btn {
    display: none;
  }
}
.support-btn,
.form-btn,
.contact-btn {
  height: 170px;
  width: 70px;
  background-color: #25a7ea;
  z-index: 1000;
  margin-bottom: 10px;
}

.support-btn a,
.form-btn a,
.contact-btn a {
  height: 100%;
  width: 100%;
  color: #fff;
  text-decoration: none;
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
}

.btn-icon {
  width: 16px;
  height: 16px;
  margin-bottom: 8px;
}

.link-icon {
  width: 19px;
  height: 19px;
}

.link-icon.supporter {
  position: absolute;
  right: 32px;
}

.blank-icon {
  width: 14px;
  height: 14px;
  margin: 8px;
}

.contact-btn img {
  width: 16px;
}

/*---------------------------------
メインビジュアル
---------------------------------*/
.main-visual {
  max-width: 1055px;
  margin: auto;
  margin-top: 100px;
}

/*---------------------------------
コンセプト
---------------------------------*/
.concept-wrap {
  text-align: center;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .concept-wrap {
    padding: 0 10px;
    box-sizing: border-box;
  }
}

.concept-wrap h2 {
  margin-bottom: 30px;
  line-height: 1.5;
}
.concept-wrap h2 img {
  height: 64px;
  width: auto;
  margin: 0 auto;
}

.concept-wrap p {
  margin-bottom: 30px;
  line-height: 2;
}

.concept_img-wrap {
  width: 500px;
  margin: auto;
  display: flex;
  justify-content: center;
}
.concept_img-wrap img {
  width: 100%;
}

/*---------------------------------
私たちについて
---------------------------------*/
#about {
  background-color: #edf5fa;
  border-top: 20px solid #f5fafc;
  border-bottom: 20px solid #f5fafc;
  padding: 100px 0;
}

.about-text__box {
  max-width: 900px;
  margin: 100px auto;
}

.heading-greeting {
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  margin-bottom: 20px;
  text-align: center;
}

.heading-greeting span {
  font-size: 20px;
}

.about-text__box p {
  line-height: 2;
  letter-spacing: 0.05em;
}
.more-list {
  padding: 0 20px;
}
.about-text__box .more-list p {
  max-width: 800px;
  margin: auto;
}

.more-btn {
  width: 100%;
  height: 50px;
  background-color: #fff;
  margin-top: 30px !important;
  cursor: pointer;
}

/*---------------------------------
役人一覧
---------------------------------*/
.staff-box h3 {
  margin-bottom: 70px;
}

.staff-profile__box {
  max-width: 600px;
  margin: 25px auto;
  justify-content: space-between;
  padding: 0 20px;
}

.profile-name__box {
  font-family: "Shippori Mincho", serif;
  margin-bottom: 10px;
  min-width: 244px;
}

.profile-label {
  background-color: #25a7ea;
  border-radius: 3px;
  padding: 2px 0;
  width: 80px;
  color: #fff;
  margin-right: 10px;
}

.profile-name {
  font-size: 20px;
}

.profile-name span {
  font-size: 18px;
}

.staff-img__box {
  position: relative;
}

.staff-img__box img {
  max-width: 900px;
  margin: auto;
}

@media screen and (max-width: 980px) {
  .staff-img__box img {
    max-width: calc(100% - 40px);
    margin: auto;
  }
}

.btn-box {
  max-width: 400px;
  margin: 30px auto;
  text-align: center;
}
.btn-box p {
  margin-top: 0.5em;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
}

.btn-box img {
  width: 20px;
  margin-right: 10px;
}

.btn {
  position: relative;
  height: 50px;
  font-family: "Shippori Mincho", serif;
  border: #25a7ea 1px solid;
  border-radius: 1000px;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  box-shadow: 3px 5px 0 0 #6fbbe5;
}

/*---------------------------------
どうぶつ弁護団ができること
---------------------------------*/
#cando {
  padding: 100px 0 150px;
}
@media screen and (max-width: 980px) {
  #cando {
    padding: 100px 20px;
  }
}

.cando-text__box {
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  max-width: 850px;
  margin: 100px auto 30px;
}

.cando-text__box p {
  line-height: 1.8;
}

.cant {
  border: #25a7ea 1px dashed;
  max-width: 900px;
  margin: auto;
  padding: 50px 80px;
}

.cant .heading__black {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cant .heading__black img {
  width: 30px;
  height: 100%;
  margin-right: 10px;
}

.cant-text {
  margin: 30px 0;
  line-height: 1.8;
}

.cant-list__box {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 90%;
}

.cant-list {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin: 10px 0;
}

.cant-list img {
  width: 20px;
  height: 100%;
  display: inline;
  margin-right: 20px;
}

.cant-list span {
  position: relative;
}

.cant-list span::before {
  content: "";
  position: absolute;
  bottom: -6px;
  display: inline-block;
  width: 100%;
  border-bottom: #25a7ea 2px solid;
}

.cant-list__caution {
  font-size: 12px;
  text-align: left;
  margin-left: 38px;
}

/*---------------------------------
なくならない動物虐待事件
---------------------------------*/
#abuse-case {
  position: relative;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 100px;
}
.abuse-case_inner {
  background: #fff;
  background-size: cover;
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
#abuse-case:after {
  content: "";
  background-image: url(../images/abuse-top-bg.png);
  background-size: cover;
  position: absolute;
  display: block;
  width: calc(100%);
  height: calc(100%);
  top: -10px;
  left: 8px;
  z-index: 1;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 980px) {
  #abuse-case {
    max-width: calc(100% - 40px);
  }
}

.abuse-case__clip {
  position: absolute;
  top: -86px;
  left: 0;
  right: 0;
  margin: auto;
  width: 104px;
}
@media screen and (max-width: 480px) {
  .abuse-case__clip {
    position: absolute;
    top: -54px;
    left: 0;
    right: 0;
    margin: auto;
    width: 70px;
  }
}

.abuse-base__heading {
  padding: 120px 0 60px;
}

.abuse-case__title {
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  color: #fff;
  background-color: #25a7ea;
  max-width: 300px;
  height: 50px;
  margin: auto;
  margin-bottom: 100px;
  box-shadow: 10px 10px 0 0 #cadfed;
}

.abuse-case__box {
}
.abuse-case__box.mb {
  margin-bottom: 100px;
}
@media screen and (max-width: 980px) {
  .abuse-case__box {
  }
}

.abuse-case__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  position: relative;
  width: 300px;
  margin: auto;
  margin-bottom: 30px;
}

.abuse-case__subtitle::before,
.abuse-case__subtitle::after {
  content: url(../images/abuse-case__subtitle.png);
  position: absolute;
}

.abuse-case__subtitle::before {
  transform: scale(0.5);
  top: -25px;
  left: 0;
}

.abuse-case__subtitle::after {
  transform: rotate(180deg) scale(0.5);
  bottom: -30px;
  right: 0;
}

.abuse-case__text {
  font-family: "Shippori Mincho", serif;
  text-align: left;
  margin-bottom: 30px;
  margin: 0 auto 30px;
  display: block;
  width: 62%;
  min-width: 500px;
}
@media screen and (max-width: 580px) {
  .abuse-case__text {
    min-width: inherit;
    width: 80%;
  }
}
.abuse-case__text.center {
  text-align: center;
}
@media screen and (max-width: 980px) {
  .abuse-case__text {
    padding: 0 20px 0 30px;
    text-align: left;
  }
}
.abuse-case__img-box {
  margin-bottom: 40px;
}
.abuse-case__img-box img {
  width: 30%;
  height: 100%;
}

.abuse-case-arrow {
  margin: 30px auto 50px;
  width: 70%;
}

/*---------------------------------
応援メッセージ
---------------------------------*/
#support {
  background-color: #edf5fa;
  border-top: 20px solid #f5fafc;
  border-bottom: 20px solid #f5fafc;
  padding: 100px 0;
  margin-bottom: 100px;
}

.support_read {
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  margin-top: 38px;
}

.support-heading {
  margin-bottom: 100px;
}

.supporter-card {
  background-color: #fff;
  border-radius: 20px;
  max-width: 960px;
  width: 90%;
  margin: 30px auto 50px;
  padding: 50px 80px;
}
.supporter-card.first {
  margin-top: 35px;
}

.supporter-profile__box {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .supporter-profile__box {
    flex-direction: column;
    align-items: center;
  }
}

.supporter-profile-img__box {
  width: 128px;
  height: 128px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 64px;
}

.supporter-profile-img__box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.supporter-profile-name__box {
  font-family: "Shippori Mincho", serif;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .supporter-profile-name__box {
    align-items: center;
    margin-left: 0;
  }
}

.supporter-profile-name {
  font-size: 27px;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .supporter-profile-name {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1;
  }
}

.supporter-profile-alphabet {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .supporter-profile-alphabet {
    font-size: 15px;
    margin-bottom: 0px;
  }
}

.supporter-profile-alphabet br {
  display: none;
}
@media screen and (max-width: 640px) {
  .supporter-profile-alphabet br {
    display: block;
  }
}

.supporter-message {
  line-height: 1.8;
}

.supporter-message p,
.supporter-message ul,
.supporter-message ol {
  margin: 0 0 1em;
}

.supporter-message p:last-child,
.supporter-message ul:last-child,
.supporter-message ol:last-child {
  margin-bottom: 0;
}

.supporter-message img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 28px 0;
}

.supporter-message img + br {
  display: none;
}

/*---------------------------------
応援メッセージ一覧
---------------------------------*/
#support-archive {
  background-color: #edf5fa;
  padding: 160px 0 140px;
}

@media screen and (max-width: 640px) {
  #support-archive {
    padding: 160px 0 80px;
  }
}
/*---------------------------------
Q&A
---------------------------------*/
#q-and-a {
  margin-bottom: 100px;
  margin-top: 50px;
}
#q-and-a h2 {
  margin-bottom: 100px;
}

/*---------------------------------
footer
---------------------------------*/
footer {
  background-color: #25a7ea;
  flex-direction: column;
  color: #fff;
  font-size: 13px;
  padding: 16px 0;
}
@media screen and (max-width: 480px) {
  footer {
    padding-bottom: 136px;
  }
}

footer img {
  width: 350px;
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  /*---------------------------------
  共通CSS
  ---------------------------------*/
  h2 {
    font-size: 23px;
  }

  p.heading__black {
    font-size: 18px;
  }

  /*---------------------------------
  固定ボタン
  ---------------------------------*/
  .side_btn {
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    top: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 2px solid #fff;
  }
  .support-btn,
  .form-btn,
  .contact-btn {
    position: static;
    top: auto;
    height: 50px;
    margin-bottom: 0;
  }

  .support-btn {
    width: 100%;
    order: 3;
    margin-top: 2px;
  }

  .form-btn {
    bottom: 53px;
    width: 100%;
    order: 1;
  }

  .contact-btn {
    bottom: 53px;
    width: 49.8%;
    order: 2;
  }

  .support-btn a,
  .form-btn a,
  .contact-btn a {
    writing-mode: horizontal-tb;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-bottom: 0;
  }

  .contact-btn .btn-icon {
    margin-top: 10px;
  }

  h2.heading__underline img {
    height: 24px;
    width: auto;
    margin: 0 auto;
  }
  h2.heading__underline img.h_long {
    height: 54px;
  }

  /*---------------------------------
  メインビジュアル
  ---------------------------------*/
  .main-visual-sp {
    width: 90%;
    max-width: 400px;
    margin: auto;
  }

  /*---------------------------------
  コンセプト
  ---------------------------------*/
  .concept-wrap p {
  }

  .concept_img-wrap {
    width: 100%;
  }

  /*---------------------------------
  私たちについて
  ---------------------------------*/
  #about {
    padding: 50px 0;
  }

  .about-text__box {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .heading-greeting {
    font-size: 20px;
  }

  .heading-greeting span {
    font-size: 15px;
  }

  .about-text__box p {
    width: 100%;
    margin: 30px auto;
  }

  .btn-box {
    width: 90%;
    margin: 30px auto;
  }

  /*---------------------------------
  役人一覧
  ---------------------------------*/
  .staff-profile__box {
    display: block;
    margin: auto;
    width: 300px;
  }

  .profile-name__box {
    width: 90%;
    margin: 10px auto;
  }

  .profile-label {
    font-size: 13px;
  }

  .profile-name {
    font-size: 15px;
  }

  .profile-name span {
    font-size: 13px;
  }

  .staff-img__box img {
    width: 90%;
    margin-top: 30px;
  }

  /*---------------------------------
  私たちにできること
  ---------------------------------*/
  #cando {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .cando-text__box p {
    width: 90%;
    margin: auto;
  }

  .cant {
    width: 90%;
    padding: 20px;
  }

  .cant .heading__black img {
    width: 25px;
  }

  .cant-text {
    margin: 20px 0;
    font-size: 14px;
  }

  .cant-list__box {
    width: 100%;
  }

  .cant-list-icon__box {
    margin-right: 10px;
  }

  .cant-list-text__box p {
    line-height: 2;
  }

  .cant-list span {
    padding-bottom: 5px;
    background: linear-gradient(transparent 90%, #25a7ea 0%);
  }

  .cant-list span::before {
    display: none;
  }

  /*---------------------------------
  なくならない虐待事件
  ---------------------------------*/
  #abuse-case {
    width: 100%;
    margin-bottom: 0;
  }

  .abuse-base__heading {
    padding: 50px 0 50px;
  }

  .abuse-case__title {
    font-size: 20px;
    width: 270px;
    height: 50px;
    margin-bottom: 50px;
  }

  .abuse-case__text {
    width: 100%;
    font-size: 14px;
  }

  .abuse-case__img-box {
    flex-wrap: wrap;
  }

  .abuse-case__img-box img {
    width: 50%;
    max-width: 250px;
    transform: scale(1.1);
  }

  .abuse-case-arrow {
    width: 90%;
    margin-bottom: 0;
    margin: 0 auto;
  }

  .abuse-case-arrow img.display-sp {
    max-width: 100%;
    transform: translateX(10px);
  }

  /*---------------------------------
  応援メッセージ
  ---------------------------------*/
  #support {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .supporter-card {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
  .support_wrap .supporter-card:nth-last-of-type(2) {
    margin-bottom: 0;
  }

  .supporter-profile__box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .supporter-profile-img__box img {
    width: 128px;
  }

  .supporter-profile-name__box {
    margin-left: 0;
    text-align: center;
  }

  .supporter-profile-name {
    font-size: 20px;
  }

  @media screen and (max-width: 480px) {
    .supporter-profile-text {
      text-align: left;
    }
  }

  /*---------------------------------
  Q&A
  ---------------------------------*/
  #q-and-a h2 {
    margin-bottom: 50px;
  }

  /*---------------------------------
  footer
  ---------------------------------*/
  footer.center {
    justify-content: unset;
    padding-top: 30px;
  }

  footer img {
    width: 200px;
  }
}

.contact-btn-footer {
  text-align: center;
  margin-top: 24px;
}
.contact-btn-footer a img {
  width: 258px;
  height: auto;
}

.underconstruction {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.underconstruction img {
  width: 284px;
  height: auto;
  display: block;
  margin: 0 auto 60px;
}

.underconstruction p {
  font-size: 24px;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .underconstruction p {
    font-size: 3.7vw;
  }
}
