/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  background-color: #faf9f2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl {
  margin: 0;
  color: #666;
}

a {
  color: #666;
  text-decoration: none;
}

ul,
ol {
  padding-left: 0;
  list-style-type: none;
}

dd {
  margin-left: 0;
}

p {
  font-size: 17px;
  line-height: 1.41;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 23px;
  }
}

button {
  border: 0;
}

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

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

.hidden {
  display: none !important;
}

.relative {
  position: relative;
}

.image {
  display: block;
  width: 100%;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 790px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 16px 14px;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 48px 20px 0;
  }
}

.header-logo {
  position: relative;
  display: block;
  width: 45px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 120px;
    transition: opacity 0.3s;
  }

  .header-logo:hover {
    opacity: 0.8;
  }
}

.header-logo img {
  display: block;
  width: 100%;
}

.header-toggler {
  position: fixed;
  top: 16px;
  right: 17px;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background: #36bdef url(../img/icon_hamburger.svg) no-repeat center / 17px auto;
  border: 0;
  outline: 0;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  z-index: 11;
  transition: background-color 0.3s;
}
.header.is-open .header-toggler {
  background-color: #666666;
  background-image: url(../img/icon_x.svg);
  background-size: 14px auto;
}

.nav-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 189, 239, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: transform,top,height 0.3s;
  z-index: 9;
}
.header.is-open .nav-bg {
  visibility: visible;
  opacity: 1;
}

.nav {
  position: fixed;
  background-color: #fff;
  transition: 0.3s;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .nav {
    top: 0;
    right: 0;
    width: 247px;
    height: 100vh;
    padding-top: 94px;
    border-top-left-radius: 101px;
    overflow-y: scroll;
    transform: translateX(101%);
  }
  .header.is-open .nav {
    transform: translateX(0);
  }
}
@media screen and (max-width: 400px) {
  .nav {
    padding-top: 80px;
    border-top-left-radius: 90px;
  }
}
@media screen and (min-width: 768px) {
  .nav {
    top: 58px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 185px);
    height: 70px;
    border-radius: 35px;
    padding-inline: 2%
  }
}
@media screen and (min-width: 1240px) {
  .nav {
    right: calc((100vw - 1240px) / 2);
    width: 1048px;
    padding-inline: 60px;
  }
}

@media screen and (min-width: 768px) {
  .header.is-scrolled .nav {
    top: 12px;
    height: 56px;
  }
}

.nav-item {
  display: block;
  padding-block: 14px;
  padding-left: 34px;
  color: #36bdef;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .nav-item {
    padding: 0;
    font-size: 1.6vw;
    opacity: 0.5;
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 1240px) {
  .nav-item {
    font-size: 19px;
  }
}

@media screen and (min-width: 768px) {
  .nav-item:hover,
  .nav-item.is-active {
    opacity: 1;
  }
}

.nav-logo {
  display: block;
  width: 94px;
  margin: 24px auto 0;
}
@media screen and (min-width: 400px) {
  .nav-logo {
    margin-top: 52px;
  }
}

.footer {
  position: relative;
  max-width: 1240px;
  padding-block: 30px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 84px;
    padding-bottom: 40px;
  }
}

.footer-flex {
  margin-bottom: 38px;
}
@media screen and (min-width: 768px) {
  .footer-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
  }
}

.footer-information {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer-information {
    width: 13.33%;
    margin-bottom: 0;
  }
}

.footer-logo {
  display: block;
  width: 100%;
  max-width: 126px;
  margin: 0 auto 22px;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    max-width: 150px;
    margin-bottom: 24px;
  }
}

.footer-information__text {
  color: #666;
  font-size: 12px;
  line-height: 1.7;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .footer-link-container {
    width: 84%;
    padding-top: 30px;
  }
}

.footer-link-container-main {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer-link-container-main {
    justify-content: normal;
    margin-bottom: 24px;
  }
}

.footer-link-container-main__parts {
  width: 49%;
}
@media screen and (min-width: 768px) {
  .footer-link-container-main__parts {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer-link-container-main,
  .footer-link-container-main__parts {
    gap: 0.8vw;
  }
}
@media screen and (min-width: 1240px) {
  .footer-link-container-main,
  .footer-link-container-main__parts {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer-link-container-main__parts--sp-down {
    margin-top: 32px;
  }
}

.footer-link-item {
  margin-bottom: 18px;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .footer-link-item {
    margin-bottom: 0;
    padding-left: 0;
  }
}

.footer-link-item--bordered {
  border-left: 1px solid #666;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .footer-link-item--bordered {
    padding-left: 10px;
  }
}
@media screen and (min-width: 1240px) {
  .footer-link-item--bordered {
    padding-left: 16px;
  }
}

.footer-link-item-main {
  display: block;
  color: #36bdef;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer-link-item-main {
    font-size: 17px;
  }
}

