@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
font-family: sans-serif;
}

h1 {
  font-size: 1rem;
}

body {
  background-color: #F5F5F5;
　font-family: sans-serif;
}

header {
  background-color: #C94040;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
	position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

header .header {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  margin: auto;
}
header .header h1 img {
	max-width:258px;
	height:auto;
}
@media (max-width: 960px) {
  header .header h1 img {
    width: 70%;
  }
}

@media (max-width: 960px) {
  header .header {
    gap: 0;
  }
}

.global-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.global-menu ul li {
  text-align: center;
  position: relative;
  cursor: pointer;
}

.global-menu ul li:hover > .sub-menu {
  display: block;
  z-index: 2;
}

.global-menu ul li > a {
  padding-bottom: 37px;
}

.global-menu ul li a {
  color: #fff;
}

.global-menu ul li a span {
  display: block;
  font-size: .7em;
}

.global-menu ul li a:hover {
  border-bottom: 4px solid #fff;
}

@media (max-width: 1240px) {
  .global-menu ul {
    gap: 15px;
  }
}

@media (max-width: 960px) {
  .global-menu ul li {
    font-size: .8em;
  }
}

.global-menu .toggle-button {
  display: none;
  cursor: pointer;
  z-index: 102;
}

.global-menu .toggle-button span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

@media (max-width: 720px) {
  .global-menu .toggle-button {
    display: block;
  }
  .global-menu .toggle-button.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(6px, 6px);
            transform: rotate(45deg) translate(6px, 6px);
  }
  .global-menu .toggle-button.active span:nth-child(2) {
    opacity: 0;
  }
  .global-menu .toggle-button.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
            transform: rotate(-45deg) translate(6px, -6px);
  }
	.global-menu ul li a span {
		font-size:.7em;
	}
}

@media (max-width: 720px) {
  .global-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 16;
  }
  .global-menu ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: absolute;
    top: 0px;
    left: 0;
    gap: 0;
    width: 100%;
    height: 100vh;
    background-color: #C94040;
    -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /*background-image: url("images/f-sitetitle.png");
    background-repeat: no-repeat;
    background-position: bottom 45px center;*/
    background-size: 20%;
  }
  .global-menu ul.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .global-menu ul li {
    width: 100%;
    border-bottom: 1px dotted #fff;
    padding: 15px;
    margin: 0;
    font-size: 1rem;
  }
.global-menu ul li a:hover {
  border-bottom: none;
}
  .global-menu ul li:last-child {
    border-bottom: 0px;
  }
}

