@charset "UTF-8";
/* base
==================================*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin-top: 80px;
}
body#Top {
  padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-all;
  font-feature-settings: "palt" 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

.sp {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
@media (hover: hover) {
  a:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.7;
  }
}
a.tel {
  pointer-events: none;
  cursor: default;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50vw;
}

/* Contact_reset
==================================*/
/*------ Reset CSS ------*/
input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  accent-color: #000;
}
input[type=text], input[type=tel], input[type=number] {
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 5px;
  outline: none;
  background: white;
  padding: 10px 30px;
}
input[type=radio], input[type=checkbox] {
  font-size: 0;
  line-height: 1;
}
input[type=radio]:checked, input[type=checkbox]:checked {
  accent-color: #000;
}
input[type=radio]:checked + label::after, input[type=checkbox]:checked + label::after {
  opacity: 1;
}
input::-moz-placeholder {
  position: relative;
  top: -2px;
  color: #b2b2b2;
  font-size: 14px;
}
input::placeholder {
  position: relative;
  top: -2px;
  color: #b2b2b2;
  font-size: 14px;
}
input:-ms-input-placeholder {
  position: relative;
  top: -2px;
  color: #b2b2b2;
  font-size: 14px;
}
input::-webkit-input-placeholder {
  position: relative;
  top: -2px;
  color: #b2b2b2;
  font-size: 14px;
}

button,
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  border-radius: unset;
  outline: none;
  font-weight: normal;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  appearance: none;
  border: none;
  border-radius: 5px;
  outline: none;
  background: white;
  padding: 12px 30px;
}
select::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  right: 0;
  bottom: 10px;
}

/*------ Reset END ------*/
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

h2[class$=main-ttl] {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
}

.btn {
  display: block;
  text-align: center;
  margin: auto;
}
.btn a {
  display: inline-block;
  min-width: 160px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  border: 1px solid;
  border-radius: 5px;
  padding: 10px;
  transition: 0.3s ease;
  background: #000;
}
@media (hover: hover) {
  .btn a:hover {
    opacity: 0.6;
  }
}

.sub-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  background: #f5f5f5;
  margin-bottom: 100px;
}

.sub-ttl {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
}

.pagination {
  display: flex;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
}
.pagination li {
  width: 40px;
  text-align: center;
}
.pagination li.active {
  background: #428bca;
}
.pagination li.active span {
  color: white;
  font-weight: 600;
}
.pagination li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
}
.pagination li a {
  color: #b3b3b3;
  padding: 11px;
}

.form__area.flex-wrap {
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 20px;
}
.form__lead-ttl {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 100px;
}
.form__container {
  background: #f5f5f5;
  padding: 50px 32px;
  margin-bottom: 100px;
}
.form.show .form__container {
  margin-bottom: 0;
}
.form__group {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  width: calc(50% - 30px);
}
.form__group.keyword {
  width: 100%;
}
.form__group.keyword input {
  width: 100%;
}
.form__group.toggle_group {
  flex-wrap: wrap;
}
.form__group.size_group {
  align-items: stretch;
}
.form__label {
  position: relative;
  min-width: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-right: 10px;
}
.form__label.radio_btn {
  cursor: pointer;
  padding: 0 0 0 30px;
  margin-right: 22px;
}
.form__label.radio_btn::before, .form__label.radio_btn::after {
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  transform: translateY(-50%);
  top: 50%;
}
.form__label.radio_btn::before {
  background-color: #fff;
  border: 2px solid #b2b2b2;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 0;
}
.form__label.radio_btn::after {
  background-color: #000;
  border-radius: 50%;
  opacity: 0;
  width: 8px;
  height: 8px;
  left: 6px;
}
.form__label > .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.form__value-wrap {
  flex-grow: 1;
}
.form__value-wrap:not(.size) {
  margin-right: 26px;
}
.form__value-wrap.radio {
  padding: 10px 0;
}
.form__value-wrap.select {
  position: relative;
}
.form__value-wrap.select::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 24px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  pointer-events: auto;
}
.form__value-wrap.other_toggle {
  display: none;
  width: calc(100% - 100px);
  margin-left: 100px;
}
.form__value-wrap.size {
  width: 100%;
}
.form__value-wrap.select {
  position: relative;
}
.form__value-wrap.select::after {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% - 5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
  pointer-events: auto;
}
.form__value-wrap > select {
  width: 100%;
  color: #b2b2b2;
  font-size: 14px;
}
.form__value-wrap > select.txt-color {
  color: #000;
}
.form__value-wrap > select > option:not(:first-child) {
  color: #000;
}
.form__value-wrap.form__value-flex {
  display: flex;
  align-items: center;
}
.form__value-wrap.form__value-flex > input {
  width: 30%;
  flex-grow: 1;
}
.form__value-wrap.form__value-flex .form__tilde {
  margin: 0 10px;
}
.form__value-wrap.form__value-flex .form__cm {
  font-size: 14px;
  margin-left: 6px;
}
.form__other-wrap {
  margin-top: 12px;
}
.form__btn-wrap {
  margin: 30px auto 0;
}
.form__btn-wrap > input[type=submit] {
  min-width: 160px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: 1px solid;
  border-radius: 5px;
  padding: 10px;
  margin: 0 15px;
  transition: 0.3s ease;
  cursor: pointer;
}
.form__btn-primary {
  color: #fff;
  background: #000;
}
@media (hover: hover) {
  .form__btn-primary:hover {
    opacity: 0.6;
  }
}
.form__btn-default {
  color: #000;
  background: #fff;
}
@media (hover: hover) {
  .form__btn-default:hover {
    opacity: 0.6;
  }
}

