@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
.animation {
  -moz-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  -ms-transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}

.animation:hover {
  background-color: #F00;
}

.animset {
  -webkit-animation: anim 1.5s ease-in-out infinite alternate;
  -o-animation: anim 1.5s ease-in-out infinite alternate;
  -ms-animation: anim 1.5s ease-in-out infinite alternate;
  -moz-animation: anim 1.5s ease-in-out infinite alternate;
  animation: anim 1.5s ease-in-out infinite alternate;
}

@-moz-keyframes anim {
  0% {
    -moz-transform: rotate(-130deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}

@-webkit-keyframes anim {
  0% {
    -webkit-transform: rotate(-130deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes anim {
  0% {
    transform: rotate(-130deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/*! normalize.css v7.0.0 | 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
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  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
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * 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 {
  border-style: none;
  padding: 0;
}

/**
 * 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 {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  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 and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[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 IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic");
  font-weight: 300;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic");
  font-weight: 500;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic");
  font-weight: bold;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans Japanese", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
}

body {
  background-color: #fff362;
  background-size: 100% auto;
}

img {
  width: 100%;
}

p {
  line-height: 1.576;
}

.for-screen-reader,
.sp-only-ib,
.sp-only {
  display: none;
}

.sp2-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-only-ib {
    display: inline-block;
  }
}

@media screen and (max-width: 640px) {
  .pc2-only {
    display: none;
  }
  .sp2-only {
    display: block;
  }
}

.linear-gradient {
  background-image: -owg-linear-gradient(#fff 0, #000 100%);
  background-image: -webkit-linear-gradient(#fff 0, #000 100%);
  background-image: -moz-linear-gradient(#fff 0, #000 100%);
  background-image: -o-linear-gradient(#fff 0, #000 100%);
  background-image: linear-gradient(#fff 0, #000 100%);
}

.compo-wrap-resposive-iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.compo-wrap-resposive-iframe iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.fixed-width {
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
}

.row {
  position: relative;
  width: 100%;
  height: 100%;
}

.col {
  zoom: 1;
}

.col:after {
  content: '';
  display: block;
  clear: both;
  overflow: hidden;
}

.col .box {
  float: left;
  height: 100%;
}

.col .last {
  float: right;
}

.col.col--2 .box {
  width: 49%;
}

.col.col--2 .box:nth-child(2n) {
  float: right;
}

.col.col--3 .box {
  margin-right: 2%;
  width: 32%;
  height: 100%;
}

.col.col--3 .box:nth-child(3n) {
  float: right;
  margin-right: 0;
}

.flex {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex.flex--col-2 .flex__item {
  width: 48%;
}

/************************************************

 Single property

************************************************/
#container .set-nowrap {
  white-space: nowrap;
}

#container .set-pos-rel {
  position: relative;
}

#container .set-pos-abs {
  position: absolute;
}

#container .set-hide {
  display: none;
}

#container .set-disp-cell {
  display: table-cell;
}

#container .set-disp-ib {
  display: inline-block;
}

#container .set-valign-m {
  vertical-align: middle;
}

#container .set-float-l {
  float: left;
}

#container .set-float-r {
  float: right;
}

#container .set-valign-m {
  vertical-align: middle;
}

#container .set-align-c {
  text-align: center;
}

#container .set-align-r {
  text-align: right;
}

#container .set-align-l {
  text-align: left;
}

#container .set-fs-11 {
  font-size: 1.1rem;
}

#container .set-fs-12 {
  font-size: 1.2rem;
}

#container .set-fs-13 {
  font-size: 1.3rem;
}

#container .set-fs-14 {
  font-size: 1.4rem;
}

#container .set-fs-15 {
  font-size: 1.5rem;
}

#container .set-fs-16 {
  font-size: 1.6rem;
}

#container .set-fs-17 {
  font-size: 1.7rem;
}

#container .set-fs-18 {
  font-size: 1.8rem;
}

#container .set-fs-19 {
  font-size: 1.9rem;
}

#container .set-fs-20 {
  font-size: 2.0rem;
}

#container .set-fs-21 {
  font-size: 2.1rem;
}