.footer-link-item--bordered .footer-link-item-main {
  padding-bottom: 0.6em;
}

.footer-link-item-sub {
  display: block;
  padding-block: 0.36em;
  color: #666;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .footer-link-item-sub {
    font-size: 12px;
  }
}

.footer-link-container-sub {
  display: flex;
  column-gap: 18px;
}
@media screen and (min-width: 768px) {
  .footer-link-container-sub {
    column-gap: 32px;
  }
}

.footer-link-subitem {
  color: #666;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .footer-link-subitem {
    font-size: 16px;
  }
}

.footer-link-subitem::before {
  content: "●";
  color: #36bdef;
  margin-right: 0.1em;
}

.footer-link-item-main:hover,
.footer-link-item-sub:hover,
.footer-link-subitem:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-size: 12px;
  text-align: center;
}

.pagetop {
  position: absolute;
  bottom: 22px;
  right: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #f5af0c;
  border-radius: 50px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.54;
  text-align: center;
  transition: opacity 0.3s;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 100px;
    right: 24px;
    width: 78px;
    height: 78px;
    font-size: 13px;
  }
  .pagetop:hover {
    opacity: 0.8;
  }
}

.pagetop::after {
  content: "";
  position: absolute;
  bottom: 9px;
  display: block;
  width: 0;
  height: 0;
  border-bottom: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
@media screen and (min-width: 768px) {
  .pagetop::after {
    bottom: 11px;
    border-width: 0 7px 6px;
  }
}

.fadein {
  opacity: 0;
  transition: 0.5s;
  transform: translate(0, 100px);
}

.fadein.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.main {
  position: relative;
}

.main::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 500/93;
  background: url(../img/footer_img.png) no-repeat center bottom/contain;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .button-wrapper {
    flex-direction: row;
    gap: 40px;
  }
}

.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 50px;
  border-radius: 100px;
  border: 1px solid #f5af0c;
  background-color: #f5af0c;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .button {
    width: 320px;
    height: 70px;
    font-size: 23px;
  }

  .button:hover {
    opacity: 0.8;
  }
}

.button::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  display: block;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 15px solid #fff;
}
@media screen and (min-width: 768px) {
  .button::after {
    top: calc(50% - 4px);
    right: 30px;
    border-width: 4px 0 4px 20px;
  }
}

.home-mv-title {
  position: absolute;
  top: 27.79vw;
  left: 7.87vw;
  width: 84.8vw;
}
@media screen and (min-width: 768px) {
  .home-mv-title {
    top: 16.63vw;
    left: 10.5vw;
    width: 35.46vw;
  }
}

.home-introduction {
  max-width: 830px;
  padding-top: 30px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .home-introduction {
    padding-top: 78px;
    padding-bottom: 118px;
  }
}

.home-introduction-logo {
  display: block;
  width: 100%;
  max-width: 138px;
  margin: 0 auto 42px;
}
@media screen and (min-width: 768px) {
  .home-introduction-logo {
    max-width: 170px;
    margin-bottom: 62px;
  }
}

.home-introduction-text-wrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .home-introduction-text-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .home-introduction-text-wrapper + .home-introduction-text-wrapper {
    margin-top: 16px;
  }
}

.home-introduction-text {
  width: 77%;
  font-weight: 500;
  line-height: 1.41;
}
@media screen and (min-width: 768px) {
  .home-introduction-text {
    width: 100%;
    line-height: 2.6;
    text-align: center;
  }
}

.home-introduction-image {
  display: block;
  width: 18%;
}
@media screen and (min-width: 768px) {
  .home-introduction-image {
    position: absolute;
    top: -132px;
    left: -130px;
    width: 126px;
  }

  .home-introduction-image--type2 {
    width: 116px;
    top: 30px;
    left: auto;
    right: -116px;
  }
}

.home-introduction-video {
  position: relative;
  margin-top: 56px;
  margin-bottom: 35px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .home-introduction-video {
    margin-top: 110px;
    margin-bottom: 86px;
  }
}

.home-introduction-video::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  display: block;
  width: 98.73%;
  height: 100%;
  background: url(../img/home_bg_orange.png) no-repeat top left/contain;
}
@media screen and (min-width: 768px) {
  .home-introduction-video::before {
    top: 17px;
    left: 30px;
  }
}

.home-introduction-video video {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 20px;
}

.home-news {
  padding-block: 30px;
  background-color: #d8ecf2;
}
@media screen and (min-width: 768px) {
  .home-news {
    padding-top: 70px;
    padding-bottom: 88px;
  }
}

.home-news-container {
  max-width: 990px;
}

.headline {
  position: relative;
  margin-inline: auto;
  border-bottom: 1px solid #666;
  padding-bottom: 0.32em;
  font-size: 21px;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .headline {
    width: max-content;
    padding-inline: 90px;
    font-size: 30px;
  }
}