.search__container-top {
  margin-bottom: 50px;
}
.search__container-bottom {
  margin: 46px 0 100px;
}
.search__filters-wrap {
  align-items: flex-start;
  gap: 26px;
  flex-wrap: wrap;
}
.search__filter-sort.form__group {
  order: 2;
  max-width: 280px;
}
.search__filter-sort.form__group select {
  min-width: 206px;
}
.search__filter-number.form__group {
  order: 3;
  max-width: 190px;
  align-items: center;
}
.search__filter-number.form__group select {
  min-width: 100px;
}
.search__filter-pagination {
  order: 4;
}
.search__filter-info {
  order: 1;
  font-size: 12px;
  margin: auto auto 0 0;
}
.search__filter.form__label {
  width: auto;
  min-width: 70px;
  font-size: 16px;
  letter-spacing: 0.14em;
  padding-right: 15px;
}
.search__gray.form__value-wrap {
  position: relative;
  margin-right: 0;
}
.search__gray.form__value-wrap > select {
  border: 1px solid #b3b3b3;
  padding: 12px 15px;
}
.search__gray.form__value-wrap::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 14px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  pointer-events: auto;
}

.news__container {
  margin-bottom: 100px;
}
.news__list.flex-wrap {
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 33px;
}
.news__list-item {
  position: relative;
  width: calc(33.3333333333% - 27px);
  cursor: pointer;
}
@media (hover: hover) {
  .news__list-item:hover {
    opacity: 0.7;
    transition: 0.3s ease;
  }
  .news__list-item:hover .news__img-container {
    overflow: hidden;
  }
  .news__list-item:hover .news__img-container img {
    transform: scale(1.05);
  }
}
.news__img-container {
  position: relative;
  overflow: hidden;
}
.news__img-container > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease;
}
.news__area-a {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.news__area-b {
  padding: 17px 0;
}
.news__ttl {
  display: block;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.9;
  margin-bottom: 17px;
}
.news__date {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid;
  z-index: 1;
  background: white;
}
header .header_inner {
  max-width: 1290px;
  height: 100%;
  padding: 0 40px;
  margin: auto;
}
header .site-ttl {
  font-size: 24px;
  letter-spacing: 0.15em;
  margin-right: auto;
}
header nav ul {
  display: flex;
}
header nav a {
  display: block;
  font-size: 17px;
  letter-spacing: 0.1em;
}
@media (hover: hover) {
  header nav a:hover {
    border-bottom: 1px solid;
  }
}
header nav li:not(:last-child) a {
  margin-right: 40px;
}
header .hum_menu {
  visibility: hidden;
}

body#Top nav li:nth-child(1) > a,
body#Search nav li:nth-child(2) > a,
body#News nav li:nth-child(3) > a {
  border-bottom: 1px solid;
}

