/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/

body {
  font-family: "Noto Sans JP", "sans-serif";
  color: #000;
  background: #fff;
}

main {
  overflow: clip
}

body.noscroll {
  overflow: hidden;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

@media screen and (max-width:1300px) {
  .w126 {
    padding: 0 2%;
  }
}

@media screen and (max-width:600px) {
  .w126 {
    padding: 0 4%;
  }
}


@media screen and (min-width:501px) {
  .w500 {
    display: none;
  }
}

@media screen and (max-width:500px) {
  .w500 {
    display: inherit;
  }
}

/*=====================================
*
*header
*
=======================================*/
header {
  position: fixed;
  z-index: 9999;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 63px;
  background-color: #fff;
}

header .logo {
  width: 180px;
}

header .inner {
  align-items: center;
  justify-content: space-between;
}

header .inner .menu {
  align-items: center;
}

header .inner .Gmenu {
  display: flex;
  gap: 25px;
  margin-right: 25px;
}

header .inner .Gmenu li {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
}

header .inner .Gmenu li a {
  color: inherit;
}

header .inner .search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #000;
  transition: 0.3s ease-in-out;
}

header .inner .search .searchBox {
  position: absolute;
  right: 0;
  top: 65px;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

header .inner .search.active .searchBox {
  pointer-events: auto;
  opacity: 1.0;
}

header .inner .search .searchBox form {
  width: 500px;
}

header .inner .search .searchBox form input {
  width: 100%;
}

header .inner .search>i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/*ハンバーガーメニュー*/
@media screen and (max-width:1024px) {
  header {
    height: 60px;
  }

  header .sp_menu_area {
    position: fixed;
    z-index: 9999;
    top: 60px;
    right: -70vw;
    width: 65vw;
    height: 100%;
    height: calc(100lvh - 60px);
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }

  header .sp_menu_area.open {
    right: 0;
    opacity: 1.0;
  }


  header .inner .menu .Gmenu {
    flex-wrap: wrap;
    margin-top: 50px;
    margin-right: 0;
  }

  header .inner .menu .Gmenu li {
    position: relative;
    width: 100%;
    font-size: 18px;
    padding-bottom: 10px;
  }

  header .inner .menu .Gmenu li:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 1px;
    background-color: #000;
  }

  header .inner .sp_menu_area .searchBox {
    width: 100%;
    margin-top: 35px;
  }

  header .inner .sp_menu_area .searchBox form {
    width: 100%;
  }

  header .inner .sp_menu_area .searchBox form input {
    width: 100%;
    max-width: initial;
  }

  header .sp_bg {
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 9998;
    width: 100vw;
    height: calc(100lvh - 60px);
    background: rgba(120, 120, 120, 0.85);
    opacity: 0;
    transition: 0.3s ease-in-out;
    pointer-events: none;
  }

  header .sp_bg.open {
    opacity: 1.0;
    pointer-events: auto
  }

  header .sp_btn {
    display: flex !important;
    align-items: center;
    position: fixed;
    right: 2%;
    top: 10px;
    z-index: 9999;
    display: block;
    width: clamp(30px, 3.91vw, 40px);
    height: 40px;
  }

  header .sp_btn span {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 0.8px;
    background-color: #000;
    transition: 0.3s ease-out;
  }

  header .sp_btn span::before {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    height: 1px;
    width: 100%;
    background-color: #000;
    transition: 0.3s ease-out;
  }

  header .sp_btn span::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -6px;
    height: 1px;
    width: 100%;
    background-color: #000;
    transition: 0.3s ease-out;
  }

  header .sp_btn.open span {
    background-color: #fff;
  }

  header .sp_btn.open span:before {
    rotate: 10deg;
    transform: translateY(5px);
  }

  header .sp_btn.open span:after {
    rotate: -10deg;
    transform: translateY(-5px);
  }
}

/*sp*/
@media screen and (max-width:500px) {
  header .sp_menu_area {
    right: -80vw;
    width: 80vw;
  }
	
  header .sp_btn {
    right:4%;
  }
}

/*=====================================
*
*共通
*
=======================================*/
/*背景色*/
article.gray {
  background-color: #F0F0F0;
}

/*見出し*/
.heading_area .hd01 {
  text-align: center;
  margin-bottom: 44px;
}

.heading_area .hd01 h2 {
  font-family: "Oswald";
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.08em;
  color: #000;
}

.heading_area .hd01 span {
  display: block;
  width: 45px;
  height: 4px;
  margin: 7px auto 19px;
  background-color: #000;
}

.heading_area .hd01 p.sub {
  font-size: 12px;

}

/*sp*/
@media screen and (max-width:767px) {
  .heading_area .hd01 {
    margin-bottom: 30px;
  }

  .heading_area .hd01 h2 {
    font-size: 30px;
  }

  .heading_area .hd01 span {
    width: 40px;
    margin: 5px auto 12px;
  }

  .heading_area .hd01 p.sub {
    font-size: 10px;
  }
}

