@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header {
  width: 100%;
  height: 80px;
}
@media screen and (min-width: 768px) {
  header {
    height: 90px;
  }
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) {
  header .inner {
    margin: 0 auto;
    padding: 0 30px;
  }
}
header .inner h1 {
  display: flex;
  align-items: center;
  max-width: 50%;
}
@media screen and (min-width: 768px) {
  header .inner h1 {
    width: auto;
    margin-right: 0;
  }
}
header .inner h1 .logo {
  width: auto;
  height: 40px;/* 40thlogo original 50 */
}
header .inner h1 .logo.new {
  height: 52px;
}
@media screen and (min-width: 768px) {
  header .inner h1 .logo {
    width: auto;
    height: 56px;/* 40thlogo original 68 */
    max-height: none;
  }
  header .inner h1 .logo.new {
    height: 75px;
  }
}
header .inner .phonenum-wrap {
  text-align: right;
  width: 54%;
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap {
    display: flex;
    align-items: flex-start;
    width: auto;
    text-align: center;
    margin-right: -40px;
  }
}
header .inner .phonenum-wrap p {
  font-size: 10px;
  color: #e4007f;
  text-align: right;
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap p {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap p .tel {
    pointer-events: none;
  }
}
header .inner .phonenum-wrap p .phonenumber {
  width: auto;
  max-height: 16px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap p .phonenumber {
    width: auto;
    height: 35px;
    max-height: none;
    margin-bottom: 8px;
  }
}
header .inner .phonenum-wrap .btn img {
  width: 190px;
  height: 25px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap .btn img {
    width: 280px;
    height: auto;
    margin-top: 10px;
  }
}
header .inner .btn-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  header .inner .btn-wrap {
    display: block;
    margin-left: 20px;
  }
  header .inner .btn-wrap a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 18px 0;
    border-radius: 60px;
    width: 200px;
  }
  header .inner .btn-wrap a.btn-blue {
    background-color: #41bfd6;
    color: #fff;
    margin-right: 10px;
  }
  header .inner .btn-wrap a.btn-yellow {
    background-color: #f6d130;
    color: #000;
  }
}

.gnav {
  z-index: 1;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}
.gnav::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(26, 26, 26, 0.98);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 100%;
  transform: scale(0.04), translateY(9999px);
  overflow: hidden;
}

.open .gnav {
  top: 0;
  pointer-events: auto;
}
.open .gnav::before {
  animation: menu-animation 0.4s ease-out forwards;
}

@keyframes menu-animation {
  0% {
    transform: scale(0);
  }
  99.9% {
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }
  100% {
    transform: scale(2);
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
  }
}
.gnav ul {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  backface-visibility: hidden;
  perspective: 1000;
  color: white;
}
.gnav ul li {
  opacity: 0;
  text-align: center;
  transform: translate3d(0, 36px, 0);
  margin-bottom: 5vh;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .gnav ul li {
    margin-bottom: 4vh;
  }
}
.gnav ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .gnav ul li a {
    font-size: 20px;
  }
}
.gnav ul li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  left: auto;
  background-color: #faec00;
  padding: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  transition: width 0.2s ease-out;
  pointer-events: none;
  z-index: 0;
}
.gnav ul li svg {
  position: relative;
  z-index: 10;
  height: 34px;
}
@media screen and (max-width: 768px) {
  .gnav ul li svg {
    height: 28px;
  }
}
.gnav ul li .cls-1 {
  fill: #fff;
  fill-rule: evenodd;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 900px) {
  .gnav ul li:hover:before {
    left: 0;
    right: auto;
    width: 100%;
  }
  .gnav ul li:hover .cls-1 {
    fill: #000;
  }
}
.open .gnav ul li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.open .gnav ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.open .gnav ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.open .gnav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.open .gnav ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.open .gnav ul li:nth-child(5) {
  transition-delay: 0.5s;
}
.open .gnav ul li:nth-child(6) {
  transition-delay: 0.6s;
}

/* ------------------------------------------------
  footer
------------------------------------------------ */
#footer a {
  color: #000;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}

#footer > .top {
  background-color: #a0d7f0;
}

#footer > .top .inner {
  margin: 0 auto;
  padding: 32px 0;
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer > .top .inner .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer > .top .inner .address {
  color: #00549e;
  font-size: 13px;
  font-size: 1.3rem;
  padding-left: 20px;
}

#footer > .top .inner .address .name {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

#footer > .top .inner .access {
  margin-left: auto;
}

#footer > .top .inner .access .btn {
  color: #00549e;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1;
  border: 1px solid #00549e;
  border-radius: 100px;
  background-color: #fff;
  padding: 12px 40px;
  display: inline-block;
  position: relative;
}

#footer > .top .inner .access .btn:before {
  content: "";
  background: url(../img/icon_access.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
  width: 16px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

#footer > .top .inner .access .btn span {
  display: inline-block;
  vertical-align: middle;
}

#footer > .middle .inner {
  margin: 0 auto;
  padding: 30px 45px;
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#footer > .middle .inner ul li {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  text-indent: -16px;
  padding-left: 16px;
}

#footer > .middle .inner ul li + li {
  margin-top: 0.9em;
}

#footer > .middle .inner ul li a::before {
  content: "";
  margin-top: -0.2em;
  margin-right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 4px;
  border-color: transparent transparent transparent #007bff;
  display: inline-block;
  vertical-align: middle;
}

