@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
ヒラギノ角ゴシック W8 代替えフォント
font-family: 'NotoSans-Black', sans-serif;
*/
@font-face {
  font-family: 'NotoSans-Black';
  src:url(../font/NotoSansJP-Black.ttf) format("truetype");
}
/*
Futura Medium
font-family: 'Futura', sans-serif;
*/
@font-face {
  font-family: 'Futura';
  src:url(../font/Futura.ttc) format("truetype");
}

/*
HiraginoSans-W〇〇
font-family: 'HiraginoSans', sans-serif;
*/
@font-face {
  font-family: 'HiraginoSans';
  src:url(../font/Hiragino Sans GB.ttc) format("truetype");
}

/*
Helvetica
font-family: 'Helvetica', sans-serif;
*/
@font-face {
  font-family: 'Helvetica';
  src:url(../font/Helvetica.ttc) format("truetype");
}
/*
ヒラギノ角ゴシック W5 代替えフォント
font-family: 'NotoSansJP-Medium', sans-serif;
*/
@font-face {
  font-family: 'NotoSansJP-Medium';
  src:url(../font/NotoSansJP-Medium.ttf) format("truetype");
}

html {
  font-size: 62.5%;
}

body {
  font-family: "HiraginoSans", "Helvetica", "Futura", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  color: #2E2E2E;
}
@media (max-width: 800px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

ul {
  list-style: none;
}

h1,
h2 {
  margin: 0;
  line-height: 1;
}

.wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    width: 100%;
    padding: 0 4%;
  }
}

.wrapper2 {
  max-width: 1280px;
  margin: 0 auto;
  /*padding: 0 3.4%;*/
}
@media screen and (max-width: 800px) {
  .wrapper2 {
    width: 100%;
    padding: 0 4%;
  }
}

.wrapper3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
  .wrapper3 {
    width: 100%;
    padding: 0 4%;
  }
}

.wrapper4 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
  .wrapper4 {
    width: 100%;
    /*padding: 0;*/
    padding: 0px 2px;
  }
}

.wrapper5 {
  width: 1100px;
  margin: 0 auto;
}

.wrapper6 {
  width: 1236px;
  margin: 0 auto;
}

.header {
  padding-top: 6px;
  padding-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-contents{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    pointer-events: auto;
}

.header .header-left {
  /*margin-bottom: -13px;*/
}
.header .header-left .logo {
  width: 159px;
}
.header .header-left .logo a{
  display: block;
}
.header .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 5px;
}
.header .header-right .btn {
  width: 139px;
  height: 24px;
  margin-right: 100px;
  padding: 0 5px;
  background-color: #dbdbdb;
  border-radius: 9px;
  background-image: url(../image/archive/arrow.png);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center right 11px;
  
}

.header .header_fixed_box{
	position: fixed;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0px);
    max-width: 1100px;
    max-height: 80px;
    height: 80px;
    width: 100%;
    z-index: 20;
	pointer-events: none;
}

.menu_bt_container {
  background: #ffffffcc;
  padding: 7px;
  width: 65px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 20px;
  pointer-events: auto;
}
@media screen and (max-width: 1100px) {
	.menu_bt_container {
		right: 20px;
	}
	.header .header-right .btn{
	  margin-right: 80px;
	}
}

.menu_bt_container.active {
  height: 36px;
  background: unset;
}

.menu_bt_container .bar {
  max-width: 50px;
  width: 100%;
  height: 7px;
  position: absolute;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 20px;
}

.menu_bt_container .bar_top {
  top: 5px;
}

.menu_bt_container .bar_mid {
  top: 50%;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
}

.menu_bt_container .bar_bottom {
  bottom: 5px;
}

.menu_bt_container img {
  position: absolute;
  width: 100%;
}

.menu_bt_container img.menu_open {
  display: none;
}

