@charset "UTF-8";
/*
 vendor
-------------------------------------------------- */
/*
 foundation
-------------------------------------------------- */
/*
 * mixin用SCSS
 *
 */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fade-in-flex {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-flex {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: flex;
    opacity: 1;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /* 1 */
  margin: 0;
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 1 */
  color: inherit;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/********************************************
		Common
********************************************/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
pre {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

img {
  max-width: 100%;
  vertical-align: top;
}

html {
  font-size: 62.5%;
}

body,
html {
  width: 100%;
  height: 100%;
}

body {
  background-color: #ecedf0;
  color: #2a2b2e;
  font-family: Verdana, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

button,
input,
optgroup,
select,
textarea {
  color: #2a2b2e;
  font-family: inherit;
}

button,
input[type='button'],
input[type='submit'] {
  border: none;
}

iframe {
  vertical-align: top;
}

/*
 layout
-------------------------------------------------- */
.om-bodyInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.om-container {
  position: relative;
}
.om-container--huge {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.om-container--large {
  position: relative;
}
.om-container--middle {
  position: relative;
}
.om-container--single {
  position: relative;
}
.om-container--list {
  position: relative;
}
.om-container--detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.om-container--main {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.om-container--side {
  position: relative;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.om-spFooterMenuToggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  position: fixed;
  bottom: 8px;
  left: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 57px;
  height: 57px;
  padding: 4px 14px 10px;
  border-radius: 5px;
  background-color: #1460fb;
}

.om-spFooterMenuToggle.isActive .om-spFooterMenuToggle__label {
  display: none;
}

.om-spFooterMenuToggle__label {
  color: #fff;
  font-size: 13.28px;
  font-weight: bold;
}

.om-spFooterMenuToggle.isActive .om-spFooterMenuToggleHamburger {
  margin-top: 15px;
}

.om-spFooterMenuToggleHamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 6px;
}
.om-spFooterMenuToggleHamburger__item {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  content: '';
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.om-spFooterMenuToggleHamburger__item:not(:last-child) {
  margin-bottom: 6px;
}
.om-spFooterMenuToggleHamburger__item:nth-child(1) {
  -webkit-transform: translateY(0px) scale(1);
  transform: translateY(0px) scale(1);
}
.om-spFooterMenuToggleHamburger__item:nth-child(2) {
  position: relative;
  background: none;
}
.om-spFooterMenuToggleHamburger__item:nth-child(2):before,
.om-spFooterMenuToggleHamburger__item:nth-child(2):after {
  display: block;
  position: absolute;
  width: 32px;
  height: 2px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background: #fff;
  content: '';
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.om-spFooterMenuToggleHamburger__item:nth-child(3) {
  -webkit-transform: translateY(0px) scale(1);
  transform: translateY(0px) scale(1);
}
.om-spFooterMenuToggle.isActive
  .om-spFooterMenuToggleHamburger__item:nth-child(1) {
  -webkit-transform: translateY(0px) scale(0);
  transform: translateY(0px) scale(0);
}
.om-spFooterMenuToggle.isActive
  .om-spFooterMenuToggleHamburger__item:nth-child(2):before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.om-spFooterMenuToggle.isActive
  .om-spFooterMenuToggleHamburger__item:nth-child(2):after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.om-spFooterMenuToggle.isActive
  .om-spFooterMenuToggleHamburger__item:nth-child(3) {
  -webkit-transform: translateY(0px) scale(0);
  transform: translateY(0px) scale(0);
}

.om-spFooterMenuNotice {
  width: calc(100% - 57px - 6px - 6px);
  height: 57px;
  margin-left: 6px;
  padding: 13px 20px;
  background-color: #2a2b2e;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.9;
}
.om-spFooterMenuNotice__inner {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.om-spFooterMenuContents {
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  padding-bottom: 70px;
  overflow-y: scroll;
  background-color: #000000;
  color: #fff;
  font-size: 1.2rem;
}
.om-spFooterMenuContents::-webkit-scrollbar {
  display: none;
}

.om-spFooterMenuContents__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.om-spFooterMenuContentsSearch {
  padding: 10px 36px;
}
.om-spFooterMenuContentsSearch__inner {
  position: relative;
}
.om-spFooterMenuContentsSearch__inner::before,
.om-spFooterMenuContentsSearch__inner::after {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0px;
  width: 15px;
  height: 27px;
  border-radius: 100%;
  background-color: #3b3f4a;
  content: '';
}
.om-spFooterMenuContentsSearch__inner::before {
  left: -7px;
}
.om-spFooterMenuContentsSearch__inner::after {
  right: -7px;
}
.om-spFooterMenuContentsSearch__input {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 27px;
  border: none;
  background-color: #3b3f4a;
  background-image: url(/files/user/assets/images/icon/glass.svg?v=1583223482);
  background-position-x: 0px;
  background-position-y: 3px;
  background-repeat: no-repeat;
}

.om-spFooterMenuContentsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: solid 3px #0050ff;
}

.om-spFooterMenuContentsListItem {
  border-bottom: solid 1px #81899d;
}
.om-spFooterMenuContentsListItem.isActive {
  border-bottom: none;
}
.om-spFooterMenuContentsListItem.isActive
  .om-spFooterMenuContentsListItem__head {
  position: relative;
}
.om-spFooterMenuContentsListItem.isActive
  .om-spFooterMenuContentsListItem__head::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.om-spFooterMenuContentsListItem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 42px;
  font-weight: bold;
  cursor: pointer;
}
.om-spFooterMenuContentsListItem__head::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: '';
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.om-spFooterMenuContentsListItem.hasChild
  .om-spFooterMenuContentsListItem__head::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.om-spFooterMenuContentsListItem.hasChild.isActive
  .om-spFooterMenuContentsListItem__head::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.om-spFooterMenuContentsListItem__list {
  display: none;
}
.om-spFooterMenuContentsAbout .om-spFooterMenuContentsListItem__list {
  display: block;
}
.om-spFooterMenuContentsListItem__listItem {
  background-color: #3b3f4a;
}
.om-spFooterMenuContentsListItem__listItem:not(:last-child)
  .om-spFooterMenuContentsListItem__listItem__inner {
  border-bottom: 1px solid #81899d;
}
.om-spFooterMenuContentsListItem__listItem__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 42px;
  padding-left: 10px;
  font-weight: bold;
}
.om-spFooterMenuContentsListItem__listItem__inner::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: '';
}

.om-spFooterMenuContentsSnsLink {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 24px;
  font-size: 13.28px;
}

.om-spFooterMenuContentsSnsLink__head {
  margin: 16px 0;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.om-spFooterMenuContentsSnsLink__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 20px 0;
}

.om-spFooterMenuContentsSnsLink__link {
  position: relative;
  font-weight: bold;
}
.om-spFooterMenuContentsSnsLink__link::before {
  display: block;
  position: absolute;
  top: -1px;
  left: -25px;
  width: 21px;
  height: 21px;
  border-radius: 10px;
  background-color: #81899d;
  content: '';
}
.om-spFooterMenuContentsSnsLink__link::after {
  display: block;
  position: absolute;
  top: 9px;
  left: -20px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: '';
}

.om-spFooterMenuContentsSnsLink__item:not(:last-child) {
  margin-right: 20px;
}

.om-spFooterMenuContentsSnsLink__item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 200%;
  white-space: nowrap;
  content: '';
}
.om-spFooterMenuContentsSnsLink__item__inner.-twitter {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_twitter.png?v=1583223482);
}
.om-spFooterMenuContentsSnsLink__item__inner.-facebook {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_facebook.png?v=1583223482);
}
.om-spFooterMenuContentsSnsLink__item__inner.-youtube {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_youtube.png?v=1583223482);
}
.om-spFooterMenuContentsSnsLink__item__inner.-line {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_line.png?v=1583223482);
}

.om-spFooterMenuContentsAbout {
  padding: 20px 10px;
}

.om-pageTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background-color: #0050ff;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 1;
}
.om-pageTop::after {
  display: block;
  position: relative;
  top: 3px;
  right: -20px;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: '';
}

.om-footer {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 90px;
  background-color: #2a2b2e;
  color: #ecedf0;
}
.om-footer__section {
  padding-top: 38px;
}
.om-footer__section:not(:first-child) {
  border-top: 1px solid #3b3f4a;
}
.om-footerSocial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
}
.om-footerSocialAccountHeading {
  font-weight: bold;
  line-height: 1;
}
.om-footerSocialAccountList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.om-footerSocialAccountList__item:not(:last-child) {
  margin-right: 65px;
}
.om-footerSocialAccountList__item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.om-footerSocialAccountList__item__inner::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 46px;
  height: 46px;
  margin-right: 7px;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
}
.om-footerSocialAccountList__item__inner.-twitter::before {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_twitter.png?v=1583223482);
}
.om-footerSocialAccountList__item__inner.-facebook::before {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_facebook.png?v=1583223482);
}
.om-footerSocialAccountList__item__inner.-youtube::before {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_youtube.png?v=1583223482);
}
.om-footerSocialAccountList__item__inner.-line::before {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_line.png?v=1583223482);
}
.om-footerSocialLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  line-height: 1;
}
.om-footerSocialLink::after {
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: '';
}
.om-footerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.om-footerListBlock__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-self: center;
}
.om-footerListBlock__heading::before {
  display: block;
  width: 5px;
  height: 17px;
  margin-right: 8px;
  background-color: #0050ff;
  content: '';
}
.om-footerListBlock__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px 0 0 0;
}
.om-footerListBlock__description > ul > li:not(:last-child) {
  margin-bottom: 2px;
}
.-col1 .om-footerListBlock__description > ul {
  width: 100%;
}
.-col2 .om-footerListBlock__description > ul {
  width: 25%;
}
.-col3 .om-footerListBlock__description > ul {
  width: 33.333%;
}
.-col4 .om-footerListBlock__description > ul {
  width: 25%;
}
.om-footerGlobalLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}
.om-footerGlobalLink > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.om-footerGlobalLink > ul > li:not(:last-child) {
  margin-right: 50px;
}
.om-footerGlobalLink > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.om-footerGlobalLink > ul > li > a::before {
  display: block;
  position: relative;
  top: 3px;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: '';
}
.om-footerCopyright {
  width: 100%;
  font-size: 13.28px;
  text-align: center;
}
.om-footerCopyright a {
  text-decoration: underline;
}

