@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Castoro&display=swap"); */
/* break point
---------------------- */
/* 絶対配置中央揃え
---------------------- */
* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
}

body {
  font-size: 16px;
  /* font-family: neue-haas-grotesk-display, "游ゴシック体", YuGothic, "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Roboto", Roboto, Osaka, sans-serif; */
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #1a1a1a;
  background-color: #ffffff;
  font-weight: 600;
}

ul,
li {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: top;
  height: auto;
  line-height: 0;
  font-size: 0;
}

/*font set*/
.f_main {
  /* font-family: neue-haas-grotesk-display, Arial, Helvetica, sans-serif; */
}

p {
  font-size: 1.6rem;
}

.underline {
  text-decoration: underline;
}
.underline:hover {
  text-decoration: none;
}

/* 直線長方形のプログレスバー */
.swiper-container {
  position: relative;
  margin: 0 auto;
}

.swiper-pagination {
  bottom: -35px !important;
}

.swiper-pagination-bullet {
  position: relative;
  width: 60px;
  height: 5px;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: black;
}

.swiper-pagination-bullet-active::before {
  animation: paginationActive 5s linear forwards;
}

@keyframes paginationActive {
  100% {
    width: 100%;
  }
}
.tax {
  font-size: 1rem;
}

/*web接客*/
#flipdesk_root {
  display: none;
}

/* 遅延読み込みアニメーション
---------------------- */
.animation.lazyload,
.animation.lazyloading {
  opacity: 0;
  visibility: hidden;
}

.animation.lazyloaded {
  opacity: 1;
  visibility: visible;
  transition: 0.8s;
}

/* 右からふわっと現れる */
.fadeInRight {
  animation-name: fadeInRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards; /*アニメーション実行後、要素が表示されたままにする*/
}

@-webkit-keyframes fadeInRightAnime {
  0% {
    opacity: 0; /*非表示*/
    transform: translateX(100px); /*100px分横にずれる*/
  }
  100% {
    opacity: 1; /*表示*/
    transform: translateX(0); /*元の位置*/
  }
}
@keyframes fadeInRightAnime {
  0% {
    opacity: 0; /*非表示*/
    transform: translateX(100px); /*100px分横にずれる*/
  }
  100% {
    opacity: 1; /*表示*/
    transform: translateX(0); /*元の位置*/
  }
}
.fadeInRightTrigger {
  opacity: 0; /*非表示*/
}

