@charset "UTF-8";
@keyframes floater {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes wobbling_x {
  0%, 100% {
    margin-left: 0px;
  }
  50% {
    margin-left: 10px;
  }
}
@keyframes wobbling_y {
  0%, 100% {
    margin-top: 0px;
  }
  50% {
    margin-top: 10px;
  }
}
@keyframes wobbling {
  0%, 100% {
    transform: rotate(0deg) translateY(0%) translateX(0%);
  }
  50% {
    transform: rotate(8deg) translateY(-10px) translateX(10px);
  }
}
@keyframes wobbling02 {
  0%, 100% {
    transform: rotate(0deg) translateY(0%) translateX(0%);
  }
  50% {
    transform: rotate(8deg) translateY(-10px) translateX(30px);
  }
}
@keyframes lftSlideIn {
  0% {
    opacity: 0;
    transform: translate(100px, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes rhtSlideIn {
  0% {
    opacity: 0;
    transform: translate(-100px, -50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeRotateIn {
  0% {
    opacity: 0;
    transform: rotate(45deg) translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: rotateY(0) translateX(0);
  }
}
@keyframes fadeRotateIn02 {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateX(100px);
  }
  100% {
    opacity: 1;
    transform: rotateY(0) translateX(0);
  }
}
@keyframes slideFadeZoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideFadeZoomOut {
  0% {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideFadeInDown {
  0% {
    opacity: 0;
    margin-top: 20%;
  }
  70% {
    opacity: 1;
    margin-top: 25%;
  }
  100% {
    opacity: 1;
    margin-top: 25%;
  }
}
@keyframes slideFadeInDown2 {
  0% {
    opacity: 0;
    margin-top: 70%;
  }
  70% {
    opacity: 1;
    margin-top: 80%;
  }
  100% {
    opacity: 1;
    margin-top: 80%;
  }
}
@keyframes slideRhtSlideIn {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  40% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes lftSlideIn {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes rhtSlideIn {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRotateIn {
  0% {
    opacity: 0;
    transform: rotateY(45deg);
  }
  100% {
    opacity: 1;
    transform: rotateY();
  }
}
@keyframes flipInY {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  60% {
    transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
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,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

.m-btm10 {
  margin-bottom: 10px;
}

.m-btm15 {
  margin-bottom: 15px;
}

.m-btm20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .m-btm20 {
    margin-bottom: 15px;
  }
}

.m-btm30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .m-btm30 {
    margin-bottom: 20px;
  }
}

.m-btm40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .m-btm40 {
    margin-bottom: 25px;
  }
}

.m-btm50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .m-btm50 {
    margin-bottom: 30px;
  }
}

.m-lft10 {
  margin-left: 10px;
}

.m-lft15 {
  margin-left: 15px;
}

.m-lft20 {
  margin-left: 20px;
}

.m-rht10 {
  margin-right: 10px;
}

.m-rht15 {
  margin-right: 15px;
}

.m-rht20 {
  margin-right: 20px;
}

.m-top10 {
  margin-top: 10px;
}

.m-top15 {
  margin-top: 15px;
}

.m-top20 {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .m-top20 {
    margin-bottom: 15px;
  }
}

.m-top30 {
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  .m-top30 {
    margin-bottom: 20px;
  }
}

/* リンク　共通設定 */
a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
}
a:hover {
  color: #EAE6E1;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}
a img {
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

/*　テキスト装飾設定　*/
.tBold {
  font-weight: bold;
}

.tRed {
  color: #bc2323;
}

.tGray {
  color: #666666;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

/* ※を使った注意書き用*/
.ann {
  margin-left: 1em;
  text-indent: -1em;
}

/* ==========================================================================
  Base
========================================================================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-size: 1.25rem;
  line-height: 1.6;
  background: #EAE6E1;
  position: relative;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1rem;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 0.875rem;
  }
}

_::-webkit-full-page-media,
_:future,
:root body {
  font-feature-settings: "pkna";
}

.wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .wrap {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 599px) {
  .wrap {
    padding-right: 5%;
    padding-left: 5%;
  }
}

.wrap02 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

div:after,
section:after {
  content: "";
  display: block;
  clear: both;
}

input,
textarea {
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 2px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

/* 表示・非表示設定 */
@media screen and (max-width: 1200px) {
  .pc-only {
    display: none;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .mid-none {
    display: none;
  }
}

.tb-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tb-only {
    display: block;
  }
}

.mid-only {
  display: none;
}
@media screen and (max-width: 960px) {
  .mid-only {
    display: block;
  }
}

/*==============================================================================
    Contents Layout
==============================================================================*/
#container {
  width: 90%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 70px;
  padding-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #container {
    padding-top: 40px;
    padding-bottom: 88px;
  }
}

/*==========================================================================
  Header
========================================================================== */
#lp-hakama .h1-title {
  font-weight: 100;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 0.5625rem;
  color: #6F6058;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}

@media screen and (max-width: 599px) {
  #lp-hakama .h1-title {
    top: 13px;
  }
}
/*==========================================================================
  #mainArea
========================================================================== */
#main,
main {
  position: relative;
}
#main .deco,
main .deco {
  position: absolute;
  width: 20%;
  left: 5%;
  top: -100px;
}
#main .deco.deco02,
main .deco.deco02 {
  max-width: 290px;
  left: auto;
  right: 10%;
  top: -20px;
}
@media screen and (max-width: 960px) {
  #main,
  main {
    overflow: hidden;
  }
}

#main {
  width: 100%;
  height: 100%;
  position: relative;
}
#main .video {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#main .video .img {
  width: 100%;
  height: 100%;
}
#main .video .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#main .video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main #inner {
  overflow: hidden;
}
#main .decoArea {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
}
#main .decoArea .deco {
  left: 5%;
  top: -100px;
}
#main .decoArea .deco.deco01 {
  animation: fadeRotateIn 2.2s ease-in-out forwards, wobbling 3s ease-in-out 2.2s infinite alternate;
}
#main .decoArea .deco.deco02 {
  width: 5%;
  left: auto;
  right: 3%;
  bottom: 35%;
  top: auto;
  animation: lftSlideIn 1.5s ease-in-out 0s forwards, floater 3s ease-in-out 1.5s infinite alternate;
}
#main .decoArea .deco.deco03 {
  width: 8%;
  left: -40px;
  bottom: 20%;
  top: auto;
  animation: rhtSlideIn 1.5s ease-in-out 0s forwards, wiggle 3s ease-in-out 1.5s infinite alternate;
}
@media screen and (max-width: 1200px) {
  #main .video video {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1200px) {
  #main .decoArea {
    display: none;
  }
}