.searchBox form {
  position: relative;
}

.searchBox form input {
  width: calc((585 / 688)*100%);
  max-width: 585px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #5B5B5B;
  padding: 9px 10px 9px 60px;
  border-radius: 50px;
  border: 0;
  filter: drop-shadow(0px 1px 6px rgba(120, 120, 120, 0.16));
}

.searchBox form button {
  position: absolute;
  top: calc(50% + 1px);
  left: 26px;
  font-size: 24px;
  color: #000;
  background-color: transparent;
  border: 0;
  transform: translateY(-50%);
}

/*テキストリンク*/
.link-text.arrow :is(p, a) {
  font-size: 14px;
  font-weight: 500;
  ;
  color: #000;
  letter-spacing: 0.08em;
  padding-right: 4px;
}

.link-text.arrow :is(p, a) span {
  display: inline-block;
  border-style: solid;
  border-color: transparent transparent transparent #000;
  border-width: 5px 0px 5px 5px;
  margin-left: 5px;
}

/*ボタン*/
.btn01 {
  position: relative;
  width: 280px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  z-index: 1;
}

.btn01:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform-origin: right;
  transition: ease-in-out 0.3s;
}

@media (any-hover:hover) {
  .btn01:hover::after {
    transform: scale(0, 1);
  }
}

.btn01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  border: solid 1px #000;
  transition: 0.3s;
}

@media (any-hover:hover) {
  .btn01 a:hover {
    color: #000;
  }
}


@media screen and (max-width:767px) {
  .btn01 {
    width: 250px;
    height: 60px;
  }

  .btn01 a {
    font-size: 18px;
  }
}

/*カテゴリー*/
.cate_box {
  display: block;
  border-radius: 2px;
  background-color: #000;
}

.cate_box a {
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 6px 12px;
}

@media screen and (max-width:900px) {
  .cate_box a {
    font-size: 10px;
  }
}

/*=====================================
*
*front
*
=======================================*/
/*=====================================
*front共通
=======================================*/
#front-page {
  padding-top: 65px;
}

#front-page article {
  padding-top: 110px;
  padding-bottom: 120px;
}

#front-page article.gray {
  padding: 60px 0;
}

/*=====================================
*mv
=======================================*/
#front-page .mv_area {
  padding: 18px 0;
  background-color: #F0F0F0;
}

#front-page .mv_area .inner {
  flex-wrap: wrap;
  gap: clamp(20px, 2.08vw, 40px);
}

#front-page .mv_area .text_area {
  width: calc((688 / 1260)*100%);
}

#front-page .mv_area .text_area .heading h2 {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: clamp(35px, 2.45vw, 47px);
  line-height: calc(72 / 47);
  letter-spacing: 0.05em;
  color: #000;
}

#front-page .mv_area .text_area .heading h2 span {
  font-size: 26px;
  font-size: clamp(25px, 1.35vw, 26px);
}

#front-page .mv_area .text_area .sub {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #2F2F2F;
  margin-top: 25.5px;
  margin-bottom: 33.5px;
}

#front-page .mv_area .img_area {
  width: calc(100% - ((688 / 1260)*100%) - clamp(20px, 2.08vw, 40px));
  align-items: end;
  padding-right: calc((40 / 1260)*100%);
}

#front-page .mv_area .img_area .left {
  width: calc((271 / 490)*100%);
  margin-bottom: 28px;
  padding-right: clamp(30px, 2.34vw, 45px);
}

#front-page .mv_area .img_area .right {
  width: calc(100% - ((271 / 490)*100%));
}

/*tb*/
@media screen and (max-width:1024px) {
  #front-page .mv_area {
    padding: 30px 0;
  }

  #front-page .mv_area .text_area .heading h2 {
    font-size: 25px;
  }

  #front-page .mv_area .text_area .heading h2 span {
    font-size: 18px;
  }

  #front-page .mv_area .text_area p.sub {
    font-size: 16px;
  }

  #front-page .mv_area .searchBox form input {
    font-size: 14px;
    padding-left: 55px;
  }

  #front-page .mv_area .searchBox form button {
    font-size: 20px;
  }
}

/*sp*/
@media screen and (max-width:767px) {
  #front-page .mv_area {
    position: relative;
  }

  #front-page .mv_area .text_area {
    position: relative;
    width: 100%;
    z-index: 2;
  }

  #front-page .mv_area .text_area p.sub {
    line-height: 2.0;
    margin-top: 15px;
  }


  #front-page .mv_area .img_area {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    z-index: 1;
  }

  #front-page .mv_area .img_area .left {
    margin-bottom: 10px;
    padding-right: 8px;
  }

  #front-page .mv_area .searchBox {
    margin-top: 30%;
  }

  #front-page .mv_area .searchBox form {
    opacity: 0.75;
  }


}

/*=====================================
*pick up
=======================================*/
#front-page article.pickup_sec {
  padding-top: 80px;
}