#footer > .bottom {
  border-top: 1px solid #969696;
  padding: 15px 0;
}

#footer > .bottom .copyright {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #footer > .top .inner {
    margin: 0 4%;
    padding: 4% 0;
    display: block;
    width: auto;
  }

  #footer > .top .inner .txt {
    line-height: 1.4;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #footer > .top .inner .logo {
    width: 70px;
  }

  #footer > .top .inner .address {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
  #footer > .top .inner .address p {
    font-size: 1rem;
  }

  #footer > .top .inner .address .name {
    font-size: 1rem;
    margin-bottom: 0.2em;
  }

  #footer > .top .inner .access {
    text-align: center;
    margin-top: 2.89855%;
    margin-left: 0;
  }

  #footer > .top .inner .access .btn {
    font-size: 1.1rem;
    border-radius: 100px;
    padding: 0.8rem 2rem;
  }

  #footer > .top .inner .access .btn:before {
    margin-right: 1rem;
    width: 16px;
    height: 20px;
    width: 1.2rem;
    height: 1.5rem;
  }

  #footer > .middle .inner {
    margin: 0 4%;
    padding: 8% 0;
    display: block;
    width: auto;
  }

  #footer > .middle .inner ul + ul {
    margin-top: 0.9rem;
  }

  #footer > .middle .inner ul li {
    font-size: 1.2rem;
  }

  #footer > .middle .inner ul li + li {
    margin-top: 0.9rem;
  }

  #footer > .middle .inner ul li a::before {
    margin-top: -0.2em;
    margin-right: 1.2rem;
    border-width: 0.3rem 0 0.3rem 0.4rem;
  }

  #footer > .bottom {
    padding: 4.34783% 0;
  }

  #footer > .bottom .copyright {
    font-size: 1rem;
    line-height: 1.75;
  }
}
/* ------------------------------------------------
  end footer
------------------------------------------------ */
@font-face {
  font-family: "AdihausDIN-Bold";
  src: url("../fonts/AdihausDIN-Bold.eot");
  src: url("../fonts/AdihausDIN-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/AdihausDIN-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* -------------------------------------------------------
 base
---------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  color: #000;
  font-family: "Noto Sans Japanese", "Helvetica Neue", Helvetica, arial,
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-size: 10px;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  position: relative;
}

* {
  box-sizing: border-box;
}

.inner {
  margin: 0 4%;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 1040px;
    margin: 0 auto;
    padding: 0 30px;
  }
  header .inner {
    width: calc(100% - 60px);
    max-width: 1220px;
  }
}

p {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 16px;
  }
}

small {
  font-size: 11px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  small {
    font-size: 12px;
  }
}

sup {
  vertical-align: super;
  font-size: 11px;
  padding-left: 5px;
}

.pink {
  color: #e4007f;
}

.center {
  text-align: center;
}

.tit {
  text-align: center;
}
.tit img {
  height: 10vw;
}
@media screen and (min-width: 768px) {
  .tit img {
    height: 60px;
  }
}

img {
  line-height: 0;
  vertical-align: bottom;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
  color: #ff7d05;
}

.asterisk {
  color: #ff7d05;
}

.kome {
  color: #ff007f;
}

.change-border01 {
  display: inline-block;
  color: #3498db;
  text-decoration: none;
  overflow: hidden;
}

.change-border01 {
  position: relative;
}

a {
  transition: opacity 0.2s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }
}

/* Effect1
 *************************************** */
.change-border01::after,
.change-border01::before,
.change-border01__inner::after,
.change-border01__inner::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.change-border01::after {
  height: 10px;
  left: 0;
  top: 0;
  width: 0px;
}

.change-border01::before {
  bottom: 0;
  height: 10px;
  right: 0;
  width: 0px;
}

.change-border01__inner::after {
  bottom: 0;
  height: 0px;
  left: 0;
  width: 10px;
}

.change-border01__inner::before {
  height: 0px;
  right: 0;
  top: 0;
  width: 10px;
}

/* hover */
/*
@include mins($breakpoint-tab) {
	.change-border01:hover::after,
	.change-border01:hover::before {
	    width: 100%;
	    width: 100%;
	}

	.change-border01:hover .change-border01__inner::after,
	.change-border01:hover .change-border01__inner::before {
	    height: 100%;
	    height: 100%;
	}
}
*/
img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  img {
    width: auto;
  }
}

.btn-backtop {
  position: fixed;
  bottom: 96px;
  right: 10px;
  width: 50px;
  height: 50px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2000;
}
@media screen and (min-width: 768px) {
  .btn-backtop {
    bottom: 110px;
    right: 20px;
  }
}
.btn-backtop.active {
  visibility: visible;
  opacity: 1;
}

