@charset "UTF-8";
/* メディアクエリー用 */
/* webfont設定 */
/* CLEARFIX */
/* 100vhフィット(主にiOSにて) */
/* ホバー時 */
/* 蛍光マーカーを引いたような線 */
/* 中央配置 */
/* 画像をモノクロにする */
/* ANIMATION
--------------------------------------*/
/* カバー画像をスクロール共にフェードさせる */
/* 点滅アニメーション */
/* ふわっとするアニメーション */
/* 画像をホバーすると大きくなる */
/* SVGアニメーション(文字を書いてるような感じ) */
/* ローディング用アニメーション */
/* 線を引くアニメーション */
/* 画像を徐々に出すアニメーション */
/*メディアクエリー
---------------------------------------------*/
/* Scss Document */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Helvetica", "Arial", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.75;
  /*letter-spacing: 0.05em;*/
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
}
ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
}

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

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.5;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8 {
  font-weight: normal;
}

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.sp_none {
  display: none !important;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .pc_none {
    display: none !important;
  }
  .sp_none {
    display: inline-block !important;
  }
}
/* ページ読み込み後、ふわっと表示 */
body.fadeIn_body {
  animation: fadeInbody 1s ease 0s 1 normal;
  -webkit-animation: fadeInbody 1s ease 0s 1 normal;
}

@keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ---------------------------------------------------
 drawer menu
--------------------------------------------------- */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 0 0;
  background: #fff;
  transition-property: all;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transform: translateX(-400px);
  opacity: 0;
}
.drawer-menu li {
  padding: 0 10%;
  /*color: #fff;*/
}
.drawer-menu li a {
  display: block;
  height: 40px;
  line-height: 40px;
  /*color: #fff;
  -webkit-transition: all .8s;
  transition: all .8s;*/
}
.drawer-menu li.menu a {
  font-weight: bold;
  font-size: 1.4em;
}
.drawer-menu li.sns {
  margin: 20px 0 30px;
  display: flex;
  align-items: center;
}
.drawer-menu li.sns a {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-menu li.sns a i {
  font-size: 1.8em;
  line-height: 1.8;
}
.drawer-menu li.sns a img {
  width: 1.4em;
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(0%) hue-rotate(330deg) brightness(95%) contrast(102%);
}
.drawer-menu li.sns a.blog {
  font-size: 0.8em;
  font-weight: bold;
  border: 2px solid #000;
  border-radius: 3px;
  text-align: center;
  padding: 0 5px;
  vertical-align: text-bottom;
  line-height: 20px;
  height: 24px;
}
.drawer-menu li.sub a {
  height: 30px;
  line-height: 30px;
}
.drawer-menu .info {
  font-size: 0.7em;
  line-height: 1.3;
  color: #555;
  position: absolute;
  bottom: 30px;
  left: 10%;
}
.drawer-menu .info a {
  color: #555;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .drawer-menu {
    transition-duration: 0.9s;
    transform: translateX(-1680px);
  }
}
.menu-btn {
  position: fixed;
  display: block;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  /*
  &:hover{
  	.bar {
  		background: #999;
  	}
  }
  */
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .menu-btn {
    top: 35px;
    left: 35px;
  }
}
.bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 26px;
  height: 2px;
  background: #000;
  transition: all 0.5s;
  transform-origin: left top;
}
.bar.middle {
  top: 7px;
  opacity: 1;
}
.bar.bottom {
  top: 14px;
  transform-origin: left bottom;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .bar {
    width: 30px;
    height: 3px;
  }
  .bar.middle {
    top: 8px;
  }
  .bar.bottom {
    top: 16px;
  }
}
.check {
  display: none;
}
.check:checked ~ .drawer-menu {
  transition-delay: 0s;
  transform: translateX(0);
  opacity: 1;
  z-index: 4;
}
.check:checked ~ .menu-btn .menu-btn__text {
  visibility: hidden;
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
  width: 35px;
  background-color: #000 !important;
  transform: rotate(45deg);
}
.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
  width: 35px;
  top: 25px;
  background-color: #000 !important;
  transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

.close-menu {
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
  transition-property: all;
  transition-duration: 0.3s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}