#front-page article.pickup_sec .articleList_area ul {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}

#front-page article.pickup_sec .articleList_area ul li {
  color: #333;
  letter-spacing: 0.05em;
  border: solid 1px #B3B3B3;
  background-color: #fff;
  transition: ease-in 0.3s;
}

#front-page article.pickup_sec .articleList_area ul li:hover {
  box-shadow: inset 1px 1px 6px rgba(150, 150, 150, 0.14),
    inset -1px -1px 6px rgba(150, 150, 150, 0.14);
}

#front-page article.pickup_sec .articleList_area ul li a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  color: inherit;
  padding: 7px 20px;
}

#front-page article.pickup_sec .articleList_area ul li a:after {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  border-style: solid;
  border-color: transparent transparent transparent #B3B3B3;
  border-width: 7.5px 0 7.5px 6px;
  transform: translateY(-50%)
}

#front-page article.pickup_sec .articleList_area ul li h3 {
  font-size: clamp(14px, 0.83vw, 16px);
}

/*tb*/
@media screen and (max-width:1024px) {
  #front-page article.pickup_sec .articleList_area ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/*sp*/
@media screen and (max-width:1024px) {
  #front-page article.pickup_sec .articleList_area ul {
    gap: 15px;
  }

  #front-page article.pickup_sec .articleList_area ul li a {
    padding: 7px 30px 7px 10px;
  }

  #front-page article.pickup_sec .articleList_area ul li a:after {
    right: 11px;
  }
}


/*=====================================
*category
=======================================*/
#front-page article .category_list ul {
  gap: 30px;
  grid-template-columns: repeat(5, 1fr);
}

#front-page article .category_list ul li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #A5A5A5;
  background-color: #fff;
  transition: ease-in-out 0.3s;
}

@media (any-hover:hover) {
  #front-page article .category_list ul li:hover {
    opacity: 0.7;
  }
}

#front-page article .category_list ul li img {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#front-page article .category_list ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26 / 18);
  color: #000;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 13px 5px;
}

#front-page article .category_list ul li a .num {
  position: absolute;
  top: 0;
  left: 21.5px;
  z-index: -1;
  font-family: "Roboto";
  font-weight: 900;
  font-size: 23px;
  letter-spacing: 0.05em;
  padding-top: 4.5px;
}

#front-page article .category_list ul li a .num:before {
  content: "";
  position: absolute;
  top: 0.5px;
  left: 50%;
  width: 50px;
  height: 2px;
  background-color: #000;
  transform: translateX(-50%);
}

/*tb*/
@media screen and (max-width:1024px) {
  #front-page article .category_list ul {
    gap: 10px;
  }

  #front-page article .category_list ul li a {
    font-size: 16px;
  }

  #front-page article .category_list ul li img {
    transform: translate(-50%, -50%) scale(0.95);
  }

  #front-page article .category_list ul li a .num {
    font-size: 20px;
  }

  #front-page article .category_list ul li a .num:before {
    width: 45px;
  }
}

@media screen and (max-width:900px) {
  #front-page article .category_list ul {
    gap: 5px;
  }

  #front-page article .category_list ul li a {
    font-size: 14px;
  }

  #front-page article .category_list ul li img {
    transform: translate(-50%, -50%) scale(0.75);
  }

  #front-page article .category_list ul li a .num {
    font-size: 18px;
    margin-top: -5px;
  }

  #front-page article .category_list ul li a .num:before {
    top: 5px;
    width: 38px;
  }
}

/*sp*/
@media screen and (max-width:767px) {
  #front-page article .category_list ul {
    gap: 20px 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  #front-page article .category_list ul li {
    height: 70px;
  }
}


/*=====================================
*popular_sec
=======================================*/
#front-page .popular_sec ul.popular_list {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 25px;
}

#front-page .popular_sec ul.popular_list li {
  display: contents;
}

#front-page .popular_sec ul.popular_list li>a {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  position: relative;
  z-index: 1;
  padding: 20px 20px 25px;
  border: 1px solid #555;
  background-color: #fff;
  transition: 0.3s ease-out;
  box-shadow: 10px 10px 0 rgb(58, 58, 58);
}

@media (any-hover:hover) {
  #front-page .popular_sec ul.popular_list li>a:hover {
    transform: translate(10px, 10px);
    box-shadow: none;
  }
}


#front-page .popular_sec ul.popular_list li h3 {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
  padding: 0 4px;
  margin-bottom: 14px;
}

#front-page .popular_sec ul.popular_list li .text_area {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.05em;
  line-height: calc(20 / 15);
  padding: 0 4px;
}

#front-page .popular_sec ul.popular_list li .text_area :is(h2, figure) {
  display: none;
}

#front-page .popular_sec ul.popular_list li .under {
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #454545;
  margin-top: 19.5px;
  padding: 14.5px 4px 0;
}


@media screen and (max-width:1300px) {
  #front-page .popular_sec ul {
    width: calc(100% - 10px);
  }
}

