@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap");
@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes arrow {
  0%, 100% {
    background-position: 0 0;
  }
  25% {
    background-position: 7px 0;
  }
  48% {
    background-position: 14px 0;
  }
  49.99% {
    background-position: 14px 0;
  }
  50% {
    background-position: -14px 0;
  }
  52% {
    background-position: -14px 0;
  }
  75% {
    background-position: -7px 0;
  }
}
@keyframes arrow {
  0%, 100% {
    background-position: 0 0;
  }
  25% {
    background-position: 7px 0;
  }
  48% {
    background-position: 14px 0;
  }
  49.99% {
    background-position: 14px 0;
  }
  50% {
    background-position: -14px 0;
  }
  52% {
    background-position: -14px 0;
  }
  75% {
    background-position: -7px 0;
  }
}
html {
  background: #fff;
  color: #1f2d32;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  font-size: 62.5%;
}
@media screen and (max-width: 374px) {
  html {
    font-size: 56.3%;
  }
}

body,
header,
main,
div,
ul, li,
hgroup,
h1, h2, h3, h4, h5, h6,
form, input, textarea, button,
p,
blockquote,
figure,
picture,
img {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #1f2d32;
  font-family: "FP-ヒラギノUD角ゴ StdN W3", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  -webkit-text-size-adjust: 100% !important;
  min-width: 1200px;
}
@media screen and (max-width: 480px) {
  body {
    min-width: auto;
  }
}

img {
  border: 0;
  vertical-align: top;
}

address, caption, cite, code, dfn, em, strong, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-weight: bold;
}

ul li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select,
button {
  *font-size: 100%;
}

@media screen and (max-width: 480px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  br.sp {
    display: inline;
  }
}

a {
  cursor: pointer;
  text-decoration: underline;
  color: #5377b5;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

.s_ttl {
  font-family: "FP-ヒラギノUD角ゴ StdN W6", sans-serif;
  font-size: 1.6rem;
}
.s_ttl::before {
  content: "";
  display: block;
}
@media screen and (max-width: 480px) {
  .s_ttl {
    font-size: 1.4rem;
  }
}

.btn {
  display: inline-block;
  vertical-align: top;
  border-radius: 9999px;
  background: #1f2d32;
  color: #fff;
  text-align: center;
  width: 270px;
  height: 60px;
  padding-right: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  line-height: 60px;
  font-family: "FP-ヒラギノUD角ゴ StdN W4", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  position: relative;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.btn::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/12;
  background-image: url("../img/arr.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (any-hover: hover) {
  .btn:hover {
    color: rgba(255, 255, 255, 0.6);
  }
  .btn:hover::after {
    opacity: 0.6;
    -webkit-animation: arrow 1s forwards linear;
    animation: arrow 1s forwards linear;
  }
}
@media screen and (max-width: 480px) {
  .btn {
    width: 230px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4rem;
    padding-right: 10px;
  }
  .btn::after {
    width: 10px;
    right: 20px;
  }
  .btn.s {
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) and (any-hover: hover) {
  .btn:hover::after {
    -webkit-animation: none;
    animation: none;
  }
}

.p_wrap {
  width: 100%;
  overflow: hidden;
}

header {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 4.5% 40px 2.8%;
  position: relative;
}
header::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 289/264;
  width: 289px;
  background: url("../img/paint1.png") no-repeat 0 0/contain;
  right: 5.8%;
  top: -54px;
}
header .logo {
  position: relative;
  margin-right: auto;
}
header .glo_nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
header .glo_nav a {
  display: block;
  height: 50px;
  color: inherit;
  text-decoration: none;
  font-family: "FP-ヒラギノUD角ゴ StdN W4", sans-serif;
  font-size: 1.4rem;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
header .glo_nav a::before {
  content: "";
  display: block;
  height: 13px;
  margin-bottom: 8px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
header .glo_nav a.activity::before {
  background-image: url("../img/hd_activity.png");
}
header .glo_nav a.outline::before {
  background-image: url("../img/hd_outline.png");
}
header .glo_nav a.find::before {
  background-image: url("../img/hd_find.png");
}
header .glo_nav a.post::before {
  background-image: url("../img/hd_post.png");
}
header .glo_nav a.support::before {
  background-image: url("../img/hd_support.png");
}
header .glo_nav a.contact::before {
  background-image: url("../img/hd_contact.png");
}
@media (any-hover: hover) {
  header .glo_nav a:hover {
    opacity: 0.6;
  }
}
header .sns_list,
header #ham {
  display: none;
}

@media screen and (max-width: 480px) {
  header {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 80px;
    padding: 0 5.3% 0 3.7%;
  }
  header::before {
    width: 161px;
    right: 5.3%;
    top: 1px;
  }
  header .logo {
    width: 140px;
  }
  header .logo img {
    width: 100%;
    height: auto;
  }
  header nav {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 86px 6.7%;
  }
  header .glo_nav {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 25px;
  }
  header .glo_nav a::before {
    background-position: right top;
  }
  header .sns_list {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
  header .sns_list a {
    display: block;
    color: inherit;
    text-decoration: none;
    font-size: 1rem;
    line-height: 14px;
  }
  header .sns_list a::before {
    content: "";
    display: inline-block;
    vertical-align: top;
    aspect-ratio: 21/20;
    width: 15px;
    margin-right: 9px;
  }
  header .sns_list a.x::before {
    background: url("../img/i_x.png") no-repeat 0 0/contain;
  }
  header .sns_list a.note::before {
    background: url("../img/i_note.png") no-repeat 0 0/contain;
  }
  header #ham {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 24px;
    height: 24px;
    text-decoration: none;
    position: relative;
    z-index: 11;
  }
  header #ham span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: #1f2d32;
    position: relative;
    -webkit-transition: background-color 0.25s;
    transition: background-color 0.25s;
  }
  header #ham span::before, header #ham span::after {
    content: "";
    display: block;
    background: #1f2d32;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  header #ham span::before {
    -webkit-transform: translateY(-7.5px);
    transform: translateY(-7.5px);
  }
  header #ham span::after {
    -webkit-transform: translateY(7.5px);
    transform: translateY(7.5px);
  }
  body.nav_open {
    padding-top: 80px;
  }
  body.nav_open header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
  }
  body.nav_open header nav {
    display: block;
  }
  body.nav_open header #ham span {
    background: rgba(31, 45, 50, 0);
  }
  body.nav_open header #ham span::before {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }
  body.nav_open header #ham span::after {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
