@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.8;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.prg-bg {
  width: 100%;
  margin: 0;
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}

.prg-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #D1E28A;
  transform: skewY(-5deg) translateY(60px);
  z-index: -1;
}

dl.contents-nav {
  margin: 1rem 0;
}
dl.contents-nav dt {
  color: #FFF;
  font-size: 0.75rem;
  width: 6rem;
  border-radius: 0.5rem;
  text-align: center;
}
dl.contents-nav dd {
  padding: 0.5rem 0 0.25rem 1.5rem;
}

dl.cont-time dt {
  background-color: #4C9D7E;
}
dl.cont-time dd {
  font-weight: 800;
}
dl.cont-time dd.saihousou {
  font-weight: 400;
}

dl.cont-guest dt {
  background-color: #BC6493;
}

dl.cont-other dt {
  background-color: #4A90AF;
}

dl.cont-pers01 dt {
  background: linear-gradient(180deg, #F5FDED 0%, #FAFAFA 100%);
  color: #404040;
}

.back-grad001::before {
  background: linear-gradient(180deg, #F5FDED 0%, #FAFAFA 100%);
}

.back-grad002::before {
  background: linear-gradient(180deg, #EDFCFD 0%, #FAFAFA 100%);
}

.back-grad003::before {
  background: linear-gradient(180deg, #FBEDFD 0%, #FAFAFA 100%);
}

.back-grad004::before {
  background: linear-gradient(180deg, #FDFCED 0%, #FAFAFA 100%);
}

.back-grad005::before {
  background: linear-gradient(180deg, #FDF4ED 0%, #FAFAFA 100%);
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #FFF;
  color: #404040;
}

a, a:hover, a:visited {
  text-decoration: none;
  color: inherit;
}

.wrap {
  margin: 2rem 1rem;
}
@media (min-width: 1024px) {
  .wrap {
    width: 1024px;
    margin: 2rem auto;
  }
}

h2 {
  margin: 1rem auto;
  background: url(../images/topimg/h2-icon.png) no-repeat;
  border-bottom: solid 0.25rem #223344;
  border-image: linear-gradient(to left, #93DDD8 0%, #64AC4A 100%);
  border-image-slice: 1;
  padding: 0.5rem 0 0.5rem 3rem;
}

h3 {
  margin: 1rem auto;
  padding: 1rem 0 0.5rem 1rem;
  border-radius: 1px;
  border-bottom: solid 0.25rem #223344;
  border-image: linear-gradient(to left, #c21500 0%, #ffc500 100%);
  border-image-slice: 1;
}
@media (min-width: 600px) {
  h3 {
    padding-top: 0;
  }
}

h4 {
  margin: 1rem auto;
  padding: 0.5rem 0 0.5rem 1.75rem;
  background: url(../images/topimg/h4-icon.png) no-repeat;
  background-position: left;
}

/* fadeUpアニメーション下から上 */
.fadeUp_b-t {
  animation-name: fadeUpAnime_b-t;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime_b-t {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger_b-t {
  opacity: 0;
}

/* fadeUpアニメーション右から左 */
.fadeUp_r-l {
  animation-name: fadeUpAnime_r-l;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime_r-l {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger_r-l {
  opacity: 0;
}

/* fadeUpアニメーション左から右 */
.fadeUp_l-r {
  animation-name: fadeUpAnime_l-r;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime_l-r {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger_l-r {
  opacity: 0;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
  opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  position: relative;
  width: 100%;
  height: 7.5rem;
  box-shadow: 0 3px 6px #404040;
  z-index: 100;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
header #header-inner {
  position: relative;
  margin: 0;
  padding: 1.25rem;
}
@media (min-width: 1024px) {
  header #header-inner {
    width: 1024px;
    margin: 0 auto;
  }
}
@media (min-width: 600px) {
  header #header-inner {
    padding: 1.25rem 2rem;
  }
}
header #header-inner .logo {
  position: absolute;
  width: 11.687rem;
  background-image: url(../images/common/fmkaon-logo.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 3.75rem;
  font-size: 0.75rem;
}
header #header-inner .mailform-icon {
  position: absolute;
  width: 3.375rem;
  top: 1.75rem;
  right: 5.625rem;
}
@media (min-width: 600px) {
  header #header-inner .mailform-icon {
    right: 6.375rem;
  }
}

.openbtn {
  position: absolute;
  z-index: 999;
  background: #D54884;
  top: 1.875rem;
  right: 1.25rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
@media (min-width: 600px) {
  .openbtn {
    right: 2rem;
  }
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
}

.openbtn span:nth-of-type(3) {
  top: 25px;
}

.openbtn span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: -4px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 2px;
}

nav {
  position: relative;
  display: none;
}

nav.panelactive {
  display: block !important;
  z-index: 50;
  width: 100%;
  height: 100vh;
  overflow: auto;
}
nav.panelactive::-webkit-scrollbar {
  display: none;
}
nav.panelactive > ul {
  margin: 7.5rem 0.5rem;
  position: relative;
}
@media (min-width: 600px) {
  nav.panelactive > ul {
    margin-left: 50%;
    width: 50%;
  }
}
nav.panelactive > ul li {
  height: 4rem;
  position: relative;
  padding: 1.25rem 0 0 1rem;
  border-bottom: solid 3px #d0f0cd;
}
nav.panelactive > ul li::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.4em solid #28971b;
  content: "";
}

.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(250, 255, 250, 0.95);
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

.navClick {
  overflow: hidden;
}

#main-contents {
  margin: 7.5rem auto;
}
#main-contents .tab-pc_mainphoto {
  display: none;
}
@media (min-width: 600px) {
  #main-contents .tab-pc_mainphoto {
    display: block;
  }
  #main-contents .tab-pc_mainphoto h1 {
    width: 100%;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav {
    display: none;
  }
}
@media (min-width: 1024px) {
  #main-contents .tab-pc_mainphoto {
    display: flex;
    flex-wrap: nowrap;
  }
  #main-contents .tab-pc_mainphoto h1 {
    width: 54rem;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav {
    display: block;
    width: 10rem;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav p.mainphoto-nav-no1 {
    position: relative;
    width: 9.125rem;
    margin-left: 0.875rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3529411765);
    border-radius: 0px 0px 16px 16px;
    line-height: 4.5rem;
    width: 12rem;
    margin-left: -2rem;
    font-size: 1.5rem;
    background: transparent linear-gradient(233deg, #CDEBDD 0%, #63B598 100%) 0% 0% no-repeat padding-box;
    line-height: 9rem;
    z-index: 10;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav p.mainphoto-nav-no1::before {
    content: url(../images/topimg/topnav-no1.png);
    display: inline-block;
    position: absolute;
    left: 0.5rem;
    bottom: -3.5rem;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav p.mainphoto-nav-no2 {
    position: relative;
    width: 9.125rem;
    margin-left: 0.875rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3529411765);
    border-radius: 0px 0px 16px 16px;
    line-height: 4.5rem;
    width: 10rem;
    font-size: 1.5rem;
    margin-left: 0;
    background: transparent linear-gradient(229deg, #F7F3C1 0%, #F2D162 100%) 0% 0% no-repeat padding-box;
    line-height: 9rem;
    z-index: 8;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav p.mainphoto-nav-no2::before {
    content: url(../images/topimg/topnav-no2.png);
    display: inline-block;
    position: absolute;
    left: 0.5rem;
    bottom: -3.5rem;
    z-index: -1;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav p.mainphoto-nav-no3 {
    position: relative;
    width: 9.125rem;
    margin-left: 0.875rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3529411765);
    border-radius: 0px 0px 16px 16px;
    line-height: 4.5rem;
    background-color: #CEE6DE;
    z-index: 6;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav p.mainphoto-nav-no4 {
    position: relative;
    width: 9.125rem;
    margin-left: 0.875rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3529411765);
    border-radius: 0px 0px 16px 16px;
    line-height: 4.5rem;
    background-color: #E1F1E7;
    z-index: 4;
  }
  #main-contents .tab-pc_mainphoto .mainphoto-nav p.mainphoto-nav-no5 {
    position: relative;
    width: 9.125rem;
    margin-left: 0.875rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3529411765);
    border-radius: 0px 0px 16px 16px;
    line-height: 4.5rem;
    background-color: #D9E5E0;
    z-index: 2;
  }
}
#main-contents .kaon-contents01 .twitter-wrap {
  display: none;
}
#main-contents .kaon-contents01 .kaon-contents01-a .shishou-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#main-contents .kaon-contents01 .kaon-contents01-a .shishou-wrap > a {
  display: block;
  width: 28%;
  margin: 0.5rem;
  border: 1px solid #aaa;
  border-radius: 0.5rem;
}
#main-contents .kaon-contents01 .kaon-contents01-a .shishou-wrap > a p {
  font-size: 0.625rem;
  text-align: center;
}
#main-contents .kaon-contents01 .kaon-contents01-a .shishou-wrap > a p img {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  #main-contents .kaon-contents01 {
    display: flex;
  }
  #main-contents .kaon-contents01 h1 {
    width: 16rem;
  }
  #main-contents .kaon-contents01 .kaon-contents01-a {
    width: calc(100% - 16rem);
    padding: 1rem;
  }
  #main-contents .kaon-contents01 .kaon-contents01-a .shishou-wrap {
    flex-wrap: nowrap;
  }
  #main-contents .kaon-contents01 .kaon-contents01-a .shishou-wrap > a {
    margin: 0.5rem 0.25rem;
  }
}
@media (min-width: 1024px) {
  #main-contents .kaon-contents01 .kaon-contents01-a {
    width: 32rem;
  }
  #main-contents .kaon-contents01 .twitter-wrap {
    display: block;
    width: 16rem;
  }
}
#main-contents .slant-bg {
  width: 100%;
  margin: 0;
  padding: 50px 0;
  position: relative;
}
#main-contents .slant-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent linear-gradient(180deg, #F7FFD1 0%, #E0FCFB 100%) 0% 0% no-repeat padding-box;
  transform: skewY(-6deg);
  z-index: -1;
}
@media (min-width: 600px) {
  #main-contents .kaon-contents02 {
    display: flex;
  }
  #main-contents .kaon-contents02 h1 {
    width: 16rem;
  }
  #main-contents .kaon-contents02 .kaon-contents02-a {
    width: calc(100% - 16rem);
    padding: 1rem;
  }
}
@media (min-width: 600px) and (min-width: 600px) {
  #main-contents .kaon-contents02 .kaon-contents02-a {
    padding-top: 0;
  }
}
@media (min-width: 600px) {
  #main-contents .kaon-contents02 .kaon-contents02-a p {
    margin: 1.25rem 0;
    padding-left: 0.5rem;
  }
}
@media (min-width: 600px) {
  #main-contents dl.contents-nav {
    display: table;
  }
  #main-contents dl.contents-nav dd, #main-contents dl.contents-nav dt {
    display: table-cell;
    vertical-align: middle;
  }
}
#main-contents article.log-link {
  display: flex;
}
#main-contents article.log-link p {
  margin: 0.2rem 0.5rem;
  width: 4rem;
  padding: 0.2rem 0.8rem 0.05rem;
  border-bottom: 3px double #b37436;
}
#main-contents .cont-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#main-contents .cont-info .cont-program {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 1rem 1rem 2rem;
}
#main-contents .cont-info .cont-program p img {
  border-radius: 1rem;
}
@media (min-width: 600px) {
  #main-contents .cont-info .cont-program {
    margin: 0 0.25rem 1.5rem 0.25rem;
    width: calc(50% - 0.5rem);
  }
}
#main-contents div.link {
  margin: 1.5rem 0 0;
  display: flex;
}
#main-contents div.link p.link-icon {
  margin-right: 0.85rem;
  border-radius: 0;
  width: 2rem;
}
#main-contents .TopBanner p {
  padding: 1rem;
}
@media (min-width: 600px) {
  #main-contents .TopBanner {
    display: flex;
    justify-content: center;
  }
  #main-contents .TopBanner p {
    width: 100%;
  }
}
@media (min-width: 600px) and (min-width: 600px) {
  #main-contents .TopBanner p {
    width: 38%;
  }
}
@media (min-width: 600px) and (min-width: 1024px) {
  #main-contents .TopBanner p {
    width: 25%;
  }
}
@media (min-width: 600px) {
  #main-contents .TopBanner p img {
    border-radius: 1rem;
  }
}

