@charset "UTF-8";
html {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "Noto Sans JP", sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

body {
  font-family: sans-serif;
  overflow-x: hidden;
  color: #000;
  font-size: 1.1rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1rem;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

.material-icons {
  vertical-align: middle;
}

h2 {
  font-family: serif;
  font-size: 1.4rem;
}

h3 {
  font-size: 1.3rem;
}

@media screen and (min-width: 992px) {
  h2 {
    font-size: 2.3rem;
  }

  h3 {
    font-size: 1.875rem;
    padding: 0;
  }
  h3:after {
    left: -35px;
  }
}
a {
  text-decoration: none;
  display: inline-block;
  transition: 0.5s all;
  color: #333;
}
a:hover {
  color: #d0e835;
  text-decoration: underline;
}
a:hover img {
  opacity: 0.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  transition: 0.5s all;
}

li {
  list-style: none;
}

.pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}
header {
  text-align: center;
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
}
header.active {
  background: #fff;
}
header .header_inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 2vw 0;
  position: relative;
}
header .site_header {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
}
header .site_header a:hover {
  text-decoration: none;
}
header nav {
  height: 0;
  position: absolute;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 200;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 0;
  top: 100%;
  left: 0;
}
header nav.active {
  height: 100vh;
  /*calc(100vh - 58px);*/
}
header nav li a {
  padding: 0 2em;
  color: #333;
  position: relative;
  line-height: 3em;
}
header nav li a:after {
  height: 3px;
  background: #d8e035;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s all;
  width: 0;
}
header nav li a:hover {
  text-decoration: none;
}
header nav li a:hover:after {
  width: calc(100% - 2px);
}
header nav .nav01 {
  margin-bottom: 0;
  width: 100%;
  background: #fff;
}
header nav .nav01 li {
  position: relative;
  text-align: left;
  background: #fff;
  border-bottom: #ddd solid 1px;
}
header nav .nav02 {
  margin-bottom: 0;
  padding: 30px;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  border-bottom: #ddd solid 1px;
}
header nav .nav02 li {
  position: relative;
  text-align: left;
  background: #fff;
}
header nav .nav02 li a {
  width: 50px;
  height: 50px;
  box-sizing: content-box;
  line-height: 1em;
}
header .btnMenu {
  display: block;
  padding: 0;
  width: 30px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  z-index: 300;
  font-size: 0.5rem;
  color: #000;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
header .btnMenu span {
  display: block;
  margin: 6px auto;
  width: 100%;
  height: 4px;
  background: #221815;
  border-radius: 1px;
  transition: all 0.4s;
}
header .btnMenu span:first-child {
  margin-top: 0;
}
header .btnMenu span:last-child {
  margin-bottom: 0;
}
header .btnMenu.active span:first-child {
  transform: translateY(10px) rotate(45deg);
}
header .btnMenu.active span:nth-child(2) {
  opacity: 0;
}
header .btnMenu.active span:last-child {
  transform: translateY(-10px) rotate(-45deg);
}
header .btnRmenu {
  position: absolute;
  top: 0px;
  left: 5px;
}
header .btnRmenu i {
  font-size: 20px;
}
header .btnRmenu span {
  font-size: 10px;
  display: block;
  margin-top: -1px;
}

@media screen and (min-width: 992px) {
  header {
    padding: 10px 0;
  }
  header .header_inner {
    padding: 0;
  }
  header .site_header {
    font-size: 1.8rem;
    position: relative;
    z-index: 300;
  }
  header nav {
    display: block;
    position: absolute;
    overflow: inherit;
    padding: 0;
    width: 100%;
    height: 100%;
    background: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header nav li a {
    line-height: 1em;
    padding: 0 1em;
    font-weight: bold;
  }
  header nav li a:after {
    content: "";
  }
  header nav li a.current:after {
    width: calc(100% - 2px);
  }
  header nav .nav01 {
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
    border: none;
    background: none;
    transform: translatey(-50%);
  }
  header nav .nav01 li {
    width: auto;
    border: none;
    background: none;
  }
  header nav .nav01 li a {
    padding: 0 0.5em;
  }
  header nav .nav02 {
    padding-top: 0;
    position: absolute;
    top: 50%;
    right: 0;
    justify-content: flex-end;
    margin-top: 0;
    border: none;
    width: auto;
    background: none;
    padding: 0;
    transform: translateY(-50%);
  }
  header nav .nav02 li {
    width: auto;
    border: none;
    background: none;
  }
  header nav .nav02 li a {
    width: 30px;
    height: 30px;
  }
  header .btnMenu {
    display: none;
  }
  header .btnRmenu {
    display: none;
  }
}
footer {
  background-color: #FFEAEA;
  margin-top: 2rem;
  padding: 2rem 0;
  text-align: center;
}
footer .footer_inner {
  text-align: center;
  color: #666;
  padding: 12px 0 10px;
}
footer .footer_inner small {
  font-size: 0.75rem;
}
footer .footer_inner p {
  font-size: 0.6rem;
}
footer .footer_inner .footer_sns {
  margin: 0 auto;
  padding: 20px;
  width: 70%;
  display: flex;
  justify-content: space-around;
}
footer .footer_inner .footer_sns li {
  position: relative;
  text-align: left;
}
footer .footer_inner .footer_sns li a {
  width: 50px;
  height: 50px;
  box-sizing: content-box;
}
footer .footer_inner .footer_nav {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
footer .footer_inner .footer_nav li {
  position: relative;
  text-align: left;
}
footer .footer_inner .footer_nav li:first-child:after {
  content: "/";
  display: inline-block;
  margin: 0 1em;
  color: #666;
}
footer .footer_inner .footer_nav li a {
  color: #666;
}

@media screen and (min-width: 992px) {
  footer {
    background-size: 100% auto;
  }
  footer .footer_inner {
    padding: 24px 0 20px;
  }
  footer .footer_inner p {
    font-size: 0.875rem;
  }
}
#pagetop {
  position: fixed;
  bottom: 0.8em;
  right: 1em;
  z-index: 100;
}
#pagetop a {
  background: #d8e035 url("../img/to_top.png") center no-repeat;
  background-size: 30%;
  width: 3rem;
  height: 3rem;
}
#pagetop a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 992px) {
  #pagetop a {
    width: 5rem;
    height: 5rem;
  }
}
main {
  /* max-width: 960px; */
  overflow: hidden;
  min-height: calc(100vh - 84px - 25vw);
  margin: 0 auto;
  /* padding-top: 10vw; */
}