/* 左からふわっと現れる */
.fadeInLeft {
  animation-name: fadeInLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInLeftAnime {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeftAnime {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftTrigger {
  opacity: 0;
}

.pc-back {
  background-image: url(../image/back.jpg);
  background-size: cover;
  position: fixed;
  height: 100vh;
  width: 100%;
  background-attachment: fixed;
  z-index: -1;
}

.pcnavi {
  background: #ffffff;
  height: 100vh;
  max-width: 1200px;
  max-height: 600px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .pcnavi {
    max-width: 1100px;
    max-height: 600px;
    z-index: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .pcnavi {
    max-width: 400px;
    max-height: 600px;
    margin: auto 80px;
    z-index: 0;
  }
}
@media only screen and (max-width: 900px) {
  .pcnavi {
    display: none;
  }
}
@media (max-width: 599px) {
  .pcnavi {
    display: none;
  }
}
.pcnavi__link {
  margin-left: 12%;
}
@media only screen and (max-width: 1100px) {
  .pcnavi__link {
    margin-left: 17%;
  }
}
.pcnavi__url:first-child {
  padding-bottom: 10px;
}
.pcnavi__wrap {
  width: 15%;
  margin-left: 56%;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1100px) {
  .pcnavi__wrap {
    display: none;
  }
}
.pcnavi__item {
  width: 40%;
  padding-bottom: 5%;
}
.pcnavi__item.link7 {
  padding-bottom: 0;
}
.pcnavi__number {
  padding-bottom: 5%;
  font-size: 0.9rem;
}

.pcnavi a:hover {
  color: #333333;
  background-color: #eeeff4;
}

.content {
  position: relative;
  width: 400px;
  width: 585px;
  background-color: #ffffff;
  background-color: rgba(231, 231, 231,.7);
  margin: 0 auto;
  box-sizing: content-box;
  box-sizing: border-box;
  padding: 0 15px;
}
@media (max-width: 599px) {
  .content {
    width: 100%;
    border: none;
    padding: 0 5%;
  }
}

.mv {
  position: relative;
}
.mv__logo {
  position: absolute;
  width: 45%;
  top: 135px;
  left: 50%;
  margin: auto;
  transform: translateX(-50%) translateY(-50%);
}
@media (min-width: 600px) {
  .mv__logo {
    top: 90px;
  }
}
.mv__text {
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.1rem;
  white-space: nowrap;
}
@media (min-width: 600px) {
  .mv__text {
    top: 120px;
  }
}

.navi {
  z-index: 20;
  padding: 10px 0;
  height: 40px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  text-align: center;
}
@media (min-width: 600px) {
  .navi {
    display: none;
  }
}

/*JSを使いfixedクラスが付与された際の設定*/
.navi.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}

.store {
  position: fixed;
  font-size: 1.3rem;
  right: 30%;
}

.menu {
  position: fixed;
  white-space: nowrap;
  z-index: 10;
  font-size: 1.3rem;
  right: 8%;
}
.menu__btn {
  color: #333333;
}

.navigation {
  padding-top: 20%;
  position: fixed;
  z-index: 8;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transition: opacity 0.5s ease;
  height: 100vh;
  overflow: auto;
  padding-bottom: 50px;
}
.navigation__wrap {
  width: 60%;
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.navigation__item {
  font-size: 1.3rem;
  width: 45%;
  padding-bottom: 5%;
}
.navigation__item:last-child {
  margin-bottom: 10px;
}
.navigation__number {
  padding-bottom: 5%;
}

.navigation.panelactive {
  z-index: 8;
  left: 0px;
  opacity: 1;
  pointer-events: all;
}

#navigation ul li a:hover:after {
  width: 100%;
}

.link {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0 65px;
}
.link__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.link__item {
  width: 30%;
  padding-bottom: 15px;
}

.look__number {
  padding: 0 0 5% 15%;
  font-size: 1.3rem;
}
.look__group {
  /* padding: 0 15%; */
  margin: 0 auto;
}
@media (min-width: 600px) {
  .look__group {
    margin: 0 auto;
  }
}
.look__group-wrap {
  position: relative;
  height: auto;
}
.look__group-img01 {
  position: relative;
  width: 70%;
  margin-right: 0;
  margin-left: auto;
  z-index: 5;
}
.look__group-img02 {
  position: relative;
  width: 60%;
  margin: -25% 0 0 0;
  z-index: 10;
}
.look__group-img03 {
  position: relative;
  width: 80%;
  margin-left: 0;
  margin-right: auto;
  z-index: 5;
}
.look__group-img04 {
  position: relative;
  width: 60%;
  margin: -13% 0 0 40%;
  z-index: 10;
}

.credit {
  background-color: hsla(0, 0%, 100%, 0.85);
  position: absolute;
  width: 100%;
  bottom: 49px;
  display: none;
  margin: 0 auto;
  padding: 30px 20px 10px;
  text-align: right;
  z-index: 2;
}
.credit__list {
  margin-bottom: 18px;
  text-align: left;
}
.credit__item {
  align-items: center;
  display: flex;
  font-size: 1.1rem;
  justify-content: space-between;
  margin-bottom: 20px;
}

.buy {
  text-align: right;
  text-decoration: underline;
  width: 90px;
}

.footer {
  padding: 50px 0;
}
.footer__btn-wrap {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: auto;
  width: 70%;
}
.footer__text {
  border-bottom: 1px solid black;
}
.footer__btn:first-child {
  margin-right: 10%;
}

.copyright {
  text-align: center;
  padding: 10px 0px;
  color: #333333;
}
.copyright p {
  font-size: 1.2rem;
}







/*custom*/
/*****top*****/
.top__inner_logo {
  background-image: url(../image/top_back.png);
  background-size: contain;
  padding: 15% 3% 15% 6%;
  text-align: center;
  margin-bottom: 3rem;
}
.top__inner_logo h1 img {
  width: 55%;
  margin: 0 auto 7%;
}
.top__inner_logo p.text1 {
  font-size: 1.8rem;
  margin-bottom: 3%;
  letter-spacing: -1px;
}
.top__inner_logo p.text2 {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: -1px;
}
@media (min-width: 600px) {
  .top__inner_logo p.text1 {
    font-size: 2.4rem;
  }
  .top__inner_logo p.text2 {
    font-size: 1.8rem;
  }
}

.top__inner_image {
  display: inline-flex;
  margin-bottom: 5rem;
}
.top__inner_image > div:nth-child(1) {
  margin-right: 2%;
}

#top h2 {
  margin-bottom: 1rem;
  text-align: center;
}
.top__inner_project {
  display: inline-flex;
  align-items: center;
}
#top h2 {
  font-size: 2.4rem;
}
.top__inner_project .image {
  width: calc(65% - 10px);
  margin-right: 10px;
}
.top__inner_project .text {
  width: 35%;
}
.top__inner_project .text p {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media (max-width: 390px) {
  .top__inner_project .image {
    width: calc(60% - 10px);
  }
  .top__inner_project .text {
    width: 40%;
  }
}
@media (min-width: 600px) {
  #top h2 {
    font-size: 3rem;
  }
  .top__inner_project .image {
    width: calc(66% - 10px);
  }
  .top__inner_project .text {
    width: 34%;
  }
  .top__inner_project .text p {
    font-size: 1.8rem;
  }
}

/*****common*****/
.check {
  margin-top: 5rem;
  padding-top: 9rem;
  background-image: url(../image/p_back.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size:contain;
}
.check h2 {
  width: 90%;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
.check h2 span {
  font-size: 3rem;
}
@media (min-width: 600px) {
  .check h2 span {
    font-size: 4rem;
  }
}
.check p.text {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.check p.text span {
  font-size: 2.4rem;
  margin: 0 .5rem;
}
.check .text.large {
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
.check .topimage {
  width: 90%;
  margin: 2rem auto;
  text-align: center;
}
@media (max-width: 390px) {
  .check .text.large {
    font-size: 2rem;
  }
}
@media (min-width: 600px) {
  .check {
    margin-top: 8rem;
    padding-top: 13rem;
  }
  .check h2 {
    font-size: 2.6rem;
  }
  .check p.text {
    font-size: 2rem;
  }
  .check p.text span {
    font-size: 3rem;
    margin-left: .8rem;
  }
  .check .text.large {
    font-size: 3rem;
  }
}

.look__group {
  margin-top: 3rem;
}
.look__group-img01_ou {
  position: relative;
  width: 49%;
  margin-top: 0%;
  margin-left: auto;
}
.look__group-img02_ou {
  position: relative;
  width: 49%;
  margin-top: -70%;
  margin-right: auto;
}
.look__group-img03_ou {
  position: relative;
  width: 49%;
  margin-top: 0%;
  margin-right: auto;
}
.look__group-img04_ou {
  position: relative;
  width: 49%;
  margin-top: -70%;
  margin-left: auto;
}

.check .topimage2 {
  width: 80%;
  margin: 2rem auto;
}

.check__itemdata {
  width: 80%;
  margin: 0 auto 8rem;
}
.check__itemdata ul {
  background-image: url(../image/p_line.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.check__itemdata ul li {
  font-size: 1.8rem;
  display: inline-block;
  background-image: url(../image/p_check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 3rem;
  margin-right: 1rem;
  margin-right: 0rem;
}
.check__itemdata .check__itemdata__list2 {
  font-size: 1.8rem;
  background-image: url(../image/p_check.png), url(../image/p_line.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center,center bottom;
  padding-left: 3rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.check__itemdata .check__itemdata__list2.row {
  font-size: 1.6rem;
}
.check__itemdata__detail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
}
.check__itemdata__detail .check__itemdata__hinban {
  font-size: 1.2rem;
  margin-right: 1.5rem;
}
.check__itemdata__detail .check__itemdata__name {
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-left: -5px;
}
.check__itemdata__detail .check__itemdata__price {
  font-size: 2rem;
}
.check__itemdata__detail .check__itemdata__price::before {
  content: "￥";
  font-size: 2rem;
}
.check__itemdata__detail .check__itemdata__price::after {
  font-size: 1.2rem;
  content: "（税込）";
  letter-spacing: -1px;
}
.check__itemdata .check__itemdata__linkbt {
  margin: 1rem auto;
  text-align: center;
}
.check__itemdata .check__itemdata__linkbt img {
  width: 65%;
}
.check__itemdata .check__itemdata__linkbt2 {
  text-align: center;
}
.check__itemdata .check__itemdata__linkbt2 a {
  margin: 1rem auto;
  display: block;
  width: 60%;
  min-width: 280px;
  font-size: 1.8rem;
  font-weight: normal;
  padding: 5px 20px;
  background-color: #000;
  color: #FFF;
}
.check__itemdata .check__itemdata__linkbt2 a:hover {
  opacity: .7;
  transition : .2s;
}
.check__itemdata .check__itemdata__linkbt2 a::after {
  content: "▲";
  transform: rotate( 90deg );
  display: inline-block;
  margin-left: 5px;
}
@media (max-width: 390px) {
  .check__itemdata ul li {
    font-size: 1.4rem;
  }
  .check__itemdata .check__itemdata__list2 {
    font-size: 1.4rem;
  }
  .check__itemdata .check__itemdata__list2.row {
    font-size: 1.4rem;
  }
  .check__itemdata__detail .check__itemdata__name {
    font-size: 1.8rem;
  }
}
@media (min-width: 600px) {
  .check__itemdata ul li {
    font-size: 2.4rem;
    padding-left: 4rem;
    margin-right: 1rem;
  }
  .check__itemdata .check__itemdata__list2 {
    font-size: 2.4rem;
    padding-left: 4rem;
  }
  .check__itemdata .check__itemdata__list2.row {
    font-size: 2.2rem;
  }
  .check__itemdata__detail .check__itemdata__hinban {
    font-size: 1.8rem;
  }
  .check__itemdata__detail .check__itemdata__name {
    font-size: 3rem;
  }
  .check__itemdata__detail .check__itemdata__price {
    font-size: 3rem;
  }
  .check__itemdata__detail .check__itemdata__price::before {
    font-size: 3rem;
  }
  .check__itemdata__detail .check__itemdata__price::after {
    font-size: 1.6rem;
  }
  .check__itemdata .check__itemdata__linkbt2 a {
    font-size: 2.2rem;
  }
}

/*****check02*****/
#check02.check .topimage2 {
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
}
#check02.check .topimage2 > div {
  width: 46%;
  margin: 0 2% 4%;
}

/*****footer*****/
.footer__linkbt {
  margin: 0 auto;
  text-align: center;
}
.footer__linkbt a {
  font-size: 1.8rem;
  background-color: #000;
  color: #FFF;
  padding: 10px 30px;
  border-radius: 9999px;
  font-weight: normal;
  letter-spacing: 2px;
}
.footer__linkbt a:hover {
  /* background-color: #FFF;
  color: #000; */
  opacity: .7;
  transition : .2s;
}
@media (min-width: 600px) {
  .footer__linkbt a {
    font-size: 2rem;
  }
}