.menu_close {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu_close.active {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

.menu_open {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu_open.active {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
}

.active .bar_top {
  -webkit-transform: translate(0px, 10px) rotate(45deg);
          transform: translate(0px, 10px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.active .bar_mid {
  display: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.active .bar_bottom {
  -webkit-transform: translate(0px, -10px) rotate(-45deg);
          transform: translate(0px, -10px) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.menu_list {
  background-color: #2e2e2ecc;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
  position: fixed;
  top: 0px;
}

.menu_list div {
  height: 60px;
  border-bottom: 1px solid #2e2e2e;
  background-color: #d6d6d6;
}

.menu_list .menu-space {
  /*border-bottom: none;*/
  height: 70px;
}

.menu_list div p {
  text-align: center;
  color: #2e2e2e;
  line-height: 60px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.15em;
  font-size: 28px;
}

.menu_list div .menu_text3 {
  font-size: 28px;
}

.menu_list div .menu_text2 {
  font-size: 20px;
}

.menu_list div:hover p {
  /*color: #ff0000;*/
  color: #cd3333;
}

.menu_list.active {
  /*opacity: 0.8;*/
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 520px) {
  .header .header-left .logo {
    width: 130px;
  }
  .header .header-left p {
    font-size: 9px;
  }
  .header .header-right .btn {
    width: 120px;
    /*margin-right: 56px;*/
  }
  .header .header-right span {
    width: 30px;
    height: 5px;
  }
  .header .header-right span + span {
    margin-top: 5px;
  }
  .header .menu_bt_container {
    width: 50px;
    height: 42px;
    right: 10px;
  }
  .header .menu_bt_container.active {
    height: 36px;
  }
  .header .menu_bt_container .bar {
    max-width: 36px;
    width: 100%;
    height: 7px;
    position: absolute;
    background-color: #2e2e2e;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    border-radius: 20px;
  }
  .header .menu_bt_container .bar_mid {
    /*top: 36%;
    -webkit-transform: translate(0px, -50%);
            transform: translate(0px, -50%);*/
  }
}
.site-map {
  background-color: #e2e2e2;
  padding: 61px 0 19px 0;
  margin: 0 auto;
}
.site-map .sns {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "HiraginoSans", sans-serif;
  padding-bottom: 59px;
  margin-bottom: 42px;
  border-bottom: 1px solid #2e2e2e;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-map .sns ul {
  position: absolute;
  top: -6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 46px;
}
.site-map .sns ul li {
  margin-right: 37px;
}
.site-map .sns ul li a{
  display: inline-block;
}
.site-map .sns ul img {
  width: 54px;
}
.site-map .sns .sns2 {
  opacity: 0;
}
.site-map .sns .sns1:hover {
  /*opacity: 0;*/
}
.site-map .sns .sns2:hover {
  opacity: 1;
}

.site_list-outer {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 66px 0;
  padding-bottom: 166px;
  border-bottom: 1px solid #2e2e2e;
  margin-bottom: 25px;
}
.site_list-outer .site_list {
  width: 253px;
}
.site_list-outer .menu-tile {
  padding-bottom: 15px;
  border-bottom: 1px solid #2e2e2e;
  margin-bottom: 21px;
  font-size: 24px;
  font-family: "HiraginoSans", sans-serif;
}
.site_list-outer .menu-tile a {
  font-weight: 800;
}
.site_list-outer a:hover {
  color: #cb3333;
}
.site_list-outer p {
  margin-bottom: 13px;
  font-size: 2rem;
  font-family: "Helvetica", sans-serif;
  font-weight: 500;
}
.site_list-outer .pack {
  /*letter-spacing: -1.5px;*/
  line-height: 29px;
  font-size: 1.84rem;
}

.policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.policy p {
  margin-right: 35px;
}
.policy a:hover {
  color: #cb3333;
}

.footer-logo {
  /*height: 123px;*/
  padding-top: 15px;
  padding-bottom: 5px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.footer-logo img {
  /*width: 333px;*/
}
.footer-logo .footer-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
}
.footer-logo .footer-logo-contents{
	
}
.footer-logo .footer-logo-contents:first-child{
    max-width: 145px;
    width: 100%;
    padding-right: 10px;
    position: relative;
}
.footer-logo .footer-logo-contents:first-child:before{
    content: "";
    display: block;
    height: 70px;
    width: 1px;
    background: #ddd;
    position: absolute;
    right: 0px;
    top: 3px;
}
.footer-logo .footer-logo-contents:last-child{
	max-width: 175px;
    width: 100%;
    padding-left: 15px;
    margin-top: 10px;
}
.footer-logo .footer-logo-contents a{
    display: inline-block;
}
.footer-logo .footer-logo-contents img{
	
}

.copyright {
  font-family: "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  height: 80px;
  color: #fff;
  background-color: #2e2e2e;
  line-height: 80px;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
}

@media screen and (max-width: 1100px) {
  .site-map {
    padding: 61px 3% 19px 3%;
  }
}
@media screen and (max-width: 800px) {
  .site-map {
    padding: 61px 3% 19px 3%;
  }
  .site-map .sns {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: "HiraginoSans", sans-serif;
    padding-bottom: 59px;
    margin-bottom: 42px;
    border-bottom: 1px solid #2e2e2e;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-map .sns ul li {
    margin-right: 20px;
  }
  .site-map .sns ul img {
    width: 54px;
  }
  .site_list-outer {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 66px 28px;
    padding-bottom: 166px;
    border-bottom: 1px solid #2e2e2e;
    margin-bottom: 25px;
  }
  .site_list-outer .site_list {
    width: 280px;
  }
  .site_list-outer .menu-tile {
    padding-bottom: 15px;
    border-bottom: 1px solid #2e2e2e;
    margin-bottom: 21px;
    font-size: 24px;
    font-family: "HiraginoSans", sans-serif;
  }
  .site_list-outer .menu-tile a {
    font-weight: 800;
  }
  .site_list-outer a:hover {
    color: #cb3333;
  }
  .site_list-outer p {
    margin-bottom: 13px;
    font-size: 2rem;
    font-family: "Helvetica", sans-serif;
    font-weight: 500;
  }
  .site_list-outer .pack {
    letter-spacing: -1.5px;
    line-height: 29px;
  }
  .policy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .policy p {
    margin-right: 35px;
  }
  .policy a:hover {
    color: #cb3333;
  }
  .copyright {
    font-size: 14px;
  }
}
@media screen and (max-width: 520px) {
  .site-map {
    padding: 61px 3% 19px 3%;
  }
  .site-map .sns {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: "HiraginoSans", sans-serif;
    padding-bottom: 0;
    padding-top: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #2e2e2e;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .site-map .sns ul {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    margin-left: 0;
  }
  .site-map .sns ul li {
    margin-right: 20px;
  }
  .site-map .sns ul img {
    width: 54px;
  }
  .site_list-outer {
    width: 100%;
  }
  .site_list-outer .site_list {
    width: 160px;
  }
  .site_list-outer .menu-tile {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .site_list-outer p {
    margin-bottom: 13px;
    font-size: 1.4rem;
    font-family: "Helvetica", sans-serif;
    font-weight: 500;
  }
  .site_list-outer .pack {
    letter-spacing: -1.5px;
    line-height: 29px;
  }
  .policy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .policy p {
    margin-right: 35px;
  }
  .footer-logo {
    height: 123px;
    padding-top: 30px;
    text-align: center;
  }
  .footer-logo img {
    width: 266px;
  }
  .copyright {
    font-size: 10px;
  }
}
@media screen and (max-width: 376px) {
  .site_list-outer {
    width: 100%;
  }
  .site_list-outer .site_list {
    width: 147px;
  }
  .site_list-outer .menu-tile {
    margin-bottom: 16px;
    font-size: 16px;
  }

}
.enoco-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #505050;
  padding-top: 172px;
  padding-bottom: 110px;
}
.enoco-center .enoco-photo {
  display: block;
  width: 50%;
  height: 360px;
  overflow: hidden;
}
.enoco-center .enoco-photo img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
.enoco-center .enoco-photo:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.enoco-center .enoco-title {
  width: 47%;
  max-width: 540px;
  margin-left: 30px;
  color: #fff;
}
.enoco-center .enoco-title h2 {
  font-size: 6rem;
  font-family: "Futura", sans-serif;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1;
}
.enoco-center .enoco-title .bold {
  font-weight: 600;
}
.enoco-center .enoco-title p + p {
  margin-top: 30px;
}
.enoco-center .enoco-title .link-arrow_movie {
  /*margin-top: 149px;*/
    margin-top: 20px;
  /*padding-right: 107px;*/
}

.link {
  max-width: 1100px;
  width: 100%;
  margin: 45px auto 100px auto;
}
.link .link-title {
  text-align: right;
}
.link .link-title h2 {
  font-size: 3.6rem;
  font-family: "Futura", sans-serif;
  margin-bottom: 26px;
  font-weight: 500;
}
.link .link-title p {
  font-size: 1.8rem;
  margin-bottom: 19px;
}
.link .link-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 66px 28px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.link .link-photo .link-item {
  width: 254px;
  height: 135px;
}
.link .link-photo .link-item img {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.link .link-photo .link-item p {
  font-size: 1.4rem;
  margin-top: 5px;
}
.link .link-photo .link-item:hover img {
  top: -6px;
  left: -6px;
  -webkit-box-shadow: 6px 6px 6px 0 #2e2e2e;
          box-shadow: 6px 6px 6px 0 #2e2e2e;
}

.archive_search-area {
  margin: 0 70px 0 30px;
  width: calc(100% - 100px);
  padding-bottom: 60px;
}
.archive_search-area p {
  font-size: 1.6rem;
  padding-left: 26%;
  margin-bottom: 2px;
}
.archive_search-area .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.archive_search-area .item label {
  display: inline-block;
  width: 26%;
  font-weight: 700;
}
.archive_search-area .item #free-word {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  width: 74.5%;
  height: 48px;
  background-color: #e0e0e0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 70px;
  background: url("../image/archive/search_icon.png");
  background-repeat: no-repeat;
  background-position: 35px center;
  background-size: 23px;
  background-color: #e0e0e0;
  border: 1px solid #2e2e2e;
  border-radius: 0px;
}
.archive_search-area .item select {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  width: 74.5%;
  height: 48px;
  background-color: #e0e0e0;
  padding-left: 35px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../image/archive/arrow.png);
  background-size: 30px 16px;
  background-repeat: no-repeat;
  background-position: center right 20px;
  border: 1px solid #2e2e2e;
  border-radius: 0px;
}
.archive_search-area .item2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*padding-bottom: 50px;*/
  margin-bottom: 50px;
}
.archive_search-area .item2 label {
  display: inline-block;
  width: 26%;
  font-weight: 700;
}
.archive_search-area .item2 .year_search_group{
	width: calc(100% - 26%);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.archive_search-area .item2 #num {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  width: 28%;
  height: 48px;
  margin-right: 20px;
  padding-left: 35px;
  background-color: #e0e0e0;
  border: 1px solid #2e2e2e;
  border-radius: 0px;
}
.archive_search-area .item2 #num + #num {
  margin-left: 41px;
}
.archive_search-area .item3 {
  margin-bottom: 21px;
}
.archive_search-area .item4 {
  margin-bottom: 60px;
}

.archive-guide {
  margin-bottom: 103px;
}
.archive-guide h3 {
  font-size: 3.3rem;
}
.archive-guide h4 {
  font-size: 2.2rem;
  margin-bottom: 7px;
}
.archive-guide .archive-space1 {
  margin-top: 80px;
}
.archive-guide .archive-space2 {
  margin-top: 57px;
}
.archive-guide .archive-space3 {
  margin-top: 48px;
}
.archive-guide .archive-space4 {
  margin-top: 45px;
}
.archive-guide .archive-space5 {
  margin-top: 38px;
}
.archive-guide .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.archive-guide .list dt {
  width: 20%;
}
.archive-guide .list dd {
  width: 80%;
}

.archive-guide .list_bottom{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.archive-guide .list_bottom dt {
  width: 18%;
}
.archive-guide .list_bottom dd {
  width: 82%;
}

.archive-guide .archive-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /*padding: 26px 0 160px 0;*/
  padding: 26px 0 70px 0;
  text-align: right;
}
.archive-guide .archive-link a {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.3rem;
}
.archive-guide .archive-link a:hover {
  color: #cb3333;
}
.archive-guide .archive-link img {
  width: 16px;
  margin-left: 30px;
}
.archive-guide p.mt-collection{
  margin-top: 35px;
}
.archive-artist_list h2 {
  padding-top: 10px;
  font-size: 3.6rem;
  margin-bottom: 23px;
}
.archive-artist_list p {
  margin-bottom: 54px;
}
.archive-artist_list .artist_list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
  gap: 67px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 138px;
}
.archive-artist_list .artist_list-container a {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive-artist_list .artist_list-container .name-01 {
  padding-bottom: 13px;
  border-bottom: 1px solid #2e2e2e;
  font-weight: 800;
}
.archive-artist_list .artist_list-container .name-02 {
  padding-top: 10px;
}
.archive-artist_list .artist_list-container a:hover {
  top: -10px;
  left: -10px;
  -webkit-box-shadow: 10px 10px 10px 0 #e0e0e0;
          box-shadow: 10px 10px 10px 0 #e0e0e0;
}

.archive-artist h2 {
  padding-top: 10px;
  font-size: 3.6rem;
  font-family: "HiraginoSans", sans-serif;
  margin-bottom: 37px;
}
.archive-artist ul {
  text-align: center;
  font-size: 2.6rem;
}
.archive-artist ul .name {
  font-family: "Helvetica", sans-serif;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 1px solid #2e2e2e;
}
.archive-artist ul .name2 {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  padding-top: 6px;
  margin-bottom: 40px;
  font-size: 2.8rem;
}
.archive-artist .text {
  line-height: 2.8rem;
  padding-bottom: 50px;
}
.archive-artist .literature {
  margin-bottom: 120px;
}
.archive-artist .literature h3 {
  font-size: 2.2rem;
  font-family: "HiraginoSans", sans-serif;
  margin-bottom: 16px;
}
.archive-artist .literature ul {
  font-size: 1.6rem;
  -moz-text-align-last: left;
       text-align-last: left;
}

.archive-collection {
  margin-bottom: 143px;
}
.archive-collection h2 {
  padding-top: 10px;
  font-size: 3.6rem;
  font-family: "HiraginoSans", sans-serif;
  margin-bottom: 13px;
}
.archive-collection .creator2 {
  font-size: 3rem;
  font-family: "Helvetica", sans-serif;
  padding-bottom: 23px;
  margin-bottom: 100px;
  border-bottom: 1px solid #2e2e2e;
}

.archive-collection_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 133px;
}
.archive-collection_container .artist-image {
  width: 36%;
}
.archive-collection_container .artist-image .frame {
  width: 250px;
  height: 250px;
  background-color: #dcdbdb;
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  user-drag: none;
  justify-content: center;
}
.archive-collection_container .artist-image .frame img {
  max-width: 200px;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  user-drag: none;
}
.archive-collection_container .artist-detail {
  width: 64%;
}
.archive-collection_container .artist-detail dl {
  border-top: 1px solid #dcdbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  line-height: 1;
}
.archive-collection_container .artist-detail dl dt {
  width: 23%;
  padding: 16.5px 0;
  border-bottom: 1px solid #dcdbdb;
  font-weight: 800;
}
.archive-collection_container .artist-detail dl dd {
  width: 77%;
  padding: 16.5px 0;
  border-bottom: 1px solid #dcdbdb;
  text-align: justify;
}
.archive-collection_container .artist-detail .sending1 {
  line-height: 29px;
  font-size: 1.5rem;
}
.archive-collection_container .artist-detail .sending2 {
  padding: 14px 0;
  line-height: 27px;
  font-size: 15.5px;
}
.archive-collection_container .note {
  padding-top: 24px;
  font-size: 11px;
  text-align: right;
}

.section-title7 .virtual-text_2 {
  position: relative;
  top: 32px;
  padding-bottom: 21px;
}

.virtual-detail_collection {
  padding-bottom: 40px;
  /*position: relative;
  top: 53px;
  left: 8px;*/
}
.virtual-detail_collection h3 {
  font-size: 3.6rem;
  font-family: "HiraginoSans", sans-serif;
}
.virtual-detail_collection .virtual-creator {
  font-size: 3rem;
  font-family: "Helvetica", sans-serif;
  border-bottom: none;
  /*margin-bottom: 40px;*/
}

.virtual-detail_container {
  background-color: #2e2e2e;
  padding-top: 98px;
}
.virtual-detail_container .frame-box {
    max-width: 1100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}
.virtual-detail_container .frame-box .left {
  height: 43px;
  /*margin: 13px;*/
  /*position: relative;
  right: 14px;
  bottom: 21px;*/
}
.virtual-detail_container .frame-box .left .frame {
  width: 1000px;
  height: 1000px;
}
.virtual-detail_container .frame-box .left .frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: white;
}
.virtual-detail_container .frame-box .right {
  height: 43px;
  /*margin: 13px;*/
  /*position: relative;
  right: -13px;
  bottom: 21px;*/
}
.virtual-detail_container .artist-detail {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 84px 0 318px;
  color: #ffffff;
}
.virtual-detail_container .artist-detail dl {
  border-top: 1px solid #dcdbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 2.6rem;
  line-height: 36px;
}
.virtual-detail_container .artist-detail dl dt {
  width: 19%;
  padding: 22px 0;
  border-bottom: 1px solid #dcdbdb;
  font-weight: 700;
  letter-spacing: 1px;
}
.virtual-detail_container .artist-detail dl dd {
  font-size: 2.5rem;
  width: 81%;
  padding: 22px 0;
  border-bottom: 1px solid #dcdbdb;
  text-align: justify;
  font-weight: 800;
}
.virtual-detail_container .artist-detail dl dd.font-normal{
  font-weight: normal;
}
.virtual-detail_container .note {
  padding-top: 21px;
  /*font-size: 0.9rem;*/
  font-size: 1.3rem;
  text-align: right;
  position: relative;
  right: -4px;
}

.section-title7 .virtual-text_2 {
  position: relative;
  top: 32px;
  padding-bottom: 21px;
}

.virtual-list {
  padding-top: 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px 0;
  margin-bottom: 120px;
}

.list-detail {
  background-color: #2e2e2e;
  text-align: center;
  padding-top: 75px;
  padding-bottom: 15px;
}
.list-detail .ist-detail_title {
  max-width: 1100px;
  width: 100%;
  color: #fff;
  position: relative;
  top: 9px;
}
.list-detail .ist-detail_title h2 {
  font-family: 'HiraginoSans', sans-serif;
  font-size: 3.6rem;
  margin-bottom: 21px;
  font-weight: 800;
}
.list-detail .ist-detail_title p {
  /*text-align: left;*/
  text-align: right;
  margin-bottom: 25px;
}
.list-detail .archive_all-works2 {
  margin: 0 auto;
}

.virtual-mainvisual {
  position: relative;
  margin-bottom: 100px;
  height: 700px;
  /*margin-top: 19px;*/
}
.virtual-mainvisual .main-image {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
.virtual-mainvisual .main-title {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -65%);
          transform: translate(-50%, -65%);
  z-index: 1;
  width: 740px;
}

.virtual-entrance {
  width: 708px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.virtual-entrance .virtual_image1 {
  width: 386px;
  position: absolute;
  top: -239px;
  left: 178px;
}
.virtual-entrance h2 {
  font-size: 4.3rem;
  font-family: "Helvetica", sans-serif;
  margin-bottom: 6px;
  color: #000066;
}
.virtual-entrance .entrance-reading {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Helvetica", sans-serif;
  margin-bottom: 21px;
  color: #000066;
}
.virtual-entrance .entrance-text {
  margin-bottom: 42px;
}

.virtual-operation {
  position: relative;
  background-color: #77b2ff;
  padding-top: 88px;
}
.virtual-operation .operation-position {
  position: relative;
}
.virtual-operation .operation-position .operation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.virtual-operation .operation-position .operation-container .operation-back {
  content: "";
  width: 530px;
  height: 563px;
  background-color: #000066;
}
.virtual-operation .operation-position .operation-container .operation-text {
  width: 436px;
  margin-left: 50px;
  color: #fff;
}
.virtual-operation .operation-position .operation-container .operation-text h3 {
  font-size: 4.3rem;
  font-weight: 800;
  margin-bottom: 27px;
  line-height: 1;
}
.virtual-operation .operation-position .operation-container .operation-text .operation-text2 {
  font-size: 18.5px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 38px;
}
.virtual-operation .operation-position .operation-container .operation-text p {
  font-size: 1.5rem;
  margin-bottom: 57px;
}
.virtual-operation .operation-position img {
  position: absolute;
  width: 566px;
  height: auto;
  bottom: 170px;
  left: -8px;
}
.virtual-operation .virtual_image2 {
  position: absolute;
  width: 342px;
  bottom: -122px;
  right: 147px;
  z-index: 20;
}

.virtual_motion {
  padding: 152px 0 62px 0;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(55%, #fff), color-stop(45%, #cccccc), to(#cccccc));
  background: linear-gradient(90deg, #fff 0%, #fff 55%, #cccccc 45%, #cccccc 100%);
}
.virtual_motion .motion-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.virtual_motion .motion-container .motion-text {
  margin-right: 46px;
  padding-left: 33Px;
  width: 564px;
}
.virtual_motion .motion-container .motion-text ul {
  list-style-type: disc;
  padding-left: 1.3em;
}
.virtual_motion .motion-container .motion-text h3 {
  font-size: 4.3rem;
  color: #000066;
  margin-bottom: 5px;
}
.virtual_motion .motion-container .motion-text .motion-text {
  font-size: 17px;
  line-height: 38px;
  margin-bottom: 7px;
}
.virtual_motion .motion-container .motion-text .motion-text2 {
  margin-top: 27px;
  font-size: 14px;
  margin-bottom: 59px;
}
.virtual_motion .motion-container .motion-photo {
  width: 517px;
  height: 347px;
  background-color: #000066;
  text-align: center;
  padding-top: 65px;
}
.virtual_motion .motion-container .motion-photo img {
  width: 465px;
  height: auto;
}

.virtual-entrance2 {
  padding-top: 82px;
  padding-bottom: 82px;
  text-align: center;
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(119, 178, 255, 0.71)), to(rgba(203, 114, 234, 0.71)));
  background-image: linear-gradient(90deg, rgba(119, 178, 255, 0.71), rgba(203, 114, 234, 0.71));
}
.virtual-entrance2 h2 {
  font-size: 4.3rem;
  font-family: 'HiraginoSans', sans-serif;
  margin-bottom: 6px;
  color: #000066;
}
.virtual-entrance2 .entrance-reading {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Helvetica", sans-serif;
  margin-bottom: 32px;
  color: #000066;
}
.virtual-entrance2 .virtual_image3 {
  width: 380px;
  position: absolute;
  bottom: -116px;
  left: 124px;
  z-index: 1;
}

.virtual-html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 136px auto 81px auto;
}
.virtual-html p {
  padding-left: 31px;
  line-height: 37px;
  margin-right: 134px;
}

.virtual-enoco {
  /*background-color: #000066;*/
  background-color: #fff;
  color: #2E2E2E;
  /*padding: 122px 0 128px 0;*/
  padding: 233px 0;
  position: relative;
}
.virtual-enoco .enoco-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.virtual-enoco .enoco-container .enoco-logo {
  width: 563px;
  height: 246px;
  padding-top: 19px;
}
.virtual-enoco .enoco-container .enoco-logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.virtual-enoco .enoco-container .enoco-content {
  /*width: 510px;*/
  width: 100%;
  display: flex;
  align-items: center;;
  margin-left: auto;
}
.virtual-enoco .enoco-container .enoco-content p {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 2;
  margin-right: 100px;
  width: 56%;
}
.virtual-enoco .virtual-image3 {
  position: absolute;
  width: 342px;
  bottom: -134px;
  left: 37%;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, transform 1s;
  transition: opacity 1.5s, transform 1s, -webkit-transform 1s;
}

.fade.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.fade2 {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, transform 1s;
  transition: opacity 1.5s, transform 1s, -webkit-transform 1s;
}

.fade2.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.topic-list {
  padding-top: 70px;
}
.topic-list .archive_pagination {
  margin: 35px;
}
.topic-list p {
  width: 100%;
  padding: 5px;
  line-height: 21px;
}

.topic-detail {
  max-width: 1100px;
  width: 100%;
  /*margin-top: -32px;*/
}
.topic-detail .topic-detail_item_1 {
  margin: -1px;
}
.topic-detail .topic-detail_item_1 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-top: 37px;
  /*top: 49px;*/
}
.topic-detail .topic-detail_item_1 dl dt {
  font-size: 2rem;
  position: relative;
  /*top: 33px;*/
}
.topic-detail .topic-detail_item_1 dl dd {
  position: relative;
  /*top: 36px;*/
  margin-top: 4px;
  margin-left: 43px;
  width: 84px;
  height: 24px;
  background-color: #2e2e2e;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding-top: 2px;
}
.topic-detail .topic-detail_item_1 dl p {
  width: 100%;
  font-size: 3.4rem;
  font-weight: 800;
  font-family: "Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-top: 24px;
  line-height: 1.3;
}
.topic-detail .topic-detail_item_1 .topic-image {
  background-color: #dbdbdb;
  max-width: 1100px;
  text-align: center;
  padding: 20px 100px;
  margin-bottom: 30px;
}
.topic-detail .topic-detail_item_1 .topic-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.topic-detail .topic-detail_item_1 p {
  position: relative;
  /*top: 4px;*/
  font-size: 1.54rem;
  /*margin-top: 44px;*/
  /*padding-bottom: 60px;*/
  padding-bottom: 30px;
}
.topic-detail .topic-detail_item_1 p.topic_txt a:hover{
	color: #cb3333;
}
.topic-detail .topic-detail_item_2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_1 {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_1 .detail_item_1 {
  position: relative;
  top: 10px;
  padding: 5px;
  width: 100%;
  max-width: 354px;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_1 .detail_item_1 img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 350px;
  height: 350px;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_1 .detail_item_1 p {
  padding-top: 20px;
  font-size: 1.3rem;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 84px;
  padding-bottom: 198px;
  border-bottom: 0.5px solid #2e2e2e;
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 .detail_item_2 {
  padding: 3px;
  position: relative;
  top: 101px;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 .detail_item_2 img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 350px;
  height: 350px;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 .detail_item_2 p {
  padding-top: 20px;
  font-size: 1.3rem;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 .detail_item_2 .PDF_btn {
  max-width: 350px;
  width: 100%;
  margin-top: 23px;
  padding-left: 16px;
  text-align: center;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 .detail_item_2 .PDF_btn a {
  margin: 0 auto;
  width: 200px;
  height: 50px;
  position: relative;
  display: block;
  text-align: center;
  border: 2px solid #2e2e2e;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: "Hiragino Sans";
  line-height: 50px;
  background-color: #fff;
  color: #2e2e2e;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 .detail_item_2 .PDF_btn a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 .detail_item_2 .PDF_btn a:hover {
  color: #fff;
}
.topic-detail .topic-detail_item_2 .topic-detail_content_2 .detail_item_2 .PDF_btn a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}

.policy-content {
  max-width: 1100px;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 100px;
}
.policy-content .policy-detail {
  margin-top: 20px;
}
.policy-content .policy-detail .policy-detail_items{
  margin-top: 32px;
}
.policy-content .policy-detail .policy-detail_items .sph3_01 {
  font-size: 2.13rem;
  font-weight: 800;
  position: relative;
  left: 3px;
}
.policy-content .policy-detail .policy-detail_items .spul_01 {
  padding-top: 30px;
  position: relative;
  top: -2px;
  left: -3px;
}
.policy-content .policy-detail .policy-detail_items .spul_01 .spli_01 {
  font-size: 1.64rem;
  letter-spacing: 0.2px;
}
.policy-content .policy-detail .policy-detail_items .spul_01 .spli_02 {
  font-size: 1.7rem;
}
.policy-content .policy-detail .policy-detail_items .spul_01 .spli_03 {
  font-size: 1.46rem;
  letter-spacing: 0.2px;
}
.policy-content .policy-detail .policy-detail_items .spul_01 .spli_04 {
  position: relative;
  top: 2px;
}
.policy-content .policy-detail .policy-detail_items {
  margin-top: 47px;
  position: relative;
  top: 10px;
}
.policy-content .policy-detail .policy-detail_items .sph3_02 {
  font-weight: 800;
  position: relative;
  top: -3px;
  left: 3px;
}
.policy-content .policy-detail .policy-detail_items .spul_02 .spli_05 {
  position: relative;
  top: -3px;
}
.policy-content .policy-detail .policy-detail_items {
  margin-top: 55px;
}
.policy-content .policy-detail .policy-detail_items .sph3_03 {
  font-weight: 800;
  font-size: 2.15rem;
  position: relative;
  top: 8px;
}
.policy-content .policy-detail .policy-detail_items .spul_03 {
  position: relative;
  top: 10px;
}
.policy-content .policy-detail .policy-detail_items{
  margin-top: 56px;
}
.policy-content .policy-detail .policy-detail_items .sph3_04 {
  font-size: 2.2rem;
  position: relative;
  font-weight: 800;
  top: 7px;
}
.policy-content .policy-detail .policy-detail_items .spp_03 {
  position: relative;
  top: 9px;
}
.policy-content .policy-detail .policy-detail_items .spul_04 {
  position: relative;
  top: 10px;
  left: -3px;
}
.policy-content .policy-detail .policy-detail_items {
  margin-top: 58px;
}
.policy-content .policy-detail .policy-detail_items .sph3_05 {
  font-size: 2.01rem;
  position: relative;
  font-weight: 800;
  top: 9px;
}
.policy-content .policy-detail .policy-detail_items .spul_05 {
  position: relative;
  top: 10px;
}
.policy-content .policy-detail .policy-detail_items .spul_05 .spli_11 {
  font-size: 1.85rem;
}
.policy-content .policy-detail .policy-detail_items .spul_05 .spp_04 {
  position: relative;
  left: 29px;
}
.policy-content .policy-detail .policy-detail_items .spul_06 .spli_12 {
  font-size: 1.8rem;
  position: relative;
  top: -2px;
}
.policy-content .policy-detail .policy-detail_items .spul_06 .spp_05 {
  position: relative;
  left: 26px;
}
.policy-content .policy-detail .policy-detail_items .spul_07 .spli_13 {
  font-size: 1.64rem;
  position: relative;
  top: -8px;
}
.policy-content .policy-detail .policy-detail_items .spul_07 .spp_06 {
  position: relative;
  top: -10px;
  left: 30px;
}
.policy-content .policy-detail .policy-detail_items .spul_07 .spli_14 {
  position: relative;
  top: -6px;
  left: 30px;
}
.policy-content .policy-detail .policy-detail_items .spul_08 .spli_15 {
  font-size: 1.64rem;
  position: relative;
  top: -15px;
}
.policy-content .policy-detail .policy-detail_items .spul_08 .spp_07 {
  position: relative;
  top: -15px;
  left: 30px;
}
.policy-content .policy-detail .policy-detail_items .spul_09 .spli_16 {
  position: relative;
  top: -27px;
}
.policy-content .policy-detail .policy-detail_items .spul_09 .spp_08 {
  position: relative;
  top: -24px;
  left: 30px;
}
.policy-content .policy-detail .policy-detail_items .spul_10 .spli_17 {
  position: relative;
  top: -36px;
}
.policy-content .policy-detail .policy-detail_items .spul_10 .spp_09 {
  position: relative;
  left: 30px;
  bottom: 35px;
}
.policy-content h3 {
  font-size: 2.2rem;
}
.policy-content p {
  font-size: 1.5rem;
}
.policy-content li {
  font-size: 1.51rem;
}

.policy-content_sp {
  display: none;
}

.policy_link {
  font-weight: 800;
}

.policy_link:hover {
  color: #cb3333;
}

.policy-while {
  padding-top: 40px;
}

@media screen and (max-width: 520px) {
  .policy-while {
    padding-top: 20px;
  }
  .policy-space1 {
    padding-top: 10px;
  }
  /*.policy-content {
    display: none;
  }
  .policy-content_sp {
    display: block;
  }*/
}
.policy-space1 {
  padding-top: 20px;
}

.social-media_content ul {
  letter-spacing: 0px;
}

.policy-content .policy-detail .policy-detail_items .spul_05 .spli_11,
.policy-content .policy-detail .policy-detail_items .spul_06 .spli_12,
.policy-content .policy-detail .policy-detail_items .spul_07 .spli_13,
.policy-content .policy-detail .policy-detail_items .spul_08 .spli_15,
.policy-content .policy-detail .policy-detail_items .spul_09 .spli_16,
.policy-content .policy-detail .policy-detail_items .spul_10 .spli_17 {
  font-size: 1.85rem;
}

@media screen and (max-width: 520px) {
  .policy-content_sp {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .policy-content_sp h3 {
    font-size: 18px;
    font-family: "Helvetica", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 800;
    margin-top: 10px;
  }
  .policy-content_sp .indent {
    padding-left: 1.2em;
  }
}
.social-media_content {
  max-width: 1100px;
}
.social-media_content h3 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: -2px;
}
.social-media_content p {
  line-height: 1.75;
}
.social-media_content ul {
  line-height: 1.75;
  letter-spacing: -1px;
}
.social-media_content .social_purpose {
  margin-top: 49px;
}
.social-media_content .social-media_official {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*margin-top: 30px;*/
  margin-top: 15px;
}
.social-media_content .social-media_official dt {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  width: 13%;
  font-weight: 800;
}
.social-media_content .social-media_official dd {
  width: 80%;
}
.social-media_content .social-media_official {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-media_content .social-media_official h4 {
  width: 30%;
}
.social-media_content .social-media_official dl {
  width: 70%;
}

@media screen and (max-width: 520px) {
  .social-media_content h3 {
    font-size: 1.8rem;
    margin-bottom: -2px;
    font-weight: 800;
    line-height: 26px;
  }
  .social-media_content p {
    line-height: 1.75;
  }
  .social-media_content ul {
    line-height: 1.75;
    letter-spacing: -1px;
  }
  .social-media_content .social_purpose {
    margin-top: 30px;
  }
  .social-media_content .social-media_official {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .social-media_content .social-media_official dt {
    width: 100%;
    font-weight: 800;
  }
  .social-media_content .social-media_official dd {
    width: 100%;
  }
  .social-media_content .social-bold {
    font-size: 13.5px;
  }
  .social-media_content .social-media_official {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .social-media_content .social-media_official h4 {
    width: 100%;
  }
  .social-media_content .social-media_official dl {
    width: 100%;
  }
}
.social_space {
  margin-top: 30px;
}

.social_space2 {
  margin-top: 40px;
}

.official_space {
  margin-bottom: 26px;
}

.contact-text {
  margin: 52px 0;
}

.contact-text1 {
  margin: 5px 0 10px 0;
  letter-spacing: -1px;
}

.contact-text2 {
  margin: 0 0 113px 0;
}

.social-left {
  text-align: right;
  margin-bottom: 41px;
}

.social_square::before {
  content: "■";
  font-size: 100%;
  margin-bottom: 5px;
  letter-spacing: normal;
}

.social-bold {
  font-weight: 800;
  font-size: 1.7rem;
}
.social-bold:hover {
  color: #cb3333;
}

.social-space {
  padding-top: 18px;
  padding-bottom: 5px;
  letter-spacing: -0.04em;
}

.section-title {
  text-align: center;
  margin-top: 48px;
}
.section-title h2 {
  font-size: 3.6rem;
  font-family: "HiraginoSans", sans-serif;
  /*font-family: 'NotoSans-Black', sans-serif;*/
  font-weight: 900;
  margin-bottom: 16px;
}
.section-title p {
  font-family: "Futura", sans-serif;
  /*font-family: "HiraginoSans", sans-serif;*/
  padding-bottom: 32px;
  /*font-weight: 600;*/
  border-bottom: 1px solid #2e2e2e;
}
.section-title .text {
  text-align: justify;
  /*font-family: "Helvetica", sans-serif;*/
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  line-height: 26px;
  /*border-top: 1px solid #2e2e2e;*/
  border-bottom: 1px solid #2e2e2e;
  padding: 25px 0 19px 0;
  margin-bottom: 30px;
}

.section-title.detail .text {
  margin-bottom: 20px;
}

.section-title.detail a{
  display: block;
  text-align: left;
  margin-bottom: 30px;
}

.section-title.detail a:hover{color: #cb3333;}

.section-title .text.font_normal {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
}


@media screen and (max-width: 520px) {
  .section-title h2 {
    font-size: 20px !important;
  }

  .virtual-enoco .enoco-container .enoco-content{display: block;}

  .virtual-enoco .enoco-container .enoco-content p{width: 100%; margin-bottom: 20px;}

  .menu_list div{
		height: auto;
		padding: 3% 0;
	}
	.menu_list div p{
		font-size: 20px;
	    line-height: 1.5;
	}
}
.section-title2 {
  /*position: absolute;*/
  /*top: 144px;*/
  /*z-index: 10;*/
}
.section-title2 h2 {
  font-size: 6.2rem;
  font-family: "Futura", sans-serif;
  margin-bottom: 38px;
  font-weight: 500;
}
.section-title2 .bold {
  font-weight: 600;
}
.section-title2 p + p {
  margin-top: 30px;
}

.section-title3 {
  /*max-width: 1200px;*/
  max-width: 1140px;
  width: 100%;
  /*padding: 0 4%;*/
  padding: 0 20px;
  margin: 0 auto;
  text-align: right;
}
.section-title3 h2 {
  /*font-size: 6.2rem;*/
  font-size: 3.6rem;
  font-family: "Futura", sans-serif;
  margin-bottom: 38px;
  font-weight: 500;
}
.section-title3 p {
  margin-bottom: 50px;
}
.section-title3 .title-p {
  font-size: 2rem;
  font-family: "HiraginoSans", sans-serif;
  margin-bottom: 29px;
}

.section-title4 {
  text-align: center;
  margin-top: 48px;
}
.section-title4 h2 {
  font-size: 3.6rem;
  font-family: "HiraginoSans", sans-serif;
  font-weight: 900;
  margin-bottom: 12px;
}
.section-title4 p {
  font-family: "HiraginoSans", sans-serif;
  padding-bottom: 36px;
  font-weight: 600;
  border-bottom: 1px solid #2e2e2e;
}

@media screen and (max-width: 520px) {
  .section-title4 {
    text-align: center;
    margin-top: 48px;
  }
  .section-title4 h2 {
    font-size: 3.2rem;
    font-family: "HiraginoSans", sans-serif;
    font-weight: 900;
    margin-bottom: 12px;
  }
  .section-title4 p {
    font-family: "HiraginoSans", sans-serif;
    padding-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid #2e2e2e;
  }
}
.section-title5 {
  text-align: center;
  margin-top: 48px;
}
.section-title5 h2 {
  font-size: 3.6rem;
  font-family: "HiraginoSans", sans-serif;
  font-weight: 900;
  margin-bottom: 12px;
}
.section-title5 p {
  font-family: "HiraginoSans", sans-serif;
  padding-bottom: 30px;
  font-weight: 600;
  border-bottom: 1px solid #2e2e2e;
}

@media screen and (max-width: 520px) {
  .section-title5 h2 {
    font-size: 26px;
    line-height: 36px;
    text-align: left;
  }
}
.section-title6 {
  text-align: center;
  margin-top: 48px;
}
.section-title6 h2 {
  position: relative;
  top: 20px;
  font-size: 3.5rem;
  font-family: "HiraginoSans", sans-serif;
  font-weight: 900;
  margin-bottom: 12px;
}
.section-title6 p {
  font-family: "HiraginoSans", sans-serif;
  padding-bottom: 37px;
  position: relative;
  top: 20px;
  font-weight: 600;
  border-bottom: 1px solid #2e2e2e;
}

.section-title7 {
  margin-top: 50px;
}
.section-title7 h2 {
  text-align: center;
  position: relative;
  top: 20px;
  font-size: 3.5rem;
  font-family: "HiraginoSans", sans-serif;
  font-weight: 900;
  margin-bottom: 12px;
}
.section-title7 .virtual-text_1 {
  text-align: center;
}
.section-title7 p {
  font-family: "HiraginoSans", sans-serif;
  padding-bottom: 37px;
  margin-bottom: 6px;
  position: relative;
  top: 20px;
  font-weight: 600;
  border-bottom: 1px solid #2e2e2e;
}

.contents-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #2e2e2e;
  margin-bottom: 36px;
}
.contents-menu .menu-list {
  display: block;
  position: relative;
  color: #2E2E2E;
  width: 150px;
  height: 42px;
  text-align: center;
  overflow: hidden;
}
.contents-menu .menu-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #959595; /* 下線の色を指定 */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  opacity: 0; /* 初期状態では非表示 */
}
.contents-menu .menu-list::after {
  content: "▲"; /* 上向きの三角矢印のテキストを挿入 */
  position: absolute;
  color: #959595;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); /* 矢印の位置を調整 */
  font-size: 10px; /* 矢印のサイズを調整 */
  opacity: 0; /* 初期状態では非表示 */
}
.contents-menu .menu-list:hover::before,
.contents-menu .menu-list:hover::after {
  width: 100%;
  opacity: 1; /* ホバー時に下線と矢印を表示 */
}
.contents-menu .menu-list:hover .title {
  color: #cb3333;
}
.contents-menu .title {
  font-weight: 800;
}
/*.contents-menu .title2 {
  letter-spacing: -3px;
}*/

.contents-menu .menu-list2 {
  display: block;
  position: relative;
  color: #2E2E2E;
  width: 150px;
  height: 42px;
  text-align: center;
  overflow: hidden;
}
.contents-menu .menu-list2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #cb3333; /* 下線の色を指定 */
  opacity: 1;
}
.contents-menu .menu-list2::after {
  content: "▲"; /* 上向きの三角矢印のテキストを挿入 */
  position: absolute;
  color: #cb3333;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); /* 矢印の位置を調整 */
  font-size: 10px; /* 矢印のサイズを調整 */
  opacity: 1;
}
/*.contents-menu .title {
  font-weight: 800;
}
.contents-menu .title2 {
  letter-spacing: -3px;
}*/

.archive_all-works {
  border-top: 1px solid #2e2e2e;
}
.archive_all-works .annotation {
  margin-top: 40px;
  margin-bottom: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.archive_all-works .collection-container {
	display:flex;
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));*/
  gap: 29px 20px;
  /*-webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;*/
		  justify-content:flex-start;
  margin-bottom: 104px;
  flex-wrap:wrap;
}
.archive_all-works .collection-container .collection {
  width: 254px;
  height: 300px;
  border: 1px solid #2e2e2e;
  padding: 10px;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive_all-works .collection-container .collection a{
	display: inline-block;
    width: 100%;
    height: 100%;
}
.archive_all-works .collection-container .collection img {
  width: 234px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 11px;
}
.archive_all-works .collection-container .collection .name {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  line-height: 30px;
}
.archive_all-works .collection-container .collection:hover {
  top: -10px;
  left: -10px;
  -webkit-box-shadow: 10px 10px 10px 0 #e0e0e0;
          box-shadow: 10px 10px 10px 0 #e0e0e0;
}

.archive_all-works .collection-container .collection .name li{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.archive_all-works2 {
  max-width: 1100px;
  width: 100%;
}
.archive_all-works2 .collection-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
  gap: 32.5px 28px;
  /*position: relative;
  top: -3px;*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*margin-bottom: 59px;*/
  margin-bottom: 100px;
}
.archive_all-works2 .collection-container .collection {
  width: 254px;
  height: 300px;
  border: 1px solid #2e2e2e;
  padding: 10px;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}
.archive_all-works2 .collection-container .collection img {
  margin-bottom: 11px;
}
.archive_all-works2 .collection-container .collection .name {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
}
.archive_all-works2 .collection-container .collection:hover {
  top: -10px;
  left: -10px;
  -webkit-box-shadow: 10px 10px 10px 0 #595757;
  box-shadow: 10px 10px 10px 0 #595757;
}

.archive_all-works2 .collection-container .collection .name li{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.archive_all-works3 {
  max-width: 1100px;
  width: 100%;
  margin: -14px auto;
}
.archive_all-works3 .collection-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
  gap: 33px 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 35px;
}
.archive_all-works3 .collection-container .collection {
  width: 324px;
  height: 331px;
  border: 1px solid #2e2e2e;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}
.archive_all-works3 .collection-container .collection a{
	display: inline-block;
    width: 100%;
    height: 100%;
}
.archive_all-works3 .collection-container .collection .tell {
  position: absolute;
  font-size: 1.05rem;
  padding: 3px;
  width: 84px;
  height: 24px;
  background-color: #2e2e2e;
  color: #fff;
  text-align: center;
  top: 8px;
  left: 5px;
}
.archive_all-works3 .collection-container .collection img {
  width: 100%;
  height: 162px;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive_all-works3 .collection-container .collection dl {
  padding: 23px 17px 0px 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.archive_all-works3 .collection-container .collection dl .name {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
}
.archive_all-works3 .collection-container .collection dl dt {
  color: #646464;
}
.archive_all-works3 .collection-container .collection dl dd {
  text-align: center;
  margin-left: auto;
  font-size: 1rem;
  width: 60px;
  height: 24px;
  background-color: #8E0000;
  color: #fff;
  line-height: 24px;
}
.archive_all-works3 .collection-container .collection:hover {
  top: -10px;
  left: -10px;
  -webkit-box-shadow: 10px 10px 10px 0 #e0e0e0;
          box-shadow: 10px 10px 10px 0 #e0e0e0;
}

.btn-area {
  margin-left: 26%;
}
.btn-area .submit,
.btn-area .reset {
  height: 68px;
  width: 48%;
  border: 2px solid #2e2e2e;
  font-size: 1.6rem;
  font-weight: bold;
}
.btn-area .submit {
  margin-right: 3%;
  background: url("../image/archive/search_icon-white.png");
  background-repeat: no-repeat;
  background-position: 47px center;
  background-size: 23px;
  background-color: #2e2e2e;
  color: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.btn-area .submit::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.btn-area .submit:hover {
  color: #2e2e2e;
}
.btn-area .submit:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}
.btn-area .reset {
  background-color: #fff;
  color: #2e2e2e;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.btn-area .reset::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.btn-area .reset:hover {
  color: #fff;
}
.btn-area .reset:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}

.btn-area2 {
  max-width: 1200px;
  padding: 0 4%;
  width: 100%;
  margin: 0 auto;
}
.btn-area2 .send {
  margin: 0 0 0 auto;
  display: block;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  position: relative;
  width: 360px;
  height: 50px;
  border: 2px solid #2e2e2e;
  background-color: #fff;
  font-size: 1.3rem;
  color: #2e2e2e;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.btn-area2 .send::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.btn-area2 .send:hover {
  color: #fff;
}
.btn-area2 .send:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}
.btn-area2 .send::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 16px; /* arrow size */
  height: 15px; /* arrow size */
  border-top: 2px solid #2e2e2e; /* color */
  border-right: 2px solid #2e2e2e;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: inherit;
  transition: inherit;
}
.btn-area2 .send::after a:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.btn-area2 .send::after a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}

.btn-area4 {
  max-width: 1100px;
  padding-bottom: 100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  left: 10px;
}
.btn-area4 .send {
  margin: 0 auto;
  display: block;
  text-align: center;
  line-height: 50px;
  font-weight: 800;
  font-family: "HiraginoSans", sans-serif;
  position: relative;
  width: 360px;
  height: 50px;
  border: 2px solid #2e2e2e;
  background-color: #fff;
  font-size: 1.3rem;
  color: #2e2e2e;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.btn-area4 .send::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.btn-area4 .send:hover {
  color: #fff;
}
.btn-area4 .send:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}
.btn-area4 .send::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 16px; /* arrow size */
  height: 15px; /* arrow size */
  border-top: 2px solid #2e2e2e; /* color */
  border-right: 2px solid #2e2e2e;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: inherit;
  transition: inherit;
}
.btn-area4 .send::after a:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.btn-area4 .send::after a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}

.archive_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 7px;
  list-style-type: none;
  padding: 0;
  margin-bottom: 73px;
}
.archive_pagination li{
	margin: 3px 0px;
}

.archive_pagination a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*width: 1.5em;*/
  min-width: 1.7em;
  height: 1.7em;
  padding: 0px 0.2rem;
  border: 1px solid #2e2e2e;
  border-radius: 1px;
  color: #2e2e2e;
}
.archive_pagination a:hover,
.archive_pagination3 a:hover {
  background-color: #959595;
  color: #fff;
}
.archive_pagination .current a {
  background-color: #2e2e2e;
  color: #fff;
  pointer-events: none;
}
.archive_pagination .prev a,
.archive_pagination .next a {
  gap: 0 4px;
  width: auto;
  padding: 0.5em;
  line-height: 1;
}
.archive_pagination .prev a::before {
  border-bottom: 1px solid #2e2e2e;
  border-left: 1px solid #2e2e2e;
}
.archive_pagination .next a::after {
  border-top: 1px solid #2e2e2e;
  border-right: 1px solid #2e2e2e;
}

.archive_pagination2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 7px;
  list-style-type: none;
  padding: 0;
  margin-bottom: 100px;
}
.archive_pagination2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #2e2e2e;
  border-radius: 1px;
  color: #2e2e2e;
}
.archive_pagination2 a:hover {
  background-color: #959595;
  color: #fff;
}
.archive_pagination2 .current a {
  background-color: #2e2e2e;
  color: #fff;
  pointer-events: none;
}
.archive_pagination2 .prev a,
.archive_pagination2 .next a {
  gap: 0 4px;
  width: auto;
  padding: 0.5em;
  margin: -2px;
  line-height: 1;
}
.archive_pagination2 .prev a::before {
  border-bottom: 1px solid #2e2e2e;
  border-left: 1px solid #2e2e2e;
}
.archive_pagination2 .next a::after {
  border-top: 1px solid #2e2e2e;
  border-right: 1px solid #2e2e2e;
}