.p_mv {
  width: 92.8%;
  margin: 0 auto;
  position: relative;
  height: 700px;
}
@media screen and (max-width: 1400px) {
  .p_mv {
    height: auto;
    aspect-ratio: 13/7;
  }
}
.p_mv::before, .p_mv::after {
  content: "";
  display: block;
  position: absolute;
}
.p_mv::before {
  left: 15px;
  top: 15px;
  width: 100%;
  height: 100%;
  background: url("../img/pat_dot.png") repeat center center/15px;
  border-radius: 50px;
}
.p_mv::after {
  width: 16px;
  aspect-ratio: 32/564;
  background: url("../img/mv_en.png") no-repeat center center/contain;
  left: 12px;
  top: calc(50% - 141px);
}
.p_mv .slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  overflow: hidden;
}
.p_mv .slick-list,
.p_mv .slick-track {
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.p_mv .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  outline: none !important;
}
.p_mv .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.p_mv .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p_mv .slick-track:before, .p_mv .slick-track:after {
  content: "";
  display: table;
}
.p_mv .slick-track:after {
  clear: both;
}
.slick-loading .p_mv .slick-track {
  visibility: hidden;
}
.p_mv .slide {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #fff;
  text-align: left;
  box-sizing: border-box;
  text-align: left;
}
.p_mv .slide p {
  position: absolute;
  top: 24.4%;
  left: 7.9%;
  width: 31.92%;
  max-width: 415px;
}
.p_mv .slide p img {
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: opacity 1s 0.5s, -webkit-clip-path 1s 0.5s;
  transition: opacity 1s 0.5s, -webkit-clip-path 1s 0.5s;
  transition: opacity 1s 0.5s, clip-path 1s 0.5s;
  transition: opacity 1s 0.5s, clip-path 1s 0.5s, -webkit-clip-path 1s 0.5s;
}
.p_mv .slide p::after {
  content: "";
  display: block;
  aspect-ratio: 830/176;
  background: url("../img/mv_copy.png") no-repeat 0 0/contain;
  opacity: 0;
  -webkit-transition: opacity 1s 1.5s;
  transition: opacity 1s 1.5s;
}
.p_mv .slide.on p img {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.p_mv .slide.on p::after {
  opacity: 1;
}
.p_mv .slide1 {
  background: url("../img/slide1.jpg") no-repeat center center/cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 481px) {
  .p_mv .slide1 {
    background: url("../img/slide1@2x.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 480px) {
  .p_mv .slide1 {
    background: url("../img/slide1_sp.jpg") no-repeat center center/cover;
  }
}
.p_mv .slide2 {
  background: url("../img/slide2.jpg") no-repeat center center/cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 481px) {
  .p_mv .slide2 {
    background: url("../img/slide2@2x.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 480px) {
  .p_mv .slide2 {
    background: url("../img/slide2_sp.jpg") no-repeat center center/cover;
  }
}
.p_mv .slide3 {
  background: url("../img/slide3.jpg") no-repeat center center/cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 481px) {
  .p_mv .slide3 {
    background: url("../img/slide3@2x.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 480px) {
  .p_mv .slide3 {
    background: url("../img/slide3_sp.jpg") no-repeat center center/cover;
  }
}
.p_mv .slide4 {
  background: url("../img/slide4.jpg") no-repeat center center/cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 481px) {
  .p_mv .slide4 {
    background: url("../img/slide4@2x.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 480px) {
  .p_mv .slide4 {
    background: url("../img/slide4_sp.jpg") no-repeat center center/cover;
  }
}
.p_mv .slide5 {
  background: url("../img/slide5.jpg") no-repeat center center/cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 481px) {
  .p_mv .slide5 {
    background: url("../img/slide5@2x.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 480px) {
  .p_mv .slide5 {
    background: url("../img/slide5_sp.jpg") no-repeat center center/cover;
  }
}
.p_mv .slide6 {
  background: url("../img/slide6.jpg") no-repeat center center/cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 481px) {
  .p_mv .slide6 {
    background: url("../img/slide6@2x.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 480px) {
  .p_mv .slide6 {
    background: url("../img/slide6_sp.jpg") no-repeat center center/cover;
  }
}
.p_mv .txt {
  position: absolute;
  top: 69.29%;
  left: 8.46%;
  width: 31.38%;
  max-width: 408px;
  opacity: 0;
  -webkit-transition: opacity 1s 3s;
  transition: opacity 1s 3s;
}
.p_mv .txt img {
  width: 100%;
  height: auto;
}
.p_mv .loader {
  width: 24px;
  aspect-ratio: 1;
  background: url("../img/loader.svg") no-repeat center center/contain;
  -webkit-animation: load 1.4s infinite linear;
  animation: load 1.4s infinite linear;
  position: absolute;
  z-index: 1;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.p_mv.on .txt {
  opacity: 1;
}
.p_mv.on .loader {
  opacity: 0;
}

@media screen and (max-width: 480px) {
  .p_mv {
    width: 92%;
    aspect-ratio: 690/950;
  }
  .p_mv::before {
    left: 7px;
    top: 7px;
    border-radius: 25px;
  }
  .p_mv::after {
    width: 12px;
    left: auto;
    right: 12px;
    top: 20px;
  }
  .p_mv .slider {
    border-radius: 25px;
  }
  .p_mv .slide p {
    top: 46.5%;
    left: 3.8%;
    width: 73.6%;
  }
  .p_mv .slide p::after {
    -webkit-transform: translateY(-38%);
    transform: translateY(-38%);
  }
  .p_mv .txt {
    top: auto;
    bottom: 5.3%;
    left: 5.5%;
    width: 61.16%;
  }
  .p_mv .loader {
    width: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
  }
}
.p_intro {
  padding: 121px 0 160px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.p_intro.done {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.p_intro .intro1 {
  width: 600px;
  margin: 0 auto;
  text-align: left;
}
.p_intro .intro1 p {
  font-size: 1.6rem;
  line-height: 2.5;
}
.p_intro .intro1 p + p {
  margin-top: 2.5em;
}
.p_intro .voice_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
}
.p_intro .voice_list::before, .p_intro .voice_list::after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
}
.p_intro .voice_list::before {
  aspect-ratio: 106/112;
  width: 53px;
  background: url("../img/paint2.png") no-repeat 0 0/contain;
  left: -53px;
  top: 135px;
  -webkit-transition: opacity 1s 0.5s;
  transition: opacity 1s 0.5s;
}
.p_intro .voice_list::after {
  aspect-ratio: 596/600;
  width: 298px;
  background: url("../img/paint3.png") no-repeat 0 0/contain;
  right: -262px;
  bottom: -157px;
  -webkit-transition: opacity 1s 1.5s;
  transition: opacity 1s 1.5s;
}
.p_intro .voice_list.done::before, .p_intro .voice_list.done::after {
  opacity: 1;
}
.p_intro .voice_list li {
  position: relative;
  z-index: 1;
}
.p_intro .voice_list li:nth-child(1) {
  margin: 0 110px 0 -32px;
}
.p_intro .voice_list li:nth-child(1)::after {
  left: calc(50% - 30px);
}
.p_intro .voice_list li:nth-child(2) {
  margin: 70px 150px 0 0;
}
.p_intro .voice_list li:nth-child(3) {
  margin: 28px -100px 0 0;
}
.p_intro .voice_list li::before, .p_intro .voice_list li::after {
  content: "";
  display: block;
  position: absolute;
}
.p_intro .voice_list li::before {
  width: 26px;
  aspect-ratio: 26/23;
  top: -6px;
  right: -6px;
  background: url("../img/i_quo.svg") no-repeat 0 0/contain;
}
.p_intro .voice_list li::after {
  width: 14px;
  height: 13px;
  bottom: -12px;
  left: calc(50% - 20px);
  background: url("../img/shape_bal.png") no-repeat 0 0/contain;
}
.p_intro .voice_list span {
  display: block;
  padding: 40px 36px;
  border: 1px solid #1f2d32;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 27px, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 27px, 100% 100%, 0 100%);
}
.p_intro .intro2 {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 120px auto 0;
  text-align: left;
}
.p_intro .intro2::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 764/810;
  width: 382px;
  background: url("../img/paint4.png") no-repeat 0 0/contain;
  left: -140px;
  top: -224px;
  opacity: 0;
  -webkit-transition: opacity 2s 0.5s;
  transition: opacity 2s 0.5s;
}
.p_intro .intro2.done::before {
  opacity: 1;
}
.p_intro .intro2 .txt1 {
  position: relative;
  margin: 0 0 0 11.1%;
}
.p_intro .intro2 .txt1::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 174/180;
  width: 89px;
  background: url("../img/risu1.png") no-repeat 0 0/contain;
  right: 4px;
  top: 106px;
}
.p_intro .intro2 .txt2 {
  margin: 60px 0 0 9%;
  font-size: 1.6rem;
  line-height: 2.5;
}
.p_intro .img {
  position: absolute;
  width: 59%;
  top: 225px;
  right: -7%;
}
.p_intro .img img {
  position: relative;
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.p_intro .img::after {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background: url("../img/pat_dot.png") repeat center center/15px;
  border-radius: 20px;
}

@media screen and (max-width: 480px) {
  .p_intro {
    padding: 37px 0 0;
  }
  .p_intro .intro1 {
    width: 280px;
  }
  .p_intro .intro1 p {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
  }
  .p_intro .voice_list {
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    margin-bottom: 55px;
  }
  .p_intro .voice_list::before {
    width: 32px;
    left: -3px;
    top: 151px;
  }
  .p_intro .voice_list::after {
    width: 179px;
    right: -29px;
    bottom: 55px;
  }
  .p_intro .voice_list li:nth-child(1) {
    margin: 61px 56px 0 14px;
  }
  .p_intro .voice_list li:nth-child(1)::after {
    left: calc(50% - 20px);
  }
  .p_intro .voice_list li:nth-child(1) img {
    width: 39px;
    height: auto;
  }
  .p_intro .voice_list li:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 23px 0 0 80px;
  }
  .p_intro .voice_list li:nth-child(2) img {
    width: 63px;
    height: auto;
  }
  .p_intro .voice_list li:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0;
  }
  .p_intro .voice_list li:nth-child(3) img {
    width: 63px;
    height: auto;
  }
  .p_intro .voice_list li::before {
    width: 18px;
    top: -4px;
    right: -4px;
  }
  .p_intro .voice_list li::after {
    background: url("../img/shape_bal2.png") no-repeat 0 0/contain;
  }
  .p_intro .voice_list span {
    padding: 25px;
    border-radius: 6px;
    -webkit-clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 19px, 100% 100%, calc(50% - 6px) 100%, 40% 80%, calc(50% - 20px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 19px, 100% 100%, calc(50% - 6px) 100%, 40% 80%, calc(50% - 20px) 100%, 0 100%);
  }
  .p_intro .intro2 {
    margin: 62px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p_intro .intro2::before {
    width: 213px;
    left: -57px;
    top: -132px;
  }
  .p_intro .intro2 .txt1 {
    position: relative;
    margin: 0;
  }
  .p_intro .intro2 .txt1 img {
    width: 237px;
    height: auto;
  }
  .p_intro .intro2 .txt1::before {
    width: 67px;
    right: auto;
    left: calc(50% + 60px);
    top: 197px;
  }
  .p_intro .intro2 .txt2 {
    margin: 35px 0 0;
    font-size: 1.4rem;
  }
  .p_intro .img {
    position: relative;
    width: 86.7%;
    margin: 82px auto 0;
    top: 0;
    right: 0;
  }
  .p_intro .img::after {
    left: 5px;
    top: 5px;
  }
}
#s_news {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0 65px;
  text-align: left;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
#s_news.done {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#s_news .s_ttl {
  position: relative;
}
#s_news .s_ttl::before {
  height: 73px;
  background: url("../img/news_ttl.png") no-repeat 0 0/contain;
  margin-bottom: 45px;
}
#s_news .s_ttl::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 442/180;
  width: 221px;
  background: url("../img/risu2.png") no-repeat 0 0/contain;
  left: 252px;
  top: -18px;
}
#s_news .article_list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid #1f2d32;
  position: relative;
}
#s_news .article_list::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 256/276;
  width: 128px;
  background: url("../img/paint5.png") no-repeat 0 0/contain;
  right: -80px;
  top: -61px;
  opacity: 0;
  -webkit-transition: opacity 1s 0.5s;
  transition: opacity 1s 0.5s;
}
#s_news .article_list.done::before {
  opacity: 1;
}
#s_news article {
  position: relative;
  width: 250px;
}
#s_news article a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  text-decoration: none;
  color: inherit;
}
@media (any-hover: hover) {
  #s_news article a:hover .img img {
    opacity: 0.4;
  }
  #s_news article a:hover .img::before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #s_news article a:hover .ttl, #s_news article a:hover .date {
    opacity: 0.6;
  }
}
#s_news article .img {
  position: relative;
  aspect-ratio: 500/260;
  overflow: hidden;
  background-color: #1f2d32;
}
#s_news article .img::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/news_link.png") no-repeat center center/121px 14px;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
#s_news article .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: opacity 0.75s;
  transition: opacity 0.75s;
}
#s_news article .ttl, #s_news article .date {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#s_news article .ttl {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: auto;
  max-height: 6.8em;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