/* ページ下部フローティングボタン
======================================== */
.under {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 2000;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.under.active {
  visibility: visible;
  opacity: 1;
}
.under p {
  color: #fff;
  text-align: center;
  font-size: 10px;
  padding: 0 4%;
}
.under .btn-wrap {
  margin: 10px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  box-shadow: inherit;
}
.under .btn-wrap a {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 60px;
  width: 48%;
  height: 10vw;
  text-align: center;
}
.under .btn-wrap a.btn-yellow {
  box-shadow: none;
  font-size: 4vw;
  background-color: #f6d130;
  color: #000;
  border-width: 2px;
  padding-top: 3vw;
}
.under .btn-wrap a.btn-line {
  background-color: #02b902;
  color: #fff;
  border-width: 2px;
  font-size: 3.1vw;
  line-height: 1.3;
  padding-top: 1vw;
}
@media screen and (min-width: 768px) {
  .under p {
    width: auto;
    font-size: 14px;
  }
  .under .btn-wrap a.btn-yellow {
    padding-top: 18px;
    font-size: 26px;
  }
  .under .btn-wrap a.btn-line {
    font-size: 20px;
    line-height: 1.3;
    padding-top: 7px;
  }
  .under .btn-wrap {
    width: 670px;
    height: inherit;
  }
  .under .btn-wrap a {
    border: 2px solid #fff;
    height: 70px;
    width: 320px;
    font-size: 20px;
    border-radius: 8px;
    margin-top: 0;
  }
}

/* informationn */
.information {
  background-color: #eeeeee;
  text-align: center;
  color: #007dc9;
  padding: 3vw 0;
}
@media screen and (min-width: 768px) {
  .information {
    padding: 25px;
  }
}
.information p {
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .information p {
    font-size: 24px;
  }
}

/* #cover */
#cover {
  color: #000;
}
#cover .flexwrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap {
    flex-direction: row;
  }
}
#cover .flexwrap .kv {
  width: 100%;
  position: relative;
  transition: all 0.25s;
}
#cover .flexwrap .kv img {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  transition: all 0.25s;
}
#cover .flexwrap .kv .btn-play {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  width: 22vw;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .kv .btn-play {
    width: auto;
  }
}
#cover .flexwrap .kv .btn-play img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .kv .btn-play img {
    width: auto;
  }
}
#cover .flexwrap .inner {
  margin: 0;
  padding: 0 4% 40px;
  border: 15px solid #e4007f;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .inner {
    padding: 0 4%;
    width: 50%;
  }
}
#cover .flexwrap .inner h2 {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .inner h2 {
    text-align: left;
  }
}
#cover .flexwrap .inner h2 img {
  width: 85%;
}
#cover .flexwrap .inner p {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .inner p {
    font-size: 1.4vw;
  }
}

.donate-area {
  background-color: #fff;
  text-align: center;
  padding: 30px 4%;
}
@media screen and (min-width: 768px) {
  .donate-area {
    padding: 60px 0;
  }
}
.donate-area .copy1,
.donate-area .copy2 {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .donate-area .copy1 {
    width: auto;
    max-width: 400px;
  }
  .donate-area .copy1.txt1-1 {
    max-width: 370px;
  }
  .donate-area .copy2 {
    width: auto;
    max-width: 480px;
  }
  .donate-area .copy2.txt2-1 {
    max-width: 460px;
  }
}
.donate-area h2 span {
  display: block;
}
.donate-area h2 span:first-child {
  margin-bottom: 30px;
}
.donate-area .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.donate-area .btn-wrap a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 16px 0;
  border: 6px solid #fff;
  border-radius: 30px;
  width: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .donate-area .btn-wrap {
    margin-top: 40px;
  }
  .donate-area .btn-wrap a {
    font-size: 26px;
    padding: 30px 0;
    border: 10px solid #fff;
    border-radius: 60px;
    width: 320px;
  }
}
.donate-area .btn-wrap a.btn-blue {
  background-color: #41bfd6;
  color: #fff;
  margin-right: 14px;
}
@media screen and (min-width: 768px) {
  .donate-area .btn-wrap a.btn-blue {
    margin-right: 24px;
  }
}
.donate-area .btn-wrap a.btn-yellow {
  background-color: #f6d130;
  color: #000;
}
.donate-area .about-sponsor {
  display: inline-block;
  margin-top: 30px;
  color: #007dc9;
  font-size: 16px;
}

.section1 {
  background: #00549f;
  color: #fff;
}
.section1 .message {
  max-width: 900px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .section1 .message {
    flex: auto;
    display: flex;
    padding: 40px 0;
  }
}
.section1 .message .photo {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section1 .message .photo {
    width: 45%;
    margin-right: 5%;
    flex: auto;
  }
  .section1 .message .photo div.pc {
    margin: 180px 25px 0;
  }
  .section1 .message .photo div.photo1,
  .section1 .message .photo div.photo2 {
    margin: 100px 25px;
  }
}
.section1 .message .photo div.sp {
  margin: 0 35px;
}

.section1 .message .txt {
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .section1 .message .txt {
    width: 44%;
    flex: auto;
    margin-left: 6%;
  }
}

.section1 .message .txt p {
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 30px 0;
  text-align: left;
  display: inline-block;
  width: 320px;
}
@media screen and (min-width: 768px) {
  .section1 .message .txt p {
    margin: 50px 0;
    width: auto;
  }
}
.section1 .message .message-slider .slick-slide {
  margin: 0px;
  outline: none;
}
.section1 .message .photo .message-slider,
.section1 .message .photo .message-slider img {
  width: 100%;
}

