@charset "UTF-8";
/* =====================
  common setting
===================== */
.article {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: min(5.5555555556vw, 80px) min(4.1666666667vw, 60px);
}
@media screen and (max-width: 767px) {
  .article {
    flex-wrap: wrap;
    gap: 50px 0;
  }
}
.article li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .article li {
    width: 100%;
  }
}
.article__thumbnail {
  overflow: hidden;
  border-radius: 20px 0 0 0;
  transition: all 0.25s ease 0s;
  margin-bottom: min(1.6666666667vw, 24px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .article__thumbnail {
    margin-bottom: 16px;
  }
}
.article__thumbnail span {
  height: 190px;
  display: block;
}
@media screen and (max-width: 767px) {
  .article__thumbnail span {
    height: 175px;
  }
}
.article__thumbnail span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .article__head {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
  }
}
.article__head .cat {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #007BC3;
}
.article__head .time {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #999999;
}
.article__title {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .article__title {
    margin-top: 6px;
  }
}
.article__title p {
  display: inline;
  color: #333333;
  background-image: linear-gradient(90deg, #333333, #333333);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.6s;
  transition: background-size 0.6s;
  font-weight: 700;
  line-height: 180%;
}
.article a:hover .article__title p {
  background-size: 100% 1px;
}
.article a:hover span {
  transform: scale(1.05, 1.05);
  transition: all 1s ease 0s;
}

.pagination {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  .pagination {
    gap: 0 10px;
  }
}
.pagination li {
  color: #007BC3;
}
.pagination li.dot {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .pagination li.dot {
    line-height: 1.8;
  }
}
.pagination li a {
  font-size: 20px;
  color: #007BC3;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .pagination li a {
    font-size: 16px;
  }
}
.pagination .current a {
  font-weight: 700;
}
.pagination .prev {
  margin-top: 3px;
}
.pagination .prev .viewmore-small__link .arrow {
  transform: rotate(180deg);
  margin-right: 10px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .pagination .prev .viewmore-small__link .arrow {
    right: -4px;
  }
}
.pagination .prev .viewmore-small__link .viewmore-small__circle {
  right: -17px;
}
.pagination .prev .viewmore-small__link p {
  left: 2px;
}
@media screen and (max-width: 767px) {
  .pagination .next {
    position: relative;
    left: -15px;
  }
}

/* =====================
  news setting
===================== */
.newsList {
  margin: min(13.8888888889vw, 200px) 0;
}
@media screen and (max-width: 767px) {
  .newsList {
    margin-top: 115px;
  }
}
.newsList__wrap {
  margin: min(8.3333333333vw, 120px) 0 min(11.1111111111vw, 160px);
}
@media screen and (max-width: 767px) {
  .newsList__wrap {
    margin: 60px 0;
  }
}
.newsList__head {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .newsList__head {
    flex-wrap: wrap;
  }
}
.newsList__head h2 {
  font-size: 30px;
  color: #007BC3;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .newsList__head h2 {
    width: 100%;
    margin-bottom: 40px;
    font-size: 20px;
  }
}
.newsList__nav {
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 767px) {
  .newsList__nav {
    width: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 0 15px;
  }
  .newsList__nav li {
    width: calc(50% - 7px);
  }
}
.newsList__nav .nav-year {
  margin-right: 20px;
}
.newsList__nav--select {
  width: 240px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .newsList__nav--select {
    width: 100%;
  }
}
.newsList__nav--select::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: solid 1px #007BC3;
  border-right: solid 1px #007BC3;
  position: absolute;
  top: 6px;
  right: 11px;
  transform: rotate(135deg);
}
.newsList__nav--select select {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #DCDCDC;
  font-weight: 400;
  color: #007BC3;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  padding-left: 10px;
  padding-bottom: 5px;
  background: #ffffff;
  border-radius: 0;
}
.newsList__nav--select select:focus-visible {
  outline: none;
}

