@charset "utf-8";

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* word-break: keep-all;
    overflow-wrap: break-word;     */
}



.mirador-canvas-nav {
    display:none !important;
}

.required {
	padding: 0 5px;
	margin-right: 5px;
	height: 28px;
	text-align: center;
	vertical-align: middle;
	background-color: red;
	color: white;
	font-weight: normal;
	font-size: 10pt;
}




/* ポップアップwindow部分 */
#overlay {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 70;
    width: 100%;
    height: 100%;
}
/* オーバーレイの背景部分 */
#bg_gray {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 80;
}
/* ウィンドウ部分 */
#window {
    width: 50%;
    padding: 20px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
    z-index: 90;
    opacity: 0;
}
/* 閉じるボタン */
#btn_cloth {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CE5D8B;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
}
#btn_cloth:hover {
    opacity: 0.7;
}
#btn_cloth span,
#btn_cloth span::before {
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
}
#btn_cloth span {
    transform: rotate(45deg);
}
#btn_cloth span::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: rotate(-90deg);
}


/* クリックで表示 */
.sort_button:hover {
    cursor: pointer;
}
#popup:checked ~ #overlay {
    visibility: visible;
}
#popup:checked ~ #overlay #window {
    animation: fadein 500ms forwards;
    animation-timing-function: ease-in-out;
}
@keyframes fadein {
    100% {
        opacity: 1;
    }
}


/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    z-index: 9999999;/* 重なり順を一番上にする */
    cursor: pointer;
    top: 20px;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #ffffff;;
    transition: 0.5s;
    position: absolute;
   }
  
  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 8px;
  }
  
  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .MuiAppBar-root {
    z-index: 998!important;
  }
    
  /* メニューのデザイン*/
  .nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 100%;
    left: 0%; /* メニューを画面の外に飛ばす */
    z-index: 999999;
    background: rgb(110, 110, 110);
    transition: .5s;
    text-align: center;
    padding-top: 20px;
  }
  
  /* メニュー黒ポチを消す */
  .nav_list {
    list-style: none;
  }
  
  .nav_item a {
    color: #fff;
    text-decoration: none;
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content {
    bottom: 0;/* メニューを画面に入れる */
    
  }



ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

html {
    height: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent
}

body {
    height: 100%;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff
}

h2 {
    font-size: 1.75rem;
}

.main {
    width: 100%;
    min-width: 320px;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    box-sizing: border-box;   
    top: 150px;
}

.main2 {
    display: -webkit-flex;
    display: flex;
    width: 100%;
/*    height: 100%!important;*/
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    position: relative;
	top: 200px;
}

.main3 {
    width: 100%;
    /* min-width: 100%; */
    font-size: 1.15rem;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    overflow-y: visible;
    box-sizing: border-box;   
}

.container {
    /* width: 80%; */
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    display: block;
    overflow:hidden;
}

.container img {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0.75rem !important;
    display: block !important;
    max-width: 100%;
    height: auto;
    border-style: none;
    box-sizing: border-box;
}

#ads-header {
    background-color: #fff;
}

.introduction {
    width: 1000px;
    margin: 0 auto;
    padding: 10px;
}

.section {
    width: 1000px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

#news {
    /* width: 50%; */
    margin: 20px auto;
    padding: 10px;
    border: 1px solid rgba(255,0,0,0.125);
    border-radius: 0.25rem;
    background-color: #ffddcc;
    color: #000;
}

#news td {
    padding: 3px 15px;
    text-align: left;
}

.sentence {
    margin-top: 2.25rem !important;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.slideshow-fade{
    position: relative;
    width: 1000px;
    height: 400px;
    overflow: hidden;
    margin: 0 auto;;
}
.slideshow-fade li{
    list-style: none;
    width: 100%;
    height: 100%;
}

.slideshow-fade img{
    position: absolute;
    left: 0;
    width: 100%;
}

.slideshow-fade .image_top{
    top: 0;
}
.slideshow-fade .image_middle{
    top: 50%;
    transform: translate(0, -50%);
}
.slideshow-fade .image_bottom{
    top: 100%;
    transform: translate(0, -100%);
}

.fadein {
    opacity: 1;
    transition: opacity 1.0s;
}
  
.fadeout {
    opacity: 0;
    transition: opacity 1.0s;
}
  

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-top: 0.75rem !important;
    margin-bottom: 0;
    box-sizing: border-box;
}

.list-group-item {
    z-index: auto;
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.125);
    box-sizing: border-box;
}

.list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.list-group-span {
    position: relative;
    top: 1px;
    display: inline-block;
    /*font-family: Icons;
    font-style: normal;*/
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.list-group-label {
    margin-left: 0.375rem !important;
    box-sizing: border-box;
}

.form-control {
    /* display: block; */
    /* width: 90%; */
    padding: 0.375rem 0.75rem;
    /*font-size: 0.9rem;*/
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control:disabled {
    background-color: #aaa;
}

#error {
    margin-left: 20px;
    margin-bottom: 10px;
    color: #ff0000;
    /*font-size: 16px;*/
}

.input_field_border {
    border: 2px solid #666666;
    border-radius: 0.5rem;
    padding: 10px;
    /* width: 1000px; */
    margin: 0 auto;
}

.error_message {
    color: #ff0000;
    /*font-size: 16px;*/
}


/* -------------------- header START -------------------- */
.header{
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9999;
}

.ads-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #0077b2;
    /* height: 56px; */
    margin: 10px 10px 10px 10px;
    /* width: calc(100% - 100px) */
}

