@charset "UTF-8";
/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
  left: 0;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #B87595;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: calc(50% - 50px); /*50%から円の半径を引いた値*/
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a, #g-nav li p {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: left;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

nav {
  text-align: center;
}

/*ナビゲーションを横並びに*/
nav ul {
  list-style: none;
}

/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  text-decoration: none;
  color: #999;
  transition: all 0.3s;
}

nav ul li li a {
  padding: 10px 8px;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 4;
  /*形状を指定*/
  background: #9AD5E2;
  width: 180px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

nav li.has-child ul li:last-child > a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #90b9c5;
}

/*==3階層目*/
/*3階層目の位置*/
nav li.has-child ul ul {
  top: 0;
  left: 182px;
  background: #5B698B;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active {
  background: #7E87A0;
}

html {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}
a:hover {
  opacity: 0.8;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  background-color: #FFF;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}
.header__wrap--right {
  display: flex;
  flex-direction: column;
}
.header__wrap--pc {
  display: none;
}
.header__wrap--sp {
  display: block;
}
.header__logo {
  display: block;
  width: 120px;
}
.header__logo img {
  width: 100%;
}
.header__Link li {
  transition: 0.3s;
}
.header__Link li:hover {
  color: #B87595;
}
.header__Link a {
  text-decoration: none;
  color: initial;
}
.header__Link a:hover {
  color: #B87595;
}
.header__snsLink {
  display: flex;
  justify-content: end;
  -moz-column-gap: 10px;
       column-gap: 10px;
  list-style-type: none;
  padding-bottom: 6px;
}
.header__snsLink a {
  display: block;
  width: 40px;
  height: 40px;
}
.header__snsLink a img {
  width: 100%;
}
.header__Link {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  list-style-type: none;
  font-size: 1.5rem;
}

.footer {
  padding: 48px 0;
  background-color: #5B698B;
  color: white;
  text-align: center;
}
.footer__title {
  padding-bottom: 24px;
}
.footer__sitemap {
  display: none;
}
.footer__snsLink {
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: center;
  padding: 0 5% 36px;
}
.footer__snsLink li {
  list-style-type: none;
}
.footer__snsLink li a {
  display: block;
  max-width: 40px;
}
.footer__snsLink li a img {
  width: 100%;
}
.footer__link {
  padding-bottom: 48px;
}
.footer__link li {
  padding-bottom: 12px;
}

.br::before {
  content: "\a";
  white-space: pre;
}

.spbr::before {
  content: "\a";
  white-space: pre;
}

.sptbbr::before {
  content: "\a";
  white-space: pre;
}

.br::before {
  content: "\a";
  white-space: pre;
}

.spbr::before {
  content: "\a";
  white-space: pre;
}

.sptbbr::before {
  content: "\a";
  white-space: pre;
}

#follow-icon {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 10px;
}
#follow-icon a {
  display: block;
  padding: 20px 40px;
  border-radius: 40px;
  color: #fff;
  background-color: #B2A687;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .spbr::before {
    content: "";
    white-space: unset;
  }
  .tbpcbr::before {
    content: "\a";
    white-space: pre;
  }
}
@media screen and (min-width: 1025px) {
  .sptbbr::before {
    content: "";
    white-space: unset;
  }
  .pcbr::before {
    content: "\a";
    white-space: pre;
  }
  .header__wrap--pc {
    display: block;
  }
  .header__wrap--sp {
    display: none;
  }
  .header__Link li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 4;
    /*子要素を横並びに*/
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*形状を指定*/
    background: rgba(255, 255, 255, 0.7254901961);
    width: 100vw;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all 0.3s;
  }
  .header__Link li.has-child ul li {
    width: 15%;
    list-style-type: none;
  }
  .header__Link li.has-child ul li a {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: block;
    color: #000;
    box-sizing: border-box;
    transition: 0.6s;
    text-align: center;
  }
  .header__Link li.has-child ul li a:hover, .header__Link li.has-child ul li a:active {
    background-color: #B87595;
    color: #FFF;
  }
  .header__Link li.has-child:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  .header__Link li img {
    max-width: 100%;
    height: auto;
    transition: all 0.5s;
    vertical-align: bottom;
  }
  .header__Link li dt {
    overflow: hidden;
    margin: 0 0 10px 0;
  }
  .footer__title {
    display: none;
  }
  .footer__sitemap {
    display: flex;
    justify-content: space-between;
    padding: 0 24px 40px;
    max-width: 1024px;
    margin: 0 auto;
  }
  .footer__sitemap dl {
    width: 20%;
  }
  .footer__sitemap dt {
    border-bottom: 1px solid #fff;
    margin-bottom: 16px;
    padding-bottom: 4px;
    text-align: left;
  }
  .footer__sitemap dd {
    padding-bottom: 12px;
    text-align: left;
    font-size: 1.4rem;
  }
  .footer__sitemap dd a:hover {
    color: #B87595;
  }
  .footer__link {
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    -moz-column-gap: 18px;
         column-gap: 18px;
    margin: 0 auto;
    padding-bottom: 24px;
    list-style-type: none;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.eventreport {
  padding: 0 24px;
}
.eventreport h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  padding-top: 20px;
  color: #5B698B;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}
.eventreport h2:before {
  display: block;
  margin-bottom: 15px;
  font-size: 3.6rem;
  content: "EVENT REPORT";
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .eventreport h2:before {
    font-size: 6rem;
  }
}
.eventreport__description {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  margin-bottom: 20px;
}
.eventreport__title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.eventreport__title--tv {
  color: #93D1E1;
}
.eventreport__title--websns {
  color: #D6DA99;
}
.eventreport__title--event {
  color: #D4ABCE;
}
.eventreport__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.eventreport__list--item {
  box-shadow: 0px 2px 5px #ddd;
  display: flex;
  color: #5B698B;
  flex-direction: column;
  width: 100%;
}
.eventreport__list--title {
  order: 2;
  font-weight: 700;
  padding: 12px 12px 8px 12px;
  flex-grow: 1;
}
.eventreport__list--img {
  order: 1;
}
.eventreport__list--img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.eventreport__list--date {
  order: 3;
  font-size: 1.4rem;
  padding: 0px 12px 12px 12px;
}
.eventreport__list--link {
  order: 4;
  font-size: 1.4rem;
  padding: 0px 12px 12px 12px;
}
.eventreport__list--link a {
  display: block;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  background-color: #B87595;
  font-weight: bold;
  text-align: center;
}
.eventreport__list--link a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .eventreport__wrap {
    max-width: 1024px;
    margin: 0 auto;
  }
  .eventreport h2 {
    margin-bottom: 40px;
  }
  .eventreport__description {
    margin-bottom: 40px;
  }
  .eventreport__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .eventreport__list--item {
    width: 47%;
  }
}
@media screen and (min-width: 1025px) {
  .eventreport__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
  }
  .eventreport__list--item {
    width: 31%;
  }
}

.wp-pagenavi {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-bottom: 104px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  color: #B87595;
  transition: 0.3s;
}
.wp-pagenavi a.page, .wp-pagenavi a.current,
.wp-pagenavi span.page,
.wp-pagenavi span.current {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi a.current,
.wp-pagenavi span.current {
  border-radius: 50%;
  background-color: #B87595;
  color: #FFF;
}
.wp-pagenavi a.page:hover {
  background-color: #B87595;
  color: #FFF;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  width: 18px;
  height: 18px;
  background: url(/wp-content/themes/cosmo/img/eventreport/arrow_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.wp-pagenavi a.nextpostslink {
  transform: rotate(180deg);
}
.wp-pagenavi a.first,
.wp-pagenavi a.last {
  width: 18px;
  height: 18px;
  background: url(/wp-content/themes/cosmo/img/eventreport/arrow_double.svg);
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.wp-pagenavi a.last {
  transform: rotate(180deg);
}

@media screen and (min-width: 1025px) {
  .wp-pagenavi {
    padding-bottom: 140px;
  }
}/*# sourceMappingURL=eventreport.css.map */