#container .set-fs-22 {
  font-size: 2.2rem;
}

#container .set-fs-23 {
  font-size: 2.3rem;
}

#container .set-fs-24 {
  font-size: 2.4rem;
}

#container .set-w-full {
  width: 100%;
}

#container .set-w-half,
#container .set-w-50 {
  width: 50%;
}

#container .set-w-10 {
  width: 10%;
}

#container .set-w-20 {
  width: 20%;
}

#container .set-w-30 {
  width: 30%;
}

#container .set-w-40 {
  width: 40%;
}

#container .set-w-60 {
  width: 60%;
}

#container .set-w-70 {
  width: 70%;
}

#container .set-w-80 {
  width: 80%;
}

#container .set-w-90 {
  width: 90%;
}

#container .set-w-100px {
  width: 100px;
}

#container .set-w-200px {
  width: 200px;
}

#container .set-w-250px {
  width: 250px;
}

#container .set-w-300px {
  width: 300px;
}

#container .set-w-350px {
  width: 350px;
}

#container .set-w-400px {
  width: 400px;
}

#container .set-mt-5 {
  margin-top: 5px;
}

#container .set-mt-10 {
  margin-top: 10px;
}

#container .set-mt-20 {
  margin-top: 20px;
}

#container .set-mt-30 {
  margin-top: 30px;
}

#container .set-mt-40 {
  margin-top: 40px;
}

#container .set-mt-50 {
  margin-top: 50px;
}

#container .set-mt-60 {
  margin-top: 60px;
}

#container .set-mt-70 {
  margin-top: 70px;
}

#container .set-mt-80 {
  margin-top: 80px;
}

#container .set-mt-90 {
  margin-top: 90px;
}

#container .set-mt-100 {
  margin-top: 100px;
}

#container .set-mr-5 {
  margin-right: 5px;
}

#container .set-mr-10 {
  margin-right: 10px;
}

#container .set-mr-20 {
  margin-right: 20px;
}

#container .set-mr-30 {
  margin-right: 30px;
}

#container .set-mr-40 {
  margin-right: 40px;
}

#container .set-mr-50 {
  margin-right: 50px;
}

#container .set-mr-60 {
  margin-right: 60px;
}

#container .set-mr-70 {
  margin-right: 70px;
}

#container .set-mr-80 {
  margin-right: 80px;
}

#container .set-mr-90 {
  margin-right: 90px;
}

#container .set-mr-100 {
  margin-right: 100px;
}

#container .set-mb-5 {
  margin-bottom: 5px;
}

#container .set-mb-10 {
  margin-bottom: 10px;
}

#container .set-mb-15 {
  margin-bottom: 15px;
}

#container .set-mb-20 {
  margin-bottom: 20px;
}

#container .set-mb-30 {
  margin-bottom: 30px;
}

#container .set-mb-40 {
  margin-bottom: 40px;
}

#container .set-mb-50 {
  margin-bottom: 50px;
}

#container .set-mb-60 {
  margin-bottom: 60px;
}

#container .set-mb-70 {
  margin-bottom: 70px;
}

#container .set-mb-80 {
  margin-bottom: 80px;
}

#container .set-mb-90 {
  margin-bottom: 90px;
}

#container .set-mb-100 {
  margin-bottom: 100px;
}

#container .set-ml-5 {
  margin-left: 5px;
}

#container .set-ml-10 {
  margin-left: 10px;
}

#container .set-ml-20 {
  margin-left: 20px;
}

#container .set-ml-30 {
  margin-left: 30px;
}

#container .set-ml-40 {
  margin-left: 40px;
}

#container .set-ml-50 {
  margin-left: 50px;
}

#container .set-ml-60 {
  margin-left: 60px;
}

#container .set-ml-70 {
  margin-left: 70px;
}

#container .set-ml-80 {
  margin-left: 80px;
}

#container .set-ml-90 {
  margin-left: 90px;
}

#container .set-ml-100 {
  margin-left: 100px;
}

#container .set-pt-5 {
  padding-top: 5px;
}

#container .set-pt-10 {
  padding-top: 10px;
}

#container .set-pt-20 {
  padding-top: 20px;
}