.archive_pagination3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
  list-style-type: none;
  padding: 0;
  position: relative;
  /*bottom: -31px;*/
  margin-bottom: 55px;
}
.archive_pagination3 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #fff;
  border-radius: 1px;
  color: #fff;
  padding-top: 2px;
}
.archive_pagination3 a:hover {
  background-color: #959595;
  /*color: #fff;*/
  color: #2e2e2e;
}
.archive_pagination3 .current a {
  background-color: #fff;
  color: #2e2e2e;
  pointer-events: none;
}
.archive_pagination3 .prev a,
.archive_pagination3 .next a {
  gap: 0 4px;
  /*width: auto;*/
  width: 40px;
  /*padding: 0.5em;*/
  line-height: 1;
}
.archive_pagination3 .prev a::before {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.archive_pagination3 .next a::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

#page-top {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 5;
}

#page-top a {
  background: #2E2E2E;
  border: 1px solid #fff;
  color: #fff;
  width: 59px;
  height: 59px;
  padding-top: 15px;
  text-align: center;
  display: block;
  opacity: 0.9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#page-top a:hover {
  background: #CB3333;
}

.link-arrow {
  text-align: right;
  /*padding-right: 17px;*/
}
.link-arrow a,
.link-arrow span{
  font-size: 1.3rem;
}
.link-arrow img {
  width: 17px;
  margin-left: 30px;
}
.link-arrow .arrow-red {
  display: none;
}
.link-arrow a:hover{
  color: #cb3333;
}
.link-arrow a:hover .arrow-black {
  display: none;
}
.link-arrow a:hover .arrow-red {
  display: inline-block;
}

