@charset "UTF-8";
/* ----------------------------------------
    @kyeframes -common-
----------------------------------------- */
@keyframes flashing {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes flashanime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0);
    opacity: 1;
  }
}
@keyframes fadein2 {
  0% {
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadein-only-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ----------------------------------------
    reset
----------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  word-break: break-all;
}

* {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 100%;
  text-decoration: underline;
  vertical-align: baseline;
  background: transparent;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ----------------------------------------
    variables
----------------------------------------- */
:root {
  --color-white: #fff;
  --color-black: #000;
  --background-base-color: #fff;
  --font-Noto: "Noto Sans JP", sans-serif;
  --zIndex-loadingscreen: 9999;
  --zIndex-flashanime: 999;
  --zIndex-scrolltop: 999;
  --zIndex-header: 999;
  --zIndex-footer: 999;
  --zIndex-globalnav: 999;
  --zIndex-spMenuOverray: 998;
  --zIndex-pageloading: 99;
  --zIndex-secondsubnav: 99;
  --zIndex-secondhead: 2;
  --zIndex-contents: 2;
  --zIndex-spMainimage: 0;
  --zIndex-pcTopStoresearch: 99;
  --zIndex-pcTopSoundbtn: 99;
  --zIndex-pcTopPV: 99;
  --zIndex-pcTopBanner: 99;
  --pc-minwidth: 107.9rem;
  --pc-minheight: 80rem;
  --pc-minwidth-px: 1079px;
  --pc-minheight-px: 800px;
}

/* ----------------------------------------
    base
----------------------------------------- */
html, body {
  background-color: var(--background-base-color);
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 0.52vw;
}

@media only screen and (max-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
/* ----------------------------------------
    layout
----------------------------------------- */
/* --- l-wrapper --- */
#wrapper img {
  width: 100%;
}

#contents {
  z-index: var(--zIndex-contents);
}

/* --- l-header --- */
header {
  content: "";
  display: block;
  background: url("../images/common/sp/headerbg.png") no-repeat center top;
  background-size: 100% auto;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: var(--zIndex-header);
}

header:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 15.8854166667%;
}

header #logo {
  position: absolute;
  left: 5px;
  top: 0;
  width: 12.5%;
  margin-top: 0;
}

header #logo a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- l-footer --- */
.l-footer {
  background-color: #111;
  width: 100%;
  padding: 2.734vw 1.823vw 1.823vw;
  z-index: var(--zIndex-footer);
  opacity: 0;
}

.l-footer:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/common/sp/footerbg.png);
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: center top;
  width: 100%;
  height: 1.042vw;
  transform: translateY(-50%);
}

.l-footer-inner {
  position: relative;
}

/* ----------------------------------------
    project
----------------------------------------- */
/* --- p-flashanime --- */
.p-flashanime {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: var(--zIndex-flashanime);
  opacity: 0;
}

.p-flashanime.u-white {
  background-color: #fff;
}

.p-flashanime.u-black {
  background-color: #000;
}

.p-flashanime.start {
  animation: flashanime 2.5s linear 0s;
  animation-fill-mode: both;
}

.p-flashanime.u-short.start {
  animation: flashanime 1.5s linear 0s;
  animation-fill-mode: both;
}

/* --- p-pagebg --- */
#background, .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform-origin: top center;
}

.background {
  transition: opacity 0.3s linear 0s;
}

.background.show {
  opacity: 1;
}

/* --- p-pageloading --- */
.p-pageloading {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 259px;
  z-index: var(--zIndex-pageloading);
  animation: flashing 1s linear 0s infinite;
  animation-fill-mode: both;
  transform: translate(-50%, -50%);
}

.p-pageloading img {
  width: 100%;
}

body#mobile .p-pageloading {
  width: 50%;
}

/* --- p-globalnav --- */
#gnav {
  content: "";
  display: block;
  background: url("../images/common/sp/menubg.png") no-repeat center top;
  background-size: 100% auto;
  width: 100%;
  height: auto;
  margin: 3% 0 3%;
}

#gnav:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 93.8802083333%;
}

#gnav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.3% 0 0 0;
  overflow: hidden;
}

#gnav li {
  width: 50%;
  height: auto;
  float: left;
}

#gnav li a, #gnav li span {
  display: block;
  width: 100%;
  height: 100%;
}

#gnav.menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 12.5% 0 0 0;
  opacity: 0;
  z-index: var(--zIndex-globalnav);
}

/* --- p-headermenu --- */
#menubtn {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/common/sp/menubtn.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 14.063vw;
  height: 14.063vw;
}

#menubtn.open {
  background-image: url(../images/common/sp/menubtn_close.png);
}

#menuOverlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--zIndex-spMenuOverray);
}

/* --- p-secondhead --- */
.p-secondhead {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 19.531vw;
  z-index: var(--zIndex-secondhead);
}

.p-secondhead-title {
  display: block;
  width: 100%;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.p-secondhead-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
}

/* --- p-secondhead --- */
.subnav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0;
  z-index: var(--zIndex-secondsubnav);
}

