@charset "UTF-8";
/* reset */
/* ============================================ */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Sans", "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

a.btn {
  display: inline-block;
  width: 100%;
  height: auto;
  background-color: #000;
  transition: all 0.5s ease;
}
a.btn p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: 0em;
  color: #FFF;
  text-align: center;
  transition: all 0.5s ease;
}
a.btn:hover {
  background-color: #FFF;
}
a.btn:hover p {
  color: #000;
}
a.btn-right {
  display: inline-block;
  width: 100%;
  height: auto;
  background-color: #000;
  transition: all 0.5s ease;
}
a.btn-right p {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: 0em;
  color: #FFF;
  text-align: center;
  transition: all 0.5s ease;
}
a.btn-right p::after {
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  left: auto;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  a.btn-right p::after {
    width: 5px;
    height: 5px;
    right: 7px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }
}
a.btn-right:hover {
  background-color: #FFF;
}
a.btn-right:hover p {
  color: #000;
}
a.btn-right:hover p::after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
a.btn-right-ssp {
  display: inline-block;
  width: 100%;
  height: auto;
  background-color: #000;
  text-align: center;
  transition: all 0.5s ease;
}
a.btn-right-ssp p {
  display: inline-block;
  padding: 0 15px 0 0;
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: 0em;
  color: #FFF;
  text-align: center;
  transition: all 0.5s ease;
}
a.btn-right-ssp p::after {
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  a.btn-right-ssp p::after {
    width: 6px;
    height: 6px;
  }
}
a.btn-right-ssp:hover {
  background-color: #FFF;
}
a.btn-right-ssp:hover p {
  color: #000;
}
a.btn-right-ssp:hover p::after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