/*tb*/
@media screen and (max-width:1024px) {
  #front-page .popular_sec ul.popular_list li>a {
    grid-row: span 4;
  }

  #front-page .popular_sec ul.popular_list li .under {
    flex-wrap: wrap;
  }

  #front-page .popular_sec ul.popular_list li .under .link-text {
    width: 100%;
    text-align: end;
    margin-top: 15px;
  }
}

@media screen and (max-width:900px) {
  #front-page .popular_sec ul.popular_list {
    grid-template-columns: repeat(2, 1fr);
  }

  #front-page .popular_sec ul.popular_list li>a {
    grid-row: span 3;
  }

  #front-page .popular_sec ul.popular_list li .under .link-text {
    width: fit-content;
    margin-top: 0;
  }
}

/*sp*/
@media screen and (max-width:767px) {
  #front-page .popular_sec ul.popular_list li>a {
    pointer-events: none;
  }

  #front-page .popular_sec ul.popular_list li .under a {
    pointer-events: auto;
  }
}

@media screen and (min-width:501px) and (max-width:767px) {
  #front-page .popular_sec ul.popular_list li>a {
    grid-row: span 4;
  }

  #front-page .popular_sec ul.popular_list li .under .link-text {
    width: 100%;
    margin-top: 15px;
  }
}

@media screen and (max-width:500px) {
  #front-page .popular_sec ul.popular_list {
    grid-template-columns: repeat(1, 1fr);
  }
	
  #front-page .popular_sec ul.popular_list li:nth-of-type(n+4){
	display:none;
  }
}


/*=====================================
*new_sec
=======================================*/
#front-page .new_sec.gray {
  padding-bottom: 130px;
}

#front-page .new_sec .contents_area ul li {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(93, 93, 93, 0.16);
  transition: 0.3s ease-in-out;
}

@media (any-hover:hover) {
  #front-page .new_sec .contents_area ul li:hover {
    opacity: 0.75;
  }
}

#front-page .new_sec .contents_area ul li:before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -10px;
  border-style: solid;
  border-color: #000 transparent transparent;
  border-width: 16px 16px 0;
  transform: rotate(-45deg);
  pointer-events: none;
}



#front-page .new_sec .contents_area ul li>a {
  display: block;
  padding: 40px 60px 40px 50px;
}

#front-page .new_sec .contents_area ul li+li {
  margin-top: 40px;
}

#front-page .new_sec .contents_area ul li :is(.text_area, .sp-text) :is(h2, figure) {
  display: none;
}

#front-page .new_sec .contents_area ul li .wrapper {
  flex-wrap: wrap;
  align-items: center;
}

#front-page .new_sec .contents_area ul li .img_area {
  width: calc((250 / 1260)*100%);
  margin-right: calc((40 / 1260)*100%);
}

#front-page .new_sec .contents_area ul li .text_area {
  width: calc(100% - ((250 / 1260)*100%) - ((40 / 1260)*100%));
}

#front-page .new_sec .contents_area ul li .text_area h3 {
  position: relative;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

#front-page .new_sec .contents_area ul li .text_area h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc((75 / 220)*100%);
  height: 3px;
  max-width: 75px;
  background-color: #000;
}

#front-page .new_sec .contents_area ul li :is(.text_area, .sp-text) p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(24 /16);
  color: #555;
}

/*tb*/
@media screen and (max-width:1024px) {
  #front-page .new_sec .contents_area ul li>a {
    padding: 25px 40px 25px 30px;
  }

  #front-page .new_sec .contents_area ul li .img_area {
    width: calc((400 / 1260)*100%);
  }

  #front-page .new_sec .contents_area ul li .text_area {
    width: calc(100% - ((400 / 1260)*100%) - ((40 / 1260)*100%));
  }


  #front-page .new_sec .contents_area ul li .text_area h3 {
    font-size: 15px;
  }

  #front-page .new_sec .contents_area ul li :is(.text_area, .sp-text) p {
    font-size: 12px;
  }
}


/*sp*/
@media screen and (max-width:767px) {
  #front-page .new_sec .contents_area ul li+li {
    margin-top: 25px;
  }

  #front-page .new_sec .contents_area ul li .img_area {
    width: calc((500 / 1260)*100%);
  }

  #front-page .new_sec .contents_area ul li .text_area {
    width: calc(100% - ((500 / 1260)*100%) - ((40 / 1260)*100%));
  }

  #front-page .new_sec .contents_area ul li .text_area h3 {
    font-size: 15px;
    margin-bottom: 0;
  }

  #front-page .new_sec .contents_area ul li .text_area h3:after {
    width: 45px;
  }

  #front-page .new_sec .contents_area ul li :is(.text_area, .sp-text) p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-height: 1.8;
    margin-top: 20px;
  }
}

/*=====================================
*
*下層共通
*
=======================================*/
/*余白*/
:is(#archive, #single) {
  padding-top: 65px;
  padding-bottom: 100px;
}

