@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

html {
  font-size: 10px !important;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  background-color: #faf5ec;
  color: #10293c;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

section {
  overflow: hidden;
}

.wrapper {
  width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (width <= 1440px) {
  .wrapper {
    width: 91.667vw;
  }
}
@media (width <= 750px) {
  .wrapper {
    width: 100vw;
  }
}

.reusable-body {
  display: flex;
  justify-content: space-between;
}
.reusable-item {
  position: relative;
  width: 29.6%;
  background: url(../img/special-project--item_back-pc.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.reusable-item-title {
  position: absolute;
  display: block;
  width: 140px;
  height: 53px;
  text-align: center;
  line-height: 53px;
  background: url(../img/item-title-back.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: #e33534;
  font-size: 24px;
  font-family: "Dela Gothic One", serif;
  font-weight: 400;
  top: -5%;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
}
.reusable-item-img {
  width: 65.07%;
  margin: 0 auto;
}

.btn {
  position: relative;
  display: block;
  background-color: #eda115;
  width: 706px;
  height: 116px;
  color: #faf5ec;
  border-radius: 86px;
  padding: 11px 0 18px 0;
  z-index: 3;
}
.btn-text {
  position: relative;
  display: block;
  width: 366px;
  margin: 0 auto;
  font-size: 34px;
  font-family: "Dela Gothic One", serif;
  font-weight: 400;
  line-height: 1.5;
}
.btn-text:before, .btn-text:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 14px solid #faf5ec;
  border-right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  -webkit-transform: translateY(-50%) translateX(0);
}
.btn-text:before {
  right: 20px;
}
.btn-text:after {
  right: 0;
}
.btn-text-small {
  display: flex;
  justify-content: center;
  position: relative;
  font-size: 18px;
  color: #faf5ec;
  margin-bottom: 8px;
}
.btn-text-small:before, .btn-text-small:after {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 17px;
}
.btn-text-small:before {
  background: url(../img/btn--arrow-left.png);
  background-size: cover;
  left: 32%;
}
.btn-text-small:after {
  background: url(../img/btn--arrow-right.png);
  background-size: cover;
  right: 33%;
}

.btn:before {
  position: absolute;
  content: "";
  width: 706px;
  height: 116px;
  background: #e33534;
  top: -12px;
  border-radius: 86px;
  z-index: -1;
}

.row-reverse {
  flex-direction: row-reverse;
}

.pc {
  display: block;
}
@media (width <= 750px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (width <= 750px) {
  .sp {
    display: block;
  }
}

@media (width <= 1440px) {
  .wrapper {
    width: 91.67%;
    padding: 0 4.167vw;
  }
  .reusable-item-title {
    width: 9.722vw;
    height: 3.681vw;
    line-height: 3.681vw;
    font-size: 1.667vw;
  }
  .btn {
    position: relative;
    display: block;
    background-color: #eda115;
    width: 49.028vw;
    height: 8.056vw;
    color: #faf5ec;
    border-radius: 5.972vw;
    padding: 0.764vw 0 1.25vw 0;
    z-index: 3;
  }
  .btn-text {
    position: relative;
    display: block;
    width: 25.417vw;
    margin: 0 auto;
    font-size: 2.361vw;
    font-family: "Dela Gothic One", serif;
    font-weight: 400;
    line-height: 1.5;
  }
  .btn-text:before, .btn-text:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 14px solid #faf5ec;
    border-right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    -webkit-transform: translateY(-50%) translateX(0);
  }
  .btn-text:before {
    right: 1.389vw;
  }
  .btn-text:after {
    right: 0;
  }
  .btn-text-small {
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 1.25vw;
    color: #faf5ec;
    margin-bottom: 0.556vw;
  }
  .btn-text-small:before, .btn-text-small:after {
    position: absolute;
    display: block;
    content: "";
    width: 1.111vw;
    height: 1.181vw;
  }
  .btn-text-small:before {
    background: url(../img/btn--arrow-left.png);
    background-size: cover;
    left: 32%;
  }
  .btn-text-small:after {
    background: url(../img/btn--arrow-right.png);
    background-size: cover;
    right: 33%;
  }
  .btn:before {
    position: absolute;
    content: "";
    width: 49.028vw;
    height: 8.056vw;
    background: #e33534;
    top: -0.833vw;
    border-radius: 5.972vw;
    z-index: -1;
  }
}
@media (width <= 750px) {
  .wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 2.667vw;
  }
  .reusable-body {
    display: block;
    justify-content: space-between;
  }
  .reusable-item {
    position: relative;
    width: 100%;
    background: url(../img/special-project--item_back-pc.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .reusable-item-title {
    position: absolute;
    display: block;
    width: 35.467vw;
    height: 13.6vw;
    text-align: center;
    line-height: 13.6vw;
    background: url(../img/item-title-back.png);
    background-size: contain;
    background-repeat: no-repeat;
    color: #e33534;
    font-size: 5.867vw;
    font-family: "Dela Gothic One", serif;
    font-weight: 400;
    top: -5%;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
  }
  .reusable-item-img {
    width: 58.133vw;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }
  .btn {
    position: relative;
    display: block;
    background-color: #eda115;
    width: 91.733vw;
    height: 21.6vw;
    color: #faf5ec;
    border-radius: 22.933vw;
    padding: 0 0 4.8vw 0;
    z-index: 3;
  }
  .btn-text {
    position: relative;
    display: block;
    width: 59.2vw;
    margin: 0 auto;
    font-size: 5.333vw;
    font-family: "Dela Gothic One", serif;
    font-weight: 400;
    line-height: 1.5;
  }
  .btn-text:before, .btn-text:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 14px solid #faf5ec;
    border-right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    -webkit-transform: translateY(-50%) translateX(0);
  }
  .btn-text:before {
    right: 5.333vw;
  }
  .btn-text:after {
    right: 0;
  }
  .btn-text-small {
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 3.733vw;
    color: #faf5ec;
    margin-bottom: 2.133vw;
  }
  .btn-text-small:before, .btn-text-small:after {
    position: absolute;
    display: block;
    content: "";
    width: 4.267vw;
    height: 4.533vw;
  }
  .btn-text-small:before {
    background: url(../img/btn--arrow-left.png);
    background-size: cover;
    left: 21%;
  }
  .btn-text-small:after {
    background: url(../img/btn--arrow-right.png);
    background-size: cover;
    right: 22%;
  }
  .btn:before {
    position: absolute;
    content: "";
    width: 91.733vw;
    height: 21.6vw;
    background: #e33534;
    top: -3.2vw;
    border-radius: 22.933vw;
    z-index: -1;
  }
  .row-reverse {
    flex-direction: inherit;
  }
}
.fv {
  position: relative;
  background: url(../img/fv-back__pc.png);
  background-size: cover;
  overflow: hidden;
}
.fv__mask {
  position: absolute;
  width: 100vw;
  height: 11.806vw;
  background: #faf5ec;
  opacity: 0.6;
  bottom: 0;
}
.fv__inner {
  width: 91.677vw !important;
  position: relative;
  height: 53.125vw;
}
.fv__title {
  position: absolute;
  display: block;
  width: 54.167vw;
  height: 22.222vw;
  top: 12.431vw;
  left: -1.597vw;
}
.fv__button--join {
  position: absolute;
  display: block;
  right: 3.056vw;
  top: 25.8vw;
  z-index: 4;
}
.fv__button--volunteer {
  position: absolute;
  display: block;
  right: -1.701vw;
  bottom: 3.125vw;
  z-index: 3;
}
.fv__date {
  position: absolute;
  display: flex;
  bottom: 7.986vw;
  left: 1.389vw;
}
.fv__date img {
  width: 52.083vw;
  height: 10.694vw;
}
.fv__date .main {
  position: relative;
  font-size: 1.458vw;
  color: #fbf5ec;
  font-weight: bold;
  margin-top: 6.597vw;
  z-index: 2;
  white-space: nowrap;
}
.fv__date .main .back {
  position: absolute;
  font-size: 1.458vw;
  font-weight: bold;
  color: #1b4567;
  -webkit-text-stroke: 0.833vw #1b4567;
  inset: 0;
  z-index: -1;
}
.fv__info {
  display: flex;
  padding-top: 44.931vw;
}
.fv__info--item-sp {
  display: none;
}
.fv__info-left p {
  font-size: 1.944vw;
  font-family: "Dela Gothic One", serif;
  font-weight: 400;
  font-style: normal;
  color: #1b4567;
}
.fv__info-label {
  background: #faf5ec;
  margin-right: 0.694vw;
  padding: 0 0.694vw;
  border-radius: 0.694vw;
}
.fv__info-address {
  display: block;
  font-size: 1.667vw;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  margin-top: 0.903vw;
  margin-left: 5.347vw;
}
.fv__info-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: 1.042vw;
  gap: 1.319vw 1.042vw;
}
.fv__info-time p {
  font-size: 1.944vw;
  font-family: "Dela Gothic One", serif;
  font-weight: 400;
  font-style: normal;
  color: #1b4567;
}
.fv__info-time-label {
  background: #faf5ec;
  margin-right: 0.972vw;
  padding: 0 0.694vw;
  border-radius: 0.694vw;
}
.fv__description {
  position: relative;
  font-size: 0.903vw;
  margin-top: 1.25vw;
  text-align: right;
  z-index: 2;
}
.fv__back-item1 {
  position: absolute;
  width: 44.792vw;
  height: 29.097vw;
  top: -2.569vw;
  left: -7.014vw;
}
.fv__back-item2 {
  position: absolute;
  width: 21.806vw;
  height: 22.361vw;
  bottom: -2.5vw;
  right: -2.5vw;
  z-index: 2;
}
.fv__back-air {
  position: absolute;
  width: 18.399vw;
  height: 7.34vw;
  top: 4.444vw;
  left: 0;
  z-index: 4;
}
.fv__back-item3 {
  position: absolute;
  width: 17.222vw;
  height: 6.875vw;
  top: 1.319vw;
  left: 4.028vw;
}
.fv__back-item4 {
  position: absolute;
  width: 11.181vw;
  height: 4.444vw;
  top: 8.333vw;
  left: -5.972vw;
}
.fv__back-item5 {
  position: absolute;
  width: 16.736vw;
  height: 6.667vw;
  bottom: 1.875vw;
  left: -6.042vw;
  z-index: -1;
}
.fv__back-item6 {
  display: none;
  position: absolute;
  width: 16.736vw;
  height: 6.667vw;
  bottom: 24.444vw;
  right: -6.736vw;
}

@media (width <= 750px) {
  .fv {
    position: relative;
    background: url(../img/fv-back__sp.png);
    background-size: cover;
    overflow: hidden;
  }
  .fv__mask {
    position: absolute;
    width: 100vw;
    height: 66.667vw;
    background: #faf5ec;
    opacity: 0.6;
    bottom: 0;
  }
  .fv__inner {
    position: relative;
    height: 174.4vw;
    width: 100% !important;
  }
  .fv__title {
    position: absolute;
    display: block;
    width: 94.933vw;
    height: 37.333vw;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
  }
  .fv__body {
    position: relative;
    z-index: 3;
  }
  .fv__button--join {
    position: fixed;
    display: block;
    width: 107.733vw;
    height: 18.667vw;
    right: 0;
    top: inherit;
    bottom: 0;
    z-index: 999;
  }
  .fv__button--volunteer {
    position: absolute;
    display: block;
    width: 49.867vw;
    height: 14.667vw;
    right: 0;
    bottom: 57px;
  }
  .fv__date {
    position: absolute;
    display: flex;
    bottom: 39vw;
    left: 0;
  }
  .fv__date img {
    width: 94.667vw;
    height: 19.733vw;
  }
  .fv__date .main {
    position: relative;
    font-size: 3.467vw;
    color: #fbf5ec;
    font-weight: bold;
    margin-top: 0;
    z-index: 2;
    white-space: nowrap;
    right: 18.667vw;
    top: 5.333vw;
  }
  .fv__date .main .back {
    position: absolute;
    font-size: 3.467vw;
    font-weight: bold;
    color: #1b4567;
    -webkit-text-stroke: 8px #1b4567;
    inset: 0;
    z-index: -1;
  }
  .fv__info {
    position: relative;
    display: block;
    padding-top: 112vw;
  }
  .fv__info--item-sp {
    position: absolute;
    display: block;
    width: 13.6vw;
    height: 11.467vw;
    bottom: 21.333vw;
    left: 2.8vw;
  }
  .fv__info-left {
    position: relative;
    margin-left: 17.333vw;
  }
  .fv__info-left p {
    font-size: 6.4vw;
    font-family: "Dela Gothic One", serif;
    font-weight: 400;
    font-style: normal;
    color: #1b4567;
    text-align: left;
    line-height: 1.27;
  }
  .fv__info-label {
    position: absolute;
    background: #faf5ec;
    margin-right: 2.667vw;
    padding: 0 2.667vw;
    border-radius: 2.667vw;
    font-size: 4.8vw;
    left: -16.533vw;
  }
  .fv__info-address {
    display: block;
    font-size: 4.267vw;
    font-family: "Noto Sans JP", serif;
    margin-top: 0;
    margin-left: 0;
  }
  .fv__info-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2.4vw;
    margin-left: 0;
    gap: 6.4vw 2.667vw;
  }
  .fv__info-time p {
    font-size: 4.8vw;
    font-family: "Dela Gothic One", serif;
    font-weight: 400;
    font-style: normal;
    color: #1b4567;
  }
  .fv__info-time-label {
    background: #faf5ec;
    margin-right: 3.733vw;
    padding: 0 1.6vw;
    border-radius: 2.667vw;
  }
  .fv__description {
    position: relative;
    text-align: left;
    font-size: 2.667vw;
    margin-top: 10.133vw;
    line-height: 1.35;
    z-index: 2;
  }
  .fv__back-item1 {
    position: absolute;
    width: 96.267vw;
    height: 62.133vw;
    top: -5.333vw;
    left: -9.6vw;
  }
  .fv__back-item2 {
    position: absolute;
    width: 80.533vw;
    height: 82.133vw;
    bottom: -19.467vw;
    right: -13.6vw;
  }
  .fv__back-air {
    position: absolute;
    width: 28.8vw;
    height: 11.467vw;
    top: 2.933vw;
    left: 25.333vw;
    z-index: 4;
  }
  .fv__back-item3 {
    position: absolute;
    width: 32.267vw;
    height: 12.8vw;
    top: 3.733vw;
    left: 2.667vw;
  }
  .fv__back-item4 {
    position: absolute;
    width: 42.933vw;
    height: 17.067vw;
    top: 32vw;
    left: -22.933vw;
  }
  .fv__back-item5 {
    position: absolute;
    width: 64.267vw;
    height: 25.6vw;
    bottom: 7.2vw;
    left: -23.2vw;
    z-index: -1;
  }
  .fv__back-item6 {
    position: absolute;
    width: 40.533vw;
    height: 16.267vw;
    bottom: 1.067vw;
    right: -3.2vw;
  }
}
/* 親コンテナ：円形ストライプ枠を conic-gradient で実現 */
.circle-badge {
  width: 16.389vw; /* 全体の直径 */
  height: 16.389vw;
  border-radius: 50%;
  /* 赤とオレンジのストライプ */
  background: url(../img/btn-back.png);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* ページ中央寄せ（必要なら） */
  box-sizing: border-box;
}

/* 内側の円（クリーム色の背景） */
.circle-badge__inner {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background-color: #fefbf5; /* ややクリーム色 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  padding: 0.694vw; /* 余白 */
}

/* 上段：参加費 無料 */
.circle-badge__fee {
  margin: 0;
  font-size: 1.458vw; /* 「参加費」部分の文字サイズ */
  font-weight: bold; /* 文字色：ダークグレー */
  color: #1b4567;
}

/* 「無料」を強調 */
.circle-badge__fee-highlight {
  font-size: 3.542vw; /* 大きめ */
  color: #e33534; /* 赤文字 */
  margin-left: 0.278vw;
  font-family: "Dela Gothic One", serif;
  font-weight: 400;
  font-style: normal;
}

/* ドットの仕切り線 */
.circle-badge__divider {
  width: 100%;
  border-bottom: 2px dotted #e32423;
  margin: 0.556vw 0;
}

/* 下段：申し込みはこちら >> */
.circle-badge__apply {
  position: relative;
  margin: 0;
  font-size: 2.014vw;
  font-family: "Dela Gothic One", serif;
  font-weight: 400;
  font-style: normal; /* 紺系 */
  text-align: left;
  color: #1b4567;
}

.circle-badge__apply:after {
  position: absolute;
  content: "";
  background: url(../img/btn-triangle.png);
  background-size: cover;
  width: 2.361vw;
  height: 1.042vw;
  right: 0.903vw;
  top: 2.569vw;
}

/* 親要素：外側のリング部分 */
.circle-volunteer {
  position: relative;
  width: 11.111vw; /* 円の直径（外側） */
  height: 11.111vw;
  border-radius: 50%;
  background-color: #1b4567; /* グレーリングの色 */
  margin: 0 auto; /* ページ中央寄せ（必要に応じて） */
  box-sizing: border-box;
}

/* 内側の円部分 */
.circle-volunteer__inner {
  position: absolute;
  top: 0.694vw; /* 外側リングとの余白 */
  left: 0.694vw;
  right: 0.694vw;
  bottom: 0.694vw;
  border-radius: 50%;
  background-color: #1b4567; /* 内側の円（濃い青系） */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  padding: 0.694vw;
}

/* 上段テキスト：「ボランティア 募集」 */
.circle-volunteer__title {
  margin: 0;
  font-size: 1.319vw;
  color: #fff;
  line-height: 1.4;
  font-weight: bold;
}

/* 「募集」だけ色を変える例 */
.circle-volunteer__highlight {
  color: #f8b400; /* オレンジ系 */
  margin-left: 0.278vw;
}

/* 点線の仕切り線 */
.circle-volunteer__divider {
  width: 100%;
  border-bottom: 2px dotted #fff;
  margin: 0.556vw 0;
}

/* 下段テキスト：「詳しくはこちら >>」 */
.circle-volunteer__desc {
  position: relative;
  margin: 0;
  font-size: 1.042vw;
  color: #fff;
  font-weight: bold;
}

.circle-volunteer__desc::after {
  position: absolute;
  content: "";
  background: url(../img/btn-traingle2.png);
  background-size: cover;
  width: 2.292vw;
  height: 0.625vw;
  bottom: -1.389vw;
  right: 28%;
}

@media (width <= 750px) {
  /* 親コンテナ：円形ストライプ枠を conic-gradient で実現 */
  .circle-badge {
    width: 16.389vw; /* 全体の直径 */
    height: 16.389vw;
    border-radius: 50%;
    /* 赤とオレンジのストライプ */
    background: url(../img/btn-back.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* ページ中央寄せ（必要なら） */
    box-sizing: border-box;
    display: none;
  }
  /* 内側の円（クリーム色の背景） */
  .circle-badge__inner {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background-color: #fefbf5; /* ややクリーム色 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    padding: 0.694vw; /* 余白 */
  }
  /* 上段：参加費 無料 */
  .circle-badge__fee {
    margin: 0;
    font-size: 1.458vw; /* 「参加費」部分の文字サイズ */
    font-weight: bold; /* 文字色：ダークグレー */
    color: #1b4567;
  }
  /* 「無料」を強調 */
  .circle-badge__fee-highlight {
    font-size: 3.542vw; /* 大きめ */
    color: #e33534; /* 赤文字 */
    margin-left: 0.278vw;
    font-family: "Dela Gothic One", serif;
    font-weight: 400;
    font-style: normal;
  }
  /* ドットの仕切り線 */
  .circle-badge__divider {
    width: 100%;
    border-bottom: 2px dotted #e32423;
    margin: 0.556vw 0;
  }
  /* 下段：申し込みはこちら >> */
  .circle-badge__apply {
    position: relative;
    margin: 0;
    font-size: 2.014vw;
    font-family: "Dela Gothic One", serif;
    font-weight: 400;
    font-style: normal; /* 紺系 */
    text-align: left;
    color: #1b4567;
  }
  .circle-badge__apply:after {
    position: absolute;
    content: "";
    background: url(../img/btn-triangle.png);
    background-size: cover;
    width: 2.361vw;
    height: 1.042vw;
    right: 0.903vw;
    top: 2.569vw;
  }
  /* 親要素：外側のリング部分 */
  .circle-volunteer {
    position: relative;
    width: 187px; /* 円の直径（外側） */
    height: 55px;
    border-radius: 5px;
    background-color: #1b4567; /* グレーリングの色 */
    margin: 0 auto; /* ページ中央寄せ（必要に応じて） */
    box-sizing: border-box;
  }
  /* 内側の円部分 */
  .circle-volunteer__inner {
    position: absolute;
    top: 0.694vw; /* 外側リングとの余白 */
    left: 0.694vw;
    right: 0.694vw;
    bottom: 0.694vw;
    border-radius: 50%;
    background-color: #1b4567; /* 内側の円（濃い青系） */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    padding: 0.694vw;
  }
  /* 上段テキスト：「ボランティア 募集」 */
  .circle-volunteer__title {
    margin: 0;
    font-size: 15px;
    color: #fff;
    line-height: 1.4;
    font-weight: bold;
  }
  /* 「募集」だけ色を変える例 */
  .circle-volunteer__highlight {
    color: #f8b400; /* オレンジ系 */
    margin-left: 0.278vw;
    font-size: 16px;
  }
  /* 点線の仕切り線 */
  .circle-volunteer__divider {
    width: 139px;
    border-bottom: 2px dotted #fff;
    margin: 0.556vw 0;
  }
  /* 下段テキスト：「詳しくはこちら >>」 */
  .circle-volunteer__desc {
    position: relative;
    margin: 0;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    padding-right: 34px;
  }
  .circle-volunteer__desc::after {
    position: absolute;
    content: "";
    background: url(../img/btn-traingle2.png);
    background-size: cover;
    width: 16px;
    height: 7px;
    bottom: 1px;
    right: 5%;
  }
}
.special-project {
  background: #faf5ec;
  padding: 100px 0 136px 0;
}
.special-project__title {
  width: 1200px;
  height: 109px;
  margin: 0 auto;
}
.special-project__body {
  margin-top: 121px;
}
.special-project__item {
  height: 490px;
}
.special-project__item-img {
  margin-top: 39px;
}
.special-project__item-text {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #faf5ec;
  text-align: center;
  z-index: 3;
  margin-top: -5px;
}
.special-project__item-description {
  margin-top: 16px;
  font-size: 15px;
  padding: 0 16px 0 18px;
  color: #10293c;
  line-height: 1.5;
}

@media (width <= 1440px) {
  .special-project {
    background: #faf5ec;
    padding: 6.944vw 0 9.444vw 0;
  }
  .special-project__title {
    width: 83.333vw;
    height: 7.569vw;
    margin: 0 auto;
  }
  .special-project__body {
    margin-top: 8.403vw;
  }
  .special-project__item {
    height: 34.028vw;
  }
  .special-project__item-img {
    margin-top: 2.708vw;
  }
  .special-project__item-subtitle {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 1.667vw;
    font-weight: bold;
    color: #faf5ec;
    text-align: center;
    z-index: 3;
    margin-top: 1.111vw;
  }
  .special-project__item-subtitle .back {
    position: absolute;
    top: 0;
    display: block;
    font-size: 1.667vw;
    color: #1b4567;
    font-weight: bold;
    -webkit-text-stroke: 0.833vw #1b4567;
    z-index: -1;
  }
  .special-project__item-text {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 1.389vw;
    font-weight: bold;
    color: #faf5ec;
    text-align: center;
    z-index: 3;
    margin-top: -5px;
  }
  .special-project__item-text .back {
    position: absolute;
    top: 0;
    display: block;
    font-size: 1.389vw;
    color: #1b4567;
    font-weight: bold;
    -webkit-text-stroke: 0.486vw #1b4567;
    z-index: -1;
  }
  .special-project__item-description {
    margin-top: 1.111vw;
    font-size: 1.042vw;
    padding: 0 1.111vw 0 1.25vw;
    color: #10293c;
  }
}
@media (width <= 750px) {
  .special-project {
    background: #faf5ec;
    padding: 10.133vw 0 3.2vw 0;
  }
  .special-project__title {
    width: 53.867vw;
    height: 21.6vw;
    margin: 0 auto;
  }
  .special-project__body {
    margin-top: 15.467vw;
  }
  .special-project__item {
    height: 122.667vw;
    margin-bottom: 13.333vw;
    margin-left: 0;
    padding-top: 10.133vw;
    border-radius: 30px;
  }
  .special-project__item-img {
    margin-top: 0;
  }
  .special-project__item-subtitle {
    margin-top: 3vw;
    font-size: 5.867vw;
    text-align: center;
    color: #faf5ec;
    font-weight: 700;
  }
  .special-project__item-subtitle .back {
    position: absolute;
    top: 0;
    display: block;
    font-size: 5.867vw;
    color: #1b4567;
    font-weight: bold;
    -webkit-text-stroke: 3.2vw #1b4567;
    z-index: -1;
  }
  .special-project__item-text {
    margin-top: 2vw;
    font-size: 4.8vw;
    text-align: center;
    color: #fff;
  }
  .special-project__item-text .back {
    position: absolute;
    top: 0;
    display: block;
    font-size: 4.8vw;
    color: #1b4567;
    font-weight: bold;
    -webkit-text-stroke: 7px #1b4567;
    z-index: -1;
  }
  .special-project__item-description {
    margin-top: 2vw;
    font-size: 4vw;
    padding: 0 4.267vw 0 4.8vw;
    color: #10293c;
    line-height: 1.44;
  }
}
.about {
  position: relative;
  background: url(../img/about__back.png);
  background-size: cover;
  padding: 26px 0 136px 0;
}
.about__inner {
  position: relative;
}
.about__title {
  width: 1200px;
  height: 109px;
  margin: 0;
}
.about__title-part--white {
  color: #eda115;
  border: 1px solid #eda115;
}
.about__title:before, .about__title:after {
  width: 228px;
  height: 12px;
  border-top: dashed 8px #eda115;
}
.about__subtitle {
  margin-top: 10px;
  color: #eda115;
}
.about__text {
  margin-top: 80px;
  text-align: center;
  font-size: 20px;
  line-height: 2.15;
}

.about:before {
  display: none;
  position: absolute;
  content: "";
  background: url(../img/about--back--obiect1.png);
  background-size: cover;
  width: 12.361vw;
  height: 4.931vw;
  top: 15.903vw;
  left: -4.792vw;
}

.about:after {
  display: none;
  position: absolute;
  content: "";
  background: url(../img/about--back--obiect2.png);
  background-size: cover;
  width: 21.806vw;
  height: 9.167vw;
  top: 29.097vw;
  right: -8.681vw;
}

@media (width <= 1440px) {
  .about {
    background: url(../img/about__back.png);
    background-size: cover;
    padding: 1.806vw 0 9.444vw 0;
  }
  .about__title {
    width: 83.333vw;
    height: 7.569vw;
    margin: 0;
  }
  .about__title-part--white {
    color: #eda115;
    border: 1px solid #eda115;
  }
  .about__title:before, .about__title:after {
    width: 15.833vw;
    height: 0.833vw;
    border-top: dashed 8px #eda115;
  }
  .about__subtitle {
    margin-top: 0.694vw;
    color: #eda115;
  }
  .about__text {
    margin-top: 5.556vw;
    text-align: center;
    font-size: 1.389vw;
    line-height: 2.15;
  }
}
@media (width <= 750px) {
  .about {
    position: relative;
    background: url(../img/about__back-sp.png);
    background-size: cover;
    padding: 1.867vw 0 16.267vw 0;
  }
  .about__title {
    width: 66.933vw;
    height: 38.667vw;
    margin: 0 auto;
  }
  .about__title:before, .about__title:after {
    display: none;
  }
  .about__subtitle {
    display: none;
    margin-top: 2.667vw;
    color: #eda115;
  }
  .about__text {
    position: relative;
    margin-top: 8.267vw;
    text-align: center;
    font-size: 4vw;
    line-height: 2.3;
    letter-spacing: 0.05em;
    z-index: 3;
  }
  .about:before {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/about-object1-sp.png);
    background-size: cover;
    width: 47.467vw;
    height: 18.933vw;
    top: 59.467vw;
    left: -18.4vw;
  }
  .about:after {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/about-object2-sp.png);
    background-size: cover;
    width: 83.733vw;
    height: 35.2vw;
    top: 90.933vw;
    right: -33.6vw;
  }
}
.tournament-details {
  background: url(../img/tourment__back-pc.png);
  background-size: 119%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0 72px 0;
}
.tournament-details__title {
  width: 1200px;
  height: 109px;
  margin: 0 auto;
}
.tournament-details__list {
  width: 960px;
  margin: 72px auto 0 auto;
  background: #faf5ec;
  border-radius: 20px;
  padding: 71px 0 103px 0;
}
.tournament-details__item {
  width: 670px;
  margin: 0 0 32px 196px;
  display: flex;
}
.tournament-details__item-label {
  display: block;
  width: 176px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  color: #fff;
  background: #1b4567;
  border-radius: 10px;
  margin-right: 60px;
  font-size: 20px;
}
.tournament-details__item-value {
  color: #10293c;
  font-size: 20px;
  line-height: 1.7;
}
.tournament-details__item-note {
  font-size: 16px;
}
.tournament-details__map-link {
  position: relative;
  display: block;
  font-size: 18px;
  padding-left: 13px;
  text-decoration: underline;
}
.tournament-details__map-link:before {
  position: absolute;
  content: "";
  background: url(../img/map-icon.png);
  background-size: cover;
  width: 11px;
  height: 16px;
  left: 0;
  top: 8px;
}
.tournament-details__btn {
  margin: 42px auto 0 auto;
}

@media (width <= 1440px) {
  .tournament-details {
    padding: 6.944vw 0 5vw 0;
  }
  .tournament-details__title {
    width: 83.333vw;
    height: 7.569vw;
    margin: 0 auto;
  }
  .tournament-details__list {
    width: 66.667vw;
    margin: 5vw auto 0 auto;
    padding: 4.931vw 0 7.153vw 0;
  }
  .tournament-details__item {
    width: 46.528vw;
    margin: 0 0 2.222vw 13.611vw;
  }
  .tournament-details__item-label {
    width: 12.222vw;
    height: 2.639vw;
    line-height: 2.639vw;
    font-size: 1.389vw;
    border-radius: 0.694vw;
    margin-right: 4.167vw;
  }
  .tournament-details__item-value {
    font-size: 1.389vw;
  }
  .tournament-details__item-note {
    font-size: 1.111vw;
  }
  .tournament-details__map-link {
    font-size: 1.25vw;
  }
  .tournament-details__btn {
    margin: 2.917vw auto 0 auto;
  }
}
@media (width <= 750px) {
  .tournament-details {
    position: relative;
    background: url(../img/tournament-details-back-sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10.933vw 0 8.533vw 0;
  }
  .tournament-details__title {
    position: relative;
    width: 66.933vw;
    height: 38.667vw;
    margin: 0 auto;
    z-index: 3;
  }
  .tournament-details__title:before, .tournament-details__title:after {
    display: none;
  }
  .tournament-details__subtitle {
    display: none;
    margin-top: 5.067vw;
    color: #1b4567;
  }
  .tournament-details__list {
    width: 100%;
    margin: 8vw auto 0 auto;
    background: #faf5ec;
    border-radius: 5.333vw;
    padding: 8vw 2.133vw;
  }
  .tournament-details__item {
    width: 100%;
    margin: 0 0 4.267vw 0;
    display: flex;
  }
  .tournament-details__item-label {
    display: block;
    min-width: 33.067vw;
    height: 8vw;
    text-align: center;
    line-height: 8vw;
    color: #fff;
    background: #1b4567;
    border-radius: 2.667vw;
    margin-right: 4.267vw;
    font-size: 4.267vw;
  }
  .tournament-details__item-value {
    color: #10293c;
    font-size: 4vw;
    line-height: 1.7;
  }
  .tournament-details__item-note {
    font-size: 3.733vw;
  }
  .tournament-details__map-link {
    display: block;
    font-size: 4.8vw;
  }
  .tournament-details__btn {
    margin: 8vw auto 0 auto;
  }
  .tournament-details:before {
    position: absolute;
    content: "";
    background: url(../img/tournament-details--object1sp.png);
    background-size: cover;
    width: 158px;
    height: 63px;
    top: 139px;
    left: -49px;
  }
  .tournament-details:after {
    position: absolute;
    content: "";
    background: url(../img/tournament-details--object2sp.png);
    background-size: cover;
    width: 158px;
    height: 63px;
    top: 50px;
    right: -30px;
  }
}
.appeal {
  background: url(../img/appeal__back-pc.png);
  background-position: center;
  background-size: 111%;
  padding-top: 62px;
  padding-bottom: 32px;
}
.appeal__title {
  margin: 0 auto;
}
.appeal__title:before, .appeal__title:after {
  width: 252px;
  height: 12px;
  border-top: dashed 8px #e22423;
}
.appeal__subtitle {
  margin-top: 27px;
  color: #e22423;
}
.appeal__body {
  width: 1200px;
  margin: 80px auto 0 auto;
  padding: 0 40px;
}
.appeal__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 72px;
}
.appeal__item-text {
  width: 537px;
}
.appeal__item-heading {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  border-bottom: 1px dashed #e22423;
  padding-bottom: 6px;
  white-space: nowrap;
}
.appeal__item-number {
  width: 44px;
  aspect-ratio: 1/1;
  margin-right: 15px;
}
.appeal__item-description {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.83;
}
.appeal__item-img {
  width: 520px;
  height: 310px;
}

@media (width <= 1440px) {
  .appeal {
    padding-top: 4.306vw;
    padding-bottom: 2.222vw;
  }
  .appeal__title:before, .appeal__title:after {
    width: 17.5vw;
    height: 0.833vw;
  }
  .appeal__subtitle {
    margin-top: 1.875vw;
  }
  .appeal__body {
    width: 83.333vw;
    margin: 5.556vw auto 0 auto;
    padding: 0 2.778vw;
  }
  .appeal__item {
    margin-bottom: 5vw;
  }
  .appeal__item-text {
    width: 37.292vw;
  }
  .appeal__item-heading {
    font-size: 2.222vw;
    padding-bottom: 0.417vw;
  }
  .appeal__item-number {
    width: 3.056vw;
    margin-right: 1.042vw;
  }
  .appeal__item-description {
    margin-top: 1.667vw;
    font-size: 1.389vw;
  }
  .appeal__item-img {
    width: 36.111vw;
    height: 21.528vw;
  }
}
@media (width <= 750px) {
  .appeal {
    position: relative;
    background: url(../img/appeal-back-sp.png);
    background-position: center;
    background-size: cover;
    padding-top: 13.333vw;
    padding-bottom: 8.533vw;
    overflow: hidden;
  }
  .appeal__inner {
    position: relative;
    z-index: 2;
  }
  .appeal__inner:before {
    position: absolute;
    background: url(../img/appeal-object3-sp.png);
    background-size: contain;
    content: "";
    width: 224px;
    height: 98px;
    top: 638px;
    left: -97px;
  }
  .appeal__inner:after {
    position: absolute;
    background: url(../img/appeal-object4-sp.png);
    background-size: cover;
    content: "";
    width: 179px;
    height: 71px;
    top: 1151px;
    right: -26px;
  }
  .appeal__title {
    width: 66.933vw;
    height: 38.667vw;
    margin: 0 auto;
  }
  .appeal__body {
    position: relative;
    width: 100%;
    margin: 39px auto 0 auto;
    padding: 0 1.333vw;
    z-index: 2;
  }
  .appeal__body:before {
    position: absolute;
    content: "";
    background: url(../img/appeal-object5-sp.png);
    background-size: cover;
    width: 224px;
    height: 94px;
    bottom: 177px;
    right: -75px;
  }
  .appeal__item {
    position: relative;
    display: block;
    justify-content: space-between;
    margin-bottom: 17.067vw;
    z-index: 2;
  }
  .appeal__item-text {
    width: 100%;
  }
  .appeal__item-heading {
    display: flex;
    align-items: flex-start;
    font-size: 6.4vw;
    border-bottom: 3px dashed #e22423;
    padding-bottom: 2.933vw;
    white-space: nowrap;
    line-height: 1.3;
  }
  .appeal__item-number {
    width: 9.6vw;
    aspect-ratio: 1/1;
    margin-right: 4vw;
  }
  .appeal__item-description {
    margin-top: 4.267vw;
    font-size: 4vw;
    line-height: 2.06;
  }
  .appeal__item-img {
    width: 92vw;
    height: 54.933vw;
  }
  .appeal__item:last-child {
    margin-bottom: 0;
  }
  .appeal:before {
    position: absolute;
    content: "";
    background: url(../img/appeal-object1-sp.png);
    background-size: cover;
    width: 158px;
    height: 63px;
    top: 196px;
    right: -42px;
  }
  .appeal:after {
    position: absolute;
    content: "";
    background: url(../img/appeal-object2-sp.png);
    background-size: cover;
    width: 236px;
    height: 94px;
    top: 451px;
    right: -118px;
  }
}
.schedule {
  background: url(../img/schedule-back-pc.png);
  background-position: center;
  background-size: 119%;
  padding-top: 100px;
  padding-bottom: 97px;
}
.schedule__title {
  margin: 0 auto;
}
.schedule__title:before, .schedule__title:after {
  width: 252px;
  height: 12px;
  border-top: dashed 8px #1b4567;
}
.schedule__subtitle {
  margin-top: 16px;
  color: #1b4567;
}
.schedule__body {
  width: 1120px;
  height: 710px;
  margin: 80px auto 0 auto;
  background: url(../img/schedule-body-back.png);
}
.schedule__item {
  display: flex;
}

@media (width <= 1440px) {
  .schedule {
    padding-top: 6.944vw;
    padding-bottom: 6.736vw;
  }
  .schedule__title:before, .schedule__title:after {
    width: 17.5vw;
    height: 0.833vw;
  }
  .schedule__subtitle {
    margin-top: 1.111vw;
  }
  .schedule__body {
    width: 77.778vw;
    height: 49.306vw;
    margin: 5.556vw auto 0 auto;
  }
}
@media (width <= 750px) {
  .schedule {
    position: relative;
    background: url(../../img/schedule-back-sp.png);
    background-position: center;
    background-size: cover;
    padding-top: 15.467vw;
    padding-bottom: 13.067vw;
  }
  .schedule__inner {
    position: relative;
    z-index: 2;
  }
  .schedule__title {
    width: 80.267vw;
    height: 38.667vw;
    margin: 0 auto;
  }
  .schedule__subtitle {
    display: none;
    margin-top: 4.267vw;
    color: #1b4567;
  }
  .schedule__body {
    width: 94.667vw;
    height: 184vw;
    margin: 8vw auto 0 auto;
    border-radius: 2.667vw;
    background: url(../img/schedule-body-back.png);
  }
  .schedule__item {
    display: flex;
  }
  .schedule:before {
    position: absolute;
    content: "";
    background: url(../img/schedule-object1-sp.png);
    background-size: cover;
    width: 158px;
    height: 63px;
    top: 149px;
    left: -49px;
  }
  .schedule::after {
    position: absolute;
    content: "";
    background: url(../img/schedule-object2-sp.png);
    background-size: cover;
    width: 158px;
    height: 63px;
    top: 50px;
    right: -30px;
  }
}
.participants {
  padding-top: 90px;
  padding-bottom: 80px;
}
.participants__title {
  width: 1200px;
  height: 116px;
  margin: 0 auto;
}
.participants__title-part--white {
  color: #e22423;
  border: 1px solid #e22423;
}
.participants__title:before, .participants__title:after {
  width: 252px;
  height: 12px;
  border-top: dashed 8px #e22423;
}
.participants__subtitle {
  margin-top: 24px;
  color: #e22423;
}
.participants__body {
  margin: 117px 0 40px 0;
}
.participants__item {
  height: 475px;
}
.participants__item-img {
  margin-top: 39px;
}
.participants__item-subtitle {
  margin-top: 15.5px;
  font-size: 24px;
  text-align: center;
  color: #faf5ec;
  font-weight: 700;
  text-shadow: 0 -5px 0 rgb(27, 69, 103);
}
.participants__item-text {
  margin-top: 40px;
  font-size: 20px;
  text-align: center;
  color: #faf5ec;
  line-height: 1.4;
  font-weight: 500;
}
.participants__item-description {
  margin-top: 16px;
  font-size: 15px;
  padding: 0 16px 0 18px;
  color: #10293c;
}
.participants__note {
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 0.1em;
}

@media (width <= 1440px) {
  .participants {
    padding-top: 6.25vw;
    padding-bottom: 5.556vw;
  }
  .participants__title {
    width: 83.333vw;
    height: 7.569vw;
    margin: 0 auto;
  }
  .participants__body {
    margin: 8.125vw 0 2.778vw 0;
  }
  .participants__item {
    height: 32.986vw;
  }
  .participants__item-img {
    margin-top: 2.708vw;
  }
  .participants__item-subtitle {
    margin-top: 1.076vw;
    font-size: 1.667vw;
  }
  .participants__item-text {
    margin-top: 2.778vw;
    font-size: 1.389vw;
  }
  .participants__item-description {
    margin-top: 1.111vw;
    font-size: 1.042vw;
    padding: 0 1.111vw 0 1.25vw;
  }
  .participants__note {
    margin-bottom: 1.528vw;
  }
}
@media (width <= 750px) {
  .participants {
    padding-top: 0;
    padding-bottom: 2.667vw;
  }
  .participants__title {
    width: 66.933vw;
    height: 38.933vw;
    margin: 0 auto;
  }
  .participants__title-part--white {
    color: #e22423;
    border: 1px solid #e22423;
  }
  .participants__title:before, .participants__title:after {
    display: none;
    width: 67.2vw;
    height: 3.2vw;
    border-top: dashed 8px #e22423;
  }
  .participants__subtitle {
    display: none;
    margin-top: 6.4vw;
    color: #e22423;
  }
  .participants__body {
    margin: 14.933vw 0 10.667vw 0;
  }
  .participants__item {
    height: 122.667vw;
    margin-bottom: 13.6vw;
    padding-top: 12vw;
    border-radius: 30px;
  }
  .participants__item-img {
    margin-top: 0;
    padding-top: 0;
  }
  .participants__item-subtitle {
    margin-top: 4.133vw;
    font-size: 6.4vw;
    text-align: center;
    color: #faf5ec;
    font-weight: 700;
    text-shadow: 0 -5px 0 rgb(27, 69, 103);
  }
  .participants__item-text {
    margin-top: 10.667vw;
    font-size: 5.333vw;
    text-align: center;
    color: #faf5ec;
    line-height: 1.4;
  }
  .participants__item-description {
    margin-top: 4.267vw;
    font-size: 4vw;
    padding: 0 4.267vw 0 4.8vw;
    color: #10293c;
  }
  .participants__note {
    text-align: left;
    margin-bottom: 5.867vw;
    letter-spacing: 0.1em;
    line-height: 1.35;
  }
}
.news {
  padding-top: 55px;
  overflow: hidden;
}
.news__title {
  width: 1200px;
  height: 115px;
  margin: 0 auto;
}
.news__title-part--white {
  color: #eda115;
  border: 1px solid #eda115;
}
.news__title:before, .news__title:after {
  width: 372px;
  height: 12px;
  border-top: dashed 8px #eda115;
}
.news__subtitle {
  margin-top: 10px;
  color: #eda115;
}

.post-slider {
  margin-top: 86px;
}
.post-slider__track {
  display: flex;
}
.post-slider__dots {
  margin-top: 106px;
}

.post {
  width: 480px;
  background: #fff;
  border-radius: 20px;
  margin-right: 40px;
  padding-bottom: 40px;
}
.post__featured-image {
  width: 100%;
  margin-bottom: 15px;
}
.post__meta {
  display: flex;
  align-items: center;
  margin: 0 38px 13px 38px;
}
.post__date {
  font-size: 14px;
  margin-right: 9px;
}
.post__tag {
  font-size: 12px;
  color: #faf5ec;
  background: #1b4567;
  border-radius: 21px;
  padding: 8px 18.5px;
}
.post__title {
  font-size: 18px;
  margin: 0 38px;
  padding-bottom: 4px;
  line-height: 1.5;
  border-bottom: 6px dotted #eda114;
}
.post__content {
  margin: 15px 38px 0 38px;
}
.post__content p {
  font-size: 15px;
  line-height: 1.84;
}

@media (width <= 1440px) {
  .news {
    padding-top: 3.819vw;
  }
  .news__title {
    width: 83.333vw;
    height: 7.569vw;
    margin: 0 auto;
  }
  .post-slider {
    margin-top: 5.972vw;
  }
  .post-slider__track {
    display: flex;
  }
  .post-slider__dots {
    margin-top: 7.361vw;
  }
  .post {
    width: 33.333vw;
    background: #fff;
    border-radius: 1.389vw;
    margin-right: 2.778vw;
  }
  .post__featured-image {
    width: 100%;
    margin-bottom: 1.042vw;
  }
  .post__meta {
    display: flex;
    align-items: center;
    margin: 0 2.639vw 0.903vw 2.639vw;
  }
  .post__date {
    font-size: 0.972vw;
    margin-right: 0.625vw;
  }
  .post__tag {
    font-size: 0.833vw;
    color: #faf5ec;
    background: #1b4567;
    border-radius: 1.458vw;
    padding: 0.556vw 1.285vw;
  }
  .post__title {
    font-size: 1.25vw;
    margin: 0 2.639vw;
    padding-bottom: 0.278vw;
    line-height: 1.5;
    border-bottom: 6px dotted #eda114;
  }
  .post__content {
    margin: 1.042vw 2.639vw 0 2.639vw;
  }
  .post__content p {
    font-size: 1.042vw;
    line-height: 1.47;
  }
}
@media (width <= 750px) {
  .news {
    padding-top: 14.667vw;
  }
  .news__title {
    width: 54.133vw;
    height: 22.4vw;
    margin: 0 auto;
  }
  .news__title-part--white {
    color: #eda115;
    border: 1px solid #eda115;
  }
  .news__title:before, .news__title:after {
    display: none;
    width: 99.2vw;
    height: 3.2vw;
    border-top: dashed 8px #eda115;
  }
  .news__subtitle {
    display: none;
    margin-top: 2.667vw;
    color: #eda115;
  }
  .post-slider {
    margin-top: 22.933vw;
  }
  .post-slider__track {
    display: flex;
  }
  .post-slider__dots {
    margin-top: 28.267vw;
  }
  .post {
    width: 89.333vw;
    background: #fff;
    border-radius: 5.333vw;
    margin-right: 0;
    margin: 0 auto;
  }
  .post__featured-image {
    width: 100%;
    margin-bottom: 4vw;
  }
  .post__meta {
    display: flex;
    align-items: center;
    margin: 0 10.133vw 2.4vw 4vw;
  }
  .post__date {
    font-size: 3.733vw;
    margin-right: 2.4vw;
  }
  .post__tag {
    font-size: 3.2vw;
    color: #faf5ec;
    background: #1b4567;
    border-radius: 5.6vw;
    padding: 2.133vw 4.933vw;
  }
  .post__title {
    font-size: 4.8vw;
    margin: 0 4vw;
    padding-bottom: 1.067vw;
    line-height: 1.5;
    border-bottom: 3px dotted #eda114;
    letter-spacing: -0.01em;
  }
  .post__content {
    margin: 4vw 10.133vw 0 4vw;
  }
  .post__content p {
    font-size: 4vw;
    line-height: 1.47;
  }
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 100%;
  margin: 72px auto 0 auto;
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  height: 50px;
  width: 50px;
  border-radius: 50%;
  z-index: 3;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  background: url(../../img/slider-btn-left.png);
  background-size: cover;
  left: -1.5%;
}

.slick-next {
  /*次へ矢印の位置と形状*/
  background: url(../../img/slider-btn-right.png);
  background-size: cover;
  right: -1.5%;
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 86px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 15px; /*ドットボタンのサイズ*/
  height: 15px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #eda115; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #fff; /*ドットボタンの現在地表示の色*/
}

.cp_box1 {
  position: relative;
}

.cp_box1 input {
  display: none;
}

/*開くためのボタンとテキストを隠すグラデーションの設定*/
.cp_box1 label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}

