@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@500&family=Zen+Kaku+Gothic+Antique:wght@500;700&display=swap');

.wrap {
	margin: 0 auto;
	max-width: 1280px;
	width: 100%;
}
.contents {
	padding: 0 100px;
	position: relative;
	margin: 0 auto;
	width: 100%;
}
@media screen and (max-width: 1280px) {
  .contents {
		padding: 0 40px;
	}
}
@media screen and (max-width: 768px) {
  .contents {
		padding: 0 30px;
	}
}

.en {
	font-family: "Akshar", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}


/* --------------------
   box9
-------------------- */
#box9 .main {
  padding-top: 120px;
}

#box9 .main .list {
  margin: 60px auto 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#box9 .main .list > a {
  width: calc(50% - 10px);
}

#box9 .main .item {
  box-shadow: 0 4px 0 0 #E8DDC6;
  width: 100%;
  border-radius: 20px;
  background: #fff;
}

#box9 .main .photo img {
  width: 100%;
  height: 340px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
}

#box9 .main .info {
  gap: 20px;
  justify-content: flex-start;
  padding: 10px 18px 0 28px;
  display: flex;
}

#box9 .main h1 {
	padding-bottom: 20px;
	position: relative;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
}
#box9 .main h1::after {
	content: "";
	width: 50px;
	height: 3px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: #EB6120;
}

#box9 .main .label {
  padding: 0 20px 10px 0;
  border-right: 1px solid #E8DDC6;
	flex-shrink: 0;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}

#box9 .main .label p {
  font-weight: 700;
}

#box9 .main .year {
  font-size: 16px;
  line-height: 16px;
}

#box9 .main .month {
  font-size: 18px;
  line-height: 16px;
}

#box9 .main .day {
  font-size: 34px;
  line-height: 34px;
}

#box9 .main h2 {
  padding-top: 4px;
  max-height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  letter-spacing: normal;
  font-size: 16px;
  font-weight: 700;
}

.pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625em;
  margin-top: 80px;
}

.pagenation li {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  font-size: 20px;
  background-color: #fff;
  position: relative;
}

.pagenation li a {
  display: flex;
  line-height: 1;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  color: #EB6120;
  position: relative;
}

.pagenation .prev a:before,
.pagenation .next a:before {
  content: "";
  transform: rotate(-45deg);
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
}

.pagenation .next a:before {
  border-right: solid 1px #EB6120;
  border-bottom: solid 1px #EB6120;
}

.pagenation .prev a:before {
  border-left: solid 1px #EB6120;
  border-top: solid 1px #EB6120;
}

.pagenation li.current {
  background-color: #EB6120;
  color: #fff;
}

.pagenation li.none {
  border: none;
  background: none;
}

#side {
  margin-top: 60px;
  display: flex;
  padding-bottom: 160px;
  gap: 60px;
}

#side .sidebox {
  width: 100%;
}

#side .ttl {
  font-size: 24px;
  margin: 60px auto 20px;
  padding-top: 40px;
  color: #EB6120;
  border-top: 2px solid #E8DDC6;
}

#side a {
	font-size: 16px;
  line-height: 36px;
}

#side .sidebox a::before {
  content: "-";
  display: inline-block;
  color: #E8DDC6;
  margin-right: 5px;
  font-size: 16px;
}

/* --------------------
   SP
-------------------- */
@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1080px) {}

@media screen and (max-width: 768px) {
  #box9 .main .list > a {
    width: 100%;
  }

  .pagenation {
    margin-top: 40px;
  }

  #box9 .main {
    padding-top: 60px;
  }

  #box9 .main .list {
    margin-top: 30px;
  }

  #side .ttl {
    margin-top: 20px;
  }

  #side {
    gap: 30px;
    flex-wrap: wrap;
  }

  #box9 .main h1 {
		padding-bottom: 10px;
    font-size: 28px;
  }

  #box9 .main .item {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #box9 .main .photo img {
    height: 200px;
  }
}

@media screen and (min-width: 768px) {
  .pagenation li a:hover {
    background-color: #E8DDC6;
    opacity: 1;
  }
}

@media screen and (min-width: 480px) {
	a {
		transition: .25s all;
	}
  a:hover {
		opacity: 0.6;
	}
}