/*header部分*/
.under_header{
  padding: 75px 0;
  background: #F0F0F0; 
}

/*sp*/
@media screen and (max-width:767px){
  .under_header {
    padding: 50px 0;
  }
}

/*見出し*/
/*01*/
.heading.under-hd01 :is(h1,h2) {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.heading.under-hd01 span.sub {
  display: block;
  font-family: "Oswald";
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #3f3f3f;
  padding-top: 8px;
}

/*sp*/
@media screen and (max-width:767px){
  .heading.under-hd01 :is(h1,h2) {
    font-size: 25px;
  }
	
  .heading.under-hd01 span.sub {
    font-size: 15px;
    padding-top: 6px;
  }
}

/*2カラム*/
.twoCol.flex {
  flex-wrap: wrap;
  gap: 50px
}

.twoCol.flex>.left {
  width: calc(((950 / 1260) * 100%) - 50px);
}

.twoCol.flex .sidenav {
  width: calc(100% - (((950 / 1260) * 100%)) );
}

/*tb*/
@media screen and (max-width:1024px){
  .twoCol.flex {
    gap: 30px
  }
	
  .twoCol.flex>.left {
    width: calc(((900 / 1260) * 100%) - 30px);
  }

  .twoCol.flex .sidenav {
    width: calc(100% - (((900 / 1260) * 100%)));
  }	
}

/*sp*/
@media screen and (max-width:767px){
  .twoCol.flex>.left {
	margin-bottom:65px;
  }
}

@media screen and (max-width:600px){
  .twoCol.flex>.left {
	width:100%;
  }
	
.twoCol.flex>.sidenav {
	width:100%;
  }
}

/*ページネーション*/
.pagination ul {
  display: flex;
  gap: 15px;
  margin-top: 75px;
}

.pagination ul li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.pagination ul li a {
  color: inherit;
}

.pagination ul li .current{
  font-weight: 700;
}

.pagination ul li .current:after{
  content: "";
  position: absolute;
  left: -1.5px;
  bottom: -2px;
  width: calc(100% + 3px);
  height: 1px;
  background-color: #000;
}

/*=====================================
*
*sidenav
*
=======================================*/
.sidenav .inner{
  position: sticky;
  top:100px;
}

.sidenav .inner > .contents{
	position:relative;
    border-top: solid 1px #e5e5e5;
}

.sidenav .inner > .contents + .contents{
  margin-top:50px;
}

.sidenav .inner .contents:before{
  content:"";
  position:absolute;
  left:0;
  top:-2px;
  width:25%;
  height:2px;
  background-color:#000;
}

.sidenav .side-hd {
  justify-content:space-between;
  align-items:center;
  margin-top:35px;
  margin-bottom:25px;
}

.sidenav .side-hd h2{
  font-family:"Oswald";
  font-size:24px;
  color:#000;
  letter-spacing:0.05em;
}

.sidenav .side-hd h2 span{
  display:block;
  font-family:"Noto Sans JP";
  font-size:10px;
  color:#000;
  letter-spacing:0.05em;
}

.sidenav .side-hd span{
  position:relative;
  font-size:14px;
  font-weight:500;
  letter-spacing:0.05em;
}

.sidenav .side-hd span a{
  position:relative;
  color:inherit;
  padding:0 3px 4px;
}

.sidenav .side-hd span a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:#000;
  transform-origin:right;
  transition:0.25s ease-in-out;
}

@media (any-hover:hover){
  .sidenav .side-hd span a:hover:after{
     transform:scale(0,1);
  }
}

.sidenav ul#menu-sidebar li{
	width:fit-content;
}

.sidenav ul#menu-sidebar li + li{
  margin-top:15px;
}

.sidenav ul#menu-sidebar li a{
  display:flex;
  align-items:center;
  gap:5px;
  font-size:14px;
  font-weight:500; 
  color:#000;
  letter-spacing:0.05em;
}

.sidenav ul#menu-sidebar li a:before {
    content: "";
    display: block;
    /* position: absolute; */
    border-style: solid;
    border-color: transparent transparent transparent #000;
    border-width: 5px 0px 5px 5px;
}

.sidenav ul.side-article li + li{
  margin-top:15px;
}

.sidenav ul.side-article li a{
  gap:15px;
}

.sidenav ul.side-article li a .img_area{
  width:30%;
}

.sidenav ul.side-article li a .text_area{
   font-family:"Noto Sans JP";
   letter-spacing:0.05em;
   width:calc(70% - 15px)
}

.sidenav ul.side-article li a .text_area span{
  font-size:10px;
  font-weight:400;
  color:#666;
}