/* footer
==================================*/
footer .contact__container {
  border: 1px solid #b2b2b2;
  padding: 33px 0;
  margin-bottom: 150px;
}
footer .contact__area-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(24%, 194px);
  height: 116px;
  text-align: center;
  border-right: 1px solid #b2b2b2;
}
footer .contact__name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
footer .contact__area-b {
  flex-grow: 1;
  padding: 0 46px;
}
footer .contact__lead {
  line-height: 2;
  margin-bottom: 15px;
}
footer .contact__mail a::before {
  content: "";
  width: 16px;
  height: 15px;
  background: url("../images/common/mail.svg") no-repeat;
  display: inline-block;
  margin-right: 9px;
  vertical-align: middle;
}
footer .copy {
  background: #f5f5f5;
  padding: 16px;
}
footer small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0 auto;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.base-width {
  max-width: 1093px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1153px) {
  .base-width {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 899px) {
  .base-width {
    width: calc(100% - 40px);
    max-width: 375px;
    margin: auto;
  }
}

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

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}
@media (max-width: 899px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
	リスト系
==================================*/
.news_ul {
  margin: 0 0 19px;
}
.news_ul .news_li {
  border-bottom: 1px solid #e8e8e8;
  padding: 22px 14px;
}
.news_ul .news_li > a {
  display: flex;
  align-items: center;
}
.news_ul .news_li > a .date {
  font-size: 16px;
  color: #919191;
  margin-right: 24px;
}
.news_ul .news_li > a .img_wrap {
  margin-right: 17px;
}
@media (min-width: 900px) {
  .news_ul .news_li > a .title {
    background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
    transition: background 0.4s ease;
  }
  .news_ul .news_li > a:hover .title {
    background-size: 100% 1px;
  }
}
@media (max-width: 899px) {
  .news_ul .news_li {
    padding: 14px 0;
  }
  .news_ul .news_li > a {
    display: block;
    position: relative;
    padding-left: 80px;
  }
  .news_ul .news_li > a .img_wrap {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .news_ul .news_li > a .img_wrap img {
    max-width: 57px;
  }
  .news_ul .news_li > a .date,
  .news_ul .news_li > a .title {
    display: block;
  }
  .news_ul .news_li > a .date {
    font-size: 14px;
    margin: 0 0 7px;
  }
  .news_ul .news_li > a .title {
    font-size: 16px;
    line-height: 1.3;
  }
}

/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 50px;
}
@media (max-width: 899px) {
  .page_navigation .wp-pagenavi {
    margin: 30px 0 40px;
  }
}
.page_navigation .wp-pagenavi > .page,
.page_navigation .wp-pagenavi .current {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}
.page_navigation .wp-pagenavi > .page:not(.current),
.page_navigation .wp-pagenavi .current:not(.current) {
  background-color: #f3f3f3;
}
@media (min-width: 900px) {
  .page_navigation .wp-pagenavi > .page:not(.current):hover,
  .page_navigation .wp-pagenavi .current:not(.current):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current {
  background-color: #000;
  color: #fff;
}
.page_navigation .wp-pagenavi .nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink {
  position: relative;
  font-weight: 500;
  box-sizing: border-box;
}
.page_navigation .wp-pagenavi .nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 9px;
  height: 14px;
  background-image: url(../images/common/pager_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink {
  padding-left: 33px;
  margin-right: 30px;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink::before {
  left: 0;
  transform: scale(-1, 1);
}
@media (min-width: 900px) {
  .page_navigation .wp-pagenavi .nextpostslink.previouspostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.previouspostslink:hover::before {
    left: -5px;
  }
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink {
  padding-right: 33px;
  margin-left: 30px;
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink::before {
  right: 0;
}
@media (min-width: 900px) {
  .page_navigation .wp-pagenavi .nextpostslink.nextpostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.nextpostslink:hover::before {
    right: -5px;
  }
}
.page_navigation .wp-pagenavi .list_back {
  margin-left: 58px;
  margin-right: 58px;
}
.page_navigation .wp-pagenavi .list_back > a {
  font-weight: 500;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon {
  display: inline-block;
  padding-left: 24px;
  position: relative;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background-image: url(../img/news/list_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.page_navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px 0 50px;
}
.page_navigation > ul .link_page,
.page_navigation > ul .current_page {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 5px;
}
.page_navigation > ul .link_page:not(.current_page),
.page_navigation > ul .current_page:not(.current_page) {
  background-color: #f3f3f3;
}
@media (min-width: 900px) {
  .page_navigation > ul .link_page:not(.current_page):hover,
  .page_navigation > ul .current_page:not(.current_page):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation > ul .link_page.current_page,
.page_navigation > ul .current_page.current_page {
  background-color: #000;
  color: #fff;
}

/*==================================
  Top
==================================*/
#Top main .form__container {
  margin-bottom: 100px;
}

/*==================================
News
==================================*/
#News main .news__article.flex-wrap {
  margin-bottom: 18px;
}
#News main .news__ttl-wrap.flex-wrap {
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #b2b2b2;
  margin-bottom: 40px;
}
#News main .news__ttl-wrap.flex-wrap h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-bottom: 30px;
}
#News main .news__ttl-wrap.flex-wrap .date {
  font-size: 13px;
  letter-spacing: 0.08em;
  padding-bottom: 16px;
}
#News main .news__main-wrap > p {
  line-height: 2.4;
  text-align: justify;
}
#News main .news__main-wrap {
  margin-bottom: 100px;
}
#News main .news__pager-wrap {
  justify-content: center;
  gap: 30px;
  margin-bottom: 100px;
}
#News main .news__pager {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: 0.3s ease;
}
#News main .news__pager.prev {
  padding-left: 20px;
}
#News main .news__pager.prev::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8px 5px 0;
  border-color: transparent #000000 transparent transparent;
  transition: 0.3s ease;
}
@media (hover: hover) {
  #News main .news__pager.prev:hover::before {
    left: -8px;
  }
}
@media (hover: none) {
  #News main .news__pager.prev:active::before {
    left: -8px;
  }
}
#News main .news__pager.next {
  padding-right: 20px;
}
#News main .news__pager.next::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #000000;
  transition: 0.3s ease;
}
@media (hover: hover) {
  #News main .news__pager.next:hover::before {
    right: -8px;
  }
}
@media (hover: none) {
  #News main .news__pager.next:active::before {
    right: -8px;
  }
}
#News main .news__btn.btn {
  margin: 0;
}
#News main .search__container-top {
  margin-bottom: 80px;
}
#News main .search__container-bottom {
  margin: 0 0 100px;
}