@media screen and (min-width: 992px) {
  main {
    padding-top: 0;
    overflow: visible;
    min-height: calc(100vh - 296px - 25vw);
  }
}
.inner {
  width: calc(100% - 10vw);
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 992px) {
  .inner {
    max-width: 960px;
  }
}
.mv {
  /* background: url("/images/60th/project/xtree/background/fv-pc.jpg") center top no-repeat; */
  /* background-size: auto 76vw; */
  /* height: 19rem; */
}
.mv .mv_block01 {
  margin: 0 40vw 5vw 3rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 48em) {
  .mv .mv_block01 {
    margin: 0;
    padding: 1rem 0 2rem;
    text-align: center;
  }
}
.mv .mv_block01 .mv_block01_p {
  text-align: center;
  padding: 1rem 0 0 1vw;
}
@media screen and (max-width: 62em) {
  .mv .mv_block01 .mv_block01_p {
    padding: 1rem 0 0;
  }
}
.mv .mv_block01 .mv_block01_p p {
  font-size: 1rem;
  margin-bottom: 0.1rem;
  text-align: left;
}
@media screen and (max-width: 48em) {
  .mv .mv_block01 .mv_block01_p p {
    text-align: center;
  }
}
.mv .mv_block01 .pj_logo {
  text-align: center;
}
.mv .mv_block01 .pj_logo img {
  width: 45vw;
  margin-top: 1rem;
  padding-top: 0.5rem;
  box-shadow: 0 0 17px 20px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 48em) {
  .mv .mv_block01 .pj_logo img {
    width: 100vw;
    padding-top: 1rem;
  }
}
.mv .mv_block01 .pj_box {
  box-shadow: 0 0 17px 20px rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.9);
  width: 29rem;
  height: 8rem;
  margin: 2rem auto 0;
  border: none;
}
.mv .mv_block01 .pj_box .pj_title {
  font-size: 1.5rem;
}
@media screen and (max-width: 48em) {
  .mv .mv_block01 .pj_box {
    border-top: 1px dashed #000;
    width: auto;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    margin-top: 0;
  }
}
.mv .mv_block01 .saitama_logo {
  text-align: center;
}
.mv .mv_block01 .saitama_logo img {
  width: 14vw;
  padding-top: 1rem;
}
@media screen and (max-width: 48em) {
  .mv .mv_block01 .saitama_logo img {
    width: 30vw;
  }
}
.mv .mv_block01 h1 {
  /** margin-top: 35vw; **/
  margin-top: 0;
  padding: 18vw 0 28vw;
  text-align: center;
  position: relative;
  z-index: 10;
}
.mv .mv_block01 h1 img {
  width: 30%;
}
.mv .mv_block02 {
  height: 55vw;
  background-size: auto 70px;
  transform: rotate(10deg) scale(1.5);
}
.mv .mv_block02 .inner {
  position: relative;
  transform: rotate(-10deg) scale(0.6666666);
  text-align: center;
}
.mv .mv_block02 p {
  font-weight: bold;
  text-align: left;
}
.mv .mv_block02 p.mv_block02_txt_title {
  font-size: 1.3rem;
  position: absolute;
  top: -1.5em;
}
.mv .mv_block02 p.mv_block02_txt_txt {
  font-size: 0.9rem;
  position: relative;
  top: 0.5em;
  margin-bottom: 2em;
}
.mv .mv_block02 p.mv_block02_txt_txt span {
  font-size: 1.5em;
}
.mv .mv_block02 .mv_block02_figure {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.mv .mv_block02 .mv_block02_figure figure {
  width: 35vw;
  margin: 0 10px -5vw;
}
.mv .mv_block02 .mv_block02_figure2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-top: 5vw;
}
.mv .mv_block02 .mv_block02_figure2 a {
  text-decoration: none;
}
.mv .mv_block02 .mv_block02_figure2 a:hover {
  opacity: 0.7;
}
.mv .mv_block02 .mv_block02_figure2 li {
  width: 29%;
}
.mv .mv_block02 .mv_block02_figure2 li img {
  width: 100%;
  height: auto;
}
.mv .mv_block02 .mv_block02_figure2 li h5 {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0.3em;
}
.mv .mv_block02 .mv_block02_figure2 li p {
  font-size: 0.8rem;
  text-align: center;
  color: #000;
}

