@charset "UTF-8";
html {
  font-size: 62.5%;
}

.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #2E323B;
  font-size: 1.6rem;
}

body {
  background-color: #fff;
  font-family: YuMincho, "Yu Mincho", serif;
  color: #2E323B;
  font-size: 1.6rem;
  font-weight: normal;
  box-sizing: border-box;
}

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

li {
  list-style: none;
}

.cmn_title {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  padding: 10px;
}
@media screen and (min-width: 700px) {
  .cmn_title {
    font-size: 3rem;
  }
}

.el_btn, .el_backBtn {
  display: inline-block;
  transition: all 0.3s ease;
  padding: 15px 30px 15px 30px;
  max-width: 100%;
  font-size: 1.4rem;
  background-color: #8d2916;
  border: 2px solid transparent;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .el_btn, .el_backBtn {
    font-size: 1.6rem;
  }
}

.el_btn.el_btn__arrowRight {
  position: relative;
  padding-right: 2.5em;
  padding-left: 1.38em;
}

.el_backBtn.el_btn__Back {
  position: relative;
  padding-right: 2.5em;
  padding-left: 1.38em;
}

.el_btn.el_btn__arrowRight_hover {
  position: relative;
  padding-right: 2.5em;
  padding-left: 1.38em;
}

.el_btn.el_btn__arrowRight::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
}

.el_backBtn.el_btn__Back::after {
  content: "\f2ea";
  position: absolute;
  top: 50%;
  right: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
}

.el_btn:focus,
.el_btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.el_backBtn:focus,
.el_backBtn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.el_btn.el_btn__arrowRight_hover::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 0.4em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

.logo_mitsudomoe {
  text-align: center;
  padding: 10px;
}
.logo_mitsudomoe img {
  width: 50px;
  height: 50px;
}

.js-scroll-fadein {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}
.js-scroll-fadein.is-fadein {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------
arrow
--------------------------------*/
.arrow {
  z-index: 100;
  position: fixed;
  right: 12px;
  bottom: 12px;
  color: #fff;
  cursor: pointer;
  background-color: #c4c4c4;
  border-radius: 22px;
  padding: 20px;
  transition: all 0.2s ease-in-out;
}
.arrow:hover {
  opacity: 0.8;
  bottom: 15px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.5);
}
.arrow:before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: 13px;
}
.arrow:before {
  top: 14px;
}

/*--------------------------------
パンくずリスト
--------------------------------*/
.breadcrumb {
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 19px;
  padding-left: 20px;
}
@media screen and (min-width: 700px) {
  .breadcrumb {
    padding-top: 20px;
    padding-right: 14.84375%;
    padding-left: 14.84375%;
  }
}
.breadcrumb-list {
  display: flex;
  justify-content: right;
  font-size: 1.2rem;
}
.breadcrumb-item a {
  color: #1B224C;
  font-size: 1.2rem;
  text-decoration: underline;
}
.breadcrumb .breadcrumb-item::after {
  content: ">";
  display: inline-block;
  padding: 0 6px;
}
.breadcrumb .breadcrumb-item:last-child::after {
  display: none;
}

/* 臨時お知らせの画像レイアウト（2023.10.22まで掲載） */
.ly_header {
  z-index: 1000;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
}
.ly_header .ly_header_inner {
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: -5px;
  pointer-events: auto;
}
@media screen and (min-width: 700px) {
  .ly_header .ly_header_inner {
    padding-right: 30px;
    padding-bottom: 18px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1020px) {
  .ly_header .ly_header_inner {
    padding-right: 120px;
    padding-left: 120px;
  }
}
.ly_header .ly_header_inner .bl_header_main .logo_header {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .ly_header .ly_header_inner .bl_header_main .logo_header {
    width: 280px;
  }
}
.ly_header .ly_header_inner .bl_header_main .logo_header a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ly_header .ly_header_inner .bl_header_main .logo_header a #mark {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
@media screen and (min-width: 700px) {
  .ly_header .ly_header_inner .bl_header_main .logo_header a #mark {
    width: 70px;
    height: 45px;
    margin-right: 10px;
  }
}
.ly_header .ly_header_inner .bl_header_main .logo_header a #logo_txt {
  width: 155px;
  height: 25px;
}
@media screen and (min-width: 700px) {
  .ly_header .ly_header_inner .bl_header_main .logo_header a #logo_txt {
    width: 250px;
    height: 40px;
  }
}
.ly_header .ly_header_inner .bl_header_main .logo_header_scroll {
  transition: all 0.3s ease;
  margin-bottom: 10px;
}
.ly_header .ly_header_inner .bl_header_main .logo_header_scroll a #mark {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
.ly_header .ly_header_inner .bl_header_main .logo_header_scroll a #logo_txt {
  width: 155px;
  height: 25px;
}
.ly_header .ly_header_inner .bl_header_main .el_header_nav {
  display: none;
}
@media screen and (min-width: 700px) {
  .ly_header .ly_header_inner .bl_header_main .el_header_nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.ly_header .ly_header_inner .bl_header_main .el_header_nav ul {
  display: flex;
}
.ly_header .ly_header_inner .bl_header_main .el_header_nav ul li a {
  padding: 10px 15px;
  cursor: pointer;
}
.ly_header .drawer-background {
  position: fixed;
  z-index: 5;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
  background-color: #000;
  color: #fff;
  visibility: inherit;
  opacity: 0;
}
.ly_header .sp-global-menu {
  position: fixed;
  pointer-events: auto;
  z-index: 6;
  width: 280px;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
  background-color: #000;
  transform: translateX(330px);
  transition: 0.3s;
  padding: 50px 25px;
}
.ly_header .sp-global-menu nav ul {
  text-align: center;
  background-color: #fff;
  display: block;
}
.ly_header .sp-global-menu nav ul li {
  border-bottom: 1px solid #2E323B;
  display: block;
}
.ly_header .sp-global-menu nav ul li a {
  width: 90.3225806452%;
  display: block;
  padding: 15px;
}
.ly_header .button {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  pointer-events: auto;
  cursor: pointer;
}
@media screen and (min-width: 700px) {
  .ly_header .button {
    display: none;
  }
}
.ly_header .hamburger {
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 6;
  width: 30px;
  height: 40px;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.ly_header .hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: #333;
  transition: inherit;
}
.ly_header .hamburger__line::before, .ly_header .hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: inherit;
}
.ly_header .hamburger__line::before {
  top: -8px;
}
.ly_header .hamburger__line::after {
  top: 8px;
}
.ly_header .hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.ly_header .hamburger[aria-expanded=true] .hamburger__line::before, .ly_header .hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  background-color: #fff;
}
.ly_header .hamburger[aria-expanded=true] .hamburger__line::before {
  transform: rotate(45deg);
}
.ly_header .hamburger[aria-expanded=true] .hamburger__line::after {
  transform: rotate(-45deg);
}

.ly_header_scroll {
  box-shadow: 1px 1px 1px #e6e6e6;
}

.is-drawerActive .sp-global-menu {
  transform: translateX(0px);
  transition: 0.3s;
}
.is-drawerActive .drawer-background {
  visibility: visible;
  opacity: 0.8;
  transition: 0.3s;
}