.om-header {
  z-index: 1;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 2.5px 4.3px 8px 0 rgba(12, 1, 4, 0.06);
  box-shadow: 2.5px 4.3px 8px 0 rgba(12, 1, 4, 0.06);
  font-family: 'Helvetica Neue', '游ゴシック Medium', 'Yu Gothic Medium',
    'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Arial, メイリオ, Meiryo,
    sans-serif;
}

.om-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.om-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.om-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.om-headerLogo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.om-headerLogo__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.om-headerMenu {
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.om-headerMenu::-webkit-scrollbar {
  display: none;
}
.om-headerMenu__item {
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-weight: bold;
}
.om-headerMenu__item.-programLink {
  color: #0050ff;
}

.om-headerSubModule__item:not(:last-child) {
  margin-right: 9px;
}

.om-headerSubModuleButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #0050ff;
  color: #fff;
  font-weight: 600;
  font-weight: bold;
  line-height: 1;
}
.om-headerSubModuleButton.-search::after {
  display: block;
  position: relative;
  top: -1px;
  left: 3px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  background-image: url(/files/user/assets/images/icon/glass.svg?v=1583223482);
  background-repeat: no-repeat;
  content: '';
}

.tbs-gheader {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
  -ms-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
  -o-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
  font-family: 'Helvetica Neue', '游ゴシック Medium', 'Yu Gothic Medium',
    'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Arial, メイリオ, Meiryo,
    sans-serif;
  text-align: left;
}

.tbs-gheader a {
  text-decoration: none;
}

.tbs-gheader ul {
  margin: 0;
  padding: 0;
  line-height: 1;
  list-style-type: none;
}

.tbs-gheader .tbs-gh-logo,
.tbs-gheader .tbs-gh-btns {
  position: absolute;
}

.tbs-gheader .tbs-gh-logo a,
.tbs-gheader .tbs-gh-btns li a,
.tbs-gheader .tbs-gh-btns li a span {
  display: block;
}

.tbs-gheader .tbs-gh-btns li {
  float: left;
}

.tbs-gheader .tbs-gh-logo a {
  overflow: hidden;
  background-image: url(/files/user/assets/images/icon/gh_logo.svg?v=1585304718);
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: 110%;
  white-space: nowrap;
}
.tbs-gheader .tbs-gh-logo a:hover {
  opacity: 1;
}

.tbs-gheader .tbs-gh-btns li a {
  background-color: #0050ff;
}

.tbs-gheader .tbs-gh-outer {
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
  width: 100%;
  overflow-x: scroll;
}
.tbs-gheader .tbs-gh-outer::-webkit-scrollbar {
  display: none;
}

.tbs-gheader .tbs-gh-menu,
.tbs-gheader .tbs-gh-menu li,
.tbs-gheader .tbs-gh-menu li a {
  display: inline-block;
  white-space: nowrap;
}

.tbs-gheader .tbs-gh-menu {
  position: absolute;
  letter-spacing: -6.4px;
}

.tbs-gheader .tbs-gh-menu li {
  padding-right: 12px;
  padding-left: 12px;
  letter-spacing: normal;
  line-height: 1;
}

.tbs-gheader .tbs-gh-menu li a,
.tbs-gheader .tbs-gh-btns li a {
  font-weight: bold;
}

.tbs-gheader .tbs-gh-menu li a {
  -moz-font-feature-settings: 'palt';
  -webkit-font-feature-settings: 'palt';
  color: #3b3f4a;
  font-feature-settings: 'palt';
}

.tbs-gheader .tbs-gh-btns li a {
  color: #fff;
  text-align: center;
}

/*
 object
-------------------------------------------------- */
/* component --------------------------- */
.om-ad__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btnText_btn_1_Fsc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 8px;
  color: #2d2d2d;
  font-size: 14px;
  font-weight: bold;
}
.btnText_btn_1_Fsc::after {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 2px #0050ff;
  border-right: solid 2px #0050ff;
  content: '';
}

.om-sideArticleList__heading {
  font-weight: 600;
  line-height: 1;
}

.om-sideArticleList__inner::-webkit-scrollbar {
  display: none;
}

.om-sideArticleListItem:not(:last-child) {
  border-bottom: 1px solid #ecedf1;
}

.om-sideArticleListItem__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}

.om-sideArticleListItem__thumbnail {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.om-sideArticleListItem__thumbnail img {
  width: 100%;
}

.om-sideArticleListItem__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.om-sideArticleListItem__title {
  margin: 0;
}

.om-sideArticleListItem__date {
  margin: 3px 0 0 0;
}

.om-sideArticleListMoreLink__wrapper {
  padding-right: 10px;
}

.om-sideArticleListMoreLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 156px;
  height: 46px;
  margin: 30px auto 10px;
  border: solid 1px #0050ff;
  border-radius: 5px;
  background-color: #fff;
  color: #0050ff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.om-sideArticleListMoreLink:hover {
  background-color: #0050ff;
  color: #fff;
  opacity: 1;
}

.om-sideArticleListMoreLink__toggle {
  display: block;
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  content: '';
}
.om-sideArticleListMoreLink__toggle::before,
.om-sideArticleListMoreLink__toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #0050ff;
  content: '';
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.om-sideArticleListMoreLink:hover .om-sideArticleListMoreLink__toggle::before,
.om-sideArticleListMoreLink:hover .om-sideArticleListMoreLink__toggle::after {
  background-color: #fff;
  opacity: 1;
}
.om-sideArticleListMoreLink__toggle::before {
  width: 14px;
  height: 2px;
}
.om-sideArticleListMoreLink__toggle::after {
  width: 2px;
  height: 14px;
}

/* project ----------------------------- */
.om-notFound__section {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
}

.om-notFound__title {
  margin-bottom: 20px;
  color: #0050ff;
  font-weight: 700;
  line-height: 1;
}

.om-notFound__paragraph__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.om-notFound__paragraph__wrap .om-notFound__paragraph:not(:first-child) {
  margin-top: 10px;
}

.om-notFound__btnWrap {
  margin: 30px auto 10px;
}

.om-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border: solid 1px #0050ff;
  border-radius: 5px;
  background-color: #fff;
  color: #0050ff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.om-btn.-bold {
  font-weight: 700;
}
.om-btn:hover {
  background-color: #0050ff;
  color: #fff;
  opacity: 1;
}

.om-aboutApp {
  height: 100vh;
  background: #fff;
}

.about_wrapper_2yPMW {
  width: 100%;
  margin: 0 auto;
  background: #f0f7ff;
}

.about_inner_1fL4I {
  z-index: 1;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 80px 20px;
  border-radius: 3px;
  background: #fff;
}