.headline--image-news::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 4px;
  display: block;
  width: 82px;
  aspect-ratio: 64/41;
  background: url(../img/home_deco_bird.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .headline--image-news::after {
    top: -8px;
    left: -46px;
    width: 116px;
  }
}

.headline-sub {
  margin-top: 0.2em;
  color: #f5af0c;
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .headline-sub {
    font-size: 23px;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .news-list {
    flex-direction: row;
    justify-content: center;
    gap: 5.684%;
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .news-item {
    width: 29.473%;
    transition: opacity 0.3s;
  }

  .news-item:hover {
    opacity: 0.8;
  }
}

.news-item:nth-child(n + 4) {
  display: none;
}

.news-item h3 {
  font-size: 17px;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .news-item h3 {
    font-size: 20px;
  }
}

.news-item p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 8px;
  font-size: 16px;
  transition: color 0.3s;
}

.news-item p::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 8px;
  background: url(../img/arrow_orange.svg) no-repeat center / contain;
}

.news-thumbnail {
  position: relative;
  width: 72%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .news-thumbnail {
    width: 100%;
    margin-bottom: 28px;
  }
}

.news-thumbnail::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  display: block;
  width: 96.43%;
  height: 100%;
  background: url(../img/home_bg_blue.png) no-repeat top left/contain;
}
@media screen and (min-width: 768px) {
  .news-thumbnail::before {
    top: 19px;
    left: 19px;
  }
}

.news-thumbnail img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.home-news-button-wrapper {
  width: max-content;
  margin-top: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .home-news-button-wrapper {
    width: 320px;
    margin-top: 12px;
    margin-right: 0;
  }
}

.home-news-button-text {
  margin-bottom: 6px;
  font-size: 16px;
  text-align: center;
}

.home-request {
  padding-top: 62px;
  padding-bottom: 44px;
  background: url(../img/home_bg_drop.svg) no-repeat top left 4px/64px auto;
}
@media screen and (min-width: 768px) {
  .home-request {
    padding-top: 100px;
    padding-bottom: 190px;
    background-position-x: left 16px;
    background-size: 234px auto;
  }
}

.home-request-text {
  margin-bottom: 24px;
  color: #36bdef;
}
@media screen and (min-width: 768px) {
  .home-request-text {
    margin-bottom: 100px;
    line-height: 2.6;
    text-align: center;
  }
}

.miraie-mv-title {
  position: absolute;
  left: 2.67vw;
  bottom: 2.93vw;
  width: 54.61vw;
}
@media screen and (min-width: 768px) {
  .miraie-mv-title {
    left: 8.49vw;
    bottom: 1.98vw;
    width: 29.21vw;
  }
}

.miraie-working {
  padding-top: 36px;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .miraie-working {
    padding-top: 110px;
    padding-bottom: 96px;
  }
}