footer {
  width: 100%;
  background: linear-gradient(180deg, #EDFCEA 0%, #B8DBAE 100%);
}
footer .FooterLogo {
  background-color: #F8FDF4;
}
footer .FooterLogo p {
  width: 11.687rem;
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
}
footer .FooterText {
  padding: 0 0 2.5rem;
}
@media (min-width: 600px) {
  footer .FooterText {
    display: flex;
  }
}
footer .FooterText .Ftext p {
  padding: 1rem;
}
@media (min-width: 600px) {
  footer .FooterText .Ftext {
    display: flex;
    flex-wrap: wrap;
    width: 75%;
  }
}
footer .FooterText .Ficon {
  display: flex;
  justify-content: flex-end;
}
footer .FooterText .Ficon p {
  margin: 0.5rem;
  width: 2rem;
}
@media (min-width: 600px) {
  footer .FooterText .Ficon {
    width: 25%;
  }
}

#kaon_timetable {
  margin: 8.5rem auto 4rem;
}
#kaon_timetable h1.timetb {
  position: relative;
  font-size: 1.75rem;
  line-height: 1.8;
  width: 18.75rem;
  margin: 0 1rem 2rem;
  padding: 0 0.5rem;
  font-weight: 400;
  border-bottom: solid #404040 1px;
}
@media (min-width: 600px) {
  #kaon_timetable h1.timetb {
    margin: 0 1rem 4.5rem;
  }
}
#kaon_timetable h1.timetb span {
  font-size: 2.625rem;
}
#kaon_timetable h1.timetb:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: attr(day-of-week);
  top: 4.8rem;
}
#kaon_timetable ul.cbp_tmtimeline {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
  position: relative;
  /* The line */
}
#kaon_timetable ul.cbp_tmtimeline:before {
  display: none;
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    background: #afdcf8;
    left: 20%;
    margin-left: -1rem;
  }
}
#kaon_timetable ul.cbp_tmtimeline li {
  position: relative;
  /* The date/time */
  /* Right content */
  /*icon*/
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmtime {
  width: 100%;
  position: relative;
  padding: 0 0 1.25rem 0;
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmtime {
    display: block;
    width: 25%;
    padding-right: 6.25rem;
    position: absolute;
  }
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmtime span {
  display: block;
  line-height: 1.6;
  font-size: 2.5rem;
  color: #3594cb;
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmtime span {
    top: 2rem;
    text-align: right;
    margin-top: 2.5rem;
  }
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel {
  margin: 0 0 30px 0;
  padding: 1rem;
  background: #3594cb;
  color: #fff;
  line-height: 1.4;
  position: relative;
  border-radius: 5px;
  /* The triangle */
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel {
    margin: 0 0 15px 25%;
    padding: 2rem;
    font-size: 1rem;
  }
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel h2 {
  margin-top: 0px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background-image: none;
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel:after {
  right: auto;
  left: 20px;
  border-right-color: transparent;
  border-bottom-color: #3594cb;
  top: -20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-width: 10px;
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel:after {
    right: 100%;
    left: auto;
    top: 10px;
    border-right-color: #3594cb;
  }
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel p {
  margin: 1rem 0;
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel p img {
  border-radius: 0.5rem;
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers {
  display: flex;
  flex-direction: row-reverse;
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers .tt-pers-img {
  width: 25%;
  text-align: center;
  font-size: 0.8rem;
  padding-right: 0.5rem;
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers .tt-pers-img {
    width: 20%;
  }
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers .tt-pers-text {
  width: 75%;
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers .tt-pers-text {
    width: 80%;
    padding-left: 0.5rem;
  }
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers-pair {
  display: flex;
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers-pair div {
  width: 30%;
  padding-right: 0.5rem;
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers-pair div p {
  margin: 0.5rem auto;
  text-align: center;
  font-size: 0.8rem;
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers-ver2 .tt-pers-img {
  width: 30%;
  text-align: center;
  font-size: 0.8rem;
}
@media (min-width: 1024px) {
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers-ver2 {
    display: flex;
  }
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers-ver2 .tt-pers-text {
    padding-right: 1rem;
    width: 75%;
  }
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmlabel .tt-pers-ver2 .tt-pers-img {
    width: 25%;
  }
}
#kaon_timetable ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmtime span:last-child {
  color: #6cbfee;
}
#kaon_timetable ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel {
  background: #6cbfee;
}
#kaon_timetable ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color: transparent;
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #6cbfee;
  }
}
#kaon_timetable ul.cbp_tmtimeline li .cbp_tmicon {
  position: relative;
  float: right;
  left: auto;
  margin: 1rem 1rem 0 0;
  width: 40px;
  height: 40px;
  font-family: "ecoico";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 1.4em;
  line-height: 40px;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background: #46a4da;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #afdcf8;
  text-align: center;
  top: 0;
}
@media (min-width: 600px) {
  #kaon_timetable ul.cbp_tmtimeline li .cbp_tmicon {
    position: absolute;
    float: none;
    left: 20%;
    margin: 0 0 0 -2rem;
  }
}

.icon-music:before {
  content: url(../images/timetb/icon-music.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.68);
}

.icon-mic:before {
  content: url(../images/timetb/icon-mic.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.8);
}

.monday h1:after {
  color: #b37436;
}
@media (min-width: 600px) {
  .monday ul.cbp_tmtimeline:before {
    background: #b37436 !important;
  }
}
.monday ul.cbp_tmtimeline li .cbp_tmtime span {
  color: #b37436 !important;
}
.monday ul.cbp_tmtimeline li .cbp_tmlabel {
  background: #b37436 !important;
}
@media (min-width: 600px) {
  .monday ul.cbp_tmtimeline li .cbp_tmlabel:after {
    border-right-color: #b37436 !important;
  }
}
.monday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel {
  background: #a4774a !important;
}
@media (min-width: 600px) {
  .monday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #a4774a !important;
  }
}
.monday ul.cbp_tmtimeline li .cbp_tmicon {
  background: #b37436 !important;
  box-shadow: 0 0 0 8px #a4774a !important;
}

.tuesday h1:after {
  color: #c0b021;
}
@media (min-width: 600px) {
  .tuesday ul.cbp_tmtimeline:before {
    background: #c0b021 !important;
  }
}
.tuesday ul.cbp_tmtimeline li .cbp_tmtime span {
  color: #c0b021 !important;
}
.tuesday ul.cbp_tmtimeline li .cbp_tmlabel {
  background: #c0b021 !important;
}
@media (min-width: 600px) {
  .tuesday ul.cbp_tmtimeline li .cbp_tmlabel:after {
    border-right-color: #c0b021 !important;
  }
}
.tuesday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel {
  background: #b7a34d !important;
}
@media (min-width: 600px) {
  .tuesday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #b7a34d !important;
  }
}
.tuesday ul.cbp_tmtimeline li .cbp_tmicon {
  background: #c0b021 !important;
  box-shadow: 0 0 0 8px #b7a34d !important;
}

.wednesday h1:after {
  color: #289fac;
}
@media (min-width: 600px) {
  .wednesday ul.cbp_tmtimeline:before {
    background: #289fac !important;
  }
}
.wednesday ul.cbp_tmtimeline li .cbp_tmtime span {
  color: #289fac !important;
}
.wednesday ul.cbp_tmtimeline li .cbp_tmlabel {
  background: #289fac !important;
}
@media (min-width: 600px) {
  .wednesday ul.cbp_tmtimeline li .cbp_tmlabel:after {
    border-right-color: #289fac !important;
  }
}
.wednesday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel {
  background: #479894 !important;
}
@media (min-width: 600px) {
  .wednesday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #479894 !important;
  }
}
.wednesday ul.cbp_tmtimeline li .cbp_tmicon {
  background: #289fac !important;
  box-shadow: 0 0 0 8px #479894 !important;
}

.thursday h1:after {
  color: #63a027;
}
@media (min-width: 600px) {
  .thursday ul.cbp_tmtimeline:before {
    background: #63a027 !important;
  }
}
.thursday ul.cbp_tmtimeline li .cbp_tmtime span {
  color: #63a027 !important;
}
.thursday ul.cbp_tmtimeline li .cbp_tmlabel {
  background: #63a027 !important;
}
@media (min-width: 600px) {
  .thursday ul.cbp_tmtimeline li .cbp_tmlabel:after {
    border-right-color: #63a027 !important;
  }
}
.thursday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel {
  background: #67923b !important;
}
@media (min-width: 600px) {
  .thursday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #67923b !important;
  }
}
.thursday ul.cbp_tmtimeline li .cbp_tmicon {
  background: #63a027 !important;
  box-shadow: 0 0 0 8px #67923b !important;
}

.friday h1:after {
  color: #9663d5;
}
@media (min-width: 600px) {
  .friday ul.cbp_tmtimeline:before {
    background: #9663d5 !important;
  }
}
.friday ul.cbp_tmtimeline li .cbp_tmtime span {
  color: #9663d5 !important;
}
.friday ul.cbp_tmtimeline li .cbp_tmlabel {
  background: #9663d5 !important;
}
@media (min-width: 600px) {
  .friday ul.cbp_tmtimeline li .cbp_tmlabel:after {
    border-right-color: #9663d5 !important;
  }
}
.friday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel {
  background: #8f6db9 !important;
}
@media (min-width: 600px) {
  .friday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #8f6db9 !important;
  }
}
.friday ul.cbp_tmtimeline li .cbp_tmicon {
  background: #9663d5 !important;
  box-shadow: 0 0 0 8px #8f6db9 !important;
}

.saturday h1:after {
  color: #4a89c8;
}
@media (min-width: 600px) {
  .saturday ul.cbp_tmtimeline:before {
    background: #4a89c8 !important;
  }
}
.saturday ul.cbp_tmtimeline li .cbp_tmtime span {
  color: #4a89c8 !important;
}
.saturday ul.cbp_tmtimeline li .cbp_tmlabel {
  background: #4a89c8 !important;
}
@media (min-width: 600px) {
  .saturday ul.cbp_tmtimeline li .cbp_tmlabel:after {
    border-right-color: #4a89c8 !important;
  }
}
.saturday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel {
  background: #5e84ab !important;
}
@media (min-width: 600px) {
  .saturday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #5e84ab !important;
  }
}
.saturday ul.cbp_tmtimeline li .cbp_tmicon {
  background: #4a89c8 !important;
  box-shadow: 0 0 0 8px #5e84ab !important;
}

.sunday h1:after {
  color: #cb5151;
}
@media (min-width: 600px) {
  .sunday ul.cbp_tmtimeline:before {
    background: #cb5151 !important;
  }
}
.sunday ul.cbp_tmtimeline li .cbp_tmtime span {
  color: #cb5151 !important;
}
.sunday ul.cbp_tmtimeline li .cbp_tmlabel {
  background: #cb5151 !important;
}
@media (min-width: 600px) {
  .sunday ul.cbp_tmtimeline li .cbp_tmlabel:after {
    border-right-color: #cb5151 !important;
  }
}
.sunday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel {
  background: #bc6666 !important;
}
@media (min-width: 600px) {
  .sunday ul.cbp_tmtimeline li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #bc6666 !important;
  }
}
.sunday ul.cbp_tmtimeline li .cbp_tmicon {
  background: #cb5151 !important;
  box-shadow: 0 0 0 8px #bc6666 !important;
}