.ads-header__left {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%
}

.ads-header__right {
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background-color: #ffffff;
}

.ads-header__right_mobile {
    display: block;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background-color: #ffffff;
}

.ads-header .ads-menu__toggle {
    position: absolute;
    top: 25px;
    left: 25px
}

.ads-header__logo {
    padding: 0 10px;
    /*border-left: 2px solid rgba(0,0,0,0.1);*/
    height: 100%
}

.ads-header__title {
    flex: 1 1 auto;
    padding: 0 10px;
    /*border-left: 2px solid rgba(0,0,0,0.1);*/
    height: 100%
}

.ads-header__language-selector {
    height: 100%
}

.ads-header__login-button {
    padding-left: 10px;
    height: 100%
}

.ads-header .ads-menu__toggle {
    width: 40px;
    height: 32px;
    cursor: pointer
}

.ads-header__logo {
    display: flex;
    align-items: center
}

.ads-header__logo img {
    height: 80%;
    object-fit: contain
}

.ads-header__title {
    font-size: 28px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.ads-header__title__content {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ads-header__language-selector {
    display: flex;
    align-items: center
}

.ads-header__title__content div.title {
    /* display: flex; */
}

.ads-header-link {
    width: 100px;
    color: rgba(0,0,0);
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
	cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.ads-header-link:hover {
    text-decoration-thickness: 3px;
    /*transform: scale(1.2);*/
    /*background-color: #909090;*/
    background-color: #c0bebe;
}

.ads-header-span {
    position: relative;
    top: 1px;
    display: inline-block;
    /*font-family: Icons;*/
    /*font-style: normal;*/
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

/* @media screen and (max-width: 768px) {
    .ads-header__logo,.ads-header__language-selector,.ads-header__login-button {
        display:none
    }
} */
/* -------------------- header END -------------------- */

/* -------------------- footer START -------------------- */
.footer, .footer_image_view {
    background: #444444!important;
    padding: 0.375rem 0.75rem;
    box-sizing: border-box;
    /* margin-left: 15px;
    margin-right: 15px; */
    position: relative;
    top: 1200px;
	/* width: 99%; */
/*	height: 30%;*/
}

.footer_oai {
    background: #444444!important;
    padding: 0.375rem 0.75rem;
    box-sizing: border-box;
    position: absolute;
    width:100%;
    left: 0;
    bottom: 0;
    height: 140px;
    margin-bottom: -140px;  
}

.footer_contents {
    flex-flow: row nowrap;
    justify-content: flex-start;
    position: relative;
    display: flex;
    align-items: center;
    /* width: 1000px; */
    margin: 0 auto;
    padding: 10px;
}

.footer_left {
    flex-grow: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%
}

.footer_right {
    flex-grow: 0;
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    word-break: keep-all;
    overflow-wrap: break-word;    
}
.footer_right p {
    color: #ffffff;
    /*font-size: 0.8rem;*/
}
/* -------------------- footer END -------------------- */

/* -------------------- navigate-bar START -------------------- */
.menubar {
    /* position: fixed;
	top: 120px; */
    width: 100%;
	left: 0;
    z-index: 9999;
}

.navigation-bar {
    height: 60px;
    background: #444444!important;
    flex-flow: row nowrap;
    justify-content: flex-start;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    box-sizing: border-box;
    /* margin-left: 15px;
    margin-right: 15px; */
}

.nav-div {
    display: flex;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
    box-sizing: border-box;
}

.nav-ul {
    flex-direction: row;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-top: 0;
    box-sizing: border-box;
}

.nav-mr-auto {
    margin-right: auto !important;
    width:100%;
}

.nav-li {
    box-sizing: border-box;
    background: #444444;
    width: 180px;
    position: relative;
    text-align: center;
}

.dropdown__lists {
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    padding-left: 0;
}

.nav-li:hover .dropdown__lists {
    transform: scaleY(1);   /*Gナビメニューにホバーしたら表示*/
    z-index: calc(infinity);
}

.dropdown__list {
    transition: all .3s;
    list-style: none;
}

.dropdown__list:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}

.nav-link {
    color: rgba(255,255,255);
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
}

.nav-li a:hover {
    /*text-decoration:underline;*/
    /*text-decoration-thickness: 3px;*/
    /*transform: scale(1.2);*/
    background-color: #909090;
}

.nav-span {
    position: relative;
    top: 1px;
    display: inline-block;
    /*font-family: Icons;
    font-style: normal;*/
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

.nav-input_metadata_str {
    margin-right: 0.375rem !important;
    padding: 0.375rem 0.75rem;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline-offset: -2px;
    overflow: visible;
    margin: 0;
    /*font-family: inherit;*/
    box-sizing: border-box;
}

.nav-button_top {
    cursor: pointer;
    color: #ffffff;
    background-color: transparent;
    background-image: none;
    background-color: #444444;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid;
    padding: 0.375rem 0.75rem;
    font-size: 1.4rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.nav-button {
    cursor: pointer;
    color: #ffffff;
    background-color: transparent;
    background-image: none;
    background-color: #444444;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid;
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* -------------------- navigate-bar END -------------------- */

/* -------------------- top_thumbnail START -------------------- */
.top_contents {
    position: relative;
    top:180px;
}
.top_thumbnail {
    /* max-width: 1650px; */
    max-width: 1200px;
    margin: 100px auto 200px;
    text-align: center;
}

.top_thumbnail h2 {
    text-align: center;
}

.keyword_section {
    text-align: center;
}
/*
.top_thumbnail .d_block {
    width: 200px;
    height: 80px;
    display: inline-block;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #4c9ac0;
    border-radius: 10px;
    text-align: center;
    vertical-align: top;
    background: radial-gradient(circle,#555 0%,#000 100%);
    margin-right: 50px;
}

.top_thumbnail .d_block:hover {
    transform: scale(1.2);
}
.top_thumbnail .d_block_caption {
    padding-top: 25px;
    color: #fff;
}
*/
.top_thumbnail .d_block {
    width: 240px;
    /* height: 180px; */
    display: inline-block;
    margin: 20px auto;
    /*border: 2px solid #4c9ac0;*/
    border-radius: 10px;
    text-align: center;
    vertical-align: top;
    /*background: radial-gradient(circle,#555 0%,#000 100%);*/
    margin-right: 50px;
}

.top_thumbnail .d_block_caption {
    width: 100%;
    font-weight: 600;
    /*font-size: 16px;*/
    text-align: center;
}

.top_thumbnail .d_block_description {
    width: 100%;
    /*font-size: 12px;*/
    text-align: left;
}

.top_thumbnail a {
    text-decoration: none;
}

.top_thumbnail .image {
    width: 240px;
    height: 180px;
    filter: drop-shadow(7px 7px 7px #aaa);
    overflow: hidden;    
}

.top_thumbnail .image img{
    /* 拡大するのにかかる時間 */
    width: 240px;
    transition:all 0.3s;
}
 
.top_thumbnail .image img:hover{
    /* ホバーしたら1.2倍サイズに拡大 */
    transform: scale(1.2);
}

/* -------------------- top_thumbnail END -------------------- */

/* -------------------- button START -------------------- */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    margin-left: 3px;
    margin-right: 3px;
    /*font-size: 0.9rem;*/
    line-height: 1.5;
    border-radius: 100px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:hover, .btn:focus {
    text-decoration: none;
}
.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
    opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    background-image: none;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
/* -------------------- button END -------------------- */

/* -------------------- filter_menu START -------------------- */
.filter_block {
    width: 280px;
    height: 100vh;
    min-width: 250px;
    background: #444444!important;
    box-sizing: inherit;
    overflow: auto!important;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    word-break: keep-all;
    overflow-wrap: break-word;    
    position:sticky;
    top:270px;
}

.filter_block .data_count {
    max-width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: #ffffff;
   /* font-size: 16px;*/
}

.filter_block .reset {
    max-width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}



.applied_filter .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.3em 1em;
    color: #ffffff;
    font-weight: 600;
    /*font-size: 14px;*/
}

.applied_filter_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.3em 2em;
    color: #ffffff;
    font-weight: 600;
    background-color: #444444;
}

.applied_filter .checkbox {
    position: relative;
    padding: 0.3em 3em 0.5em;
    color: #ffffff;
}

section {
	margin-top: 0px;
}

.accordion {
	width: 230px;
	margin-left: 10px;
}

.accordion label {
	padding: 10px;
}

.menu {
	background-color:#ddd;
	color: black;
    margin: 0px;
	padding: 10px;
	cursor: pointer;
	user-select: none;
}

.menu:hover,
.menu:active,
.menu.is-active {
	background-color:#999;
}

.contents {
	line-height: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition-duration: 0.4s;
}

.contents p {
	margin: 10px 0 0 0;
}

.contents.is-open {
	border-bottom: 1px solid #fff;
	padding: 10px;
	line-height: normal;
	height: auto;
	opacity: 1;
}


.accordion-003 {
    max-width: 500px;
    border-bottom: 2px solid #d0d0d0;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.accordion-003 summary:hover {
    background-color: #909090;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 0.5em;
    color: #ffffff;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}
/* -------------------- filter_menu END -------------------- */

/* -------------------- paging START -------------------- */
.page_area_pc {
    /* position: fixed; */
	top: 180px;
	/* left: 15px; */
	background-color: #ffffff;
    z-index: 999;
    width: 100%;
    height: 90px;
    padding-top: 10px;
}
.page_area_mobile {
    /* position: fixed; */
	top: 165px;
	/* left: 15px; */
	background-color: #ffffff;
    z-index: 999;
    width: 100%;
    height: 50px;
    padding-top: 10px;
}

.select_sort {
    text-align: right;
    margin-right: 30px;
}

/* #page_count {
	height: 24px;
    display: inline-block; 
} */
.paging {
	height: 36px;
    margin-bottom: 5px;
    display: flex;
}
.paging .btn{
	height: 36px;
	width: 36px;
	border: 1px solid #aaa;
	cursor: pointer;
    margin-left: 3px;
    margin-right: 3px;
    border-radius: 0.25rem;
}
.paging .page_info{
	height: 36px;
    margin: 0px 5px;
    padding: 3px 5px;
}
.paging .current{
	text-align: center;
	background: #007bff;
    color: #ffffff;
	float: left;
}
.paging .enable{
	text-align: center;
	background: #ffffff;
	float: left;
}
.paging .disable{
	text-align: center;
	background: #999999;
	float: left;
}
.paging .btn:hover{
	text-align: center;
	background: #007bff;
    color: #ffffff;
	float: left;
    transform: scale(1.2);
}
/* -------------------- paging END -------------------- */


/* #select_sort {
    float: right;
    vertical-align: top;
} */

/* -------------------- result START -------------------- */
#result {
    /*font-size: 15px;*/
	margin-left: 0px;
	margin-right: 0px;
    /* width: 90%;
    min-width: 90%; */
}

#result table {
	border-collapse: collapse;
    /* width:70%; */
}

#result th {
    vertical-align: top;
    /* text-align: right; */
    /* border-bottom: 2px solid #dee2e6; */
    padding: 0.2rem;
    /* border-top: 1px solid #dee2e6; */
    word-break: keep-all;
    overflow-wrap: break-word;
}

#result td {
	padding: 2px;
    vertical-align: top;
    padding: 0.2rem;
    /* border-top: 1px solid #dee2e6; */
}

#result .tr1 {
	background-color: rgba(0,0,0,0.05);
}

#result .tr2 {
	background: #ffffff;
}