.headline--image-miraie-working::after {
  content: "";
  position: absolute;
  top: 54px;
  left: 0;
  display: block;
  width: 77px;
  aspect-ratio: 84/97;
  background: url(../img/miraie_img1.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .headline--image-miraie-working::after {
    top: 22px;
    left: -128px;
    width: 166px;
  }
}

.miraie-working-image1 {
  max-width: 727px;
  margin: 24px auto 42px;
}
@media screen and (min-width: 768px) {
  .miraie-working-image1 {
    margin-top: 38px;
    margin-bottom: 76px;
  }
}

.miraie-working-image2 {
  width: 74px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .miraie-working-image2 {
    width: 160px;
    margin-bottom: 68px;
  }
}

.miraie-working-text {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .miraie-working-text {
    font-weight: 400;
    line-height: 2.6;
    text-align: center;
  }
}

.miraie-paint {
  padding-top: 10px;
  background-color: #36bdef;
}
@media screen and (min-width: 768px) {
  .miraie-paint {
    padding-top: 40px;
  }
}

.miraie-paint-container {
  display: flex;
  align-items: center;
  width: 360px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .miraie-paint-container {
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
  }
}

.miraie-paint-image {
  width: 162px;
}
@media screen and (min-width: 768px) {
  .miraie-paint-image {
    width: calc(100% - 410px);
  }
}
@media screen and (min-width: 1024px) {
  .miraie-paint-image {
    width: calc(100% - 470px);
  }
}

.miraie-paint-text {
  position: relative;
  width: 220px;
  margin-left: -62px;
  color: #fff;
  font-size: 11px;
  line-height: 1.45;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .miraie-paint-text {
    width: 390px;
    margin-left: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .miraie-paint-text {
    width: 430px;
    font-size: 20px;
    line-height: 2.6;
  }
}

.miraie-paint-text::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 0;
  display: block;
  width: 104px;
  aspect-ratio: 7 / 3;
  background: url(../img/miraie_img3.png) no-repeat center / contain;
}
@media screen and (min-width: 768px) {
  .miraie-paint-text::before {
    top: -150px;
    left: -156px;
    width: 378px;
  }
}

.miraie-message {
  max-width: 1010px;
  padding-top: 68px;
}
@media screen and (min-width: 768px) {
  .miraie-message {
    padding-top: 116px;
  }
}

.miraie-message-grid {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .miraie-message-grid {
    display: grid;
    grid-template-columns: 45.18% 1fr;
    grid-template-areas: "representative text"
      "image text";
    column-gap: 5.17%;
    margin-top: 54px;
  }
}

.miraie-message-representative {
  grid-area: representative;
}

.miraie-message-representative__name {
  margin-top: 0.3em;
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .miraie-message-representative__name {
    font-size: 23px;
  }
}

.miraie-message-text {
  grid-area: text;
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .miraie-message-text {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
  }
}

.miraie-message-image {
  grid-area: image;
}
@media screen and (min-width: 768px) {
  .miraie-message-image {
    width: 97.43%;
  }
}

.miraie-organization {
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .miraie-organization {
    padding-top: 98px;
  }
}

.miraie-organization-image {
  max-width: 742px;
  margin: 24px auto 28px;
}
@media screen and (min-width: 768px) {
  .miraie-organization-image {
    margin-top: 78px;
    margin-bottom: 62px;
  }
}

.data-list {
  border-bottom: 1px dashed #ccc;
}

.data-list dl {
  border-top: 1px dashed #ccc;
  padding-block: 10px;
}
@media screen and (min-width: 768px) {
  .data-list dl {
    display: flex;
    gap: 4%;
    padding-block: 6px;
  }
}

.data-list dt,
.data-list dd {
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .data-list dt,
  .data-list dd {
    font-size: 16px;
    line-height: 1.75;
  }
}

.data-list dt {
  margin-bottom: 0.7em;
  color: #f5af0c;
}
@media screen and (min-width: 768px) {
  .data-list dt {
    width: 12%;
    margin-bottom: 0;
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .data-list-sp-flex {
    display: flex;
  }

  .data-list-sp-flex__2col {
    width: 50%;
  }
}

.data-list__name {
  display: block;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .data-list__name {
    display: inline-block;
    width: 100px;
    margin-bottom: 0;
    margin-right: 0.3em;
  }
}

.miraie-aboutus {
  padding-top: 68px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .miraie-aboutus {
    padding-top: 130px;
    padding-bottom: 140px;
  }
}

.miraie-aboutus-container {
  max-width: 924px;
}

.miraie-aboutus-flex1 {
  max-width: 790px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .miraie-aboutus-flex1 {
    display: flex;
    align-items: center;
    gap: 5.59%;
    margin-top: 64px;
    margin-left: auto;
  }
}

.miraie-aboutus-image1 {
  width: 132px;
  margin: 0 auto 25px;
}
@media screen and (min-width: 768px) {
  .miraie-aboutus-image1 {
    width: 24.28%;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .miraie-aboutus-data-list {
    flex: 1;
  }
}

.miraie-aboutus-sepalator {
  margin: 50px 0 0;
  border: 0;
}
@media screen and (min-width: 768px) {
  .miraie-aboutus-sepalator {
    margin-top: 86px;
    border-top: 1px dashed #ccc;
    margin-bottom: 60px;
  }
}

.miraie-aboutus-flex2 {
  max-width: 790px;
}
@media screen and (min-width: 768px) {
  .miraie-aboutus-flex2 {
    display: flex;
    align-items: center;
    gap: 7.88%;
    margin-top: 64px;
    margin-left: auto;
  }
}

.miraie-aboutus-image2 {
  width: 124px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .miraie-aboutus-image2 {
    width: 20.98%;
    margin: 0;
  }
}

.miraie-aboutus-description {
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .miraie-aboutus-description {
    flex: 1;
    padding-right: calc(100% - 725px);
    font-size: 16px;
    line-height: 1.8;
  }
}

.activity-mv-title {
  position: absolute;
  left: 2.67vw;
  bottom: 2.59vw;
  width: 53.87vw;
}
@media screen and (min-width: 768px) {
  .activity-mv-title {
    left: 8.49vw;
    bottom: 1.79vw;
    width: 29.58vw;
  }
}

.activity-introduction {
  padding-top: 34px;
}
@media screen and (min-width: 768px) {
  .activity-introduction {
    padding-top: 110px;
  }
}

.introduction-text1 {
  margin-bottom: 18px;
  color: #36bdef;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .introduction-text1 {
    margin-bottom: 40px;
    font-size: 23px;
    text-align: center;
  }
}

.introduction-text2 {
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .introduction-text2 {
    line-height: 2.6;
    text-align: center;
  }
}

.activity-support {
  max-width: 1000px;
  padding-top: 58px;
}
@media screen and (min-width: 768px) {
  .activity-support {
    padding-top: 96px;
  }
}

.activity-list {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .activity-list {
    padding-top: 35px;
  }
}

@media screen and (min-width: 768px) {
  .activity-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.16%;
  }
}

.activity-item:not(:first-of-type) {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .activity-item:not(:first-of-type) {
    padding-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .activity-item--pc-reverse {
    flex-direction: row-reverse;
  }
}

.activity-item-image {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 16px;
}
@media screen and (min-width: 768px) {
  .activity-item-image {
    width: 45.83%;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .activity-item-content {
    width: 50%;
  }
}

.activity-item-content__term {
  margin-bottom: 10px;
  color: #36bdef;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .activity-item-content__term {
    margin-bottom: 18px;
    font-size: 23px;
  }
}

.activity-item-content__description {
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .activity-item-content__description {
    font-size: 16px;
    line-height: 1.8;
  }
}

.activity-contributing {
  max-width: 1000px;
  padding-top: 58px;
  padding-bottom: 54px;
}
@media screen and (min-width: 768px) {
  .activity-contributing {
    padding-top: 140px;
    padding-bottom: 118px;
  }
}

.activity-outro1 {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .activity-outro1 {
    padding-bottom: 88px;
  }
}

.outro-title {
  position: absolute;
  top: 50%;
  right: 16%;
  transform: translateY(-50%);
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.47;
}
@media screen and (min-width: 768px) {
  .outro-title {
    left: 50%;
    right: auto;
    font-size: 30px;
    line-height: 2;
    text-align: center;
    transform: translate(-50%, -50%);
  }
}

.outro-message {
  padding-block: 24px;
  color: #36bdef;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .outro-message {
    padding-block: 72px;
    text-align: center;
  }
}

.activity-outro2 {
  padding-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .activity-outro2 {
    padding-bottom: 200px;
  }
}

@media screen and (max-width: 767px) {
  .outro-title--activity-outro2 {
    left: 16%;
  }
}

.report-mv-title {
  position: absolute;
  left: 2.67vw;
  bottom: 2.59vw;
  width: 49.18vw;
}
@media screen and (min-width: 768px) {
  .report-mv-title {
    left: 8.49vw;
    bottom: 1.79vw;
    width: 27vw;
  }
}

.report {
  padding-top: 34px;
  padding-bottom: 44px;
}
@media screen and (min-width: 768px) {
  .report {
    padding-top: 110px;
    padding-bottom: 230px;
  }
}

.lead {
  margin-block: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lead {
    margin-top: 70px;
    margin-bottom: 62px;
  }
}

.file-list {
}
@media screen and (min-width: 768px) {
  .file-list {
  }
}

.file-list li {
  padding-left: 1em;
  text-indent: -1em;
  padding-bottom: 14px;
  border-bottom: 1px dashed #ccc;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .file-list li {
    padding-bottom: 24px;
    font-size: 23px;
  }
}

