@charset "utf-8";
body {
  /* font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, sans-serif; */
  font-family: "Kosugi Maru", sans-serif;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
a {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.font-bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/* flex */
@media screen and (min-width: 1160px) {
  .d-lg-flex {
    display: -ms-flexbox;
    display: flex;
  }
  .d-lg-center {
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox;
    display: flex;
  }
}
.d-flex {
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.align-items-start {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-items-end {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-content-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
.d-center {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/*  */
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 15px;
}
/* Header */
#header {
  border-bottom: 2px solid #ccc;
  padding: 24px 0 20px;
}
.logo a span {
  border-radius: 15px;
  background-color: #e60039;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 30px;
  font-size: 16px;
  margin: 2px auto 0;
}
.btn {
  border-radius: 10px;
  background-color: #ff9900;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 28px;
}
.h-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hamburger {
  border: 4px solid #ccc;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
  z-index: 11;
}
.hamburger span {
  display: block;
  width: 36px;
  height: 4px;
  background-color: #ccc;
  position: absolute;
  left: 9px;
  transform: rotate(0deg);
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 1;
}
.hamburger span:nth-child(1) {
  top: 13px;
}
.hamburger span:nth-child(2) {
  top: 25px;
}
.hamburger span:nth-child(3) {
  top: 37px;
}
.menu-open .hamburger span:nth-child(1) {
  top: 25px;
  transform: rotate(135deg);
}
.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
  left: -9px;
}
.menu-open .hamburger span:nth-child(3) {
  top: 25px;
  transform: rotate(-135deg);
}
@media screen and (min-width: 768px) {
  #header,
  .h-btn {
    position: relative;
    z-index: 5;
  }
  .gnav {
    border-bottom: 2px solid #ccc;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 130px 0 60px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .menu-open .gnav {
    transform: translateY(0);
  }
  .gnav ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    max-width: 1080px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .gnav ul li:not(:last-child) {
    margin-right: 24px;
    padding-right: 24px;
    border-right: 2px solid #ccc;
  }
  .gnav a {
    font-size: 24px;
    line-height: 32px;
  }
  .logo a:hover,
  .btn:hover,
  .gnav a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1020px) {
  .gnav ul li:nth-child(3) {
    margin-right: 250px;
  }
}
@media screen and (max-width: 767px) {
  #header {
    border-bottom-width: 1px;
    padding: 15px 0;
  }
  .logo a img {
    width: 164px;
  }
  .logo a span {
    width: 140px;
    height: 20px;
    font-size: 12px;
    margin: 2px auto 0;
  }
  .btn {
    font-size: 16px;
    height: 40px;
    padding: 0 15px;
  }
  .hamburger {
    border: 3px solid #ccc;
    width: 54px;
    height: 54px;
  }
  .hamburger span {
    width: 30px;
    height: 3px;
  }
  .hamburger span:nth-child(1) {
    top: 12px;
  }
  .hamburger span:nth-child(2) {
    top: 23px;
  }
  .hamburger span:nth-child(3) {
    top: 35px;
  }
  .menu-open .hamburger span:nth-child(1) {
    top: 23px;
  }
  .menu-open .hamburger span:nth-child(3) {
    top: 23px;
  }

  .gnav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 388px;
    max-width: 90%;
    height: 100vh;
    border-left: 2px solid #ccc;
    background-color: #fff;
    z-index: 10;
    transition: right 0.5s ease-in-out;
    padding: 85px 20px 80px;
  }
  .menu-open .gnav {
    right: 0;
  }
  .gnav ul {
    margin: 0 0 30px;
  }
  .gnav li {
    border-bottom: 2px solid #ccc;
  }
  .gnav li a {
    display: block;
    font-size: 18px;
    padding: 7px;
    text-align: right;
  }
}
/* Footer */
#footer {
  border-top: 2px solid #ccc;
  font-size: 16px;
  line-height: 2;
}
.copyright {
  padding: 29px 0;
}
@media screen and (max-width: 767px) {
  #footer {
    border-top-width: 1px;
    font-size: 14px;
  }
  .copyright {
    padding: 20px 0;
  }
}
/* Main */
#main {
  min-height: calc(100vh - 250px);
}
.pagetitle {
  border-bottom: 2px solid #ccc;
  font-size: 18px;
  font-weight: 500;
  padding: 17px 0 12px;
}
.pagetitle p {
  color: #e60039;
}
.pagetitle h1 {
  font-size: 60px;
  line-height: 1.2;
  margin: 10px 0 0;
}
.contents {
  padding: 37px 0 60px;
}
.subtitle {
  font-size: 22px;
  line-height: 1.6;
  margin: 10px 0 40px;
}
.gap-30 {
  gap: 30px;
}
.contents-list img {
  border-radius: 20px;
}
.contents-list dt {
  color: #e60039;
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0 8px;
}
.contents-list img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 768px) {
  .contents-list {
    margin-right: -1px;
    font-size: 18px;
  }
  .contents-list li {
    width: calc((100% - 60px) / 3);
  }
  .contents-list a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #main {
    min-height: calc(100vh - 153px);
  }
  .pagetitle {
    border-bottom-width: 1px;
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .pagetitle h1 {
    font-size: 32px;
  }
  .subtitle {
    font-size: 17px;
    margin: 0 0 30px;
  }
  .contents-list li:not(:last-child) {
    margin: 0 0 30px;
  }
  .contents-list img {
    border-radius: 10px;
  }
  .contents-list dt {
    font-size: 20px;
  }
}
.breadcrumbs {
  margin: 0 0 35px;
  font-size: 14px;
}
.breadcrumbs a::after {
  content: ">";
  margin: 0 5px;
}
.contents h2 {
  color: #e60039;
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 20px;
}
.contents > .container > p {
  font-size: 22px;
}
.contents-list2 {
  font-size: 18px;
}
.contents-list2:not(.contents-category .contents-list2) {
  /* margin: 25px 0 0;
  padding: 25px 0 0;
	border-top: 1px solid #ccc; */
}
.contents-list2 img {
  border-radius: 20px;
}
.contents-list2 p {
  margin: 10px 0 0;
}
.contents-list2 img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.contents-category {
  margin: 50px 0 0;
}
.contents h3 {
  border-bottom: 5px solid #e60039;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 18px;
}
.contents-category > p {
  margin: 25px 0 0;
}
@media screen and (min-width: 768px) {
  .contents-list2 {
    margin-right: -1px;
  }
  .contents-list2 li {
    width: calc((100% - 60px) / 3);
  }
  .contents-list2 a:hover {
    opacity: 0.7;
  }
  .breadcrumbs a:hover,
  .contents-category > p a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .contents h2 {
    font-size: 24px;
    margin: 0 0 20px;
  }
  .contents > .container > p {
    font-size: 18px;
  }
  .contents-list2 {
    font-size: 16px;
  }
  .contents-list2:not(.contents-category .contents-list2) {
    margin: 20px 0 0;
    padding: 20px 0 0;
  }
  .contents-list2 li:not(:last-child) {
    margin: 0 12px 30px;
  }
  .contents-list2 .img {
    text-align: center;
  }
  .contents-list2 img {
    border-radius: 10px;
  }
  .contents-list2 p {
    margin: 10px 0 0;
  }
  .contents-list2 img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }
  .contents-category {
    margin: 30px 0 0;
  }
  .contents h3 {
    border-bottom: 3px solid #e60039;
    font-size: 20px;
  }
  .contents-category > p {
    margin: 20px 0 0;
  }
}
.entry-content {
  font-size: 22px;
  line-height: 2;
}
.entry-content h2 {
  border-bottom: 1px solid #ccc;
  font-size: 32px;
  line-height: 1.3;
  margin: 0 0 30px;
  padding: 0 0 10px;
}
.entry-content h3 {
  border-left: 5px solid #e60039;
  border-bottom: none;
  font-size: 24px;
  margin: 0 0 20px;
  padding: 0 0 0 15px;
}
.entry-content h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 20px;
}
.entry-content p,
.entry-content ul,
.entry-content ol {
  margin: 25px 0;
}
.entry-content ol li {
  list-style: decimal;
  margin-left: 1.2em;
}
.entry-content ul:not(.post-pagination) li {
  list-style: disc;
  margin-left: 1.2em;
}
.entry-content .post-pagination {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  margin: 60px 0 0;
  padding: 25px 0;
}
blockquote {
  border-radius: 20px;
  background-color: #eee;
  padding: 25px 30px;
  margin: 0 0 50px;
}
.entry-content blockquote p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .feature-img {
    width: 420px;
    float: right;
    margin-left: 10px;
  }
  .post-pagination a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .feature-img {
    text-align: center;
    margin: 0 0 20px;
  }
  .entry-content {
    font-size: 18px;
  }
  .entry-content h2 {
    font-size: 24px;
    margin: 0 0 25px;
    padding: 0 0 10px;
  }
  .entry-content h3 {
    border-left: 3px solid #e60039;
    font-size: 20px;
  }
  .entry-content h4 {
    font-size: 18px;
  }
  blockquote {
    border-radius: 10px;
    padding: 15px 20px;
    margin: 0 0 30px;
  }
}