.sidenav ul.side-article li a .text_area h3 {
  font-size:14px;
  font-weight:500;
  color:#000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*tb*/
@media screen and (max-width:1024px){
  .sidenav ul.side-article li a{
    gap:10px;
  }

  .sidenav ul.side-article li a .img_area{
    width:calc(50% - 10px);
  }

   .sidenav ul.side-article li a .text_area{
     width:50%;
   }
	
	.sidenav ul.side-article li a .text_area h3{
     font-size: 12px;
   }
}

/*sp*/
@media screen and (max-width:767px){
	.sidenav .side-hd h2{
	  font-size: 20px;
	}
	
  .sidenav .side-hd h2 span {
    font-size: 9px;
   }
	
  .sidenav ul#menu-sidebar li a {
    font-size: 12px;
  }
}

@media screen and (max-width:600px){
  .sidenav .inner {
    position: relative;
    top: initial;
  }
}
/*=====================================
*
*single
*
=======================================*/
/*記事詳細FV*/
#single .single_fv .breadcrumb{
  margin: 10px auto 35px;
}

#single .single_fv h1.single-hd{
  font-family: 'Noto Sans JP';
  font-size: 35px;
  font-weight: 500;
  color: #000;
  letter-spacing:0.05em;
  margin-bottom: 19px;
  line-height: 1.8;
}

#single .single_fv .img_area {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 45%;
    margin-bottom: 50px;
}

#single .single_fv .img_area img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:767px){
  #single .single_fv h1.single-hd{
     font-size: 26px;
  }
}

/*記事詳細 内容部分*/
#single .contents.left p{
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-weight: 400;
  line-height:2.0;
  color: #333;
  letter-spacing:0.08em;
  margin-bottom:30px;
}

#single .contents.left #toc_content :is(h2,h3,h4){
  font-family: 'Noto Sans JP';
  font-weight: 700;
  line-height:2.0;
  color: #000;
  letter-spacing: 0.08em;
  margin-bottom: 25px;
}

#single .contents.left #toc_content h2 {
  font-family: 'Noto Sans JP';
  font-size: 22px;
  margin-top:80px;
  padding-left: 10px;
  border-left: #000 solid 5px;
}

#single .contents.left #toc_content h3 {
  font-size: 20px;
  margin-top:50px;
  padding-bottom: 5px;
  border-bottom: #000 solid 1px;
}

#single .contents.left #toc_content h4 {
  position:relative;
  font-size: 18px;
  margin-top:50px;
  margin-bottom:15px;
  padding-left:1.0em;  
}

#single .contents.left #toc_content h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: calc(1.0em - 4px);
  height: 2px;
  background: #000;
}

#single .contents.left #toc_content img{
  margin-bottom:45px;
}

#single .contents.left #toc_content a{
  font-size:16px;
  font-weight:500;
  letter-spacing:0.08em;
  color:#333;
  text-decoration:underline;
  transition:0.3s ease-in-out;
}

@media (any-hover:hover){
  #single .contents.left #toc_content a:hover{
	 opacity:0.75
  }
}

#single .contents.left #toc_content >  :is(ul,ol){
  position:relative;
  margin-bottom:30px;
}

#single .contents.left #toc_content >  :is(ul,ol) li{
  display:flex;
  font-family:"Noto Sans JP";
  font-size:16px;
  font-weight:400;
  color:#333;
  line-height:2.0;
  letter-spacing:0.08em;
}

#single .contents.left #toc_content >  ul li:before{
  content:"・";
}

#single .contents.left #toc_content >  ol{
  counter-reset: my-counter;
}

#single .contents.left #toc_content >  ol li{
  counter-increment: my-counter;
}

#single .contents.left #toc_content >  ol li:before {
  content: counter(my-counter)".";
}

#single .contents.left :is(.single_table-1,.single_table-2){
  margin-bottom:30px;
}

#single .contents.left :is(.single_table-1,.single_table-2) td{
  font-family:"Noto Sans JP";
  font-size:16px;
  color:#333;
  letter-spacing:0.08em;
  max-width:125px;
  background-color:#fff;
}

#single .contents.left .single_table-1 tr:first-of-type td{
  font-weight:700;
  color:#fff;
  background-color:#333;
}

#single .contents.left .single_table-2 tr td:first-of-type{
  font-weight:700;
  color:#fff;
  background-color:#333;
}

#single .contents.left blockquote{
  position:relative;
  padding:40px 25px 25px 40px;
  margin-bottom:30px;
  background-color:#fafafa;
}

#single .contents.left blockquote:before{
  content:'"';
  position:absolute;
  top:15px;
  left:15px;
  z-index:1;  
  font: var(--fa-font-solid);
  font-size:50px;
  opacity:0.3;
}

#single .contents.left blockquote p{
  position:relative;
  z-index:2;
  margin-bottom:5px;
}