/* 開いた時にグラデーションを消す */
.cp_box1 input:checked + label {
  background: inherit;
}

.cp_box1 .cp_container {
  overflow: hidden;
  height: 110px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}

/*続きをよむボタン*/
.cp_box1 label:after,
.cp_box1 label::before {
  content: "";
  position: absolute;
  line-height: 2.5rem;
}

.cp_box1 label:after {
  z-index: 2;
  bottom: -15px;
  width: auto;
  content: "続きをよむ";
  color: #10293c;
  right: 7px;
  border-bottom: 1px solid black;
}

/*閉じるボタン*/
.cp_box1 input:checked + label:after {
  content: "閉じる";
}

.cp_box1 input:checked + label:before {
  left: calc(50% - 2.5em);
  transform: scale(1, -1);
}

.cp_box1 input:checked ~ .cp_container {
  height: auto;
  transition: all 0.5s;
}

@media (width <= 1440px) {
  /*==================================================
  スライダーのためのcss
  ===================================*/
  .slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 5vw auto 0 auto;
  }
  .slider img {
    width: 100%; /*スライダー内の画像を横幅100%に*/
    height: auto;
  }
  /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  .slider .slick-slide {
    margin: 0 0.694vw;
  }
  /*矢印の設定*/
  /*戻る、次へ矢印の位置*/
  .slick-prev,
  .slick-next {
    position: absolute; /*絶対配置にする*/
    top: 42%;
    cursor: pointer; /*マウスカーソルを指マークに*/
    outline: none; /*クリックをしたら出てくる枠線を消す*/
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: 3;
  }
  .slick-prev {
    /*戻る矢印の位置と形状*/
    background: url(../img/slider-btn-left.png);
    background-size: cover;
    left: -1.5%;
  }
  .slick-next {
    /*次へ矢印の位置と形状*/
    background: url(../img/slider-btn-right.png);
    background-size: cover;
    right: -1.5%;
  }
  /*ドットナビゲーションの設定*/
  .slick-dots {
    text-align: center;
    margin: 80px 0 0 0;
  }
  .slick-dots li {
    display: inline-block;
    margin: 0 0.347vw;
  }
  .slick-dots button {
    color: transparent;
    outline: none;
    width: 12px; /*ドットボタンのサイズ*/
    height: 12px; /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #eda115; /*ドットボタンの色*/
  }
  .slick-dots .slick-active button {
    background: #fff; /*ドットボタンの現在地表示の色*/
    border: 1px solid #eda115;
  }
  .cp_box1 {
    position: relative;
  }
  .cp_box1 input {
    display: none;
  }
  /*開くためのボタンとテキストを隠すグラデーションの設定*/
  .cp_box1 label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    bottom: -0.694vw;
    width: 100%;
    height: 9.722vw; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
  }
  /* 開いた時にグラデーションを消す */
  .cp_box1 input:checked + label {
    background: inherit;
  }
  .cp_box1 .cp_container {
    overflow: hidden;
    height: 90px; /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
  }
  /*続きをよむボタン*/
  .cp_box1 label:after,
  .cp_box1 label::before {
    content: "";
    position: absolute;
    line-height: 2.5rem;
  }
  .cp_box1 label:after {
    z-index: 2;
    bottom: -25px;
    width: auto;
    content: "続きをよむ";
    color: #10293c;
    right: 0.486vw;
    border-bottom: 1px solid black;
  }
  /*閉じるボタン*/
  .cp_box1 input:checked + label:after {
    content: "閉じる";
  }
  .cp_box1 input:checked + label:before {
    left: calc(50% - 2.5em);
    transform: scale(1, -1);
  }
  .cp_box1 input:checked ~ .cp_container {
    height: auto;
    transition: all 0.5s;
  }
}
@media (width <= 750px) {
  /*==================================================
  スライダーのためのcss
  ===================================*/
  .slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 8vw auto 0 auto;
  }
  .slider img {
    width: 100%; /*スライダー内の画像を横幅100%に*/
    height: auto;
  }
  /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  .slider .slick-slide {
    margin: 0 2.667vw;
  }
  /*矢印の設定*/
  /*戻る、次へ矢印の位置*/
  .slick-prev,
  .slick-next {
    position: absolute; /*絶対配置にする*/
    top: 32%;
    cursor: pointer; /*マウスカーソルを指マークに*/
    outline: none; /*クリックをしたら出てくる枠線を消す*/
    height: 13.333vw;
    width: 13.333vw;
    border-radius: 50%;
    z-index: 3;
  }
  .slick-prev {
    /*戻る矢印の位置と形状*/
    background: url(../img/slider-btn-left.png);
    background-size: cover;
    left: -1.5%;
  }
  .slick-next {
    /*次へ矢印の位置と形状*/
    background: url(.../img/slider-btn-right.png);
    background-size: cover;
    right: -1.5%;
  }
  /*ドットナビゲーションの設定*/
  .slick-dots {
    text-align: center;
    margin: 22.933vw 0 0 0;
  }
  .slick-dots li {
    display: inline-block;
    margin: 0 1.333vw;
  }
  .slick-dots button {
    color: transparent;
    outline: none;
    width: 4vw; /*ドットボタンのサイズ*/
    height: 4vw; /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #eda115; /*ドットボタンの色*/
  }
  .slick-dots .slick-active button {
    background: #fff; /*ドットボタンの現在地表示の色*/
  }
  .cp_box1 {
    position: relative;
  }
  .cp_box1 input {
    display: none;
  }
  /*開くためのボタンとテキストを隠すグラデーションの設定*/
  .cp_box1 label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    bottom: -2.667vw;
    width: 100%;
    height: 37.333vw; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
  }
  /* 開いた時にグラデーションを消す */
  .cp_box1 input:checked + label {
    background: inherit;
  }
  .cp_box1 .cp_container {
    overflow: hidden;
    height: 29.333vw; /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
  }
  /*続きをよむボタン*/
  .cp_box1 label:after,
  .cp_box1 label::before {
    content: "";
    position: absolute;
    line-height: 2.5rem;
  }
  .cp_box1 label:after {
    z-index: 2;
    bottom: -4vw;
    width: auto;
    content: "続きをよむ";
    color: #10293c;
    right: 1.867vw;
    border-bottom: 1px solid black;
  }
  /*閉じるボタン*/
  .cp_box1 input:checked + label:after {
    content: "閉じる";
  }
  .cp_box1 input:checked + label:before {
    left: calc(50% - 2.5em);
    transform: scale(1, -1);
  }
  .cp_box1 input:checked ~ .cp_container {
    height: auto;
    transition: all 0.5s;
  }
}
.qa {
  padding-top: 184px;
}
.qa__title {
  width: 1200px;
  height: 110px;
  margin: 0 auto;
}
.qa__title-part--white {
  color: #1b4568;
  border: 1px solid #1b4568;
}
.qa__title:before, .qa__title:after {
  width: 292px;
  height: 12px;
  border-top: dashed 8px #1b4568;
}
.qa__subtitle {
  margin-top: 18px;
  color: #1b4568;
}
.qa__accordion {
  display: block;
  width: 1120px;
  margin: 83px auto 0 auto;
}
.qa__accordion-item {
  border-radius: 12px;
  margin-bottom: 30px;
}
.qa__accordion-title {
  position: relative;
  padding: 28px 0 28px 93px;
  font-size: 18px;
  background: #1b4568;
  color: #faf5ec;
  border-radius: 12px 12px 0 0;
}
.qa__accordion-label {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  color: #1b4568;
  top: 15px;
  left: 30px;
}
.qa__accordion-content {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #1b4568;
  border-radius: 0 0 12px 12px;
}
.qa__accordion-content p {
  font-size: 18px;
  line-height: 1.5;
  padding: 0 58px 0 13px;
}
.qa__accordion-content a {
   position: relative;
   color: #707070;
  }