.ly_footer {
  border-top: solid 1px #e6e6e6;
  background: url(../img/bg3.png);
}
.ly_footer .footer_inner {
  text-align: center;
  max-width: 1680px;
  margin: 0 auto;
  padding: 20px 15px;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner {
    padding: 50px 0 0 0;
  }
}
.ly_footer .footer_inner .el_footernav {
  background-color: rgb(244, 244, 246);
  border-radius: 5px;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .el_footernav {
    background-color: initial;
  }
}
.ly_footer .footer_inner .el_footernav .footernav_container {
  margin-bottom: 35px;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .el_footernav .footernav_container {
    display: flex;
    justify-content: center;
  }
}
.ly_footer .footer_inner .el_footernav .footernav_container li {
  position: relative;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .el_footernav .footernav_container li {
    margin-right: 25px;
    text-align: initial;
  }
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .el_footernav .footernav_container li:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    color: #A51D2D;
  }
}
.ly_footer .footer_inner .el_footernav .footernav_container li a {
  display: inline-block;
  padding: 10px 0 10px 10px;
  font-size: 1.4rem;
  width: 100%;
}
.ly_footer .footer_inner .el_footernav .footernav_container li a:after {
  position: absolute;
  right: 10px;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  color: #2E323B;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .el_footernav .footernav_container li a:after {
    content: "";
  }
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .el_footernav .footernav_container li a {
    padding: 0 0 0 15px;
    font-size: 1.6rem;
  }
}
.ly_footer .footer_inner .el_footernav .footernav_container li:last-child {
  margin-right: 0;
}
.ly_footer .footer_inner .bl_footerContents {
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .bl_footerContents {
    margin-bottom: 50px;
  }
}
.ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer {
    display: flex;
    align-items: center;
  }
}
.ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer a #mark {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer a #mark {
    width: 50px;
    height: 45px;
    margin-right: 10px;
  }
}
.ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer a #logo_txt {
  display: block;
  width: 155px;
  height: 25px;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer a #logo_txt {
    width: 250px;
    height: 40px;
  }
}
.ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer .adress {
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 700px) {
  .ly_footer .footer_inner .bl_footerContents .footer_container .logo_footer .adress {
    margin-top: 0;
  }
}
.ly_footer small {
  text-align: center;
  display: block;
  background-color: #2E323B;
  color: #fff;
  padding: 15px;
  font-size: 1.2rem;
}

.about {
  padding-top: 50px;
}
@media screen and (min-width: 700px) {
  .about {
    padding-top: 120px;
  }
}
.about .about_inner .title_wrap {
  background-color: #d3c496;
  padding-top: 30px;
  box-shadow: 1px 1px 1px #e6e6e6;
}
@media screen and (min-width: 700px) {
  .about .about_inner .title_wrap {
    padding-top: 40px;
  }
}
.about .about_inner .title_wrap .title_wrap_title {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 3px;
  padding-bottom: 40px;
}
@media screen and (min-width: 700px) {
  .about .about_inner .title_wrap .title_wrap_title {
    font-size: 3.4rem;
  }
}
.about .about_inner .title_wrap .tab_item {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  padding-left: 20px;
}
.about .about_inner .title_wrap .tab_item li {
  margin-right: 1px;
  list-style-type: none;
  margin-bottom: -1px;
}
.about .about_inner .title_wrap .tab_item li:last-child a {
  border-right: 2px solid #d3c496;
}
.about .about_inner .title_wrap .tab_item li a {
  text-decoration: none;
  text-align: center;
  display: block;
  width: 100px;
  padding: 15px 20px;
  background-color: #410155;
  border-top: 3px solid #d3c496;
  color: white;
}
.about .about_inner .title_wrap .tab_item .selected a {
  background: #fff;
  border-top: 3px solid rgb(172, 33, 34);
  color: black;
}
.about .about_inner #tab_contents {
  width: 95%;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents {
    max-width: 1280px;
    padding: 80px 0;
  }
}
.about .about_inner #tab_contents article {
  display: none;
}
.about .about_inner #tab_contents .current {
  display: block;
}
.about .about_inner #tab_contents p {
  text-align: center;
}
.about .about_inner #tab_contents p strong {
  display: inline-block;
  font-size: 2.8rem;
  position: relative;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents p strong {
    font-size: 3.4rem;
  }
}
.about .about_inner #tab_contents p strong:before {
  content: "";
  left: -70px;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #A68443;
}
.about .about_inner #tab_contents p strong:after {
  content: "";
  right: -70px;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #A68443;
}
.about .about_inner #tab_contents .mediawrap {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 30px 20px 20px;
  background-color: #F8F8F8;
  background-image: url(../img/bg3.png);
  background-size: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap {
    max-width: 1200px;
    padding: 30px 40px 20px;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media {
  display: flex;
  flex-direction: column-reverse;
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #tab_contents .mediawrap .bl_media {
    display: flex;
    flex-direction: row;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body {
  flex: 1;
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body .sub_title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body .sub_title {
    font-size: 2rem;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body .sub_title:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  top: 25px;
  border-bottom: 1.5px solid rgb(30, 69, 173);
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body .sub_title:after {
    width: 90%;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dt {
  width: 100%;
  margin-bottom: 5px;
  text-decoration: underline;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dt {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1020px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dt {
    width: 15%;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dd {
  width: 100%;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dd {
    font-size: 1.5rem;
  }
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dd br {
    display: none;
  }
}
@media screen and (min-width: 1020px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dd {
    width: 85%;
  }
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dd {
    margin-bottom: 10px;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dd span {
  display: block;
  margin-bottom: 10px;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_body dl dd span {
    margin-bottom: 0;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_imgwrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_imgwrap {
    margin-left: 20px;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_imgwrap .gosaishin-ref {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_imgwrap .gosaishin-ref {
    font-size: 1.5rem;
  }
}
.about .about_inner #tab_contents .mediawrap .bl_media .bl_media_imgwrap .gosaishin-ref a {
  font-size: 1.2rem;
  line-height: 2rem;
  color: rgb(30, 69, 173);
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .bl_media .bl_media_imgwrap .gosaishin-ref a {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.about .about_inner #tab_contents .mediawrap .line {
  margin: 15px 0;
  height: 1px;
  border-top: 3px dotted rgb(117, 117, 117);
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .line {
    margin: 30px 0;
  }
}
.about .about_inner #tab_contents .mediawrap .sub_title2 {
  position: relative;
  margin-bottom: 20px;
}
.about .about_inner #tab_contents .mediawrap .sub_title2:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  top: 25px;
  border-bottom: 1.5px solid rgb(30, 69, 173);
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .sub_title2 {
    font-size: 2rem;
  }
}
.about .about_inner #tab_contents .mediawrap .el_media_txt2 {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}
.about .about_inner #tab_contents .mediawrap .el_media_txt2 a {
  color: rgb(30, 69, 173);
  text-decoration: underline;
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .el_media_txt2 a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap .el_media_txt2 {
    font-size: 1.6rem;
  }
}
.about .about_inner #tab_contents .mediawrap dl {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.about .about_inner #tab_contents .mediawrap dl dt {
  width: 100%;
  margin-bottom: 5px;
  font-size: 1.3rem;
}
.about .about_inner #tab_contents .mediawrap dl dt a {
  text-decoration: underline;
  color: rgb(30, 69, 173);
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap dl dt a {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap dl dt {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1020px) {
  .about .about_inner #tab_contents .mediawrap dl dt {
    width: 25%;
  }
}
.about .about_inner #tab_contents .mediawrap dl dd {
  width: 100%;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap dl dd {
    font-size: 1.5rem;
  }
  .about .about_inner #tab_contents .mediawrap dl dd br {
    display: none;
  }
}
@media screen and (min-width: 1020px) {
  .about .about_inner #tab_contents .mediawrap dl dd {
    width: 75%;
  }
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #tab_contents .mediawrap dl dd {
    margin-bottom: 10px;
  }
}
.about .about_inner #tab_contents .mediawrap dl dd span {
  display: block;
  margin-bottom: 10px;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .mediawrap dl dd span {
    margin-bottom: 0;
  }
}
.about .about_inner #tab_contents .event_info .event_info_title {
  position: relative;
  font-size: 1.6rem;
  padding-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .event_info .event_info_title {
    font-size: 2rem;
  }
}
.about .about_inner #tab_contents .event_info .event_info_title:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  top: 25px;
  border-bottom: 1.5px solid #cccccc;
}
.about .about_inner #tab_contents .event_info .event_info_date {
  position: relative;
}
.about .about_inner #tab_contents .event_info .event_info_date .event_info_table th {
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .event_info .event_info_date .event_info_table th {
    font-size: 1.6rem;
    margin-right: 30px;
  }
}
.about .about_inner #tab_contents .event_info .event_info_date .event_info_table td {
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .event_info .event_info_date .event_info_table td {
    font-size: 1.6rem;
  }
}
.about .about_inner #tab_contents .event_info .event_info_date:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  top: 25px;
  border-bottom: 1.5px solid #cccccc;
}
.about .about_inner #tab_contents .tab1 .bl_media_imgwrap {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #tab_contents .tab1 .bl_media_imgwrap {
    margin-bottom: 0;
  }
}
.about .about_inner #tab_contents .tab1 .bl_media_imgwrap img {
  display: inline-block;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .tab1 .bl_media_imgwrap img {
    width: 320px;
    height: 240px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1020px) {
  .about .about_inner #tab_contents .tab1 .bl_media_imgwrap img {
    width: 360px;
    height: 270px;
  }
}
.about .about_inner #tab_contents .tab2 .bl_media_imgwrap {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #tab_contents .tab2 .bl_media_imgwrap {
    margin-bottom: 0;
  }
}
.about .about_inner #tab_contents .tab2 .bl_media_imgwrap img {
  display: inline-block;
}
@media screen and (min-width: 700px) {
  .about .about_inner #tab_contents .tab2 .bl_media_imgwrap img {
    width: 320px;
    height: 320px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1020px) {
  .about .about_inner #tab_contents .tab2 .bl_media_imgwrap img {
    width: 360px;
    height: 360px;
  }
}
.about .about_inner .event_btn_wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