.file-list li:not(:first-of-type) {
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .file-list li:not(:first-of-type) {
    padding-top: 24px;
  }
}

.file-list a {
  color: #36bdef;
}

@media screen and (min-width: 768px) {
  .file-list a:hover {
    opacity: 0.8;
  }
}

.file-list a::before {
  content: "●";
  font-size: 0.6em;
  vertical-align: 0.2em;
}

.file-list img {
  height: 17px;
  margin-inline: 0.2em;
  vertical-align: -0.15em;
}
@media screen and (min-width: 768px) {
  .file-list img {
    height: 23px;
  }
}

/* 働くママの声 */

.voice-mv-title {
  position: absolute;
  left: 2.67vw;
  bottom: 2.93vw;
  width: calc(181.9765vw / 3.75);
}
@media screen and (min-width: 768px) {
  .voice-mv-title {
    left: 8.49vw;
    bottom: 1.98vw;
    width: calc(408vw / 13.66);
  }
}

.voice-intro {
  padding-bottom: 30px;
  padding-top: 35px;
}
@media screen and (min-width: 768px) {
  .voice-intro {
    padding-bottom: 100px;
    padding-top: 120px;
  }
}

.voice-intro__image {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .voice-intro__image {
    margin-top: 20px;
  }
}

.voice-paint {
  padding-bottom: min(calc(500vw / 7.5),500px);
}
@media screen and (min-width: 768px) {
.voice-paint {
  padding-bottom: 0;
}
}

.voice-paint-dot {
  height: 48px;
  clip-path: polygon(0 75.5%, 100% 0, 100% 100%, 0% 100%);
  background-image: url(../img/dot_blue.png);
  background-size: calc(29px * 0.2745241581259151);
}
@media screen and (min-width: 768px) {
  .voice-paint-dot {
    background-size: 29px;
    width: 100%;
    height: 175px;
  }
}

.voice-paint-wrapper {
  background-color: #36bdef;
}

.paint-container {
  position: relative;
  width: calc(100% - min(calc(40vw / 3.75),40px));
  max-width: 960px;
  margin: 0 auto;
  display: flex;
}