#container .set-pt-30 {
  padding-top: 30px;
}

#container .set-pt-40 {
  padding-top: 40px;
}

#container .set-pt-50 {
  padding-top: 50px;
}

#container .set-pt-60 {
  padding-top: 60px;
}

#container .set-pt-70 {
  padding-top: 70px;
}

#container .set-pt-80 {
  padding-top: 80px;
}

#container .set-pt-90 {
  padding-top: 90px;
}

#container .set-pt-100 {
  padding-top: 100px;
}

#container .set-pr-5 {
  padding-right: 5px;
}

#container .set-pr-10 {
  padding-right: 10px;
}

#container .set-pr-20 {
  padding-right: 20px;
}

#container .set-pr-30 {
  padding-right: 30px;
}

#container .set-pr-40 {
  padding-right: 40px;
}

#container .set-pr-50 {
  padding-right: 50px;
}

#container .set-pr-60 {
  padding-right: 60px;
}

#container .set-pr-70 {
  padding-right: 70px;
}

#container .set-pr-80 {
  padding-right: 80px;
}

#container .set-pr-90 {
  padding-right: 90px;
}

#container .set-pr-100 {
  padding-right: 100px;
}

#container .set-pb-5 {
  padding-bottom: 5px;
}

#container .set-pb-10 {
  padding-bottom: 10px;
}

#container .set-pb-20 {
  padding-bottom: 20px;
}

#container .set-pb-30 {
  padding-bottom: 30px;
}

#container .set-pb-40 {
  padding-bottom: 40px;
}

#container .set-pb-50 {
  padding-bottom: 50px;
}

#container .set-pb-60 {
  padding-bottom: 60px;
}

#container .set-pb-70 {
  padding-bottom: 70px;
}

#container .set-pb-80 {
  padding-bottom: 80px;
}

#container .set-pb-90 {
  padding-bottom: 90px;
}

#container .set-pb-100 {
  padding-bottom: 100px;
}

#container .set-pl-5 {
  padding-left: 5px;
}

#container .set-pl-10 {
  padding-left: 10px;
}

#container .set-pl-20 {
  padding-left: 20px;
}

#container .set-pl-30 {
  padding-left: 30px;
}

#container .set-pl-40 {
  padding-left: 40px;
}

#container .set-pl-50 {
  padding-left: 50px;
}

#container .set-pl-60 {
  padding-left: 60px;
}

#container .set-pl-70 {
  padding-left: 70px;
}

#container .set-pl-80 {
  padding-left: 80px;
}

#container .set-pl-90 {
  padding-left: 90px;
}

#container .set-pl-100 {
  padding-left: 100px;
}

#container .reset-mt {
  margin-top: 0;
}

#container .reset-mr {
  margin-right: 0;
}

#container .reset-mb {
  margin-bottom: 0;
}

#container .reset-ml {
  margin-left: 0;
}

#container .reset-max-w {
  max-width: none;
}

@media screen and (max-width: 767px) {
  #container .reset-sp-mt {
    margin-top: 0;
  }
  #container .reset-sp-mr {
    margin-right: 0;
  }
  #container .reset-sp-mb {
    margin-bottom: 0;
  }
  #container .reset-sp-ml {
    margin-left: 0;
  }
  #container .reset-sp-pt {
    padding-top: 0;
  }
  #container .reset-sp-pr {
    padding-right: 0;
  }
  #container .reset-sp-pb {
    padding-bottom: 0;
  }
  #container .reset-sp-ml {
    padding-left: 0;
  }
  #container .reset-sp-w {
    width: auto;
  }
  #container .reset-sp-pos {
    position: static;
  }
}

/*
*	content
*
*/
#container {
  overflow: hidden;
}

.top-area {
  
}

.site-header .logo-area {
  position: relative;
  width: 100%;
}

.site-header .logo-area .logo-area-inner {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  margin-top: 28px;
  width: 15.3%;
}

.site-header .logo-area p {
  margin: 0 8% 0 0;
  padding: 0;
}

.site-header .logo-area .logo-ofm30th {
  width: 35.33%;
}

.site-header .logo-area .logo-frachiki {
  width: 56%;
}