@media screen and (min-width: 992px) {
  .mv {
    margin: 0 calc(50% - 50vw);
    padding-top: 10rem;
  }
  .mv .mv_block01 {
    height: 46vw;
  }
  .mv .mv_block01 .mv_block01_p {
    font-size: 2rem;
  }
  .mv .mv_block01 h1 {
    padding: 0;
    margin-top: 1vw;
  }
  .mv .mv_block01 h1 img {
    margin: 0 auto;
    width: 22vw;
  }
  .mv .mv_block02 {
    height: 43vw;
    max-height: 445px;
    background-size: 70% auto;
    transform: rotate(9deg) scale(1.5);
  }
  .mv .mv_block02 .inner {
    transform: rotate(-9deg) scale(0.6666666);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .mv .mv_block02 p {
    text-align: left;
  }
  .mv .mv_block02 p.mv_block02_txt_title {
    position: relative;
    top: -2.5em;
    font-size: 2.2rem;
  }
  .mv .mv_block02 p.mv_block02_txt_txt {
    top: -3em;
    margin-bottom: -3em;
    font-size: 1.8rem;
    margin-right: -220px;
  }
  .mv .mv_block02 .mv_block02_figure {
    margin-top: 120px;
  }
  .mv .mv_block02 .mv_block02_figure figure {
    width: 200px;
    margin: 0 10px;
  }
  .mv .mv_block02 .mv_block02_figure2 {
    margin-top: 30px;
  }
  .mv .mv_block02 .mv_block02_figure2 li {
    width: 27%;
  }
  .mv .mv_block02 .mv_block02_figure2 li h5 {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
  .mv .mv_block02 .mv_block02_figure2 li p {
    font-size: 1.3rem;
  }
}
.menu {
  margin: 7vw calc(50% - 50vw) 0;
}
.menu h2 img {
  height: 6vw;
}
.menu a {
  display: inline-block;
  text-decoration: none;
  background: #000;
  padding: 1em 1.5em;
  color: #fff;
  font-size: 3.2vw;
}
.menu a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 992px) {
  .menu {
    margin-top: 80px;
  }
  .menu:after {
    content: "";
    height: 10vw;
    background: #d8e035;
    z-index: -1;
    display: block;
    transform: rotate(5deg) scale(1.5);
    margin-top: -8vw;
  }
  .menu h2 img {
    height: 41px;
  }
  .menu a {
    font-size: 18px;
  }
  .menu p {
    font-size: 20px;
    margin: 2em 0 3em;
  }
}
.notice {
  padding: 5vw 0 20vw;
  text-align: center;
}
.notice p {
  display: inline-block;
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: 0.9em;
}

@media screen and (min-width: 992px) {
  .notice {
    padding: 100px 0 200px;
  }
}
/* 追加分 */
@media screen and (max-width: 48em) {
  header .site_header {
    font-size: 1.8rem;
    position: relative;
    z-index: 300;
    width: 90%;
  }
}
.donate {
  color: white;
  border: 1px solid #591919;
  border-radius: 10px;
  padding: 0.5rem 4%;
  background: #591919;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.3));
  transition: all 0.5s ease-out;
}
.donate:hover {
  border: 1px solid #591919;
  background: #fff;
  color: #591919;
}

.donate_modify {
  border: 1px solid #6c757d;
  background-color: #6c757d;
}
.donate_modify:hover {
  border: 1px solid #6c757d;
  color: #6c757d;
  background-color: #fff;
}

.btn-secondary {
  color: white;
  border-radius: 10px;
  padding: 0.5rem 2%;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.3));
}