/* ----------------------------------------------------------
 Right side - SNS icon
---------------------------------------------------------- */
#side_sns_content {
  position: fixed;
  right: 10px;
  top: 50%;
  margin-top: -180px;
}
#side_sns_content ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  line-height: 1;
}
#side_sns_content ul li {
  text-align: center;
}
#side_sns_content ul li a {
  color: #ccc;
  font-size: 16px;
  width: 24px;
  padding: 5px;
  display: block;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #side_sns_content {
    right: 30px;
  }
  #side_sns_content ul {
    gap: 25px 0;
  }
  #side_sns_content ul li a {
    width: 27px;
    font-size: 20px;
  }
}
/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
footer#footer {
  width: 100%;
  padding: 80px 0 40px;
}
footer#footer .logo {
  width: 120px;
  margin: 0 auto;
}
footer#footer ul.footer_menu {
  margin: 40px 0 10px;
  text-align: center;
  width: 100%;
}
footer#footer ul.footer_menu li {
  display: inline-block;
}
footer#footer ul.footer_menu li a {
  display: block;
  padding: 5px;
  margin: 0 5px;
  font-size: 0.8em;
}
footer#footer .copyright {
  font-size: 0.8em;
  text-align: center;
}

/* ----------------------------------------------------------
 Common
---------------------------------------------------------- */
.wrap {
  width: 100%;
  margin-top: 80px;
}

#about_container,
#events_container,
#staff_blog_container {
  padding-top: 80px;
}

#location_container {
  margin-top: 80px;
}

h2 {
  font-weight: bold;
  font-size: 2.2em;
  line-height: 1.5;
  margin: 0 0 0 8%;
}

.h2_underline {
  width: 30px;
  height: 3px;
  background: #000;
  margin: 0 0 30px 8%;
}

.common_box {
  width: 100%;
  padding: 0 12% 0 8%;
}

.eng {
  font-size: 0.9em;
}

