@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, form {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure,
form, input, textarea, select, button, div {
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-align: left;
  word-break: break-word;
  line-break: strict;
  line-height: 1;
  color: #111;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  body, h1, h2, h3, h4, h5, h6, p, address,
  ul, ol, li, dl, dt, dd,
  table, th, td, img, figure,
  form, input, textarea, select, button, div {
    font-size: 1.4rem;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-spacing: 0;
}

input:not([type=file]), textarea, select, button {
  vertical-align: middle;
  background-color: #fff;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input:not([type=file]), select, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
}

button, input[type=submit], input[type=button], select, label {
  cursor: pointer;
}

input[type=radio]:checked {
  appearance: none;
}

blockquote {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
button,
input[type=submit],
input[type=button] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

@media screen and (min-width: 769px) {
  a:hover,
  button:hover,
  input[type=submit]:hover,
  input[type=button]:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
.wrap {
  max-width: 1280px;
  width: calc(100% - 160px);
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    width: 92%;
    max-width: initial;
  }
}

.content {
  overflow: hidden;
}

.en {
  font-family: "Roboto", "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
.content {
  padding-top: 155px;
}
@media screen and (max-width: 768px) {
  .content {
    padding-top: 85px;
  }
}

.header_wrap {
  position: fixed;
  z-index: 10000;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 160px);
  max-width: 1280px;
  height: 86px;
  padding: 0 55px 0 60px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 0 #D1D5DC;
}
@media screen and (max-width: 1200px) {
  .header_wrap {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .header_wrap {
    top: 20px;
    width: 92%;
    max-width: initial;
    height: 55px;
    padding: 0 12px;
    box-shadow: 0 2px 0 #D1D5DC;
  }
}
.header_wrap .logo {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .header_wrap .logo {
    width: 163px;
  }
}
.header_wrap .header_nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header_wrap .header_nav .btn_box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_wrap .header_nav .btn_box .search_menu_btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  background: url(../img/common/ico_search01.svg) no-repeat center center;
}
.header_wrap .header_nav .btn_box .search_menu_btn.active {
  background: url(../img/common/ico_search02.svg) no-repeat center center;
}
.header_wrap .header_nav .header_nav_list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .header_wrap .header_nav .header_nav_list {
    display: none;
  }
}
.header_wrap .header_nav .header_nav_list .header_nav_item {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #152851;
  line-height: 1.3;
}
.header_wrap .header_nav .header_nav_list .header_nav_item > a,
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn {
  position: relative;
}
.header_wrap .header_nav .header_nav_list .header_nav_item > a::before,
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #F5DC0A;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
@media screen and (min-width: 769px) {
  .header_wrap .header_nav .header_nav_list .header_nav_item > a:hover,
  .header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .header_wrap .header_nav .header_nav_list .header_nav_item > a:hover::before,
  .header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn:hover::before {
    width: 100%;
  }
}
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn {
  cursor: pointer;
}
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn::after {
  content: "▼";
  display: inline-block;
  margin-left: 0.25em;
  font-size: 1.5rem;
}
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn.active::before {
  width: 100%;
}
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn.active::after {
  content: "▲";
}
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_btn.active + .header_nav_box {
  opacity: 1;
  visibility: visible;
}
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_box {
  position: absolute;
  top: 75px;
  right: 0;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  width: max-content;
  max-width: 540px;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_box .header_sub_list .header_sub_item + .header_sub_item {
  margin-top: 20px;
}
.header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_box .header_sub_list .header_sub_item a {
  font-size: 2.4rem;
  font-weight: bold;
  color: #152851;
  line-height: 1.1;
  background: linear-gradient(transparent 96%, #F5DC0A 4%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.4s;
}
@media screen and (min-width: 769px) {
  .header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_box .header_sub_list .header_sub_item a:hover {
    opacity: 1;
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 769px) {
  .header_wrap .header_nav .header_nav_list .header_nav_item .header_nav_box .search_tag_wrap .search_tag_box .search_tag .tag_txt {
    font-size: 1.6rem;
  }
}

.gnav_bg {
  position: fixed;
  z-index: 9900;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .gnav_bg {
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
  }
}
.gnav_bg.active {
  opacity: 1;
  pointer-events: auto;
}

.menu_btn {
  display: none;
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: #F5DC0A;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .menu_btn {
    display: block;
  }
}
.menu_btn .line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 5px;
  background: #152851;
  transition: all 0.4s ease-out;
}
.menu_btn .line:nth-child(1) {
  top: -11px;
}
.menu_btn .line:nth-child(3) {
  bottom: -11px;
}
.menu_btn.active .line:nth-child(1) {
  top: 0;
  transform: rotate(45deg);
}
.menu_btn.active .line:nth-child(2) {
  opacity: 0;
}
.menu_btn.active .line:nth-child(3) {
  bottom: 0;
  transform: rotate(-45deg);
}

.searchnav {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: calc(50% - 640px);
  margin: auto;
  display: block;
  height: 100vh;
  padding-top: 136px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .searchnav {
    right: 80px;
  }
}
@media screen and (max-width: 768px) {
  .searchnav {
    left: 0;
    right: 0;
    padding-top: 100px;
    -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  }
}
.searchnav.active {
  opacity: 1;
  visibility: visible;
}
.searchnav .searchnav_wrap {
  display: none;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: calc(100vh - 136px);
  margin: 0 auto;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .searchnav .searchnav_wrap {
    width: 100%;
    height: calc(100vh - 100px);
    padding: 15px 4% 120px;
  }
}
.searchnav .searchnav_wrap .searchnav_txt {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  color: #9C9C9C;
}
.searchnav .searchnav_cnt {
  width: 617px;
  margin-left: auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .searchnav .searchnav_cnt {
    width: 100%;
    margin: 0;
    padding: 40px 4%;
  }
}
.searchnav .word_search_box {
  margin-bottom: 24px;
}
.searchnav .word_search_box .word_search_ttl {
  margin-bottom: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #152851;
}
.searchnav .word_search {
  position: relative;
  display: flex;
  width: 100%;
  height: 60px;
  border: 1px solid #152851;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .searchnav .word_search {
    height: 54px;
  }
}
.searchnav .word_search .word_search_btn {
  flex-shrink: 0;
  width: 62px;
  height: 100%;
  background: url(../img/common/ico_search01.svg) no-repeat;
  background-position: calc(100% - 2px) center;
  background-size: 20px;
}
@media screen and (max-width: 768px) {
  .searchnav .word_search .word_search_btn {
    width: 40px;
    background-position: calc(100% - 5px) center;
    background-size: 15px;
  }
}
.searchnav .word_search .word_search_txt {
  width: 100%;
  height: 100%;
  padding: 0 20px 0 10px;
  background: none;
  color: #152851;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .searchnav .word_search .word_search_txt {
    padding: 0 15px 0 7px;
    font-size: 1.6rem;
  }
}
.searchnav .word_search .word_search_txt::placeholder {
  color: #152851;
}
.searchnav .searchnav_box + .searchnav_box {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #D1D5DC;
}
.searchnav .searchnav_box.nocheck .search_tag_wrap .search_tag_box .search_tag .tag_txt::before {
  display: none;
}
@media screen and (min-width: 769px) {
  .searchnav .search_tag_wrap .search_tag_box .search_tag .tag_txt {
    font-size: 1.6rem;
  }
}

.gnav {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100vh;
  padding-top: 136px;
  background: #F5DC0A;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.gnav.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .gnav {
    padding-top: 100px;
  }
}
.gnav .gnav_wrap {
  display: none;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 4% 120px;
  height: calc(100vh - 136px);
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap {
    padding: 15px 4% 120px;
    height: calc(100vh - 100px);
  }
}
.gnav .gnav_wrap .gnav_list .gnav_item + .gnav_item {
  margin-top: 15px;
}
.gnav .gnav_wrap .gnav_list .gnav_item.line {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #fff;
}
.gnav .gnav_wrap .gnav_list .gnav_item > a,
.gnav .gnav_wrap .gnav_list .gnav_item .gnav_item_txt {
  font-size: 2.4rem;
  font-weight: bold;
  color: #152851;
  line-height: 1.3;
}
.gnav .gnav_wrap .gnav_list .gnav_item a,
.gnav .gnav_wrap .gnav_list .gnav_item .gnav_item_txt {
  background: linear-gradient(transparent 96%, #152851 4%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.4s, opacity 0.4s;
}
@media screen and (min-width: 769px) {
  .gnav .gnav_wrap .gnav_list .gnav_item a:hover,
  .gnav .gnav_wrap .gnav_list .gnav_item .gnav_item_txt:hover {
    background-size: 100% 100%;
  }
}
.gnav .gnav_wrap .gnav_list .gnav_item > a,
.gnav .gnav_wrap .gnav_list .gnav_item .gnav_item_txt {
  background-size: 100% 100%;
}
.gnav .gnav_wrap .gnav_list .gnav_item .gnav_sub_list {
  margin-top: 15px;
}
.gnav .gnav_wrap .gnav_list .gnav_item .gnav_sub_list .gnav_sub_item + .gnav_sub_item {
  margin-top: 15px;
}
.gnav .gnav_wrap .gnav_list .gnav_item .gnav_sub_list .gnav_sub_item a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #152851;
  line-height: 1.3;
}
.gnav .gnav_wrap .acc_btn {
  position: relative;
  display: block;
  cursor: pointer;
}
.gnav .gnav_wrap .acc_btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "▼";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #152851;
  font-size: 1.6rem;
}
.gnav .gnav_wrap .acc_btn.open::before {
  content: "▲";
}
.gnav .gnav_wrap .acc_box {
  display: none;
}
.gnav .gnav_wrap .search_tag_wrap {
  background: #fff;
  padding: 2rem 4%;
  margin-top: 24px;
  border-radius: 10px;
}

