/*
Template: businesspress
Theme Name: BusinessPress Child
*/

/*全体設定*/
/*モーダル*/
/*ヘッダー*/
/*フッター*/
/*トップページ*/
/*説明書*/
/*入会説明*/
/*専門用語早引辞書*/
/*タグコピー*/



/*------------------------------------------全体設定------------------------------------------*/
/*全体コンテンツ幅*/
*, *:before, *:after { box-sizing: border-box;}

#content {
  max-width: 100%;
  padding: 0;
}

.red {
  color: #f00;
}
.green {
  color: green;
}
.dark_blue {
    color: #42488d;
}
.orange {
  color: orange;
}
.blue {
  color: blue;
}
.pink {
  color: pink;
}
.yellow {
  color: yellow;
}
.purple {
  color: purple;
}
.bold{
  font-weight: bold;
}

.big {
  font-size: 150%;
  font-weight: bold;
}

/*目次へ戻る*/
.back_manual {
  position: fixed;
  right: 1.6vw;
  bottom: 6vw;
  z-index: 999;
}
.back_manual a {
  display: block;
  background: #555;
  color: #fff;
  text-decoration: none;
  padding: 0.5vw;
  border-radius: 100%;
  font-size: 1.2vw;
}

/*ホームへ戻る*/
.back_home {
  position: fixed;
  right: 1.6vw;
  bottom: 10vw;
  z-index: 999;
}
.back_home a {
  color: #000;
  text-decoration: none;
  background: #fff;
  border: 2px solid #000;
  padding: 0.3vw;
  border-radius: 0.3vw;
  font-weight: bold;
}
.back_home a:hover {
  opacity: 0.8;
}

/*toggle_btn*/
.toggle_btn {
  color: #d00;
  text-decoration: underline;
  cursor: pointer;
}
.toggle_btn:hover {
  opacity: 0.6;
}
.toggle_contents {
  display: none;
}

.no_br > br {
  display: none;
}

.fix {
  table-layout: fixed;
}
th.center {
  text-align: center;
}
th, td {
  vertical-align: top;
}


.fix.server th {
  background: #156082;
  color: #fff;
}
.bg1 td {
  background: #ccd2d8;
}
.bg2 td {
  background: #e7eaed;
}

/*翻訳ポップアップより下*/
#gt_float_wrapper {
  z-index: 9999 !important;
}

/*pre*/
pre {
  border: 3px solid;
  position: relative;
  margin-bottom: 0;
}
pre:before {
  content: "この中をコピーしてください";
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
  color: #fff;
  font-weight: bold;
  padding: 0.2vw 1vw;
}
pre br {
  display: none;
}

.tab_buttons {
  display: flex;
  flex-wrap: wrap;
}
.tab_buttons > a {
  width: calc(100% / 5);
  color: #fff;
  text-decoration: none;
  padding: 0.4vw 1vw;
  font-size: 0.9vw;
  line-height: 1.2;
}
.tab_buttons > a:hover {
  color: #fff;
  opacity: 0.6;
}

/*------------------------------------------モーダル------------------------------------------*/
.modal{
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  left: 0;
}
.modal-bg{
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
/* モーダル本体 */
.modal-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll; /* はみ出た部分はスクロールさせる */
  height: 60%;/* これが無いと「overflow:scroll」が利かない */
  width: 60%;/* これが無いと「overflow:scroll」が利かない */
  background: white;
  padding: 40px;
}
/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}


.login_logout .modal-content{
  width: auto;
  height: auto;
}

/*------------------------------------------ヘッダー------------------------------------------*/
.site-header {
  margin-bottom: 0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 3;
}
/*クローンは非表示*/
.main-header-clone {
  display: none;
}

/*メインヘッダー*/
.main-header {
  padding: 0 0 1vw;
}
.main-header-content {
  max-width: 100%;
  padding: 0 1vw;
}
.page_h1 {
  font-size: 1.4vw;
  margin: 0;
}
.page_h1 a {
  text-decoration: none;
  color: #111;
}
/*ハンバーガーメニュー表示*/
.drawer-hamburger,.drawer-navigation {
  display: block;
}