/* =====================
  blog setting
===================== */
.blogList {
  margin: min(13.8888888889vw, 200px) 0;
}
@media screen and (max-width: 767px) {
  .blogList {
    margin-top: 115px;
  }
}
.blogList__head {
  width: min(77.7777777778vw, 1120px);
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .blogList__head {
    width: 100%;
    flex-wrap: wrap;
  }
}
.blogList__head span {
  font-size: 16px;
  font-weight: 600;
}
.blogList__head h2 {
  position: relative;
  top: 25px;
  z-index: 1;
  font-weight: 600;
  font-size: 60px;
  color: #007BC3;
}
@media screen and (max-width: 767px) {
  .blogList__head h2 {
    width: 100%;
    margin-bottom: 40px;
    top: 0;
    font-size: 20px;
  }
}
.blogList__head ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .blogList__head ul {
    display: none;
  }
}
.blogList__head ul li {
  margin-left: 3.8194444444vw;
  margin-top: 10px;
}
.blogList__head ul li a {
  color: #007BC3;
  font-weight: 600;
  font-size: 20px;
  position: relative;
}
.blogList__head ul li a::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #22AEE5;
  position: absolute;
  top: 8px;
  left: -20px;
  border-radius: 10px;
  opacity: 0;
}

.blogList__head ul li a:hover::before {
  opacity: 1;
  transition: all 0.25s;
}