.access .access_inner {
  width: 95%;
  margin: 0 auto;
  max-width: 1300px;
}
.access .access_inner .map_wrap {
  background-image: url(../img/bg3.png);
  background-size: cover;
  padding: 20px 10px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1020px) {
  .access .access_inner .map_wrap {
    flex-direction: initial;
    justify-content: space-between;
    margin-bottom: 100px;
  }
}
.access .access_inner .map_wrap .location_info {
  width: 100%;
}
@media screen and (min-width: 1020px) {
  .access .access_inner .map_wrap .location_info {
    width: 27%;
  }
}
.access .access_inner .map_wrap .location_info .sub_title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
.access .access_inner .map_wrap .location_info .sub_title:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  top: 25px;
  border-bottom: 1.5px solid rgb(30, 69, 173);
}
.access .access_inner .map_wrap .location_info p {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (min-width: 700px) {
  .access .access_inner .map_wrap .location_info p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1020px) {
  .access .access_inner .map_wrap .location_info p {
    font-size: 1.3rem;
  }
}
.access .access_inner .map_wrap .location_info span {
  text-decoration: underline;
}
.access .access_inner .map_wrap .location_info .map_adress {
  margin-bottom: 30px;
}
.access .access_inner .map_wrap .location_info .map_public_transport {
  margin-bottom: 30px;
}
.access .access_inner .map_wrap .location_map {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1020px) {
  .access .access_inner .map_wrap .location_map {
    width: 70%;
    margin: 0;
  }
}
.access .access_inner .map_wrap .location_map iframe {
  width: 100%;
}

.ujiko {
  margin-top: 30px;
  margin-right: 20px;
  margin-bottom: 50px;
  margin-left: 20px;
}
.ujiko .ujiko_inner {
  max-width: 1180px;
  margin: 0 auto;
  background-image: url(../img/bg3.png);
  background-size: cover;
}
.ujiko .ujiko_inner .ujiko_inner_text {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}
.ujiko .ujiko_inner .ujiko_inner_text p {
  line-height: 1.8;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .ujiko .ujiko_inner .ujiko_inner_text p {
    font-size: 1.6rem;
  }
}
.ujiko .ujiko_inner .ujiko_inner_text p a {
  color: rgb(30, 69, 173);
  text-decoration: underline;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .ujiko .ujiko_inner .ujiko_inner_text p a {
    font-size: 1.6rem;
  }
}

.anrakuji {
  margin-top: 30px;
  margin-right: 20px;
  margin-bottom: 50px;
  margin-left: 20px;
}
.anrakuji .anrakuji_inner {
  max-width: 1180px;
  margin: 0 auto;
  background-image: url(../img/bg3.png);
  background-size: cover;
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents .sub_title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 700px) {
  .anrakuji .anrakuji_inner .anrakuji_inner_contents .sub_title {
    font-size: 2rem;
  }
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents .sub_title:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  top: 25px;
  border-bottom: 1.5px solid rgb(30, 69, 173);
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_outline {
  margin-bottom: 30px;
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_outline dl {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_outline dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_outline dl dt {
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-decoration: underline;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_outline dl dt {
    width: 20%;
    padding-bottom: 20px;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_outline dl dd {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_outline dl dd {
    width: 80%;
    padding-bottom: 20px;
    font-size: 1.6rem;
  }
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_history p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_history p {
    font-size: 1.6rem;
  }
}
.anrakuji .anrakuji_inner .anrakuji_inner_contents .anrakuji_history p:last-child {
  margin-bottom: 0;
}

.about {
  padding-top: 50px;
}
@media screen and (min-width: 700px) {
  .about {
    padding-top: 120px;
  }
}
.about .about_inner #event_contents {
  width: 95%;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents {
    max-width: 1280px;
    padding: 80px 0;
  }
}
.about .about_inner #event_contents p {
  text-align: center;
}
.about .about_inner #event_contents p strong {
  display: inline-block;
  font-size: 2.8rem;
  position: relative;
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents p strong {
    font-size: 3.4rem;
  }
}
.about .about_inner #event_contents p strong:before {
  content: "";
  left: -70px;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #A68443;
}
.about .about_inner #event_contents p strong:after {
  content: "";
  right: -70px;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #A68443;
}
.about .about_inner #event_contents .mediawrap {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 30px 20px 20px;
  background-color: #F8F8F8;
  background-image: url(../img/bg3.png);
  background-size: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .mediawrap {
    max-width: 1200px;
    padding: 30px 40px 20px;
  }
}
.about .about_inner #event_contents .mediawrap .bl_media {
  display: flex;
  flex-direction: column-reverse;
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #event_contents .mediawrap .bl_media {
    display: flex;
    flex-direction: row;
  }
}
.about .about_inner #event_contents .mediawrap .bl_media .bl_media_body {
  flex: 1;
}
.about .about_inner #event_contents .mediawrap .bl_media .bl_media_imgwrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #event_contents .mediawrap .bl_media .bl_media_imgwrap {
    margin-left: 20px;
  }
}
.about .about_inner #event_contents .mediawrap .bl_media .bl_media_imgwrap .gosaishin-ref {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .mediawrap .bl_media .bl_media_imgwrap .gosaishin-ref {
    font-size: 1.5rem;
  }
}
.about .about_inner #event_contents .mediawrap .bl_media .bl_media_imgwrap .gosaishin-ref a {
  font-size: 1.2rem;
  line-height: 2rem;
  color: rgb(30, 69, 173);
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .mediawrap .bl_media .bl_media_imgwrap .gosaishin-ref a {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.about .about_inner #event_contents .mediawrap .bl_media .bl_media_imgwrap img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about_inner #event_contents .mediawrap .line {
  margin: 15px 0;
  height: 1px;
  border-top: 3px dotted rgb(117, 117, 117);
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .mediawrap .line {
    margin: 30px 0;
  }
}
.about .about_inner #event_contents .mediawrap .el_media_txt2 {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .mediawrap .el_media_txt2 {
    font-size: 1.6rem;
  }
}
.about .about_inner #event_contents .event_info .event_info_title {
  position: relative;
  font-size: 1.6rem;
  padding-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .event_info .event_info_title {
    font-size: 2rem;
  }
}
.about .about_inner #event_contents .event_info .event_info_title:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  top: 25px;
  border-bottom: 1.5px solid #cccccc;
}
.about .about_inner #event_contents .event_info .event_info_date {
  position: relative;
}
.about .about_inner #event_contents .event_info .event_info_date .event_info_table th {
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .event_info .event_info_date .event_info_table th {
    font-size: 1.6rem;
    margin-right: 30px;
  }
}
.about .about_inner #event_contents .event_info .event_info_date .event_info_table td {
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .event_info .event_info_date .event_info_table td {
    font-size: 1.6rem;
  }
}
.about .about_inner #event_contents .event_info .event_info_date:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  top: 25px;
  border-bottom: 1.5px solid #cccccc;
}
.about .about_inner #event_contents .event-detail .bl_media_imgwrap {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 1280px) {
  .about .about_inner #event_contents .event-detail .bl_media_imgwrap {
    margin-bottom: 0;
  }
}
.about .about_inner #event_contents .event-detail .bl_media_imgwrap img {
  display: inline-block;
}
@media screen and (min-width: 700px) {
  .about .about_inner #event_contents .event-detail .bl_media_imgwrap img {
    width: 320px;
    height: 240px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1020px) {
  .about .about_inner #event_contents .event-detail .bl_media_imgwrap img {
    width: 360px;
    height: 270px;
  }
}
.about .about_inner .event_btn_wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