/*ヘッダー上部メニュー*/
.header_main_menu {
  display: flex;
}
/*地域・オンライン*/
.header_main_menu_left {
  display: flex;
  align-items: center;
  gap: 1vw;
}

/*広告枠*/
.ad_slider {
  width: 25vw;
}
.swiper-slide-inner a {
  vertical-align: sub;
}

.carousel_wrap {
  display: none;
}
#carousel {
  animation-name: fadein;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}


/*広告枠slick*/
.header_ad_slider {
	width: 12vw;
    display: flex;
    align-items: center;
}
.slider {
  opacity: 0;
  transition: opacity .25s ease;
}
.slider.slick-initialized {
  opacity: 1;
}

/*検索・QR*/
.header_main_menu_right {
  display: flex;
  align-items: center;
  gap: 1vw;
}
.header_main_menu_right_item #wp-block-search__input-1 {
  padding: 0 0 0 0.5vw;
  margin: 0;
  width: 15vw;
}
.header_main_menu_right_item .wp-block-search__button.wp-element-button {
  padding: 0vw 1vw;
}

.header_main_menu_right_item.qr img {
  width: 3vw;
}

/*サブヘッダー*/
.sub_header_content {
  padding: 0 1vw;
}

/*各メニュー*/
.page_label {
  margin: 0;
}

.page_label ul {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 1vw;
  justify-content: space-between;
  justify-content: center;
}
.page_label a {
  font-size: 1vw;
  text-decoration: none;
  background: #fff;
  color: #2a5786;
  border-radius: 3px;
  padding: 0.2vw 1vw;
  font-weight: bold;
  border: 1px solid #2a5786;
}
.page_label a.active {
  background: #2a5786;
  color: #fff;
}

/*------------------------------------------フッター------------------------------------------*/


/*------------------------------------------トップページ------------------------------------------*/
/*目次*/
.manual_index_list {
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: start;
  box-sizing: border-box;
  justify-content: space-evenly;
}
.manual_index_item {
  width: calc(100% / 6 - 1vw);
  position: relative;
  margin-bottom: 0.4vw;
}
.manual_index_item a {
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 12px 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
  font-size: 1.2vw;
  text-indent: -1em;
  padding: 0.2vw 1vw 0.2vw 2vw;
  box-sizing: border-box;
  line-height: 1.4;
  height: 4vw;
}
.manual_index_item a:hover {
  color: #fff;
  opacity: 0.8;
}

.index_popup {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #fff;
  padding: 1vw;
  display: none;
  border: 3px solid;
  z-index: 1;
}

.manual_index_item i {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #555;
  background: #fff;
  border-radius: 100%;
  cursor: pointer;
}
.manual_index_item i:hover {
  opacity: 0.8;
}

/*説明書スライダー*/
/*WordPressの説明書*/
.top_slider {
  padding: 1vw;
  background: #111;
}
.top_slider .swiper-slide-inner {
  margin: 0 1vw;
  position: relative;
}
.top_slider .swiper-slide-inner:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.top_slider .swiper-slide-inner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_slider .swiper-button-prev, .top_slider .swiper-button-next {
  color: #fff;
  background: #111;
}
.top_slider .swiper-button-prev:after, .top_slider .swiper-button-next::after {
  font-size: 1.6vw;
}
.top_slider .swiper-pagination-bullet {
  background: #fff;
}

.top_slider a {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  display: block;
  height: 100%;
  padding: 1vw;
}

/*説明書部分*/
.manual_container {
  margin: 1vw 0 0;
}
.manual_index_container {
  position: relative;
  z-index: 1;
}

.manual_description {
  display: flex;
  align-items: center;
  margin-bottom: 0.4vw;
}
.manual_title {
  background: #333;
  color: #fff;
  padding: 0.2vw 1vw;
  font-size: 1.2vw;
  font-weight: bold;
}
.manual_index_label {
  color: #f00;
  font-weight: bold;
  font-size: 1.2vw;
}