@media screen and (max-width: 48em) {
  .btn-secondary {
    margin: 0 auto;
    padding: 0.5rem 11%;
  }
}
@media screen and (max-width: 48em) {
  .donate {
    padding: 0.2rem 1rem;
  }

  .nav02 .donate {
    display: none;
  }
}
@media screen and (max-width: 48em) {
  .donate {
    margin: 0 auto;
    padding: 0.5rem 1rem;
  }
}
.nav02 button.donate {
  width: 7rem;
}

.mv_img, .tree_img, .movie_img, .smile_img, .gift_img, .activity_img {
  width: 100%;
  position: relative;
}

.mv {
  position: relative;
  background-image: url("/images/60th/project/xtree/child.png");
  background-position: bottom;
  background-size: contain;
  padding-top: 10%;
}

@media screen and (max-width: 48em) {
  .mv {
    background-image: none;
  }
}
.mv_img {
  z-index: 0;
  width: 55%;
}

@media screen and (max-width: 48em) {
  .mv_img {
    width: 100%;
  }
}
.movie_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.saitama_logo {
  width: 10rem;
}

.sixtieth_logo {
  text-align: center;
  margin-bottom: 2rem;
}
.sixtieth_logo > img {
  padding-top: 1rem;
  max-width: 13rem;
}

@media screen and (max-width: 48em) {
  .sixtieth_logo > img {
    height: 8rem;
    text-align: center;
  }
}
.movie_network {
  width: 80%;
  height: auto;
  border: 1px solid #591919;
  margin: 5rem auto;
}

@media screen and (max-width: 48em) {
  .movie_network {
    width: 95%;
    height: auto;
  }
}
.movie_network_title {
  background-color: #591919;
  color: white;
}

@media screen and (max-width: 48em) {
  .movie_network_title {
    height: 3rem;
  }
}
@media screen and (max-width: 48em) {
  .movie_network_text {
    height: 6rem;
    font-size: 0.95rem;
  }
}
/* @include mq("max", "md") {
  .movie_network_text > p {
    font-size: 16px;
  }
} */
.movie_img {
  z-index: 0;
  margin: 2.5rem auto 0;
  padding: 0 10%;
}

.movie_mp4 {
  width: 60%;
  margin: 0 auto 5rem;
}
.movie_mp4 video {
  width: 100%;
}

@media screen and (max-width: 48em) {
  .movie_img {
    z-index: 0;
    margin: 2.5rem auto 0;
    padding: 0 26px;
  }

  .movie_mp4 {
    width: 100%;
    margin: 0 auto 5rem;
  }
  .movie_mp4 video {
    width: 100%;
  }
}
.smile_img {
  z-index: -10;
}

.box_item_img img {
  border-radius: 27px;
  width: 100%;
}

.box_item_content {
  position: relative;
  padding-top: 1.2rem;
}
.box_item_content .content_title {
  position: absolute;
  top: -0.05rem;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  border-radius: 30px;
  width: 15rem;
  text-align: center;
  padding: 0.2rem 0.5rem;
  font-size: 1rem;
}
.box_item_content .content_text {
  border: 2px solid white;
  border-radius: 10px;
}