.section2 .photo-area {
  text-align: center;
  margin: 20px auto 0;
  max-width: 620px;
  width: 90%;
  padding: 0 10px;
}
.section2 .photo-area .photo {
  width: 100%;
  height: 50vw;
}
@media screen and (min-width: 768px) {
  .section2 .photo-area {
    margin: 50px auto 0;
  }
  .section2 .photo-area .photo {
    width: 620px;
    height: 350px;
  }
}
.section2 .photo-area .photo img {
  width: 100%;
  height: 100%;
}

.section3 {
  padding: 0;
}
.section3 h2.copy {
  text-align: center;
  background-color: #00549f;
  color: #fff;
  font-size: 20px;
  padding: 30px 0;
}
.section3 .inner {
  text-align: center;
  margin: 20px auto;
  max-width: 620px;
  width: 90%;
  padding: 0 10px;
}
.section3 .inner h3 {
  margin: 35px 0;
  text-align: center;
}
.section3 .inner h3 img {
  width: 80%;
}
.section3 .inner h3.tit1 img {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .section3 .inner h3 img {
    width: auto;
    max-width: 440px;
  }
  .section3 .inner h3.tit1 img {
    width: auto;
    max-width: 380px;
  }
}
.section3 .inner .photo {
  width: 100%;
  height: 50vw;
}
@media screen and (min-width: 768px) {
  .section3 .inner {
    margin: 50px auto;
  }
  .section3 .inner .photo {
    width: 600px;
    height: 350px;
  }
}
.section3 .inner .photo img {
  width: 100%;
  height: 100%;
}
.section3 .inner p {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 30px;
}

.section4 {
  padding: 0;
}
.section4 h2.copy {
  text-align: center;
  background-color: #00549f;
  color: #fff;
  font-size: 20px;
  padding: 30px 0;
}
.section4 .inner {
  text-align: center;
  margin: 20px auto;
  max-width: 640px;
  width: 90%;
  padding: 0 10px;
}
.section4 .inner h3 {
  margin: 35px 0 25px;
  text-align: center;
}
.section4 .inner h3 img {
  width: 80%;
}
.section4 .inner h3.tit1 img {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .section4 .inner h3 img {
    width: auto;
    max-width: 440px;
  }
  .section4 .inner h3.tit1 img {
    width: auto;
    max-width: 380px;
  }
}
.section4 .inner .photo {
  width: 80%;
  height: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section4 .inner {
    margin: 50px auto;
  }
  .section4 .inner .photo {
    width: 440px;
    height: 440px;
  }
}
.section4 .inner .photo img {
  width: 100%;
  height: 100%;
}
.section4 .inner p {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 30px;
}

.section4 .inner.prj {
  width: 94%;
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 1040px;
}
@media screen and (min-width: 768px) {
  .section4 .inner.prj {
    width: 100%;
  }
}
.section4 .inner.prj h3 {
  text-align: center;
  background-color: #007dc9;
  color: #fff;
  font-size: 20px;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .section4 .boxwrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .section4 .boxwrap .box {
    width: 48%;
    max-width: 490px;
    margin-bottom: 15px;
  }
  .section4 .boxwrap .box:first-child {
    margin-right: 4%;
  }
}
.section4 .inner.prj .box {
  text-align: left;
  padding-bottom: 10px;
}
.section4 .inner.prj .box .pic {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.section4 .inner.prj .box .pic img {
  width: 100%;
  height: auto;
}
.section4 .inner.prj .box h4 {
  background-color: #e4007f;
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 10px 15px;
  text-align: left;
  font-size: 18px;
  line-height: 1.4;
  margin-top: -60px;
  width: 282px;
}
.section4 .inner.prj .box .txt {
  margin-bottom: 30px;
}
.section4 .inner.prj .box p {
  margin-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .section4 .inner.prj .box h4 {
    font-size: 20px;
    padding: 12px 20px;
    margin-top: -110px;
    width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .section4 .inner.prj .box p {
    font-size: 15px;
  }
}
.section4 .inner.prj .box .btn-open a {
  color: #00549f;
  display: inline-block;
  padding: 13px 0;
  border: 1px solid #00549f;
  border-radius: 5px;
  text-decoration: none;
  font-size: 17px;
  text-align: center;
  width: 100%;
}
.section4 .inner.prj .box .btn-open:after {
  content: "…";
  background-color: #fff;
  position: absolute;
  font-size: 15px;
  margin-top: -38px;
  padding: 5px 3px;
  margin-left: -25px;
}
@media screen and (min-width: 768px) {
  .section4 .inner.prj .box .btn-open:after {
    font-size: 16px;
    margin-left: -27px;
    padding: 5px;
  }
}

.section5 {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .section5 {
    padding: 0 0 30px;
  }
}
.section5 h2.copy {
  text-align: center;
  background-color: #00549f;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  padding: 15px 0;
  margin-bottom: 40px;
}
.section5 h2 {
  text-align: center;
  color: #e4007f;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .section5 h2 {
    font-size: 24px;
  }
}

.section5 .supporters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px auto 40px;
  max-width: 780px;
}
@media screen and (min-width: 768px) {
  .section5 .supporters {
    justify-content: center;
  }
}
.section5 .supporters .box {
  width: 30%;
  margin-bottom: 20px;
}
.section5 .supporters .box img {
  width: 100%;
  height: auto;
}
.section5 .supporters .box h3 {
  color: #00549e;
  background-color: #edebeb;
  margin: 0 auto;
  padding: 7px 0 10px;
  font-size: 3vw;
}
@media screen and (min-width: 768px) {
  .section5 .supporters .box {
    margin-bottom: 40px;
  }
  .section5 .supporters .box img {
    width: 200px;
    height: auto;
  }
  .section5 .supporters .box h3 {
    width: 200px;
    font-size: 16px;
  }
}