/*==================================
Search
==================================*/
body#Search {
  width: 100%;
}

#Search main .modal__overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #000;
  overflow-y: auto;
  overscroll-behavior-y: none;
  opacity: 0;
  z-index: 1;
  transition: 0.5s ease;
}
#Search main .modal__overlay.show {
  visibility: visible;
  opacity: 0.5;
  transition: 0.3s ease;
}
#Search main .modal__wrap {
  visibility: hidden;
  position: fixed;
  max-width: 1093px;
  width: 100%;
  background: transparent;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
#Search main .modal__wrap.show {
  display: flex;
  align-items: center;
  visibility: visible;
  overflow: auto;
  pointer-events: none;
}
#Search main .modal__wrap.show::-webkit-scrollbar-thumb {
  background-color: transparent;
}
#Search main .modal__wrap.show > .base-width {
  max-height: 95vh;
  overflow: auto;
  pointer-events: auto;
  padding: 20px 0;
}
#Search main .modal__wrap.show .form__container {
  position: relative;
  z-index: 1;
}
#Search main .modal__wrap.show .form__btn-wrap > input[type=submit] {
  transition: 0.3s ease;
}
#Search main .modal__btn {
  position: relative;
  margin: 0 auto -16px 0;
}
@media (max-width: 1153px) {
  #Search main .modal__btn {
    margin: 0;
  }
}
#Search main .modal__btn > a {
  min-width: 200px;
}
#Search main .form__btn-wrap > input[type=submit] {
  transition: none;
}
#Search main .search__table.pc {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #b2b2b2;
}
#Search main .search__table.pc th {
  width: 20%;
}
#Search main .search__table.pc td:not(:last-child), #Search main .search__table.pc th:not(:last-child) {
  border-right: 1px solid #b2b2b2;
}
#Search main .search__thead th {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  background: #f5f5f5;
  padding: 13px;
}
#Search main .search__tbody tr {
  height: 130px;
  border-bottom: 1px solid #b2b2b2;
}
#Search main .search__tbody td {
  vertical-align: middle;
}
#Search main .search__tbody td:nth-of-type(2) {
  padding: 16px;
}
#Search main .search__tbody td:nth-of-type(4) {
  padding: 16px 50px;
}
@media (max-width: 1153px) {
  #Search main .search__tbody td:nth-of-type(4) {
    padding: 16px 25px;
  }
}
#Search main .search__tbody td:not(:nth-of-type(4)) {
  text-align: center;
}
#Search main .search__tbody td img {
  max-width: 132px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