/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
.footer_wrap {
  padding: 60px 0;
  background: #fff;
  border-top: 3px solid #152851;
}
@media screen and (max-width: 768px) {
  .footer_wrap {
    padding: 50px 0;
    border-width: 2px;
  }
}
.footer_wrap .wrap {
  position: relative;
}
.footer_wrap .logo {
  width: 500px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .logo {
    width: 180px;
    margin-bottom: 24px;
  }
}
.footer_wrap .footer_nav .footer_nav_list {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav .footer_nav_list {
    flex-direction: column;
    gap: 20px;
  }
}
.footer_wrap .footer_nav .footer_nav_list .footer_nav_item a {
  background: linear-gradient(transparent 96%, #152851 4%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.4s;
}
@media screen and (min-width: 769px) {
  .footer_wrap .footer_nav .footer_nav_list .footer_nav_item a:hover {
    opacity: 1;
    background-size: 100% 100%;
  }
}
.footer_wrap .footer_nav .footer_nav_list .footer_nav_item > a,
.footer_wrap .footer_nav .footer_nav_list .footer_nav_item .footer_nav_txt {
  font-size: 2.4rem;
  font-weight: bold;
  color: #152851;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav .footer_nav_list .footer_nav_item > a,
  .footer_wrap .footer_nav .footer_nav_list .footer_nav_item .footer_nav_txt {
    font-size: 1.8rem;
  }
}
.footer_wrap .footer_nav .footer_nav_list .footer_nav_item .footer_nav_txt {
  display: block;
}
.footer_wrap .footer_nav .footer_nav_list .footer_nav_item .footer_sub_list {
  margin-top: 15px;
}
.footer_wrap .footer_nav .footer_nav_list .footer_nav_item .footer_sub_list .footer_sub_item + .footer_sub_item {
  margin-top: 12px;
}
.footer_wrap .footer_nav .footer_nav_list .footer_nav_item .footer_sub_list .footer_sub_item a {
  color: #152851;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav .footer_nav_list .footer_nav_item .footer_sub_list .footer_sub_item a {
    font-size: 1.6rem;
  }
}
.footer_wrap .pagetop_btn {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .footer_wrap .pagetop_btn {
    position: relative;
    text-align: center;
    margin-top: 24px;
  }
}
.footer_wrap .pagetop_btn a {
  display: inline-block;
  padding-left: 35px;
  background: url(../img/common/ico_arw04.svg) no-repeat left center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .footer_wrap .pagetop_btn a {
    padding-left: 28px;
    background-size: 20px;
    font-size: 1.8rem;
  }
}
.footer_wrap .copy {
  padding-top: 30px;
  margin-top: 60px;
  border-top: 1px solid #D1D5DC;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .footer_wrap .copy {
    margin-top: 24px;
  }
}