.section5 .slider {
  margin-top: 40px;
}
.section5 .slick-dotted.slick-slider {
  margin-bottom: 25vw;
}
@media screen and (min-width: 768px) {
  .section5 .slick-dotted.slick-slider {
    margin-bottom: 100px;
  }
}
.section5 .voice {
  background-color: #edebeb;
  border-radius: 20px;
  padding: 6%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .section5 .voice {
    display: flex;
    align-items: flex-start;
    padding: 40px;
  }
}
.section5 .voice h3 {
  font-size: 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section5 .voice h3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 120px;
    font-size: 18px;
    margin-right: 30px;
  }
}
.section5 .voice h3 img {
  width: 22%;
}
@media screen and (min-width: 768px) {
  .section5 .voice h3 img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
}
.section5 .voice h3 span {
  width: 100%;
  text-align: left;
  margin-left: 4vw;
}
@media screen and (min-width: 768px) {
  .section5 .voice h3 span {
    margin-left: 0;
  }
}
.section5 .voice p {
  margin-top: 20px;
  font-size: 3.4vw;
}
@media screen and (min-width: 768px) {
  .section5 .voice p {
    margin-top: 0;
    font-size: 16px;
    width: 570px;
  }
}
.section5 .voice.woman h3 {
  color: #e4007f;
}
.section5 .voice.man h3 {
  color: #00a0e9;
}

.section5 .sponsors-box {
  text-align: center;
  background-color: #edebeb;
  padding: 0 10px 10px;
  margin: 40px auto;
}
.section5 .sponsors-box h3 {
  padding: 20px 0;
}
.section5 .sponsors-box h3 img {
  margin: 0 auto;
  max-width: 300px;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .section5 .sponsors-box h3 img {
    width: auto;
  }
}
.section5 .sponsors-box .sponsors-box-inner {
  background-color: #fff;
  padding: 10px 0 15px;
}
@media screen and (min-width: 768px) {
  .section5 .sponsors-box .sponsors-box-inner {
    padding: 30px 0;
  }
}
.section5 .sponsors-box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .section5 .sponsors-box ul {
    margin: 10px auto 20px;
    width: 80%;
  }
}
.section5 .sponsors-box ul li {
  text-align: center;
  width: 50%;
}
.section5 .sponsors-box ul li:nth-child(4),
.section5 .sponsors-box ul li:nth-child(5) {
  width: 25%;
}
.section5 .sponsors-box ul li img {
  width: 90%;
  max-width: 150px;
  height: 65px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .section5 .sponsors-box ul li,
  .section5 .sponsors-box ul li:nth-child(4),
  .section5 .sponsors-box ul li:nth-child(5) {
    width: auto;
  }
  .section5 .sponsors-box ul li img {
    width: 150px;
  }
}
.section5 .sponsors-box ul li:nth-child(4) img {
  max-width: 30px;
  margin: 0 auto;
}
.section5 .sponsors-box ul li:nth-child(5) img {
  max-width: 120px;
  margin: 0 auto;
}
.section5 .sponsors-box .sup {
  color: #00549f;
  margin: 15px auto 0;
}
@media screen and (min-width: 768px) {
  .section5 .sponsors-box ul li:nth-child(4) img {
    max-width: 50px;
    padding-left: 20px;
  }
}

