@charset "UTF-8";
/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ BASE
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
html:root {
  background-color: #66ccff;
}

body {
  -webkit-font-smoothing: antialiased;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 15px;
}

body > *:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 830px) {
  　position: relative;
  overflow-x: hidden;
}

/*====================================================================================
BreakPoint
====================================================================================*/
@media screen and (max-width: 830px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 830px) {
  .sp {
    display: none !important;
  }
}

/*====================================================================================
Font
====================================================================================*/
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre, abbr, address, cite, code, dt, dd, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure {
  word-wrap: break-word;
  color: #000;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  list-style-type: none;
}

/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ タイトル
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
.siteTitle {
  padding-bottom: 10px;
}

.siteTitle__name {
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.siteTitle__title {
  text-align: center;
}

.siteTitle__title > * {
  display: inline-block;
  position: relative;
  padding: 10px 40px;
  background-color: #fff;
  color: #0094ce;
  font-size: 26px;
  font-weight: 600;
  line-height: 1em;
}

.siteTitle__title > *:before, .siteTitle__title > *:after {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -11px;
  width: 40px;
  height: 30px;
  background-image: url("../images/ribon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.siteTitle__title > *:before {
  -webkit-transform: scale(-1, 1);
  left: -28px;
  transform: scale(-1, 1);
}

.siteTitle__title > *:after {
  right: -28px;
}

/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ リポート
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
.report {
  padding: 10px;
  border-radius: 20px;
  background-color: #fff;
}

.report__photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.report__photo:after {
  display: block;
  padding-top: 100%;
  content: "";
}

.report__image {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}

.report__date {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.report__place {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ 感謝状
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
.certificate {
  position: relative;
  margin-right: -10px;
  margin-left: -10px;
  padding: 7.5px;
  background-color: #fef8ea;
}

.certificate .title {
  display: block;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.certificate * {
  color: #231815;
}

.certificate__content {
  position: relative;
  padding: 20px 15px;
}

.certificate__content > *:not(:last-child) {
  margin-bottom: 10px;
}

.certificate__content:before, .certificate__content:after {
  display: block;
  position: absolute;
  top: 0;
  width: 9px;
  height: 100%;
  background-image: url("../images/side.svg");
  background-repeat: repeat-y;
  background-size: 9px 12px;
  content: "";
}

.certificate__content:before {
  left: 0;
}

.certificate__content:after {
  -webkit-transform: scale(-1, 1);
  right: 0;
  transform: scale(-1, 1);
}

.certificate__header, .certificate__footer {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 29px;
  background-image: url("../images/horizontal.svg");
  background-repeat: repeat-x;
  background-size: 12px 9px;
}

.certificate__header:before, .certificate__header:after, .certificate__footer:before, .certificate__footer:after {
  display: block;
  position: absolute;
  top: 0;
  width: 28.5px;
  height: 29px;
  background-image: url("../images/vertical.svg");
  background-size: 28.5px 29px;
  content: "";
}

.certificate__header:before, .certificate__footer:before {
  left: 0;
}

.certificate__header:after, .certificate__footer:after {
  -webkit-transform: scale(-1, 1);
  right: 0;
  transform: scale(-1, 1);
}

.certificate__header {
  top: 0;
  left: 0;
}

.certificate__footer {
  -webkit-transform: scale(1, -1);
  bottom: 0;
  left: 0;
  transform: scale(1, -1);
}

.certificate__group {
  text-align: right;
}

.certificate__name {
  font-size: 17px;
  font-weight: 600;
}

.certificateInfo__item {
  color: #726864;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25em;
}

.certificate__text > * {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 16px;
  font-weight: 600;
}

.certificate__text > *:not(:last-child) {
  margin-bottom: 1em;
}

.certificate__credit {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25em;
  text-align: right;
}

.certificate__decoration {
  display: block;
  width: 35%;
  margin-right: auto;
  margin-bottom: 0 !important;
  margin-left: auto;
}

/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ 
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
.comment {
  position: relative;
  margin-top: 64px;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
}

.comment:before, .comment:after {
  display: block;
  z-index: -1;
  position: absolute;
  content: "";
}

.comment:before {
  top: -53px;
  right: 40px;
  width: 120px;
  height: 120px;
  background-image: url("../images/niji.png");
  background-size: 120px;
}

.comment:after {
  -webkit-transform: translateX(-50%);
  top: -25px;
  left: 50%;
  width: 318px;
  height: 62px;
  transform: translateX(-50%);
  background-image: url("../images/kumo.png");
  background-repeat: no-repeat;
  background-size: 318px 62px;
}

.comment .group > *:not(:last-child) {
  margin-bottom: 1em;
}

.comment .bold {
  font-weight: 600;
}

.comment a {
  color: #00f;
  text-decoration: underline;
}