#week-link-wrap {
  position: fixed;
  right: 0;
  bottom: 5rem;
}
@media (min-width: 1024px) {
  #week-link-wrap {
    top: 8rem;
  }
}
#week-link-wrap .week-link {
  color: #FAFAFA;
  width: 4.5rem;
  border-radius: 1rem 0 0 1rem;
  padding: 0.5rem;
}
@media (min-width: 600px) {
  #week-link-wrap .week-link {
    width: 8rem;
    height: 5rem;
  }
}
#week-link-wrap .week-link p {
  position: relative;
  font-weight: 800;
  font-size: 0.85rem;
  border-bottom: solid 1px #FAFAFA;
  text-align: right;
}
@media (min-width: 600px) {
  #week-link-wrap .week-link p {
    font-size: 1rem;
    text-align: left;
    padding: 0.2rem 0.5rem 0 0.85rem;
  }
  #week-link-wrap .week-link p:after {
    position: absolute;
    left: 0.85rem;
    bottom: 0;
    content: attr(link-of-week);
    top: 2.25rem;
    text-align: left;
    font-size: 0.85rem;
  }
}
#week-link-wrap .w-l-mon {
  background: #b37436;
}
#week-link-wrap .w-l-tue {
  background: #c0b021;
}
#week-link-wrap .w-l-wed {
  background: #289fac;
}
#week-link-wrap .w-l-thu {
  background: #63a027;
}
#week-link-wrap .w-l-fri {
  background: #9663d5;
}
#week-link-wrap .w-l-sat {
  background: #4a89c8;
}
#week-link-wrap .w-l-sun {
  background: #cb5151;
}