.section6 {
  padding: 0 0 60px;
}
.section6 h2 {
  text-align: center;
  background-color: #00549f;
  color: #fff;
  font-size: 20px;
  padding: 30px 0;
}
.section6 .bordertit span {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: 2px solid #000;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .section6 .bordertit span {
    font-size: 30px;
    border: 4px solid #000;
    padding: 16px 30px;
  }
}
.section6 .copy {
  margin: 30px 0;
  text-align: center;
}
.section6 .copy img {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .section6 .copy img {
    width: auto;
  }
}
.section6 .box {
  background-color: #fce5f2;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section6 .box {
    padding-bottom: 40px;
  }
}
.section6 .box > .tit {
  background-color: #e4007f;
  color: #fff;
  position: relative;
  padding: 30px;
}
.section6 .box > .tit img {
  width: auto;
}
.section6 .box > .tit .logo {
  width: 90%;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .section6 .box > .tit .logo {
    width: 448px;
  }
}
.section6 .box > .tit span {
  font-size: 18px;
}
.section6 .box > .tit .icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .section6 .box > .tit .icon {
    bottom: 20px;
    right: 180px;
  }
}
.section6 .box > .stit {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section6 .box .boxinner {
    display: flex;
    padding: 60px 40px 0;
  }
}
.section6 .box .boxinner .pic {
  display: block;
}
.section6 .box .boxinnerinner {
  padding: 20px 4%;
}
@media screen and (min-width: 768px) {
  .section6 .box .boxinnerinner {
    padding: 0 0 0 40px;
  }
}
.section6 .box .boxinnerinner > .stit {
  text-align: center;
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section6 .box .boxinnerinner > .stit {
    text-align: left;
    margin: 0 0 40px;
  }
}
.section6 .box .boxinnerinner > .stit img {
  width: 80%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .section6 .box .boxinnerinner > .stit img {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .section6 .box .boxinnerinner p {
    font-size: 18px;
  }
}
.section6 .box .boxinnerinner small {
  display: inline-block;
  margin-top: 20px;
  line-height: 1.4;
}
.section6 .box .boxinner2 {
  padding: 20px 4%;
}
@media screen and (min-width: 768px) {
  .section6 .box .boxinner2 {
    padding: 0;
  }
}
.section6 .box .borderwrap {
  padding: 5%;
  border: 2px solid #e4007f;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section6 .box .borderwrap {
    width: 750px;
    margin: 60px auto 0;
    padding: 40px;
  }
}
.section6 .box .borderwrap > .tit {
  display: flex;
  align-items: flex-start;
}
.section6 .box .borderwrap > .tit img {
  width: 40%;
  height: auto;
  margin-right: 4%;
}
@media screen and (min-width: 768px) {
  .section6 .box .borderwrap > .tit img {
    width: 160px;
    margin-right: 40px;
  }
}
.section6 .box .borderwrap > .tit h4 {
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section6 .box .borderwrap > .tit h4 {
    font-size: 24px;
  }
}
.section6 .box .borderwrap p {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section6 .box .borderwrap p {
    margin-top: -30px;
    padding-left: 200px;
  }
}
.section6 .box .borderwrap p small {
  margin-top: 5px;
  display: block;
}
@media screen and (min-width: 768px) {
  .section6 .box .borderwrap p small {
    display: inline;
  }
}
.section6 .box .note {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .section6 .box .note {
    width: 750px;
    margin: 10px auto 0;
  }
}
.section6 .box .note small {
  display: block;
  line-height: 1.6;
}
.section6 .box .amountwrap {
  margin-top: 20px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .section6 .box .amountwrap {
    width: 900px;
    margin: 40px auto 0;
  }
}
.section6 .box .amountwrap h4 {
  background-color: #e4007f;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 12px 0;
}
.section6 .box .amountwrap p {
  text-align: center;
  margin: 20px 0;
}
.section6 .box .amountwrap img {
  width: 90%;
  height: auto;
  margin: 10px 0 20px;
}
@media screen and (min-width: 768px) {
  .section6 .box .amountwrap img {
    width: auto;
  }
}
.section6 .box .btn-wrap {
  margin: 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section6 .box .btn-wrap {
    margin: 40px 0 20px;
  }
}
.section6 .box .btn-wrap a {
  display: block;
  margin: 0 auto;
  text-decoration: none;
  font-size: 14px;
  padding: 30px 0;
  border: 6px solid #fff;
  border-radius: 80px;
  width: 80%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .section6 .box .btn-wrap a {
    font-size: 22px;
    padding: 30px 0;
    border: 10px solid #fff;
    border-radius: 100px;
    width: 380px;
  }
}
.section6 .box .btn-wrap a.btn-yellow {
  background-color: #f6d130;
  color: #000;
}
.section6 .box .btn-wrap a span {
  display: inline-block;
  font-size: 22px;
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .section6 .box .btn-wrap a span {
    font-size: 36px;
  }
}

.section7 {
  padding: 0 0 40px;
}
.section7 .inner {
  margin: 0 8%;
}
@media screen and (min-width: 768px) {
  .section7 .inner {
    width: 800px;
    margin: 0 auto;
  }
}
.section7 .copy {
  color: #e4007f;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section7 .copy {
    font-size: 20px;
  }
}
.section7 .box {
  background-color: #fce5f2;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .section7 .box {
    padding-bottom: 20px;
  }
}
.section7 .box > .tit {
  background-color: #ef66b2;
  color: #fff;
  position: relative;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .section7 .box > .tit {
    padding: 20px;
  }
}
.section7 .box > .tit img {
  width: auto;
}
.section7 .box > .tit .logo {
  width: 60%;
  height: auto;
  margin-bottom: 10px;
}
.section7 .box > .tit.pgs .logo {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .section7 .box > .tit .logo {
    /* width: 286px; */
    width: auto;
    height: 42px;
  }
}
.section7 .box > .tit span {
  font-size: 14px;
}
.section7 .box > .tit .icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .section7 .box > .tit .icon {
    right: 120px;
  }
  .section7 .box > .tit.pgs .icon {
    right: 40px;
  }
}
.section7 .box > .stit {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section7 .box .boxinner {
    display: flex;
    align-items: flex-start;
    padding: 50px 40px 0;
  }
  .section7 .box .boxinner > img {
    width: 320px;
    height: 181px;
  }
}
.section7 .box .boxinnerinner {
  padding: 20px 4% 0;
}
@media screen and (min-width: 768px) {
  .section7 .box .boxinnerinner {
    padding: 0 0 0 20px;
    width: 340px;
  }
}
.section7 .box .boxinnerinner > .stit {
  text-align: center;
  margin: 10px 0 20px;
}
.box .boxinnerinner > h4.stit {
  font-size: 16px;
  line-height: 1.66;
  color: #E4007F;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .section7 .box .boxinnerinner > .stit {
    text-align: left;
    margin: 0 0 20px;
  }
  .box .boxinnerinner > h4.stit {
    font-size: 20px;
  }
}
.section7 .box .boxinnerinner > .stit img {
  width: 70%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .section7 .box .boxinnerinner > .stit img {
    width: 300px;
  }
}
.section7 .box .boxinnerinner small {
  display: inline-block;
  margin-top: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .section7 .box .boxinnerinner small {
    margin-top: 10px;
  }
}
.section7 .box .boxinner2 {
  padding: 20px 4%;
}
@media screen and (min-width: 768px) {
  .section7 .box .boxinner2 {
    padding: 0;
    width: 500px;
    margin: 20px auto 0;
  }
}
.section7 .box .amountwrap {
  margin-top: 0;
  background-color: #fff;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .section7 .box .amountwrap {
    margin-top: 20px;
  }
}
.section7 .box .amountwrap h4 {
  background-color: #e4007f;
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding: 10px 0;
}
.section7 .box .amountwrap p {
  text-align: center;
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .section7 .box .amountwrap p {
    margin: 20px 0 10px;
  }
}
.section7 .box .amountwrap p > img {
  width: 30%;
}
@media screen and (min-width: 768px) {
  .section7 .box .amountwrap p > img {
    width: 160px;
  }
}
.section7 .box .amountwrap > img {
  width: 70%;
  height: auto;
  margin: 10px 0 20px;
}
@media screen and (min-width: 768px) {
  .section7 .box .amountwrap > img {
    width: auto;
  }
}
.section7 .box .btn-wrap {
  margin: 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section7 .box .btn-wrap {
    margin: 30px 0 20px;
  }
}
.section7 .box .btn-wrap a {
  display: block;
  margin: 0 auto;
  text-decoration: none;
  font-size: 14px;
  padding: 30px 0;
  border: 6px solid #fff;
  border-radius: 80px;
  width: 80%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .section7 .box .btn-wrap a {
    font-size: 16px;
    padding: 20px 0;
    border: 10px solid #fff;
    border-radius: 100px;
    width: 280px;
  }
}
.section7 .box .btn-wrap a.btn-yellow {
  background-color: #f6d130;
  color: #000;
}
.section7 .box .btn-wrap a span {
  display: inline-block;
  font-size: 22px;
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .section7 .box .btn-wrap a span {
    font-size: 24px;
  }
}