.voice-paint-container {
  padding-top: 70px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
.voice-paint-container {
  padding-top: 125px;
  padding-bottom: 40px;
}
}

.voice-paint-text {
  position: relative;
  width: auto;
  color: #fff;
  font-size: min(calc(19.5vw / 3.75), 19.5px);
  line-height: 1.45;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .voice-paint-text {
    width: calc(630% / 9.6);
    font-size: min(calc(30vw / 9.6),30px);
    font-weight: 500;
    line-height: calc(42 / 30);
    text-align: left;
    margin: 0;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.voice-paint-text::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(280% / 3.3),280px);
  display: block;
  aspect-ratio: 533.945 / 185.4046;
  background: url(../img/voice_img2.png) no-repeat center / contain;
}
@media screen and (min-width: 768px) {
  .voice-paint-text::before {
    left: 0;
    transform: translateX(0);
    width: calc(534% / 6);
  }
}

.voice-paint-image {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translate(50%,25px);
  width: min(calc(200vw / 3.75) , 500px);
}
@media screen and (min-width: 768px) {
  .voice-paint-image {
    right: 0;
    top: auto;
    bottom: 40px;
    transform: translate(0);
    width: calc(360% / 9.6);
  }
}

.voice-message {
  padding-top: 15px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media screen and (min-width: 768px) {
.voice-message {
  padding-top: 75px;
  padding-bottom: 140px;
  gap: 100px 0;
}
}

.voice-message.container { 
  max-width: 950px;
}

.voice-message-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px 35px;
}
@media screen and (min-width: 768px) {
.voice-message-grid {
  flex-direction: row-reverse;
}
.voice-message-grid:nth-of-type(2) {
    flex-direction: row;
}
}

.voice-message-wrapper {
  position: relative;
}
.voice-message-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 12px;
  left: 8px;
  border-radius: 12.6654px;
  background-image: url(../img/bg_dot_orange.png);
  background-size: 108px;
  border: 2px solid #fce7b6;
  z-index: -2;
}
.voice-message-grid:nth-of-type(2) .voice-message-wrapper::before {
  border: 2px solid #dbebff;
  background-image: url(../img/bg_dot_blue.png);
}
@media screen and (min-width: 768px) {
.voice-message-wrapper::before {
    max-width: 519px;
    border-radius: 20px;
    top: 14px;
    left: 10px;
  }
}

 .voice-message-wrapper::after {
  content: "";
  width: 45px;
  height: auto;
  aspect-ratio: 45 / 52.5;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateY(-20px);
  background-color: #fce7b6;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: -1;
}
.voice-message-grid:nth-of-type(2) .voice-message-wrapper::after {
  background-color: #dbebff;
  left: auto;
  right: 50%;
  transform: translate(calc(50% - 40px),-20px);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .voice-message-wrapper::after {
    width: 52.5px;
    aspect-ratio: 52.5 / 45;
    top: 80px;
    left: 0;
    transform: translateX(calc(-100% + 10px));
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
  .voice-message-grid:nth-of-type(2) .voice-message-wrapper::after {
  left: auto;
  right: 0;
  transform: translateX(calc(100% - 10px));
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
}

.voice-message-containcer {
  position: relative;
  background-color: #fce7b6;
  padding: 15px 20px;
  border-radius: 12.6654px;
}
@media screen and (min-width: 768px) {
  .voice-message-containcer {
      max-width: 519px;
      border-radius: 20px;
      padding: 35px 40px;
  }
}
.voice-message-grid:nth-of-type(2) .voice-message-containcer  {
  background-color: #dbebff;
}

.voice-message-img {
  width: calc(200% / 3.35);
}
.voice-message-grid:nth-of-type(2) .voice-message-img {
    margin-left: auto;
}
@media screen and (min-width: 768px) {
  .voice-message-img {
    width: auto;
  }
  .voice-message-grid:nth-of-type(2) .voice-message-img {
      margin-left: 0;
  }
}

.voice-message-title {
  color: #36bdef;
  font-size: 17px;
  font-weight: 500;
  line-height: calc(30 / 23);
  padding-bottom: 10px;
  border-bottom: 1px dashed #36bdef;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .voice-message-title {
      font-size: 23px;
      padding-bottom: 10px;
  }
}

.voice-message-text {
  font-size: 12px;
  line-height: calc(18 / 12);
}
@media screen and (min-width: 768px) {
  .voice-message-text {
      font-size: 16px;
  }
}

.voice-outro {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .voice-outro {
    padding-bottom: 140px;
  }
}

.voice__outro-title {
  text-align: left;
  font-size: calc(15vw / 3.75);
  width: calc(165vw / 3.75);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 768px) {
  .voice__outro-title {
    text-align: center;
    font-size: 30px;
    width: 100%;
  }
}

.common-fv-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - calc(30vw / 3.75)),-50%);
  width: auto;
  height: calc(127.6366vw / 3.75);
}
@media screen and (min-width: 768px) {
  .common-fv-title {
    transform: translate(calc(-50% - calc(50vw / 14)),-50%);
    height: calc(255.2732vw / 14);
  }
}