.tree {
  display: block;
  margin-top: -7.5%;
  background: url("/images/60th/project/xtree/tree.png") no-repeat;
  color: white;
  z-index: -10;
  background-position: top;
  background-size: cover;
}
.tree button.donate {
  font-size: 20px;
  margin: 5vw 0 7vw;
  font-size: 20px;
  padding: 0.5rem 3rem;
}
@media screen and (max-width: 48em) {
  .tree button.donate {
    font-size: 16px;
  }
}
.tree h2 {
  background-size: cover;
  padding-top: 7rem;
  width: 33rem;
  margin: 0 auto 0 45vw;
  font-size: 1.8rem;
}
@media screen and (max-width: 48em) {
  .tree h2 {
    font-size: 1.5rem;
  }
}
.tree .tree_box {
  display: flex;
  flex-direction: column;
  width: 33rem;
  margin: 2vw auto 4vw 45vw;
}
.tree .tree_box .tree_box_item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 26rem;
  margin: 1vw 0;
  padding: 0 0.9rem 0;
}
@media screen and (max-width: 36em) {
  .tree .tree_box .tree_box_item {
    width: 100%;
  }
}
.tree .tree_box .tree_box_item .box_item_content .content_title {
  top: 0.1rem;
  color: #D54932;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.5rem 0.5rem;
}
.tree .tree_box .tree_box_item .box_item_content .content_text {
  padding: 2rem 0.4rem 0;
}
@media screen and (max-width: 62em) {
  .tree .tree_box .tree_box_item .box_item_content .content_text {
    height: auto;
  }
}
.tree .tree_box .tree_box_item .box_item_content .content_text .box_item_img {
  padding-bottom: 1rem;
}
.tree .tree_box .tree_box_item .box_item_content .content_text .box_item_img img {
  z-index: -10;
}
.tree .tree_box .tree_box_item .box_item_content .content_text p {
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 48em) {
  .tree .tree_box .tree_box_item .box_item_content .content_text {
    height: auto;
    font-size: 0.95rem;
  }
}
.tree .tree_box .tree_box_item .box_item_content .content_text.limit p {
  font-family: 游ゴシック;
}