.view_more .arrow {
  position: relative;
  display: inline-block;
  padding: 10px 0 10px 80px;
  margin-top: 30px;
  vertical-align: middle;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
}
.view_more .arrow2 {
  position: relative;
  display: inline-block;
  padding: 10px 0 10px 80px;
  margin-top: 20px;
  vertical-align: middle;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 65px;
}
.view_more .arrow3 {
  position: relative;
  display: inline-block;
  padding: 10px 0 10px 80px;
  margin-top: 20px;
  vertical-align: middle;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
}
.view_more .arrow::before,
.view_more .arrow::after,
.view_more .arrow2::before,
.view_more .arrow2::after,
.view_more .arrow3::before,
.view_more .arrow3::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.view_more .arrow::before,
.view_more .arrow2::before,
.view_more .arrow3::before {
  width: 70px;
  height: 1px;
  background: #000;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .wrap {
    margin-top: 140px;
  }
  #about_container,
  #events_container,
  #staff_blog_container {
    padding-top: 140px;
  }
  #location_container {
    margin-top: 140px;
  }
  h2 {
    font-size: 3.2em;
    margin: 0 0 0 100px;
  }
  .h2_underline {
    width: 50px;
    height: 2px;
    margin: 0 0 65px 100px;
  }
  .common_box {
    padding: 0 200px 0 100px;
  }
  .view_more .arrow,
  .view_more .arrow2,
  .view_more .arrow3 {
    padding: 0 0 0 90px;
  }
  .view_more .arrow:hover,
  .view_more .arrow2:hover,
  .view_more .arrow3:hover {
    padding: 0 0 0 100px;
    transition: all 0.3s;
    opacity: 1 !important;
  }
  .view_more .arrow:hover::before,
  .view_more .arrow2:hover::before,
  .view_more .arrow3:hover::before {
    width: 90px;
    transition: all 0.3s;
  }
  .view_more .arrow:hover::after,
  .view_more .arrow2:hover::after,
  .view_more .arrow3:hover::after {
    left: 83px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    transition: all 0.3s;
  }
  .view_more .arrow::before,
  .view_more .arrow2::before,
  .view_more .arrow3::before {
    width: 80px;
  }
  .view_more .arrow::after,
  .view_more .arrow2::after,
  .view_more .arrow3::after {
    left: 79px;
    width: 0;
    height: 0;
    transform: rotate(45deg);
  }
}
/* ----------------------------------------------------------
-------------------------------------------------------------
 idex.html
-------------------------------------------------------------
---------------------------------------------------------- */
/* 
 Main
-------------------- */
#main_container {
  width: 100%;
  margin-top: 60px;
  /*
  a{
  	&::before{
  		content: "";
  		display: block;

  		background-size: cover;
  		background-position: center center;
  		background-repeat: no-repeat;
  		@include mq(pc){
  			padding-top: calc(1000 / 2000 * 100%);
  			background-image: url('../images/bnr_main_220501.jpg');
  		}
  		@include mq(sp){
  			padding-top: calc(1080 / 1080 * 100%);
  			background-image: url('../images/bnr_event_220501.jpg');
  			margin-top: 60px;
  		}

  	}
  	h1{
  		width: 100px;
  		position: absolute;
  		top: 25px;
  		left: 50%;
  		margin: -0 0 0 -50px;
  	}
  }
  */
}
#main_container .slider_area .main_bnr_slider .bnr a {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  /* (画像の高さ / 画像の横幅) × 100 */
}
#main_container .slider_area .main_bnr_slider .bnr_9 a {
  background: url("../images/bnr_event_250801.jpg") no-repeat center center/cover;
}
#main_container .slider_area .main_bnr_slider .bnr_8 a {
  background: url("../images/bnr_event_250714.jpg") no-repeat center center/cover;
}
#main_container .slider_area .main_bnr_slider .bnr_7 a {
  background: url("../images/bnr_event_250710.jpg") no-repeat center center/cover;
}
#main_container .slider_area .main_bnr_slider .bnr_6 a {
  background: url("../images/bnr_event_250627.jpg") no-repeat center center/cover;
}
#main_container .slider_area .main_bnr_slider .bnr_5 a {
  background: url("../images/bnr_event_250423.jpg") no-repeat center center/cover;
}
#main_container .slider_area .main_bnr_slider .bnr_4 a {
  background: url("../images/bnr_event_250410.jpg") no-repeat center center/cover;
}
#main_container .slider_area .main_bnr_slider .bnr_3 a {
  background: url("../images/bnr_event_250307.jpg") no-repeat center center/cover;
}
#main_container .slider_area .main_bnr_slider .bnr_2 a {
  background: url("../images/bnr_event_250317.jpg") no-repeat center center/cover;
}
#main_container .slider_area .main_bnr_slider .bnr_1 a {
  background: url("../images/bnr_event_250221.jpg") no-repeat center center/cover;
}
#main_container .concept_tx {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #main_container {
    margin-top: 80px;
  }
  #main_container .slider_area .main_bnr_slider .bnr a {
    padding-top: 50%;
    /* (画像の高さ / 画像の横幅) × 100 */
  }
  #main_container .slider_area .main_bnr_slider .bnr_9 a {
    background: url("../images/bnr_main_250801.jpg") no-repeat center center/cover;
  }
  #main_container .slider_area .main_bnr_slider .bnr_8 a {
    background: url("../images/bnr_main_250714.jpg") no-repeat center center/cover;
  }
  #main_container .slider_area .main_bnr_slider .bnr_7 a {
    background: url("../images/bnr_main_250710.jpg") no-repeat center center/cover;
  }
  #main_container .slider_area .main_bnr_slider .bnr_6 a {
    background: url("../images/bnr_main_250627.jpg") no-repeat center center/cover;
  }
  #main_container .slider_area .main_bnr_slider .bnr_5 a {
    background: url("../images/bnr_main_250423.jpg") no-repeat center center/cover;
  }
  #main_container .slider_area .main_bnr_slider .bnr_4 a {
    background: url("../images/bnr_main_250410.jpg") no-repeat center center/cover;
  }
  #main_container .slider_area .main_bnr_slider .bnr_3 a {
    background: url("../images/bnr_main_250307.jpg") no-repeat center center/cover;
  }
  #main_container .slider_area .main_bnr_slider .bnr_2 a {
    background: url("../images/bnr_main_250317.jpg") no-repeat center center/cover;
  }
  #main_container .slider_area .main_bnr_slider .bnr_1 a {
    background: url("../images/bnr_main_250221.jpg") no-repeat center center/cover;
  }
}
/* 
 About
-------------------- */
#about_container .jp {
  font-size: 1em;
  margin-bottom: 20px;
}
#about_container .jp b {
  font-size: 2em;
  line-height: 1.1;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #about_container .jp {
    font-size: 1.3em;
    line-height: 2;
    margin-bottom: 30px;
  }
  #about_container .jp b {
    font-size: 2.2em;
  }
}
/* 
 Events
-------------------- */
#events_container ul.events_2-line li,
#events_container ul.events_3-line li {
  padding-bottom: 40px;
}
#events_container ul.events_2-line li .event_tx,
#events_container ul.events_3-line li .event_tx {
  font-size: 0.9em;
  padding-top: 15px;
}
#events_container ul.events_2-line li .event_tx p,
#events_container ul.events_3-line li .event_tx p {
  margin-bottom: 5px;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #events_container ul.events_2-line li,
  #events_container ul.events_3-line li {
    padding-bottom: 70px;
  }
  #events_container ul.events_2-line li .event_tx h3,
  #events_container ul.events_3-line li .event_tx h3 {
    display: -webkit-box;
    overflow: hidden;
    height: 3.5em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  #events_container ul.events_2-line li {
    width: 42%;
    float: left;
  }
  #events_container ul.events_2-line li:nth-child(odd) {
    margin-right: 6%;
  }
  #events_container ul.events_3-line li {
    width: 29.33%;
    float: left;
    margin-right: 5%;
  }
  #events_container ul.events_3-line li:nth-child(3n) {
    margin-right: 0;
  }
}
/* 
 Staff outfit & blog
-------------------- */
ul.staff_content_slider li {
  background: #999;
  height: 200px;
  width: 99.5%;
  margin-left: 0.5%;
}
ul.staff_content_slider li:first-child {
  margin-left: 2%;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  ul.staff_content_slider {
    width: 100%;
    padding: 0 164px 0 64px;
  }
  ul.staff_content_slider li {
    background: #999;
    height: 300px;
    width: 99.5%;
    margin-left: 0.5%;
  }
  ul.staff_content_slider li:first-child {
    margin-left: 0.5%;
  }
  ul.staff_content_slider .slick-list {
    width: 94%;
    float: left;
  }
  ul.staff_content_slider .prev,
  ul.staff_content_slider .next {
    width: 3%;
    color: #aaa;
    height: 300px;
    line-height: 300px;
    font-size: 30px;
    transition: all 0.3s;
  }
  ul.staff_content_slider .prev:hover,
  ul.staff_content_slider .next:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  ul.staff_content_slider .prev {
    float: left;
  }
  ul.staff_content_slider .next {
    float: right;
    text-align: right;
  }
}
/* 
 Location
-------------------- */
#location_container .map {
  margin-bottom: 30px;
  background: url("../images/map_2024_7_8.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 460px;
}
#location_container .map .anime {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  background-color: #e2007f;
  border-radius: 100%;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  animation: map-point 1s 0s ease-in-out infinite;
}
#location_container .map img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
}
#location_container .location_info .name {
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #location_container {
    position: relative;
    width: 100%;
    height: 640px;
  }
  #location_container .location_h2 {
    position: absolute;
    top: 60px;
    left: 50%;
  }
  #location_container .location_h2 h2 {
    color: #fff;
    margin-left: 60px;
  }
  #location_container .location_h2 .h2_underline {
    background: #fff;
    margin-left: 60px;
  }
  #location_container .map {
    float: left;
    width: 50%;
    height: 640px;
    margin-bottom: 0;
  }
  #location_container .location_info {
    float: right;
    width: 50%;
    height: 640px;
    background: #5d5e62;
    color: #fff;
  }
  #location_container .location_info a {
    color: #fff;
  }
  #location_container .location_info .tx_box {
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: 60px;
  }
  #location_container .location_info .tx_box .name {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.4em;
  }
  #location_container .location_info .tx_box .view_more .arrow::before {
    background: #fff;
  }
  #location_container .location_info .tx_box .view_more .arrow:hover::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