#result .item {
	white-space: nowrap;
	text-align: left;
	white-space: normal;
}

#result .item_right {
	white-space: nowrap;
	text-align: right;
}

#result .item_center {
	white-space: nowrap;
	text-align: center;
}

#result .item_button {
    padding: 10px;
	white-space: nowrap;
	text-align: center;
    vertical-align: middle;
}

#result .image {
    /* width: 400px; */
    /* height: 150px; */
    filter: drop-shadow(7px 7px 7px #aaa);
    overflow: hidden;    
}

#result .image img{
    /* 拡大するのにかかる時間 */
    transition:all 0.3s;
}
 
#result .image img:hover{
    /* ホバーしたら1.2倍サイズに拡大 */
    transform: scale(1.2);
}

/* #result .title{
	width: 150px;
    display: inline-block;
    font-weight:bold;
    text-align: right;
    margin-right: 20px;
} */
/* #result .value{
	width: 80%;
    display: inline-block;
} */

#image_list {
    width: 100%;
    min-width: 100%;
}

/* #image_list .title{
    display: inline-block;
    width:15%;
}
#image_list .value{
    display: inline-block;
    width: 85px;
} */
    
#image_list {
    /* width: 80%; */
    /* min-width: 200px; */
}

#image_list p {
    margin: 0; 
}
.main_contents {
    position: relative;
    top: 270px;
    margin-left: 5px;
}