.section8 {
  padding: 0 0 60px;
}
.section8 .box {
  background-color: #00549f;
  border-radius: 20px;
  overflow: hidden;
}
.section8 .box .boxinner {
  padding: 20px 4% 5px;
}
.section8 .box .boxinner > .stit {
  text-align: center;
  margin: 20px 0 40px;
  color: #fff;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .section8 .box .boxinner > .stit {
    width: 440px;
    margin: 20px auto 40px;
  }
  .section8 .box .boxinner > .stit img {
    width: 100%;
  }
}
.section8 .box .boxinner > .stit span {
  display: inline-block;
  margin: 10px 0;
  font-size: 20px;
}
.section8 .box .boxinner .pic {
  text-align: center;
  background-color: #fff;
  padding: 5%;
}
.section8 .box .boxinner small {
  display: inline-block;
  margin-top: 20px;
  line-height: 1.4;
}
.section8 .box .btn-wrap {
  text-align: center;
  margin: 20px 0;
}
.section8 .box .btn-wrap .btn {
  display: inline-block;
  color: #00549f;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  border-radius: 10px;
  position: relative;
  padding: 16px 24px;
}
.section8 .box .btn-wrap .btn::after {
  content: "";
  display: inline-block;
  background: url(../img/arrow.svg) center center no-repeat;
  background-size: cover;
  vertical-align: middle;
  width: 10px;
  height: 11px;
  margin-left: 10px;
  margin-top: -4px;
}
@media screen and (min-width: 768px) {
  .section8 .box .btn-wrap .btn::after {
    top: 50%;
    right: 10px;
  }
}

/* plan add 211022 */
.section8 .box .boxinner .notes {
  text-align: left;
  margin-top: 20px;
  line-height: 1.4;
  font-size: 12px;
}

.section8 .box .boxinner .notes li {
  margin-top: 5px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .section11 .box .boxinner .notes {
    font-size: 14px;
  }
}
/* end */