.site-header .title-area {
  position: relative;
  z-index: 3;
  padding-top: 100px;
}

.site-header .title-area .title {
  position: relative;
  margin: 0;
  margin-left: 45.33%;
  width: 51%;
  z-index: 3;
}

.site-header .title-area .cloud {
  position: absolute;
  bottom: 0;
  left: 3.67%;
  width: 20.4%;
  z-index: 3;
}

.site-header .title-area .senpai {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0.1;
  z-index: 0;
  width: 67.75%;
}

.site-header .title-area .senpai img {
  display: block;
}

.site-header .title-area .steam {
  position: absolute;
  top: 0;
  left: -8.36%;
  opacity: 0.1;
  z-index: 0;
  width: 67.75%;
}





/* ADD twitter */

.hero {
  padding-bottom: 10px;
  position: relative;
}

.hero .hide {
  background-color: transparent;
  width: 100vw;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.ageru {
  text-align: center;
  max-width: 1229px;
}

.ageru img.fullimg{
  max-width: 1229px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  transform: translateX(-50%);
}

.ageru img.hero-tag{
  max-width: 904px;
}

.ageru img.spimg{
  display: none;
}

.ageru-txt {
  margin-left: auto;
  margin-right: auto;
  
  background-color: #FFF;
  border-radius:40px;
}

.ageru-cont {
  padding: 30px 60px;
  
}

.ageru-cont:after {
  content: "";
  display: block;
  clear: both;
}

.ageru-cont-yoko {
  float: left;
  width: 58%;
}

.ageru-cont-tw {
  float: right;
  width: 38%;
  height: 650px;
  overflow: hidden;
}

.ageru-small {
  max-width: 904px;
  margin-left: auto;
  margin-right: auto;
  position: relative
}

.ageru-small img.hero-title {
  max-width: 60%;
  margin-top: 10%;
  margin-bottom: 2.5%;
  z-index: 5;
}

.ageru-small img.hero-tag {
  z-index: 5;
}

.ageru-small img.hero-sticker {
  max-width: 15%;
  margin-top: 80px;
  margin-bottom: 25px;
  position: absolute;
  bottom: 30%;
  right: 0;
  z-index: 10;
}

.ageru-small img.hero-frachiki {
  max-width: 50%;
  position: absolute;
/*
  bottom: -15%;
  right: 0;
*/
  bottom: -100%;
  right: 50%;
  z-index: -1;
}

h2.yoko img{
  width:173px;
}

h3.ageru-h3 {
  color:#FF7D00;
  font-size: 25px;
  margin-bottom: 10px;
}

.ageru-txt span {
  font-size: 35px;
  font-weight: bold;
}

.ageru-notice {
  color: #FF0000;
}





.prof-area {
  position: relative;
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
  max-width: 904px;
  color: #fff;
  border-radius: 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
  background: #012853 url(../images/prof_bg_frachiki.png) center bottom no-repeat;
  background-size: 100% auto;
}

.prof-area p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 15px;
  -moz-text-shadow: 0 0 20px #000;
  -webkit-text-shadow: 0 0 20px #000;
  -o-text-shadow: 0 0 20px #000;
  -ms-text-shadow: 0 0 20px #000;
  text-shadow: 0 0 20px #000;
}

.prof-area .star {
  position: absolute;
}

.prof-area .star.star01 {
  top: 18px;
  left: 2.65%;
  width: 8.849%;
}

.prof-area .star.star02 {
  top: 20%;
  right: 1.21%;
  width: 10.619%;
}

.prof-area .star.star03 {
  bottom: 10%;
  left: 3.424%;
  width: 3.318%;
}

.prof-area .star.star04 {
  bottom: 20%;
  right: 2%;
  width: 5%;
}

.prof-area .star.star04 img {
  width: auto;
  max-width: 100%;
}

.prof-area .prof-header {
  padding-top: 50px;
  padding-bottom: 94px;
}

.prof-area .prof-header .senpai {
  position: absolute;
}

.prof-area .prof-header .senpai-open {
  top: 47px;
  left: 6.5%;
  width: 26.548%;
}