#apply a {
    color:#0059AF;
}


@media only screen and (max-width: 550px){
    .top_contents {
        top:10px;
    }
    .container {
        display: none;
    }
    .ads-header__right{
        display: none;
    }
    .introduction {
        width: 100%;
    }
    #menu1 {
        display: block;
        /* position: fixed; */
        top: 0px;
    }
    #menu2 {
        display: none;
    }
    .navigation-bar {
        height: 60px;
    }
    #news td {
        display: block;
    }
    #searchStr {
        width: 260px;
    }    

    .header {
        display: none;
    }
    .ads-header {
        width: 90%;
    }
    .ads-header__logo,.ads-header__login-button {
        display:none
    }    
    .ads-header__right {
        display:none;
    }
    .ads-header__right_mobile {
        display:none;
    }
    /* .ads-header__title__content div.title {
        display: block;
    } */
    select {
        /* font-size: 1.5rem; */
    }
    .ads-header {
        display: block;
    }
    .ads-header__title {
        /* font-size: 1.5rem; */
    }
    .page_area_mobile {
        top: 0px;
        display: block;
    }
    .page_area_pc {
        display: none;
    }
    .menubar {
        font-size: 1.5rem;
        top: 0px;
    }

    .nav-div {
        display: block;
    }


    .nav-button {
        /* font-size: 1.5rem; */
    }

    .page_area {
        top: 76px;
        /* font-size: 1.5rem; */
        width: 100%;
        background-color: #ffffff;
        height: 170px;
    }

    #select_sort {
        display: block;
    }

    .filter_block {
        width: 100%;
    }
       
    
    .main_contents {
        top: 0px;
    }

    .filter_contents {
        position: fixed;
        top: 100px;
        z-index: 1000;        
    }

    .main3 {
        /* min-width: 375px; */
    }
    #image_list {
        /* font-size: 1.5rem; */
    }

    #image_list .column_data {
        width: 100%;
    }
    .column_image div.image img {
        width: 300px;
        min-width: 280px;
    }

    #image_list .column_data_tr div.title {
        background-color: #bcbbbb;
    }
    #image_list .btn_cart {
        width: 200px;
        /* height: 100px; */
        /* font-size: 2rem; */
    }
    .main3 li {
        border-bottom: solid 1px grey;
    }
    .main_contents {
        display: block;
    }

    #main_metadata_detail {
        max-width: 500px;
        min-width: 500px;
    }    
    #metadata_detail {
        top: 700px;
        left: 10px;
    }
    #mirador {
        width: 350px;
    }    
    #metadata_detail {
        top: 720px;
        left: 10px;
        width: 88%;
    }

    .image_view_main {
        top: 100px;
    }
    .button_area_page {
        margin-left: 10px;
        top: 750px;
    }

    #apply .label, .item {
        display: block;
    }

    #apply {
        top: 50px;
        width: 100%;
    }

    #confirm {
        top: 50px;
        width: 100%;
    }    

    #apply {
        top: 10px;
    }

    #apply h1{
        /* font-size: 1.7rem; */
    }

    #apply .label {
        background-color:grey;
        padding-bottom: 10px;
        width: 100%;
    }

    /* 
    #apply .meta_title, .meta_category {
        display: none;
    }
    */

    #confirm .label {
        display: block;
        width: 100%;
        background-color: #b1b0b0;
        padding-bottom:10px;
    }

    #confirm .item {
        padding-left: 0px;
        height: 50px;
    }

    #confirm_result .item {
        height: 100%;
    }

    #confirm .meta_title, .meta_category {
        display: none;
    }
    .form-control {
        width:80%;
    }
    .footer {
        top: 200px;
        z-index: -1;
    }

    .footer_contents {
        display: block;
    }

    .footer_image_view {
        top: 1500px;
    }

    .footer_left .ads_logo {
        width: 100px;
    }
    .footer_left .nipr_logo {
        width: 140px;
    }