div.tt-icon {
  display: table;
}
div.tt-icon p {
  display: table-cell;
  vertical-align: middle;
}
div.tt-icon p:first-child {
  width: 2rem;
}
div.tt-icon p:last-child {
  padding-left: 0.85rem;
}

p.voicegate {
  font-size: 0.85rem;
  margin: 1rem 0 0 2rem;
}
@media (min-width: 1024px) {
  p.voicegate {
    margin: 1rem;
    text-align: center;
  }
}

.bg-x {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.bg-x:before {
  content: "";
  position: absolute;
  top: 9rem;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #EDFCFD 0%, #FAFAFA 100%);
  transform: skewY(-5deg);
  z-index: -1;
  height: 9rem;
}
.bg-x:after {
  content: "";
  position: absolute;
  top: 9rem;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #FBEDFD 0%, #FAFAFA 100%);
  transform: skewY(5deg);
  z-index: -1;
  height: 9rem;
}

@media (min-width: 600px) {
  .cont-part-main {
    display: flex;
  }
}
@media (min-width: 600px) {
  .cont-part-main > h1, .cont-part-main div.cont-part-main-info, .cont-part-main div.cont-part-main-photo {
    width: 50%;
  }
}
.cont-part-main > h1 img, .cont-part-main div.cont-part-main-info img, .cont-part-main div.cont-part-main-photo img {
  border-radius: 1rem;
}
@media (min-width: 600px) {
  .cont-part-main > h1 img, .cont-part-main div.cont-part-main-info img, .cont-part-main div.cont-part-main-photo img {
    width: 90%;
  }
}
.cont-part-main > div.cont-part-main-info {
  padding-top: 2rem;
}
@media (min-width: 600px) {
  .cont-part-main > div.cont-part-main-info {
    padding-top: 0;
  }
}

audio {
  width: 100%;
  margin: 1.5rem 0 1rem;
}

.contentsTopSec {
  padding-top: 2rem;
}

section.persWrap {
  margin-top: 4rem;
}

h1.std-ttl {
  position: relative;
  padding: 1em;
  border-top: #cb5151 solid 2px;
}
h1.std-ttl:before {
  position: absolute;
  content: "";
  top: -16px;
  left: 10px;
  width: 100px;
  height: 30px;
  border-radius: 30px;
  background: #cb5151;
}
h1.std-ttl:after {
  position: absolute;
  content: attr(h1data);
  top: -16px;
  left: 10px;
  width: 100px;
  color: #ffffff;
  font-size: 13px;
  line-height: 30px;
  text-align: center;
}

@media (min-width: 600px) {
  .personalityProf {
    display: flex;
  }
}
@media (min-width: 600px) {
  .personalityProf > div.persImg {
    width: 40%;
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .personalityProf > div.persImg {
    width: 25%;
  }
}
@media (min-width: 600px) {
  .personalityProf > div.persText {
    padding-top: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .Sec_cmFee {
    display: flex;
    align-items: flex-start;
  }
  .Sec_cmFee div:first-child {
    padding-right: 1rem;
    width: 55%;
  }
}
.Sec_cmFee p {
  margin: 0.25rem auto;
}

ul.cmFee {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  ul.cmFee {
    width: 45%;
  }
}
ul.cmFee dt, ul.cmFee dd {
  width: 50%;
  padding: 1rem;
  text-align: center;
  border: solid 1px #63a027;
}
ul.cmFee dt.FeeTtl, ul.cmFee dd.FeeTtl {
  background: #63a027;
  color: #FAFAFA;
  font-weight: 700;
}

.cm_Fee_pt02 div {
  display: table;
  width: 100%;
}
.cm_Fee_pt02 div p {
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 1rem;
  width: 33%;
  display: table-cell;
  border: solid 1px #63a027;
  border-top: none;
}
.cm_Fee_pt02 div p.FeeTtl {
  background: #63a027;
  color: #FAFAFA;
  font-weight: 700;
}
.cm_Fee_pt02 div p:first-child {
  border-right: none;
}
.cm_Fee_pt02 div p:last-child {
  border-left: none;
}

.ContLisradiMain h2 {
  background: none;
  padding: 0;
  border: none;
}
.ContLisradiMain h2 img {
  border-radius: 1rem;
}
@media (min-width: 600px) {
  .ContLisradiMain h2 {
    width: 50%;
  }
}
@media (min-width: 600px) {
  .ContLisradiMain {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 600px) {
  .ContLisradiMain > div {
    padding: 0 1rem 1rem;
    width: 50%;
    border-bottom: 2px solid #404040;
  }
  .ContLisradiMain > div.explain-txt {
    padding-top: 2rem;
  }
}
.ContLisradiMain > div p {
  margin: 1rem 0;
}
.ContLisradiMain > div dl {
  padding-left: 1.5rem;
}
.ContLisradiMain > div dl dd {
  width: 10rem;
  margin-bottom: 1.5rem;
}

p.motto {
  color: #cb5151;
  font-weight: 700;
  padding: 1rem;
}

ul#corpInfo dt, ul#corpInfo dd {
  padding: 0.75rem;
  border: 1px solid linear-gradient(180deg, #EDFCFD 0%, #FAFAFA 100%);
}
ul#corpInfo dt {
  background: linear-gradient(180deg, #EDFCFD 0%, #FAFAFA 100%);
}
@media (min-width: 600px) {
  ul#corpInfo {
    width: 85%;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
  }
  ul#corpInfo dt {
    width: 25%;
  }
  ul#corpInfo dd {
    width: 75%;
  }
}

.gijiroku-cont {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 600px) {
  .contRecruit p {
    margin: 1rem auto;
    width: 85%;
  }
}

a.btn_29 {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 200px;
  margin: 1.5rem;
  padding: 1.5rem 1rem;
  position: relative;
  border-radius: 5px;
  border: 1px solid #27acd9;
  font-weight: bold;
  letter-spacing: 2px;
  background: transparent;
  color: #27acd9;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a.btn_29:hover {
  color: #fff;
  background: #27acd9;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

a.btn_29:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: light 0.5s 0s linear;
}

a.btn_29::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes light {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.button-058 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 250px;
  margin: 2.5em auto;
  padding: 0.9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #cb5151;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
}

.button-058:hover {
  background-color: #bc6666;
}

.button-058 span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1.75em;
  left: -2.5em;
  padding: 1em 1.5em;
  border-radius: 50%;
  background-color: #fff;
  color: #cb5151;
  font-size: 0.7em;
}

.button-058 span::after {
  position: absolute;
  bottom: 0.3em;
  right: 0;
  width: 1.5em;
  height: 1.5em;
  background-color: #fff;
  clip-path: polygon(40% 0, 100% 100%, 0% 90%);
  content: "";
}

.button-058-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 250px;
  margin: 2.5em auto;
  padding: 0.9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #9663d5;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
}

.button-058-1:hover {
  background-color: #8f6db9;
}/*# sourceMappingURL=style.css.map */