.prof-area .prof-header .senpai-normal {
  top: 47px;
  right: 6.5%;
  width: 26.548%;
}

.prof-area .prof-header .prof-senpai {
  margin-left: 34.73%;
  width: 30.53%;
}

.prof-area .prof-header .prof-senpai .name {
  margin-top: 24px;
  margin-bottom: 8px;
}

.prof-area .prof-header .prof-senpai .text-area p {
  line-height: 1.872;
}

.prof-area .prof-box-container {
  position: relative;
}

.prof-area .prof-box-container .boad {
  position: absolute;
  top: -36px;
  left: 5.53%;
  width: 18.8%;
}

.prof-area .prof-box-container .prof-box {
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 40px;
  width: 75.44%;
}

.prof-area .prof-box-container .prof-box:after {
  content: "";
  display: block;
  clear: both;
}

.prof-area .prof-box-container .prof-box .photo {
  margin: 0;
  width: 32.25%;
}

.prof-area .prof-box-container .prof-box .text-area {
  width: 63.34%;
}

.prof-area .prof-box-container .prof-box .text-area .name {
  margin: 0;
  margin-left: -2.4%;
}

.prof-area .prof-box-container .prof-box .text-area .detail {
  margin-top: -5px;
}

.prof-area .prof-box-container .prof-box.photo-l .photo {
  float: left;
  margin: 0;
}

.prof-area .prof-box-container .prof-box.photo-l .text-area {
  float: right;
  margin-top: -10px;
}

.prof-area .prof-box-container .prof-box.photo-r .photo {
  float: right;
}

.prof-area .prof-box-container .prof-box.photo-r .text-area {
  float: left;
  margin-top: -15px;
}

.prof-area .prof-box-container .prof-box.prof-staff {
  border-top: none;
}

.prof-area .prof-box-container .prof-box.prof-man {
  padding-bottom: 0;
}

.prof-area .prof-box-container .prof-box.prof-man .pc2-only {
  width: auto;
  max-width: 100%;
  margin-left: -4.5%;
}

.title-area-inner {
  text-align: center;
  background-color: #012853;
}

.title-area-inner .title {
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.title-area-inner img {
  width: auto;
  max-width: 100%;
}

.video-area {
  background: #fff url(../images/bg_frachiki_logo.jpg) 0 0 repeat;
  background-size: 100% auto;
}

.video-area .video-header {
  position: relative;
}

.video-area .video-header .img-inner {
  position: relative;
}

.video-area .video-header .img-inner .frachikisenpai {
  position: absolute;
  display: block;
  bottom: -2px;
  right: 5.1%;
  width: 22.44%;
}

.video-area .video-header .img-inner .frachikisenpai img {
  display: block;
}

.video-area .video-header .title-area {
  background-color: #012853;
}

.video-area .video-header .title-area .title {
  margin: 0 auto;
  width: 47.8%;
}

.video-area .video-header .detail {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #37AF19;
}

.video-area .video-header .detail .detail-inner {
  margin-left: 11.73%;
  width: 60.91%;
}

.video-area .video-header .detail p {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.video-area .video-content .video-content-container {
  padding-top: 30px;
  padding-bottom: 1px;
  background-size: 100% auto;
}

.video-area .video-content .video-content-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 63.87%;
  margin-bottom: 114px;
}

.video-area .video-content .video-content-inner2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.video-area .video-content .video-content-inner2 ul {
  list-style-type: none;
  width: 100%;
  margin-left: -40px;
}

.video-area .video-content .title {
  margin-top: 26px;
  margin-bottom: 8px;
  width: 57.82%;
}

.video-area .video-content .category-title {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 57px;
  padding-top: 17px;
  padding-bottom: 17px;
  width: 88%;
  background-color: #37AF19;
}

.video-area .video-content .category-title img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 46.984%;
}

.video-area .video-content .category-title.category-title01 {
  position: relative;
}

.video-area .video-content .category-title.category-title01:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -54px;
  width: 220px;
  height: 240px;
  background: transparent url("../images/video_hero-frachiki.png") center center no-repeat;
  background-size: 100% auto;
}

.video-area .video-content .video-frame {
  margin-left: auto;
  margin-right: auto;
}