.vr-enoco_length {
  /*max-width: 1200px;*/
  max-width: 1140px;
  width: 100%;
  /*padding: 0 4%;*/
  padding: 0 20px;
  margin: 0 auto;
}

.link-arrow_movie {
  text-align: right;
}
.link-arrow_movie a {
  font-size: 1.3rem;
  color: #fff;
}
.link-arrow_movie img {
  width: 16px;
  margin-left: 30px;
}
.link-arrow_movie .arrow-red {
  display: none;
}
.link-arrow_movie:hover a ,
.virtual-btn a:hover{
  color: #cb3333;
}
.link-arrow_movie:hover .arrow-White {
  display: none;
}
.link-arrow_movie:hover .arrow-red {
  display: inline-block;
}

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  /*margin: 20px 0 0 0;*/
}

.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 13px; /*ドットボタンのサイズ*/
  height: 13px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #828282; /*ドットボタンの色*/
  border: none;
}

.slick-dots .slick-active button {
  background: #2e2e2e; /*ドットボタンの現在地表示の色*/
}

.top_mainvisual .slick-dots {
  margin: -35px 0 0 0;
}

.btn-area3 .send {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  text-align: center;
  line-height: 23px;
  /*line-height: 68px;*/
  position: relative;
  width: 500px;
  min-height: 68px;
  border: 2px solid #2e2e2e;
  background-color: #fff;
  font-size: 1.3rem;
  color: #2e2e2e;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.btn-area3 .send::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.btn-area3 .send:hover {
  color: #fff;
}
.btn-area3 .send:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}