/*
    フィルターの表示・非表示
*/
/*-------------------- 申請・画像一覧 --------------------*/
    .apply_result .thead {
        display: none;
    }
    .apply_result .sp_title {
        display: inline-block;
    }
    .apply_result .item {
        display: block;
    }
    .apply_result .item_button_2 {
        display: block;
    }
/*----------------------------------------*/
/*-------------------- 利用案内1 --------------------*/
    .usage {
        font-family: "BIZ UDPGothic", "Noto Sans JP", sans-serif;
        font-size: 16px;
        line-height: 2.4;
        position: relative;
        width: 80%;
        min-width: 320px;
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
        display: block;
        box-sizing: border-box;   
        top: 0px;
    }
    .usage h1 {
        text-align: center;
        margin-top: 0px;
        margin-bottom: 20px;
    }
    .usage h2 {
        margin-top: 80px;
        margin-bottom: 0px;
    }
    .usage h3 {
        margin-top: 20px;
    }
    .usage h4 {
        font-weight: bold;
        margin-top: 10px;        
    }    
    .usage p {
        margin: 0px 0px;
    }
    .usage .indent {
        /*margin-left: 40px;*/
        padding-left: 1.5em;        
    }
    .usage ul {
        list-style: disc;
        margin-left: 40px;
    }
    .usage a {
        color:#0059AF;
    }
    .usage-table {
    width: 100%;
    border-collapse: collapse;
    }

    .usage-table th,
    .usage-table td {
        border: 1px solid #ccc;
        padding: 8px;
        vertical-align: top;
    }
    .usage-table th {
        background-color: #f5f5f5;
        text-align: center;
    }
    .usage-table tbody tr:nth-child(6) td {
        border-top: 3px solid #000;
    }
/*-------------------------------------------------*/
/*-------------------- OAI設定 開始 --------------------*/
    #oai {
        top: 10px;
        width: 100%;
    }
    #oai .label_oai {
        background-color:grey;
        padding-bottom: 10px;
        width: 100%;
        display: block;
    }
    #oai .item_oai {
        display: block;
    }
    .form-control_date {
        width: 120px;
    }
    .footer_oai {
        height: 240px;
        margin-bottom: -260px;  
    }    
/*-------------------- OAI設定 終了 --------------------*/
}