#s_news article .date {
  margin-top: 15px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
  color: #839196;
  font-size: 1rem;
}
#s_news .btn {
  margin-top: 80px;
}

@media screen and (max-width: 480px) {
  #s_news {
    padding: 50px 0 0;
    position: relative;
    z-index: 2;
  }
  #s_news .s_ttl {
    text-align: center;
    padding-bottom: 78px;
  }
  #s_news .s_ttl::before {
    height: 37px;
    background: url("../img/news_ttl.png") no-repeat center top/contain;
    margin-bottom: 17px;
  }
  #s_news .s_ttl::after {
    width: 155px;
    left: calc(50% - 37px);
    top: auto;
    bottom: 0;
  }
  #s_news .article_list {
    margin: 30px auto 0;
    width: 66.7vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 30px;
    padding-bottom: 30px;
  }
  #s_news .article_list::before {
    right: -74px;
  }
  #s_news article {
    width: auto;
  }
  #s_news article .ttl {
    margin-top: 6px;
    font-size: 1.4rem;
  }
  #s_news article .date {
    margin-top: 4px;
  }
  #s_news .btn {
    display: block;
    margin: 30px auto 0;
  }
}
#s_shg {
  padding: 100px 0 32px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
#s_shg.done {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#s_shg .hd {
  position: relative;
  width: 920px;
  margin: 0 auto;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 430px;
}
#s_shg .hd::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 782/728;
  width: 391px;
  background: url("../img/paint6.png") no-repeat 0 0/contain;
  left: -282px;
  top: 29px;
  opacity: 0;
  -webkit-transition: opacity 2s 0.5s;
  transition: opacity 2s 0.5s;
}
#s_shg .hd.done::before {
  opacity: 1;
}
#s_shg .hd .note {
  margin-top: 25px;
  font-size: 1.2rem;
  line-height: 2;
}
#s_shg .hd .img {
  position: absolute;
  top: 155px;
  left: -147px;
}
#s_shg .hd .img img {
  position: relative;
  border-radius: 20px;
}
#s_shg .hd .img::after {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background: url("../img/pat_dot.png") repeat center center/15px;
  border-radius: 20px;
}
#s_shg .s_ttl {
  position: relative;
}
#s_shg .s_ttl::before {
  height: 274px;
  background: url("../img/shg_ttl.png") no-repeat 0 0/contain;
  margin-bottom: 46px;
}
#s_shg .s_ttl::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 158/182;
  width: 79px;
  background: url("../img/risu3.png") no-repeat 0 0/contain;
  left: 315px;
  top: 196px;
}
#s_shg .s_lead {
  margin-top: 65px;
  font-size: 1.6rem;
  line-height: 2.5;
}
#s_shg .voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 920px;
  margin: 125px auto 0;
  gap: 140px;
}
#s_shg .voice .ttl {
  margin-left: 30px;
}
#s_shg .voice_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}
#s_shg .voice_list::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 684/626;
  width: 342px;
  background: url("../img/paint7.png") no-repeat 0 0/contain;
  right: -267px;
  top: -108px;
  opacity: 0;
  -webkit-transition: opacity 2s 0.5s;
  transition: opacity 2s 0.5s;
}
#s_shg .voice_list.done::before {
  opacity: 1;
}
#s_shg .voice_list li {
  position: relative;
}
#s_shg .voice_list li:nth-child(1) {
  margin: 65px 73px 0 0;
}
#s_shg .voice_list li:nth-child(2) {
  margin: 123px 76px 0 0;
}
#s_shg .voice_list li:nth-child(3) {
  margin: 27px 0 0 0;
}
#s_shg .voice_list li::before, #s_shg .voice_list li::after {
  content: "";
  display: block;
  position: absolute;
}
#s_shg .voice_list li::before {
  width: 26px;
  aspect-ratio: 26/23;
  top: -6px;
  right: -6px;
  background: url("../img/i_quo.svg") no-repeat 0 0/contain;
}
#s_shg .voice_list li::after {
  width: 14px;
  height: 13px;
  bottom: -12px;
  left: calc(50% - 9px);
  background: url("../img/shape_bal.png") no-repeat 0 0/contain;
}
#s_shg .voice_list span {
  display: block;
  padding: 40px;
  border: 1px solid #1f2d32;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 27px, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 27px, 100% 100%, 0 100%);
}
#s_shg .group {
  width: 90%;
  max-width: 1065px;
  margin: 130px auto 0;
  text-align: left;
  position: relative;
}
#s_shg .group::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 516/428;
  width: 258px;
  background: url("../img/paint8.png") no-repeat 0 0/contain;
  left: -175px;
  top: 36px;
  opacity: 0;
  -webkit-transition: opacity 1.5s 0.5s;
  transition: opacity 1.5s 0.5s;
}
#s_shg .group.done::before {
  opacity: 1;
}
#s_shg .group .ttl {
  position: relative;
}
#s_shg .group .lead {
  position: relative;
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 2.25;
}
#s_shg .group .note {
  margin-top: 70px;
  text-align: center;
  color: #839196;
  font-size: 1rem;
}
#s_shg .group_list {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  gap: 50px 8.9%;
  position: relative;
}
#s_shg .group_list::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 126/180;
  width: 63px;
  background: url("../img/risu4.png") no-repeat 0 0/contain;
  right: 4px;
  top: -209px;
}
#s_shg .group_list > li {
  position: relative;
  width: 27.4%;
}
#s_shg .group_list > li ul {
  margin-top: 20px;
  border-top: 1px solid #1f2d32;
  padding-top: 20px;
}
#s_shg .group_list > li li {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 2;
}
#s_shg .group_list > li li::before {
  position: absolute;
  left: 0;
  top: 0;
}
#s_shg .group_list > li li:not(.plus)::before {
  content: "●";
}
#s_shg .group_list > li li.plus::before {
  content: "+";
}
#s_shg .group_list h4 {
  font-size: 2rem;
  line-height: 1.5;
  height: 3em;
}
#s_shg .data_list {
  margin-top: 390px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  position: relative;
}
#s_shg .data_list::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 812/572;
  width: 406px;
  background: url("../img/paint9.png") no-repeat 0 0/contain;
  left: calc(50% - 84px);
  top: -236px;
  opacity: 0;
  -webkit-transition: opacity 2s 0.5s;
  transition: opacity 2s 0.5s;
}
#s_shg .data_list.done::before {
  opacity: 1;
}
#s_shg .data1 {
  margin: 0 auto;
  width: 90%;
  max-width: 1240px;
  position: relative;
  padding: 105px 0 240px;
}
#s_shg .data1::before {
  content: "";
  position: absolute;
  border: 1px solid #1f2d32;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-clip-path: polygon(calc(50% - 220px) 4px, calc(50% + 220px) 4px, calc(50% + 220px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 220px) 0);
  clip-path: polygon(calc(50% - 220px) 4px, calc(50% + 220px) 4px, calc(50% + 220px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 220px) 0);
}
#s_shg .data1 .inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#s_shg .data1 .ttl {
  position: absolute;
  left: calc(50% - 135px);
  top: -131px;
}
#s_shg .data1 .subttl .l1 {
  display: block;
  font-size: 1.4rem;
}
#s_shg .data1 .subttl .l2 {
  display: block;
  margin-top: 24px;
}
#s_shg .data1 .fig {
  width: 37%;
  margin-right: auto;
  position: relative;
}
#s_shg .data1 .fig::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 256/164;
  width: 128px;
  background: url("../img/risu5.png") no-repeat 0 0/contain;
  left: calc(50% + 130px);
  bottom: -95px;
}
#s_shg .data1 .pie {
  width: 201px;
  margin: 64px auto 0;
  position: relative;
}
#s_shg .data1 .pie .legend {
  position: absolute;
  left: 109px;
  top: -24px;
}
#s_shg .data1 .note {
  margin-top: 18px;
  color: #839196;
  font-size: 1rem;
  line-height: 1.5;
}
#s_shg .data1 .txt {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#s_shg .data1 .txt p {
  text-align: left;
  font-size: 1.8rem;
  line-height: 2.22;
}
#s_shg .data2,
#s_shg .data3 {
  border: 1px solid #1f2d32;
  background: #fff;
  width: 500px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  padding: 65px 0 50px;
}
#s_shg .data2 .ttl,
#s_shg .data3 .ttl {
  font-family: "FP-ヒラギノUD角ゴ StdN W6", sans-serif;
  font-size: 1.6rem;
}
#s_shg .data2 .txt,
#s_shg .data3 .txt {
  margin-top: 48px;
  font-size: 1.6rem;
  line-height: 2.25;
}
#s_shg .data2 .note,
#s_shg .data3 .note {
  margin-top: 35px;
  color: #839196;
  font-size: 1rem;
}
#s_shg .data2 {
  z-index: 2;
  margin: -257px 0 0 calc(50% - 15px);
}
#s_shg .data3 {
  z-index: 1;
  margin: -250px 0 0 calc(50% - 485px);
}
#s_shg .ft {
  margin-top: 95px;
}