header {
  width: 100%;
  height: auto;
  margin: auto;
  background-color: #FFF;
}
header .header {
  width: 100%;
  height: auto;
  margin: auto;
  padding-left: 6.0975609756vw;
}
@media print, screen and (min-width: 820px) {
  header .header {
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  header .header {
    padding-left: 3.8461538462vw;
  }
}
header .header a {
  width: 159px;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  header .header a {
    width: 26.9230769231vw;
    height: auto;
  }
}
header .header a img {
  width: 100%;
  height: auto;
}

footer {
  width: 100%;
  height: auto;
}
footer .footer {
  width: 100%;
  height: auto;
}
footer .footer__main {
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer__main {
    padding: 0 3.8461538462vw 1.9230769231vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
footer .footer__main-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer__main-title a {
  max-width: 159px;
  width: 15.9vw;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer .footer__main-title a {
    width: 26.9230769231vw;
    height: auto;
  }
}
footer .footer__main-title a img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 769px) {
  footer .footer__main-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  footer .footer__main-link {
    margin-left: 3.8461538462vw;
  }
}
footer .footer__main-link p {
  margin-left: 6vw;
  padding-top: 14px;
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  footer .footer__main-link p {
    margin-left: 0;
    padding-top: 0;
    font-size: clamp(1.4rem, 2.6923076923vw, 1.4rem);
    line-height: 1.4285714286;
  }
}
@media screen and (max-width: 768px) {
  footer .footer__main-link p span {
    display: block;
  }
}
footer .footer__main-link ul {
  margin-left: 6vw;
  padding-top: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  footer .footer__main-link ul {
    margin: 0.9615384615vw 0 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
footer .footer__main-link ul li a {
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  font-weight: 400;
  color: #0E5FA6;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  footer .footer__main-link ul li a {
    font-size: clamp(1.2rem, 2.3076923077vw, 1.2rem);
  }
}
footer .footer__main-link ul li:not(:first-of-type) {
  margin-left: 3vw;
}
@media screen and (max-width: 768px) {
  footer .footer__main-link ul li:not(:first-of-type) {
    margin-left: 3.8461538462vw;
  }
}
footer .footer__copyright {
  width: 100%;
  height: auto;
  padding: 10px 0;
  background-color: #333;
}
footer .footer__copyright p {
  font-size: clamp(1rem, 1.7073170732vw, 1.4rem);
  font-weight: 700;
  color: #FFF;
  text-align: center;
}

@media print, screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.inner {
  max-width: 820px;
  height: auto;
  margin: auto;
}

span.block {
  display: block;
}

.index .visual {
  width: 100%;
  height: auto;
  padding-bottom: 12.1951219512vw;
  background-color: #80C26A;
}
@media print, screen and (min-width: 769px) {
  .index .visual {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .index .visual {
    padding-bottom: 9.6153846154vw;
  }
}
.index .visual .inner {
  max-width: 100%;
  height: auto;
}
.index .visual__main h1 img {
  width: 100%;
  height: auto;
}
.index .summary {
  width: 100%;
  height: auto;
  padding-bottom: 12.1951219512vw;
  background-color: #80C26A;
}
@media print, screen and (min-width: 769px) {
  .index .summary {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .index .summary {
    padding: 0 0 3.8461538462vw;
  }
}
.index .summary .inner {
  padding: 9.756097561vw 9.1463414634vw;
  background-color: #FFF;
  border-radius: 30px;
  border: 8px solid #FBF15B;
}
@media print, screen and (min-width: 769px) {
  .index .summary .inner {
    padding: 80px 75px;
  }
}
@media screen and (max-width: 768px) {
  .index .summary .inner {
    padding: 5.7692307692vw 5.7692307692vw;
  }
}
.index .summary__title {
  max-width: 654px;
  width: 79.756097561vw;
  height: auto;
}
.index .summary__title h2 img {
  width: 100%;
  height: auto;
}
.index .summary__main {
  margin-top: 7.3170731707vw;
}
@media print, screen and (min-width: 769px) {
  .index .summary__main {
    margin-top: 60px;
  }
}
.index .summary__main-title {
  padding: 1.7073170732vw 3.4146341463vw;
  background-color: #017616;
  border-radius: 10px;
  display: inline-block;
}
@media print, screen and (min-width: 820px) {
  .index .summary__main-title {
    padding: 14px 28px;
  }
}
.index .summary__main-title h3 {
  font-size: clamp(1.4rem, 2.9268292683vw, 2.4rem);
  font-weight: 700;
  color: #FFF;
}
.index .summary__main-list {
  margin-top: 20px;
}
.index .summary__main-list ul li {
  font-size: clamp(1rem, 2.8048780488vw, 2.3rem);
  font-weight: 700;
  line-height: 1.5;
}
.index .summary__main-list ul li strong {
  font-size: clamp(1rem, 4.3902439024vw, 3.6rem);
  font-weight: 700;
}
.index .summary__main-list ul li::before {
  content: "";
  width: 654px;
  height: 15px;
  margin-bottom: 15px;
  background-size: 654px 15px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 768px) {
  .index .summary__main-list ul li::before {
    width: 100%;
    background-size: contain;
  }
}
.index .summary__main-list ul li:first-of-type::before {
  background-image: url(../img/line.png);
}
.index .summary__main-list ul li:nth-of-type(2)::before {
  margin-top: 15px;
  background-image: url(../img/line.png);
}
.index .summary__main-list ul li:nth-of-type(3)::before {
  margin-top: 15px;
  background-image: url(../img/line.png);
}
.index .summary__main-list ul li:nth-of-type(3)::after {
  content: "";
  width: 654px;
  height: 15px;
  margin-top: 15px;
  background-image: url(../img/line.png);
  background-size: 654px 15px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 768px) {
  .index .summary__main-list ul li:nth-of-type(3)::after {
    width: 100%;
    background-size: contain;
  }
}
.index .summary__main-button {
  text-align: center;
}
.index .summary__main-button a {
  padding: 3.0487804878vw 12.1951219512vw;
  background-color: #eb1512;
  border-radius: 100px;
  display: inline-block;
  font-size: clamp(1rem, 4.0243902439vw, 3.3rem);
  font-weight: 700;
  color: #FFF;
}
@media print, screen and (min-width: 769px) {
  .index .summary__main-button a {
    padding: 25px 100px;
  }
}
.index .about {
  width: 100%;
  height: auto;
  padding-bottom: 12.1951219512vw;
  background-color: #80C26A;
}
@media print, screen and (min-width: 820px) {
  .index .about {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .index .about {
    padding-bottom: 3.8461538462vw;
  }
}
.index .about .inner {
  padding: 9.756097561vw 9.1463414634vw;
  background-color: #FFF;
  border-radius: 30px;
  border: 8px solid #FBF15B;
}
@media print, screen and (min-width: 820px) {
  .index .about .inner {
    padding: 80px 75px;
  }
}
@media screen and (max-width: 768px) {
  .index .about .inner {
    padding: 5.7692307692vw 5.7692307692vw;
  }
}
.index .about__title {
  position: relative;
}
.index .about__title h2 {
  max-width: 584px;
  width: 71.2195121951vw;
  height: auto;
}
.index .about__title h2 img {
  width: 100%;
  height: auto;
}
.index .about__title p {
  margin-top: 4.8780487805vw;
  font-size: clamp(1.2rem, 2.4390243902vw, 2rem);
  font-weight: 600;
  line-height: 1.7;
}
@media print, screen and (min-width: 820px) {
  .index .about__title p {
    margin-top: 40px;
  }
}
.index .about__title::after {
  content: "";
  width: 18.0487804878vw;
  height: 17.4390243902vw;
  background-image: url(../img/decor_about.png);
  background-size: 18.0487804878vw 17.4390243902vw;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media print, screen and (min-width: 820px) {
  .index .about__title::after {
    width: 148px;
    height: 143px;
    background-size: 148px 143px;
  }
}
.index .about__main::before {
  content: "";
  width: 654px;
  height: 15px;
  margin-top: 50px;
  background-image: url(../img/line.png);
  background-size: 654px 15px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 768px) {
  .index .about__main::before {
    width: 100%;
    margin-top: 5.7692307692vw;
    background-size: contain;
  }
}
.index .about__main ul {
  margin-top: 4.8780487805vw;
}
@media print, screen and (min-width: 769px) {
  .index .about__main ul {
    display: flex;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 820px) {
  .index .about__main ul {
    margin-top: 40px;
  }
}
.index .about__main ul li {
  max-width: 188px;
  width: 22.9268292683vw;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .index .about__main ul li {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .index .about__main ul li:not(:first-of-type) {
    margin-top: 3.8461538462vw;
  }
}
.index .about__main ul li .text {
  order: 2;
}
@media screen and (max-width: 768px) {
  .index .about__main ul li .text {
    margin-left: 3.8461538462vw;
  }
}
.index .about__main ul li .text h3 {
  order: 2;
  margin-top: 20px;
  font-size: clamp(1.8rem, 2.4390243902vw, 2rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .index .about__main ul li .text h3 {
    margin-top: 0;
  }
}
.index .about__main ul li .text p {
  margin-top: 1.2195121951vw;
  font-size: clamp(1.3rem, 1.7073170732vw, 1.4rem);
  font-weight: 600;
  line-height: 1.6875;
}
@media print, screen and (min-width: 820px) {
  .index .about__main ul li .text p {
    margin-top: 10px;
  }
}
.index .about__main ul li > p {
  order: 1;
}
@media screen and (max-width: 768px) {
  .index .about__main ul li > p {
    width: 28.8461538462vw;
    height: auto;
  }
}
.index .about__main ul li > p img {
  width: 100%;
  height: auto;
}
.index .event {
  width: 100%;
  height: auto;
  padding-bottom: 12.1951219512vw;
  background-color: #80C26A;
}
@media print, screen and (min-width: 769px) {
  .index .event {
    padding-bottom: 100px;
  }
}
.index .event .inner {
  padding: 9.756097561vw 9.1463414634vw;
  background-color: #FFF;
  border-radius: 30px;
  border: 8px solid #FBF15B;
}
@media print, screen and (min-width: 820px) {
  .index .event .inner {
    padding: 80px 75px;
  }
}
@media screen and (max-width: 768px) {
  .index .event .inner {
    padding: 5.7692307692vw 5.7692307692vw;
  }
}
.index .event__title h2 {
  max-width: 359px;
  width: 43.7804878049vw;
  height: auto;
}
.index .event__title h2 img {
  width: 100%;
  height: auto;
}
.index .event__title p {
  margin-top: 4.8780487805vw;
  font-size: clamp(1.2rem, 2.0731707317vw, 1.7rem);
  font-weight: 600;
  line-height: 1.7222222222;
}
@media print, screen and (min-width: 820px) {
  .index .event__title p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .index .event__title p span.block {
    display: initial;
  }
}
.index .event__main-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .event__main-title::before {
  content: "";
  width: 654px;
  height: 15px;
  margin-top: 6.0975609756vw;
  background-image: url(../img/line.png);
  background-size: 654px 15px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-title::before {
    margin-top: 50px;
  }
}
.index .event__main-title h3 {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 4.8780487805vw;
  font-size: clamp(1.4rem, 4.3902439024vw, 3.6rem);
  font-weight: 700;
  line-height: 1.6666666667;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-title h3 {
    margin-top: 40px;
  }
}
.index .event__main-title h3 span {
  font-size: clamp(1.4rem, 2.9268292683vw, 2.4rem);
  font-weight: 700;
}
.index .event__main-title p {
  width: 100%;
  height: auto;
  display: block;
  font-size: clamp(1.4rem, 2.8048780488vw, 2.3rem);
  font-weight: 700;
}
.index .event__main-contents {
  margin-top: 3.6585365854vw;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents {
    margin-top: 30px;
  }
}
.index .event__main-contents h4 {
  padding: 1.7073170732vw 3.4146341463vw;
  background-color: #017616;
  border-radius: 10px;
  display: inline-block;
  font-size: clamp(1.4rem, 2.9268292683vw, 2.4rem);
  font-weight: 700;
  color: #FFF;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents h4 {
    padding: 14px 28px;
  }
}
.index .event__main-contents .unit::before {
  content: "";
  width: 652px;
  height: 4px;
  margin-top: 4.8780487805vw;
  background-image: url(../img/border_event.png);
  background-size: 652px 4px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents .unit::before {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit::before {
    width: 100%;
    background-size: contain;
  }
}
.index .event__main-contents .unit > h5 {
  margin-top: 3.6585365854vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: clamp(1.4rem, 2.9268292683vw, 2.4rem);
  font-weight: 700;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents .unit > h5 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit > h5 {
    font-size: clamp(1.6rem, 3.0769230769vw, 1.6rem);
  }
}
.index .event__main-contents .unit > h5 span {
  width: 37px;
  height: 37px;
  margin-right: 20px;
  padding-top: 8px;
  background-size: 37px 37px;
  background-color: #017616;
  border-radius: 100%;
  display: block;
  font-size: clamp(1.4rem, 2.1951219512vw, 1.8rem);
  font-weight: 700;
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit > h5 span {
    width: 5.3846153846vw;
    height: 5.3846153846vw;
    margin-right: 1.9230769231vw;
    padding-top: 1.3461538462vw;
    background-size: 5.3846153846vw 5.3846153846vw;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
  }
}
.index .event__main-contents .unit > p {
  margin: 1.2195121951vw 0 0 7.0731707317vw;
  font-size: clamp(1rem, 2.1951219512vw, 1.8rem);
  font-weight: 600;
  line-height: 1.7777777778;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents .unit > p {
    margin: 10px 0 0 58px;
  }
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit > p {
    margin: 1.9230769231vw 0 0 8.0769230769vw;
    font-size: clamp(1.4rem, 2.6923076923vw, 1.4rem);
  }
}
.index .event__main-contents .unit > ul {
  margin: 1.2195121951vw 0 0 7.0731707317vw;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents .unit > ul {
    margin: 10px 0 0 58px;
  }
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit > ul {
    margin: 1.9230769231vw 0 0 8.0769230769vw;
  }
}
.index .event__main-contents .unit > ul > li:not(:first-of-type) {
  margin-top: 2.4390243902vw;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents .unit > ul > li:not(:first-of-type) {
    margin-top: 20px;
  }
}
.index .event__main-contents .unit > ul > li h6 {
  font-size: clamp(1rem, 2.1951219512vw, 1.8rem);
  font-weight: 600;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit > ul > li h6 {
    font-size: clamp(1.4rem, 2.6923076923vw, 1.4rem);
  }
}
.index .event__main-contents .unit > ul > li h6::before {
  content: "";
  width: 1.4634146341vw;
  height: 1.4634146341vw;
  margin-right: 1.2195121951vw;
  background-image: url(../img/point.png);
  background-repeat: no-repeat;
  background-size: 1.4634146341vw 1.4634146341vw;
  display: inline-block;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents .unit > ul > li h6::before {
    width: 12px;
    height: 12px;
    margin-right: 10px;
    background-size: 12px 12px;
  }
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit > ul > li h6::before {
    width: 2.3076923077vw;
    height: 2.3076923077vw;
    margin-right: 1.9230769231vw;
    background-size: 2.3076923077vw 2.3076923077vw;
  }
}
.index .event__main-contents .unit > ul > li p {
  padding-left: 2.6829268293vw;
  font-size: clamp(1rem, 1.9512195122vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-contents .unit > ul > li p {
    padding-left: 22px;
  }
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit > ul > li p {
    padding-left: 4.0384615385vw;
    font-size: clamp(1.3rem, 2.5vw, 1.3rem);
  }
}
@media screen and (max-width: 768px) {
  .index .event__main-contents .unit > ul > li p span.block {
    display: initial;
  }
}
.index .event__main-button {
  margin-top: 4.8780487805vw;
  text-align: center;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-button {
    margin-top: 40px;
  }
}
.index .event__main-button p {
  font-size: clamp(1.6rem, 1.9512195122vw, 1.6rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index .event__main-button p {
    font-size: clamp(1.4rem, 2.6923076923vw, 1.4rem);
  }
}
.index .event__main-button a {
  margin-top: 10px;
  padding: 3.0487804878vw 12.1951219512vw;
  background-color: #eb1512;
  border-radius: 100px;
  display: inline-block;
  font-size: clamp(1rem, 4.0243902439vw, 3.3rem);
  font-weight: 700;
  color: #FFF;
}
@media print, screen and (min-width: 820px) {
  .index .event__main-button a {
    padding: 25px 100px;
  }
}
.index .link {
  width: 100%;
  height: auto;
  padding: 12.1951219512vw 0;
  background-color: #FFF;
}
@media print, screen and (min-width: 820px) {
  .index .link {
    padding: 100px 0;
  }
}
.index .link .inner {
  max-width: 992px;
}
@media screen and (max-width: 768px) {
  .index .link .inner {
    width: 100%;
    height: auto;
    padding: 0 3.8461538462vw;
  }
}
.index .link__title h2 {
  max-width: 169px;
  width: 20.6097560976vw;
  height: auto;
  margin: auto;
}
.index .link__title h2 img {
  width: 100%;
  height: auto;
}
.index .link__list {
  margin-top: 7.9268292683vw;
}
@media print, screen and (min-width: 820px) {
  .index .link__list {
    margin-top: 65px;
  }
}
.index .link__list ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .index .link__list ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.index .link__list ul li {
  max-width: 236px;
  width: 23.7903225806vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .index .link__list ul li {
    max-width: 45vw;
    width: 45vw;
  }
}
@media screen and (max-width: 768px) {
  .index .link__list ul li:nth-of-type(n+3) {
    margin-top: 7.6923076923vw;
  }
}
.index .link__list ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .link__list ul li a p {
  margin-top: 2.4390243902vw;
  font-size: clamp(1rem, 1.9512195122vw, 1.6rem);
  font-weight: 700;
  line-height: 1.625;
  color: #0E5FA6;
  text-decoration: underline;
}
@media print, screen and (min-width: 820px) {
  .index .link__list ul li a p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .index .link__list ul li a p {
    font-size: clamp(1rem, 3.0769230769vw, 1.6rem);
  }
}
.index .link__list ul li a img {
  width: 100%;
  border: 1px solid #DADADA;
}
.index .policy {
  width: 100%;
  height: auto;
  padding: 0 0 12.1951219512vw 0;
}
@media print, screen and (min-width: 820px) {
  .index .policy {
    padding: 0 0 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .index .policy .inner {
    width: 100%;
    height: auto;
    padding: 0 3.8461538462vw;
  }
}
.index .policy__title h2 {
  font-size: clamp(1rem, 2.4390243902vw, 2rem);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index .policy__title h2 {
    font-size: clamp(1.4rem, 2.6923076923vw, 1.4rem);
    text-align: left;
  }
}
.index .policy__title a {
  margin-top: 1.4634146341vw;
  font-size: clamp(1rem, 1.9512195122vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  color: #0E5FA6;
  text-align: center;
  text-decoration: underline;
  display: block;
}
@media print, screen and (min-width: 820px) {
  .index .policy__title a {
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .index .policy__title a {
    font-size: clamp(1.4rem, 2.6923076923vw, 1.4rem);
    text-align: left;
  }
}