@media only screen and  (min-width:551px) and (max-width:1024px){

    #menu1 {
        display: block;
    }
    #menu1 p {
        display: none;
    }
    #menu1 ul {
        display: block;
    }    
    #menu2 {
        display: none;
    }
    #menu2 .nav_keyword {
        display: none;
    }     
    #news {
        width: 80%;
    }
    #searchStr {
        width: 500px;
    }
    .top_category {
        display: block;
    }
    .title {
        display: block;
    }
    .header {
        height: 100px;
        background-color: #ffffff;
    }
    .ads-header {
        /* display: block; */
    }
    .ads-header__right {
        display:none;
    }
    .ads-header__right_mobile {
        display:block;
    }
    .top_contents {
        top: 0px;
    }

  
    .nav-div {
        display: block;
    }

    .nav_keyword {
        display: flex;
        justify-content: right
    }

    .introduction {
        width: 100%;
    }
    .page_area_mobile {
        top: 0px;
        display: block;
    }
    .page_area_pc {
        display: none;
    }

    .page_area1 {
        /* display: flex; */
        justify-content: space-between;
        margin-right: 10px;
    }
 
    /* .main3 {
        min-width: 650px;
    } */
    #image_list {
        /* font-size: 1.5rem; */
    }
    .column_image div.image img {
        /* width: 100%; */
    }

    .filter_block {
        top:100px;
    }

    #image_list .column_data_tr div.title {
        background-color: #bcbbbb;
    }
    .main3 li {
        border-bottom: solid 1px grey;
        padding-bottom: 50px;
    } 
    .main_contents {
        display: flex;
        top: 0px;
    }
    #image_list .btn_cart {
        width: 150px;
    }
    #image_list .column_data_tr {
        display: block;
    }
    #image_list .column_data {
        width: 100%;
    }
    
    #row .image{
        width:400px;
    }
    #main_metadata_detail {
        max-width: 1280px;
        min-width: 1280px;
    }

    .image_view_main {
        top: 200px;
    }

    #mirador {
        width: 50%;
    }    
    #metadata_detail {
        top: 720px;
        left: 10px;
        width: 65%;
    }
    .button_area_page {
        width: 100%;
        margin-left: 40%;   
        top: 740px; 
    }

    #apply {
        top: 10px;
        width: 100%;
    }

    .form-control {
        width: 80%;
    }

    #confirm {
        top: 50px;
        width: 100%;
    }
    .footer {
        top:100px;
    }
    .footer_contents {
        display: block;
    }

    .footer_image_view {
        top: 1500px;
    }

    .footer_left .ads_logo {
        width: 100px;
    }
    .footer_left .nipr_logo {
        width: 140px;
    }

/*-------------------- 申請・画像一覧 --------------------*/
    .apply_result .thead {
        display: none;
    }
    .apply_result .sp_title {
        display: inline-block;
    }
    .apply_result .item {
        display: block;
    }
    .apply_result .item_button_2 {
        display: block;
    }
/*----------------------------------------*/
/*-------------------- 利用案内2 --------------------*/
    .usage {
        font-family: "BIZ UDPGothic", "Noto Sans JP", sans-serif;
        font-size: 16px;
        line-height: 2.4;
        position: relative;
        width: 60%;
        min-width: 320px;
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
        display: block;
        box-sizing: border-box;   
        top: 0px;
    }
    .usage h1 {
        text-align: center;
        margin-top: 0px;
        margin-bottom: 50px;
    }
    .usage h2 {
        margin-top: 80px;
        margin-bottom: 30px;
    }
    .usage h3 {
        margin-top: 20px;
    }
    .usage h4 {
        font-weight: bold;
        margin-top: 10px;
    }     
    .usage p {
        margin: 0px 0px;
    }
    .usage .indent {
        /*margin-left: 40px;*/
        padding-left: 1.5em;           
    }
    .usage ul {
        list-style: disc;
        margin-left: 40px;
    }
    .usage a {
        color:#0059AF;
    }
    .usage-table {
    width: 100%;
    border-collapse: collapse;
    }
    .usage-table th,
    .usage-table td {
        border: 1px solid #ccc;
        padding: 8px;
        vertical-align: top;
    }
    .usage-table th {
        background-color: #f5f5f5;
        text-align: center;
    }
    .usage-table tbody tr:nth-child(6) td {
        border-top: 3px solid #000;
    }

/*-------------------------------------------------*/
/*-------------------- OAI設定 開始 --------------------*/
    #oai {
        top: 10px;
        width: 100%;
    }
    .form-control_date {
        width: 120px;
    }
    .footer_oai {
        height: 230px;
        margin-bottom: -230px;  
    }    
/*-------------------- OAI設定 終了 --------------------*/
}

