/*-----------------------
import.scss
-----------------------*/
/*mediaquery*/
/*-----------------------
01.reset
-----------------------*/
/*reset --Don't use global reset!--*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: normal;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
table caption,
table th {
  font-weight: 300;
}
table td {
  font-weight: 200;
}

q::before,
q::after,
blockquote::before,
blockquote::after {
  content: "";
  content: none;
}

a {
  display: inline-block;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

ul {
  list-style: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

input, button, textarea, select {
  margin: 0;
  border: none;
  outline: none;
  letter-spacing: 0.1em;
}

img.cover,
video.cover {
  object-fit: cover;
}

h1 {
  font-weight: normal;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  margin: 0;
}

:placeholder-shown {
  color: #8a8a8a;
}

::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

*:focus {
  outline: none;
}

.pc {
  display: block;
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.pc-tab {
  display: block;
}
@media (max-width: 750px) {
  .pc-tab {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .pc-tab {
    display: block;
  }
}

.tab {
  display: none;
}
@media (max-width: 750px) {
  .tab {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

.tab-sp {
  display: none;
}
@media (max-width: 750px) {
  .tab-sp {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab-sp {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 750px) {
  .sp {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.flex {
  display: flex;
}

.table {
  display: table;
}

/*-----------------------
style.scss
-----------------------*/
.record {
  padding-bottom: 150px;
  font-family: Open Sans;
}
.record .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.record .inner p {
  text-align: left;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .record .inner {
    width: 94%;
  }
}
@media (max-width: 750px) {
  .record .inner {
    width: 94%;
  }
}
.record a:hover {
  opacity: 0.7;
}
.record h1 {
  margin: 70px auto 0;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  position: relative;
}
@media (max-width: 750px) {
  .record h1 {
    font-size: 30px;
    margin-top: 35px;
  }
}
.record h1::before, .record h1:after {
  content: "";
  position: absolute;
  top: -45%;
}
@media (max-width: 750px) {
  .record h1::before, .record h1:after {
    top: 85%;
  }
}
.record h1:before {
  background: url(../img/h1-deco01.svg) no-repeat;
  width: 282px;
  height: 105px;
  left: 10%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .record h1:before {
    left: 2%;
  }
}
@media (max-width: 750px) {
  .record h1:before {
    left: 2%;
    width: 141px;
    height: 53px;
    background-size: 100%;
  }
}
.record h1:after {
  background: url(../img/h1-deco02.svg) no-repeat;
  width: 282px;
  height: 105px;
  right: 10%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .record h1:after {
    right: 2%;
  }
}
@media (max-width: 750px) {
  .record h1:after {
    right: 2%;
    width: 141px;
    height: 53px;
    background-size: 100%;
  }
}
.record h1 span {
  position: relative;
  padding-bottom: 20px;
}
.record h1 span::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 5px;
  background: #C32C28;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.record h2 {
  display: inline-block;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
  padding: 15px 30px;
  text-shadow: 0px 0px 7px rgba(255, 255, 255, 0.5);
  background: #b99c5e;
  box-shadow: 10px 10px 0px 0px #3e3e3e;
}
.record h2 span {
  margin-left: 20px;
  font-size: 20px;
  font-weight: inherit;
}
@media (max-width: 750px) {
  .record h2 span {
    display: block;
    margin-left: 0;
  }
}
.record section#history {
  margin: 105px auto 0;
}
.record section#history > .inner {
  max-width: 1100px;
}
.record section#history .box {
  margin: 57px auto 0;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .record section#history .box {
    flex-direction: column;
    gap: 30px;
  }
}
.record section#history .box .table {
  width: 64%;
  max-width: 631px;
}
@media (max-width: 750px) {
  .record section#history .box .table {
    width: 100%;
    max-width: inherit;
  }
}
.record section#history .box .table dl:last-of-type dd {
  padding-bottom: 0;
}
.record section#history .box .table dl dt,
.record section#history .box .table dl dd {
  color: #fff;
  text-align: left;
  font-size: 16px;
}
.record section#history .box .table dl dt {
  font-weight: bold;
  border-right: 2px solid #fff;
  width: 20%;
  max-width: 100px;
  position: relative;
  padding: 10px 0;
  display: flex;
  gap: 5px;
}
.record section#history .box .table dl dt::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  top: 14px;
  right: -6.6px;
}
.record section#history .box .table dl dd {
  font-weight: 100;
  border-left: none;
  width: 80%;
  padding: 10px 0 45px 50px;
}
.record section#history .box .img {
  width: calc(100% - 63.1%);
  max-width: 373px;
}
@media (max-width: 750px) {
  .record section#history .box .img {
    width: 100%;
    max-width: inherit;
  }
}
.record section#achievements {
  margin: 130px auto 0;
}
@media (max-width: 750px) {
  .record section#achievements {
    margin: 65px auto 0;
  }
}
.record section#achievements ul.achievements-list {
  margin: 47px auto 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .record section#achievements ul.achievements-list {
    gap: 20px 10px;
  }
}
@media (max-width: 750px) {
  .record section#achievements ul.achievements-list {
    gap: 20px 12px;
  }
}
.record section#achievements ul.achievements-list li.achievement-item {
  width: calc(100% / 3);
  max-width: 320px;
  margin-left: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .record section#achievements ul.achievements-list li.achievement-item {
    width: 32%;
  }
}
@media (max-width: 750px) {
  .record section#achievements ul.achievements-list li.achievement-item {
    width: 48%;
  }
}
.record section#achievements ul.achievements-list li.achievement-item .achievement-thumbnail img {
  width: 100%;
  min-height: 197px;
  object-fit: cover;
  display: block;
}
@media (max-width: 750px) {
  .record section#achievements ul.achievements-list li.achievement-item .achievement-thumbnail img {
    min-height: 176px;
  }
}
.record section#achievements ul.achievements-list li.achievement-item .achievement-meta {
  text-align: left;
  margin: 10px auto 0;
}
.record section#achievements ul.achievements-list li.achievement-item .achievement-meta .achievement-date {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.record section#achievements ul.achievements-list li.achievement-item .achievement-meta .achievement-title {
  margin-top: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  min-height: 48px;
}
.record section#achievements dl {
  margin: 50px auto 0;
}
.record section#achievements dl dt {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 25px;
  text-align: left;
  padding: 20px;
  border: 2px solid #b99c5e;
  color: #b99c5e;
  margin-bottom: 30px;
  position: relative;
}
.record section#achievements dl dt:after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #b99c5e;
  border-right: 2px solid #b99c5e;
  right: 2%;
  top: 33%;
  transform: rotate(45deg);
  width: 15px;
  height: 15px;
  transition: 0.1s;
}
.record section#achievements dl dt.open {
  display: block;
  background: #b99c5e;
  color: #000;
}
.record section#achievements dl dt.open::after {
  border-color: #000;
  transform: rotate(225deg);
  top: 45%;
}
.record section#achievements dl dt:hover {
  cursor: pointer;
  background: #b99c5e;
  color: #000;
}
.record section#achievements dl dt:hover::after {
  border-color: #000;
}
.record section#achievements dl dd {
  width: 100%;
  display: none;
  padding: 0;
  border-left: none;
  margin: 0 auto 30px;
}
.record section#achievements dl dd > ul.achievements-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .record section#achievements dl dd > ul.achievements-list {
    gap: 20px 10px;
  }
}
@media (max-width: 750px) {
  .record section#achievements dl dd > ul.achievements-list {
    gap: 20px 12px;
  }
}
.record section#achievements dl dd > ul.achievements-list li.achievement-item {
  width: calc(100% / 3);
  max-width: 320px;
  margin-left: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .record section#achievements dl dd > ul.achievements-list li.achievement-item {
    width: 32%;
  }
}
@media (max-width: 750px) {
  .record section#achievements dl dd > ul.achievements-list li.achievement-item {
    width: 48%;
  }
}
.record section#achievements dl dd > ul.achievements-list li.achievement-item .achievement-thumbnail img {
  width: 100%;
  min-height: 197px;
  object-fit: cover;
  display: block;
  height: 100%;
}
@media (max-width: 750px) {
  .record section#achievements dl dd > ul.achievements-list li.achievement-item .achievement-thumbnail img {
    min-height: 176px;
  }
}
.record section#achievements dl dd > ul.achievements-list li.achievement-item .achievement-meta {
  text-align: left;
  margin: 10px auto 0;
}
.record section#achievements dl dd > ul.achievements-list li.achievement-item .achievement-meta .achievement-date {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.record section#achievements dl dd > ul.achievements-list li.achievement-item .achievement-meta .achievement-title {
  margin-top: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  min-height: 48px;
}