/*sp*/
@media screen and (max-width:767px){
  #single .contents.left #toc_content h2{
    font-size: 18px;
  }

  #single .contents.left #toc_content h3 {
    font-size: 16px;
  }
	
  #single .contents.left #toc_content h4 {
    font-size: 15px;
  }
	
  #single .contents.left #toc_content a{
    font-size:14px;
  }

  #single .contents.left #toc_content > :is(ul,ol) li{
	 font-size:14px;
  }
	
  #single .contents.left blockquote {
    padding: 40px 20px 25px 28px;
  }
	
  #single .contents table{
	 width:150%;
  }
	
  #single .contents.left .single_table-2 tr td:first-of-type{
	 position: sticky;
	 left: 0;
  }
	
}

/*関連記事*/
#single .contents.left .connection_article{
  margin-top:65px;
}

#single .contents.left .connection_article ol {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top:25px;
}

#single .contents.left .connection_article ol li{
  position:relative;
  width:calc(50% - 5px);
  height:125px;
  border-radius: 0 25px 0 25px;
  overflow:hidden;
}

#single .contents.left .connection_article ol li:after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.35);
  pointer-events:none;
  transition:0.45s ease-in-out;
}

#single .contents.left .connection_article ol li:hover:after{
  opacity:0;
}

#single .contents.left .connection_article ol li.prev{
  margin-left:auto;
}

#single .contents.left .connection_article ol li:is(.next,.prev):before {
  position: absolute;
  z-index: 2;
  bottom: -28px;
  font-family: "Oswald";
  font-size: clamp(25px,4.37vw,55px);
  color: #fff;  
  letter-spacing: 0.1em;
  opacity: 0.8;
  pointer-events:none;
}

#single .contents.left .connection_article ol li.next:before {
  content: "NEXT";
  left: 16px;
}

#single .contents.left .connection_article ol li.prev:before {
  content: "PREVIOUS";
  right: 16px;
}

#single .contents.left .connection_article ol li img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

#single .contents.left .connection_article ol li .cont {
   position: absolute;
   top: 8px;
   z-index: 2;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   overflow: hidden;
   max-width: calc(100% - 30px);
}

#single .contents.left .connection_article ol li .cont .title{
  font-family:"Noto Sans JP";
  font-size:15px;
  font-weight:500;
  letter-spacing:0.05em;
  color:#fff; 
}

#single .contents.left .connection_article ol li.next .cont{
  left:10px;
}

#single .contents.left .connection_article ol li.prev .cont{
  right:10px;
}

@media screen and (max-width:1024px){
  #single .contents.left p {
    font-size: 14px;
  }	
		
  #single .contents.left :is(.single_table-1,.single_table-2) td{
	 font-size: 14px;
  }
}

/*tb*/
@media screen and (max-width:1024px){
  #single .contents.left .connection_article ol li:is(.next,.prev):before {
    bottom: -20px;
  }
}

/*sp*/
@media screen and (max-width:767px){
  #single .contents.left .connection_article ol{
	 flex-wrap:wrap;
  }
	
  #single .contents.left .connection_article ol li{
	 width:100%;
  }
	
  #single .contents.left .connection_article ol li .cont {
    top: 13px;
  }

  #single .contents.left .connection_article ol li .cont .title {
    font-size: 14px;
  }
	
  #single .contents.left .connection_article ol li:is(.next,.prev):before {
    font-size: clamp(35px,4.37vw,55px);
    bottom: -16px;
  }
}

/*=====================================
*
*archive
*
=======================================*/
#archive .contents_area .article_list li:not(last-of-type) {
  border-top: solid 1px #e5e5e5;
}

#archive .contents_area .article_list li>a {
  display: block;
}

#archive .contents_area .article_list li > a {
  padding-top: 35px;
}

#archive .contents_area .article_list li:not(:last-of-type)>a {
  padding-bottom: 35px;
}


#archive .contents_area .article_list li :is(.text_area, .sp-text) :is(h2, figure) {
  display: none;
}

#archive .contents_area .article_list li .text_area > h2 {
  display:block;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
  margin: 10px 0 20px;
}

#archive .contents_area .article_list li :is(.text_area,.sp-text) p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 14px;
  color: #555;
  line-height:1.8;
  overflow: hidden;
}

#archive ul.article_list li .contents {
  gap: 20px;
  flex-wrap: wrap;
}


#archive ul.article_list li .contents .left {
  width: 30%;
}

#archive ul.article_list li .contents .right {
  width: calc(70% - 20px);
}

/*sp*/
@media screen and (max-width:767px){
	#archive ul.article_list li .contents{
	  gap:15px;
	  align-items:center;
	}
	
  #archive .contents_area .article_list li .text_area h2{
	  font-size:15px;	
  }
	
	#archive .contents_area .article_list li .sp-text{
	  margin-top:15px;
	}
}

/*検索結果*/
#archive.search .heading{
  margin-bottom:50px;
}

#archive.search .heading .searchBox {
  min-width: 585px;
  margin-top: 10px;
}

#archive.search .heading .searchBox form input {
  width: calc((585 / 688)*100%);
  max-width: 585px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #5B5B5B;
  padding: 9px 10px 9px 60px;
  border-radius: 50px;
  border: 0;
  filter: drop-shadow(0px 1px 6px rgba(120, 120, 120, 0.16));
}