@media only screen and (min-width: 1025px){
    #menu1 {
        display: none;
    }
    #menu2 {
        display: flex;
    }
    .header{
        position: fixed;
    }

    .title {
        display: flex;
    }
    .slideshow-fade {
        width: 1200px;
    }
    .top_contents {
        top: 250px;
    }

    .menubar {
        position: fixed;
        top: 120px;
    }
    
    .ads-header__right {
        display:flex;
    }
    .ads-header__right_mobile {
        display:none;
    }
    #news {
        width: 70%;
        max-width: 1200px;
    }
    .top_category {
        display: flex;
    }

    .page_area_pc {
        width:100%;
        position: fixed;
        display: block;
    }
    .page_area_mobile {
        display: none;
    }
    .page_area1 {
        /* display: flex; */
        justify-content: space-between;
        margin-right: 10px;
    }

    .main3 li {
        border-bottom: solid 1px grey;
        padding-bottom: 50px;
    }
    
    /* .filter_block section {
        position: sticky;
        top: 220px;
    } */
    #image_list div.metaInfo1 {
        float: left!important;
        margin: 0 15px 5px 0;
    }
    #image_list div.metaInfo2 {
        float: left!important;
        margin: 0 15px 5px 0;
        width: 85%;        
    }
    #image_list .title{
        width:210px;
        min-width: 210px;
        text-align: right;
        padding: 5px 20px;
    }
    #image_list .value{
        overflow-wrap: break-word;
        word-break: keep-all;  
        padding: 5px 20px;
    }
    #image_list .column_data {
        width: auto;
    }

    .main_contents {
        display: flex;
    }

    .column_image div.image img {
        /* width: 240px; */
    }

    #image_list .btn_cart {
        width: 150px;
    }
    #image_list .column_data_tr {
        width: 100%;
        display: flex;
    }
    #main_metadata_detail {
        max-width: 1280px;
        min-width: 1280px;
    }

    #image_list .column_image {
        width: 360px;
    }
    #image_list .column_data {
        width: 70%;
    }
    .image_view_main {
        top: 200px;
    }
    #mirador {
        width: 640px;
    }  
    #metadata_detail {
        width: 600px;
        left: 680px;
        width: 600px;
    }   
    .button_area_page {
        width: 100%;
        margin-left: 30%;
        top: 860px;
    }

    #apply {
        Top: 200px;
        width: 80%;
    }

    .form-control {
        width: 90%;
    }

    #confirm {
        width: 50%;
        top:250px;
    }

    .footer {
        top:350px;
    }
    .footer_contents {
        width: 1000px;
    }

    .footer_left .ads_logo {
        width: 120px;
    }
    .footer_left .nipr_logo {
        width: 240px;
    }
/*-------------------- 申請・画像一覧 --------------------*/
    .apply_result .sp_title {
        display: none;
    }
/*-------------------------------------------------------*/
/*-------------------- 利用案内3 --------------------*/
    .usage {
        font-family: "BIZ UDPGothic", "Noto Sans JP", sans-serif;
        font-size: 16px;
        line-height: 2.4;
        position: relative;
        width: 60%;
        min-width: 320px;
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
        display: block;
        box-sizing: border-box;   
        top: 150px;
    }
    .usage h1 {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .usage h2 {
        margin-top: 80px;
        margin-bottom: 30px;
    }
    .usage h3 {
        margin-top: 20px;
    }
    .usage h4 {
        font-weight: bold;
        margin-top: 10px;        
    }     
    .usage p {
        margin: 0px 0px;
    }
    .usage .indent {
        /*margin-left: 40px;*/
        padding-left: 1.5em;           
    }
    .usage ul {
        list-style: disc;
        margin-left: 40px;
    }
    .usage a {
        color:#0059AF;
    }

    .usage-table {
    width: 100%;
    border-collapse: collapse;
    }

    .usage-table th,
    .usage-table td {
        border: 1px solid #ccc;
        padding: 8px;
        vertical-align: top;
    }

    .usage-table th {
        background-color: #f5f5f5;
        text-align: center;
    }    
    .usage-table tbody tr:nth-child(6) td {
        border-top: 3px solid #000;
    }

        
/*-------------------------------------------------*/
/*-------------------- OAI設定 開始 --------------------*/
    #oai {
        Top: 200px;
        width: 60%;
    }
    .form-control_date {
        width: 120px;
    }
/*-------------------- OAI設定 終了 --------------------*/
}


#image_list .meta_record {
    width: 100%;
    border-bottom: 1px solid #dee2e6;
    border-top: 1px solid #dee2e6;
}

#image_list .column_image {
    /* width: 20%; */
    min-width: 200px;
    height: 100%;
    display: inline-block;
}

#image_list .column_image img {
    vertical-align: bottom;
    margin-top: 10px;
}

#image_list .column_data {
    /* width: 100%; */
    height: 100%;
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
}

.menu_page_area {
    top: 0px;
    position: sticky;
    z-index: 999;
}

#image_list .movie_image_list {
    width: 340px;
    height: 240px;
}

/* -------------------- result END -------------------- */

/* -------------------- metadata_detail START -------------------- */
#main_metadata_detail {
    position: relative;
    /* max-width: 1280px;
    min-width: 1280px; */
    margin: 0 auto;
}

#mirador {
    position: absolute;
    margin-top: 30px;
    height: 600px;
    /* width: 640px; */
}

#metadata_detail {
    position: absolute;
    margin-top: 30px;
    /* left: 680px; */
    /* width: 600px; */
    /*font-size: 14px;*/
}

#metadata_detail table {
    width: 100%;
	border-collapse: collapse;
}

#metadata_detail th {
    padding: 4px 8px;
    width: 30%;
    border-bottom: 1px solid #dee2e6;
    border-top: 1px solid #dee2e6;
}

#metadata_detail td {
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

#metadata_detail p {
    margin: 4px 8px;
}

#metadata_detail .tr1 {
	background-color: rgba(0,0,0,0.05);
}

#metadata_detail .tr2 {
	background: #ffffff;
}

#metadata_detail .item {
	white-space: nowrap;
	text-align: left;
	white-space: normal;
}