@media screen and (max-width: 480px) {
  #s_shg {
    padding: 70px 0 0;
    position: relative;
    z-index: 1;
  }
  #s_shg .hd {
    width: 86.7%;
    padding-left: 0;
  }
  #s_shg .hd::before {
    width: 255px;
    left: -80px;
    top: -132px;
  }
  #s_shg .hd .note {
    margin-top: 12px;
    font-size: 1rem;
  }
  #s_shg .hd .img {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
  }
  #s_shg .hd .img::after {
    left: 5px;
    top: 5px;
    right: -5px;
    bottom: -5px;
  }
  #s_shg .hd .img img {
    width: 100%;
    height: auto;
  }
  #s_shg .s_ttl::before {
    height: 152px;
    margin-bottom: 30px;
  }
  #s_shg .s_ttl::after {
    width: 58px;
    left: 226px;
    top: 125px;
  }
  #s_shg .s_lead {
    margin-top: 38px;
    font-size: 1.4rem;
    line-height: 2.29;
  }
  #s_shg .voice {
    width: 285px;
    margin: 40px auto 0;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #s_shg .voice .ttl {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: -120px 0 0 154px;
  }
  #s_shg .voice .ttl img {
    width: 90px;
    height: auto;
  }
  #s_shg .voice_list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }
  #s_shg .voice_list::before {
    width: 193px;
    right: -56px;
    top: -76px;
  }
  #s_shg .voice_list li:nth-child(1) {
    margin: 0 41px 0 31px;
  }
  #s_shg .voice_list li:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 10px 0 0 0;
  }
  #s_shg .voice_list li:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 36px 0 0 0;
  }
  #s_shg .voice_list li::before {
    width: 18px;
    top: -4px;
    right: -4px;
  }
  #s_shg .voice_list li::after {
    background: url("../img/shape_bal2.png") no-repeat 0 0/contain;
  }
  #s_shg .voice_list span {
    padding: 25px;
    border-radius: 6px;
    -webkit-clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 19px, 100% 100%, calc(50% + 5px) 100%, 40% 80%, calc(50% - 9px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 19px, 100% 100%, calc(50% + 5px) 100%, 40% 80%, calc(50% - 9px) 100%, 0 100%);
  }
  #s_shg .voice_list img {
    width: 40px;
    height: auto;
  }
  #s_shg .group {
    width: 86.7%;
    margin: 70px auto 0;
  }
  #s_shg .group::before {
    width: 170px;
    left: -54px;
    top: -77px;
  }
  #s_shg .group .ttl img {
    width: 282px;
    height: auto;
  }
  #s_shg .group .lead {
    margin-top: 16px;
    font-size: 1.2rem;
  }
  #s_shg .group .note {
    margin-top: 30px;
    text-align: left;
    line-height: 1.5;
  }
  #s_shg .group_list {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 30px;
  }
  #s_shg .group_list::before {
    width: 47px;
    right: 7px;
    top: -22px;
  }
  #s_shg .group_list > li {
    width: auto;
  }
  #s_shg .group_list > li ul {
    margin-top: 10px;
    padding-top: 15px;
  }
  #s_shg .group_list > li li {
    font-size: 1.2rem;
  }
  #s_shg .group_list > li li:not(.plus) br {
    display: none;
  }
  #s_shg .group_list h4 {
    font-size: 1.6rem;
    line-height: 1.56;
    height: auto;
  }
  #s_shg .data_list {
    margin: 185px auto 0;
    width: 92%;
    gap: 15px;
  }
  #s_shg .data_list::before {
    width: 261px;
    left: calc(50% - 98px);
    top: -156px;
  }
  #s_shg .data1 {
    width: auto;
    padding: 162px 0 50px;
  }
  #s_shg .data1::before {
    -webkit-clip-path: polygon(calc(50% - 110px) 4px, calc(50% + 110px) 4px, calc(50% + 110px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 110px) 0);
    clip-path: polygon(calc(50% - 110px) 4px, calc(50% + 110px) 4px, calc(50% + 110px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 110px) 0);
  }
  #s_shg .data1 .inr {
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }
  #s_shg .data1 .ttl {
    left: calc(50% - 90px);
    top: -69px;
  }
  #s_shg .data1 .ttl img {
    width: 180px;
    height: auto;
  }
  #s_shg .data1 .subttl .l2 {
    margin-top: 20px;
  }
  #s_shg .data1 .subttl .l2 img {
    width: 162px;
    height: auto;
  }
  #s_shg .data1 .fig {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #s_shg .data1 .fig::before {
    width: 79px;
    left: calc(50% - 197px);
    bottom: auto;
    top: 30px;
  }
  #s_shg .data1 .pie {
    width: 85.5%;
    max-width: 295px;
    margin: 33px auto 0;
  }
  #s_shg .data1 .pie img {
    width: 100%;
    height: auto;
  }
  #s_shg .data1 .pie .legend {
    display: none;
  }
  #s_shg .data1 .txt {
    margin-top: 35px;
    width: 100%;
  }
  #s_shg .data1 .txt p {
    font-size: 1.4rem;
    line-height: 2.29;
  }
  #s_shg .data2,
  #s_shg .data3 {
    width: auto;
    padding: 39px 0 35px;
  }
  #s_shg .data2 .txt,
  #s_shg .data3 .txt {
    margin-top: 22px;
    font-size: 1.2rem;
  }
  #s_shg .data2 .note,
  #s_shg .data3 .note {
    margin-top: 10px;
    line-height: 1.5;
  }
  #s_shg .data2,
  #s_shg .data3 {
    margin: 0;
  }
  #s_shg .ft {
    margin-top: 46px;
    position: relative;
    z-index: 1;
  }
  #s_shg .ft img {
    width: 225px;
    height: auto;
  }
}
#s_activity {
  padding: 100px 0 115px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
