@charset "UTF-8";
/* ==========================================================================
	color
========================================================================== */
/* 価格 */
/* テキスト */
/* リンク */
/* BackGround */
/* borderCommon */
/* borderFrom */
/* ==========================================================================
	mixin
========================================================================== */
/* ==========================================================================
	goTop
========================================================================== */
.c-goTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background-color: #0082c3;
  z-index: 100;
  transition: opacity 0.3s;
  cursor: pointer;
}
.c-goTop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  font-size: 3.6rem;
  font-weight: 700;
  content: "\f106";
  color: white;
}
.c-goTop:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

@media (max-width: 768px) {
  .c-goTop {
    bottom: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
  }
  .c-goTop::before {
    font-size: 3.2rem;
  }
}
/* ==========================================================================
    linkArrow
========================================================================== */
.c-linkArrow__box {
  box-sizing: border-box;
  position: relative;
  font-size: 1.4rem;
}
.c-linkArrow__box > .c-linkArrow {
  position: absolute;
  top: 20px;
  right: 20px;
}

.c-linkArrow {
  transition: color 0.3s;
  font-weight: bold;
  text-decoration: none;
}
.c-linkArrow:hover {
  text-decoration: underline;
}
.c-linkArrow::after, .c-linkArrow::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0082c3;
  transition: color 0.3s;
}
.c-linkArrow--internal:before {
  content: "\f107";
  margin-right: 6px;
}
.c-linkArrow--outside:before {
  content: "\f105";
  margin-right: 6px;
}
.c-linkArrow--external:before {
  content: "\f35d";
  margin-right: 6px;
}