@media screen and (max-width: 62em) {
  .tree {
    z-index: 0;
    margin-top: -4.5rem;
    background-position: top;
    background-size: contain;
    background-image: url(none);
  }
  .tree h2 {
    background-image: url("/images/60th/project/xtree/wave-red.svg");
    background-size: cover;
    padding-top: 5rem;
    margin: 0;
    width: 100vw;
  }
  .tree .tree_wrap {
    background-color: #D54932;
  }
  .tree .tree_wrap .tree_box {
    background-color: #D54932;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding-top: 2rem;
  }
  .tree .tree_wrap button.donate {
    font-size: 20px;
  }
  .tree .tree_wrap_img {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 36em) {
  .tree {
    margin-top: -1rem;
  }
}
.gift {
  z-index: 0;
  margin-top: -2.4rem;
  color: white;
}
.gift h2 {
  background-image: url("/images/60th/project/xtree/wave-green.svg");
  background-size: cover;
  padding: 5rem 0 3rem;
}
.gift .gift_wrap {
  background-color: #00AB97;
}
.gift .gift_box {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 62em) {
  .gift .gift_box {
    flex-direction: column;
  }
}
.gift .gift_box .gift_box_item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 0.5rem 0;
}
.gift .gift_box .gift_box_item .box_item_content .content_title {
  color: #00AB97;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gift .gift_box .gift_box_item .box_item_content .content_title span {
  margin: auto 0.2rem;
}
.gift .gift_box .gift_box_item .box_item_content .content_title .gift_amount {
  font-size: 1.6em;
  font-weight: 700;
  font-family: 游ゴシック;
}
.gift .gift_box .gift_box_item .box_item_content .content_text {
  height: 12.5rem;
  padding: 2.5rem 1rem 1rem 1rem;
}
.gift .gift_box .gift_box_item .box_item_content .content_text p {
  font-size: 1.4em;
}
.gift .gift_box .gift_box_item .box_item_content .content_text small {
  font-size: 90%;
}
@media screen and (max-width: 48em) {
  .gift .gift_box .gift_box_item .box_item_content .content_text {
    height: auto;
    font-size: 0.95rem;
  }
}
.gift p.goal_text {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
.gift button.donate {
  font-size: 20px;
  padding: 0.5rem 3rem;
}

@media screen and (max-width: 48em) {
  .gift {
    z-index: 0;
    margin-top: -2.4rem;
    background-position: top;
    background-size: contain;
  }
  .gift button.donate {
    margin: auto;
    font-size: 20px;
  }
}
.gift_img {
  margin: auto 0;
  padding: 4rem 10%;
}

@media screen and (max-width: 48em) {
  .gift_img {
    padding: 1.2rem 0 0;
    margin: 1rem auto 0;
  }
}
.activity {
  z-index: 0;
  margin-top: -2.4rem;
  color: white;
}
.activity h2 {
  background-image: url("/images/60th/project/xtree/wave-blue.svg");
  background-size: cover;
  padding: 4rem 0 3rem;
}
.activity .activity_wrap {
  position: relative;
  background-color: #49ADE1;
  padding-bottom: 7rem;
  margin-bottom: 13rem;
}
@media screen and (max-width: 48em) {
  .activity .activity_wrap {
    padding-bottom: 4rem;
    margin-bottom: 13rem;
  }
}
@media screen and (max-width: 36em) {
  .activity .activity_wrap {
    padding-bottom: 2rem;
    margin-bottom: 13rem;
  }
}
.activity .activity_wrap .activity_bottom {
  position: absolute;
  bottom: -11rem;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  width: 60vw;
}
@media screen and (max-width: 62em) {
  .activity .activity_wrap .activity_bottom {
    width: 100%;
    bottom: -10rem;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (max-width: 48em) {
  .activity .activity_wrap .activity_bottom {
    width: 100%;
    bottom: -12rem;
    margin: 0 auto;
    padding: 0;
  }
}
.activity .activity_wrap .activity_bottom p {
  color: #000;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 62em) {
  .activity .activity_wrap .activity_bottom p {
    font-size: 1rem;
    text-align: left;
  }
}
.activity .activity_wrap .activity_bottom .activity_agreement {
  background-color: #FFE85A;
  border-radius: 10px;
  max-height: 18rem;
  padding: 0.8rem;
  margin-bottom: 1rem;
}
.activity .activity_wrap .activity_bottom .activity_agreement .activity_agimg {
  max-width: 20rem;
}
@media screen and (max-width: 48em) {
  .activity .activity_wrap .activity_bottom .activity_agreement .activity_agimg {
    width: 14rem;
  }
}
.activity .activity_wrap .activity_bottom .activity_agreement .activity_agtext {
  padding: 0 4vw;
}
@media screen and (max-width: 48em) {
  .activity .activity_wrap .activity_bottom .activity_agreement .activity_agtext {
    padding-right: 0;
    font-size: 0.85em;
  }
}
.activity .activity_wrap .activity_bottom .activity_agreement .activity_agtext p {
  color: #6B3906;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 2.1rem;
  text-align: left;
}
@media screen and (max-width: 48em) {
  .activity .activity_wrap .activity_bottom .activity_agreement .activity_agtext p {
    font-size: 0.85em;
    line-height: 1.6rem;
  }
}
.activity .activity_box {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 62em) {
  .activity .activity_box {
    flex-direction: column;
  }
}
.activity .activity_box .activity_box_item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 0.9rem 0;
}
.activity .activity_box .activity_box_item .box_item_content .content_title {
  top: 0.1rem;
  color: #49ADE1;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.5rem 0.5rem;
}
.activity .activity_box .activity_box_item .box_item_content .content_text {
  height: 24rem;
  padding: 0.7rem 0.7rem 0;
}
@media screen and (max-width: 62em) {
  .activity .activity_box .activity_box_item .box_item_content .content_text {
    height: auto;
  }
}
.activity .activity_box .activity_box_item .box_item_content .content_text .box_item_img {
  padding-bottom: 1rem;
}
.activity .activity_box .activity_box_item .box_item_content .content_text .box_item_img img {
  z-index: -10;
}
.activity .activity_box .activity_box_item .box_item_content .content_text p {
  font-size: 1.2rem;
}
@media screen and (max-width: 48em) {
  .activity .activity_box .activity_box_item .box_item_content .content_text {
    height: auto;
    font-size: 0.95rem;
  }
}

input::-moz-placeholder {
  color: #d8d8d8;
}

input:-ms-input-placeholder {
  color: #d8d8d8;
}

input::placeholder {
  color: #d8d8d8;
}

.form_title {
  font-size: 2rem;
}

@media screen and (max-width: 48em) {
  .form_title {
    font-size: 1.5rem;
  }
}
.form_limit .box_item_content .content_title {
  top: 0.1rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  width: 10rem;
  padding: 0.5rem 0.5rem;
  background-color: #00AB97;
}
.form_limit .box_item_content .content_text {
  font-family: 游ゴシック;
  border: 2px solid #00AB97;
  padding: 1.7rem 0.7rem 0;
  color: #00AB97;
}
@media screen and (max-width: 62em) {
  .form_limit .box_item_content .content_text {
    height: auto;
  }
}
.form_limit .box_item_content .content_text p {
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 48em) {
  .form_limit .box_item_content .content_text {
    height: auto;
    font-size: 0.95rem;
  }
}

.form_box {
  border: 4px solid #00AB97;
  border-radius: 10px;
  margin-top: 1rem;
}
.form_box .row {
  margin: 0;
}

@media screen and (max-width: 48em) {
  .form_box {
    margin-top: 1rem;
  }
}
.form_box_title {
  background-color: #00AB97;
  color: white;
  padding: 1.5rem 3rem 1rem;
}

.form_box_item {
  padding: 1rem 3rem;
}

@media screen and (max-width: 48em) {
  .form_box_title, .form_box_item {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .form_box_item.amount {
    padding: 1rem 0.9rem;
  }
}
.form_box_price .form_box_title {
  border-radius: 5px 0 0 0;
}

@media screen and (max-width: 48em) {
  .form_box_price .form_box_title {
    border-radius: 5px 5px 0 0;
  }
}
/* .form_box_item.amount {
  margin-bottom: -2rem;
} */
.form_box_input {
  border: 1px solid lightgray;
  width: 70%;
  margin: 0 3rem 0.5rem 0;
  padding: 0.5rem;
}
.form_box_input.postnum {
  width: 40%;
}
.form_box_input.address {
  width: 60%;
}
.form_box_input.bulding {
  width: 90%;
}

.zip_box {
  line-height: 2.5rem;
}

@media screen and (max-width: 48em) {
  .zip_box {
    line-height: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .address1_title {
    line-height: 2.5rem;
  }

  .address1_box {
    margin-left: 2.5%;
  }
}
.btn.donate {
  width: 7rem;
}

@media screen and (max-width: 48em) {
  .form_box_input {
    width: 100%;
    margin: 0 0 0.5rem;
  }
  .form_box_input.postnum {
    width: 60%;
  }
  .form_box_input.address {
    width: 80%;
  }
  .form_box_input.bulding {
    width: 90%;
  }

  .form_box.donate {
    right: 0;
    left: 0;
    margin: auto;
  }

  .form_notice p {
    font-size: 0.8rem;
  }
}
div.footer_title > h3 {
  width: 6.5rem;
  margin-bottom: 1.5rem;
  font-family: sans-serif;
  width: auto;
  padding-left: 0;
}

.footer_link a {
  text-decoration: none;
}

/* thanksページ */
.container.thanks {
  padding-top: 8rem;
  min-height: 80vh;
}

div.thanks_happy > img {
  width: 50vw;
}

@media screen and (max-width: 48em) {
  .container.thanks {
    padding-top: 5rem;
  }

  div.thanks_happy > img {
    width: 100vw;
  }
}
/* matterページ */
.matter_box {
  /* border: 3px solid #00AB97; */
  /* border-radius: 10px; */
  margin-top: 1rem;
  max-width: 32rem;
}
.matter_box .row {
  margin: 0;
}

@media screen and (max-width: 48em) {
  .matter_box {
    margin-top: 1rem;
    font-size: 0.8rem;
  }
}
.matter_box_title {
  background-color: #707070;
  color: white;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.matter_box_item {
  padding: 1.5rem 3rem;
}

@media screen and (max-width: 48em) {
  .matter_box_title {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
  }
}
.matter_box_input {
  border: 1px solid lightgray;
  width: 70%;
  margin: 0 3rem 0.5rem 0;
  padding: 0.5rem;
}
.matter_box_input.postnum {
  width: 50%;
}
.matter_box_input.address {
  width: 60%;
}
.matter_box_input.bulding {
  width: 90%;
}

.btn.donate {
  width: 7rem;
}

@media screen and (max-width: 48em) {
  .matter_box_input {
    width: 100%;
    margin: 0 0 0.5rem;
  }
  .matter_box_input.postnum {
    width: 60%;
  }
  .matter_box_input.address {
    width: 80%;
  }
  .matter_box_input.bulding {
    width: 90%;
  }

  .matter_box.donate {
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media screen and (max-width: 48em) {
  .address_title {
    font-size: 0.7em;
    color: gray;
  }
}
.validation {
  font-size: 0.9rem;
  color: red;
  border: 2px solid red;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  padding: 0.2rem 0.5rem;
}

.privacy_box {
  border: 4px solid #00AB97;
  border-radius: 10px;
  margin-top: 3rem;
  padding: 2rem;
}
.privacy_box h2 {
  padding-bottom: 2rem;
}

.scroll_box {
  overflow: auto;
  width: 70%;
  height: 15rem;
  padding: 5px;
  margin: 0 auto 2rem;
  border: 1px solid lightgray;
  line-height: 1.5em;
}

@media screen and (max-width: 48em) {
  .scroll_box {
    width: 100%;
  }
}
input[type=submit][disabled] {
  background-color: #fff;
  color: #ccc;
  border-color: #ccc;
  cursor: default;
}

@-webkit-keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
  }
}
.md-radio {
  margin: 16px 0;
}
.md-radio input[type=radio] {
  display: none;
}
.md-radio input[type=radio]:checked + label:before {
  border-color: #00AB97;
  -webkit-animation: ripple 0.2s linear forwards;
          animation: ripple 0.2s linear forwards;
}
.md-radio input[type=radio]:checked + label:after {
  transform: scale(1);
}
.md-radio label {
  display: inline-block;
  min-height: 26px;
  position: relative;
  padding: 0 36px;
  padding-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  vertical-align: bottom;
}
.md-radio label:before, .md-radio label:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: all 0.3s ease;
  transition-property: transform, border-color;
}
.md-radio label:before {
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(0, 0, 0, 0.54);
}
.md-radio label:after {
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  transform: scale(0);
  background: #00AB97;
}

.md-checkbox {
  position: relative;
  margin: 1em 0;
  text-align: left;
}
.md-checkbox.md-checkbox-inline {
  display: inline-block;
}
.md-checkbox label {
  cursor: pointer;
  display: inline;
  vertical-align: top;
  clear: both;
  padding-left: 1px;
}
.md-checkbox label:not(:empty) {
  padding-left: 0.75em;
}
.md-checkbox label:before, .md-checkbox label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.md-checkbox label:before {
  width: 1.25em;
  height: 1.25em;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.54);
  border-radius: 0.125em;
  cursor: pointer;
  transition: background 0.3s;
}
.md-checkbox input[type=checkbox] {
  outline: 0;
  visibility: hidden;
  width: 1.25em;
  margin: 0;
  display: block;
  float: left;
  font-size: inherit;
}
.md-checkbox input[type=checkbox]:checked + label:before {
  background: #00AB97;
  border: none;
}
.md-checkbox input[type=checkbox]:checked + label:after {
  transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
  width: 0.75em;
  height: 0.375em;
  border: 0.125em solid #fff;
  border-top-style: none;
  border-right-style: none;
}
.md-checkbox input[type=checkbox]:disabled + label:before {
  border-color: rgba(0, 0, 0, 0.26);
}
.md-checkbox input[type=checkbox]:disabled:checked + label:before {
  background: rgba(0, 0, 0, 0.26);
}/*# sourceMappingURL=sixtieth.css.map */

.modal2 img{
	    max-width: 100%;
		line-height:0;
	}
#modal{
	width: 100%;
	height: 120%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	padding-top:100px;
	z-index: 1001;
	background: rgba(0, 0, 0, 0.7);
	cursor: pointer;
}
@media only screen and (max-width: 479px) {

#modal .modal2{
	position: fixed;
	width: 328px; /*画像の横幅*/
	top: 50%;
	left: 50%;
	margin: -217px 0 0 -162px; /*画像の高さと幅の半分 marginをマイナス */
	border: none;
}
#modal {
	background: rgba(0, 0, 0, 0.7);	
	}
}