#s_activity.done {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#s_activity::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1068/1050;
  width: 534px;
  background: url("../img/paint10.png") no-repeat 0 0/contain;
  left: calc(50% - 788px);
  top: -72px;
  opacity: 0;
  -webkit-transition: opacity 2s 1s;
  transition: opacity 2s 1s;
}
#s_activity.done::before {
  opacity: 1;
}
#s_activity .hd {
  width: 920px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
#s_activity .hd::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 244/196;
  width: 122px;
  background: url("../img/risu6.png") no-repeat 0 0/contain;
  right: 4px;
  top: 106px;
}
#s_activity .s_ttl::before {
  -webkit-transform: translateX(-12px);
  transform: translateX(-12px);
  height: 72px;
  background: url("../img/activity_ttl.png") no-repeat 0 0/contain;
  margin-bottom: 34px;
}
#s_activity .s_lead {
  margin-top: 70px;
  font-size: 1.8rem;
  line-height: 2;
}
#s_activity .activity {
  width: 90%;
  max-width: 1250px;
  margin: 95px auto 0;
  padding: 95px 0;
  position: relative;
}
#s_activity .activity::before {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
}
#s_activity .activity.done::before {
  opacity: 1;
}
#s_activity .activity::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: url("../img/pat_dot.png") repeat center center/15px;
}
#s_activity .activity + .activity {
  margin: 50px auto 0;
}
#s_activity .activity .inr {
  width: 920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  position: relative;
  z-index: 2;
}
#s_activity .activity .ttl {
  width: 100%;
  margin-bottom: 75px;
}
#s_activity .activity .ttl .copy {
  display: block;
  margin-bottom: 55px;
  font-family: "FP-ヒラギノUD角ゴ StdN W6", sans-serif;
  font-size: 1.6rem;
}
#s_activity .activity .txt {
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: -0.5em;
}
#s_activity .act1::before {
  aspect-ratio: 326/382;
  width: 163px;
  background: url("../img/paint11.png") no-repeat 0 0/contain;
  left: -40px;
  top: calc(50% + 12px);
  -webkit-transition: opacity 1s 2s;
  transition: opacity 1s 2s;
}
#s_activity .act1 .inr {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#s_activity .act1 .txt {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 565px;
  margin-right: auto;
}
#s_activity .act1 .img {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-top: -2px;
  margin-bottom: 47px;
}
#s_activity .act1 .btn_area {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
#s_activity .act1 .subttl {
  position: relative;
  z-index: 2;
  margin-top: 85px;
  font-family: "FP-ヒラギノUD角ゴ StdN W6", sans-serif;
  font-size: 2rem;
}
#s_activity .act1 .voice_list {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 30px;
  width: 735px;
  margin: 40px auto 0;
}
#s_activity .act1 .voice_list + .subttl {
  margin-top: 70px;
}
#s_activity .act1 .voice_list li {
  background: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
  position: relative;
}
#s_activity .act1 .voice_list li::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 13px;
  bottom: -12px;
  left: calc(50% - 16px);
  background: url("../img/shape_bal2.png") no-repeat 0 0/contain;
}
#s_activity .act1 .voice_list span {
  display: block;
  padding: 40px 50px;
  border: 1px solid #1f2d32;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, calc(50% - 2px) 100%, 50% 90%, calc(50% - 16px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, calc(50% - 2px) 100%, 50% 90%, calc(50% - 16px) 100%, 0 100%);
}
#s_activity .act1 .voice_list.v1 li:nth-child(odd) {
  margin-left: 30px;
}
#s_activity .act1 .voice_list.v1 li:nth-child(even) {
  margin-right: 30px;
}
#s_activity .act1 .voice_list.v2 li:nth-child(odd) {
  margin-right: 30px;
}
#s_activity .act1 .voice_list.v2 li:nth-child(even) {
  margin-left: 30px;
}
#s_activity .act2 .ttl,
#s_activity .act3 .ttl {
  text-align: left;
}
#s_activity .act2 .txt,
#s_activity .act3 .txt {
  width: 610px;
  margin-right: auto;
}
#s_activity .act2::before {
  aspect-ratio: 544/520;
  width: 272px;
  background: url("../img/paint12.png") no-repeat 0 0/contain;
  right: -23px;
  top: -134px;
  -webkit-transition: opacity 2s 0.5s;
  transition: opacity 2s 0.5s;
}
#s_activity .act3::before {
  aspect-ratio: 102/120;
  width: 51px;
  background: url("../img/paint13.png") no-repeat 0 0/contain;
  left: 45px;
  bottom: -41px;
  -webkit-transition: opacity 1s 0.5s;
  transition: opacity 1s 0.5s;
}