.manual_section_title h2 {
  color: #fff;
  font-weight: bold;
  padding: 1vw 2vw;
  font-size: 1.2vw;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.manual_section_title h2 a {
  color: #fff;
}

.manual_section {
  position: relative;
  padding-top: 6vw;
  margin-top: -6vw;
}
.manual_section i {
  position: absolute;
  left: 50%;
  bottom: 1vw;
  transform: translateX(-50%);
  font-size: 2vw;
  color: #f00;
}
.manual_section.section1 {
  border-top: 2px dashed #777;
}
.manual_section_inner {
  margin: 1vw;
  border: 5px solid;
}

.manual_section_flexbox {
  display: flex;
  padding: 2vw 1vw 4vw 1vw;
  gap: 1vw;
  align-items: start;
}

.manual_left {
  width: 70vw;
  display: flex;
  box-sizing: border-box;
  background: #fff;
  border: 5px solid #555;
}
.manual_left_text {
  width: 80%;
  padding: 1vw;
  box-sizing: border-box;
  border-right: 2px dashed #ddd;
}

/*掲示板ガイド*/
.forum_guide {
  border: 3px solid #267b26;
  margin-top: 3vw;
  border-radius: 0.3vw;
  background: #dfd;
  padding-bottom: 1vw;
}
.forum_guide_title {
  font-size: 1.2vw;
  font-weight: bold;
  background: #267b26;
  color: #fff;
  text-align: center;
}
.forum_guide_caption {
  padding: 1vw 2vw;
}
.forum_guide a {
  display: block;
  text-align: center;
  font-size: 1vw;
}

.manual_left_thumbnail_item {
  margin-bottom: 1vw;
}
.manual_left_thumbnail {
  width: 20%;
  padding: 1vw;
  box-sizing: border-box;
}
.manual_left_thumbnail_caption {
  font-size: 1vw;
  color: #555;
}

.manual_right {
  width: 30vw;
  box-sizing: border-box;
  position: sticky;
  top: 6vw;
}
.manual_video_wrap video {
  width: 100%;
}

/*入会の説明*/
.afi_guide {
    width: 97vw;
    margin: 2vw auto;
    border: 3px solid #f00;
    padding: 1vw;
    box-sizing: border-box;
    background: #f7d322;
    font-size: 1.2vw;
	font-weight: bold;
}

/*会員登録フォーム*/
.top_registration {
    width: 60vw;
    margin: 3vw auto;
}


/*------------------------------------------専門用語早引辞書------------------------------------------*/
/*全体*/
.dictionary_contents {
  width: 90vw;
  margin: auto;
}

/*グループジャンプボタン*/
.group_jump {
  display: flex;
  justify-content: center;
  gap: 1vw;
  margin: 1vw 0;
}
.group_jump_item a {
  background: #555;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.2vw 1vw;
  box-sizing: border-box;
  font-size: 1vw;
  border-radius: 5px;
  border: 3px solid #555;
}
.group_jump_item a:hover {
  background: #fff;
  border: 3px solid #555;
  color: #555;
  box-sizing: border-box;
}

.dictionary_index_title {
  display: flex;
  align-items: center;
  font-size: 2vw;
  position: sticky;
  top: 5.4vw;
  background: #fff;
}
.dictionary_index_title_inner {
  margin: 0 2vw;
}
.dictionary_index_title .emphasis {
  font-size: 3vw;
  color: #d00;
}

.dictionary_index_title::before,.dictionary_index_title::after {
  content: "";
  flex-grow: 1;
  background: #555;
  height: 3px;
}

/*目次デザイン*/
.dictionary_h2 {
  font-size: 3vw;
  margin: 1vw 0;
  display: flex;
  align-items: center;
}
.dictionary_h2:after {
  content: "";
  display: block;
  background: #333;
  height: 4px;
  width: 100%;
  flex: 1;
  margin: 03vw;
}


.child_wrap_title {
  font-size: 2vw;
  text-align: center;
  background: #555;
  color: #fff;
  position: sticky;
  top: 0;
}

.dictionary_index_label {
  margin: 2vw auto;
  text-align: center;
  position: relative;
  width: 10vw;
  font-size: 1.2vw;
  font-weight: bold;
}
.dictionary_index_label:before,.dictionary_index_label:after {
  display: inline-block;
    position: absolute;
    width: 10px;
    height: 100%;
    border: 3px solid #333;
    box-sizing: border-box;
    content: '';
}
.dictionary_index_label:before {
  top: 0;
    left: 0;
    border-right: none;
}
.dictionary_index_label:after {
  bottom: 0;
    right: 0;
    border-left: none;
}

.dictionary_index {
  font-size: 1.2vw;
}

.dictionary_index .parent > li {
  position: relative;
}
.dictionary_index .parent > li a {
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
}

.dictionary_index .parent > li a:hover {
  text-decoration: underline;
}

.dictionary_index_group {
  display: flex;
  justify-content: center;
  gap: 0.4vw;
  margin-bottom: 1vw;
}

.child_head .index_child_contents {
  display: flex;
  flex: 1;
}
.index_child_contents_title {
  width: 30%;
}
.index_child_contents_description {
  width: 70%;
}

.child_wrap {
  display: none;
  position: relative;
  z-index: 999;
}

.dictionary_index .parent span {
  text-decoration: none;
  background: #bc5c5c;
  color: #fff;
  width: 3vw;
  height: 3vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 1px 1px #ddd;
  box-sizing: border-box;
  transition: none;
  border-bottom: 4px solid #894343;
  border-radius: 5px;
  cursor: pointer;
}
.dictionary_index .dictionary_index_u .parent span {
  background: #5c8fbc;
  border-bottom: 4px solid #446a8b;
}
.dictionary_index .dictionary_index_u .parent span:hover {
  border-bottom: 3px solid #446a8b;
}
.dictionary_index .parent span:hover {
  box-shadow: 0 2px 1px 1px #ddd;
  border-bottom: 2px solid #894343;
  transition: none;
  height: 2.9vw;
  transform: translateY(0.1vw);
}

.dictionary_index .child {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80vw;
  transform: translate(-50%,-50%);
  border: 3px solid #ddd;
  box-sizing: border-box;
  background: #fff;
  z-index: 999;
  height: 80vh;
  overflow-y: auto;
}

.index_child_contents {
  padding: 0 1vw;
}

.dictionary_index .child li:not(.child_close) {
  margin: 1vw;
  display: flex;
  border-top: 2px dashed #ddd;
  padding-top: 0.8vw;
}
.dictionary_index .child li.child_head {
  border-top: 0;
}
.dictionary_index .child li:first-child {
  border-top: 0;
}
.dictionary_index .child li:last-child {
  margin: 0;
}
.index_child_label {
  background: #d79898;
  color: #fff;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 0 1vw;
  width: 3vw;
}
.dictionary_index_u .index_child_label {
  background: #90b0cd;
}

.index_child_contents {
  padding: 0 1vw;
  width: 100%;
}

.index_child_item {
  display: flex;
  align-items: start;
  margin-bottom: 1vw;
  padding-bottom: 1vw;
  padding-top: 1vw;
  border-top: 2px dashed #ddd;
  gap: 2vw;
  box-sizing: border-box;
}
.index_child_item:first-child {
  border-top: 0;
}

.index_child_item a:first-child {
  width: 30%;
}
.index_child_item a:last-child {
  width: 70%;
}


.dictionary_index ul {
  list-style: none;
  margin: 0;
}


.child_close {
  font-size: 1.4vw;
  font-weight: bold;
  background: #333;
  line-height: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: sticky;
  bottom: 0;
  right: 0;
  color: #fff;
  z-index: 999;
  justify-content: center;
  padding: 0.8vw 0;
}


.dictionary_index_u {
  display: grid;
  grid-template-columns: min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content;
  justify-content: center;
  gap: 0.4vw;
}
.dictionary_index_u_item a:not(.index_child_item a) {
  text-decoration: none;
  background: #5c8fbc;
  color: #fff;
  width: 3vw;
  height: 3vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 1px 1px #ddd;
  box-sizing: border-box;
  transition: none;
  border-bottom: 3px solid #446a8b;
  border-radius: 5px;
}

/*各見出し*/
.dictionary_title {
  font-size: 2.4vw;
  border: 2px solid #333;
  display: flex;
  align-items: center;
}
.dictionary_title_label {
  background: #ddd;
  line-height: 1;
  padding: 1vw;
  width: 14vw;
  text-align: center;
}
.dictionary_title_text .red_bold {
  font-size: 2.8vw;
  color: #d00;
}

.dictionary_title {
  border-color: #bc5c5c;
}
.dictionary_title_label {
  background: #bc5c5c;
  color: #fff;
}
.dictionary_title_text {
  padding-left: 2vw;
}

/*各コンテンツ*/
.dictionary_item {
  margin-bottom: 3vw;
  padding-top: 120px;
  margin-top: -120px;
}
.dictionary_item_title {
  background: #bc5c5c;
  color: #fff;
  padding: 1vw;
  border: 1px solid #bc5c5c;
  font-size: 1.6vw;
}
.dictionary_item_text {
  border: 3px solid #bc5c5c;
  padding: 2vw 1vw;
  font-size: 1.2vw;
}


/*英語カラーセット*/
.dictionary_title.us {
  border-color: #5c8fbc;
}
.dictionary_title.us .dictionary_title_label {
  background: #5c8fbc;
}
.dictionary_item.us .dictionary_item_title {
  background: #5c8fbc;
  border-color: #5c8fbc;
}
.dictionary_item.us .dictionary_item_text {
  border-color: #5c8fbc;
}

/*------------------------------------------掲示板------------------------------------------*/
/*ベストアンサー*/
.ba_container {
  padding: 1vw;
}
.ba_item {
  cursor: pointer;
  margin-bottom: 0.6vw;
}
.ba_item_header {
  display: flex;
}
.ba_item_header_q {
  width: 50%;
  border-bottom: 3px solid #0094dd;
  background: #ecf9ff;
  padding: 0.3vw 1vw;
}
.ba_item_header_a {
  width: 50%;
  border-bottom: 3px solid #d00;
  background: #fdeeee;
  padding: 0.3vw 1vw;
}
.ba_item_contents {
  padding: 1vw;
  display: none;
  background: #fbfbfb;
  border: 2px solid #ddd;
  border-top: 0;
}

/*注意文非表示*/
.bbp-template-notice {
  display: none;
}

/*トピックフォーム*/
.new_topic_guide {
  font-size: 1.2vw;
  margin: 3vw 0 1vw !important;
  display: block;
  font-weight: bold;
  border-bottom: 2px solid;
  padding: 0.6vw !important;
  background: #efefef;
}

/*------------------------------------------タグコピー------------------------------------------*/
.tagpage_container {
  width: 95vw;
  margin: auto;
  padding: 2vw 0;
}
.tagpage_caption {
  font-size: 1.2vw;
  margin-bottom: 2vw;
}
.tagpage_jump_buttons {
  display: flex;
  margin-bottom: 1vw;
  position: sticky;
  top: 5.8vw;
  z-index: 999;
  background: #fff;
  padding-bottom: 0.6vw;
}
.tagpage_jump_button a {
  display: block;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0.6vw;
  text-align: center;
  line-height: 1.2;
  padding: 0.5vw 0;
}
.tagpage_jump_button {
  width: 8vw;
  margin-right: 1vw;
}
.tagpage_item {
  display: flex;
  border: 2px solid #000;
  padding: 2vw;
  justify-content: space-between;
  margin-bottom: 2vw;
}
.tag_copy_block {
  width: 40vw;
}
.tag_sample_block {
  width: 48vw;
  display: flex;
  justify-content: space-between;
}
.tag_copy_title {
  font-size: 1.2vw;
  margin-bottom: 1vw;
  border-left: 10px solid #d00;
  padding-left: 1vw;
  background: #fff5f5;
}
.tag_copy_main {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 0.5vw;
}
.tag_copy_pre {
  width: 75%;
}
.tag_copy_pre pre {
  padding: 0.5vw;
}
.tab_copy_button {
  width: 20%;
  font-size: 1.2vw;
  font-weight: bold;
  padding: 0;
}
.tag_copy_pre pre:before {
  display: none;
}
.copy_message {
  position: absolute;
  top: 100%;
  right: 0;
  color: #d00;
  font-weight: bold;
}
.tag_sample_pre {
  width: 49%;
  border: 1px solid #000;
  padding: 1vw;
}
.tag_sample_label {
  background: #000;
  text-align: center;
  color: #fff;
  margin-bottom: 0.8vw;
}
.tag_sample_web {
  width: 49%;
  border: 1px solid #000;
  padding: 1vw;
}

.tag_copy_pre pre code br {
  display: block;
}