#archive.search .no-result p{ 
  font-family:"Noto Sans JP";
  font-weight:500;
  font-size:16px;
  letter-spacing:0.05em;
  line-height:1.8;
  color:#333;
}

/*sp*/
@media screen and (max-width:767px){
   #archive.search .heading .searchBox {
    min-width: initial;
  }
}

/*=====================================
*
*404
*
=======================================*/
.notfound {
  align-items: center;
  justify-content: center; 
}

.notfound .wrapper p{
  font-size:18px;
  font-weight:500;
  line-height:2.0;
  letter-spacing:0.05em;
  color:#333;
  text-align:center;
}

.notfound .wrapper .title_404{
  margin-bottom: 35px;
}

.notfound .wrapper .title_404 p{
  font-size:45px;
  font-weight:700;
  font-family: "Oswald";
  color:#000;
  line-height: 1.0;
}
/*=====================================
*
*breadcrumb
*
=======================================*/
nav.breadcrumb {
  margin: 10px auto 65px;
}

nav.breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

nav.breadcrumb ul li {
  letter-spacing: 0.05em;
  color: #000;
}

nav.breadcrumb ul li:last-of-type {
  font-weight: 700;
}

nav.breadcrumb ul li:not(:last-of-type):after {
  content: '\f105';
  font: var(--fa-font-solid);
  font-weight: 700;
  padding: 0 5px;
}

nav.breadcrumb ul li a {
  color: inherit;
}

/*sp*/
@media screen and (max-width:767px){
  .pagination ul {
    margin-top: 30px;
  }	
}

/*=====================================
*
*toc
*
=======================================*/
#single .contents.left .toc {
    padding: 20px 35px 0;
    border: 1px solid #b4b4b4;
    background-color: #fafafa;
    margin: 0 auto 50px;
    width: 75%;
}

#single .contents.left .toc .toc-title{
    text-align: center;
}

#single .contents.left .toc > ul{
  padding-bottom:20px;
}

#single .contents.left .toc ul li + li{
  margin-top:20px;
}

#single .contents.left #toc_content .toc li a{
  display: flex;
  gap: 5px;
  width:fit-content;
  text-decoration:none;
}

#single .contents.left .toc ul li a span{
  min-width:fit-content;
}

#single .contents.left #toc_content .toc ul.toc-list > li a{
 font-size:16px;
 font-weight:600;
}

#single .contents.left #toc_content .toc ul.toc-list > li  ul{
  margin-left:1.0em;
}

#single .contents.left #toc_content .toc ul.toc-list li ul li{
  margin-top:10px;
}

#single .contents.left #toc_content .toc ul.toc-list li ul li a{
   font-weight:400;
}

/*tb*/
@media screen and (max-width:1024px){
  #single .contents.left .toc p.toc-title {
    font-size: 14px;
  }
	
  #single .contents.left .toc ul.toc-list > li a{
	font-size:14px;
  }
}

/*sp*/
@media screen and (max-width:767px){
   #single .contents.left .toc {
	width:100%;
	margin-bottom:35px;
    padding: 15px 15px 0;
  }
	
  #single .contents.left .toc p.toc-title {
    margin-bottom:15px;
  }
	
  #single .contents.left .toc > ul{
    padding-bottom:15px;
  }
	
  #single .contents.left #toc_content .toc ul.toc-list > li a{
	 font-size:14px;
  }
	
  #single .contents.left .toc ul.toc-list > li  ul{
    margin-left:0.5em;
  }
}
/*=====================================
*
*footer
*
=======================================*/
footer {
  padding: 25px 0 50px;
  background-color: #313131;
}

footer .logo {
  width: 180px;
}

footer .wrapper {
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

footer .wrapper .copyright {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: calc(25 / 12);
  color: #fff;
  text-align: end;
}

/*sp*/
@media screen and (max-width:767px) {
  footer .wrapper {
    justify-content: center;
  }

  footer .wrapper .copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ削除
=======================================*/
@media screen and (min-width: 1025px) {
  .pcnone {
    display: none;
  }
}

/*=====================================
*tablet削除
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px) {
  .tabnone {
    display: none;
  }
}

/*=====================================
*sp削除
=======================================*/
@media screen and (max-width:414px) {
  .spnone {
    display: none;
  }
}

/*=====================================
*
*pc
*
=======================================*/
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }

  .tb {
    display: none;
  }

  .sp_tb {
    display: none;
  }
}

/*=====================================
*
*tb
*
=======================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }

  .sp {
    display: none;
  }

  .tb {
    display: inherit;
  }

  .tb_pc {
    display: inherit;
  }

  .sp_tb {
    display: inherit;
  }
}

/*=====================================
*
*sp
*
=======================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .tb_pc {
    display: none;
  }

  .sp {
    display: inherit;
  }

  .tb {
    display: none;
  }

  .sp_tb {
    display: inherit;
  }
}