@media screen and (max-width: 480px) {
  #s_activity {
    padding: 46px 0 0;
  }
  #s_activity::before {
    width: 283px;
    left: -83px;
    top: -76px;
  }
  #s_activity .hd {
    width: 86.7%;
  }
  #s_activity .hd::before {
    width: 78px;
    right: -5px;
    top: auto;
    bottom: -25px;
  }
  #s_activity .s_ttl::before {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
    height: 37px;
    margin-bottom: 20px;
  }
  #s_activity .s_lead {
    margin-top: 35px;
    font-size: 1.4rem;
    line-height: 2.29;
  }
  #s_activity .activity {
    width: 92%;
    margin: 32px auto 0;
    padding: 36px 0 40px;
  }
  #s_activity .activity + .activity {
    margin: 20px auto 0;
  }
  #s_activity .activity .inr {
    width: 80vw;
    display: block;
  }
  #s_activity .activity .ttl {
    margin-bottom: 25px;
  }
  #s_activity .activity .ttl .copy {
    margin-bottom: 22px;
    font-size: 1.4rem;
    line-height: 1.71;
  }
  #s_activity .activity .ttl img {
    height: auto;
  }
  #s_activity .activity .txt {
    font-size: 1.4rem;
  }
  #s_activity .activity .btn {
    display: block;
  }
  #s_activity .act1::before {
    display: none;
  }
  #s_activity .act1 .inr {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #s_activity .act1 .ttl img {
    width: 107px;
  }
  #s_activity .act1 .txt {
    width: 80vw;
    margin: 25px auto 0;
  }
  #s_activity .act1 .img {
    margin: 38px auto 0;
  }
  #s_activity .act1 .img img {
    width: 186px;
    height: auto;
  }
  #s_activity .act1 .btn_area {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  #s_activity .act1 .subttl {
    margin-top: 40px;
    font-size: 1.6rem;
  }
  #s_activity .act1 .voice_list {
    gap: 30px;
    width: 78.67vw;
    margin: 18px auto 0;
  }
  #s_activity .act1 .voice_list + .subttl {
    margin-top: 40px;
  }
  #s_activity .act1 .voice_list li {
    font-size: 1.2rem;
  }
  #s_activity .act1 .voice_list span {
    padding: 22px 25px;
  }
  #s_activity .act1 .voice_list.v1 li:nth-child(odd),
  #s_activity .act1 .voice_list.v1 li:nth-child(even), #s_activity .act1 .voice_list.v2 li:nth-child(odd),
  #s_activity .act1 .voice_list.v2 li:nth-child(even) {
    margin: 0;
  }
  #s_activity .act2 .ttl,
  #s_activity .act3 .ttl {
    text-align: center;
  }
  #s_activity .act2 .txt,
  #s_activity .act3 .txt {
    width: 80vw;
    margin: 15px auto 0;
  }
  #s_activity .act2 .btn,
  #s_activity .act3 .btn {
    margin: 20px auto 0;
  }
  #s_activity .act2::before {
    width: 190px;
    right: -64px;
    top: -145px;
  }
  #s_activity .act2 .ttl img {
    width: 183px;
  }
  #s_activity .act3::before {
    display: none;
  }
  #s_activity .act3 .ttl img {
    width: 222px;
  }
}
#s_us {
  padding: 100px 0 210px;
  width: 1000px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