#Search main .search__tbody .search__btn {
  min-width: 75px;
}
#Search main .single__id {
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
#Search main .single__id span {
  margin-right: 22px;
}
#Search main .single__maker-ttl {
  font-size: 24px;
  letter-spacing: 0.08em;
  font-weight: 500;
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
#Search main .single__img-area {
  display: grid;
  grid-template-columns: minmax(550px, 4.3fr) 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 24px;
  margin-bottom: 80px;
}
#Search main .single__img01 {
  position: relative;
  grid-area: 1/1/5/1;
}
#Search main .single__img01 .prev-btn, #Search main .single__img01 .next-btn {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  top: calc(50% - 22.5px);
  background: white;
  opacity: 0.8;
}
@media (hover: hover) {
  #Search main .single__img01 .prev-btn:hover::before, #Search main .single__img01 .next-btn:hover::before {
    border-color: transparent #b2b2b2 transparent transparent;
  }
}
#Search main .single__img01 .prev-btn::before, #Search main .single__img01 .next-btn::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 11px 7px 0;
  border-color: transparent #000000 transparent transparent;
  transition: 0.3s ease;
  margin: auto;
}
#Search main .single__img01 .next-btn {
  right: 0;
  transform: rotate(180deg);
}
#Search main .single__content-area {
  margin-bottom: 50px;
}
#Search main .single__ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #b2b2b2;
}
#Search main .single__li {
  display: flex;
  width: 50%;
  border-bottom: 1px solid #b2b2b2;
  letter-spacing: 0.08em;
}
#Search main .single__li.exist, #Search main .single__li.remark {
  width: 100%;
}
#Search main .single__li:nth-child(1) {
  order: 1;
}
#Search main .single__li:nth-child(2) {
  order: 3;
}
#Search main .single__li:nth-child(3) {
  order: 5;
}
#Search main .single__li:nth-child(4) {
  order: 7;
}
#Search main .single__li:nth-child(5) {
  order: 9;
}
#Search main .single__li:nth-child(6) {
  order: 11;
}
#Search main .single__li:nth-child(7) {
  order: 13;
}
#Search main .single__li:nth-child(8) {
  order: 15;
}
#Search main .single__li:nth-child(9) {
  order: 17;
}
#Search main .single__li:nth-child(10) {
  order: 2;
}
#Search main .single__li:nth-child(11) {
  order: 4;
}
#Search main .single__li:nth-child(12) {
  order: 6;
}
#Search main .single__li:nth-child(13) {
  order: 8;
}
#Search main .single__li:nth-child(14) {
  order: 10;
}
#Search main .single__li:nth-child(15) {
  order: 12;
}
#Search main .single__li:nth-child(16) {
  order: 14;
}
#Search main .single__li:nth-child(17) {
  order: 16;
}
#Search main .single__li:nth-child(18) {
  order: 18;
}
#Search main .single__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  font-weight: 500;
  text-align: center;
  background: #f5f5f5;
  padding: 10px;
}
#Search main .single__data {
  width: calc(100% - 160px);
  padding: 16px 30px;
  line-height: 2.2;
}
#Search main .single__btn {
  margin-bottom: 100px;
}

/*==========================================
  Common
==========================================*/
/*==========================================
  Layout
==========================================*//*# sourceMappingURL=style.css.map */