/*----------------------------------------------------------------
　2カラム
----------------------------------------------------------------*/
.column2 {
  display: flex;
}
.column2 .cntLft, .column2 .cntRht {
  width: 50%;
}

/*----------------------------------------------------------------
　3カラム
----------------------------------------------------------------*/
.column3 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.column3 li {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
}
.column3 li:nth-child(3n) {
  margin-right: 0;
}

/*----------------------------------------------------------------
	imgList
----------------------------------------------------------------*/
.imgList {
  display: flex;
}
.imgList li {
  width: calc((100% - 30px) / 3);
}
.imgList li + li {
  margin-left: 15px;
}

/*----------------------------------------------------------------
	typeList
----------------------------------------------------------------*/
.typeList {
  display: flex;
  justify-content: space-between;
}
.typeList li {
  position: relative;
}
.typeList li .titleArea {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 9px;
  background: #81171F;
  color: #FFF;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.typeList li .titleArea .enSub {
  width: 80%;
}
.typeList li .titleArea .enSub img {
  max-height: 47px;
  max-width: 113px;
}
.typeList li .titleArea .txt {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
}
.typeList li.gorgeous .titleArea {
  background: #4B322C;
}
.typeList li.retro .titleArea {
  background: #00491F;
}
.typeList li.girly .titleArea {
  background: #CF9080;
}
.typeList li.originality .titleArea {
  background: #1F1E1F;
}
.typeList li.cool .titleArea {
  background: #073351;
}
.typeList li.sweet .titleArea {
  background: #EAA0C5;
}
.typeList li + li {
  margin-left: 15px;
}

.cv {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #ac3e54;
  padding: 25px 0;
  z-index: 3;
  font-family: '"Cormorant Garamond","游明朝体","Yu Mincho",YuMincho,serif', serif;
  transition: 0.5s;
}

.cv-inner {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 5px;
}

.cv-list {
  display: flex;
  padding: 0 10px;
  justify-content: space-between;
}

.cv-list li {
  width: 50%;
  padding: 0 10px;
  flex: 1;
}

.cv-btn01 {
  background: #fff;
  color: #77291d;
  background-color: #EB6E80;
  box-shadow: 0 8px 0 #793943;
  animation: spin-flash 1.2s ease infinite alternate;
}


.cv-btn {
  display: block;
  padding: 5px 0;
  border-radius: 100px;
  font-size: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  line-height: 2;
}
.cv-btn:active {
  box-shadow: none;
  transform: translateY(8px);
}

.cv-btn02 {
  background-color: #6F6058;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .cv-btn02{
    box-shadow: 0 8px 0 #504640;
  }
  .cv-btn02:active {
    box-shadow: none;
    transform: translateY(8px);
  }
}

.cv-btn02 p {
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  padding-left: 10px;
}

#responsiveIframe{
  height: 2790px;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .is-sp-hide{
    display: none;
  }
}

@media screen and (max-width: 599px) {
  #container{
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  #responsiveIframe{
    height: 3100px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 599px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