.news-detail {
  padding-top: 50px;
  padding-bottom: 80px;
  background-image: url(../img/bg.png);
  background-size: cover;
}
@media screen and (min-width: 700px) {
  .news-detail {
    padding-top: 120px;
  }
}
.news-detail .breadcrumb {
  margin-top: 20px;
}
@media screen and (min-width: 700px) {
  .news-detail .breadcrumb {
    margin: 0;
  }
}
.news-detail .news-detail_inner .news-detail-wrap {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 75%;
  margin: 0 auto;
  padding-top: 50px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 700px) {
  .news-detail .news-detail_inner .news-detail-wrap {
    width: 90%;
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1020px) {
  .news-detail .news-detail_inner .news-detail-wrap {
    max-width: 1120px;
  }
}
.news-detail .news-detail_inner .news-detail-wrap p {
  text-align: center;
}
.news-detail .news-detail_inner .news-detail-wrap p strong {
  display: inline-block;
  font-size: 2.4rem;
  position: relative;
}
@media screen and (min-width: 700px) {
  .news-detail .news-detail_inner .news-detail-wrap p strong {
    font-size: 3.4rem;
  }
}
.news-detail .news-detail_inner .news-detail-wrap p strong:before {
  content: "";
  left: -30px;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #A68443;
}
@media screen and (min-width: 700px) {
  .news-detail .news-detail_inner .news-detail-wrap p strong:before {
    width: 35px;
    left: -50px;
  }
}
@media screen and (min-width: 1020px) {
  .news-detail .news-detail_inner .news-detail-wrap p strong:before {
    width: 45px;
    left: -70px;
  }
}
.news-detail .news-detail_inner .news-detail-wrap p strong:after {
  content: "";
  right: -30px;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #A68443;
}
@media screen and (min-width: 700px) {
  .news-detail .news-detail_inner .news-detail-wrap p strong:after {
    width: 35px;
    right: -50px;
  }
}
@media screen and (min-width: 1020px) {
  .news-detail .news-detail_inner .news-detail-wrap p strong:after {
    width: 45px;
    right: -70px;
  }
}
.news-detail .news-detail_inner .news-detail-wrap .el_news_date {
  display: block;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 50px;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .news-detail .news-detail_inner .news-detail-wrap .el_news_date {
    font-size: 1.6rem;
  }
}
.news-detail .news-detail_inner .news-detail-wrap .news-detail_body {
  position: relative;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (min-width: 700px) {
  .news-detail .news-detail_inner .news-detail-wrap .news-detail_body {
    font-size: 1.6rem;
  }
}
.news-detail .news-detail_inner .news-detail-wrap .news-detail_body:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  bottom: -20px;
  left: 0;
  border-bottom: 1.5px solid #A68443;
  opacity: 0.5;
}
@media print, screen and (min-width: 1280px) {
  .news-detail .news-detail_inner .news-detail-wrap .news-detail_body:after {
    width: 90%;
  }
}
.news-detail .news-detail_inner .news-detail-wrap .news_btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
@media screen and (min-width: 700px) {
  .news-detail .news-detail_inner .news-detail-wrap .news_btn_wrap {
    margin-top: 150px;
  }
}

.keidai {
  margin-top: 30px;
  margin-right: 20px;
  margin-bottom: 50px;
  margin-left: 20px;
  background-image: url(../img/bg3.png);
  background-size: cover;
}
.keidai .keidai_inner {
  max-width: 1180px;
  margin: 0 auto;
}
.keidai .keidai_inner .map_cover {
  padding-top: 10px;
  margin-bottom: 50px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover {
    padding-top: 0;
    display: flex;
  }
}
.keidai .keidai_inner .map_cover .keidai_map {
  margin-top: 30px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover .keidai_map {
    flex: 1;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_cover .keidai_map {
    margin-right: 50px;
  }
}
.keidai .keidai_inner .map_cover .keidai_map img {
  box-shadow: 0px 0px 5px #87888e;
}
.keidai .keidai_inner .map_cover #map_aside {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover #map_aside {
    width: 30%;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_cover #map_aside {
    padding-top: 50px;
  }
}
.keidai .keidai_inner .map_cover #map_aside ul {
  margin-right: 20px;
  margin-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover #map_aside ul {
    display: initial;
    margin-left: 0;
  }
}
.keidai .keidai_inner .map_cover #map_aside ul li {
  position: relative;
  cursor: pointer;
  background-color: #904644;
  box-shadow: 0px 0px 5px #87888e;
  padding: 7px;
  margin-bottom: 5px;
  margin-right: 10px;
  display: flex;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover #map_aside ul li {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_cover #map_aside ul li {
    padding: 10px;
    margin-bottom: 20px;
  }
}
.keidai .keidai_inner .map_cover #map_aside ul li span {
  margin-right: 5px;
  font-size: 1.3rem;
  color: white;
  font-weight: bold;
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_cover #map_aside ul li span {
    margin-right: 10px;
    font-size: 1.6rem;
  }
}
.keidai .keidai_inner .map_cover #map_aside ul li .map_image {
  display: block;
  position: absolute;
  display: none;
  top: -50px;
  left: -250px;
}
.keidai .keidai_inner .map_cover #map_aside ul li .map_image img {
  width: 200px;
  height: auto;
}
.keidai .keidai_inner .map_cover #map_aside ul li .map_image .jugun-kinenhi_Website {
  width: 100%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