.slideshow {
  background: -webkit-gradient(linear, left top, left bottom, from(#2F2F2F), to(#303030));
  background: linear-gradient(180deg, #2F2F2F 0%, #303030 100%);
  text-align: center;
}

@media (max-width: 960px) {
  .slideshow {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .slideshow {
    padding: 0;
  }
}

.top-slider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.swiper {
  position: relative;
  overflow: visible;
  padding: 60px;
}

@media (max-width: 960px) {
  .swiper {
    padding: 0;
  }
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
border-radius: 6px;
}

@media (max-width: 720px) {
  .swiper-backface-hidden .swiper-slide {
    height: 450px;
border-radius: 0px;
  }
  .swiper-backface-hidden .swiper-slide img {
    width: auto;
  }
}

.swiper-slide-prev, .swiper-slide-duplicate-prev, .swiper-slide-next, .swiper-slide-duplicate-next {
  opacity: .3;
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-button-next {
  right: 45px;
  padding: 8px;
}
.swiper-button-prev {
  left: 45px;
  padding: 8px;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 23px;
}

@media (max-width: 720px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 24px;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal span {
    width: 100%;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

.swiper-pagination-bullet {
  background-color: #fff;
  width: 100px;
  height: 6px;
  border-radius: 0;
  opacity: 1;
  -webkit-transition: background-color .5s;
  transition: background-color .5s;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
}

.swiper-pagination-bullet-active {
  background-color: #C94040;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: white;
  font-size: 54px;
}

@media (max-width: 720px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 40px;
  }
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

main .sidebar-l {
  -ms-flex-preferred-size: 276px;
      flex-basis: 276px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main .sidebar-l div {
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1240px) {
  main .sidebar-l {
    -ms-flex-preferred-size: calc(25% - 15px);
        flex-basis: calc(25% - 15px);
    padding-left: 24px;
  }
}

@media (max-width: 960px) {
  main .sidebar-l {
flex-basis: calc(30% - 15px);
  }
}

@media (max-width: 720px) {
  main .sidebar-l {
    -ms-flex-preferred-size: calc(100%);
        flex-basis: calc(100%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 24px;
  }
  main .sidebar-l .banner-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    line-height: 0;
    margin-bottom: 24px;
  }
  main .sidebar-l .onair-info {
    margin-bottom: 0;
  }
main .sidebar-l .kinkyu-info {
	order:1;
	}
main .sidebar-l .banner-list {
	order:3;
	}
main .sidebar-l .onair-info {
	order:2;
	}
}

@media (max-width: 720px) {
  main {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

main .onair-info {
  margin-bottom: 20px;
}

main .banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

main .banner-list img {
  width: 100%;
  height: auto;
}

main .main-content {
  -ms-flex-preferred-size: 587px;
      flex-basis: 587px;
}

main .main-content h2 {
  padding: 18px 24px;
  font-size: 22px;
}

@media (max-width: 1240px) {
  main .main-content {
   -ms-flex-preferred-size: calc(75% - 15px);
        flex-basis: calc(75% - 15px);
    padding-right: 24px;
  }
}

@media (max-width: 960px) {
  main .main-content {
    -ms-flex-preferred-size: calc(70% - 39px);
        flex-basis: calc(70% - 39px);
  }
}

@media (max-width: 720px) {
  main .main-content {
    -ms-flex-preferred-size: calc(100%);
        flex-basis: calc(100%);
    padding: 0 24px;
  }
	main .main-content h2 {
	padding: 18px 24px;
	font-size: 18px;
}
}

main .top-info-list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
}

main .top-info-list dt span {
  background-color: #535353;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  padding: 3px 9px;
}

main .top-info-list dd:not(:last-child) {
  margin-bottom: 12px;
  border-bottom: 1px solid #CACACA;
  padding-bottom: 12px;
}

main .top-info-list dd a {
  color: #535353;
}

main .top-info-list dd a:hover {
  text-decoration: underline;
}

main .top-e-info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

main .top-e-info-list li img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
	border: 1px solid #eee;
	padding: 1px;
}

main .top-e-info-list li .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main .top-e-info-list li .info span {
  color: #C94040;
}

main .top-e-info-list li .info a {
  color: #535353;
}

main .top-e-info-list li .info a:hover {
  text-decoration: underline;
}

main .top-e-info-list li:not(:last-child) {
  margin-bottom: 12px;
  border-bottom: 1px solid #CACACA;
  padding-bottom: 12px;
}

main .list-link {
  position: absolute;
  top: 22px;
  right: 24px;
  padding-left: 1em;
  color: #fff;
  font-size: 16px;
  background-image: url("images/r-ar-aicon.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

main .list-link:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  main .list-link {
    position: relative;
    right: auto;
    margin: 0 auto 30px auto;
    color: #2F2F2F;
    display: block;
    width: 250px;
    text-align: center;
    padding: 12px;
    border: 1px solid #2F2F2F;
    background: none;
    border-radius: 3px;
  }
}

main .sidebar-r {
  -ms-flex-preferred-size: 276px;
      flex-basis: 276px;
  text-align: center;
  padding-bottom: 24px;
}

main .sidebar-r h2,main .sidebar-l .kinkyu-info h2 {
  padding: 12px 20px;
  font-size: 20px;
  text-align: left;
}
main .sidebar-l .kinkyu-info ul{
  padding: 0 20px;
color:#555;
}
main .sidebar-l .kinkyu-info ul li{
line-height:1.2em;
margin-bottom:.5em;
}
main .sidebar-l .kinkyu-info ul li span{
font-weight:bold;
font-size:.9em;
display:block;
}
main .sidebar-r p,main .sidebar-l .kinkyu-info p {
  text-align: left;
  margin-bottom: 20px;
}

@media (max-width: 1240px) {
  main .sidebar-r {
    margin-left: auto;
    -ms-flex-preferred-size: calc(75% - 15px);
        flex-basis: calc(75% - 15px);
    padding-right: 24px;
  }
}

@media (max-width: 960px) {
  main .sidebar-r {
    -ms-flex-preferred-size: calc(70% - 15px);
        flex-basis: calc(70% - 15px);
  }
}

@media (max-width: 720px) {
  main .sidebar-r {
    -ms-flex-preferred-size: calc(100%);
        flex-basis: calc(100%);
    padding: 0 24px;
  }
}

.sidebar-r section div{
	display:flex;
	flex-direction:column;
	gap:7.5px;
	align-items: center;
}
.sidebar-r section div > *{
	margin-bottom:0px;
}

main section {
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-bottom: 20px;
}

main section h2 {
  display: block;
  background-color: #C94040;
  color: #fff;
  border-radius: 6px 6px 0 0;
}

main section h2 + * {
  margin: 20px 20px 0 20px;
}

main section:not(:first-child) {
  margin-top: 30px;
}

/*サブページ追加*/
.page-header {
  background: -webkit-gradient(linear, left top, left bottom, from(#2F2F2F), to(#303030));
  background: linear-gradient(180deg, #2F2F2F 0%, #303030 100%);
  text-align: center;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center center;
}

.page-header h1 {
  background-color: #fff;
  color: #C94040;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: .5em 24px;
  border-radius: 24px;
}

@media (max-width: 960px) {
  .page-header {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .page-header {
    padding: 0;
  }
}

.breadcrumb {
  font-size: 14px;
  padding: .5em;
  font-size: .8em;
  background-color: #2F2F2F;
  color: #aaa;
}

@media (max-width: 720px) {
  .breadcrumb {
    font-size: .75em;
  }
}

.breadcrumb div {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.breadcrumb a {
  color: #aaa;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  font-weight: bold;
}

@media (min-width: 1241px) {
  .subpage main .main-content {
    -ms-flex-preferred-size: calc(100% - 306px);
        flex-basis: calc(100% - 306px);
  }
}

@media (max-width: 720px) {
  .subpage main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
/*
.subpage main section > *:not(h2) {
  padding-right: 24px;
  padding-left: 24px;
}*/

.subpage main h3 {
  color: #C94040;
  margin: 24px 0;
border-bottom: 1px solid;
}

.subpage main p {
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 1em;
	word-break: break-all;
	line-height: 1.7em;
}

.subpage main p a {
  color: #000;
  text-decoration: underline;
}

.subpage main ul {
  margin-bottom: 1em;
}

.subpage main .btn {
  color: #2F2F2F;
  display: block;
  width: 250px;
  text-align: center;
  padding: 12px;
  border: 1px solid #2F2F2F;
  background: none;
  border-radius: 3px;
  margin: auto;
}

.subpage main .btn:hover {
  background-color: #2F2F2F;
  color: #fff;
}

/*サブページ追加ここまで*/
footer {
  background-color: #C94040;
  color: #fff;
  padding: 48px 0 0 0;
  border-top: 1px solid #D65656;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}
footer .footer__contents {
  display: -ms-grid;
  display: grid;
  max-width: 960px;
  margin: 0 auto 48px auto;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 0px 0px;
      grid-template-areas: "footer__sitemap"
 "footer__logo";
}

footer .footer__contents .footer__logo {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: footer__logo;
  text-align: center;
}
footer .footer__contents .footer__logo img{
	/*max-width:128px;
	height:auto;*/
	display:none;
}

footer .footer__contents .footer__logo .info {
  margin-top: 24px;
  font-size: 14px;
}
footer .footer__contents .footer__sitemap .sitemap-header{
  cursor: pointer;
  display: none;
  justify-content: space-between;
  align-items: center;
	padding:15px 0px;
	border:0px;
	margin:15px 0 0 0;
	font-size:1em;
	display:none;
}
footer .footer__contents .footer__sitemap .sitemap-header::after {
  content: "＋";
  margin-left: 10px;
}
footer .footer__contents .footer__sitemap.active .sitemap-header::after {
  content: "―";
}

footer .footer__contents .footer__sitemap .sitemap-content {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: footer__sitemap;
  border-bottom: 1px solid #fff;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

footer .footer__contents .footer__sitemap a {
  color: #fff;
  text-decoration: none;
}

footer .footer__contents .footer__sitemap a:hover {
  text-decoration: underline;
}

footer .footer__contents .footer__sitemap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .75em;
}

footer .footer__contents .footer__sitemap ul li {
  font-weight: bold;
}

footer .footer__contents .footer__sitemap ul li ul {
  margin-top: .75em;
  gap: .2em;
}

footer .footer__contents .footer__sitemap ul li ul li {
  font-size: .9em;
  padding-left: 1em;
  font-weight: normal;
  background-image: url("images/r-ar-aicon.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

footer .footer__contents .footer__sns {
  margin-top: 24px;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: footer__sns;
}

footer .footer__contents .footer__sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 720px) {
	footer .footer__contents .footer__sitemap .sitemap-header{
		display:flex;
	}
	footer .footer__contents .footer__sitemap.active .sitemap-header{
		margin:15px 0 15px 0;
		border-bottom:1px dotted #fff;
	}
	footer .footer__contents .footer__sitemap .sitemap-content{
		  height: 0px;
  		overflow: hidden!important;
 		 transition: all 0.3s ease;
		padding-bottom:0;
		display:block;
	}
	footer .footer__contents .footer__sitemap.active .sitemap-content{
 	 height: fit-content!important;
	}
	
	footer .footer__contents .footer__sitemap .sitemap-content ul:last-child{
		margin-bottom:15px;
	}
	footer .footer__contents .footer__sitemap .sitemap-content ul,.sitemap-content ul ul{
		margin-bottom:.5em;
	}
}
@media (max-width: 1240px) {
  footer .footer__contents {
    padding: 0 24px;
    gap: 24px;
  }
  footer .footer__contents .footer__logo .info {
    font-size: 12px;
  }
  footer .footer__contents .footer__sitemap {
    gap: 12px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  footer .footer__contents .footer__sitemap ul {
    gap: .5em;
  }
  footer .footer__contents .footer__sitemap ul li ul {
    margin-top: .5em;
  }
}

@media (max-width: 960px) {
  footer .footer__contents {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: "footer__sitemap"
 "footer__logo";
  }
  footer .footer__contents .footer__logo {
    text-align: center;
  }
}

@media (max-width: 720px) {
  footer .footer__contents {
        grid-template-areas: "footer__sitemap"
			"footer__logo";
			gap:0;
  }
  footer .footer__contents .footer__sns {
    margin-top: 0;
  }
  footer .footer__contents .footer__sns ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
	footer .footer__logo{
		margin-bottom:30px;
	}
}

footer .footer__copyright {
  background-color: #2F2F2F;
  text-align: center;
  font-size: 14px;
  padding: 12px;
}

@media (max-width: 720px) {
  footer {
    padding-top: 0px;
  }
footer .footer__contents {
	margin-bottom:0px;		
	}
}


.wpcf7-form{
	max-width:450px;
	margin:auto;
}
.form-group {
    margin-bottom: 20px;
}
.wpcf7-form-control-wrapl input,
.wpcf7-form-control-wrap input,
textarea {
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
    padding: 8px;
    width: 100%;
}
.form-group.small input{
	width:15%;
}
.form-group label{
	font-weight:bold;
}
textarea {
    resize: none;
}
input.wpcf7-submit{
    background-color: #555;
    border: none;
    border-radius: 3px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
}
input.wpcf7-submit:hover {
    background-color: #222;
}
select {
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23000" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
    padding: 8px;
    padding-right: 24px;
    width: 100%;
}
.is-style-outline:hover{
	background-color:#555;
	color:#fff;
	border-radius:3px;
	border:#555;
}
.personalitykiji{
	margin:20px 20px 0 20px;
}
.personalitykiji tr > td:first-child{
	width:150px;
}

/*ONAIR情報*/
#onairinfo{
	width: 100%;
	background: url(images/onairinfo-bg.jpg), #3F3F3F;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #333;
	border-top: 1px solid #575757;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	border-radius: 6px;
	padding: 20px;
}
#onairinfo h2 img{
	width:100%;
	height:auto;
}
#onairinfo .infoerea{
	color: #535353;
	background-color: #BFD3BA;
	box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
	height: 104px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#onairinfo .infoerea p{
  font-family: 'DotGothic16', sans-serif;
	margin-bottom:0!important;
	font-size:1.2em!important;
	text-align:center;
	margin: 0 15px;
	word-break:break-word;
	line-height:1.4em;
}
#onairinfo dl{
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	color: #fff;
}
#onairinfo dl *{ 
	font-size: 13px;
	padding: .5em;
	border-bottom: 1px solid #000;
}
#onairinfo dt{
	width:30%;
}
#onairinfo dd{
	width:70%;
}
#onairinfo dl *:nth-child(n+5){
	border-bottom: none;
}
@media (max-width: 720px) {
	#onairinfo{
		width: 100%;
		text-align:center;
	}
	#onairinfo h2{
		margin-bottom:10px;
	}
	#onairinfo dl *{
		text-align:left;
	}
	.sp-hidden{
		visibility:hidden;
		display:none;
	}
}
/*ONAIR情報ここまで*/
.sitemap-list ul{
	margin:0!important;
}
.sitemap-list a{
	text-decoration: none;
	color: #555;
}
.sitemap-list a:hover{
	text-decoration: underline;
}
.sitemap-list ul li{
	padding: .5em 0;
}
.sitemap-list ul li ul li{
	font-size: .9em;
	padding: .3em 0 .3em 1em;
	background-image: url(images/aicon-right.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.post-thumbnail img{
	max-width:320px;
	height:auto;
	border: 1px solid #eee;
    padding: 2px;
}
.list-style{
	list-style-type:circle;
	margin-left:0px!important;
}
.form-group input[type="submit"] {
	background-color:#555;
}
.form-group input[type="submit"]:hover {
	background-color:#999;
}
.banner-img img{
	max-width:235px;
	height:auto;
}
.footer__logo .info a{
	color:#fff;
	text-decoration:underline;
}

/*メインコンテンツテーブル*/
.main-content table{
border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
}
.main-content table thead th,.main-content table tbody td{
	border: 1px solid #ddd;
  text-align: left;
  padding: 10px;
}
.main-content table th {
color: #333;
  font-weight: bold;
  text-transform: uppercase;
}
/*番組表ここから*/
.onair-table{
  background-color: #fff;
  padding: 20px!important;
  width: 100%;
  border: 1px solid #efefef;
  border-radius: 6px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
}
.onair-table td{
  border-top: 1px solid #aaa;
  padding: .5em!important;
  color: #555;
}
.onair-table tr:first-child td{
  border-top: 0px;
}
.onair-table td dl{
  display: flex;
  flex-wrap: wrap;
}
.onair-table td dl dt{
  width: 2em;
  font-size: .8em;
  padding-top: .7em;
  font-weight: bold;
}
.onair-table td dl dd{
  width: calc(100% - 2em);
  line-height: 1.25em;
  padding: .5em 0!important;
  border-bottom: 1px dotted #ccc;
}
.onair-table td dl dd span{
  margin-bottom: .5em;
  display: block;
  font-weight: bold;
}
.onair-table td dl dd span a{
	text-decoration:underline;
	color:#555;
}
.onair-table td dl dd:last-child{
border-bottom: 0px;
}
.onair-table .time{
  width: 1em;
  text-align: center;
  background-color: #888;
  font-weight: bold;
  color: #fff;
}
.onair-table tr:nth-child(-n+7) .time{
  background-color: #ff9641;
}
.onair-table tr:nth-child(n+8):nth-child(-n+13) .time{
  background-color: #a1cc52;
}
.onair-table tr:nth-child(n+14) .time{
  background-color: #4d75aa;
}
/*番組表ここまで*/
/*番組表メニューここから*/
.tab-menu {
  display: flex;
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
}
.tab-menu a {
  flex: 1;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1em .5em;
  color: #555;
  border-right: 1px solid #eee;
  cursor: pointer;
}
.tab-menu a:last-child {
	border-right: none;
}
.tab-menu a.active {
  background-color: #C94040;
  color: #fff;
}
.tab-menu a:hover {
  background-color: #C94040;
  color: #fff;
}
/*番組表メニューここまで*/

.h2-single{
    background-color: #C94040;
    color: #fff;
    border-radius: 6px;
	margin-bottom:15px;
}

/*番組情報一覧*/
.card-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  width: calc(50% - 7.5px);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.01);
  border-radius: 6px;
  background-color: #fff;
border-left:10px solid #C94040;
border-top: 1px solid #efefef;
border-right: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
@media (max-width: 720px) {
	.card-container {
		flex-direction:column;
	}
	.card {
		width:100%;
	}
}
.card a{
text-decoration: none;
}
.card a:hover h3{
text-decoration:underline;
}
.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.2em;
	line-height:1.2em;
  margin: 0 0 15px 0!important;
  font-weight: bold;
padding-bottom: 15px;
border-bottom: 1px dotted #ccc!important;
}

.card-content span {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.card-content p {
  font-size: 16px;
  color: #333;
}

.card-content dl{
    color: #333;
    font-size: .9em;
}
.card-content dl dt{
    float: left;
	clear: left;
    margin-right: 1em;
    font-weight: bold;
	width:5em;
}
.card-content dl dd{
    width: 1fr;
    text-align: left;
}

/*番組情報詳細ページ=>番組情報*/
dl.inhouse-p-info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right:1px solid #ccc;
}
.inhouse-p-info dt {
    width: 15%;
    padding: 10px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
	color:#555;
    text-align: left;
}
.inhouse-p-info dd {
    width: 85%;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    vertical-align: top;
}
@media (max-width: 720px) {
	dl.inhouse-p-info {
		flex-direction:column;
	}
	.inhouse-p-info dt{
		width:100%;
	}
	.inhouse-p-info dd{
		width:100%;
	}
	.post-thumbnail img{
	width:100%;
	height:auto;
	}
}

/*プログラム情報バナー*/
.program-banner{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px!important;
}
.program-banner li{
  width:calc(50% - 7.5px);
  line-height: 1;
}
.program-banner li img{
  width: 100%;
  height: auto;
}
@media (max-width: 720px) {
  .program-banner{
    flex-direction: column;
  }
  .program-banner li{
    width:100%;
  }
}

/* 緊急FMラジオテーブル情報のテーブルの調整＆リンクカラー */
table.inhouse-p-info,table.inhouse-p-shareholder{
    border-radius: 0px;
}
table.inhouse-p-info tr td{
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
table.inhouse-p-shareholder tr td{
    padding: 0px 10px 12px;
    border:none;
    margin-bottom: 12px;
    border-bottom: 1px solid #DADADA;
}
table.inhouse-p-info a:-webkit-any-link,table.inhouse-p-shareholder a:-webkit-any-link{
    color:initial;
}
table.inhouse-p-info a{
    text-decoration: underline;
}
table.inhouse-p-shareholder tr{
    display: flex;
    flex-direction: column;
}
.inhouse-th tr td:first-child {
    width: 20%;
    padding: 10px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    color: #555;
    text-align: left;
}
.inhouse-th3 tr td:first-child {
    width: 60%;
    padding: 10px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    color: #555;
    text-align: left;
}
.mg0{
	margin-bottom:0px;
}
.supplement-ul li{
    margin-bottom: 12px;
    border-bottom: 1px solid #DADADA;
    padding-bottom: 12px;
}
.supplement-ul li:last-child{
    margin-bottom:0px;
    border-bottom:none;
    padding-bottom:0px;
}
.supplement-ul li a{
	color: #000;
}
.supplement-ul li a:hover{
    text-decoration: underline;
}
@media (max-width: 720px){
table.inhouse-th tr{
    display: flex;
    flex-direction: column;
}
.inhouse-th tr td:first-child{
    width: 100%;
}
table.inhouse-th tr td {
    width: 100%;
    display: flex;
    flex-direction: column;
}
table.inhouse-th tr td br{
    display:none;
}
table.inhouse-th3 tr{
    display: flex;
    flex-direction: column;
}
.inhouse-th3 tr td:first-child{
    width: 100%;
}
table.inhouse-th3 tr td {
    width: 100%;
    display: flex;
    flex-direction: column;
}
table.inhouse-th3 tr td br{
    display:none;
}
}

/* ご案内ページ */
.about-header{
    padding-bottom: 0px!important;
    margin-bottom: 20px;
}
.card-p{
    margin-bottom: 0px!important;
}

/* 後援ページ */
.mt30{
    margin-top: 30px!important;
}
.subpage main h3.mt0{
    margin-top: 0px;
}

/* dd a*/
dd a{
	color:#555;
	text-decoration:underline;
}

/*banner-list border-radius*/
.onair-info + .banner-list img{
border-radius:6px;
}

.mb30{
	margin-bottom:30px!important;
}
.mlr-n{
	margin-left:0!important;
}

/*ギャラリー画像*/
.gallery{
display: grid;
grid-template-columns:1fr 1fr 1fr;
gap:15px;
justify-items: center;
align-items: center;
}
.gallery figure{
margin-bottom:0;
line-height:0;
}
.gallery figure img{
width:100%;
height:auto;
}
@media (max-width: 720px){
.gallery{
grid-template-columns:1fr;
gap:15px;
}

.gallery figure img{
width:100%;
height:auto;
}
#gallery-1{
margin-bottom:15px;	
}
}
/*番組情報personality画像*/
.p-img-flex{
display:grid;
text-align:center;
line-height:0;
gap:7px;
padding:7px;
position: relative;
}
.p-img-flex .personality-img{
width:100%;
max-width:360px;
height:auto;
}
.p-img-flex.row2{
grid-template-columns:1fr 1fr;
gap:7px;
}
.post-thumbnail img{
width:100%;
height:auto;
}
.p-img-flex.row1{
display:grid;
grid-template-columns:1fr;
align-items:end;
}
.p-img-flex.row1 .personality-img{
max-width:100%;
max-width:180px;
height:auto;
}
.p-img-flex.row2 .personality-img{
max-width:100%;
max-width:180px;
height:auto;
}
.program-flex.row2{
display:flex;
justify-content:center;
gap:60px;
}
.program-flex.row3{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
place-items:center;
}
.program-flex.row3{

}
@media (max-width: 720px){
.p-img-flex{
grid-template-columns:1fr;
}
.p-img-flex .personality-img{
width:auto;
max-height:150px;
}
.p-img-flex.row1{
grid-template-columns:1fr;
}
.program-flex.row2{
display:grid;
grid-template-columns:1fr;
place-items:center;
gap:7px;
}
.program-flex.row3{
grid-template-columns:1fr;
gap:0;
place-items:center;
}
.p-img-flex.row2{
display:flex;
justify-content:center;
gap:5px;
}
.p-img-flex.row2 .personality-img{
width:auto;
max-height:150px;
}
}
/*５人personality用*/
.p5-grid{
max-width: 500px;
display: flex;
gap: 30px;
align-items: center;
}
.p5-grid .row1{
    width: 45%;
}
.p5-grid .row1 img{
    width: 100%;
    height: auto;
}
.p5-grid .row2{
    display: flex;
    gap: 15px;
    width: 50%;
    flex-wrap: wrap;
}
.p5-grid .row2 a{
    width: calc(50% - 15px);
}
.p5-grid .row2 img{
    width: 100%;
    height: auto;
}

@media (max-width: 720px){
	.p5-grid{
		max-width:320px;
		margin:15px auto 0 auto;
	}
}
.card-row{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	gap:15px;
}

.card-row .card{
	width:100%;
	border-left:none;
	overflow:hidden;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
	border:1px solid #e3e3e3;
}
.card-row .card .card-header {
	padding:15px;	
}
.card-row .card .card-title {
  font-size: 1.2rem;
  line-height:1.3em;
  margin: 0;
color:#333;
}
.card-row .card .card-date {
  margin: 0;
  color: #777;
}
.card-row .card .card-image {
  background-size: cover;
background-position:center center;
  height: 150px;
}
.col-2{
	display:grid;
	gap:30px;
	grid-template-columns:2fr 1fr;
}
.col-2 img{
	max-width:100%;
	height:auto;
	border-radius:3px;
}
@media (max-width: 1023px){
	.card-row{
		grid-template-columns:1fr 1fr;
	}
}
@media (max-width: 720px){
.card-row{
	grid-template-columns:1fr;
}
	.col-2{
	grid-template-columns:1fr;
	gap:15px;
	align-items: center;
}
.col-2 img{
	max-width:80%;
	height:auto;
	margin:auto;
}
}

.bangumihyo-btn{
	display:flex;
	max-width:450px;
	align-items:center;
	gap:20px;
}
.bangumihyo-btn a{
color:#555;	
}
@media (max-width: 720px){
	.bangumihyo-btn{
	flex-direction:column;
		gap:12px;
		text-align:left!important;
		align-items: flex-start;
}
	.bangumihyo-btn btn{
		margin:auto;
	}
}

.grid3{
	grid-template-columns: 1fr 1fr 1fr;
}

.entry-content table tr td{
	text-align:justify;
}