.about_bgSp_3rh2f {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.about_bgPc_2udg0 {
  display: none;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.about_origin_FEwmu {
  -ms-flex-align: center;
  -webkit-box-align: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  color: #000000;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.about_originIcon_3Y1i7 {
  width: 19px;
  height: auto;
  margin-right: 7px;
}

.about_header_f5sEY {
  position: relative;
  width: 100%;
  margin: 0 auto 36px auto;
  padding-bottom: 36px;
}

.about_header_f5sEY:before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url('/files/user/images/common/dot_gray.png');
  background-size: 46px;
  content: '';
}

.about_headerLogo_1_M-K {
  width: 126px;
  margin: 0 auto 32px auto;
  line-height: 1;
  text-align: center;
}

.about_headerLogo_1_M-K img {
  width: 100%;
}

.about_headerTitle_3qAxl {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.about_headerTitleBr_3jR5v {
  display: block;
}

.about_headerBody_3HZWx {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.about_howToEnjoy_32Q92 {
  background: #fff;
}

.about_howToEnjoyHeader_3zrrE {
  margin-bottom: 20px;
}

.about_howToEnjoyTitle_1XXys {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.about_howToEnjoyKana_1-paL {
  margin-top: 14px;
  font-size: 10px;
  text-align: center;
}

.about_enjoyList_3KUcl {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 70px;
}

.about_enjoyListItem_20wY8 {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 32px;
}

.about_enjoyListItemImage_1uQn5 {
  width: 120px;
  height: auto;
}

.about_enjoyListItemBody_aB60b {
  width: 100%;
}

.about_enjoyListItemTitle_3iTeh {
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
}

.about_enjoyListItemRead_zJQ5c {
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
}

.about_btn_10G-1 {
  width: 210px;
  margin: 0 auto;
}

.about_modalContents_2qMHx {
  padding: 30px 18px 43px 18px;
  text-align: center;
}

.about_modalImage_3koax {
  width: 250px;
  height: auto;
  margin-bottom: 48px;
}

.about_modalBody_18mfX {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.about_headerLogo_1_M-K {
  line-height: 1;
  text-align: center;
}

.about_appDownload {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

.about_appDownload__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
  padding-left: 12px;
}

.about_appDownload__link {
  display: block;
}
.about_appDownload__link > img {
  width: auto;
  max-width: inherit;
  height: 100%;
}
.about_appDownload__link.-appstore {
  height: 46px;
}
.about_appDownload__link.-googleplay {
  height: 68px;
}

.om-articleDetail {
  -webkit-user-drag: none;
  background-color: #fff;
}
.om-articleDetail img {
  -webkit-user-drag: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.om-articleDetailMainImage img {
  width: 100%;
}
.om-articleDetailDate {
  display: block;
  color: #000;
  line-height: 1;
}
.om-articleDetailHeading {
  font-weight: 600;
}
.om-articleDetailCategory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.om-articleDetailCategoryItem:not(:last-child) {
  margin-right: 7px;
}
.om-articleDetailCategoryItem__inner {
  display: block;
  padding: 10px 25px 9px;
  border-radius: 25px;
  background-color: #ecedf0;
  font-weight: 600;
  line-height: 1;
}
.om-articleDetailProgram__title {
  font-weight: 600;
}
.om-articleDetailProgram__title > a {
  text-decoration: underline;
}
.om-articleDetailProgram__airTime {
  color: #81899c;
}
.om-articleDetailContents h2 {
  margin-bottom: 28px;
  padding-bottom: 7px;
  border-bottom: solid 3px #0050ff;
  font-weight: 600;
}
.om-articleDetailContents h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.om-articleDetailContents h3:before {
  display: block;
  padding-right: 16px;
  border-left: solid 3px #0050ff;
  content: '';
}
.om-articleDetailContents h4 {
  margin-bottom: 6px;
  color: #0050ff;
  font-weight: 600;
}
.om-articleDetailContents h5 {
  margin-bottom: 14px;
  font-weight: 600;
}
.om-articleDetailContents p {
  margin-bottom: 20px;
  letter-spacing: 0.9px;
  line-height: 2;
}
.om-articleDetailContents a {
  color: #0050ff;
}
.om-articleDetailContents figure {
  margin: 0 0 20px 0;
}
.om-articleDetailContents figure img {
  width: 100%;
  height: auto;
}
.om-articleDetailContents .youtube-embed-wrapper {
  margin-bottom: 15px;
}
.om-articleDetailContents .om-programDate {
  color: #81899c;
  line-height: 1.3;
}
.om-articleDetailContents .articleDetail_enclose_1UsEW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 25px;
  border: solid 1px #ecedf0;
}
.om-articleDetailContents .articleDetail_enclose_1UsEW p {
  margin-bottom: 0;
}
.om-articleDetailContents .articleDetail_enclose_1UsEW h4 {
  margin: 0;
  color: #2a2b2e;
}
.om-articleDetailContents .articleDetail_enclose_1UsEW.-bg {
  border: solid 2px #f6f7fa;
  background-color: #f6f7fa;
}
.om-articleDetailContents .articleDetail_enclose_1UsEW.-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.om-articleDetailContents .articleDetail_enclose_1UsEW p {
  margin-bottom: 0;
}
.om-articleDetailContents .om-buttonList {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 0;
}
.om-articleDetailContents .om-buttonList__item:not(:last-child) {
  margin-bottom: 20px;
}
.om-articleDetailContents .om-articleDetailContentsButton {
  display: block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 292px;
  min-height: 53px;
  border-radius: 53px;
  background-color: #0050ff;
  color: #fff;
  letter-spacing: 1.7px;
  text-align: center;
}
.om-articleDetailContents .om-articleDetailContentsButton > span {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.om-articleDetailContents .om-articleDetailContentsButton::after {
  display: block;
  position: absolute;
  right: 17px;
  width: 13px;
  height: 13px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  content: '';
}
.om-articleDetailProgram {
  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-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.om-articleDetailProgram:hover {
  opacity: 0.7;
}
.om-articleDetailProgram__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.om-articleDetailProgram__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.om-articleDetailProgram__icon {
  display: block;
  margin-right: 5px;
  overflow: hidden;
  border: 1px solid #cccccc;
  border-radius: 100px;
  background: #cccccc;
}
.om-articleDetailProgram__icon > img {
  width: 100%;
}
.om-articleDetailProgram__name {
  color: #7c7c7c;
}

.om-headingSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  line-height: 1;
}
.om-headingSection::before {
  display: block;
  width: 22px;
  height: 3px;
  margin-right: 14px;
  background-color: #0050ff;
  content: '';
}

.om-articleDetailTags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.om-articleDetailTagsItem {
  margin-bottom: 7px;
}
.om-articleDetailTagsItem:not(:last-child) {
  margin-right: 7px;
}
.om-articleDetailTagsItem__inner {
  display: block;
  padding: 10px 25px 9px;
  border-radius: 25px;
  background-color: #ecedf0;
  line-height: 1;
}
.om-articleDetailHeading + .om-articleDetailTags {
  margin-bottom: 0;
}

.om-articleDetailShareButton__wrapper {
  z-index: 1;
}

.om-articleDetailShareButton__item {
  display: block;
  width: 57px;
  height: 57px;
  border-radius: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 12px 20.8px 24px 0 rgba(12, 1, 4, 0.03);
  box-shadow: 12px 20.8px 24px 0 rgba(12, 1, 4, 0.03);
}
.om-articleDetailShareButton__item.-twitter {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_twitter.png?v=1583223482);
}
.om-articleDetailShareButton__item.-facebook {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_facebook.png?v=1583223482);
}
.om-articleDetailShareButton__item.-line {
  background-image: url(/files/user/assets/images/icon/social_icon_circle_line.png?v=1583223482);
}
.om-articleDetailShareButton__item__inner {
  display: block;
  overflow: hidden;
  text-indent: 9999px;
  white-space: nowrap;
}

.om-articleListTitle {
  font-weight: bold;
}

.om-articleCardList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.om-articleCardListItem__inner {
  background-color: #fff;
  -webkit-box-shadow: 12px 20.8px 24px 0 rgba(12, 1, 4, 0.03);
  box-shadow: 12px 20.8px 24px 0 rgba(12, 1, 4, 0.03);
}
.om-articleCardListItem__thumbnail {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.om-articleCardListItem__thumbnail img {
  width: 100%;
}
.om-articleCardListItem__date {
  display: block;
  color: #81899d;
  line-height: 1;
}
.om-articleCardListItemProgram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.om-articleCardListItemProgram__icon {
  display: block;
  margin-right: 5px;
  overflow: hidden;
  border: 1px solid #cccccc;
  border-radius: 100px;
  background: #cccccc;
}
.om-articleCardListItemProgram__icon > img {
  width: 100%;
}
.om-articleCardListItemProgram__name {
  color: #7c7c7c;
}

.om-continueBtn__wrapper {
  padding-right: 10px;
}

.om-continueBtn__wrapperList {
  margin-top: 56px;
}

.om-continueBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 156px;
  height: 46px;
  margin: 30px auto 10px;
  border: solid 1px #0050ff;
  border-radius: 5px;
  background-color: #fff;
  color: #0050ff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.om-continueBtn:hover {
  background-color: #0050ff;
  color: #fff;
  opacity: 1;
}

.om-continueBtn__toggle {
  display: block;
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  content: '';
}
.om-continueBtn__toggle::before,
.om-continueBtn__toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #0050ff;
  content: '';
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.om-continueBtn:hover .om-continueBtn__toggle::before,
.om-continueBtn:hover .om-continueBtn__toggle::after {
  background-color: #fff;
  opacity: 1;
}
.om-continueBtn__toggle::before {
  width: 14px;
  height: 2px;
}
.om-continueBtn__toggle::after {
  width: 2px;
  height: 14px;
}

.faq_wrapper_2ZQVm {
  width: 100%;
  margin: 0 auto;
}

.faq_inner_2kF5r {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

.faq_headerTitle_15hZd {
  margin-bottom: 30px;
  font-size: 18px;
}

.faq_contents_2wkdD {
  padding: 30px 12px 50px 12px;
}

.faq_contents_2wkdD a {
  color: #ff008c;
}

.faq_section_1PFbV {
  margin-bottom: 60px;
}

.faq_section_1PFbV:last-child {
  margin-bottom: 0;
}

.faq_sectionTitle_3Uvg8 {
  -o-border-image: url('/files/user/images/common/border_large.png') 0 0 10
    repeat repeat;
  padding-bottom: 10px;
  border-width: 0px 0px 5px;
  border-style: solid;
  border-image: url('/files/user/images/common/border_large.png') 0 0 10 repeat
    repeat;
  font-size: 14px;
  font-weight: 600;
}

.faq_sectionList_2mQEL {
  -o-border-image: url(/files/user/images/common/border.png?v=1533027307) 0 0 10 repeat
    repeat;
  border-width: 0 0 1px;
  border-style: solid;
  border-image: url(/files/user/images/common/border.png?v=1533027307) 0 0 10 repeat repeat;
}

.faq_sectionListTitle_gCPPc {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: relative;
  padding: 25px 25px 25px 0;
  font-size: 14px;
  line-height: 1.7;
  cursor: pointer;
  user-select: none;
}

.faq_sectionListTitle_gCPPc::before {
  display: inline-block;
  top: 2px;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-image: url('/files/user/images/common/rectangle.png');
  content: ' ';
}

.faq_sectionListTitle_gCPPc::after {
  -webkit-transform: translate(0%, -50%);
  display: block;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 16px;
  height: 16px;
  transform: translate(0%, -50%);
  background: url('/files/user/images/icon/cross.png');
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.faq_sectionListTitle_gCPPc.active::after {
  -webkit-transform: translate(0%, -50%);
  display: block;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 16px;
  height: 2.3px;
  transform: translate(0%, -50%);
  border-radius: 3px;
  background: #ff008c;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.faq_sectionListBody_Os7GN {
  display: none;
  width: 100%;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.loginContents {
  height: 100vh;
  background-color: #fff;
}

.loginContents_contents_1X5iL {
  padding: 20px;
}

.loginContents_header_3Klcx {
  margin-bottom: 20px;
}

.loginContents_headerTitle_WIqAD {
  font-size: 18px;
  font-weight: bold;
}

.loginContents_caption_3JAyY {
  margin-top: 33px;
  font-size: 12px;
}

.loginContents_caption_3JAyY a {
  display: inline-block;
  color: #ff008c;
}

.loginContents_btn_2FDWF {
  -ms-flex-align: center;
  -webkit-box-align: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.loginContents_btn_2FDWF:last-child {
  margin-bottom: 0;
}

.loginContents_btn_2FDWF.isLine {
  background: #00b900;
}

.loginContents_btn_2FDWF.isLine:after {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 2px;
  width: 38px;
  height: 38px;
  transform: translate(0, -50%);
  background: url('/files/user/images/icon/LINE_SOCIAL_Circle_typeA.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.loginContents_btn_2FDWF.isTwitter {
  background: #00aced;
}

.loginContents_btn_2FDWF.isTwitter:after {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 38px;
  height: 38px;
  transform: translate(0, -50%);
  background: url('/files/user/images/icon/twitter_circle.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.loginContents_btn_2FDWF.isFacebook {
  background: #1877f2;
}

.loginContents_btn_2FDWF.isFacebook:after {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  width: 24px;
  height: 24px;
  transform: translate(0, -50%);
  background: url('/files/user/images/icon/fb_circle_white.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.loginContents_btn_2FDWF.isGoogle {
  border: 1px solid #cccccc;
  background: #fff;
  color: #2d2d2d;
  font-weight: bold;
}

.loginContents_btn_2FDWF.isGoogle:after {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 18px;
  height: 18px;
  transform: translate(0, -50%);
  background: url('/files/user/images/icon/google_circle.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.loginContents_btn_2FDWF.isYahoo {
  border: 1px solid #cccccc;
  background: #fff;
  color: #2d2d2d;
  font-weight: bold;
}

.loginContents_btn_2FDWF.isYahoo:after {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  width: 28px;
  height: 15px;
  transform: translate(0, -50%);
  background: url('/files/user/images/icon/ymark_r_13_2x.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.privacy_wrapper_1BXJq {
  width: 100%;
  margin: 0 auto;
}

.privacy_inner_1u3o7 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

.privacy_headerTitle_1RXJH {
  margin-bottom: 40px;
  font-size: 18px;
}

.privacy_contents_1-M7F {
  padding: 30px 12px 50px 12px;
}

.privacy_contents_1-M7F p {
  font-size: 14px;
  line-height: 1.7;
}

.privacy_section_3HUuh {
  margin-bottom: 30px;
}

.privacy_section_3HUuh:last-child {
  margin-bottom: 0;
}

.privacy_sectionTitle_Pb9bv {
  -o-border-image: url('/files/user/images/common/border_large.png') 0 0 10
    repeat repeat;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-width: 0px 0px 5px;
  border-style: solid;
  border-image: url('/files/user/images/common/border_large.png') 0 0 10 repeat
    repeat;
  font-size: 14px;
  font-weight: 600;
}

.privacy_sectionList_1uJew {
  margin-bottom: 40px;
}

.privacy_sectionList_1uJew:last-child {
  margin-bottom: 0;
}

.privacy_sectionListTitle_2sk1d {
  margin-bottom: 10px;
  font-size: 14px;
}

.privacy_sectionListTitle_2sk1d::before {
  display: inline-block;
  top: 2px;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-image: url('/files/user/images/common/rectangle.png');
  content: ' ';
}

.privacy_sectionList_1uJew li {
  font-size: 14px;
  line-height: 1.7;
}

.privacy_sectionList_1uJew dl {
  margin-bottom: 1.5em;
}

.privacy_sectionList_1uJew dd {
  margin: 0.5em 1.5em 0.5em;
  padding: 0;
}

.privacy_sectionList_1uJew li {
  margin-bottom: 0.7em;
}

.om-programDetailHeader {
  background-color: #fff;
}

.om-programDetailHeader img {
  -webkit-user-drag: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.om-programDetailHeader__body {
  width: 100%;
}

.om-programDetailHeaderMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.om-programDetailHeaderMeta__icon {
  width: 68px;
  height: 68px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.om-programDetailHeaderMeta__body {
  margin-left: 15px;
}

.om-programDetailHeaderMeta__time {
  color: #7c7c7c;
}

.om-programDetailHeader__summary {
  line-height: 1.69;
}

.om-programDetailLinkBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #0050ff;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}
.om-programDetailLinkBtn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.terms_wrapper_3B7au {
  width: 100%;
  margin: 0 auto;
}

.terms_inner_2xgaV {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

.terms_headerTitle_1h8BK {
  margin-bottom: 40px;
  font-size: 18px;
}

.terms_contents_MSUjC {
  padding: 30px 12px 50px 12px;
}

.terms_contents_MSUjC p {
  font-size: 14px;
  line-height: 1.7;
}

.terms_section_2Ftzf {
  margin-bottom: 30px;
}

.terms_section_2Ftzf:last-child {
  margin-bottom: 0;
}

.terms_sectionTitle_2gWwp {
  -o-border-image: url('/files/user/images/common/border_large.png') 0 0 10
    repeat repeat;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-width: 0px 0px 5px;
  border-style: solid;
  border-image: url('/files/user/images/common/border_large.png') 0 0 10 repeat
    repeat;
  font-size: 14px;
  font-weight: 600;
}

.terms_sectionList_1V2pt {
  margin-bottom: 40px;
}

.terms_sectionList_1V2pt:last-child {
  margin-bottom: 0;
}

.terms_sectionListTitle_1MWLQ {
  margin-bottom: 10px;
  font-size: 14px;
}

.terms_sectionListTitle_1MWLQ::before {
  display: inline-block;
  top: 2px;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-image: url('/files/user/images/common/rectangle.png');
  content: ' ';
}

.omBtnText_widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* utility ----------------------------- */

.u-bg-white {
  background-color: #fff;
}

.u-pre-wrap {
  white-space: pre-wrap;
}

@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
    font-size: 1.8rem;
  }
  .om-container--huge {
    min-width: 1360px;
  }
  .om-container--large {
    width: 1360px;
    margin: 0 auto;
  }
  .om-container--middle {
    width: 1140px;
    margin: 0 auto;
  }
  .om-container--single {
    width: 1080px;
    margin: 0 auto;
  }
  .om-container--list {
    width: 1080px;
    margin: 30px auto 0;
  }
  .om-container--detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1080px;
    margin: 30px auto 0;
  }
  .om-container--main {
    width: 700px;
  }
  .om-container--side {
    width: 340px;
    margin-left: 40px;
  }
  .om-spFooterMenuToggle {
    display: none;
  }
  .om-spFooterMenuContents {
    display: none !important;
  }
  .om-pageTop {
    font-size: 1.4rem;
  }
  .om-pageTop {
    height: 48px;
  }
  .om-footer {
    font-size: 1.5rem;
  }
  .om-footer__inner {
    width: 1040px;
  }
  .om-footerListBlock {
    width: 25%;
    margin-bottom: 40px;
  }
  .om-footerListBlock.-col1 {
    width: 25%;
  }
  .om-footerListBlock.-col2 {
    width: 50%;
  }
  .om-footerListBlock.-col3 {
    width: 75%;
  }
  .om-footerListBlock.-col4 {
    width: 100%;
  }
  .om-footerCopyright {
    padding: 40px 0;
    background-color: #000;
  }
  .om-header {
    width: 100%;
    height: 67px;
  }
  .om-header__inner {
    height: 100%;
    margin: 0 auto;
  }
  .om-header__left {
    position: relative;
    left: 30px;
  }
  .om-header__right {
    position: absolute;
    top: 50%;
    right: 0;
    padding-right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
  }
  .om-headerLogo__inner {
    width: 64px;
  }
  .om-headerMenu {
    -webkit-overflow-scrolling: touch;
    width: calc(100vw - 367px);
    margin-left: 17px;
    overflow-x: scroll;
  }
  .om-headerMenu__item {
    font-size: 14px;
    white-space: nowrap;
  }
  .om-headerMenu__item.-programLink {
    display: none;
  }
  .om-headerMenu__item:not(:last-child) {
    margin-right: 25px;
  }
  .om-headerSubModule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .om-headerSubModuleButton {
    font-size: 1.5rem;
  }
  .om-headerSubModuleButton {
    width: 95px;
    height: 35px;
  }
  .tbs-gheader .tbs-gh-outer {
    -webkit-overflow-scrolling: touch;
  }
  .om-adContents--top {
    margin: 30px 0;
  }
  .om-adContents--bottom {
    margin: 50px 0 0;
  }
  .om-adContents--side {
    margin: 40px 0 0;
  }
  .om-sideArticleList {
    position: -webkit-sticky;
    position: sticky;
    top: 1em;
    width: 340px;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 12px 20.8px 24px 0 #0c010408;
    box-shadow: 12px 20.8px 24px 0 #0c010408;
  }
  .om-sideArticleList.isStickyTop {
    position: fixed;
    top: 1em;
  }
  .om-sideArticleList__heading {
    font-size: 2rem;
  }
  .om-sideArticleList__body {
    margin-top: 25px;
  }
  .om-sideArticleListItem:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .om-sideArticleListItem__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .om-sideArticleListItem__thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 120px;
    min-height: 76px;
    margin-right: 10px;
  }
  .om-sideArticleListItem__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .om-sideArticleListItem__title {
    font-size: 1.3rem;
  }
  .om-sideArticleListItem__date {
    font-size: 1.1rem;
  }
  .om-sideArticleListItem__date {
    color: #0050ff;
  }
  .om-notFound__section {
    width: 900px;
  }
  .om-notFound__title {
    font-size: 4.8rem;
  }
  .om-notFound__title {
    font-size: 48px;
  }
  .om-notFound__paragraph {
    font-size: 1.6rem;
  }
  .om-notFound__paragraph__wrap.-center {
    text-align: center;
  }
  .om-notFound__btnWrap {
    min-width: 300px;
  }
  .om-articleDetail {
    -webkit-box-shadow: 12px 20.8px 24px 0 rgba(12, 1, 4, 0.03);
    box-shadow: 12px 20.8px 24px 0 rgba(12, 1, 4, 0.03);
  }
  .om-articleDetail__inner {
    padding: 30px 40px;
  }
  .om-articleDetailDate {
    font-size: 1.2rem;
  }
  .om-articleDetailHeading {
    font-size: 2.7rem;
  }
  .om-articleDetailHeading {
    margin-top: 10px;
  }
  .om-articleDetailCategory {
    margin-top: 20px;
  }
  .om-articleDetailCategoryItem__inner {
    font-size: 1.45rem;
  }
  .om-articleDetailProgram__title {
    font-size: 1.6rem;
  }
  .om-articleDetailProgram__title {
    margin: 40px 0 0 0;
  }
  .om-articleDetailProgram__airTime {
    font-size: 1.4rem;
  }
  .om-articleDetailReturnList a {
    font-size: 2.2rem;
  }
  .om-articleDetailTags__item {
    font-size: 1.45rem;
  }
  .om-articleDetailContents {
    margin-top: 30px;
  }
  .om-articleDetailContents h2 {
    font-size: 2.4rem;
  }
  .om-articleDetailContents h3 {
    font-size: 2.2rem;
  }
  .om-articleDetailContents h4 {
    font-size: 2rem;
  }
  .om-articleDetailContents h5 {
    font-size: 1.8rem;
  }
  .om-articleDetailContents p {
    font-size: 1.8rem;
  }
  .om-articleDetailContents .om-programDate {
    font-size: 1.6rem;
  }
  .om-articleDetailContents .om-articleDetailContentsButton {
    font-size: 1.7rem;
  }
  .om-articleDetailProgram {
    margin-top: 6px;
  }
  .om-articleDetailProgram__icon {
    width: 30px;
    height: 30px;
  }
  .om-articleDetailProgram__name {
    font-size: 1.4rem;
  }
  .om-headingSection {
    font-size: 2.2rem;
  }
  .om-articleDetailTags {
    margin: 30px 0 23px;
  }
  .om-articleDetailTagsItem__inner {
    font-size: 1.45rem;
  }
  .om-articleDetailShareButton {
    z-index: 9998;
    position: fixed;
    top: 180px;
    left: 22px;
  }
  .om-articleDetailShareButton__item:not(:last-child) {
    margin-bottom: 9px;
  }
  .om-articleListTitle {
    font-size: 1.8rem;
  }
  .om-articleListTitle {
    margin-bottom: 20px;
  }
  .om-articleCardList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -20px;
  }
  .om-articleCardListItem {
    width: 33.333%;
    padding: 15px 20px 20px 20px;
  }
  .om-articleCardListItem__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  .om-articleCardListItem__thumbnail {
    padding-bottom: 56.3%;
  }
  .om-articleCardListItem__body {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
  }
  .om-articleCardListItem__date {
    font-size: 1.2rem;
  }
  .om-articleCardListItem__title {
    font-size: 1.5rem;
  }
  .om-articleCardListItem__title {
    margin-top: 8px;
  }
  .om-articleCardListItemProgram {
    margin-top: 8px;
  }
  .om-articleCardListItemProgram__icon {
    width: 24px;
    height: 24px;
  }
  .om-articleCardListItemProgram__name {
    font-size: 1.2rem;
  }
  .om-programDetailHeader {
    margin-bottom: 50px;
  }
  .om-programDetailHeader__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1080px;
    margin: 0 auto;
    padding: 30px 0;
  }
  .om-programDetailHeader__thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    height: 240px;
  }
  .om-programDetailHeader__thumbnail img {
    height: 100%;
  }
  .om-programDetailHeader__body {
    margin-left: 40px;
  }
  .om-programDetailHeaderMeta__body {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(100% - 83px);
  }
  .om-programDetailHeaderMeta__title {
    font-size: 2.4rem;
  }
  .om-programDetailHeaderMeta__title {
    margin-top: 5px;
  }
  .om-programDetailHeaderMeta__time {
    font-size: 1.6rem;
  }
  .om-programDetailHeader__summary {
    font-size: 1.6rem;
  }
  .om-programDetailHeader__summary {
    margin-top: 25px;
  }
  .om-programDetailLinkBtn {
    padding: 9px 32px 8px;
  }
  .om-programDetailLinkBtn {
    font-size: 1.5rem;
  }
  .om-programDetailLinkBtn__wrapper {
    margin-top: 20px;
  }
  .is-pc {
    display: block !important;
  }
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
    font-size: 1.6rem;
  }
  .om-container--large {
    width: 100%;
  }
  .om-container--middle {
    width: 100%;
  }
  .om-container--single {
    width: 100%;
  }
  .om-container--list {
    width: 100%;
    margin: 10px auto;
  }
  .om-container--detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .om-container--main {
    width: 100%;
  }
  .om-container--side {
    width: 100%;
  }
  body.showSpMenu {
    overflow: hidden;
  }
  .om-spFooterMenuContents {
    display: none;
  }
  .om-spFooterMenuContents.isActive {
    display: block;
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .om-pageTop {
    font-size: 1.4rem;
  }
  .om-pageTop {
    height: 31px;
  }
  .om-footer {
    font-size: 1.5rem;
  }
  .om-footer__inner {
    width: 100%;
  }
  .om-footer__section:not(.-copyright):not(.-grouplink) {
    display: none;
  }
  .om-footerCopyright {
    padding: 20px 20px 80px;
    background-color: #ecedf0;
    color: #81899d;
  }
  .om-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    overflow: hidden;
  }
  .om-headerLogo {
    margin-left: 10px;
  }
  .om-headerLogo__inner {
    width: 46px;
  }
  .om-headerMenu {
    -webkit-overflow-scrolling: touch;
    width: calc(100vw - 165px);
    margin-left: 86px;
    overflow-x: scroll;
    white-space: nowrap;
  }
  .om-headerMenu__item {
    font-size: 13.28px;
  }
  .om-headerMenu__item:not(:last-child) {
    margin-right: 24px;
  }
  .om-headerSubModuleButton {
    font-size: 1.5rem;
  }
  .om-headerSubModuleButton {
    min-width: 54px;
    min-height: 22px;
  }
  .om-headerSubModuleButton.-program {
    position: absolute;
    top: 50%;
    left: 70px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 3px;
    font-size: 13.28px;
  }
  .om-headerSubModuleButton.-search {
    display: none;
  }
  .tbs-gheader .tbs-gh-outer {
    -webkit-overflow-scrolling: touch;
  }
  .om-adContents--top {
    margin: 20px 0;
  }
  .om-adContents--bottom {
    margin: 50px 0 0;
  }
  .om-sideArticleList {
    margin-top: 30px;
  }
  .om-sideArticleList__heading {
    font-size: 2.2rem;
  }
  .om-sideArticleList__heading {
    margin-left: 13px;
  }
  .om-sideArticleList__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
  .om-sideArticleList__inner {
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: scroll;
  }
  .om-sideArticleListItem:not(:last-child) {
    margin-right: 10px;
  }
  .om-sideArticleListItem__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 43.75vw;
    height: 100%;
  }
  .om-sideArticleListItem__thumbnail {
    padding-bottom: 56.3%;
  }
  .om-sideArticleListItem__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 10px;
  }
  .om-sideArticleListItem__title {
    font-size: 1.5rem;
  }
  .om-sideArticleListItem__title {
    font-weight: 600;
  }
  .om-sideArticleListItem__date {
    font-size: 1.2rem;
  }
  .om-sideArticleListItem__date {
    color: #81899d;
  }
  .om-sideArticleListMoreLink {
    margin-left: 20px;
  }
  .om-notFound__section {
    padding: 40px 20px 0;
  }
  .om-notFound__title {
    font-size: 4.8rem;
  }
  .om-notFound__title {
    font-size: 6vw;
  }
  .om-notFound__paragraph {
    font-size: 1.6rem;
  }
  .om-notFound__btnWrap {
    width: 270px;
  }
  .om-articleDetail__inner {
    padding: 23px 26px;
  }
  .om-articleDetailDate {
    font-size: 1.2rem;
  }
  .om-articleDetailHeading {
    font-size: 2.5rem;
  }
  .om-articleDetailHeading {
    margin-top: 5px;
  }
  .om-articleDetailCategory {
    margin-top: 10px;
    margin-bottom: -7px;
  }
  .om-articleDetailCategoryItem:not(:last-child) {
    margin-bottom: 7px;
  }
  .om-articleDetailCategoryItem__inner {
    font-size: 1.3rem;
  }
  .om-articleDetailProgram__title {
    font-size: 1.6rem;
  }
  .om-articleDetailProgram__title {
    margin: 30px 0 0 0;
  }
  .om-articleDetailProgram__airTime {
    font-size: 1.4rem;
  }
  .om-articleDetailProgram__airTime {
    margin: 4px 0 0 0;
  }
  .om-articleDetailReturnList a {
    font-size: 2rem;
  }
  .om-articleDetailTags__item {
    font-size: 1.3rem;
  }
  .om-articleDetailContents {
    margin-top: 20px;
  }
  .om-articleDetailContents h2 {
    font-size: 2.2rem;
  }
  .om-articleDetailContents h3 {
    font-size: 2rem;
  }
  .om-articleDetailContents h4 {
    font-size: 1.9rem;
  }
  .om-articleDetailContents h5 {
    font-size: 1.8rem;
  }
  .om-articleDetailContents p {
    font-size: 1.6rem;
  }
  .om-articleDetailContents .om-programDate {
    font-size: 1.2rem;
  }
  .om-articleDetailContents .articleDetail_enclose_1UsEW {
    padding: 12px;
    font-size: 14px;
  }
  .om-articleDetailContents .om-articleDetailContentsButton {
    font-size: 1.7rem;
  }
  .om-articleDetailProgram {
    margin-top: 6px;
  }
  .om-articleDetailProgram__icon {
    width: 24px;
    height: 24px;
  }
  .om-articleDetailProgram__name {
    font-size: 1.4rem;
  }
  .om-headingSection {
    font-size: 2.2rem;
  }
  .om-articleDetailTags {
    margin: 30px 0 23px;
  }
  .om-articleDetailTagsItem__inner {
    font-size: 1.3rem;
  }
  .om-articleDetailShareButton__wrapper {
    position: fixed;
    right: 6px;
    bottom: 8px;
  }
  .om-articleDetailShareButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .om-articleDetailShareButton__item:not(:last-child) {
    margin-right: 13px;
  }
  .om-articleListTitle {
    font-size: 1.2rem;
  }
  .om-articleListTitle {
    margin-bottom: 10px;
    margin-left: 10px;
  }
  .om-articleCardList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px;
  }
  .om-articleCardListItem {
    width: 100%;
  }
  .om-articleCardListItem:not(:last-child) {
    margin-bottom: 10px;
  }
  .om-articleCardListItem__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 10px;
  }
  .om-articleCardListItem__thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 140px;
    height: 78px;
  }
  .om-articleCardListItem__body {
    padding: 0 0 0 10px;
  }
  .om-articleCardListItem__date {
    font-size: 1.1rem;
  }
  .om-articleCardListItem__title {
    font-size: 1.2rem;
  }
  .om-articleCardListItem__title {
    margin-top: 6px;
  }
  .om-articleCardListItemProgram {
    margin-top: 6px;
  }
  .om-articleCardListItemProgram__icon {
    width: 20px;
    height: 20px;
  }
  .om-articleCardListItemProgram__name {
    font-size: 1rem;
  }
  .om-continueBtn__wrapper .om-continueBtn {
    margin: 30px auto 10px;
    margin-left: 20px;
  }
  .om-programDetailHeader {
    margin-bottom: 30px;
  }
  .om-programDetailHeader__thumbnail {
    width: 100%;
  }
  .om-programDetailHeader__thumbnail img {
    width: 100%;
  }
  .om-programDetailHeader__body {
    padding: 10px;
  }
  .om-programDetailHeaderMeta__title {
    font-size: 1.8rem;
  }
  .om-programDetailHeaderMeta__title {
    margin-top: 10px;
    line-height: 1.3;
  }
  .om-programDetailHeaderMeta__time {
    font-size: 1.2rem;
  }
  .om-programDetailHeader__summary {
    font-size: 1.4rem;
  }
  .om-programDetailHeader__summary {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .om-programDetailLinkBtn {
    padding: 9px 20px 8px;
  }
  .om-programDetailLinkBtn {
    font-size: 1.4rem;
  }
  .om-programDetailLinkBtn__wrapper {
    margin: 20px;
  }
  .omBtnText_widget {
    padding-right: 5px;
  }
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block !important;
  }
}

@media all and (max-width: 767px) {
  .tbs-gf-search form:after {
    display: block;
    clear: both;
    content: '';
  }
  .tbs-gf-search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tbs-gf-search form input,
  .tbs-gf-search form button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    font-size: 100%;
  }
  .tbs-gf-search form input {
    -webkit-box-sizing: content-box;
    -o-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
    width: 82%;
    height: 24px;
    padding: 4px 4px 4px 8px;
    float: left;
    border-radius: 8px 0 0 8px;
    background-color: #fff;
    font-size: 16px;
    line-height: 24px;
  }
  .tbs-gf-search form input:focus {
    outline: 0;
  }
  .tbs-gf-search form button {
    width: 40px;
    height: 32px;
    float: left;
    overflow: hidden;
    border-radius: 0 8px 8px 0;
    background-color: #0050ff;
    background-image: url(/files/user/assets/images/icon/gh_icon_search.svg?v=1585304718);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    text-indent: 110%;
    white-space: nowrap;
    cursor: pointer;
  }
  .tbs-gheader {
    height: 50px;
    padding: 14px 0 14px 130px;
  }
  .tbs-gheader .tbs-gh-logo {
    top: 12px;
  }
  .tbs-gheader .tbs-gh-btns {
    top: 14px;
  }
  .tbs-gheader .tbs-gh-logo {
    left: 10px;
  }
  .tbs-gheader .tbs-gh-btns {
    left: 70px;
  }
  .tbs-gheader .tbs-gh-logo a {
    width: 46px;
    height: 26px;
    background-size: 46px 26px;
  }
  .tbs-gheader .tbs-gh-btns li.tbs-gh-search {
    display: none;
  }
  .tbs-gheader .tbs-gh-outer {
    height: 22px;
  }
  .tbs-gheader .tbs-gh-menu li a,
  .tbs-gheader .tbs-gh-btns li a {
    height: 22px;
    font-size: 83%;
    line-height: 22px;
  }
  .tbs-gheader .tbs-gh-btns li a {
    width: 54px;
    border-radius: 3px;
  }
}

@media all and (min-width: 768px) {
  .tbs-gheader {
    height: 68px;
    padding: 16px 244px 16px 100px;
  }
  .tbs-gheader .tbs-gh-btns li:first-child {
    margin-right: 12px;
  }
  .tbs-gheader .tbs-gh-btns li.tbs-gh-search {
    position: relative;
  }
  .tbs-gheader .tbs-gh-btns li.tbs-gh-search a:after {
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 17px;
    width: 20px;
    height: 20px;
    background-image: url(/files/user/assets/images/icon/gh_icon_search.svg?v=1585304718);
    background-repeat: no-repeat;
    content: '';
  }
  .tbs-gheader .tbs-gh-btns li.tbs-gh-search span {
    text-indent: -23px;
  }
  .tbs-gheader .tbs-gh-logo,
  .tbs-gheader .tbs-gh-btns {
    top: 16px;
  }
  .tbs-gheader .tbs-gh-logo {
    left: 30px;
  }
  .tbs-gheader .tbs-gh-btns {
    right: 30px;
  }
  .tbs-gheader .tbs-gh-logo a {
    width: 64px;
    height: 36px;
  }
  .tbs-gheader .tbs-gh-outer {
    height: 36px;
  }
  .tbs-gheader .tbs-gh-menu li a,
  .tbs-gheader .tbs-gh-btns li a {
    height: 36px;
    font-size: 14px;
    line-height: 36px;
  }
  .tbs-gheader .tbs-gh-btns li a {
    width: 95px;
    border-radius: 6px;
  }
}

@media only screen and (max-width: 765px) {
  .btnText_btn_1_Fsc {
    font-size: 12px;
  }
}

@media only screen and (min-width: 766px) {
  .about_wrapper_2yPMW {
    padding: 46px 0 80px 0;
  }
  .about_inner_1fL4I {
    width: 1100px;
    padding: 60px 60px 80px 60px;
  }
  .about_bgSp_3rh2f {
    display: none;
  }
  .about_bgPc_2udg0 {
    display: block;
  }
  .about_origin_FEwmu {
    margin-top: 20px;
    font-size: 14px;
  }
  .about_header_f5sEY {
    width: 720px;
    margin: 0 auto 57px auto;
    padding-bottom: 40px;
  }
  .about_headerLogo_1_M-K {
    width: 216px;
    margin: 0 auto 42px auto;
  }
  .about_headerTitle_3qAxl {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .about_headerTitleBr_3jR5v {
    display: inline-block;
  }
  .about_headerBody_3HZWx {
    font-size: 18px;
  }
  .about_howToEnjoyHeader_3zrrE {
    margin-bottom: 36px;
  }
  .about_howToEnjoyTitle_1XXys {
    font-size: 28px;
  }
  .about_howToEnjoyKana_1-paL {
    margin-top: 11px;
    font-size: 18px;
  }
  .about_enjoyList_3KUcl {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin-bottom: 43px;
  }
  .about_enjoyListItem_20wY8 {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 295px;
    margin-bottom: 0;
  }
  .about_enjoyListItemImage_1uQn5 {
    width: 295px;
    height: 295px;
    margin-bottom: 20px;
  }
  .about_enjoyListItemTitle_3iTeh {
    margin-bottom: 17px;
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
  }
  .about_enjoyListItemRead_zJQ5c {
    width: 90%;
    font-size: 16px;
    text-align: center;
  }
  .about_btn_10G-1 {
    width: 485px;
  }
  .about_modalContents_2qMHx {
    padding: 50px 30px 30px 30px;
  }
  .about_modalImage_3koax {
    width: 221px;
    margin: 0 auto 28px auto;
  }
  .about_modalBody_18mfX {
    font-size: 16px;
  }
  .faq_inner_2kF5r {
    max-width: 1100px;
    padding: 58px 190px 80px 190px;
  }
  .faq_headerTitle_15hZd {
    margin-bottom: 40px;
    font-size: 24px;
  }
  .faq_contents_2wkdD {
    padding: 0px 30px 0 30px;
  }
  .faq_section_1PFbV {
    margin-bottom: 56px;
  }
  .faq_sectionTitle_3Uvg8 {
    font-size: 20px;
  }
  .faq_sectionListTitle_gCPPc {
    padding: 30px 0;
    font-size: 16px;
  }
  .faq_sectionListTitle_gCPPc::before {
    width: 15px;
    height: 15px;
  }
  .faq_sectionListTitle_gCPPc::after {
    width: 17px;
    height: 17px;
  }
  .faq_sectionListTitle_gCPPc.active::after {
    width: 17px;
    height: 2.5px;
  }
  .faq_sectionListBody_Os7GN {
    padding-bottom: 25px;
    font-size: 16px;
  }
  .privacy_inner_1u3o7 {
    max-width: 1100px;
    padding: 58px 190px 128px 180px;
  }
  .privacy_headerTitle_1RXJH {
    font-size: 24px;
  }
  .privacy_contents_1-M7F {
    padding: 0px 30px 0 30px;
  }
  .privacy_contents_1-M7F p {
    font-size: 16px;
  }
  .privacy_section_3HUuh {
    margin-bottom: 50px;
  }
  .privacy_sectionTitle_Pb9bv {
    font-size: 20px;
  }
  .privacy_sectionListTitle_2sk1d {
    font-size: 16px;
  }
  .privacy_sectionListTitle_2sk1d::before {
    width: 15px;
    height: 15px;
  }
  .privacy_sectionList_1uJew li {
    font-size: 16px;
  }
  .terms_inner_2xgaV {
    max-width: 1100px;
    padding: 58px 190px 128px 180px;
  }
  .terms_headerTitle_1h8BK {
    font-size: 24px;
  }
  .terms_contents_MSUjC {
    padding: 0px 30px 0 30px;
  }
  .terms_contents_MSUjC p {
    font-size: 16px;
  }
  .terms_section_2Ftzf {
    margin-bottom: 50px;
  }
  .terms_sectionTitle_2gWwp {
    font-size: 20px;
  }
  .terms_sectionListTitle_1MWLQ {
    font-size: 16px;
  }
  .terms_sectionListTitle_1MWLQ::before {
    width: 15px;
    height: 15px;
  }
}

@media screen and (min-width: 766px) {
  .about_headerLogo_1_M-K {
    width: 280px;
    margin: 0 auto 30px auto;
  }
  .about_appDownload > p {
    font-size: 16px;
  }
  .about_appDownload__link:not(:last-child) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 765px) {
  .about_headerLogo_1_M-K {
    width: 250px;
    margin: 0 auto 20px auto;
  }
  .about_appDownload > p {
    font-size: 14px;
  }
}

@media print {
  .om-bodyInner {
    width: 1280px;
  }
  body:not(.isPreview) .om-articleDetailMainImage img,
  body:not(.isPreview) .om-articleDetailContents img {
    display: none;
  }
  body:not(.isPreview) .om-sideArticleListItem__thumbnail,
  body:not(.isPreview) .om-articleCardListItem__thumbnail {
    background-color: #ddd;
    background-image: none !important;
  }
  body:not(.isPreview) .om-programDetailHeader__thumbnail {
    width: 530px;
    background-color: #ddd;
  }
  body:not(.isPreview) .om-programDetailHeader__thumbnail img {
    display: none;
  }
}

/* フロントソース反映確認後に削除 */

.om-sideArtidleList__heading {
  font-weight: 600;
  line-height: 1;
}

.om-sideArtidleList__inner::-webkit-scrollbar {
  display: none;
}

.om-sideArtidleListItem:not(:last-child) {
  border-bottom: 1px solid #ecedf1;
}

.om-sideArtidleListItem__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}

.om-sideArtidleListItem__thumbnail {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.om-sideArtidleListItem__thumbnail img {
  width: 100%;
}

.om-sideArtidleListItem__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.om-sideArtidleListItem__title {
  margin: 0;
}

.om-sideArtidleListItem__date {
  margin: 3px 0 0 0;
}

.om-sideArtidleListMoreLink__wrapper {
  padding-right: 10px;
}

.om-sideArtidleListMoreLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 156px;
  height: 46px;
  margin: 30px auto 10px;
  border: solid 1px #0050ff;
  border-radius: 5px;
  background-color: #fff;
  color: #0050ff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.om-sideArtidleListMoreLink:hover {
  background-color: #0050ff;
  color: #fff;
  opacity: 1;
}

.om-sideArtidleListMoreLink__toggle {
  display: block;
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  content: '';
}
.om-sideArtidleListMoreLink__toggle::before,
.om-sideArtidleListMoreLink__toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #0050ff;
  content: '';
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.om-sideArtidleListMoreLink:hover .om-sideArtidleListMoreLink__toggle::before,
.om-sideArtidleListMoreLink:hover .om-sideArtidleListMoreLink__toggle::after {
  background-color: #fff;
  opacity: 1;
}
.om-sideArtidleListMoreLink__toggle::before {
  width: 14px;
  height: 2px;
}
.om-sideArtidleListMoreLink__toggle::after {
  width: 2px;
  height: 14px;
}

@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
    font-size: 1.8rem;
  }
  .om-container--huge {
    min-width: 1360px;
  }
  .om-container--large {
    width: 1360px;
    margin: 0 auto;
  }
  .om-container--middle {
    width: 1140px;
    margin: 0 auto;
  }
  .om-container--single {
    width: 1080px;
    margin: 0 auto;
  }
  .om-container--list {
    width: 1080px;
    margin: 30px auto 0;
  }
  .om-container--detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1080px;
    margin: 30px auto 0;
  }
  .om-container--main {
    width: 700px;
  }
  .om-container--side {
    width: 340px;
    margin-left: 40px;
  }
  .om-spFooterMenuToggle {
    display: none;
  }
  .om-spFooterMenuContents {
    display: none !important;
  }
  .om-pageTop {
    font-size: 1.4rem;
  }
  .om-pageTop {
    height: 48px;
  }
  .om-footer {
    font-size: 1.5rem;
  }
  .om-footer__inner {
    width: 1040px;
  }
  .om-footerListBlock {
    width: 25%;
    margin-bottom: 40px;
  }
  .om-footerListBlock.-col1 {
    width: 25%;
  }
  .om-footerListBlock.-col2 {
    width: 50%;
  }
  .om-footerListBlock.-col3 {
    width: 75%;
  }
  .om-footerListBlock.-col4 {
    width: 100%;
  }
  .om-footerCopyright {
    padding: 40px 0;
    background-color: #000;
  }
  .om-header {
    width: 100%;
    height: 67px;
  }
  .om-header__inner {
    height: 100%;
    margin: 0 auto;
  }
  .om-header__left {
    position: relative;
    left: 30px;
  }
  .om-header__right {
    position: absolute;
    top: 50%;
    right: 0;
    padding-right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
  }
  .om-headerLogo__inner {
    width: 64px;
  }
  .om-headerMenu {
    -webkit-overflow-scrolling: touch;
    width: calc(100vw - 367px);
    margin-left: 17px;
    overflow-x: scroll;
  }
  .om-headerMenu__item {
    font-size: 14px;
    white-space: nowrap;
  }
  .om-headerMenu__item.-programLink {
    display: none;
  }
  .om-headerMenu__item:not(:last-child) {
    margin-right: 25px;
  }
  .om-headerSubModule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .om-headerSubModuleButton {
    font-size: 1.5rem;
  }
  .om-headerSubModuleButton {
    width: 95px;
    height: 35px;
  }
  .tbs-gheader .tbs-gh-outer {
    -webkit-overflow-scrolling: touch;
  }
  .om-sideArtidleList {
    top: 1em;
    width: 340px;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 12px 20.8px 24px 0 #0c010408;
    box-shadow: 12px 20.8px 24px 0 #0c010408;
  }
  .om-sideArtidleList.isStickyTop {
    position: fixed;
    top: 1em;
  }
  .om-sideArtidleList__heading {
    font-size: 2rem;
  }
  .om-sideArtidleList__body {
    margin-top: 25px;
  }
  .om-sideArtidleListItem:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .om-sideArtidleListItem__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .om-sideArtidleListItem__thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 120px;
    min-height: 76px;
    margin-right: 10px;
  }
  .om-sideArtidleListItem__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .om-sideArtidleListItem__title {
    font-size: 1.3rem;
  }
  .om-sideArtidleListItem__date {
    font-size: 1.1rem;
  }
  .om-sideArtidleListItem__date {
    color: #0050ff;
  }
  .om-notFound__section {
    width: 900px;
  }
  .om-notFound__title {
    font-size: 4.8rem;
  }
  .om-notFound__title {
    font-size: 48px;
  }
  .om-notFound__paragraph {
    font-size: 1.6rem;
  }
  .om-notFound__paragraph__wrap.-center {
    text-align: center;
  }
  .om-notFound__btnWrap {
    min-width: 300px;
  }
  .om-articleDetail {
    -webkit-box-shadow: 12px 20.8px 24px 0 rgba(12, 1, 4, 0.03);
    box-shadow: 12px 20.8px 24px 0 rgba(12, 1, 4, 0.03);
  }
  .om-articleDetail__inner {
    padding: 30px 40px;
  }
  .om-articleDetailDate {
    font-size: 1.2rem;
  }
  .om-articleDetailHeading {
    font-size: 2.7rem;
  }
  .om-articleDetailHeading {
    margin-top: 10px;
  }
  .om-articleDetailCategory {
    margin-top: 20px;
  }
  .om-articleDetailCategoryItem__inner {
    font-size: 1.45rem;
  }
  .om-articleDetailProgram__title {
    font-size: 1.6rem;
  }
  .om-articleDetailProgram__title {
    margin: 40px 0 0 0;
  }
  .om-articleDetailProgram__airTime {
    font-size: 1.4rem;
  }
  .om-articleDetailReturnList a {
    font-size: 2.2rem;
  }
  .om-articleDetailTags__item {
    font-size: 1.45rem;
  }
  .om-articleDetailContents {
    margin-top: 30px;
  }
  .om-articleDetailContents h2 {
    font-size: 2.4rem;
  }
  .om-articleDetailContents h3 {
    font-size: 2.2rem;
  }
  .om-articleDetailContents h4 {
    font-size: 2rem;
  }
  .om-articleDetailContents h5 {
    font-size: 1.8rem;
  }
  .om-articleDetailContents p {
    font-size: 1.8rem;
  }
  .om-articleDetailContents .om-programDate {
    font-size: 1.6rem;
  }
  .om-articleDetailContents .om-articleDetailContentsButton {
    font-size: 1.7rem;
  }
  .om-articleDetailProgram {
    margin-top: 6px;
  }
  .om-articleDetailProgram__icon {
    width: 30px;
    height: 30px;
  }
  .om-articleDetailProgram__name {
    font-size: 1.4rem;
  }
  .om-headingSection {
    font-size: 2.2rem;
  }
  .om-articleDetailTags {
    margin: 30px 0 23px;
  }
  .om-articleDetailTagsItem__inner {
    font-size: 1.45rem;
  }
  .om-articleDetailShareButton {
    z-index: 9998;
    position: fixed;
    top: 180px;
    left: 22px;
  }
  .om-articleDetailShareButton__item:not(:last-child) {
    margin-bottom: 9px;
  }
  .om-articleListTitle {
    font-size: 1.8rem;
  }
  .om-articleListTitle {
    margin-bottom: 20px;
  }
  .om-articleCardList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -20px;
  }
  .om-articleCardListItem {
    width: 33.333%;
    padding: 15px 20px 20px 20px;
  }
  .om-articleCardListItem__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  .om-articleCardListItem__thumbnail {
    padding-bottom: 56.3%;
  }
  .om-articleCardListItem__body {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
  }
  .om-articleCardListItem__date {
    font-size: 1.2rem;
  }
  .om-articleCardListItem__title {
    font-size: 1.5rem;
  }
  .om-articleCardListItem__title {
    margin-top: 8px;
  }
  .om-articleCardListItemProgram {
    margin-top: 8px;
  }
  .om-articleCardListItemProgram__icon {
    width: 24px;
    height: 24px;
  }
  .om-articleCardListItemProgram__name {
    font-size: 1.2rem;
  }
  .om-programDetailHeader {
    margin-bottom: 50px;
  }
  .om-programDetailHeader__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1080px;
    margin: 0 auto;
    padding: 30px 0;
  }
  .om-programDetailHeader__thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    height: 240px;
  }
  .om-programDetailHeader__thumbnail img {
    height: 100%;
  }
  .om-programDetailHeader__body {
    margin-left: 40px;
  }
  .om-programDetailHeaderMeta__body {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(100% - 83px);
  }
  .om-programDetailHeaderMeta__title {
    font-size: 2.4rem;
  }
  .om-programDetailHeaderMeta__title {
    margin-top: 5px;
  }
  .om-programDetailHeaderMeta__time {
    font-size: 1.6rem;
  }
  .om-programDetailHeader__summary {
    font-size: 1.6rem;
  }
  .om-programDetailHeader__summary {
    margin-top: 25px;
  }
  .om-programDetailLinkBtn {
    padding: 9px 32px 8px;
  }
  .om-programDetailLinkBtn {
    font-size: 1.5rem;
  }
  .om-programDetailLinkBtn__wrapper {
    margin-top: 20px;
  }
  .is-pc {
    display: block !important;
  }
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
    font-size: 1.6rem;
  }
  .om-container--large {
    width: 100%;
  }
  .om-container--middle {
    width: 100%;
  }
  .om-container--single {
    width: 100%;
  }
  .om-container--list {
    width: 100%;
    margin: 10px auto;
  }
  .om-container--detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .om-container--main {
    width: 100%;
  }
  .om-container--side {
    width: 100%;
  }
  body.showSpMenu {
    overflow: hidden;
  }
  .om-spFooterMenuContents {
    display: none;
  }
  .om-spFooterMenuContents.isActive {
    display: block;
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .om-pageTop {
    font-size: 1.4rem;
  }
  .om-pageTop {
    height: 31px;
  }
  .om-footer {
    font-size: 1.5rem;
  }
  .om-footer__inner {
    width: 100%;
  }
  .om-footer__section:not(.-copyright):not(.-grouplink) {
    display: none;
  }
  .om-footerCopyright {
    padding: 20px 20px 80px;
    background-color: #ecedf0;
    color: #81899d;
  }
  .om-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    overflow: hidden;
  }
  .om-headerLogo {
    margin-left: 10px;
  }
  .om-headerLogo__inner {
    width: 46px;
  }
  .om-headerMenu {
    -webkit-overflow-scrolling: touch;
    width: calc(100vw - 165px);
    margin-left: 86px;
    overflow-x: scroll;
    white-space: nowrap;
  }
  .om-headerMenu__item {
    font-size: 13.28px;
  }
  .om-headerMenu__item:not(:last-child) {
    margin-right: 24px;
  }
  .om-headerSubModuleButton {
    font-size: 1.5rem;
  }
  .om-headerSubModuleButton {
    min-width: 54px;
    min-height: 22px;
  }
  .om-headerSubModuleButton.-program {
    position: absolute;
    top: 50%;
    left: 70px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 3px;
    font-size: 13.28px;
  }
  .om-headerSubModuleButton.-search {
    display: none;
  }
  .tbs-gheader .tbs-gh-outer {
    -webkit-overflow-scrolling: touch;
  }
  .om-sideArtidleList {
    margin-top: 30px;
  }
  .om-sideArtidleList__heading {
    font-size: 2.2rem;
  }
  .om-sideArtidleList__heading {
    margin-left: 13px;
  }
  .om-sideArtidleList__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
  .om-sideArtidleList__inner {
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: scroll;
  }
  .om-sideArtidleListItem:not(:last-child) {
    margin-right: 10px;
  }
  .om-sideArtidleListItem__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 43.75vw;
    height: 100%;
  }
  .om-sideArtidleListItem__thumbnail {
    padding-bottom: 56.3%;
  }
  .om-sideArtidleListItem__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 10px;
  }
  .om-sideArtidleListItem__title {
    font-size: 1.5rem;
  }
  .om-sideArtidleListItem__title {
    font-weight: 600;
  }
  .om-sideArtidleListItem__date {
    font-size: 1.2rem;
  }
  .om-sideArtidleListItem__date {
    color: #81899d;
  }
  .om-sideArtidleListMoreLink {
    margin-left: 20px;
  }
  .om-notFound__section {
    padding: 40px 20px 0;
  }
  .om-notFound__title {
    font-size: 4.8rem;
  }
  .om-notFound__title {
    font-size: 6vw;
  }
  .om-notFound__paragraph {
    font-size: 1.6rem;
  }
  .om-notFound__btnWrap {
    width: 270px;
  }
  .om-articleDetail__inner {
    padding: 23px 26px;
  }
  .om-articleDetailDate {
    font-size: 1.2rem;
  }
  .om-articleDetailHeading {
    font-size: 2.5rem;
  }
  .om-articleDetailHeading {
    margin-top: 5px;
  }
  .om-articleDetailCategory {
    margin-top: 10px;
    margin-bottom: -7px;
  }
  .om-articleDetailCategoryItem:not(:last-child) {
    margin-bottom: 7px;
  }
  .om-articleDetailCategoryItem__inner {
    font-size: 1.3rem;
  }
  .om-articleDetailProgram__title {
    font-size: 1.6rem;
  }
  .om-articleDetailProgram__title {
    margin: 30px 0 0 0;
  }
  .om-articleDetailProgram__airTime {
    font-size: 1.4rem;
  }
  .om-articleDetailProgram__airTime {
    margin: 4px 0 0 0;
  }
  .om-articleDetailReturnList a {
    font-size: 2rem;
  }
  .om-articleDetailTags__item {
    font-size: 1.3rem;
  }
  .om-articleDetailContents {
    margin-top: 20px;
  }
  .om-articleDetailContents h2 {
    font-size: 2.2rem;
  }
  .om-articleDetailContents h3 {
    font-size: 2rem;
  }
  .om-articleDetailContents h4 {
    font-size: 1.9rem;
  }
  .om-articleDetailContents h5 {
    font-size: 1.8rem;
  }
  .om-articleDetailContents p {
    font-size: 1.6rem;
  }
  .om-articleDetailContents .om-programDate {
    font-size: 1.2rem;
  }
  .om-articleDetailContents .articleDetail_enclose_1UsEW {
    padding: 12px;
    font-size: 14px;
  }
  .om-articleDetailContents .om-articleDetailContentsButton {
    font-size: 1.7rem;
  }
  .om-articleDetailProgram {
    margin-top: 6px;
  }
  .om-articleDetailProgram__icon {
    width: 24px;
    height: 24px;
  }
  .om-articleDetailProgram__name {
    font-size: 1.4rem;
  }
  .om-headingSection {
    font-size: 2.2rem;
  }
  .om-articleDetailTags {
    margin: 30px 0 23px;
  }
  .om-articleDetailTagsItem__inner {
    font-size: 1.3rem;
  }
  .om-articleDetailShareButton__wrapper {
    position: fixed;
    right: 6px;
    bottom: 8px;
  }
  .om-articleDetailShareButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .om-articleDetailShareButton__item:not(:last-child) {
    margin-right: 13px;
  }
  .om-articleListTitle {
    font-size: 1.2rem;
  }
  .om-articleListTitle {
    margin-bottom: 10px;
    margin-left: 10px;
  }
  .om-articleCardList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px;
  }
  .om-articleCardListItem {
    width: 100%;
  }
  .om-articleCardListItem:not(:last-child) {
    margin-bottom: 10px;
  }
  .om-articleCardListItem__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 10px;
  }
  .om-articleCardListItem__thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 140px;
    height: 78px;
  }
  .om-articleCardListItem__body {
    padding: 0 0 0 10px;
  }
  .om-articleCardListItem__date {
    font-size: 1.1rem;
  }
  .om-articleCardListItem__title {
    font-size: 1.2rem;
  }
  .om-articleCardListItem__title {
    margin-top: 6px;
  }
  .om-articleCardListItemProgram {
    margin-top: 6px;
  }
  .om-articleCardListItemProgram__icon {
    width: 20px;
    height: 20px;
  }
  .om-articleCardListItemProgram__name {
    font-size: 1rem;
  }
  .om-continueBtn__wrapper .om-continueBtn {
    margin: 30px auto 10px;
    margin-left: 20px;
  }
  .om-programDetailHeader {
    margin-bottom: 30px;
  }
  .om-programDetailHeader__thumbnail {
    width: 100%;
  }
  .om-programDetailHeader__thumbnail img {
    width: 100%;
  }
  .om-programDetailHeader__body {
    padding: 10px;
  }
  .om-programDetailHeaderMeta__title {
    font-size: 1.8rem;
  }
  .om-programDetailHeaderMeta__title {
    margin-top: 10px;
    line-height: 1.3;
  }
  .om-programDetailHeaderMeta__time {
    font-size: 1.2rem;
  }
  .om-programDetailHeader__summary {
    font-size: 1.4rem;
  }
  .om-programDetailHeader__summary {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .om-programDetailLinkBtn {
    padding: 9px 20px 8px;
  }
  .om-programDetailLinkBtn {
    font-size: 1.4rem;
  }
  .om-programDetailLinkBtn__wrapper {
    margin: 20px;
  }
  .omBtnText_widget {
    padding-right: 5px;
  }
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block !important;
  }
}

@media print {
  .om-bodyInner {
    width: 1280px;
  }
  body:not(.isPreview) .om-articleDetailMainImage img,
  body:not(.isPreview) .om-articleDetailContents img {
    display: none;
  }
  body:not(.isPreview) .om-sideArtidleListItem__thumbnail,
  body:not(.isPreview) .om-articleCardListItem__thumbnail {
    background-color: #ddd;
    background-image: none !important;
  }
  body:not(.isPreview) .om-programDetailHeader__thumbnail {
    width: 530px;
    background-color: #ddd;
  }
  body:not(.isPreview) .om-programDetailHeader__thumbnail img {
    display: none;
  }
}