.common-fv-image {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.common-text {
  font-size: 12px;
  line-height: calc(28.8 / 16);
}
@media screen and (min-width: 768px) {
  .common-text {
    font-size: 16px;
  }
}

.common-text--right {
  text-align: right;
}

.common-sub-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  padding-bottom: 5px;
  color: #f5af0c;
}
@media screen and (min-width: 768px) {
  .common-sub-title {
    font-size: 23px;
    padding-bottom: 25px;
  }
}

.site-contents {
  padding: 35px 0 40px;
}
@media screen and (min-width: 768px) {
.site-contents {
  padding: 125px 0 170px;
}
}

.site-contents-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .site-contents-container {
      gap: 60px;
  }
}

.dot-list-item {
  position: relative;
  padding-left: 14px;
}
@media screen and (min-width: 768px) {
  .dot-list-item {
    padding-left: 20px;
  }
}

.dot-list-item:not(:first-child) {
  margin-top: 0.4em;
}

.dot-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: auto;
  aspect-ratio: 12 / 18;
  clip-path: circle(3.15px at 50% 60%);
  background-color: #36bdef;
}
@media screen and (min-width: 768px) {
  .dot-list-item::before {
    width: 16px;
    clip-path: circle(3.6px at 50% 60%);
  }
}

/* 支援のお願い */

.support-intro {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
.support-intro {
  padding-top: 110px;
}
}

.support-howto {
  padding-top: 45px;
}
@media screen and (min-width: 768px) {
.support-howto {
  padding-top: 85px;
}
}

.howto-list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .howto-list {
    padding-top: 70px;
  }
}

.howto-list-item {
  display: grid;
  grid-template: "ht1 ht2" auto
                 "ht3 ht3" auto
                 /100px 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .howto-list-item {
    grid-template: "ht1 ht2" auto
                  "ht1 ht3" 1fr
                  /231px 1fr;
    gap: 25px 30px;
  }
}

.howto-list-item:not(:first-child) {
  padding-top: 65px;
}
@media screen and (min-width: 768px) {
  .howto-list-item:not(:first-child) {
    padding-top: 115px;
  }
}