#s_us.done {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#s_us::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1004/950;
  width: 502px;
  background: url("../img/paint14.png") no-repeat 0 0/contain;
  right: -148px;
  top: -160px;
  opacity: 0;
  -webkit-transition: opacity 2s 0.5s;
  transition: opacity 2s 0.5s;
}
#s_us.done::before {
  opacity: 1;
}
#s_us .s_ttl {
  position: relative;
  text-align: right;
}
#s_us .s_ttl::before {
  height: 74px;
  background: url("../img/us_ttl.png") no-repeat right center/contain;
  margin-bottom: 36px;
}
#s_us .outline,
#s_us .media,
#s_us .record {
  text-align: left;
  margin-left: 115px;
  border-left: 1px solid #1f2d32;
  padding-left: 95px;
  position: relative;
}
#s_us .outline::before,
#s_us .media::before,
#s_us .record::before {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/149;
  position: absolute;
  left: -115px;
  top: 0;
}
#s_us .outline .ttl,
#s_us .media .ttl,
#s_us .record .ttl {
  font-family: "FP-ヒラギノUD角ゴ StdN W6", sans-serif;
  font-size: 1.6rem;
}
#s_us .outline .table,
#s_us .media .table,
#s_us .record .table {
  margin-top: 80px;
  border-top: 1px solid rgba(31, 45, 50, 0.1);
  font-family: "FP-ヒラギノUD角ゴ StdN W4", sans-serif;
  font-size: 1.4rem;
  line-height: 2.29;
}
#s_us .outline .table li,
#s_us .media .table li,
#s_us .record .table li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid rgba(31, 45, 50, 0.1);
  padding: 25px 0;
}
#s_us .outline .table .th,
#s_us .media .table .th,
#s_us .record .table .th {
  width: 125px;
}
#s_us .outline .table .td,
#s_us .media .table .td,
#s_us .record .table .td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#s_us .outline .list,
#s_us .media .list,
#s_us .record .list {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 10px;
  font-family: "FP-ヒラギノUD角ゴ StdN W4", sans-serif;
  font-size: 1.4rem;
  line-height: 1.67;
}
#s_us .outline .list a, #s_us .outline .list span,
#s_us .media .list a,
#s_us .media .list span,
#s_us .record .list a,
#s_us .record .list span {
  display: block;
  position: relative;
  padding-left: 1em;
}
#s_us .outline .list a::before, #s_us .outline .list span::before,
#s_us .media .list a::before,
#s_us .media .list span::before,
#s_us .record .list a::before,
#s_us .record .list span::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
#s_us .outline {
  margin-top: 75px;
}
#s_us .outline::before {
  background: url("../img/outline_ttl.png") no-repeat left top/contain;
}
#s_us .media {
  margin-top: 100px;
}
#s_us .media::before {
  background: url("../img/media_ttl.png") no-repeat left top/contain;
}
#s_us .record {
  margin-top: 100px;
}
#s_us .record::before {
  background: url("../img/record_ttl.png") no-repeat left top/contain;
}
#s_us .why {
  width: 740px;
  margin: 160px auto 0;
  position: relative;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 240px;
}
#s_us .why .logo {
  position: absolute;
  left: 10px;
  top: -31px;
}
#s_us .why .ttl {
  font-family: "FP-ヒラギノUD角ゴ StdN W4", sans-serif;
  font-size: 1.6rem;
}
#s_us .why p {
  margin-top: 45px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 480px) {
  #s_us {
    padding: 75px 0 95px;
    width: 86.7%;
    margin: 0 auto;
  }
  #s_us::before {
    width: 276px;
    right: -68px;
    top: -35px;
  }
  #s_us .s_ttl {
    text-align: left;
  }
  #s_us .s_ttl::before {
    height: 36px;
    background: url("../img/us_ttl.png") no-repeat left center/contain;
    margin-bottom: 20px;
  }
  #s_us .outline,
  #s_us .media,
  #s_us .record {
    margin-left: 20px;
    padding-left: 14px;
  }
  #s_us .outline::before,
  #s_us .media::before,
  #s_us .record::before {
    width: 8px;
    left: -21px;
  }
  #s_us .outline .ttl,
  #s_us .media .ttl,
  #s_us .record .ttl {
    font-size: 1.2rem;
  }
  #s_us .outline .table,
  #s_us .media .table,
  #s_us .record .table {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.67;
  }
  #s_us .outline .table li,
  #s_us .media .table li,
  #s_us .record .table li {
    padding: 20px 0;
  }
  #s_us .outline .table .th,
  #s_us .media .table .th,
  #s_us .record .table .th {
    width: 75px;
    font-size: 1.1rem;
    line-height: 1.82;
  }
  #s_us .outline .table .s,
  #s_us .media .table .s,
  #s_us .record .table .s {
    font-size: 1rem;
  }
  #s_us .outline .list,
  #s_us .media .list,
  #s_us .record .list {
    margin-top: 22px;
    gap: 10px;
    font-size: 1.2rem;
  }
  #s_us .outline,
  #s_us .media,
  #s_us .record {
    margin-top: 40px;
  }
  #s_us .why {
    width: 80vw;
    margin: 70px auto 0;
    padding-left: 0;
  }
  #s_us .why .logo {
    position: relative;
    left: 0;
    top: 0;
    width: 110px;
    margin: 30px auto 0;
  }
  #s_us .why .logo img {
    width: 100%;
    height: auto;
  }
  #s_us .why .ttl {
    text-align: center;
    font-size: 1.4rem;
  }
  #s_us .why p {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
#s_message {
  width: 96%;
  max-width: 1250px;
  padding: 135px 0 125px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
#s_message.done {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#s_message::before, #s_message::after {
  content: "";
  display: block;
  position: absolute;
}
#s_message::before {
  aspect-ratio: 332/302;
  width: 166px;
  background: url("../img/paint15.png") no-repeat 0 0/contain;
  left: calc(50% - 437px);
  top: -56px;
  opacity: 0;
  -webkit-transition: opacity 1s 0.5s;
  transition: opacity 1s 0.5s;
}
#s_message.done::before {
  opacity: 1;
}
#s_message::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: url("../img/pat_dot.png") repeat center center/15px;
}
#s_message .s_ttl {
  position: relative;
  z-index: 1;
}
#s_message .s_ttl::before {
  height: 78px;
  background: url("../img/message_ttl.png") no-repeat center center/contain;
  margin-bottom: 13px;
}
#s_message .inr {
  position: relative;
  z-index: 1;
  width: 890px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 95px auto 0;
  padding-left: 380px;
  text-align: left;
}
#s_message .s_subttl {
  font-family: "FP-ヒラギノUD角ゴ StdN W4", sans-serif;
  font-size: 2rem;
  line-height: 2;
}
#s_message .profile {
  position: absolute;
  left: 30px;
  top: 1rem;
  width: 220px;
}
#s_message .profile img {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}
#s_message .profile .hd {
  text-align: center;
  font-family: "FP-ヒラギノUD角ゴ StdN W4", sans-serif;
}
#s_message .profile .name {
  margin-top: 35px;
  font-size: 2rem;
}
#s_message .profile .name .en {
  display: block;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
#s_message .profile .note {
  margin-top: 25px;
  font-size: 1.4rem;
  line-height: 2;
}
#s_message .profile .txt {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2;
}
#s_message .message {
  margin-top: 50px;
  font-size: 1.6rem;
  line-height: 2;
}
#s_message .message p + p {
  margin-top: 2em;
}

@media screen and (max-width: 480px) {
  #s_message {
    width: 92%;
    padding: 57px 0 35px;
  }
  #s_message::before {
    width: 86px;
    left: 18px;
    top: -42px;
  }
  #s_message .s_ttl::before {
    height: 38px;
    margin-bottom: 8px;
  }
  #s_message .inr {
    width: 80vw;
    margin: 40px auto 0;
    padding-left: 0;
  }
  #s_message .s_subttl {
    text-align: center;
    font-size: 1.4rem;
  }
  #s_message .profile {
    margin-top: 32px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: auto;
    gap: 0 14px;
  }
  #s_message .profile img {
    margin: 0;
    width: 80px;
    height: auto;
  }
  #s_message .profile .hd {
    text-align: left;
  }
  #s_message .profile .name {
    margin-top: 0;
    font-size: 1.8rem;
  }
  #s_message .profile .name .en {
    display: inline-block;
    margin-top: 0;
    padding-left: 1em;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  #s_message .profile .note {
    margin-top: 11px;
    font-size: 1.1rem;
    line-height: 1;
  }
  #s_message .profile .note br {
    display: none;
  }
  #s_message .profile .txt {
    margin-top: 18px;
    width: 74vw;
    font-size: 1rem;
    line-height: 1.8;
  }
  #s_message .message {
    margin-top: 45px;
    font-size: 1.2rem;
  }
}
#s_support {
  margin-top: 80px;
  padding-top: 100px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