.qa__accordion-content a:before {
position: absolute;
    content: "";
    background-color: #707070;
    width: 100%;
    height: 1px;
    bottom: 2px;
  }

.qa__accordion-answer-label {
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  background: #1b4568;
  border-radius: 50%;
  color: #fff;
  margin-left: 30px;
  text-align: center;
  margin: 25px 0 35px 30px;
}

@media (width <= 1440px) {
  .qa {
    padding-top: 12.778vw;
  }
  .qa__title {
    width: 83.333vw;
    height: 7.569vw;
    margin: 0 auto;
  }
  .qa__accordion {
    width: 77.778vw;
    margin: 5.764vw auto 0 auto;
  }
  .qa__accordion-item {
    border-radius: 0.833vw;
    margin-bottom: 2.083vw;
  }
  .qa__accordion-title {
    padding: 1.944vw 0 1.944vw 6.458vw;
    font-size: 1.25vw;
    border-radius: 0.833vw 0.833vw 0 0;
  }
  .qa__accordion-label {
    width: 3.472vw;
    height: 3.472vw;
    font-size: 1.667vw;
    line-height: 3.472vw;
    top: 1.042vw;
    left: 2.083vw;
  }
  .qa__accordion-content {
    border-radius: 0 0 0.833vw 0.833vw;
  }
  .qa__accordion-content p {
    font-size: 1.25vw;
    padding: 0 4.028vw 0 0.903vw;
  }

  .qa__accordion-answer-label {
    min-width: 3.472vw;
    height: 3.472vw;
    line-height: 3.472vw;
    font-size: 1.667vw;
    margin-left: 2.083vw;
    margin: 1.736vw 0 2.431vw 2.083vw;
  }
}
@media (width <= 750px) {
  .qa {
    padding-top: 20.8vw;
    /*アイコンの＋と×*/
    /*　closeというクラスがついたら形状変化　*/
    /*アコーディオンで現れるエリア*/
  }
  .qa__title {
    width: 53.6vw;
    height: 38.667vw;
    margin: 0 auto;
  }
  .qa__accordion {
    display: block;
    width: 100%;
    margin: 24px auto 0 auto;
  }
  .qa__accordion-item {
    border-radius: 3.2vw;
    margin-bottom: 2.667vw;
  }
  .qa__accordion-title {
    position: relative;
    padding: 4vw 12vw 7.467vw 13.333vw;
    font-size: 4vw;
    background: #1b4568;
    color: #faf5ec;
    border-radius: 3.2vw;
    line-height: 1.3;
  }
  .qa__accordion-title .back-radius {
    position: absolute;
    width: 8vw;
    height: 8vw;
    background: #eda114;
    border-radius: 13.333vw;
    top: 4vw;
    right: 2.667vw;
  }
  .qa__accordion-label {
    display: block;
    position: absolute;
    width: 8vw;
    height: 8vw;
    font-size: 4vw;
    line-height: 8vw;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: #1b4568;
    top: 4vw;
    left: 2.667vw;
  }
  .qa__accordion-content {
    position: relative;
    display: flex;
    align-items: inherit;
    background: #ffffff;
    border: 2px solid #1b4568;
    border-radius: 0 0 3.2vw 3.2vw;
    top: -10px;
  }
  .qa__accordion-content p {
    font-size: 4vw;
    line-height: 1.5;
    padding: 4vw 5.333vw 6.933vw 13.333vw;
    letter-spacing: -0.01em;
  }
  .qa__accordion-answer-label {
    position: absolute;
    min-width: 8vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 4vw;
    background: #1b4568;
    border-radius: 50%;
    color: #fff;
    margin-left: 8vw;
    text-align: center;
    margin: 4vw 0 0 2.667vw;
  }
  .qa .title {
    position: relative; /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    transition: all 0.5s ease;
  }
  .qa .title::before,
  .qa .title::after {
    position: absolute;
    content: "";
    width: 4vw;
    height: 0.533vw;
    background-color: #333;
  }
  .qa .title::before {
    top: 7.733vw;
    right: 4.533vw;
    transform: rotate(0deg);
    z-index: 2;
  }
  .qa .title::after {
    top: 7.733vw;
    right: 4.533vw;
    transform: rotate(90deg);
  }
  .qa .title.close::after {
    display: none;
  }
  .qa .box {
    display: none; /*はじめは非表示*/
  }
}
.sponsor {
  position: relative;
  margin-top: 89px;
  padding-top: 15px;
  padding-bottom: 132px;
}
.sponsor__btn {
  margin: 0 auto 112px auto;
}