.video-area .video-content .video-frame .video-frame-inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-top: 56.25%;
}

.video-area .video-content .video-frame .video-frame-inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.video-area .video-content .video-frame .video-frame-inner-placeholder {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-top: 56.25%;
  background-color: black;
}

.video-area .video-content .video-frame .video-frame-inner-placeholder img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.video-frame-small iframe {
  width: 100%;
  height: 100%;
}

.video-frame-small.center {
  text-align: center;
}

.video-frame-small.right {
  text-align: right;
}

.site-footer .site-footer-top {
  padding-top: 70px;
  padding-bottom: 76px;
  
}

.site-footer .site-footer-top .site-footer-top-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 796px;
}

.site-footer .site-footer-top .copy {
  margin: 0 auto 32px;
  width: 70.612%;
}

.site-footer .site-footer-top .banner-area {
  display: flex;
  justify-content: space-between;
}

.site-footer .site-footer-top .banner-area .banner {
  display: block;
  width: 46.984%;
  transition: all 0.25s ease;
}

.site-footer .site-footer-top .banner-area .banner:hover {
  opacity: 0.7;
}

.site-footer .site-footer-bottom {
  padding-top: 50px;
  padding-bottom: 24px;
  background-color: #37AF19;
}

.copyright {
  margin: 0;
  font-size: 14px;
  color: #280006;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .prof-area {
    margin-left: 3.87%;
    margin-right: 3.87%;
  }
}