.blogList__fv {
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .blogList__fv {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.blogList__fv .swiper {
  width: min(85%, 920px);
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .blogList__fv .swiper {
    width: 100%;
  }
}
.blogList__fv .swiper .swiper-slide {
  padding-bottom: 15px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .blogList__fv .swiper .swiper-slide {
    padding-bottom: 0;
  }
}
.blogList__fv .swiper .swiper-slide img {
  height: 480px;
  object-fit: cover;
  border-radius: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  .blogList__fv .swiper .swiper-slide img {
    width: 100%;
    height: 200px;
    border-radius: 0;
  }
}
.blogList__fv .swiper-pagination {
  width: auto;
  height: 4px;
  display: -webkit-box;
  display: flex;
  position: absolute;
  top: 69%;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .blogList__fv .swiper-pagination {
    width: 100%;
    top: 200px;
  }
}
.blogList__fv .swiper-pagination span {
  display: block;
  width: clamp(15px, 2.7777777778vw, 40px);
  height: 4px;
  margin: 0;
  background: #EEEEEE;
  opacity: 1;
  border-radius: 0;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .blogList__fv .swiper-pagination span {
    width: 20%;
  }
}
.blogList__fv .swiper-pagination span.swiper-pagination-bullet-active {
  background: #007BC3;
}
.blogList__title {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .blogList__title {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.blogList__title-cat {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
  color: #007BC3;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .blogList__title-cat {
    margin-bottom: 10px;
    font-size: 13px;
  }
}
.blogList__title h3 {
  margin-bottom: 15px;
  font-size: 32px;
  line-height: 150%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .blogList__title h3 {
    margin-bottom: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .blogList .viewmore-large {
    display: none;
  }
}
.blogList .viewmore-large > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-left: auto;
}
.blogList .viewmore-large p {
  color: #007BC3;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.blogList .viewmore-large .arrow {
  margin-left: 24px;
}
.blogList .viewmore-large:hover .arrow path {
  fill: #ffffff;
}
.blogList .viewmore-large:hover .viewmore-large__circle {
  background: #22AEE5;
  border: 1px solid #22AEE5;
  transform: scale(1.5);
}

.category-page .blogList__head ul {
  -webkit-box-align: start;
  align-items: flex-start;
}
.category-page .blogList__head ul li.current {
  position: relative;
}
.category-page .blogList__head ul li.current::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #22AEE5;
  position: absolute;
  top: 11px;
  left: -20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .category-page .blogList__head .blog-cat {
    margin-bottom: 0;
  }
}
.category-page .blogList__head .blog-cat .accordion-title {
  background: #F8F8F8;
}

.blogcategory {
  width: min(100%, 960px);
  margin: 165px auto 0;
}
@media screen and (max-width: 767px) {
  .blogcategory {
    margin: 120px auto 0;
  }
}
.blogcategory ul li:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .blogcategory ul li:not(:last-child) {
    margin-bottom: 12px;
  }
}
.blogcategory ul li a {
  display: -webkit-box;
  display: flex;
  border: 1px solid #DCDCDC;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .blogcategory ul li a {
    flex-wrap: wrap;
  }
}
.blogcategory ul li a div {
  width: 50%;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .blogcategory ul li a div {
    width: 100%;
  }
}
.blogcategory ul li a .blogcategory__image {
  transition: all 0.25s ease 0s;
  border-radius: 5px 0 0 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .blogcategory ul li a .blogcategory__image {
    border-radius: 0;
  }
}
.blogcategory ul li a .blogcategory__image span {
  height: 126px;
  display: block;
}
.blogcategory ul li a:hover .blogcategory__image span {
  transform: scale(1.05, 1.05);
  transition: all 1s ease 0s;
}
.blogcategory ul li a div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogcategory__text {
  width: 100% !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #007BC3;
}
@media screen and (max-width: 767px) {
  .blogcategory__text {
    padding: 17px 0;
  }
}
.blogcategory__text p {
  font-weight: 600;
  font-size: 20px;
}
.blogcategory__text span {
  font-weight: 600;
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  .blogcategory__text span {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .blog-cat {
    width: 100%;
    margin-bottom: 40px;
    color: #007BC3;
  }
  .blog-cat .accordion-title {
    border-bottom: 1px solid #DCDCDC;
    padding: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    position: relative;
  }
  .blog-cat .accordion-title::after {
    content: "";
    width: 11px;
    height: 11px;
    border-top: solid 1px #007BC3;
    border-right: solid 1px #007BC3;
    position: absolute;
    top: 13px;
    right: 20px;
    transform: rotate(135deg);
  }
  .blog-cat .accordion-body {
    display: none;
    background: #F8F8F8;
  }
  .blog-cat .accordion-body a {
    display: block;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid #ffffff;
    font-weight: 600;
    font-size: 13px;
    color: #007BC3;
  }
  .blog-cat .accordion-body a:last-child {
    border-bottom: 1px solid #DCDCDC;
  }
}
/* =====================
  post setting
===================== */
.post {
  margin: min(13.8888888889vw, 200px) 0;
}
@media screen and (max-width: 767px) {
  .post {
    margin: 115px 0;
  }
}
.post .title {
  width: min(77.7777777778vw, 1120px);
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .post .title {
    width: 100%;
    margin: 0 auto 40px;
  }
}
.post .title h2 {
  font-weight: 600;
  font-size: 30px;
  color: #007BC3;
}
@media screen and (max-width: 767px) {
  .post .title h2 {
    font-size: 20px;
  }
}
.post__head {
  width: min(77.7777777778vw, 1120px);
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .post__head {
    width: 100%;
    flex-wrap: wrap;
  }
}
.post__head-date {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .post__head-date {
    width: 100%;
    margin-bottom: 8px;
  }
}
.post__head-date .time {
  margin-right: 10px;
  color: #999999;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .post__head-date .time {
    font-size: 12px;
  }
}
.post__head-date .cat {
  color: #007BC3;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.post__head-date .cat a {
  color: #007BC3;
}
.post__head-link {
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 767px) {
  .post__head-link {
    width: 100%;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
}
.post__head-link .pdf {
  margin-right: 28px;
}
.post__head-link .pdf a {
  color: #007BC3;
  font-weight: 400;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .post__head-link .pdf a {
    font-size: 12px;
  }
}
.post__head-link .share ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 0 7px;
}
.post__head-link .share ul li {
  font-size: 14px;
  font-weight: 600;
  color: #999999;
  letter-spacing: 0.06em;
}
.post__head-link .share ul li img {
  width: 24px;
  height: 24px;
  transition: all .25s;
}
.post__head-link .share ul li .share_twitter img {
  width: 25px;
  height: 25px;
}
.post__head-link .share ul li img:hover {
  transform:scale(1.2,1.2);
  transition: all .25s;
}
@media screen and (max-width: 767px) {
  .post__head-link .share ul li {
    font-size: 12px;
  }
  .post__head-link .share ul li img {
    width: 20px;
    height: 20px;
  }
  .post__head-link .share ul li .share_twitter img {
    width: 21px;
    height: 21px;
  }
}
.post__title {
  width: min(77.7777777778vw, 1120px);
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .post__title {
    width: 100%;
    margin: 20px auto;
  }
}
.post__title h1 {
  font-size: 36px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .post__title h1 {
    font-size: 22px;
  }
}
.post__eyecath {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .post__eyecath {
    margin-bottom: 40px;
  }
}
.post__eyecath img {
  height: 630px;
  object-fit: cover;
  border-radius: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  .post__eyecath img {
    height: 175px;
    border-radius: 5px 0 0 0;
  }
}
.post__inner {
  width: min(100%, 800px);
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
.post__inner p {
  padding-bottom: 40px;
  font-weight: 400;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .post__inner p {
    padding-bottom: 20px;
  }
}
.post__inner img {
  display: block;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .post__inner img {
    margin: 0 auto 20px;
  }
}
.post__inner .linkbox {
  padding-bottom: 0;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .post__inner .linkbox {
    margin: 0 0 20px;
  }
}
.post__inner .linkbox a {
  display: block;
  padding: 24px 0;
  border: 1px solid #007BC3;
  text-align: center;
  color: #007BC3;
  border-radius: 100px;
  line-height: 200%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.post__inner .linkbox a:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .post__inner .linkbox a {
    padding: 24px 10%;
  }
}
.post__inner .linkbox a::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50px;
}
.post__inner .linkbox a::after {
  content: "";
  width: 1000px;
  height: 1000px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #007BC3;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
  z-index: -1;
}
.post__inner .linkbox a:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.post__inner .linkbox a span {
  text-decoration: underline;
}
.post__inner h2 {
  padding-top: 80px;
  margin-bottom: 40px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .post__inner h2 {
    padding-top: 60px;
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.post__inner h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #007BC3;
}
@media screen and (max-width: 767px) {
  .post__inner h3 {
    margin-top: 10px;
    font-size: 18px;
  }
}
.post__inner h4 {
  margin-bottom: 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .post__inner h4 {
    font-size: 16px;
  }
}
.post__inner .caption {
  display: block;
  margin-top: -20px;
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .post__inner .caption {
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 12px;
  }
}
.post__inner .left {
  text-align: left;
}
.post__inner .em {
  font-weight: 700;
}
.post__inner .blue {
  color: #007BC3;
}
.post__inner blockquote {
  margin-bottom: 40px;
  padding: 40px 48px 0;
  background: #F8F8F8;
}
@media screen and (max-width: 767px) {
  .post__inner blockquote {
    margin-bottom: 20px;
    padding: 20px 20px 0;
  }
}
.post__inner ul {
  margin-bottom: 40px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .post__inner ul {
    margin-bottom: 20px;
  }
}
.post__inner ul li::before {
  content: "・";
  display: inline-block;
}
.post__inner ol {
  margin-bottom: 40px;
  counter-reset: number 0;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .post__inner ol {
    margin-bottom: 20px;
  }
}
.post__inner ol li {
  position: relative;
}
.post__inner ol li::before {
  content: counter(number) " ";
  counter-increment: number 1;
  width: 18px;
  height: 18px;
  display: inline-block;
  background: #007BC3;
  margin-right: 7px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
  font-size: 12px;
  text-align: center;
  text-indent: 1px;
  line-height: 18px;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 767px) {
  .post__inner ol li::before {
    font-size: 11px;
  }
}
.post__inner table {
  width: 100%;
  margin-bottom: 40px;
  text-align: left;
  border-collapse: collapse;
}
.post__inner table tr {
  border-top: 1px solid #DCDCDC;
}
.post__inner table tr:last-child {
  border-bottom: 1px solid #DCDCDC;
}
.post__inner table tr th {
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  .post__inner table tr th {
    padding: 8px 8px 8px 0;
  }
}
@media screen and (max-width: 767px) {
  .post__inner table tr td:last-child {
    padding-left: 8px;
  }
}
.post__inner hr {
  width: 400px;
  color: #DCDCDC;
  margin: 120px auto;
}
@media screen and (max-width: 767px) {
  .post__inner hr {
    width: 200px;
    margin: 60px auto;
  }
}
.post__inner a {
  color: #007BC3;
  text-decoration: underline;
}
.post__inner .wp-caption {
  width: 100% !important;
}
.post__inner .wp-caption img {
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .post__inner .wp-caption img {
    margin: 0 auto 10px;
  }
}
.post__inner .wp-caption p {
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .post__inner .wp-caption p {
    font-size: 12px;
  }
}
.post .post__info {
  padding-bottom: 80px;
  border-bottom: 1px solid #999999;
}
@media screen and (max-width: 767px) {
  .post .post__info {
    padding-bottom: 60px;
  }
}
.post .post__ft {
  width: min(100%, 800px);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 28px auto 0;
}
@media screen and (max-width: 767px) {
  .post .post__ft {
    margin: 20px auto 0;
  }
}
.post .post__ft .viewmore-large .viewmore-large__circle {
  right: auto;
  left: 0;
}
@media screen and (max-width: 767px) {
  .post .post__ft .viewmore-large .viewmore-large__circle {
    width: 20px;
    height: 20px;
  }
}
.post .post__ft .viewmore-large .arrow {
  transform: rotate(180deg);
  position: relative;
  left: -27px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .post .post__ft .viewmore-large .arrow {
    width: 30px;
    left: -12px;
  }
}
@media screen and (max-width: 767px) {
  .post .post__ft .viewmore-large p {
    font-size: 12px;
  }
}
.post .post__ft .share ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 0 7px;
}
.post .post__ft .share ul li {
  font-size: 14px;
  font-weight: 600;
  color: #999999;
  letter-spacing: 0.06em;
}
.post .post__ft .share ul li img {
  width: 25px;
  height: 25px;
  transition: all .25s;
}
.post .post__ft .share ul li .share_twitter img {
  width: 26px;
  height: 26px;
}
.post .post__ft .share ul li img:hover {
  transform: scale(1.2,1.2);
  transition: all .25s;
}
@media screen and (max-width: 767px) {
  .post .post__ft .share ul li {
    font-size: 12px;
  }
  .post .post__ft .share ul li img {
    width: 20px;
    height: 20px;
  }
  .post .post__ft .share ul li .share_twitter img {
    width: 21px;
    height: 21px;
  }
}