.subnav li {
  display: inline-block;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.subnav li:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
}

.subnav li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.subnav.top {
  margin-top: 31.25vw;
}

.subnav.btm {
  display: none;
  position: static;
  margin-top: 2.604vw;
  margin-bottom: 5.208vw;
}

/* --- p-storesearch- --- */
#searchbox {
  width: 95%;
  background: #fff;
  margin: 0 auto;
  border: 1px solid #fff;
}

#searchbox form {
  padding: 3% 0;
  overflow: hidden;
}

#searchbox dl {
  width: 70%;
  margin: 0 0 0 2%;
  float: left;
}

#searchbox dl dd {
  border: 1px solid #000;
  height: 7vw;
}

#searchbox dl dd:nth-of-type(1) {
  margin-bottom: 1.5%;
}

#searchbox dl dd select {
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #333;
  font-size: 3.5vw;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  outline: none;
}

#searchbox dl dd select::-ms-expand {
  display: none;
}

#searchbox dl dd:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 8px solid #333;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

#searchbox input {
  display: block;
  float: right;
  width: 22%;
  margin: 1% 2% 0 0;
}

#searchbox + p {
  width: 95%;
  margin: 1% auto 3%;
}

#searchbox + p img {
  vertical-align: top;
}

/* --- p-footermain --- */
.p-footermain {
  display: flex;
  flex-direction: column;
  gap: 1.823vw;
}

.p-footermain-upside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.823vw;
}

.p-footermain-sanseilogo {
  width: 27.344vw;
}

.p-footermain-copyright {
  width: 53.125vw;
  order: 2;
}

.p-footermain-snsshareblock {
  display: flex;
  justify-content: flex-end;
  width: 65%;
}

.p-footermain-txt {
  width: 78.776vw;
}

/* --- p-sharebtnlist --- */
.p-sharebtnlist {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.p-sharebtnlist-item.u-twitter, .p-sharebtnlist-item.u-facebook {
  font-size: 0;
}

/* --- p-scrolltopbtn- --- */
.p-scrolltopbtn {
  display: none;
  position: fixed;
  right: 1.823vw;
  bottom: 1.823vw;
  width: 9.375vw;
  opacity: 1;
  z-index: var(--zIndex-scrolltop);
}

/*==============================
 ページ個別スタイル
==============================*/
/* p-pagebg */
.background {
  background-image: url(../images/tsujyouji/sp/bg1.png);
  background-repeat: repeat-y;
  background-position: center top;
  background-color: var(--background-base-color);
  background-size: 100% auto;
}

.background.page2,
.background.page3 {
  background-image: url(../images/tsujyouji/sp/bg2.png);
}

/* p-secondhead-title（個別画像指定） */
.p-secondhead-title.u-tit1 {
  background-image: url(../images/tsujyouji/sp/tsujyouji1_title.png);
}

.p-secondhead-title.u-tit1:after {
  padding-top: 14.3229166667%;
}

.p-secondhead-title.u-tit2 {
  background-image: url(../images/tsujyouji/sp/tsujyouji2_title.png);
}

.p-secondhead-title.u-tit2:after {
  padding-top: 14.3229166667%;
}

.p-secondhead-title.u-tit3 {
  background-image: url(../images/tsujyouji/sp/tsujyouji3_title.png);
}

.p-secondhead-title.u-tit3:after {
  padding-top: 14.3229166667%;
}

/* p-secondsubnav（ページ個別指定） */
.subnav li {
  width: 33.3%;
}

.subnav li:nth-of-type(1) {
  background-image: url(../images/tsujyouji/sp/subnav1.png);
}

.subnav li:nth-of-type(1).current {
  background-image: url(../images/tsujyouji/sp/subnav1on.png);
}

.subnav li:nth-of-type(1):after {
  padding-top: 36.5853658537%;
}

.subnav li:nth-of-type(2) {
  background-image: url(../images/tsujyouji/sp/subnav2.png);
}

.subnav li:nth-of-type(2).current {
  background-image: url(../images/tsujyouji/sp/subnav2on.png);
}

.subnav li:nth-of-type(2):after {
  padding-top: 36.5853658537%;
}

.subnav li:nth-of-type(3) {
  background-image: url(../images/tsujyouji/sp/subnav3.png);
}

.subnav li:nth-of-type(3).current {
  background-image: url(../images/tsujyouji/sp/subnav3on.png);
}

.subnav li:nth-of-type(3):after {
  padding-top: 36.5853658537%;
}

.p-secondhead {
  margin-top: 15.625vw;
}

/*==============================
 #page
==============================*/
.page {
  display: none;
}

#page1 img.tsujyouji1_1 {
  margin-top: 46.2239583333%;
}

#page2 img.tsujyouji2_1 {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 36.4583333333%;
}

#page2 img.tsujyouji2_2 {
  margin-top: 69.53125%;
}

#page3 img.tsujyouji3_1 {
  margin-top: 47.65625%;
}

#page3 img.tsujyouji3_2 {
  margin-top: 2.6041666667%;
}