/* ----------------------------------------------------------
-------------------------------------------------------------
 access.html
-------------------------------------------------------------
---------------------------------------------------------- */
@keyframes map-point {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.access_map {
  width: 100%;
  height: 500px;
  background: url("../images/map_2024_7_8.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
.access_map > div {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  background-color: #e2007f;
  border-radius: 100%;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  animation: map-point 1s 0s ease-in-out infinite;
}
.access_map img {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
}

.access_detail {
  margin-top: 60px;
}
.access_detail .left {
  margin-bottom: 60px;
}
.access_detail .name {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
}
.access_detail .map {
  text-decoration: underline;
}
.access_detail .jp {
  margin-bottom: 10px;
}
.access_detail .by_ {
  font-weight: bold;
  margin: 60px 0 10px;
}
.access_detail span {
  font-size: 0.8em;
  margin-top: 5px;
  display: block;
}

.shop_list ul li {
  border-bottom: 1px solid #ccc;
  padding: 60px 0;
}
.shop_list ul li:last-child {
  margin-bottom: 40px;
}
.shop_list ul li .shop_name {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
}
.shop_list ul li .shop_detail .jp {
  margin-bottom: 10px;
}
.shop_list ul li .shop_detail .map {
  text-decoration: underline;
}
.shop_list ul li .shop_detail span {
  font-size: 0.8em;
  margin-top: 5px;
  display: block;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .access_map {
    height: 700px;
  }
  .access_map > div {
    margin: -45px 0 0 -45px;
    height: 90px;
    width: 90px;
  }
  .access_map img {
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
  }
  .access_detail {
    margin-top: 100px;
  }
  .access_detail .left,
  .access_detail .right {
    width: 45%;
  }
  .access_detail .left {
    float: left;
  }
  .access_detail .right {
    float: right;
  }
}
@media only screen and (min-width: 950px) {
  .shop_list ul li {
    display: flex;
  }
  .shop_list ul li .shop_name {
    min-width: 388px;
    width: 42%;
    padding-right: 4%;
  }
  .shop_list ul li .shop_detail {
    max-width: 500px;
    width: 54%;
  }
}
.side_navigation {
  transition: 1s;
  z-index: 9999;
}

@media screen and (min-width: 769px) {
  header.header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 20px 0 30px;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
  }
}
@media screen and (max-width: 768px) {
  header.header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
  }
}
@media screen and (min-width: 769px) {
  header.header h1 {
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  header.header h1 {
    width: 180px;
  }
}
@media screen and (min-width: 769px) {
  header.header ul {
    display: flex;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  header.header ul {
    display: none;
  }
}
header.header ul li {
  font-size: 18px;
}
header.header ul li::after {
  content: "/";
  margin: 0 8px;
  font-size: 18px;
}
header.header ul li:last-child::after {
  content: "";
}

/*-------repro----*/
section#repro_container h3 {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  section#repro_container h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  section#repro_container h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  section#repro_container div.lineup {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  section#repro_container div.lineup {
    margin-top: 80px;
  }
}
section#repro_container div.lineup ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section#repro_container div.lineup ul li {
  height: 180px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  section#repro_container div.lineup ul li {
    width: calc(25% - 10px);
  }
}
@media screen and (max-width: 768px) {
  section#repro_container div.lineup ul li {
    width: calc(50% - 10px);
    margin-bottom: 10px;
  }
}
section#repro_container div.lineup ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  section#repro_container div.lineup ul li a p.date {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  section#repro_container div.lineup ul li a p.date {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  section#repro_container div.lineup ul li a p.title {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  section#repro_container div.lineup ul li a p.title {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  section#repro_container div.what {
    margin-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  section#repro_container div.what {
    margin-top: 120px;
  }
}

.aboutrepro {
  margin: 10px 0 0px;
  font-weight: bold;
}

/* ----------------------------------------------------------
-------------------------------------------------------------
 info.html
-------------------------------------------------------------
---------------------------------------------------------- */
#info_page h3 {
  font-weight: bold;
  font-size: 1.6em;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}
#info_page h4,
#info_page h5 {
  font-size: 1.2em;
  padding-bottom: 20px;
  font-weight: bold;
}
#info_page .tx_01 {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}
#info_page .tx_02 {
  font-weight: bold;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #eee;
}
#info_page ul {
  padding-left: 5%;
}
@media screen and (min-width: 769px) {
  #info_page ul {
    padding-left: 15px;
  }
}
#info_page ul li {
  list-style: disc;
  padding-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #info_page ul li {
    padding-bottom: 10px;
  }
}
#info_page ul li:last-child {
  padding-bottom: 0;
}
#info_page ul li.novelty_list {
  list-style: none;
  text-indent: -1em;
}
#info_page ul .novelty_notes {
  font-weight: bold;
  text-indent: -1em;
  padding-bottom: 20px;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  #info_page ul .novelty_notes {
    padding-bottom: 10px;
  }
}/*# sourceMappingURL=baseyard_style.css.map */