.blog .post__title h1 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .blog .post__title h1 {
    font-size: 22px;
  }
}
.blog .post__inner {
  padding-bottom: 80px;
  margin-bottom: 40px;
  border-bottom: 1px solid #DCDCDC;
}
@media screen and (max-width: 767px) {
  .blog .post__inner {
    padding-bottom: 60px;
    margin-bottom: 20px;
  }
}
.blog .post__ft-link {
  width: min(100%, 800px);
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .blog .post__ft-link {
    margin: 20px auto 0;
  }
}
.blog .post__ft-link .viewmore-large .viewmore-large__circle {
  right: 0;
}
@media screen and (max-width: 767px) {
  .blog .post__ft-link .viewmore-large .viewmore-large__circle {
    width: 20px;
    height: 20px;
  }
}
.blog .post__ft-link .viewmore-large .arrow {
  transform: rotate(180deg);
  position: relative;
  left: -27px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .blog .post__ft-link .viewmore-large .arrow {
    width: 30px;
    left: -12px;
  }
}
@media screen and (max-width: 767px) {
  .blog .post__ft-link .viewmore-large p {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .blog .post__ft .post__head-date {
    width: 50%;
  }
  .blog .post__head-link {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
}

.linkcard {
  width: 100%;
  margin: 40px auto;
}
.linkcard a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  border: 1px solid #DCDCDC;
  border-radius: 5px;
  text-decoration: none;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .linkcard a {
    flex-wrap: wrap;
  }
}
.linkcard__thumbnail {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .linkcard__thumbnail {
    width: 100%;
  }
}
.linkcard__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .linkcard__thumbnail img {
    height: 180px;
    border-radius: 5px 5px 0 0;
  }
}
.linkcard__text {
  width: 60%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 12px 25px 12px 0;
}
@media screen and (max-width: 767px) {
  .linkcard__text {
    width: 100%;
    padding: 20px;
  }
}
.linkcard__text h1 {
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .linkcard__text h1 {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .linkcard__text-desc {
    margin-bottom: 12px;
  }
}
.linkcard__text-desc p {
  padding: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
}
.linkcard__text-url {
  margin-top: auto;
}
.linkcard__text-url p {
  color: #999999;
  font-weight: 400;
  font-size: 10px;
  text-align: justify;
  padding: 0;
  line-height: 150%;
}