.virtual-btn {
  margin-bottom: 79px;
}
.virtual-btn .send {
  margin: 0 auto;
  display: block;
  text-align: center;
  line-height: 70px;
  position: relative;
  width: 380px;
  height: 70px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(119, 146, 255)), to(rgb(188, 18, 210)));
  background-image: linear-gradient(90deg, rgb(119, 146, 255), rgb(188, 18, 210));
  border-radius: 5px;
  font-size: 2.6rem;
  color: #fff;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5);
}
.virtual-btn .send::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.virtual-btn .send:hover {
  color: #fff;
}
.virtual-btn .send:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}

.virtual-btn2 .send {
  margin: 0 0 0 auto;
  display: block;
  text-align: center;
  line-height: 70px;
  position: relative;
  width: 380px;
  height: 70px;
  background-color: #fff;
  border-radius: 5px;
  font-size: 2.6rem;
  color: #2e2e2e;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.5);
}
.virtual-btn2 .send::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.virtual-btn2 .send:hover {
  color: #fff;
}
.virtual-btn2 .send:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}
.virtual-btn2 .send2 {
  margin: 0;
}

.virtual-btn3 {
  margin-bottom: 0;
}

.virtual-btn4 .send {
  display: block;
  text-align: center;
  line-height: 70px;
  position: relative;
  width: 380px;
  height: 70px;
  background-color: #77b2ff;
  border-radius: 5px;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.virtual-btn4 .send::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0); /* 追加 */
  -webkit-transform-origin: right top;
          transform-origin: right top; /* 追加 */
}
.virtual-btn4 .send:hover {
  color: #fff;
}
.virtual-btn4 .send:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 修正 */
  -webkit-transform-origin: left top;
          transform-origin: left top; /* 追加 */
}