.section9 {
  padding-bottom: 40px;
}
.section9 .copy {
  text-align: center;
  background-color: #00549f;
  color: #fff;
  font-size: 20px;
  padding: 30px 0;
}
.section9 .copy img {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .section9 .copy img {
    width: auto;
  }
}
.section9 .innerinner {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .section9 .innerinner {
    width: 780px;
    margin: 40px auto 0;
  }
}
.section9 .innerinner .lead {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section9 .innerinner .lead {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.section9 .box {
  border-top: 2px solid #000;
  margin-top: 20px;
}
.section9 .box.last {
  border-bottom: 2px solid #000;
  padding-bottom: 20px;
}
.section9 .box h3 {
  font-size: 16px;
  vertical-align: middle;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section9 .box h3 {
    font-size: 27px;
    font-weight: bold;
  }
}
.section9 .box h3::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 3px;
  background-color: #e4007f;
}
@media screen and (min-width: 768px) {
  .section9 .box h3::before {
    width: 25px;
    height: 25px;
    margin-right: 6px;
  }
}
.section9 .box .num {
  text-align: right;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section9 .box .num {
    margin-top: 30px;
  }
}
.section9 .box .num1,
.section9 .box .num4 {
  width: auto;
  height: 13vw;
}
@media screen and (min-width: 768px) {
  .section9 .box .num1,
  .section9 .box .num4 {
    width: auto;
    height: auto;
  }
}
.section9 .box .num2,
.section9 .box .num3 {
  width: auto;
  height: 22vw;
}
@media screen and (min-width: 768px) {
  .section9 .box .num2,
  .section9 .box .num3 {
    width: auto;
    height: auto;
  }
}
.section9 .year {
  text-align: right;
  margin-top: 10px;
}
.section9 .pic {
  margin-top: 40px;
  margin-bottom: 10px;
}
.section9 .box2 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section9 .box2 {
    width: 670px;
    margin: 0 auto;
  }
}
.section9 .qawrap {
  margin-top: 40px;
  border: 2px solid #e4007f;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section9 .qawrap {
    width: 900px;
    margin: 40px auto 0;
  }
}
.section9 .qawrap .qainner {
  padding: 5%;
}
.section9 .qawrap h3 {
  background-color: #e4007f;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 20px 0;
}
.section9 .qawrap hr {
  border: none;
  border-bottom: 2px solid #e4007f;
}
.section9 .qawrap .q {
  margin-top: 10px;
}
.section9 .qawrap .q::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/Q.svg) center center no-repeat;
  background-size: contain;
  transform: translate(0, 4px);
  margin-right: 10px;
}
.section9 .qawrap .a {
  margin-top: 10px;
  margin-bottom: 20px;
}
.section9 .qawrap .a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url(../img/A.svg) center center no-repeat;
  background-size: contain;
  transform: translate(2px, 4px);
  margin-right: 10px;
}
.section9 .qawrap .a a {
  color: #007dc9;
}

.kv-slider .slick-slide {
  margin: 0px;
  outline: none;
}
@media screen and (min-width: 768px) {
  .kv-slider .slick-slide {
    margin: 0px;
  }
}

.section5slider .slick-slide {
  margin: 0px 7vw;
  width: 86vw;
  height: 90vw;
  outline: none;
}
@media screen and (min-width: 768px) {
  .section5slider .slick-slide {
    margin: 0px 20px;
    width: 800px;
    height: 260px;
  }
}

.slick-slide img {
  width: 100%;
  opacity: 1;
}

.slick-prev,
.slick-next {
  width: 20px;
  height: 20px;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.2s;
  border-top: 5px solid #00549f;
  border-right: 5px solid #00549f;
}
@media screen and (min-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
  }
  .slick-prev:hover,
  .slick-next:hover {
    opacity: 0.7;
  }
}

.slick-prev {
  left: 20px;
  transform: rotate(-135deg);
}
@media screen and (min-width: 768px) {
  .slick-prev {
    left: 30px;
  }
}

.slick-next {
  right: 20px;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .slick-next {
    right: 30px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .slick-dotted.slick-slider {
    margin-bottom: 22px;
  }
}

.slick-dots {
  bottom: -10vw;
}
@media screen and (min-width: 768px) {
  .slick-dots {
    bottom: -40px;
  }
}

.slick-dots li {
  width: 4vw;
  height: 4vw;
  background-color: #fff;
  margin: 0 1vw;
  opacity: 1;
  transition: opacity 0.2s;
  border-radius: 50%;
  border: 2px solid #00549f;
}
@media screen and (min-width: 768px) {
  .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0px 10px;
  }
}
.slick-dots li.slick-active {
  background-color: #00549f;
}
.slick-dots li.slick-active:hover {
  opacity: 1;
}

.dot {
  margin-top: 3vw;
}
@media screen and (min-width: 768px) {
  .dot {
    margin-top: 30px;
  }
}
.dot .slick-slide {
  margin: 0px 5px;
  width: 70vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .dot .slick-slide {
    width: 424px;
    height: 664px;
  }
}
.dot .slick-dots {
  bottom: -10vw;
}
@media screen and (min-width: 768px) {
  .dot .slick-dots {
    bottom: -60px;
  }
}
.dot .slick-dots li {
  width: 3vw;
  height: 3vw;
  margin: 0 2vw;
  background-color: #ccc;
  border-radius: 1.5vw;
}
@media screen and (min-width: 768px) {
  .dot .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 5px;
  }
}
.dot .slick-dots li.slick-active {
  background-color: #000;
}

/*ラインバナー*/
.line {
  margin-top: 7vw;
  display: block;
}
@media screen and (min-width: 768px) {
  .line {
    width: 670px;
    margin: 40px auto;
  }
  .line img {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */

/* 企業数 */
.sponsors .sponsors-box h3 {
 padding: 2.4vw 0 1.2vw;
 color: #00549f;
 line-height: 1;
 font-family: "Poppins","Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.sponsors .sponsors-box h3 .txt-num, .sponsors .sponsors-box h3 small {
 display: inline-block;

}
.sponsors .sponsors-box h3 .txt-num {
 font-size: 30px;
 font-family: din-condensed, sans-serif;
 font-weight: 900;
}
.sponsors .sponsors-box h3 small {
 font-size: 20px;
 font-weight: 700;
}

@media screen and (min-width:768px) {
 .sponsors .sponsors-box h3 {
  padding: 20px 0
 }
 .sponsors .sponsors-box h3 .txt-num {
  font-size: 60px
 }
 .sponsors .sponsors-box h3 small {
  font-size: 34px
 }
}

