/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

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

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

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#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 {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
}

/**
 * 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 (https://html.spec.whatwg.org/multipage/semantics.html#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 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 */
  -webkit-text-decoration: underline dotted;
          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: #ffff00;
  color: #000000;
}

/**
 * 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: -.25em;
}

sup {
  top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * 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;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

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

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * 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;
}

/**
 * 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;
  /* 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 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 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 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 elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * 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 (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

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

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
}

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

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

html {
  font-size: 62.5%;
  width: 100%;
}

body {
  position: relative;
  width: 100%;
}

html, body {
  min-width: 100%;
}

a {
  text-decoration: none;
  word-break: break-all;
}

a:hover {
  opacity: .7;
}

h1, h2, h3, h4, h5, h6, div, p, ul, ol, li, dd, small {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}
.spOnly{
  display: none;
}
.center{
  text-align: center;
}
.indent{
  text-indent: -1em;
  padding-left: 1em;
  margin: 0 auto;
}
small {
  font-size: 90%;
}

html, body {
  height: 100%;
}

.container {
  width: 100%;
  background-color: #fff;
}

.navline {
  width: 27px;
  position: fixed;
  bottom: 50px;
  left: calc(50% + 450px);
}

.navline a, .navline p {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  margin: 0 !important;
}

.mainimg {
  width: 100%;
  max-width: 1000px;
  height: 750px;
  margin: 0 auto;
  background-image: url(../img/pre_mainimg.jpg);
  background-size: cover;
  background-position: center top;
  position: relative;
}

.mainimg-1 {
  background-image: url(../img/mainimg_pre1_pc.jpg);
}

.mainimg-2 {
  background-image: url(../img/mainimg_pre2_pc.jpg);
}
.mainimg-3 {
  background-image: url(../img/mainimg_pre3_pc.jpg);
}

.mainimg-4 {
  background-image: url(../img/mainimg_pre4_pc.jpg);
}

.mainimg-5 {
  background-image: url(../img/mainimg_pre5_pc.jpg);
}
.mainimg-6 {
  background-image: url(../img/mainimg_pre6_pc.jpg);
}
.mainimg-7 {
  background-image: url(../img/mainimg_pre7_pc.jpg);
}
.mainimg-8 {
  background-image: url(../img/mainimg_pre8_pc.jpg);
}
.mainimg-9 {
  background-image: url(../img/mainimg_pre9_pc.jpg);
}
.mainimg-10 {
  background-image: url(../img/mainimg_pre10_pc.jpg);
}
.mainimg-11 {
  background-image: url(../img/mainimg_pre11_pc.jpg);
}
.mainimg .logo {
  position: absolute;
  right: 15px;
  top: 25px;
  text-align: center;
  z-index: 3000;
}

.mainimg .logo.fixed {
  position: fixed;
  right: auto;
  top: 25px;
  text-align: center;
  z-index: 3000;
  left: calc(50% + 425px);
}

.mainimg .logo .logo-o2-s {
  display: block;
  margin-bottom: 20px;
}

.mainimg .ttl {
  background-image: url(../img/pre_ttl.png);
  width: 123px;
  height: 542px;
  background-size: contain;
  position: absolute;
  top: 25px;
  right: 18px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.mainimg .ttl-1 {
  background-image: url(../img/ttl_pre1@2x.png);
  width: 101px;
  height: 527px;
  top: 40px;
  left: 717px;
}

.mainimg .ttl-name1 {
  background-image: url(../img/name_pre1@2x.png);
  width: 50px;
  height: 412px;
  top: 42px;
  left: 230px;
}

.mainimg .ttl-2 {
  background-image: url(../img/ttl_pre2@2x.png);
  width: 101px;
  height: 656px;
  top: 45px;
  left: 612px;
}

.mainimg .ttl-name2 {
  background-image: url(../img/name_pre2@2x.png);
  width: 17px;
  height: 313px;
  top: 45px;
  left: 63px;
}

.mainimg .ttl-3 {
  background-image: url(../img/ttl_pre3@2x.png);
  width: 130px;
  height: 698px;
  top: 25px;
  left: 120px;
}

.mainimg .ttl-name3 {
  background-image: url(../img/name_pre3@2x.png);
  width: 81px;
  height: 371px;
  top: 25px;
  left: 796px;
}

.mainimg .ttl-4 {
  background-image: url(../img/ttl_pre4@2x.png);
  width: 82px;
  height: 571px;
  top: 53px;
  left: 150px;
}

.mainimg .ttl-5 {
  background-image: url(../img/ttl_pre5@2x.png);
  width: 119px;
  height: 636px;
  top: 51px;
  right: 120px;
}

.mainimg .ttl-name5 {
  background-image: url(../img/name_pre5@2x.png);
  width: 83px;
  height: 383px;
  top: 51px;
  right: 307px;
}
.mainimg .ttl-6 {
  background-image: url(../img/ttl_pre6@2x.png);
  width: 145px;
  height: 520px;
  top: 52px;
  left: 73px;
}

.mainimg .ttl-name6 {
  background-image: url(../img/name_pre6@2x.png);
  width: 18px;
  height: 495px;
  top: 211px;
  right: 35px;
}
.mainimg .ttl-7 {
  background-image: url(../img/ttl_pre7@2x.png);
  width: 171px;
  height: 506px;
  top: 85px;
  left: 668px;
}
.mainimg .ttl-name7 {
  background-image: url(../img/name_pre7@2x.png);
  width: 53px;
  height: 329px;
  top: 100px;
  left: 175px;
}

.mainimg .ttl-sub {
  background-image: url(../img/subttl_01@2x.png);
  width: 50px;
  height: 51px;
  top: 135px;
  right: 20px;
}

.mainimg .ttl-sub02 {
  background-image: url(../img/subttl_02@2x.png);
}
.mainimg .ttl-sub03 {
  background-image: url(../img/subttl_03@2x.png);
}
.mainimg .ttl-sub04 {
  background-image: url(../img/subttl_04@2x.png);
}
.mainimg .ttl-sub05 {
  background-image: url(../img/subttl_05@2x.png);
}
.mainimg .ttl-sub06 {
  background-image: url(../img/subttl_06@2x.png);
}
.mainimg .ttl-sub07 {
  background-image: url(../img/subttl_07@2x.png);
}

.preitem {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
}

.preitem-profile {
  margin-bottom: 60px;
}

.preitem-prenav {
  margin: 55px 0;
}

.prenav {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
      -webkit-box-pack: justify;
          justify-content: space-between;
}

.prenav li {
  min-width: 50px;
}

.prenav li a {
  color: #000;
  font-size: 1.8rem;
}

.lineup {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
  margin: 50px auto;
}
.lineup .lineup__list{
  max-width: 860px;
  margin: 0 auto;
}
.lineup .lineup__list li{
  padding-bottom: 0;
}
.lineup__ttl {
  text-align: center;
  font-size: 1.8rem;
  padding: 0 0 2em;
}

.lineup__name {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1em;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}
.lineup .logo_ss::before {
  content: "";
  display: inline-block;
  background-image: url(../img/logo_ss.png);
  background-size: cover;
  width: 15.855px;
  height: 44.249px;
  margin-right: 1rem;
}

.lineup__name span{
  font-size: 80%;
  display: block;
  margin-top: -1rem;
}

.lineup p.text {
  max-width: 520px;
  margin: 0 auto 40px;
}

.lineup__name .value {
  font-size: 1.5rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}
.lineup__list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.lineup__list li {
  text-align: center;
  padding-bottom: 30px;
}

.lineup__list li p {
  font-size: 1.3rem;
  margin: 0;
  position: relative;
}

.lineup__list li:last-child {
  margin-right: 0;
}
.lineup .lineup__list li p {
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  font-size: 1.4rem;
  line-height: 3;
}
.lineup.pre02 .lineup__list li{
  padding: 0;
  width: 50%;
}
.lineup.pre02 .lineup__name{
  text-align: left;
  line-height: 1.45;
}
.lineup.pre02 .two{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lineup.pre02 .left{
  text-align: left;
}
.lineup.pre02 .center{
  max-width: 200px;
}
.index {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
  margin: 50px auto;
}

.info {
  margin: -25px auto;
}
.info a{
  color: #005aff;
}
.info_img {
  text-align: center;
}
.intro {
  margin: 60px 0;
}

.intro p {
  width: 95%;
  max-width: 540px;
  margin: 0 auto;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  font-size: 1.7rem;
}
.ff-kw1{
  font-family: "Koburina Gothic W1 JIS2004", sans-serif;
}
.information {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
  margin: 50px auto;
}
.information div {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 3em;
  font-size: 1.5rem;
}
.information p {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.information h3 {
  font-size: 1.9rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  display: block;
  text-align: center;
  padding-bottom: 2em;
}
.information div span.caption{
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  display: inline-block;
  padding-top: 2em;
}
.information h4 {
  white-space: nowrap;
}
.information .shop {
  background-color: #82e1ff;
  padding: 30px 40px;
  width: 90%;
  max-width: 530px;
}
.information .shop h3{
  font-size: 1.5rem;
  margin: 1em auto;
  padding-bottom: 0;
  text-align: left;
  line-height: 1.5;
  max-width: 330px;
}
.information .shop h3 a{
  color: #000;
}
.information .shop div{
  max-width: 330px;
  width: 100%;
  padding-bottom: 0;
}
.logo_tsuki {
  width: 120px;
  margin-bottom: -3rem;
}
.profile {
  width: 95%;
  max-width: 810px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.profile_2{
  padding-top: 50px;
}

.profile__img {
  width: 50%;
  max-width: 350px;
}

.profile__img img {
  width: 100%;
}

.profile__txt h2 {
  font-size: 1.7rem;
  margin-bottom: 1em;
}

.profile__txt h2 .kana {
  font-size: 1.5rem;
}

.profile__txt p {
  font-size: 1.3rem;
}

.conv {
  width: 95%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.conv h2 {
  font-size: 2.3rem;
  width: 100%;
  max-width:  30em;
  margin: 3em auto 1.5em;
  padding-left: 2em;
}

.conv h3 {
  font-size: 1.8rem;
  width: 100%;
  max-width: 590px;
  margin: 2em auto 0;
}

.conv dl {
  width: 100%;
  max-width: 590px;
  margin: 0 auto 1em;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.conv dl dt {
  width: 10%;
  margin-bottom: 1em;
  font-size: 1.5rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}

.conv dl dt.hobo {
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  letter-spacing: -.1em;
}

.conv dl dd {
  width: 90%;
  padding-left: 2em;
  margin-bottom: 1em;
  font-size: 1.5rem;
}

.conv dl dd a {
  color: #005aff;
}

.conv div.text {
  width: 100%;
  max-width: 590px;
  margin: 1em auto 2em;
}

.conv p {
  width: 100%;
  max-width: 590px;
  margin: 0 auto 1em;
  font-size: 1.5rem;
}

.conv p a {
  color: #005aff;
}

.conv p.continue {
  text-align: center;
  margin: 3em auto 1em;
}

.conv__img {
  margin: 3em auto;
  text-align: center;
}

.conv__img .caption {
  max-width: 390px;
  width: 90%;
  text-align: left;
  margin: 1.5em auto 0;
  font-size: 1.3rem;
  line-height: 1.75;
  font-family: "Koburina Gothic W1 JIS2004", sans-serif;
}

.conv__img .caption.center {
  max-width: 100%;
  text-align: center;
  margin-top: .5em;
}

.conv sup {
  font-size: 1.3rem;
  top: -.15em;
}

.conv span.notes{
  font-size: 1.3rem;
  line-height: 1.8;
  display: block;
}

.product__img{
  text-align: center;
}
.product__img p{
  text-align: left;
  padding-top: .5em;
  font-size: 1.4rem;
}

.product{
  margin: 3em auto;
}

.product .caption {
  font-size: 2.3rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  line-height: 1.5;
  margin: 0 auto 1em;
}

.product .caption p{
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 auto;
}

.product .caption span{
  font-size: 1.4rem;
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
}

.product .caption img {
  width: 16px;
  vertical-align: baseline;
  margin-right: .3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.no_list{
  margin: 55px auto;
}

.link {
  background-color: rgba(255,255,255,0.95);
  position: relative;
  width: 100%;
  padding: 45px 0;
  margin-bottom: 55px;
  text-align: center;
}

.link h2 {
  font-size: 1.8rem;
  margin: 0 auto 1em;
  width: 90%;
  display: block;
  text-align: center;
}

.link a {
  display: block;
  padding: 12px 20px;
  font-size: 1.3rem;
  color: #005aff;
  border: 1px solid #666;
  width: 90%;
  max-width: 500px;
  margin: 0 auto 18px;
  text-align: center;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}

.link a h3 {
  font-size: 1.6rem;
  text-align: center;
  color: #005aff;
}

.arrow {
  display: block;
  opacity: 0;
  width: 6.0765191297824vh;
  max-width: 81px;
  height: 6.0765191297824vh;
  max-height: 81px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.arrow img {
  width: 100%;
}

.bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.bg-pre {
  background-image: url(../img/pre_bg.jpg);
}

.bg-pre1 {
  background-image: url(../img/bg_pre1.jpg);
}

.bg-pre2 {
  background-image: url(../img/bg_pre2.jpg);
}

.bg-pre3 {
  background-image: url(../img/bg_pre3.jpg);
}

.bg-pre4 {
  background-image: url(../img/bg_pre4.jpg);
}
.bg-pre5 {
  background-image: url(../img/bg_pre5.jpg);
}
.bg-pre6 {
  background-image: url(../img/bg_pre6.jpg);
}
.bg-pre7 {
  background-image: url(../img/bg_pre7.jpg);
}

.bg-top {
  position: relative;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
}

.logo_o2 {
  position: absolute;
  top: 40px;
  left: 55px;
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.logo_ssa {
  position: absolute;
  top: 120px;
  left: 210px;
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.logo_newitem {
  position: absolute;
  top: 120px;
  left: 445px;
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.logo_o2.active, .logo_ssa.active, .logo_newitem.active, .arrow.active {
  opacity: 1;
}

.share {
  padding: 15px 0;
  margin-bottom: 55px;
  background-color: rgba(255, 255, 255, 0.95);
}

.share__ttl {
  font-size: 1.9rem;
  text-align: center;
  padding: 30px 0;
  letter-spacing: 0.1em;
}

.share__list {
  width: 95%;
  max-width: 500px;
  margin: 0 auto 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
      -webkit-box-pack: justify;
          justify-content: space-between;
  list-style-type: none;
}

.share__list li {
  margin: 0 20px;
}

.share__list-foot {
  -ms-flex-pack: center;
      -webkit-box-pack: center;
          justify-content: center;
  margin: 0 auto 50px;
}

.share__list-foot li a {
  border: 1px solid #005aff;
  border-radius: 18px;
  padding: 0px 20px;
  font-size: 1.4rem;
  width: 210px;
  text-align: center;
  display: inline-block;
  color: #005aff;
}

.footer {
  padding: 45px 0;
  background-color: #fff;
}

.copyright {
  display: block;
  text-align: center;
  text-indent: -9999px;
  background-image: url(../img/copyright.png);
  width: 240px;
  height: 12px;
  margin: 20px auto;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  .logo_newitem.right{
    left: auto;
    right: 55px;
  }
}
@media screen and (max-width: 768px) {
  .mainimg {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-top: 100%;
    margin: 0 auto;
    background-image: url(../img/pre_mainimg_sp.jpg);
    background-size: cover;
    background-position: center top;
    position: relative;
  }
  .mainimg-1 {
    background-image: url(../img/mainimg_pre1_sp.jpg);
  }
  .mainimg-2 {
    background-image: url(../img/mainimg_pre2_sp.jpg);
  }
  .mainimg-3 {
    background-image: url(../img/mainimg_pre3_sp.jpg);
  }
  .mainimg-4 {
    background-image: url(../img/mainimg_pre4_sp.jpg);
  }
  .mainimg-5 {
    background-image: url(../img/mainimg_pre5_sp.jpg);
  }
  .mainimg-6 {
    background-image: url(../img/mainimg_pre6_sp.jpg);
  }
  .mainimg-7 {
    background-image: url(../img/mainimg_pre7_sp.jpg);
  }
  .mainimg-8 {
    background-image: url(../img/mainimg_pre8_sp.jpg);
  }
  .mainimg-9 {
    background-image: url(../img/mainimg_pre9_sp.jpg);
  }
  .mainimg-10 {
    background-image: url(../img/mainimg_pre10_sp.jpg);
  }
  .mainimg-11 {
    background-image: url(../img/mainimg_pre11_sp.jpg);
  }
  .mainimg .logo {
    position: absolute;
    left: 89.0625vw;
    right: auto;
    top: 3.90625vw;
    text-align: center;
    z-index: 3000;
    width: 9.375vw;
  }
  .mainimg .logo .logo-o2-s {
    margin-bottom: 10px;
  }
  .mainimg .logo.fixed {
    position: fixed;
    left: 89.0625vw;
    top: 2.34375vw;
  }
  .mainimg .ttl {
    background-image: url(../img/pre_ttl.png);
    width: 20vw;
    height: 88.90625vw;
    background-size: contain;
    position: absolute;
    top: 3.4375vw;
    right: 15.3125vw;
    text-indent: -9999px;
  }
  .mainimg .ttl-1 {
    background-image: url(../img/ttl_pre1_sp.png);
    width: 15.625vw;
    height: 82.34375vw;
    top: 7.8125vw;
    left: 62.5vw;
  }
  .mainimg .ttl-name1 {
    background-image: url(../img/name_pre1_sp.png);
    width: 7.8125vw;
    height: 64.375vw;
    top: 8.1875vw;
    left: 8.8125vw;
  }
  .mainimg .ttl-2 {
    background-image: url(../img/ttl_pre2_sp.png);
    width: 33.4375vw;
    height: 78.4375vw;
    top: 9.21875vw;
    left: 46.71875vw;
  }
  .mainimg .ttl-name2 {
    background-image: url(../img/name_pre2_sp.png);
    width: 2.65625vw;
    height: 48.90625vw;
    top: 9.6875vw;
    left: 34.375vw;
  }
  .mainimg .ttl-3 {
    background-image: url(../img/ttl_pre3_sp.png);
    width: 31.406vw;
    height: 77.656vw;
    top: 3.268vw;
    left: 3.875vw;
  }
  .mainimg .ttl-name3 {
    background-image: url(../img/name_pre3_sp.png);
    width: 10.78125vw;
    height: 56.09375vw;
    top: 4.56875vw;
    left: 40.8875vw;
  }
  .mainimg .ttl-4 {
    background-image: url(../img/ttl_pre4_sp.png);
    width: 12.8125vw;
    height: 89.21875vw;
    top: 5.35625vw;
    left: 8.607463vw;
  }
  .mainimg .ttl-5 {
    background-image: url(../img/ttl_pre5_sp.png);
    width: 18.281vw;
    height: 91.25vw;
    top: 4.943vw;
    right: 15.112vw;
  }
  .mainimg .ttl-name5 {
    background-image: url(../img/name_pre5_sp.png);
    width: 12.96875vw;
    height: 59.6875vw;
    top: 35.3125vw;
    right: auto;
    left: 8.75vw;
  }
  .mainimg .ttl-6 {
    background-image: url(../img/ttl_pre6_sp.png);
    width: 22.527vw;
    height: 81.25vw;
    top: 5.024vw;
    left: 5.885vw;
  }
  .mainimg .ttl-name6 {
    background-image: url(../img/name_pre6_sp.png);
    width: 7.497vw;
    height: 47.245vw;
    right: 2.562vw;
    top: 33.697vw;
  }
  .mainimg .ttl-7 {
    background-image: url(../img/ttl_pre7_sp.png);
    width: 26.718vw;
    height: 79.375vw;
    top: 6.562vw;
    left: 55.468vw;
  }
  .mainimg .ttl-name7 {
    background-image: url(../img/name_pre7_sp.png);
    width: 8.381vw;
    height: 51.806vw;
    left: 7.187vw;
    top: 8.906vw;
  }
  .mainimg .ttl-sub {
    background-image: url(../img/subttl_01@2x.png);
    width: 7.8125vw;
    height: 7.8125vw;
    top: 21.09375vw;
    left: 89.921875vw;
    right: auto;
  }
  .mainimg .ttl-sub02 {
    background-image: url(../img/subttl_02@2x.png);
  }
  .mainimg .ttl-sub03 {
    background-image: url(../img/subttl_03@2x.png);
  }
  .mainimg .ttl-sub04 {
    background-image: url(../img/subttl_04@2x.png);
  }
  .mainimg .ttl-sub05 {
    background-image: url(../img/subttl_05@2x.png);
  }
  .mainimg .ttl-sub06 {
    background-image: url(../img/subttl_06@2x.png);
  }
  .mainimg .ttl-sub07 {
    background-image: url(../img/subttl_07@2x.png);
  }
  .lineup {
    margin: 50px auto 15px;
    padding: 25px 0;
  }
  .lineup__list {
    -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-pack: start;
        -webkit-box-pack: start;
            justify-content: flex-start;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lineup__list li {
    display: block;
    width: calc((100% - 4.68vw) / 2);
    margin-right: 4.68vw;
    padding-bottom: .5em;
  }
  .lineup__list li img {
    width: 100%;
  }
  .lineup__list li:nth-of-type(even) {
    margin-right: 0;
  }
  .lineup .lineup__list{
    width: 92.1875%;
  }
  .information p {
    width: 90%;
  }
  .information .shop{
    padding: 20px;
  }
  .information .shop p{
    width: 100%;
  }
  .information h4 {
    white-space: normal;
    font-size: 1.5rem;
  }
  .information .shop h3 {
    font-size: 1.4rem;
  }
  .information .shop div{
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 640px) {
  .pcOnly {
    display: none;
  }
  .spOnly{
    display: block;
  }
  .center{
    text-align: left;
  }
  img {
    width: 100%;
  }
  html, body {
    height: 100%;
  }
  h1, h2, h3, h4, h5, h6, div, p, ul, li, dd {
    font-size: 1.6rem;
  }
  html, body {
    height: 100%;
  }
  /* .logo_o2 {
    width: 20.379907vw;
    height: 26.666667vw;
    position: absolute;
    top: 7.333333vw;
    left: 8.666667vw;
  } */
  .logo_o2{
    width: 20.379907vw;
    height: 26.66666667vw;
    top: 7.333333vw;
    left: 3.666667vw;
  }
  /* .logo_ssa {
    width: 31.666667vw;
    height: 25vw;
    top: 19.333333vw;
    left: 32.55vw;
  } */
  .logo_ssa{
    width: 31.666667vw;
    height: 25vw;
    top: 19.333333vw;
    left: 27.85vw;
  }
  .logo_newitem {
    width: 37.5vw;
    position: absolute;
    top: 19.8vw;
    left: auto;
    right: 0;
  }
  .navline {
    width: 25px;
    position: fixed;
    bottom: 2vw;
    left: auto;
    right: 2vw;
  }
  .navline a {
    width: 15px;
    margin: 10px auto;
  }
  .navline p {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    right: 1vw;
    position: relative;
  }
  .preitem {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px 0;
  }
  .preitem-profile {
    margin-bottom: 30px;
  }
  .preitem-prenav {
    margin: 15px 0;
  }
  .preitem-info {
    margin: 60px 0;
    background-color: #fff;
  }
  .prenav {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
        -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .prenav li {
    min-width: 50px;
  }
  .lineup__name {
    font-size: 2rem;
    line-height: 1.5;
  }
  .lineup__name span {
    margin-top: -.5rem;
  }
  .lineup p.text {
    width: 90%;
  }
  .lineup__list li p {
    font-size: 1.2rem;
  }
  .lineup__list li:nth-child(2n) {
    margin-right: 0;
  }
  .lineup .lineup__list li p{
    font-size: 1.2rem;
    line-height: 2.8;
  }
  .link h2 {
    font-size: 1.8rem;
    width: 90%;
    margin: 0 auto 1em;
    display: block;
    text-align: center;
  }
  .link a {
    display: block;
    color: #005aff;
    padding: 12px 20px;
    font-size: 1.3rem;
  }
  .link a h3{
    font-size: 1.4rem;
  }
  .info h2 {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 1em;
  }
  .info h2.left{
    font-size: 2rem;
  }
  .info h3{
    font-size: 1.7rem; 
  }
  .info dl {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .info dl dt {
    width: 100%;
    font-size: 1.4rem;
  }
  .info dl dd {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
  .info {
    margin: 0 auto -40px;
  }
  .info div p {
    letter-spacing: .1rem;
  }
  .intro {
    margin: 30px 0;
  }
  .intro p {
    width: 82.8125%;
    max-width: 100%;
    margin: 0 auto;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
    font-size: 1.6rem;
  }
  .profile {
    width: 82.8125%;
    max-width: 100%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            flex-direction: column;
  }
  .profile__img {
    width: 54.6875vw;
    max-width: 100%;
    margin: 0 auto 15px;
  }
  .profile__img img {
    width: 100%;
  }
  .profile__txt {
    padding-left: 0;
  }
  .profile__txt h2 {
    font-size: 1.6rem;
    margin-bottom: .5em;
  }
  .profile__txt h2 .kana {
    font-size: 1.4rem;
  }
  .profile__txt p {
    font-size: 1.3rem;
  }
  .conv {
    width: 82.8125%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .conv h2 {
    font-size: 1.8rem;
    width: 100%;
    max-width: 100%;
    margin: .5em auto 1em;
    padding-left: 0;
  }
  .conv h3 {
    font-size: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin: .5em auto 1em;
    padding-left: 0;
  }
  .conv dl {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1em;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .conv dl dt {
    width: 100%;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  }
  .conv dl dt.hobo {
    font-family: "Koburina Gothic W3 JIS2004", sans-serif;
    letter-spacing: -.1em;
  }
  .conv dl dd {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1em;
    font-size: 1.5rem;
  }
  .conv dl dd a {
    color: #005aff;
  }
  .conv p.continue {
    text-align: center;
  }
  .conv__img {
    margin: 1em auto;
  } 
  .product{
    margin: 1em auto;
  }
  .product .caption {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 auto .5em;
  }
  .product .caption p{
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .product .caption span{
    font-size: 1.3rem;
  }
  .product .caption img {
    width: 15px;
  }
  .arrow {
    display: block;
    width: 10.9375vw;
    height: 10.9375vw;
    position: absolute;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .arrow img {
    width: 100%;
  }
  .bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    z-index: -1;
  }
  .bg-pre1 {
    background-image: url(../img/bg_pre1_sp.jpg);
  }
  .bg-pre2 {
    background-image: url(../img/bg_pre2_sp.jpg);
  }
  .bg-pre3 {
    background-image: url(../img/bg_pre3_sp.jpg);
  }
  .bg-pre4 {
    background-image: url(../img/bg_pre4_sp.jpg);
  }
  .bg-pre5 {
    background-image: url(../img/bg_pre5_sp.jpg);
  }
  .bg-pre6 {
    background-image: url(../img/bg_pre6_sp.jpg);
  }
  .bg-pre7 {
    background-image: url(../img/bg_pre7_sp.jpg);
  }

  .bg-top {
    position: relative;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .link{
    margin-bottom: 15px;
    padding: 20px 0 10px;
  }
  .share {
    padding: 0 0 5px;
    margin-bottom: 15px;
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .share__ttl {
    font-size: 1.9rem;
    text-align: center;
    padding: 30px 0;
    letter-spacing: 0.1em;
  }
  .share__list {
    width: 95%;
    max-width: 500px;
    margin: 0 auto 30px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
        -webkit-box-pack: justify;
            justify-content: space-between;
    list-style-type: none;
  }
  .share__list li {
    margin: 0 20px;
  }
  .share__list-foot {
    -ms-flex-pack: center;
        -webkit-box-pack: center;
            justify-content: center;
    margin: 0 auto 50px;
    -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            flex-direction: column;
  }
  .share__list-foot li a {
    width: 77%;
    border: 1px solid #005aff;
    border-radius: 18px;
    padding: 5px 20px;
    font-size: 1.4rem;
    text-align: center;
    display: block;
    color: #005aff;
    margin: 15px auto;
  }
  .footer {
    padding: 20px 0;
    background-color: #fff;
  }
  .copyright {
    display: block;
    text-align: center;
    text-indent: -9999px;
    background-image: url(../img/copyright.png);
    width: 180px;
    height: 9px;
    margin: 20px auto;
    background-size: contain;
  }
  .logo_tsuki {
    margin-bottom: .5rem;
  }
}