@media (max-width: 768px) {
  .c-linkArrow__box {
    padding-bottom: 100px;
  }
  .c-linkArrow__box > .c-linkArrow {
    box-sizing: border-box;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: calc(100% - 30px);
    max-width: 340px;
    margin: auto;
    padding: 15px;
    text-align: center;
    border: 1px solid #0082c3;
    border-radius: 4px;
  }
  .c-linkArrow__box > .c-linkArrow:hover {
    color: white;
    background-color: #0082c3;
  }
  .c-linkArrow__box > .c-linkArrow:hover::after {
    color: white;
  }
  .c-linkArrow--outside--spNo::before {
    display: none;
  }
  .c-linkArrow--outside--spNo:hover {
    text-decoration: none;
  }
}
/* ==========================================================================
	c-scroll
========================================================================== */
@media (max-width: 768px) {
  .c-scroll {
    width: calc(100% + 20px);
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .c-scroll::-webkit-scrollbar {
    height: 10px;
  }
  .c-scroll::-webkit-scrollbar-track {
    background-color: #eaedef;
  }
  .c-scroll::-webkit-scrollbar-thumb {
    background-color: #0082c3;
    border: 3px solid #eaedef;
    border-radius: 10px;
  }
  .c-scroll > .c-boxList, .c-scroll > .c-newsNavi, .c-scroll > .p-search__subNavi, .c-scroll > .c-scroll__tableWrap {
    box-sizing: border-box;
    padding-right: 20px;
    overflow: hidden;
  }
  .c-scroll > .c-boxList {
    width: 800px;
  }
  .c-scroll > .c-newsNavi {
    width: 100%;
    min-width: 720px;
  }
  .c-scroll > .p-search__subNavi {
    width: 100%;
    min-width: 500px;
  }
  .c-scroll > .c-scroll__tableWrap {
    width: 100%;
    min-width: 800px;
  }
}
@media (max-width: 480px) {
  .c-scroll > .c-boxList {
    width: 650px;
  }
  .c-scroll > .c-newsNavi {
    min-width: 720px;
  }
}
@media (max-width: 320px) {
  .c-scroll > .c-boxList {
    width: 560px;
  }
}
/* ==========================================================================
	warning
========================================================================== */
.c-warning {
  box-sizing: border-box;
  background-color: white;
  color: #373d3f;
  border: 4px solid #ffce33;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 1.4rem;
}

.c-warning__ttl {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-weight: bold;
  width: 115px;
  color: #cc3838;
}
.c-warning__ttl::before {
  font-family: "Font Awesome 5 Free";
  content: "\f05a";
  margin-right: 10px;
  font-size: 3.2rem;
  font-weight: 900;
  display: block;
}

.c-warning__content {
  width: calc(100% - 140px);
  margin-left: 28px;
}
.c-warning__content > li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-warning__content > li + li {
  margin-top: 10px;
}
.c-warning__content em {
  font-weight: bold;
}
.c-warning__content .c-linkArrow {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .c-warning {
    display: block;
    padding-top: 2px;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
  .c-warning__ttl {
    width: 100%;
    margin-bottom: 6px;
    justify-content: center;
  }
  .c-warning__content {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .c-warning__ttl::before {
    font-size: 2.2rem;
  }
}
/* ==========================================================================
	heading
========================================================================== */
.c-heading {
  position: relative;
}
.c-heading--main {
  display: flex;
  align-items: center;
  font-size: 2rem;
  padding-left: 10px;
  font-weight: bold;
}
.c-heading--main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background-color: #0082c3;
}
.c-heading--main small {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: initial;
}
.c-heading--main em {
  font-weight: bold;
}
.c-heading--sub {
  font-size: 1.6rem;
  padding-bottom: 0;
}
.c-heading--sub::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #373d3f;
}
.c-heading--minimum {
  display: flex;
  font-size: 1.6rem;
}
.c-heading--minimum::before {
  display: flex;
  align-self: center;
  content: "";
  width: 4px;
  height: 14px;
  background-color: #91a1a6;
  margin-right: 6px;
}
.c-heading--side {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .c-heading--main {
    display: block;
  }
  .c-heading--main small {
    display: block;
    margin-left: 0;
  }
}
/* ==========================================================================
	text
========================================================================== */
.c-text {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #373d3f;
  letter-spacing: 0.05em;
}
.c-text--lineUp {
  line-height: 1.6;
}
.c-text--provide {
  font-size: 1.2rem;
  display: flex;
  color: #91a1a6;
}
.c-text--provide span {
  display: block;
}
.c-text--provide span:first-of-type {
  margin-right: 8px;
}
.c-text--category {
  font-size: 1.2rem;
  color: #91a1a6;
}
.c-text--date {
  font-weight: bold;
  margin-right: 8px;
}
.c-text--owner::after {
  display: inline-block;
  margin-left: 8px;
  content: "|";
}
.c-text--small {
  font-size: 1.4rem;
}
.c-text--notation {
  font-size: 1.4rem;
  color: #91a1a6;
}
.c-text--notes {
  font-size: 1.2rem;
  color: #91a1a6;
}
.c-text--comment {
  color: #91a1a6;
}
.c-text--disclaimer {
  margin-top: 4rem;
  color: #373d3f;
}

.c-text__form--caution {
  font-size: 1.4rem;
  background-color: #eff6fa;
  padding: 15px 10px;
  margin-top: 35px;
}

.c-text--thumbnail {
  position: relative;
  height: 39.2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.c-text--thumbnail:before {
  position: absolute;
  background: white;
  content: "…";
  top: 19.6px;
  right: 0;
}
.c-text--thumbnail:after {
  position: absolute;
  background: white;
  content: "";
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .c-text__form--caution {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .c-text__form--caution {
    margin-top: 20px;
  }
}
/* ==========================================================================
	adsence
========================================================================== */
.c-adsence {
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
.c-adsence img {
  width: 100%;
  height: auto;
}
.c-adsence--main {
  max-width: 640px;
  margin: 20px auto;
  text-align: center;
}
.c-adsence--sp {
  max-width: 320px;
  margin: 10px auto;
}
.c-adsence--side {
  max-width: 300px;
  margin: 0 auto 20px;
}

/* ==========================================================================
    banner
========================================================================== */
.c-banner {
  box-sizing: border-box;
  width: 300px;
  margin: 20px auto;
}
.c-banner > li img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.c-banner > li + li {
  margin-top: 20px;
}
.c-banner a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* ==========================================================================
	breadcrumb
========================================================================== */
.c-breadcrumb {
  margin: 0 0 14px;
  font-size: 1.2rem;
}
.c-breadcrumb ul li {
  margin-right: 10px;
  display: inline;
  width: 100%;
}
.c-breadcrumb ul li:not(:last-of-type)::after {
  color: #91a1a6;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.c-breadcrumb--double {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .c-breadcrumb {
    box-sizing: border-box;
    margin: 40px 0 0;
    padding: 10px 20px;
    background-color: white;
    border-top: 7px solid #0082c3;
  }
  .c-breadcrumb + .c-breadcrumb {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
@media (max-width: 320px) {
  .c-breadcrumb {
    font-size: 1rem;
  }
}
/* ==========================================================================
	parallelList
========================================================================== */
.c-parallelList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.c-parallelList li {
  box-sizing: border-box;
}

.c-parallelList--four {
  justify-content: space-between;
}
.c-parallelList--four li {
  position: relative;
  width: calc((100% - 60px) / 4);
}
.c-parallelList--four li .c-btn {
  width: auto;
  min-width: 100%;
}
.c-parallelList--four li .c-btn--internal::before {
  position: absolute;
  left: 12px;
}

.c-parallelList--three {
  justify-content: space-between;
  font-size: 1.4rem;
}
.c-parallelList--three li {
  width: calc((100% - 40px) / 3);
}
.c-parallelList--three li a {
  padding: 4px 0;
  text-align: left;
  display: block;
  transition: color 0.3s;
}

/*IE用*/
*::-ms-backdrop,
.c-parallelList--three li {
  width: 31.5%;
}

/*Edge*/
@supports (-ms-ime-align: auto) {
  .c-parallelList--three li {
    width: 31.5%;
  }
}
.c-parallelList--random {
  justify-content: start;
}
.c-parallelList--random li {
  margin: 0 20px 20px 0;
}

@media (max-width: 768px) {
  .c-parallelList--four li {
    width: calc((100% - 20px) / 2);
    margin-top: 20px;
  }
  .c-parallelList--four li:nth-of-type(-n+2) {
    margin-top: 0px;
  }
  .c-parallelList--three li a:hover {
    text-decoration: none;
  }
}
@media (max-width: 480px) {
  .c-parallelList--four li {
    position: relative;
  }
  .c-parallelList--four li .c-btn--internal {
    text-align: center;
  }
  .c-parallelList--three li {
    width: calc((100% - 20px) / 2);
    margin-top: 10px;
  }
  .c-parallelList--three li a {
    padding: 0;
  }
  .c-parallelList--three li a:hover {
    text-decoration: none;
  }
  .c-parallelList--three li:nth-of-type(-n+2) {
    margin-top: 0px;
  }
  .c-parallelList--random {
    flex-direction: column;
  }
  .c-parallelList--random li {
    margin: 0 0 10px 0;
    position: relative;
  }
  .c-parallelList--random li:last-of-type {
    margin-bottom: 20px;
  }
}
/* ==========================================================================
	label
========================================================================== */
.c-label {
  font-weight: bold;
  color: white;
  background-color: #ffce33;
  vertical-align: bottom !important;
}
.c-label--new {
  display: inline-block;
  padding: 1px 5px;
  font-size: 1.2rem;
  border-radius: 11px;
}
.c-label--category {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.4rem;
  border-radius: 10px;
}
.c-label--place {
  display: block;
  text-align: center;
  padding: 1px 0;
  font-size: 1.4rem;
  color: white;
}
.c-label--place--first {
  background-color: #af9423;
}
.c-label--place--second {
  background-color: #9b9a94;
}
.c-label--place--third {
  background-color: #8b6143;
}
.c-label--place--etc {
  background-color: #cccccc;
}
.c-label--info {
  position: relative;
}
.c-label--info::after {
  position: absolute;
  top: 50%;
  right: -3em;
  transform: translateY(-50%);
  content: "\f12a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.4rem;
  text-align: center;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  color: #373d3f;
  background-color: #ffce33;
}

/* ==========================================================================
	lineList
========================================================================== */
.c-lineList > li {
  font-size: 1.4rem;
}
.c-lineList > li > a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
}
.c-lineList > li > a:hover {
  text-decoration: underline;
}
.c-lineList > li + li {
  border-top: #eaedef 1px solid;
}
.c-lineList > li h3 {
  font-weight: normal;
}
.c-lineList > li:last-child {
  border-bottom: #eaedef 1px solid;
}

.c-lineList__info {
  margin-top: 20px;
}
.c-lineList__info--ttl {
  font-weight: bold !important;
  font-size: 1.6rem;
}
.c-lineList__info--text {
  margin-top: 10px;
}
.c-lineList__info--label {
  display: flex;
  flex-direction: row;
  text-align: right;
  margin: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.c-lineList__info--label .c-label--category {
  margin-right: 10px;
  font-weight: bold;
}
.c-lineList__info--label .c-text--date {
  font-weight: initial;
}

@media (max-width: 480px) {
  .c-lineList--data > li > a {
    display: block;
  }
  .c-lineList__info--ttl {
    font-size: 1.4rem;
  }
}
/* ==========================================================================
	pager
========================================================================== */
.c-pager__next--active a, .c-pager__next, .c-pager__prev--active a, .c-pager__prev, .c-pager ul li a {
  box-sizing: border-box;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #0082c3;
  width: 36px;
  height: 40px;
  border: 1px solid #0082c3;
  text-decoration: none;
  transition: background-color 0.3s;
}

.c-pager {
  margin-top: 40px;
  color: #0082c3;
  font-weight: bold;
}
.c-pager ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.c-pager ul li {
  color: #707c80;
  margin: 0 2px;
}
.c-pager ul li a {
  text-decoration: none;
}
.c-pager ul li a:hover {
  background-color: #0082c3;
  color: white;
}
.c-pager ul .current a {
  background-color: #0082c3;
  color: white;
}
.c-pager__prev {
  color: #707c80;
  border: 1px solid #707c80 !important;
}
.c-pager__prev:after {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #707c80;
  transition: background-color 0.3s;
  top: 20px;
  right: 20px;
}
.c-pager__prev--active a {
  border: 1px solid #0082c3 !important;
}
.c-pager__prev--active a:after {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0082c3;
  transition: background-color 0.3s;
  top: 20px;
  right: 20px;
}
.c-pager__prev--active a:hover {
  background-color: #0082c3;
}
.c-pager__prev--active a:hover::after {
  color: white;
}
.c-pager__next {
  color: #707c80;
  border: 1px solid #707c80 !important;
}
.c-pager__next:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #707c80;
  transition: background-color 0.3s;
  top: 20px;
  right: 20px;
}
.c-pager__next--active a {
  border: 1px solid #0082c3 !important;
}
.c-pager__next--active a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0082c3;
  top: 20px;
  right: 20px;
}
.c-pager__next--active a:hover {
  background-color: #0082c3;
}
.c-pager__next--active a:hover::after {
  color: white;
}

@media (max-width: 768px) {
  .c-pager {
    margin-top: 20px;
  }
  .c-pager ul li {
    margin: 0;
  }
  .c-pager ul li span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 40px;
  }
  .c-pager ul li a {
    border: none;
  }
  .c-pager ul li:nth-of-type(2) {
    display: flex;
    align-items: center;
  }
  .c-pager ul li:nth-of-type(2)::after {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 40px;
    content: "/";
  }
  .c-pager .c-pager__prev,
  .c-pager .c-pager__prev--active {
    margin-right: 20px;
  }
  .c-pager .c-pager__next,
  .c-pager .c-pager__next--active {
    margin-left: 20px;
  }
}
/* ==========================================================================
	margin
========================================================================== */
.u-mt--0 {
  margin-top: 0 !important;
}
.u-mt--10 {
  margin-top: 10px;
}
.u-mt--20 {
  margin-top: 20px;
}
.u-mt--30 {
  margin-top: 30px;
}
.u-mt--40 {
  margin-top: 40px;
}
.u-mt--50 {
  margin-top: 50px;
}

.u-mb--0 {
  margin-bottom: 0 !important;
}
.u-mb--10 {
  margin-bottom: 10px;
}
.u-mb--20 {
  margin-bottom: 20px;
}
.u-mb--30 {
  margin-bottom: 30px;
}
.u-mb--40 {
  margin-bottom: 40px;
}
.u-mb--50 {
  margin-bottom: 50px;
}

.u-ml--0 {
  margin-left: 0;
}
.u-ml--10 {
  margin-left: 10px;
}
.u-ml--20 {
  margin-left: 20px;
}
.u-ml--30 {
  margin-left: 30px;
}
.u-ml--40 {
  margin-left: 40px;
}
.u-ml--50 {
  margin-left: 50px;
}

.u-mr--0 {
  margin-right: 0;
}
.u-mr--10 {
  margin-right: 10px;
}
.u-mr--20 {
  margin-right: 20px;
}
.u-mr--30 {
  margin-right: 30px;
}
.u-mr--40 {
  margin-right: 40px;
}
.u-mr--50 {
  margin-right: 50px;
}

/* ==========================================================================
	padding
========================================================================== */
.u-pt--0 {
  padding-top: 0;
}
.u-pt--10 {
  padding-top: 10px;
}
.u-pt--20 {
  padding-top: 20px;
}
.u-pt--30 {
  padding-top: 30px;
}
.u-pt--40 {
  padding-top: 40px;
}
.u-pt--50 {
  padding-top: 50px;
}

.u-pb--0 {
  padding-bottom: 0;
}
.u-pb--10 {
  padding-bottom: 10px;
}
.u-pb--20 {
  padding-bottom: 20px;
}
.u-pb--30 {
  padding-bottom: 30px;
}
.u-pb--40 {
  padding-bottom: 40px;
}
.u-pb--50 {
  padding-bottom: 50px;
}

.u-pl--0 {
  padding-left: 0;
}
.u-pl--10 {
  padding-left: 10px;
}
.u-pl--16 {
  padding-left: 16px;
}
.u-pl--20 {
  padding-left: 20px;
}
.u-pl--24 {
  padding-left: 24px;
}
.u-pl--30 {
  padding-left: 30px;
}
.u-pl--40 {
  padding-left: 40px;
}
.u-pl--50 {
  padding-left: 50px;
}

.u-pr--0 {
  padding-right: 0;
}
.u-pr--10 {
  padding-right: 10px;
}
.u-pr--20 {
  padding-right: 20px;
}
.u-pr--30 {
  padding-right: 30px;
}
.u-pr--40 {
  padding-right: 40px;
}
.u-pr--50 {
  padding-right: 50px;
}

.u-pa--0 {
  padding: 0;
}
.u-pa--10 {
  padding: 10px;
}
.u-pa--20 {
  padding: 20px;
}
.u-pa--30 {
  padding: 30px;
}
.u-pa--40 {
  padding: 40px;
}

/* ==========================================================================
   align
========================================================================== */
.u-ta--c {
  text-align: center !important;
}
.u-ta--l {
  text-align: left !important;
}
.u-ta--r {
  text-align: right;
}

/* ==========================================================================
	infoNew
========================================================================== */
.p-infoNew .c-lineList > li {
  font-size: 1.2rem;
}
.p-infoNew .c-lineList > li > a {
  text-decoration: none;
}
.p-infoNew .c-lineList > li > a .c-text--date {
  color: #373d3f;
}
.p-infoNew .c-lineList > li > a:hover {
  text-decoration: none;
}
.p-infoNew .c-lineList > li > a:hover dd, .p-infoNew .c-lineList > li > a:hover div {
  text-decoration: underline;
}
.p-infoNew p {
  font-size: 1.2rem;
  text-align: right;
}
.p-infoNew dd {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}

.p-infoNew__permanent p {
  text-align: left;
}

/* ==========================================================================
	info
========================================================================== */
.p-info__list.c-lineList > li {
  padding: 10px 0;
}
.p-info__list.c-lineList > li > a {
  padding: 0;
  text-decoration: none;
}
.p-info__list.c-lineList > li > a h3 {
  color: #373d3f;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.p-info__list.c-lineList > li > a:hover .c-lineList__info--text {
  text-decoration: underline;
}
.p-info__list .c-flex {
  margin-top: 10px;
  justify-content: flex-start;
  text-decoration: none !important;
}
.p-info__list .c-text {
  color: #0082c3;
}
.p-info__list .c-text + .c-text {
  margin-left: 10px;
}
.p-info__list .c-text--date,
.p-info__list .c-text--time,
.p-info__list .c-text--category {
  margin: 0;
  font-size: 1.2rem;
  font-weight: normal;
}
.p-info__list .c-text--date,
.p-info__list .c-text--time {
  color: #91a1a6;
}
.p-info__list .c-text--category {
  color: #0082c3;
}

.p-info__article .c-heading--main {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.p-info__article .c-flex {
  margin: 10px 0;
  justify-content: flex-start;
  text-decoration: none !important;
}
.p-info__article .c-text + .c-text {
  margin-left: 10px;
}
.p-info__article .c-text--date,
.p-info__article .c-text--time,
.p-info__article .c-text--category {
  margin: 0;
  font-size: 1.4rem;
  font-weight: normal;
}
.p-info__article .c-text--date,
.p-info__article .c-text--time {
  color: #91a1a6;
}
.p-info__article .c-text--category {
  color: #0082c3;
}
.p-info__article .p-info__image {
  box-sizing: border-box;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-info__side .c-lineList > li {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .p-info__article .p-info__image {
    margin: 20px auto;
  }
}
.p-info__attachment-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.p-info__attachment-item {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-info__attachment-item {
    width: 50%;
    padding-right: 16px;
  }
}

.p-info__attachment-link {
  display: inline-block;
  position: relative;
  padding-left: 2em;
}
.p-info__attachment-link::before {
  position: absolute;
  content: "\f15b";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* //////////////////////////////////////////////////////////////////////////
   Component
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Utility
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Project
////////////////////////////////////////////////////////////////////////// */
/*# sourceMappingURL=../maps/info/detail.css.map */