@charset "UTF-8";


body {
  font-family: "Shin Maru Go Medium";
  color: #2989C0;
}

.header__lead {
  font-family: "Shin Maru Go DemiBold";
  font-size: 0.9375rem;
  line-height: 2.5;
  font-weight: normal;
}

p.yodogawa-text {
  width: fit-content;
  margin-inline: auto;
}


.header__logo {
  display: none;
}

.header h1 {
  background-color: unset;
}

/* over write */
.navi__first-latest {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer {
  width: 100%;
  /*max-width: 1000px;*/
  margin: 0 auto;
}

@media only screen and (max-width: 681px) {

  .navi__first-latest {
    max-width: 320px;
    padding: 0;
    text-align: center;
  }

  .navi__first-latest ul {
    width: 480px !important;
    overflow: hidden;
    position: relative;
  }

  .navi__first-latest li {
    width: auto;
    float: none;
  }

  .navi--bottom .navi__first-latest {
    margin-top: 0;
  }

}

/*------------------------------------------------------------------------------

  Mobile Styles

------------------------------------------------------------------------------*/
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center bottom;
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-image: url(/textlive/images/neo_kesennuma2024_sp.jpg);
  background-size: cover;
}

body * {
  box-sizing: border-box;
}


a.btn {
  box-shadow: 0 2px 0 #2e7699, 0 4px 3px rgba(0, 0, 0, 0.2);
}

a.btn:active {
  transition-duration: .1s;
  opacity: .5;
  background-color: #3b97c5;
  box-shadow: 0 0px 0 #2e7699, 0 0px 0px rgba(0, 0, 0, 0.2);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.off a.btn {
  box-shadow: none;
}

.off a.btn:active {
  opacity: 0.2;
  background-color: #000000;
  box-shadow: none;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

.ua-desktop a.btn:hover {
  opacity: .5;
  background-color: #3b97c5;
  box-shadow: 0 1px 0 #2e7699, 0 0px 2px rgba(0, 0, 0, 0.2);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

.ua-desktop .off a.btn:hover {
  opacity: 0.2;
  background-color: #000000;
  box-shadow: none;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}


/*------------------------------------------------------------------------------

  Post

------------------------------------------------------------------------------*/
.post-header {
  padding: 10px 0 0 10px;
  border: 1px solid #e6e6e6;
  border-bottom: 0 none transparent;
  border-radius: 6px 6px 0 0;
  background-color: #FFFFFF;
}

.post-header__title {
  min-height: 84px;
  margin-right: 60px;
  margin-bottom: 0;
  border: 0 none transparent;
  /* 吹き出しの背景色 */
  background-color: #d9abcb;
}

.post-header__title:before {
  background-image: url(/textlive/images/neo_kesennuma2024/balloon.svg);
}

.post-header__title a {
  display: block;
}

.post-header__title h3 {
  color: #041b68;
  font-size: 150%;
}

.post-header__title .time {
  color: #041b68;
  font-size: 90%;
}

.post-header__title .time i {
  font-size: 150%;
  line-height: 0;
  vertical-align: middle;
}

.post-share li a {
  background-color: #12b292;
}

.post .mail {
  color: #fd7400;
}

.post__text {
    font-size: 130%;
    line-height: 2;
    color: #041b68;
}


/*------------------------------------------------------------------------------

  Slide

------------------------------------------------------------------------------*/
.slide {
  border-top: 0 none transparent;
  border-radius: 0;
}

/*------------------------------------------------------------------------------

  Navi

------------------------------------------------------------------------------*/
.navi {
  border: none;
}

.navi__date li>span {
  color: #054966;
}

.navi__date li a.btn {
  margin-top: -4px;
}

.navi--top {
  padding: 16px 0;
}

.navi--bottom {
  padding: 16px 0;
}

/*------------------------------------------------------------------------------

  Footer

------------------------------------------------------------------------------*/
.footer-share h3 {
  color: #404040;
}

.footer-share li a {
  color: #12b292;
}

.footer-contact__mail a {
  background-color: #42a8db;
}

.footer-contact__home a {
  background-color: #fd7400;
}

.footer .copyright {
  background-color: rgb(86 91 144);
  color: white;
}

.loader {
  border: 6px solid #fd7400;
}

/*------------------------------------------------------------------------------

 small device styles

------------------------------------------------------------------------------*/
@media only screen and (max-width: 600px) {

  /* スマホだけのスタイル */
  .header__map-header {
    height: 55px;
  }
}

@media only screen and (max-width: 400px) {
  .header__lead>div>br {
    display: none;
  }
}

/*------------------------------------------------------------------------------

  column

------------------------------------------------------------------------------*/
.column {
  width: 100%;
}

/*------------------------------------------------------------------------------

  	  Post

  	------------------------------------------------------------------------------*/
.post-header {
  border: 0 none transparent;
}

.post-share {
  padding: 0;
}

.post-share__twitter a {
  border-radius: 6px 0 0 0;
}

.post-share__line {
  float: right;
}

.post-share__line a {
  border-radius: 0 0 6px 0;
}

/*------------------------------------------------------------------------------

  	  Navi

  	------------------------------------------------------------------------------*/
.navi--bottom {
  padding-bottom: 66px;
}

/*------------------------------------------------------------------------------

  	  Footer

  	------------------------------------------------------------------------------*/
.footer-contact__mail a {
  color: #42a8db;
  background-color: transparent;
}

.footer-contact__home a {
  color: #42a8db;
  background-color: transparent;
}

.map {
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  margin-top: -60px;
}