.footer_search {
  background: #F5DC0A;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .footer_search {
    padding: 40px 0;
  }
}
.footer_search .wrap {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .footer_search .wrap {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer_search .wrap {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.footer_search .left_box {
  flex-shrink: 0;
  width: 271px;
  height: 281px;
  padding-top: 130px;
  background: url(../img/common/tag_bg01.png) no-repeat center top;
  background-size: 100%;
}
.footer_search .left_box .txt {
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.8rem;
}
.footer_search .right_box {
  max-width: 730px;
  width: 100%;
  padding: 60px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1000px) {
  .footer_search .right_box {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer_search .right_box {
    padding: 40px 4%;
  }
}
.footer_search .right_box .ttl_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 40px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #D1D5DC;
  background: url(../img/common/ttl_ico01.svg) no-repeat;
  background-position: left 8px;
}
@media screen and (max-width: 768px) {
  .footer_search .right_box .ttl_box {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 36px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    background-size: 24px;
    background-position: left 4px;
  }
}
.footer_search .right_box .ttl_box .ttl {
  font-size: 4.8rem;
  font-weight: bold;
  color: #152851;
}
@media screen and (max-width: 768px) {
  .footer_search .right_box .ttl_box .ttl {
    font-size: 3.2rem;
  }
}
.footer_search .right_box .ttl_box .ttl_sub {
  font-size: 2.4rem;
  font-weight: bold;
  color: #F5DC0A;
}
@media screen and (max-width: 768px) {
  .footer_search .right_box .ttl_box .ttl_sub {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/
.txt {
  line-height: 1.8;
}

.bold {
  font-weight: bold;
}

.txt_up {
  text-transform: uppercase;
}

.txt_noup {
  text-transform: none;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.ib {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .pc_ib {
    display: inline-block;
  }
  .pc_tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
  }
}
.tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.txt_yellow01 {
  color: #F5DC0A;
}

.txt_blue01 {
  color: #152851;
}

.txt_green01 {
  color: #28B4A0;
}

@media screen and (max-width: 768px) {
  .img img {
    width: 100%;
  }
  .sp_ib {
    display: inline-block;
  }
}
/* ------------------------------
	.btn
------------------------------ */
.more_btn {
  display: flex;
  justify-content: flex-end;
}
.more_btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #152851;
}
@media screen and (max-width: 768px) {
  .more_btn a {
    font-size: 1.4rem;
  }
}
.more_btn a .ico {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #152851;
  background: url(../img/common/ico_arw02.svg) no-repeat center center;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media screen and (max-width: 768px) {
  .more_btn a .ico {
    width: 40px;
    height: 40px;
    background-size: 9px;
  }
}
@media screen and (min-width: 769px) {
  .more_btn a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .more_btn a:hover .ico {
    background: #152851 url(../img/common/ico_arw02_hov.svg) no-repeat center center;
  }
}

/* ------------------------------
	.box
------------------------------ */
.flex {
  display: flex;
  justify-content: space-between;
}

.search_tag_wrap .search_tag_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search_tag_wrap .search_tag_box .search_tag {
  position: relative;
  display: flex;
  cursor: pointer;
}
.search_tag_wrap .search_tag_box .search_tag .tag_txt {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 10px 24px;
  border-radius: 20px;
  background: #28B4A0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .search_tag_wrap .search_tag_box .search_tag .tag_txt {
    font-size: 1.4rem;
  }
}
.search_tag_wrap .search_tag_box .search_tag .tag_txt::before {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/common/ico_check01.svg) no-repeat center center;
  background-size: 100%;
  border-radius: 0;
  margin-right: 8px;
}
.search_tag_wrap .search_tag_box input[type=checkbox] {
  width: 1px;
  margin: 0;
  visibility: hidden;
}
.search_tag_wrap .search_tag_box input[type=checkbox]:checked {
  appearance: none;
}
.search_tag_wrap .search_tag_box .search_tag input[type=checkbox]:checked + .tag_txt {
  background: #005246;
}
.search_tag_wrap .search_tag_box .search_tag input[type=checkbox]:checked + .tag_txt::before {
  background: url(../img/common/ico_check02.svg) no-repeat center center;
  background-size: 100%;
}
.search_tag_wrap .btn_box {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .search_tag_wrap .btn_box {
    gap: 12px;
    justify-content: center;
  }
}
.search_tag_wrap .btn_box .search_clear_btn,
.search_tag_wrap .btn_box .search_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 38px;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .search_tag_wrap .btn_box .search_clear_btn,
  .search_tag_wrap .btn_box .search_btn {
    height: 36px;
  }
}
.search_tag_wrap .btn_box .search_clear_btn {
  background: #fff;
  border: 1px solid #152851;
  color: #152851;
}
.search_tag_wrap .btn_box .search_btn {
  background: #152851;
  color: #fff;
}

/* ------------------------------
	.breadcrumb
------------------------------ */
.breadcrumb {
  position: relative;
  z-index: 10;
}
.breadcrumb .breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb_list {
    gap: 6px;
  }
}
.breadcrumb .breadcrumb_list li {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 1.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb_list li {
    font-size: 0.8rem;
    gap: 0 6px;
  }
}
.breadcrumb .breadcrumb_list li:not(:first-child)::before {
  content: "";
  display: block;
  width: 7px;
  height: 1em;
  background: url(../img/common/ico_arw01.svg) no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb_list li:not(:first-child)::before {
    width: 4px;
  }
}
.breadcrumb .breadcrumb_list li a {
  color: #152851;
}
.breadcrumb .breadcrumb_list li .breadcrumb_txt {
  display: block;
}

/* ------------------------------
	.pager
------------------------------ */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .pager {
    gap: 10px;
    margin-top: 40px;
  }
}
.pager .pager_btn a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: url(../img/common/ico_arw03.svg) no-repeat center center;
  background-size: 100%;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media screen and (max-width: 768px) {
  .pager .pager_btn a {
    width: 40px;
    height: 40px;
  }
}
.pager .pager_btn a:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .pager .pager_btn a:hover {
    background: url(../img/common/ico_arw03_hov.svg) no-repeat center center;
    background-size: 100%;
  }
}
.pager .pager_btn.prev {
  transform: rotate(180deg);
}
.pager .pager_btn.disabled a {
  background: url(../img/common/ico_arw05.svg) no-repeat center center;
  background-size: 100%;
  pointer-events: none;
}
.pager .pager_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .pager .pager_list {
    gap: 5px;
  }
}
.pager .pager_list .pager_item {
  color: #152851;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .pager .pager_list .pager_item {
    font-size: 1.3rem;
  }
}
.pager .pager_list .pager_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #152851;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  -webkit-transition: background 0.4s ease, color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease;
  color: #152851;
}
@media screen and (max-width: 768px) {
  .pager .pager_list .pager_item a {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
}
.pager .pager_list .pager_item a:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .pager .pager_list .pager_item a:hover {
    background: #152851;
    color: #fff;
  }
}
.pager .pager_list .pager_item.current a {
  background: #152851;
  color: #fff;
}