#s_support.done {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#s_support::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 558/572;
  width: 279px;
  background: url("../img/paint16.png") no-repeat 0 0/contain;
  left: calc(50% - 397px);
  top: -23px;
  opacity: 0;
  -webkit-transition: opacity 2s 0.5s;
  transition: opacity 2s 0.5s;
}
#s_support.done::before {
  opacity: 1;
}
#s_support .s_ttl {
  position: relative;
}
#s_support .s_ttl::before {
  height: 78px;
  background: url("../img/support_ttl.png") no-repeat center center/contain;
  margin-bottom: 15px;
}
#s_support .s_lead {
  margin-top: 75px;
  font-family: "FP-ヒラギノUD角ゴ StdN W4", sans-serif;
  font-size: 2rem;
  line-height: 2;
}
#s_support .support_list {
  margin: 55px auto 0;
  width: 1010px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
#s_support .support_list::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 584/664;
  width: 292px;
  background: url("../img/paint17.png") no-repeat 0 0/contain;
  right: -185px;
  top: -100px;
  opacity: 0;
  -webkit-transition: opacity 1.5s 1.5s;
  transition: opacity 1.5s 1.5s;
}
#s_support .support_list.done::before {
  opacity: 1;
}
#s_support .support {
  width: 480px;
  position: relative;
}
#s_support .support::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background: url("../img/pat_dot.png") repeat center center/15px;
  border-radius: 10px;
}
#s_support .support .inr {
  position: relative;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #1f2d32;
  border-radius: 10px;
  padding: 55px 0;
}
#s_support .support .ttl {
  font-family: "FP-ヒラギノUD角ゴ StdN W6", sans-serif;
  font-size: 2.3rem;
}
#s_support .support .ttl::before, #s_support .support .ttl::after {
  content: "";
  display: block;
}
#s_support .support .ttl::before {
  height: 15px;
  margin-bottom: 25px;
}
#s_support .support .ttl::after {
  margin-top: 25px;
  height: 95px;
}
#s_support .support.once .ttl::before {
  background: url("../img/support_once_en.png") no-repeat center top/contain;
}
#s_support .support.once .ttl::after {
  background: url("../img/support_once_il.png") no-repeat center center/contain;
}
#s_support .support.monthly .inr::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 344/346;
  width: 172px;
  background: url("../img/risu7.png") no-repeat 0 0/contain;
  right: -26px;
  top: -145px;
}
#s_support .support.monthly .ttl::before {
  background: url("../img/support_monthly_en.png") no-repeat center top/contain;
}
#s_support .support.monthly .ttl::after {
  background: url("../img/support_monthly_il.png") no-repeat center center/contain;
}
#s_support .support .txt {
  margin-top: 25px;
  font-size: 1.6rem;
  line-height: 2;
}
#s_support .support .creditcard {
  margin-top: 25px;
}
#s_support .support .btn {
  margin-top: 25px;
}
#s_support .support .note {
  margin-top: 16px;
  color: #839196;
  font-size: 1.1rem;
}

@media screen and (max-width: 480px) {
  #s_support {
    margin-top: 0;
    padding-top: 60px;
  }
  #s_support::before {
    width: 204px;
    left: calc(50% - 231px);
    top: -59px;
  }
  #s_support .s_ttl::before {
    height: 43px;
    margin-bottom: 9px;
  }
  #s_support .s_lead {
    margin-top: 40px;
    font-size: 1.4rem;
    line-height: 2.28;
  }
  #s_support .support_list {
    margin: 35px auto 0;
    width: 92.5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 15px;
  }
  #s_support .support_list::before {
    width: 204px;
    right: -41px;
    top: calc(50% - 118px);
  }
  #s_support .support {
    width: auto;
  }
  #s_support .support::before {
    left: 4px;
    top: 4px;
  }
  #s_support .support .inr {
    padding: 40px 0;
  }
  #s_support .support .ttl {
    font-size: 1.8rem;
  }
  #s_support .support .ttl::before {
    height: 12px;
    margin-bottom: 20px;
  }
  #s_support .support .ttl::after {
    margin-top: 18px;
  }
  #s_support .support.once .ttl::after {
    margin-top: 10px;
  }
  #s_support .support.once .txt {
    margin-top: 2px;
  }
  #s_support .support.monthly .inr::before {
    aspect-ratio: 160/166;
    width: 80px;
    background: url("../img/risu8.png") no-repeat 0 0/contain;
    right: 17px;
    top: -41px;
  }
  #s_support .support .txt {
    margin-top: 14px;
    font-size: 1.4rem;
    line-height: 1.71;
  }
  #s_support .support .creditcard {
    margin-top: 16px;
    width: 205px;
    height: auto;
  }
  #s_support .support .btn {
    margin: 20px auto 0;
    display: block;
  }
  #s_support .support .note {
    font-size: 1rem;
  }
}
.p_note {
  width: 86.7%;
  max-width: 1100px;
  margin: 190px auto 0;
  color: #839196;
  text-align: left;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .p_note {
    margin: 25px auto 0;
  }
}

footer {
  margin: 25px auto 0;
  width: 86.7%;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #1f2d32;
  padding: 150px 0 100px;
}
footer .logo {
  margin-right: auto;
}
footer .inr {
  text-align: left;
}
footer .contact p {
  margin-top: -0.5em;
  font-size: 1.6rem;
  line-height: 2;
}
footer .contact .btn {
  margin-top: 30px;
}
footer .sns_list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
footer .sns_list a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 22px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
footer .sns_list a::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  aspect-ratio: 21/20;
  width: 21px;
  margin-right: 14px;
}
footer .sns_list a.x::before {
  background: url("../img/i_x.png") no-repeat 0 0/contain;
}
footer .sns_list a.note::before {
  background: url("../img/i_note.png") no-repeat 0 0/contain;
}
@media (any-hover: hover) {
  footer .sns_list a:hover {
    opacity: 0.6;
  }
}
footer .copyright {
  margin-top: 42px;
}

@media screen and (max-width: 480px) {
  footer {
    margin: 20px auto 0;
    padding: 45px 0 40px;
    display: block;
  }
  footer .logo {
    margin: 0 auto;
    width: 100px;
  }
  footer .logo img {
    width: 100%;
    height: auto;
  }
  footer .inr {
    text-align: center;
  }
  footer .contact {
    margin-top: 28px;
  }
  footer .contact p {
    margin-top: 0;
    font-size: 1.2rem;
    line-height: 1.67;
  }
  footer .contact .btn {
    margin-top: 12px;
  }
  footer .sns_list {
    margin-top: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
  footer .sns_list a {
    font-size: 1rem;
    line-height: 14px;
  }
  footer .sns_list a::before {
    width: 15px;
    margin-right: 9px;
  }
  footer .copyright {
    margin-top: 20px;
  }
  footer .copyright img {
    width: 250px;
    height: auto;
  }
}