.sponsor:before {
  position: absolute;
  content: "";
  background: url(../img/sponser--object1.png);
  background-size: cover;
  width: 316px;
  height: 126px;
  top: 0;
  left: -62px;
}

.sponsor:after {
  position: absolute;
  content: "";
  background: url(../img/sponser--object2.png);
  background-size: cover;
  width: 283px;
  height: 114px;
  top: 171px;
  right: -62px;
}

.slider1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.slider1 li {
  width: 275px;
  height: 107px;
  background: #ffffff;
  margin-right: 34px;
}

.slider2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.slider2 li {
  width: 275px;
  height: 107px;
  background: #ffffff;
  margin-right: 34px;
}

.slick-list {
  overflow: visible;
}

@media (width <= 1440px) {
  .sponsor {
    margin-top: 6.181vw;
    padding-bottom: 9.167vw;
  }
  .sponsor__btn {
    margin: 0 auto 112px auto;
  }
  .slider-area {
    margin-top: 5.556vw;
    height: 16.597vw;
  }
  .slider-area .slider {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.736vw;
  }
  .slider-area .slider li {
    width: 19.097vw;
    height: 7.431vw;
    background: #ffffff;
  }
}
@media (width <= 750px) {
  .sponsor {
    margin-top: 14.4vw;
    padding-bottom: 14.133vw;
  }
  .sponsor__btn {
    margin: 0 auto 12.8vw auto;
  }
  .slider1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.2vw;
    max-height: 16.533vw;
  }
  .slider1 li {
    width: 43.2vw !important;
    height: 16.533vw;
    background: #ffffff;
    margin-right: 5.6vw;
  }
  .slider2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.2vw;
    max-height: 16.533vw;
  }
  .slider2 li {
    width: 43.2vw !important;
    height: 16.533vw;
    background: #ffffff;
    margin-right: 5.6vw;
  }
}
.footer {
  background: #10293c;
}
.footer__inner {
  display: flex;
  align-items: center;
  padding-left: 44px;
}
.footer__logo {
  width: 143px;
  height: 97px;
  margin: 7px 0 16px 0;
}
.footer__text {
  font-size: 28px;
  color: #faf5ec;
  line-height: 1.24;
}
.footer small {
  display: block;
  width: 100vw;
  background: #1b4568;
  color: #faf5ec;
  text-align: center;
  padding: 12px 0;
}