/* ------------------------------
	.sidenav_wrap
------------------------------ */
.sidenav_wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 1000px) {
  .sidenav_wrap {
    gap: 40px;
  }
}
.sidenav_wrap .main_content {
  width: calc(100% - 370px);
  max-width: 800px;
}
@media screen and (max-width: 1000px) {
  .sidenav_wrap .main_content {
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 768px) {
  .sidenav_wrap .main_content {
    width: 100%;
  }
}
.sidenav_wrap .sidenav {
  flex-shrink: 0;
  width: 320px;
}
@media screen and (max-width: 1000px) {
  .sidenav_wrap .sidenav {
    width: 200px;
  }
}
@media screen and (max-width: 850px) {
  .sidenav_wrap .sidenav {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sidenav_wrap .sidenav {
    position: sticky;
    top: 155px;
    right: 0;
  }
}
.sidenav_wrap .sidenav .sidenav_box + .sidenav_box {
  margin-top: 40px;
}
.sidenav_wrap .sidenav .sidenav_ttl_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .sidenav_wrap .sidenav .sidenav_ttl_box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sidenav_wrap .sidenav .sidenav_ttl_box .sidenav_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #152851;
  line-height: 1.3;
}
.sidenav_wrap .sidenav .sidenav_ttl_box .sidenav_ttl_sub {
  font-size: 1.6rem;
  font-weight: bold;
  color: #F5DC0A;
}
.sidenav_wrap .sidenav .pickup_list {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sidenav_wrap .sidenav .pickup_list {
    order: 3;
  }
}
.sidenav_wrap .sidenav .pickup_list .pickup_item + .pickup_item {
  margin-top: 24px;
}
.sidenav_wrap .sidenav .pickup_list .pickup_item a {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 769px) {
  .sidenav_wrap .sidenav .pickup_list .pickup_item a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .sidenav_wrap .sidenav .pickup_list .pickup_item a:hover .img img {
    transform: scale(1.05);
  }
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .img_box {
  flex-shrink: 0;
  position: relative;
  width: 120px;
}
@media screen and (max-width: 1000px) {
  .sidenav_wrap .sidenav .pickup_list .pickup_item .img_box {
    width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .sidenav_wrap .sidenav .pickup_list .pickup_item .img_box {
    max-width: 45%;
  }
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .img {
  position: relative;
  width: 100%;
  padding-top: 75.556%;
  overflow: hidden;
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .img img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box {
  margin-left: 16px;
}
@media screen and (max-width: 1000px) {
  .sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box {
    margin-left: 10px;
  }
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box .item_ttl {
  min-height: 4.5em;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box .item_ttl {
    font-size: 1.4rem;
  }
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box .cate_box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 8px;
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box .cate_box .cate_txt {
  padding: 2px 13px 4px;
  border-radius: 15px;
  background: #28B4A0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box .cate_box .cate_txt {
    padding: 5px 13px;
    font-size: 1rem;
  }
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box .cate_box .cate_txt::before {
  content: "#";
}
.sidenav_wrap .sidenav .pickup_list .pickup_item .txt_box .item_date {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
}
.sidenav_wrap .sidenav .category_list {
  width: 100%;
  padding: 20px;
  background: #F3F4F6;
  border-radius: 5px;
}
.sidenav_wrap .sidenav .category_list .category_item {
  width: 100%;
  padding: 10px 0;
}
.sidenav_wrap .sidenav .category_list .category_item + .category_item {
  border-top: 1px solid #D1D5DC;
}
.sidenav_wrap .sidenav .category_list .category_item a {
  font-size: 1.6rem;
  line-height: 1.3;
}