.virtual-btn5 {
  display: block;
  text-align: center;
  width: 380px;
  height: 70px;
  /*background-color: #fff;*/
  background-color: #0000B8;
  border-radius: 5px;
  font-size: 2.65rem;
  font-weight: 800;
  margin-left: 0;
  cursor: pointer;
  line-height: 70px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  left: 0;
}
.virtual-btn5:hover {
  top: -5px;
  left: -5px;
  -webkit-box-shadow: 5px 5px 0px 0px rgb(46, 46, 46);
          box-shadow: 5px 5px 0px 0px rgb(46, 46, 46);
}
.virtual-btn5 a{
    display: inline-block;
    width: 100%;
    color: #fff;
}

.mainvisual {
  position: relative;
  /*padding-bottom: 40px;*/
  /*background-color: #dbdbdb;*/
}
.mainvisual .slider {
  z-index: 1;
  height: auto;
}

/*.mainvisual .slider-item01 {
  background: url(../image/top/image/top/top_slider1.png);
}
.mainvisual .slider-item02 {
  background: url(../image/top/image/top/top_slider2.png);
}
.mainvisual .slider-item03 {
  background: url(../image/top/image/top/top_slider3.png);
}
.mainvisual .slider-item04 {
  background: url(../image/top/image/top/top_slider4.png);
}
.mainvisual .slider-item05 {
  background: url(../image/top/image/top/top_slider5.png);
}
.mainvisual .slider-item06 {
  background: url(../image/top/image/top/top_slider6.png);
}
*/
.mainvisual .slider-item img {
  width: 100%;
  height: auto;
  background: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.mainvisual .slider-item {
  margin-left: 0;
  margin-right: 0;
}
.mainvisual .slick-prev,
.mainvisual .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 48%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
  height: 32px;
  width: 32px;
}
.mainvisual .slick-prev {
  /*戻る矢印の位置と形状*/
  left: 1.5%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.mainvisual .slick-next {
  /*次へ矢印の位置と形状*/
  right: 1.5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.topic {
  background-color: #dbdbdb;
  padding-bottom: 70px;
}
.topic .topic-title {
  /*width: 1167px;*/
  max-width: 1110px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*margin: 0 -2px 0 auto;*/
  margin: 0 auto;
  
}
.topic .topic-title h2 {
  font-size: 3rem;
  font-family: "Futura", sans-serif;
  font-weight: 500;
}
.topic .topic-title h2 span {
  font-size: 1.6rem;
  font-weight: 600;
  margin-left: 17px;
}
.topic .topic-content {
  margin: 0 -11px 20px auto;
  width: 1167px;
  height: 290px;
}
.topic .topic-content .topic-item {
  position: relative;
  margin: 20px 0 0 27px;
  width: 270px;
  height: 270px;
}
.topic .topic-content .topic-item .category-mark {
  position: absolute;
  top: 7px;
  left: 6px;
  z-index: 1;
  width: 70px;
  height: 20px;
  background-color: #333333;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  line-height: 20px;
  font-family: "HiraginoSans", sans-serif;
}
.topic .topic-content .topic-item img {
  width: 270px;
  height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
}
.topic .topic-content .topic-item .topic-text {
  background-color: #fff;
  padding: 18px 16px 0 15px;
  font-size: 1.4rem;
  line-height: 1.5;
  height: 135px;
}
.topic .topic-content .topic-item .topic-text .date-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.topic .topic-content .topic-item .topic-text .new {
  width: 50px;
  height: 20px;
  background-color: #8e0000;
  font-family: "HiraginoSans", sans-serif;
  font-weight: normal;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  line-height: 20px;
}
.topic .topic-content .topic-item:hover {
  top: -10px;
  left: -10px;
  -webkit-box-shadow: 10px 10px 10px 0 #707070;
          box-shadow: 10px 10px 10px 0 #707070;
}

.none {
  visibility: hidden;
}

.none2 {
  display: none;
}

.osaka-museum {
  position: relative;
  padding-bottom: 59px;
}
.osaka-museum .osaka-museum_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*margin-bottom: 95px;*/
}
.osaka-museum .osaka-museum_content .museum-left,
.osaka-museum .osaka-museum_content .museum-right {
  /*width: 50%;*/
  /*height: 1130px;*/
}
.osaka-museum .osaka-museum_content .museum-left,
.osaka-museum .osaka-museum_content .museum-right {
  /*position: relative;*/
}
.osaka-museum .osaka-museum_content .museum-right {
  text-align: right;
  /*background-color: #DBDBDB;*/
}
.osaka-museum .osaka-museum_content .left {
  /*bottom: 72px;*/
  /*right: 160px;*/
}
.osaka-museum .osaka-museum_content .left:hover {
  /*bottom: 79px;
  right: 169px;
  -webkit-box-shadow: 7px 7px 7px 0 #2e2e2e;
          box-shadow: 7px 7px 7px 0 #2e2e2e;*/
}
/*.osaka-museum .osaka-museum_content .right {
  bottom: 72px;
  left: 160px;
  background-color: #fff;
  text-align: left;
}*/
/*.osaka-museum .osaka-museum_content .right:hover {
  bottom: 79px;
  left: 151px;
  -webkit-box-shadow: 7px 7px 7px 0 #2e2e2e;
          box-shadow: 7px 7px 7px 0 #2e2e2e;
}*/
/*.osaka-museum .osaka-museum_text {
  max-width: 1200px;
  padding: 0 4%;
  width: 100%;
  margin: 0 auto 30px auto;
}*/

.museum-photo {
  /*padding-top: 445px;*/
}
.museum-photo img {
  width: 90%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}

.museum-text {
  /*position: absolute;*/
  width: 456px;
  height: 280px;
  background-color: #dbdbdb;
  padding: 25px 37px 0 37px;
}
.museum-text h3 {
  font-size: 3.6rem;
  font-family: "Futura", sans-serif;
  margin-bottom: 10px;
  font-weight: 500;
}
.museum-text .museum-reading {
  margin-bottom: 10px;
}
.museum-text p {
  margin-bottom: 14px;
  text-align: justify;
}
.museum-text .museum-text2 {
  margin-bottom: 38px;
}

.vr-enoco {
  background-color: #dbdbdb;
  padding: 44px 0 51px 0;
}
.vr-enoco .vr-photo {
  display: block;
  max-width: 1000px;
  width: 100%;
  height: 500px;
  margin: 0 auto 30px auto;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.vr-enoco .vr-photo .vr-item:hover {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.vr-enoco .vr-photo .vr-item2 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.vr-enoco .vr-photo .vr-item2 .vr-text2 {
  width: 753px;
  height: 106px;
  padding-top: 7px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.7rem;
  font-family: "HiraginoSans", sans-serif;
  font-weight: 500;
  background: rgba(46, 46, 46, 0.5);
}
.vr-enoco .vr-photo .vr-item2:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.movie {
  background-color: #505050;
  padding: 44px 0 47px 0;
  margin: 0 auto;
  color: #fff;
}
.movie .movie-content {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}
.movie .movie-content .slick-list {
	/*height: 180px;*/
	min-height: 195px;
}

/*動画単発用*/
.movie .movie_fixed_contents{
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    margin-bottom: 35px;
    
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
    gap: 30px 30px;*/
}

.movie .movie_fixed_item{
	display: inline-block;
    width: calc(100% / 4);
    margin: 0px 15px;
}
.movie .movie_fixed_item:first-child{
	margin-left: 0px;
}
.movie .movie_fixed_item:last-child{
	margin-right: 0px;
}
.movie .movie_fixed_item p{
    color: #fff;
    margin-top: 15px;
}
.movie .movie_fixed_item img{
    width: 100%;
}

.movie .movie-item {
  width: 254px;
  height: 118px;
  margin: 0 14px;
  transition: 0.3s;
}
.movie .movie-item:hover{
  transform: translate(-5px, -5px);
  box-shadow: 7px 7px 8px 0px #2e2e2e;
}

.movie .movie-item p{
	font-size: 13px;
	color: #fff;
	line-height: 22px;
}

.movie .movie-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

.movie .movie-content .slick-list{
  /*overflow: unset;*/
  padding: 10px 0px;
}

.public-relations {
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #dbdbdb), to(#dbdbdb));
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #dbdbdb 50%, #dbdbdb 100%);
  padding: 85px 4% 115px 4%;
}
.public-relations .public-title,
.public-relations .public-item {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.public-relations .public-title h2 {
  font-size: 6rem;
  font-family: "Futura", sans-serif;
  margin-bottom: 30px;
  font-weight: 500;
}
.public-relations .public-title p {
  margin-bottom: 30px;
  font-weight: 800;
}
.public-relations .public-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.public-relations .public-item .link-arrow {
  width: 30%;
  margin-bottom: 10px;
}
.public-relations .public-item .public-photo {
  display: block;
  min-width: 660px;
  width: 55%;
  height: auto;
  margin-left: 30px;
  margin-top: -75px;
  overflow: hidden;
}
.public-relations .public-item .public-photo:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
@media screen and (max-width: 770px) {
	.public-relations .public-item .public-photo {
		width: 100%;
		min-width: unset;
	    margin-top: 10px;
	}
}

.hover_hide{
	display: none;
}

.page_number_icon span{
    display: block;
    width: 13px;
    height: 17px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    z-index: 1;
    background: #2e2e2e;
}
.page_number_icon a:hover span{
    background: #fff;
}
.page_number_icon.number_icon_left span{
    transform: rotate(180deg);
}
.page_number_icon.number_icon_right span{
	
}

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

.send-pdf {
    font-weight: bold;
    margin-top: 24px;
    display: block;
    cursor: pointer;
    text-decoration: underline;
}

 /* tuantv comment 26/01/2024
.send-pdf:hover {
    text-decoration: underline;
}  */

.selectbox-item-filter {
    font-size: 16px;
    color: #000000;
    border: 1px solid #000000;
    padding: 8px 40px;
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    border-radius: 0;
    background-image: url(/static/osaka/image/archive/arrow-sm.png);
    background-color: #e0e0e0
}