@media screen and (max-width: 767px) {
  .prof-area .prof-header {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 640px) {
  .site-header .logo-area .logo-area-inner {
    margin-top: 10px;
  }
  .site-header .title-area {
    padding-top: 50px;
  }
  .prof-area .prof-header {
    position: relative;
  }
  .prof-area .prof-header .senpai-open {
    top: 12%;
    left: 10.3%;
    width: 34%;
  }
  .prof-area .prof-header .senpai-normal {
    top: 12%;
    right: 10.3%;
    width: 34%;
  }
  .prof-area .prof-header .prof-senpai {
    margin-top: 88%;
    margin-left: auto;
    margin-right: auto;
    width: 75.44%;
  }
  .prof-area .prof-header .prof-senpai .prof-title {
    position: absolute;
    top: 5%;
    width: 76.44%;
  }
  .prof-area .prof-header .prof-senpai .name {
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: -2.4%;
    width: 70%;
  }
  .prof-area .prof-box-container .boad {
    left: 2.765%;
    width: 37.6%;
  }
  .prof-area .prof-box-container .prof-box .text-area .name {
    margin-top: 10px;
    margin-bottom: 12px;
    margin-left: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    -moz-text-shadow: 0 0 20px #000;
    -webkit-text-shadow: 0 0 20px #000;
    -o-text-shadow: 0 0 20px #000;
    -ms-text-shadow: 0 0 20px #000;
    text-shadow: 0 0 20px #000;
  }
  .prof-area .prof-box-container .prof-box.photo-l .photo, .prof-area .prof-box-container .prof-box.photo-r .photo {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    width: 100%;
  }
  .prof-area .prof-box-container .prof-box.photo-l .text-area, .prof-area .prof-box-container .prof-box.photo-r .text-area {
    float: none;
    margin-top: 0;
    width: 100%;
  }
  .site-footer .site-footer-top {
    padding-top: 35px;
    padding-bottom: 38px;
  }
  .site-footer .site-footer-top .copy {
    margin-bottom: 16px;
    width: 94%;
  }
  .site-footer .site-footer-top .banner-area {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .site-footer .site-footer-top .banner-area .banner {
    margin-bottom: 10px;
    width: 100%;
  }
  .site-footer .site-footer-top .banner-area .banner:last-child {
    margin-bottom: 0;
  }
  .site-footer .site-footer-bottom {
    padding-top: 24px;
  }
  .title-area.title-area-inner {
    width: 100%;
  }
  .title-area.title-area-inner.btm {
    width: 100%;
    margin-bottom: 25px;
  }
  .row {
    padding-left: 5%;
    padding-right: 5%;
    width: 90%;
  }
  .col.col--3 .box {
    width: 100%;
    margin-bottom: 20px;
  }
  .col.col--3 .box:nth-child(3n) {
    float: left;
  }
}
.top {
  position: relative;
  z-index: 3;
  padding-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 904px;
}
.top-head {
  position: relative;
  width: 300px;
  z-index: 3;
}
.top-ttl {
  position: relative;
  width: 455px;
  z-index: 3;
  margin-bottom: 0;
}
.top-furachiki {
  position: absolute;
  right: 300px;
  /*bottom: -680px;*/
  bottom: -390px;
  width: 606px;
  z-index: 2;
  opacity: 0;
}
@keyframes decoAnime {
  0% {
    transform: translate(-5px,-5px);
  }
  100% {
    transform: translate(5px,0);
  }
}
.top-deco {
  position: absolute;
  top: 63px;
  right: 60px;
  width: 87px;
  opacity: 0;
  transform: translateX(-10px);
  animation: decoAnime 300ms ease-in-out infinite alternate;
  z-index: 5;
}
.balloon {
  position: relative;
  max-width: 931px;
  margin: 0 auto 20px;
  height: 1500px;
  padding-top: 160px;
  box-sizing: border-box;
  background-image: url("../images/bg-balloon.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 931px auto;
  z-index: 4;
}
.balloon .video-content-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 63.87%;
    margin-bottom: 60px;
}
.balloon .video-frame{
  margin: 0 auto;
}
.balloon .video-frame-inner{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-top: 56.25%;
}
.balloon .video-frame-inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.balloon-img-right {
  position: absolute;
  top: 625px;
  right: 0;
  width: 212px;
}
.balloon-img-left {
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 171px;
}
.words {
  position: relative;
  max-width: 63.87%;
  margin: 0 auto;
  font-weight: bold;
}
.words-catch {
  font-size: 16px;
  margin: 0;
}
.words-ttl {
  font-size: 31px;
  margin: 0 0 1em;
}
.words-meta {
  position: absolute;
  top: 10px;
  left: 405px;
  font-size: 14px;
}
.words-txt {
  font-size: 14px;
}
@media screen and (max-width: 980px) {
  .top-furachiki {
    right: -50px !important;
    bottom: -332px !important;
  }
  .top-head {
    margin-left: 20px;
  }
  .top-ttl {
    margin-left: 10px;
  }
  .words-meta {
    position: relative;
    top: -10px;
    left: 0;
  }
  .words-txt {
    font-size: 13px;
  }
  .balloon-img-left {
    left: -30px;
  }
}
@media screen and (max-width: 767px) {
  .top-head {
    width: 60%;
    max-width: 300px;
    margin: 0 auto 10px;
  }
  .top-ttl {
    top: -20px;
    width: 38%;
  }
  .top-furachiki {
    right: 0 !important;
    width: 90%;
    max-width: 550px;
    bottom: inherit!important;
    top: 10px;
    opacity: 1 !important;
  }
  .top-deco {
    width: 10%;
    top: 95px;
    right: 20px;
    opacity: 1 !important;
  }
  .balloon {
    margin: 0 3.87% 40px;
    padding: 30px 3.87% 20px;
    background-image: none;
    background-color: #fff;
    height: auto;
    border: 4px solid #c30a32;
  }
  .balloon:before {
    position: absolute;
    top: -14px;
    left: 50%;
    margin-left: -105px;
    width: 100%;
    width: 210px;
    height: 28px;
    background-image: url("../images/balloon-ttl-sp.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    content: "";
  }
  .balloon .video-content-inner {
    margin-bottom: 15px;
  }
  .words {
    max-width: inherit;
  }
  .words-catch {
    text-align: center;
    font-size: 12px;
  }
  .words-ttl {
    text-align: center;
    font-size: 18px;
  }
  .words-meta {
    text-align: center;
    font-size: 12px;
  }
  .words-inner {
    height: 100%;
  }
  .balloon-img-right {
    top: 50px;
    right: -10px;
    width: 25%;
  }
  .balloon-img-left {
    bottom: inherit;
    top: 50px;
    left: 0px;
    width: 20%;
  }
}