.howto-list-item-1 {
  grid-area: ht1;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.howto-list-item-2 ,.howto-list-item-3 {
  grid-area: ht2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
.howto-list-item-2,.howto-list-item-3 {
  gap: 35px;
}
}

.howto-list-item-3 {
  grid-area: ht3;
}

.howto-list__button {
  width: 100%;
  margin-top: 10px;
}

.howto-list-title {
  font-size: 17px;
  font-weight: 500;
  color: #36bdef;
}
@media screen and (min-width: 768px) {
  .howto-list-title {
    font-size: 23px;
  }
}

.howto-list-text {
  font-size: 12px;
  font-weight: 400;
  line-height: calc(18 / 12);
}
@media screen and (min-width: 768px) {
  .howto-list-text {
    font-size: 16px;
  }
}

.textlink {
  color: #36bdef;
}

.supporting-members {
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .supporting-members {
    padding-top: 155px;
  }
}

.support-paint {
  padding-top: 10px;
  background-color: #36bdef;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
.support-paint {
  padding-top: 40px;
  margin-top: 85px;
}
}

.support-paint-container {
  display: flex;
  align-items: center;
  width: 360px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .support-paint-container {
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
  }
}

.support-paint-text {
  position: relative;
  width: auto;
  margin-left: calc(0% - min(calc(40vw / 3.75),40px));
  color: #fff;
  font-size: min(calc(17vw / 3.75),17px);
  line-height: 1.45;
  text-align: left;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .support-paint-text {
    width: 390px;
    margin-left: 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .support-paint-text {
    width: 430px;
    font-size: 30px;
    line-height: 2.6;
  }
}

.support-partner {
  padding: 35px 0 60px;
}
@media screen and (min-width: 768px) {
.support-partner {
  padding: 70px 0 110px;
}
}

.support-partner__container {
  max-width: 960px;
}

.support-partner__dot-list {
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}
.support-partner__dot-list:last-of-type {
  padding: 15px 0 0;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
.support-partner__dot-list {
  padding: 25px 0;
}
.support-partner__dot-list:last-of-type {
  padding: 25px 0 0;
}
}

.dot-list--2col-large {
  column-count: 1;
  column-gap: 20px;
}
@media screen and (min-width: 768px) {
  .dot-list--2col-large {
    column-count: 2;
  }
  .dot-list--2col {
    column-count: 2;
  }
  .dot-list--3col {
    column-count: 3;
  }
}


.support-partner__dot-list .dot-list-item {
  display: list-item;
  break-inside: avoid;
  text-align: -webkit-match-parent;
}

.dot-list--1col .dot-list-item {
  font-size: 17px;
  padding-left: 17px;
}
.dot-list--2col-large .dot-list-item {
  font-size: 13px;
  padding-left: 13px;
}
.dot-list--2col .dot-list-item {
  font-size: 11px;
  padding-left: 11px;
}
.dot-list--3col .dot-list-item {
  font-size: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .dot-list--1col .dot-list-item {
    font-size: 30px;
    padding-left: 30px;
  }
  .dot-list--2col-large .dot-list-item {
    font-size: 23px;
    padding-left: 23px;
  }
  .dot-list--2col .dot-list-item {
    font-size: 20px;
    padding-left: 20px;
  }
  .dot-list--3col .dot-list-item {
    font-size: 16px;
    padding-left: 16px;
  }
}

.support-partner__dot-list .dot-list-item::before {
  aspect-ratio: 1;
}
.dot-list--1col .dot-list-item::before {
  width: 17px;
  clip-path: circle(3.35px at 50% 55%);
}
.dot-list--2col-large .dot-list-item::before {
  width: 13px;
  clip-path: circle(2.6px at 50% 55%);
}
.dot-list--2col .dot-list-item::before {
  width: 11px;
  clip-path: circle(2.2px at 50% 55%);
}
.dot-list--3col .dot-list-item::before {
  width: 10px;
  clip-path: circle(1.75px at 50% 55%);
}
@media screen and (min-width: 768px) {
  .support-partner__dot-list .dot-list-item::before {
    aspect-ratio: 1;
  }
  .dot-list--1col .dot-list-item::before {
    width: 30px;
    clip-path: circle(6.5px at 50% 55%);
  }
  .dot-list--2col-large .dot-list-item::before {
    width: 23px;
    clip-path: circle(4.5px at 50% 55%);
  }
  .dot-list--2col .dot-list-item::before {
    width: 20px;
    clip-path: circle(4px at 50% 55%);
  }
  .dot-list--3col .dot-list-item::before {
    width: 16px;
    clip-path: circle(3.15px at 50% 55%);
  }
}

.support-outro {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .support-outro {
    padding-bottom: 140px;
  }
}

.support__outro-title {
  text-align: left;
  font-size: calc(15vw / 3.75);
  width: calc(175vw / 3.75);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 768px) {
  .support__outro-title {
    text-align: center;
    font-size: 30px;
    width: 100%;
  }
}

.support-partner-note {
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
.support-partner-note {
  font-size: 16px;
}
}

.contact-contents {
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .contact-contents {
    padding-bottom: 155px;
  }
}

.contact__headline-wrapper {
  padding-top: 65px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .contact__headline-wrapper {
    padding-top: 105px;
    margin-bottom: 75px;
  }
}

.contact-contents-text {
  font-size: 17px;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 25px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 768px) {
  .contact-contents-text {
    font-size: 23px;
    margin-bottom: 65px;
  }
}

.contact__common-text {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.privacy__container {
  max-width: 950px;
}

.privacy-contents {
  padding-bottom: 75px;
}
@media screen and (min-width: 768px) {
.privacy-contents {
  padding-bottom: 155px;
}
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
.privacy-list {
  gap: 55px 0;
  margin-top: 80px;
}
}

.privacy-list-item {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media screen and (min-width: 768px) {
  .privacy-list-item {
      gap: 25px 0;
  }
}

.privacy__common-sub-title {
  margin: 0;
  padding: 0;
}

.privacy__headline-wrapper {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .privacy__headline-wrapper {
    padding-top: 110px;
  }
}

.num-list {
  counter-reset: listnum;
}

.num-list-item {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  line-height: 2;
  gap: 4px;
}
@media screen and (min-width: 768px) {
.num-list-item {
  font-size: 16px;
  gap: 7px;
}
}


.num-list-item::before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 12px;
  margin-top: 6px;
  font-weight: 400;
  height: auto;
  aspect-ratio: 1;
  counter-increment: listnum;
	content: counter(listnum);
  font-size: 10px;
  line-height: 1;
  background-color: #36bdef;
  color: #faf9f2;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .num-list-item::before {
    width: 16px;
    margin-top: 8px;
    font-size: 13px;
  }
}

.privacy__dot-list .dot-list-item {
  line-height: 2;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .privacy__dot-list .dot-list-item {
    font-size: 16px;
  }
}

.privacy__dot-list .dot-list-item::before {
  aspect-ratio: 1;
  clip-path: circle(3.6px at 50% 50%);
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
.privacy__dot-list .dot-list-item::before {
  clip-path: circle(3.6px at 50% 50%);
  margin-top: 8px;
}
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}

.aaaaaaaa {
}
@media screen and (min-width: 768px) {
  .aaaaaaaa {
  }
}