.keidai .keidai_inner .map_cover #map_aside ul li .map_image .jugun-kinenhi_Website P {
  text-decoration: underline;
  color: white;
}
.keidai .keidai_inner .map_cover #map_aside ul li .map_image .jugun-kinenhi_Website P br {
  display: block;
}
.keidai .keidai_inner .map_cover #map_aside ul li a {
  width: 100%;
  position: relative;
  display: block;
  font-size: 1.3rem;
  color: white;
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_cover #map_aside ul li a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover #map_aside ul li a br {
    display: none;
  }
}
.keidai .keidai_inner .map_cover #map_aside ul .transition a {
  display: block;
  position: relative;
}
.keidai .keidai_inner .map_cover #map_aside ul .transition a .transition_name {
  position: relative;
  font-weight: normal;
  margin: 0;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover #map_aside ul .transition a .transition_name:before {
    content: " ";
    display: block;
    width: 0;
    height: 1.5px;
    position: absolute;
    bottom: 10px;
    left: 0;
    top: 10px;
    border-bottom: 1.5px solid #f6efdb;
    transition: all 300ms 0s ease;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_cover #map_aside ul .transition a .transition_name:before {
    top: 15px;
  }
}
.keidai .keidai_inner .map_cover #map_aside ul .transition a:after {
  position: absolute;
  right: 0px;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover #map_aside ul .transition a:after {
    right: 10px;
    top: -1px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover #map_aside ul .transition:hover a .transition_name:before {
    content: " ";
    display: block;
    width: 100%;
    height: 1.5px;
    position: absolute;
    bottom: 10px;
    left: 0;
    top: 10px;
    border-bottom: 1.5px solid #f6efdb;
    transition: all 300ms 0s ease;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_cover #map_aside ul .transition:hover a .transition_name:before {
    top: 15px;
  }
}
.keidai .keidai_inner .map_cover #map_aside ul .transition__hover a:after {
  position: absolute;
  right: -5px;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  transition: right 0.3s ease;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_cover #map_aside ul .transition__hover a:after {
    right: 0;
    font-size: 1.6rem;
  }
}
.keidai .keidai_inner .map_cover #map_aside ul .transition_invalid {
  cursor: default;
}
.keidai .keidai_inner .map_cover #map_aside ul .transition_invalid a {
  cursor: default;
}
.keidai .keidai_inner .map_contents .bl_media {
  margin-bottom: 50px;
  padding-right: 15px;
  padding-left: 15px;
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body {
  display: flex;
  flex-direction: column-reverse;
  background-color: #d7cebb;
  box-shadow: 0px 0px 5px #87888e;
  margin-bottom: 30px;
  padding: 20px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body {
    align-items: center;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text {
    width: 65%;
  }
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text .content_text_title {
  color: #4a551e;
  font-size: 2rem;
  text-decoration: underline;
  margin-bottom: 5px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text .content_text_title {
    display: inline;
    margin: 0;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text .content_text_title {
    font-size: 2.4rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text span {
  font-size: 1.2rem;
  margin-left: 10px;
  text-decoration: none;
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text span {
    font-size: 1.4rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text .content_text_description {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.4rem;
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text .content_text_description a {
  font-size: 1.4rem;
  text-decoration: underline;
  color: rgb(30, 69, 173);
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text .content_text_description {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text .content_text_description {
    font-size: 1.6rem;
  }
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .map_content_text .content_text_description a {
    font-size: 1.6rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap {
    flex: 1;
    margin-right: 15px;
    margin-bottom: 0;
  }
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap .label_parent {
  position: relative;
  display: inline;
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap .label {
  width: 70px;
  position: absolute;
  background-color: #904644;
  color: white;
  padding: 5px 5px;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap .label {
    font-size: 1.6rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap {
    margin-right: 20px;
    width: initial;
    padding: 0;
    height: initial;
  }
  .keidai .keidai_inner .map_contents .bl_media .bl_media_body .bl_media_imgwrap img {
    position: initial;
    width: 400px;
    height: 300px;
  }
}
.keidai .keidai_inner .map_contents .bl_media .bl_media_body:last-child {
  margin-bottom: 0;
}
.keidai .keidai_inner .map_contents .bl_media_matsusha {
  padding: 0 15px 50px 15px;
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap {
  box-shadow: 0px 0px 5px #87888e;
  background-color: #d7cebb;
  padding: 20px;
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .bl_media_matsusha_imgwrap {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .bl_media_matsusha_imgwrap {
    margin-bottom: 50px;
  }
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .bl_media_matsusha_imgwrap .label_parent {
  position: relative;
  display: inline;
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .bl_media_matsusha_imgwrap .label_parent #label_matsusha {
  width: 100px;
  position: absolute;
  background-color: #904644;
  color: white;
  padding: 5px 5px;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .bl_media_matsusha_imgwrap .label_parent #label_matsusha {
    font-size: 1.6rem;
    padding: 10px 10px;
  }
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .bl_media_matsusha_imgwrap .label_parent img {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .bl_media_matsusha_imgwrap .label_parent img {
    width: 50%;
  }
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content {
  margin-bottom: 30px;
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content .matsusha_title {
  color: #4a551e;
  font-size: 2rem;
  text-decoration: underline;
  margin-bottom: 5px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content .matsusha_title {
    display: inline;
    margin: 0;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content .matsusha_title {
    font-size: 2.4rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content span {
  font-size: 1.2rem;
  margin-left: 10px;
  text-decoration: none;
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content span {
    font-size: 1.4rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content .matsusha_description {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.4rem;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content .matsusha_description {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content .matsusha_description {
    font-size: 1.6rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content .line {
  margin: 15px 0;
  height: 1px;
  border-top: 3px dotted rgb(117, 117, 117);
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_matsusha .bl_matsusha_wrap .matsusha_list .matsusha_content .line {
    margin: 30px 0;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun {
  padding: 0 15px 50px 15px;
}
.keidai .keidai_inner .map_contents .bl_media_jugun p {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
.keidai .keidai_inner .map_contents .bl_media_jugun p strong {
  display: inline-block;
  font-size: 2.8rem;
  position: relative;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun p strong {
    font-size: 3.4rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun p strong:before {
  content: "";
  left: -40px;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #A68443;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun p strong:before {
    left: -70px;
    width: 45px;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun p strong:after {
  content: "";
  right: -40px;
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #A68443;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun p strong:after {
    right: -70px;
    width: 45px;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap {
  box-shadow: 0px 0px 5px #87888e;
  background-color: #d7cebb;
  padding: 20px;
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap {
  margin-bottom: 30px;
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent {
  position: relative;
  display: inline;
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .label {
  text-align: center;
  width: 50px;
  position: absolute;
  background-color: #904644;
  color: white;
  padding: 5px 10px;
  font-size: 1.3rem;
  z-index: 2;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .label {
    width: 70px;
    font-size: 1.6rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer img {
  width: 100%;
  margin-bottom: 20px;
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer img:last-child {
  margin: 0;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer {
    display: flex;
    justify-content: center;
  }
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer img {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 0;
  }
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer img:last-child {
    margin: 0;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun {
  background-image: url(../img/bg.png);
  background-size: cover;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  border-radius: 8px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_explanation {
  padding: 20px 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_explanation {
    padding: 15px 25px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1020px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_explanation {
    font-size: 2rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list h3 {
  position: relative;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list h3 {
    font-size: 2.2rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list h3:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  left: 0;
  top: 20px;
  border-bottom: 1.5px solid rgb(30, 69, 173);
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list h3:after {
    top: 25px;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table {
  margin-bottom: 15px;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table {
    margin-bottom: 25px;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table thead {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
  color: #4a551e;
  text-align: left;
  line-height: 1.2;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table thead {
    font-size: 1.8rem;
  }
}
.keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table tbody tr td {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .keidai .keidai_inner .map_contents .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table tbody tr td {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

.news-lower .news-lower_inner {
  padding-top: 20px;
  padding-bottom: 70px;
}
.news-lower .news-lower_inner .news-lower-wrap {
  max-width: 780px;
  margin: 0 auto;
  background-image: url(../img/bg3.png);
  background-size: cover;
  padding: 50px 20px 10px 20px;
}
@media screen and (min-width: 1020px) {
  .news-lower .news-lower_inner .news-lower-wrap {
    max-width: 950px;
  }
}
.news-lower .news-lower_inner .news_list {
  width: 90%;
  margin-bottom: 50px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 26%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  background-size: 0.2rem 0.1rem;
  background-repeat: repeat-x;
}
@media screen and (min-width: 700px) {
  .news-lower .news-lower_inner .news_list {
    width: 680px;
  }
}
.news-lower .news-lower_inner .news_list li {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 26%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 0.2rem 0.1rem;
  background-repeat: repeat-x;
  cursor: pointer;
}
.news-lower .news-lower_inner .news_list li a {
  display: block;
  padding: 20px;
}
@media screen and (min-width: 700px) {
  .news-lower .news-lower_inner .news_list li a {
    display: flex;
  }
}
.news-lower .news-lower_inner .news_list li a .el_news_date {
  color: #7d7d7d;
  display: block;
  margin-bottom: 20px;
  text-align: left;
  font-size: 1.4rem;
}
@media screen and (min-width: 700px) {
  .news-lower .news-lower_inner .news_list li a .el_news_date {
    margin-right: 42px;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
.news-lower .news-lower_inner .news_list li a p {
  text-align: left;
  position: relative;
}
.news-lower .news-lower_inner .news_list li a p:before {
  content: " ";
  display: block;
  width: 0;
  height: 1.5px;
  position: absolute;
  bottom: -2px;
  left: 0;
  border-bottom: 1.5px solid #2E323B;
  transition: all 300ms 0s ease;
}
.news-lower .news-lower_inner .news_list li:hover p, .news-lower .news-lower_inner .news_list li:active p {
  display: inline-block;
}
.news-lower .news-lower_inner .news_list li:hover p:before, .news-lower .news-lower_inner .news_list li:active p:before {
  width: 100%;
}
.news-lower .news-lower_inner .wp-pagenavi {
  margin-top: 72px;
  clear: both;
  text-align: center;
}
.news-lower .news-lower_inner .wp-pagenavi .current {
  font-size: 1.4rem;
  color: #FFF;
  background-color: #904644;
  border: 1px solid #904644;
  padding: 9px 11px;
  margin: 0 4px;
  font-weight: normal;
}
@media screen and (min-width: 700px) {
  .news-lower .news-lower_inner .wp-pagenavi .current {
    font-size: 1.6rem;
    padding: 16px 19px;
    margin: 0 9.5px;
  }
}
.news-lower .news-lower_inner .wp-pagenavi .page, .news-lower .news-lower_inner .wp-pagenavi .last, .news-lower .news-lower_inner .wp-pagenavi .first {
  color: #904644;
  background-color: #fff;
  border: 1px solid #904644;
  padding: 9px 11px;
  margin: 0 4px;
  font-size: 1.4rem;
  white-space: nowrap;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 700px) {
  .news-lower .news-lower_inner .wp-pagenavi .page, .news-lower .news-lower_inner .wp-pagenavi .last, .news-lower .news-lower_inner .wp-pagenavi .first {
    font-size: 1.6rem;
    padding: 16px 19px;
    margin: 0 9.5px;
  }
}
.news-lower .news-lower_inner .wp-pagenavi .extend {
  background-color: #fff;
  border: none;
  font-size: 1.2rem;
  padding: 16px 5px;
  margin: 0 2px;
  white-space: nowrap;
}
@media screen and (min-width: 700px) {
  .news-lower .news-lower_inner .wp-pagenavi .extend {
    font-size: 2rem;
    padding: 16px 17px;
    margin: 0 9.5px;
  }
}
.news-lower .news-lower_inner .wp-pagenavi a:hover {
  color: #FFF;
  background-color: #904644;
}

.ly_kinenhiHeeader {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: #d3c496;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.ly_kinenhiHeeader .ly_kinenhiHeader_inner {
  padding-top: 7px;
  padding-bottom: 7px;
}
.ly_kinenhiHeeader .ly_kinenhiHeader_inner .bl_kinenhiHeader_main {
  width: 200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 700px) {
  .ly_kinenhiHeeader .ly_kinenhiHeader_inner .bl_kinenhiHeader_main {
    width: 280px;
  }
}
.ly_kinenhiHeeader .ly_kinenhiHeader_inner .bl_kinenhiHeader_main .kinenhiLogo_header a {
  display: block;
}
.ly_kinenhiHeeader .ly_kinenhiHeader_inner .kinenhiHeader_scroll {
  width: 200px;
}

.bl_media_jugun {
  padding: 80px 15px 50px 15px;
  background-color: #d7cebb;
}
.bl_media_jugun .bl_jugun_wrap {
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
}
.bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap {
  margin-bottom: 30px;
}
.bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent {
  position: relative;
  display: inline;
}
.bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .label {
  text-align: center;
  width: 50px;
  position: absolute;
  background-color: #904644;
  color: white;
  padding: 5px 10px;
  font-size: 1.3rem;
  z-index: 2;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .label {
    width: 70px;
    font-size: 1.6rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer img {
  width: 100%;
  margin-bottom: 20px;
}
.bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer img:last-child {
  margin: 0;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer {
    display: flex;
    justify-content: center;
  }
  .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer img {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 0;
  }
  .bl_media_jugun .bl_jugun_wrap .bl_media_jugun_imgwrap .label_parent .jugun_imgContainer img:last-child {
    margin: 0;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun__outline .jugun_outline__title, .bl_media_jugun .bl_jugun_wrap .bl_jugun__outline .jugun_access__title, .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_outline__title, .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_access__title {
  color: #330000;
  font-weight: bold;
  font-size: 1.8rem;
  border-bottom: 1px solid #330000;
  padding-bottom: 5px;
}
@media screen and (min-width: 1020px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun__outline .jugun_outline__title, .bl_media_jugun .bl_jugun_wrap .bl_jugun__outline .jugun_access__title, .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_outline__title, .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_access__title {
    font-size: 2.4rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun__outline .jugun_outline__text, .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_outline__text {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 1020px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun__outline .jugun_outline__text, .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_outline__text {
    font-size: 1.6rem;
    padding-right: 10px;
    padding-left: 10px;
  }
  .bl_media_jugun .bl_jugun_wrap .bl_jugun__outline .jugun_outline__text .jugun_outline__txtBr, .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_outline__text .jugun_outline__txtBr {
    display: none;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun {
  margin-top: 30px;
  margin-bottom: 30px;
  background-image: url(../img/bg.png);
  background-size: cover;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  border-radius: 8px;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_explanation {
  padding: 20px 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_explanation {
    padding: 15px 25px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1020px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_explanation {
    font-size: 2rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list h3 {
  position: relative;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list h3 {
    font-size: 2.2rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list h3:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  left: 0;
  top: 20px;
  border-bottom: 1.5px solid rgb(30, 69, 173);
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list h3:after {
    top: 25px;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table {
  margin-bottom: 15px;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table {
    margin-bottom: 25px;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table thead {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
  color: #4a551e;
  text-align: left;
  line-height: 1.2;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table thead {
    font-size: 1.8rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table tbody tr td {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_list table tbody tr td {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_note span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_hibun .el_jugun_note span {
    font-size: 1.4rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_access__note {
  margin-top: 10px;
  display: block;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_access__note {
    font-size: 1.6rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_access__note a {
  font-size: 1.3rem;
  text-decoration: underline;
  color: rgb(30, 69, 173);
  line-height: 1.5;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .jugun_access__note a {
    font-size: 1.6rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  margin-top: 10px;
  background: #738851;
  border-radius: 8px;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap {
    flex-direction: row-reverse;
    padding: 10px 0;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessMap {
  width: 90%;
  height: 68.9%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessMap {
    flex: 1;
    padding-right: 20px;
    margin-top: 20px;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider {
  margin-top: 20px;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider {
    width: 30%;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content {
  border-radius: 10px;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content {
    margin-top: 20px;
  }
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content:first-child {
    margin-top: 0;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content .accessSlider__body {
  background: white;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 10px 0 25px 0;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content .accessSlider__body {
    font-size: 1.6rem;
    padding: 10px 0 10px 0;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content .accessSlider__body .accessSlider__text {
  padding: 0 10px;
  line-height: 1.2;
  font-size: 1.6rem;
}
@media screen and (min-width: 700px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content .accessSlider__body .accessSlider__text {
    padding: 0 20px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1020px) {
  .bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content .accessSlider__body .accessSlider__text {
    font-size: 1.6rem;
  }
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content .accessSlider__image {
  position: relative;
  width: 90%;
  height: 75%;
  margin-right: auto;
  margin-left: auto;
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .accessSlider__content .accessSlider__image .slider_label {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #8d2916;
  color: white;
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .slick-dots li {
  margin-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  width: 25px;
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .slick-dots li:last-child {
  margin: 0;
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .slick-dots li button {
  font-family: YuMincho, "Yu Mincho", serif;
  cursor: pointer;
  width: 100%;
  font-size: 1.6rem;
  background: #8d2916;
  color: white;
  border: none;
}
.bl_media_jugun .bl_jugun_wrap .bl_jugun_access .bl_jugun_access-wrap .jugun_accessSlider .slick-dots .slick-active button {
  background: #b9d0b1;
  color: #0000b1;
  border: inherit;
}

.ly_kinenhiFotter .kinenhiFotter_inner {
  background: #d3c496;
  padding-top: 35px;
  padding-bottom: 35px;
}
@media screen and (min-width: 700px) {
  .ly_kinenhiFotter .kinenhiFotter_inner {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
.ly_kinenhiFotter .kinenhiFotter_inner .kinenhiFotter_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 700px) {
  .ly_kinenhiFotter .kinenhiFotter_inner .kinenhiFotter_logo {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 900px;
  }
}
.ly_kinenhiFotter .kinenhiFotter_inner .kinenhiFotter_logo a {
  width: 200px;
  display: block;
  margin-right: 10px;
}
@media screen and (min-width: 700px) {
  .ly_kinenhiFotter .kinenhiFotter_inner .kinenhiFotter_logo a {
    width: 250px;
    margin-right: 20px;
  }
}
.ly_kinenhiFotter .kinenhiFotter_inner .kinenhiFotter_logo .adress {
  margin-top: 10px;
  display: block;
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .ly_kinenhiFotter .kinenhiFotter_inner .kinenhiFotter_logo .adress {
    margin: 0;
    font-size: 1.6rem;
  }
}
.ly_kinenhiFotter small {
  text-align: center;
  display: block;
  background-color: #2E323B;
  color: #fff;
  padding: 15px;
  font-size: 1.2rem;
}
@media screen and (min-width: 700px) {
  .ly_kinenhiFotter small {
    font-size: 1.4rem;
  }
}

#loadingWrap {
  width: 100%;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

#loading {
  width: 5em;
  height: 5em;
  border-top: 1em solid rgba(255, 255, 255, 0.2);
  border-right: 1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1em solid rgba(255, 255, 255, 0.2);
  border-left: 1em solid rgb(255, 255, 255);
  animation: loaderAnime 1s infinite linear;
  border-radius: 50%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 11;
}

@keyframes loaderAnime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loadingNone {
  animation: loadingAnime 1s forwards;
}

@keyframes loadingAnime {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.mainvisual {
  padding-top: 60px;
  width: 100%;
  background-image: url(../img/bg3.png);
}
@media screen and (min-width: 700px) {
  .mainvisual {
    padding-top: 110px;
  }
}
.mainvisual-inner {
  width: 100%;
}
.mainvisual-inner .swiper-slide {
  height: 75vw;
}
@media screen and (min-width: 700px) {
  .mainvisual-inner .swiper-slide {
    max-height: 510px;
  }
}
@media screen and (min-width: 1020px) {
  .mainvisual-inner .swiper-slide {
    max-height: 750px;
  }
}
@media print, screen and (min-width: 1280px) {
  .mainvisual-inner .swiper-slide {
    max-height: 840px;
  }
}
.mainvisual-inner .swiper-slide ul {
  display: flex;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.mainvisual-inner .swiper-slide ul li {
  position: absolute;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .mainvisual-inner .swiper-slide ul li {
    width: 680px;
    height: 510px;
  }
}
@media screen and (min-width: 1020px) {
  .mainvisual-inner .swiper-slide ul li {
    width: 1000px;
    height: 750px;
  }
}
@media print, screen and (min-width: 1280px) {
  .mainvisual-inner .swiper-slide ul li {
    width: 1120px;
    height: 840px;
  }
}
.mainvisual-inner .swiper-slide ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.mainvisual-inner #imgButton {
  text-align: center;
  padding-top: 10px;
}
@media screen and (min-width: 700px) {
  .mainvisual-inner #imgButton {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1020px) {
  .mainvisual-inner #imgButton {
    padding-top: 50px;
  }
}
.mainvisual-inner #imgButton ul {
  display: flex;
  justify-content: center;
}
.mainvisual-inner #imgButton ul li {
  margin-right: 15px;
}
.mainvisual-inner #imgButton ul li a {
  text-indent: -9999px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #738851;
}
.mainvisual-inner #imgButton ul li .target {
  background: #871900;
}

.history_cover {
  z-index: 10;
  background-image: url(../img/bg3.png);
}
.history_cover .history_cover_inner {
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 50px;
  padding-left: 20px;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .history_cover .history_cover_inner {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
.history_cover .history_cover_inner .history_title {
  line-height: 1.2;
  font-weight: bold;
  color: #4a551e;
  font-family: "Sawarabi Mincho";
}
.history_cover .history_cover_inner .sub-title {
  display: block;
  font-weight: bold;
  margin-top: 15px;
  font-size: 2.2rem;
}
.history_cover .history_cover_inner .bl_history_content {
  margin: 15px 0;
  line-height: 1.7;
}
.history_cover .history_cover_inner .bl_history_content br {
  display: none;
}
@media screen and (min-width: 700px) {
  .history_cover .history_cover_inner .bl_history_content br {
    display: block;
  }
}
.history_cover .history_cover_inner .el_historyBtn {
  margin-top: 15px;
}

.visit_cover .visit_cover_inner {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
  width: 95%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1280px) {
  .visit_cover .visit_cover_inner {
    width: 1180px;
    margin: 0 auto;
  }
}
.visit_cover .visit_cover_inner .visit_list {
  padding: 30px 10px 30px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background-image: url(../img/bg3.png);
}
@media screen and (min-width: 700px) {
  .visit_cover .visit_cover_inner .visit_list {
    margin-top: 50px;
    margin-bottom: 50px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (min-width: 1020px) {
  .visit_cover .visit_cover_inner .visit_list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
  }
}
@media print, screen and (min-width: 1280px) {
  .visit_cover .visit_cover_inner .visit_list {
    grid-template-columns: 260px 260px 260px 260px;
    grid-template-rows: 240px 240px 240px;
    gap: 40px;
  }
}
.visit_cover .visit_cover_inner .visit_list li {
  text-align: center;
  background-color: #fff;
}
.visit_cover .visit_cover_inner .visit_list li a {
  display: block;
  width: 100%;
  position: relative;
}
.visit_cover .visit_cover_inner .visit_list li a .pic {
  display: block;
  background-color: #333;
  width: 100%;
}
.visit_cover .visit_cover_inner .visit_list li a .pic img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 160px;
  transition: all 0.5s ease;
}
.visit_cover .visit_cover_inner .visit_list li a .date {
  position: absolute;
  top: 165px;
  left: 5px;
  font-size: 1.3rem;
  color: #8d7c5e;
  font-weight: bold;
}
@media screen and (min-width: 700px) {
  .visit_cover .visit_cover_inner .visit_list li a .date {
    font-size: 1.4rem;
  }
}
.visit_cover .visit_cover_inner .visit_list li a .title {
  position: relative;
  display: inline-block;
  padding: 25px 10px;
  transition: all 0.3s linear;
  font-size: 1.4rem;
}
@media screen and (min-width: 700px) {
  .visit_cover .visit_cover_inner .visit_list li a .title {
    font-size: 1.6rem;
  }
}
.visit_cover .visit_cover_inner .visit_list li a .title:before {
  content: " ";
  display: block;
  width: 0;
  height: 1.5px;
  position: absolute;
  bottom: -2px;
  left: 0;
  top: 40px;
  border-bottom: 1.5px solid #2E323B;
  transition: all 300ms 0s ease;
}
.visit_cover .visit_cover_inner .visit_list li a:hover .pic img {
  opacity: 0.6;
}
.visit_cover .visit_cover_inner .visit_list li a:hover .title {
  color: #8d7c5e;
}
.visit_cover .visit_cover_inner .visit_list li a:hover .title:before {
  width: 100%;
}

.news .news_inner {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 70px;
}
.news .news_inner .news_title {
  text-align: center;
  margin-bottom: 38px;
}
.news .news_inner .news_list {
  width: 80%;
  margin: 0 auto 50px auto;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 26%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  background-size: 0.2rem 0.1rem;
  background-repeat: repeat-x;
}
@media screen and (min-width: 700px) {
  .news .news_inner .news_list {
    width: 680px;
  }
}
.news .news_inner .news_list li {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 26%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 0.2rem 0.1rem;
  background-repeat: repeat-x;
  cursor: pointer;
}
.news .news_inner .news_list li a {
  padding: 20px;
}
@media screen and (min-width: 700px) {
  .news .news_inner .news_list li a {
    display: flex;
  }
}
.news .news_inner .news_list li a .el_news_date {
  color: #7d7d7d;
  display: block;
  margin-bottom: 20px;
  text-align: left;
  font-size: 1.4rem;
}
@media screen and (min-width: 700px) {
  .news .news_inner .news_list li a .el_news_date {
    margin-right: 42px;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
.news .news_inner .news_list li a p {
  text-align: left;
  position: relative;
}
.news .news_inner .news_list li a p:before {
  content: " ";
  display: block;
  width: 0;
  height: 1.5px;
  position: absolute;
  bottom: -2px;
  left: 0;
  border-bottom: 1.5px solid #2E323B;
  transition: all 300ms 0s ease;
}
.news .news_inner .news_list li:hover p:before, .news .news_inner .news_list li:active p:before {
  width: 100%;
}

.album {
  /* アルバムヘッダー */
  /* アルバムグリッド */
  /* アルバムアイテム */
}
.album .album_inner {
  margin: 20px 0;
}
@media screen and (min-width: 700px) {
  .album .album_inner {
    margin: 20px 0 50px 0;
  }
}
.album .album-container {
  width: 95%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.album .album-header {
  margin-bottom: 30px;
}
.album .album-title {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  padding: 10px;
  margin-bottom: 0.5em;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .album .album-title {
    font-size: 3rem;
  }
}
.album .album-description {
  font-size: 1.6rem;
  line-height: 3.2rem;
  margin-top: 20px;
}
@media screen and (min-width: 700px) {
  .album .album-description {
    margin-bottom: 2em;
    margin-top: 0;
  }
}
.album .album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .album .album-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
}
.album .album-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.album .album-item .album-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.guide .guide_inner {
  width: 95%;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 30px;
}
@media screen and (min-width: 700px) {
  .guide .guide_inner {
    padding-bottom: 80px;
  }
}
.guide .guide_inner .guide_list .guide_list_item {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0px 0px 5px #e6e6e6;
}
@media screen and (min-width: 700px) {
  .guide .guide_inner .guide_list .guide_list_item {
    height: 160px;
  }
}
.guide .guide_inner .guide_list .guide_list_item a {
  height: 160px;
}
@media screen and (min-width: 700px) {
  .guide .guide_inner .guide_list .guide_list_item a {
    display: flex;
  }
}
.guide .guide_inner .guide_list .guide_list_item a .guide_list_itemImg {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .guide .guide_inner .guide_list .guide_list_item a .guide_list_itemImg {
    width: 50%;
  }
}
.guide .guide_inner .guide_list .guide_list_item a .guide_list_itemImg img {
  display: block;
  background-color: #333;
  transition: all 0.5s ease;
}
.guide .guide_inner .guide_list .guide_list_item a .guide_list_itemText {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.6rem;
  transition: all 0.5s ease;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .guide .guide_inner .guide_list .guide_list_item a .guide_list_itemText {
    font-size: 2rem;
    padding-top: 40px;
    padding-bottom: 0;
    padding-right: 1%;
    padding-left: 9%;
    width: 40%;
    text-align: left;
  }
}
.guide .guide_inner .guide_list .guide_list_item a .guide_list_itemText span {
  position: relative;
}
.guide .guide_inner .guide_list .guide_list_item a .guide_list_itemText span:before {
  content: " ";
  display: block;
  width: 0;
  height: 1.5px;
  position: absolute;
  bottom: -2px;
  left: 0;
  top: 20px;
  border-bottom: 1.5px solid #2E323B;
  transition: all 300ms 0s ease;
}
.guide .guide_inner .guide_list .guide_list_item a:hover .guide_list_itemText {
  color: #8d7c5e;
}
.guide .guide_inner .guide_list .guide_list_item a:hover .guide_list_itemText span:before {
  width: 100%;
}
.guide .guide_inner .guide_list .guide_list_item:nth-child(2) a {
  flex-flow: row-reverse;
}

.sns .sns_inner {
  margin-bottom: 50px;
}
@media screen and (min-width: 700px) {
  .sns .sns_inner {
    margin-bottom: 100px;
  }
}
.sns .sns_inner .sns_list {
  width: 94%;
  max-width: 590px;
  margin-right: auto;
  margin-left: auto;
}
.sns .sns_inner .sns_list .sns_item {
  display: inline-block;
  display: flex;
  justify-content: center;
}
.sns .sns_inner .sns_list .sns_item img {
  width: 100%;
}