@media (width <= 1440px) {
  .footer {
    background: #10293c;
  }
  .footer__inner {
    display: flex;
    align-items: center;
    padding-left: 3.056vw;
  }
  .footer__logo {
    width: 9.931vw;
    height: 6.736vw;
    margin: 0.486vw 0 1.111vw 0;
  }
  .footer__text {
    font-size: 1.944vw;
    color: #faf5ec;
    line-height: 1.24;
  }
  .footer small {
    display: block;
    width: 100vw;
    background: #1b4568;
    color: #faf5ec;
    text-align: center;
    padding: 0.833vw 0;
  }
}
@media (width <= 750px) {
  .footer {
    background: #10293c;
  }
  .footer__inner {
    display: flex;
    align-items: center;
    padding-left: 0;
  }
  .footer__logo {
    width: 26.933vw;
    height: 18.133vw;
    margin: 3.2vw 0 4.267vw 0;
  }
  .footer__text {
    font-size: 4.8vw;
    color: #faf5ec;
    line-height: 1.24;
  }
  .footer small {
    display: block;
    width: 100vw;
    background: #1b4568;
    color: #faf5ec;
    text-align: center;
    padding: 3.2vw 0;
  }
}

.cp_container p a{
position: relative;
z-index: 3;
}

/*# sourceMappingURL=style.css.map */