#metadata_detail .button_area {
    margin-top: 30px;
    width: 100%;
    text-align: center;
    top: 850px;
    display: flex;
    margin-left: 40%;    
}

.button_area_page {
    position: relative;
    top: 650px;
    display: flex;
    /* width: 100%;
    margin-left: 40%;     */
}
/* -------------------- metadata_detail END -------------------- */

/* -------------------- tile START -------------------- */
#row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.d-flex {
    display: flex !important;
}
.col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}
.m-3 {
    margin: 0.75rem !important;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: 0.25rem;
}
.card-body {
    flex: 1 1 auto;
    /* padding: 0.75rem; */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}


#row .image{
    /* width: 220px; */
    width: 360px;
    box-shadow: rgb(158 0 0 / 6%) 0px 0px 6px 3px;
    overflow: hidden;
    margin: 20px;
    border: 1px solid #eaeaea;
    text-align: center;    
}

#row .image img{
    /* 拡大するのにかかる時間 */
    transition:all 0.3s;
}
 
#row .image img:hover{
    /* ホバーしたら1.2倍サイズに拡大 */
    transform: scale(1.2);
}

#row .movie_image_tile {
    width: 340px;
    height: 240px;
}
/* -------------------- tile END -------------------- */

/* -------------------- Image Detail START -------------------- */
.image_view_main {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    box-sizing: border-box;   
    position: absolute;
    /* top: 200px; */
}
/* -------------------- Image Detail END -------------------- */

/* -------------------- edit START -------------------- */
.edit .title {
    margin-bottom: 0.75rem !important;
    margin-top: 0.75rem !important;
}

.edit .row {
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    margin-right: -15px;
    margin-left: -15px;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
    /* width:1000px; */
    margin: 0 auto;
}

.edit .section {
    width: 98%;
    background: #444444;
    padding: 12px;
    margin: 6px 0px;
    border-radius: 3px;
    font-weight: bold;
    /*font-size: 16px;*/
    color: #fff;
}

.edit .tr1 {
    margin: 10px 10px;
}

.edit .label {
    width: 180px;
    padding-left: 8px;
    vertical-align: top;
    padding-top: 10px;
    word-break: keep-all;
    overflow-wrap: break-word;       
}

.edit .item {
    padding: 10px 0px;
    padding-left: 20px;
    /*word-break: keep-all;*/
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.edit .label_oai {
    width: 100px;
    height: 100%;
    padding: 10px 0px 10px 10px;
    vertical-align: inherit;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.edit .item_oai {
    padding: 10px 0px;
    height: 60px;
    padding-left: 20px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.item label {
    white-space: nowrap;
}

.edit .group {
    display: flex;
    flex: 0 0 auto;
    /* flex-flow: row wrap; */
    align-items: center;
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
}

.edit h1 {
    text-align:center;
}

.edit .buttons {
    margin: 0.75rem !important;
    text-align:center;
}

.edit .input_str {
    /*font-size: 14px;*/
    margin: 0.5rem 0 0.75rem 30px !important;
}
/* -------------------- edit END -------------------- */

#apply {
    position: relative;
    min-width: 500px;
    /* top: 250px; */
}

#oai {
    position: relative;
    min-width: 500px;
}

#confirm {
    position: relative;
}

.apply_main {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    display: block;
    box-sizing: border-box;   
}

/* -------------------- apply_result START -------------------- */
.apply_result {
    /*font-size: 15px;*/
	margin-left: 0px;
	margin-right: 0px;
    /* width: 1000px;
    min-width: 1000px; */
    margin: 0 auto;
}

.apply_result table {
	border-collapse: collapse;
    width:98%;
}

.apply_result th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    padding: 0.5rem;
    border-top: 1px solid #dee2e6;
}

.apply_result td {
	padding: 2px;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.apply_result .tr1 {
	background-color: rgba(0,0,0,0.05);
}

.apply_result .tr2 {
	background: #ffffff;
}

.apply_result .item {
	white-space: nowrap;
	text-align: left;
	white-space: normal;
}

.apply_result .item_right {
	white-space: nowrap;
	text-align: right;
}

.apply_result .item_center {
	white-space: nowrap;
	text-align: center;
}

.apply_result .item_button {
    padding: 10px;
	white-space: nowrap;
	text-align: center;
    vertical-align: middle;
}

.apply_result .image {
    width: 200px;
    /* height: 150px; */
    filter: drop-shadow(7px 7px 7px #aaa);
    overflow: hidden;    
}

.apply_result .image img{
    /* 拡大するのにかかる時間 */
    transition:all 0.3s;
}
 
.apply_result .image img:hover{
    /* ホバーしたら1.2倍サイズに拡大 */
    transform: scale(1.2);
}

.apply_result .title{
	width: 10%;
    display: inline-block;
    font-weight:bold;
    text-align: right;
    margin-right: 20px;
}
.apply_result .value{
	width: 80%;
    display: inline-block;
}

.apply_result .movie_image_apply {
    width: 340px;
    height: 240px;
}

/* -------------------- apply_result END -------------------- */