@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: orpheuspro, serif;
  font-weight: 500;
  font-style: normal;
  width: 100%;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-size: 16px;
  overflow-x: hidden;
  margin: 0 auto;
  transition: all 1.6s ease 0s;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

#fv {
  position: relative;
  height: 100vh;
}
#fv h1 img {
  position: absolute;
  width: 54%;
  margin: 20px;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  #fv h1 img {
    width: 18%;
    margin: 3% 0 0 8%;
  }
}
#fv div img {
  position: absolute;
  width: 48%;
  top: 64%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (min-width: 769px) {
  #fv div img {
    width: 17%;
    left: 17%;
    top: 85%;
  }
}
#fv .slide {
  width: auto;
  height: 100vh; /* 画像の高さ */
  background-image: url(../images/fv.jpg);
  background-repeat: repeat-x;
  background-size: 280vh; /* 画像の高さ */
  animation: loop 35s linear infinite;
  border: 1px solid;
}
@media screen and (min-width: 769px) {
  #fv .slide {
    margin-left: 20%;
  }
}
@keyframes loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0; /* 画像のマイナス幅 */
  }
}

.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  position: absolute;
  left: -23px;
  top: -4vh;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.read {
  margin: 75px 8%;
  letter-spacing: 0.01rem;
  line-height: 2;
  font-size: 15px;
  font-family: "ryo-text-plusn", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .read {
    margin: 150px auto;
    letter-spacing: 0.01rem;
    font-size: 16px;
    text-align: center;
    line-height: 2.8;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 130px;
}
@media screen and (min-width: 769px) {
  .nav {
    flex-wrap: nowrap;
    margin: 0 14% 250px;
  }
}

.item {
  position: relative;
  width: 46%;
  padding: 3px;
}
.item:hover {
  opacity: 0.6;
  transition: 0.5s;
}
.item__img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.item_g {
  position: relative;
  width: 46%;
  padding: 3px;
}
.item_g__img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.t_dec {
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .t_dec {
    width: 48%;
  }
}

.left {
  position: relative;
  padding-top: 180px;
  background: #E5E6E8;
}
@media screen and (min-width: 769px) {
  .left {
    padding-top: 280px;
  }
}
.left h2 {
  width: 30%;
  position: absolute;
  z-index: 10;
  top: 118px;
}
@media screen and (max-width: 768px) {
  .left h2 {
    left: 1%;
  }
}
@media screen and (min-width: 769px) {
  .left h2 {
    margin-left: 0%;
    width: 10%;
    padding-top: 100px;
  }
}
.left .i_title {
  position: absolute;
  font-size: 1.8rem;
  writing-mode: vertical-lr;
  white-space: nowrap;
  top: 13.5%;
  letter-spacing: 2.8px;
  color: #B4CB46;
}
@media screen and (max-width: 768px) {
  .left .i_title {
    left: -2%;
  }
}
@media screen and (min-width: 769px) {
  .left .i_title {
    margin-left: -0.5%;
    font-size: 2.2rem;
    top: 380px;
  }
}

.right {
  position: relative;
}
@media screen and (max-width: 768px) {
  .right {
    padding-top: 180px;
  }
}
@media screen and (min-width: 769px) {
  .right {
    margin: 300px auto 0;
  }
}
.right h2 {
  width: 32%;
  position: absolute;
  z-index: 10;
  top: 118px;
  right: 1%;
}
@media screen and (min-width: 769px) {
  .right h2 {
    top: -4%;
    right: 30%;
    width: 10%;
  }
}
.right .i_title {
  position: absolute;
  font-size: 2.2rem;
  writing-mode: vertical-lr;
  white-space: nowrap;
  top: 17%;
  letter-spacing: 2.8px;
  color: #B4CB46;
}
@media screen and (max-width: 768px) {
  .right .i_title {
    right: -1.7%;
  }
}
@media screen and (min-width: 769px) {
  .right .i_title {
    right: 30%;
    font-size: 2.2rem;
    top: 90px;
  }
}

@media screen and (max-width: 768px) {
  .i_t_05 {
    font-size: 2.1em !important;
  }
}
.container {
  position: relative;
}

@keyframes change-img-anim {
  0% {
    opacity: 1;
  }
  49.9999999% {
    opacity: 1;
  }
  50% {
    opacity: 0.001;
  }
}
.item_text2 {
  padding: 10% 15% 90px 10%;
  font-size: 0.8rem;
  line-height: 2;
  font-family: "ryo-text-plusn", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .item_text2 {
    font-size: 15px;
    padding: 50px 14% 120px 10%;
  }
}

.r_text {
  padding: 10% 10% 90px 15% !important;
}
@media screen and (min-width: 769px) {
  .r_text {
    padding: 50px 0 120px 20% !important;
    line-height: 2.3;
  }
}

.img-slide-box {
  position: relative;
}
.img-slide-box .slide-img-wrap {
  position: relative;
  overflow: hidden;
}

.btn-credit {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media screen and (min-width: 769px) {
  .btn-credit {
    right: 66px;
    bottom: 66px;
  }
}

.slick-active .btn-credit {
  pointer-events: auto;
}

.btn-credit::after {
  content: "";
  background-image: url(../images/credit_btn.svg);
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 25px;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .btn-credit::after {
    width: 30px;
    height: 30px;
    position: absolute;
  }
}

.show .btn-credit::after {
  content: "";
  background-image: url(../images/credit_btn.svg);
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
  position: absolute;
  z-index: 50;
}
@media screen and (min-width: 769px) {
  .show .btn-credit::after {
    width: 30px;
    height: 30px;
    position: absolute;
  }
}

.credit_w {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 4.8% 8%;
  height: 100%;
  transition: all 0.3s linear 0.1s !important;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(254, 254, 254, 0.47);
  font-size: 10px;
  margin: 2% 0 2% 20%;
  width: 80%;
  justify-content: end;
  padding-bottom: 40px;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .credit_w {
    padding: 10% 0;
    justify-content: end;
    margin: 2% 0 0 20%;
  }
}
.credit_w li {
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .credit_w li {
    display: flex;
    margin-left: 42px;
  }
}
.credit_w a:hover {
  opacity: 0.5;
}
.credit_w .under-l {
  text-decoration: underline;
}
.credit_w .credit_li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  font-size: 13px;
  font-weight: 400;
  color: #000;
}
@media screen and (min-width: 769px) {
  .credit_w .credit_li {
    font-size: 14px;
    width: 460px;
  }
}
.credit_w .credit_li img {
  width: 41px;
}
@media screen and (min-width: 769px) {
  .credit_w .credit_li img {
    margin-right: 42px;
  }
}
@media screen and (min-width: 769px) {
  .credit_w .credit_li p {
    width: 370px;
  }
}

.shop_btn {
  width: 70px !important;
}

.coming_btn {
  width: 74px !important;
}

.show .credit_w {
  opacity: 1;
  pointer-events: inherit;
  transform: translateY(0);
  z-index: 9;
}

.item_area {
  height: 80%;
}

.i_box {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .i_box {
    padding: 0 16% 0;
  }
}
@media screen and (min-width: 769px) {
  .i_box {
    padding-top: 20px;
  }
}

.credit {
  display: flex;
  width: 68%;
  font-size: 10px;
  justify-content: space-between;
  margin: 20px auto 0;
  padding-bottom: 100px;
  letter-spacing: 1px;
  line-height: 1.7;
}
.credit a img {
  width: 50px;
}
@media screen and (min-width: 769px) {
  .credit a img {
    width: 55px;
  }
}
@media screen and (min-width: 769px) {
  .credit {
    width: 350px;
    font-size: 12px;
    margin: 30px auto !important;
    padding-bottom: 250px;
    line-height: 1.7;
  }
}

.i_slide {
  position: relative;
  width: 85%;
}
.i_slide .i_slide_img {
  width: auto;
  height: 137vw;
  background-image: url(../images/item02.jpg);
  background-repeat: repeat-x;
  background-size: 203vw;
  animation: loop 50s linear infinite;
  border: 1.5px solid #000;
}
@media screen and (min-width: 769px) {
  .i_slide .i_slide_img {
    height: 45vw;
    background-size: 68vw;
  }
}
@keyframes loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0; /* 画像のマイナス幅 */
  }
}

.item04_img {
  background-image: url(../images/item04.jpg) !important;
}

.i_slide2 {
  position: relative;
  width: 85%;
  margin-left: 15%;
}
.i_slide2 .i_slide_img {
  width: auto;
  height: 137vw;
  background-image: url(../images/item05.jpg);
  background-repeat: repeat-x;
  background-size: 203vw;
  animation: loop 50s linear infinite;
  border: 1px solid #000;
}
@media screen and (min-width: 769px) {
  .i_slide2 .i_slide_img {
    height: 45vw;
    background-size: 68vw;
  }
}
@keyframes loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0; /* 画像のマイナス幅 */
  }
}

.look__photo.inview--enter {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
@media screen and (min-width: 769px) {
  .look__photo.inview--enter {
    width: 350px;
    margin: 0 auto;
  }
}

.look__photo {
  position: relative;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: none;
  box-sizing: border-box;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.look__photo.inview--enter img {
  transition: opacity 2000ms cubic-bezier(0.33, 0.86, 0.165, 1);
  transition-delay: 1000ms;
  opacity: 0;
  -ms-filter: none;
  filter: none;
}

.look__photo img {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  animation-name: fadeIn;
  animation-duration: 2s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.look__photo.inview--enter img.isActive {
  opacity: 1;
}

.look__photo.inview--enter:before, .look__photo.inview--enter:after {
  transition: transform 950ms cubic-bezier(0.58, 0.175, 0.085, 0.945);
  transform: scale(1, 1);
}

.inview--enter:before, .inview--enter:after {
  transform: scale(1, 1);
  transform: scale(0, 0);
  opacity: 0;
}

@keyframes animation2 {
  0% {
    transform: scale(0, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
.inview--enter.isActive:before,
.inview--enter.isActive:after {
  transform: scale(1, 1);
  opacity: 1;
  animation-name: animation2;
  animation-duration: 0.9s;
}

.look__photo:after, .look__photo::after {
  width: 100%;
  height: 1px;
  top: auto;
  bottom: 0;
  transform-origin: left center;
  transform: scale(0, 1);
}

.look__photo:before, .look__photo:after {
  display: block;
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #000;
  top: 0;
  right: 0;
  transform-origin: top center;
  transform: scale(1, 0);
  z-index: 2;
}

.look__photo:after {
  width: 100%;
  height: 1px;
  top: auto;
  bottom: 0;
  transform-origin: left center;
  transform: scale(0, 1);
}

.look--square .look__wrap .look__photo:before, .look--square .look__wrap .look__photo:after {
  display: block;
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #000;
  top: 0;
  right: 0;
  transform-origin: top center;
  transform: scale(1, 0);
  z-index: 2;
}

.look__photo {
  width: 100%;
  border-right: none;
}

.s_04 {
  width: 85%;
  margin-left: 15%;
}

.s_04_2 {
  margin-top: 20%;
  width: 85%;
}

.r_20 {
  right: 20% !important;
  left: 0 !important;
}

/* footer */
.footer {
  margin: 80px auto 50px;
}
@media screen and (min-width: 769px) {
  .footer {
    margin: 150px auto 50px;
  }
}
.footer .s_cre {
  text-align: center;
  margin: 140px auto 100px;
  line-height: 2.2;
  letter-spacing: 1px;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .footer .s_cre {
    font-size: 0.9rem;
    line-height: 2.7;
    margin: 200px auto 150px;
  }
}

.footer a:hover {
  opacity: 0.8;
}

.footer-btn-wrap {
  text-align: center;
  margin-bottom: 100px;
}

#f-logo {
  display: block;
  margin: 100px auto 0;
  width: 110px;
}

#f-list li {
  text-align: center;
  font-size: 11px;
  padding: 2px 0;
}

#f-copy {
  text-align: center;
  font-size: 11px;
  margin-top: 40px;
}

#f-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#f-link li {
  width: 24px;
  margin: 0 15px;
}

#f-link a:hover {
  opacity: 0.75;
}

.footer-tit {
  text-align: right;
  display: inline-block;
}

.footer-btn a {
  border: 1px solid #000;
  padding: 10px 35px;
  background: #fff;
}

.footer-btn a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
}

.footer-menu li {
  width: 33.333%;
  text-align: center;
}

.footer-menu li:not(:nth-child(3n)) .menu-tit {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.footer-menu .coming-soon p {
  color: #808080;
  padding-top: 4px;
}

.footer-menu .menu-tit {
  margin-bottom: 3px;
}

.footer-menu .menu-tit span {
  display: flex;
}

.footer-menu .coming-soon {
  pointer-events: none;
}

.coming-soon .menu-tit > div::after,
.coming-soon .menu-tit > div::before {
  display: none;
}

.border-outer {
  width: 100%;
  z-index: 9;
  position: relative;
  pointer-events: none;
}

.footer .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.f-credit li {
  padding: 2px 0;
}

.staff-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 68%;
  margin-left: auto;
  margin-right: auto;
}

.staff-box:not(:last-child) {
  margin-bottom: 32px;
}

.staff-img {
  width: 130px;
}

.staff-link {
  width: calc(100% - 130px);
  padding-left: 17%;
}

.staff-link * {
  display: block;
}

.staff-name {
  font-size: 16px;
  text-decoration: underline;
}

.sraff-height {
  margin-top: 2px;
  font-size: 12px;
}

.staff-ico {
  margin-top: 8px;
  width: 16px;
}

.staff-name:hover {
  opacity: 0.75;
}

.footer-attention {
  border: 1px solid #000;
  padding: 50px 10%;
}

.footer-attention p {
  letter-spacing: 0;
}

@media only screen and (min-width: 768px) {
  .staff-wrap {
    width: 100%;
    max-width: 756px;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
  }
  .staff-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 26.98%;
    margin-left: 0;
    margin-right: 9.53%;
  }
  .staff-box:last-child {
    margin-right: 0;
  }
  .staff-box:not(:last-child) {
    margin-bottom: 0;
  }
  .staff-img {
    width: 100%;
    max-width: none;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .staff-link {
    width: auto;
    padding-left: 0;
  }
  .staff-name {
    font-size: 18px;
  }
  .sraff-height {
    margin-top: 6px;
    font-size: 16px;
  }
  .staff-ico {
    margin-top: 12px;
    width: 19px;
  }
  .staff-name:hover {
    opacity: 0.75;
  }
  .footer-attention {
    padding: 112px;
  }
}
#f-link-area {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#f-link-area a:hover {
  opacity: 0.75;
}

.all-btn {
  display: block;
  padding: 12px 12px;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  width: 90%;
  margin: 0 auto 15px;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .all-btn {
    width: 400px;
  }
}

.all-btn.snap {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

.all-btn:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  opacity: 1 !important;
}

.all-btn.snap:hover {
  border: 1px solid #AFAFAF;
  background: #AFAFAF;
  color: #fff;
  opacity: 1;
}

.more-btn:hover {
  background: #000;
}

.slide-item {
  padding-left: 10%;
  padding-right: 10%;
}

.footer .w88 {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media only screen and (min-width: 768px) {
  .slide-item {
    padding-left: 18%;
    padding-right: 18%;
  }
  #soon .w50 {
    padding-top: 5px;
  }
  .o-text {
    text-align: center;
  }
}
.img-slide {
  width: 85%;
  height: 100%;
  margin-left: 15%;
}

.m_r20 {
  margin-left: 0% !important;
  margin-right: 20% !important;
}

.r_32 {
  right: 29%;
}

.c_m_20 {
  margin: 2% 20% 2% 0% !important;
}

.c_m_0 {
  margin: 0 !important;
  width: 100%;
}

.img-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.w_0 {
  width: 100%;
}

.slick-slide img {
  border: 1.5px solid #000;
}

@media screen and (min-width: 769px) {
  .w_pc {
    width: 40%;
    margin: 0 auto;
  }
  .w_350 {
    width: 350px;
    margin: 0 auto;
  }
}
.w_74 {
  width: 74%;
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
.op1 {
  opacity: 1;
}

.footer-archives {
  border-top: 1px solid #BAB8B8;
}

.footer-archives h2 {
  font-size: 15px;
}

.footer-archives a:hover {
  opacity: 0.75;
}

@media only screen and (min-width: 768px) {
  .footer-credit {
    font-size: 14px;
  }
  .footer-to-top a, footer .all-btn {
    font-size: 16px;
  }
  .footer-archives h2 {
    font-size: 23px;
  }
}
.pt05 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.fs11 {
  font-size: 11px !important;
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs15 {
  font-size: 15px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs20 {
  font-size: 20px !important;
}

.fs22 {
  font-size: 22px !important;
}

.fs24 {
  font-size: 24px !important;
}

.fs26 {
  font-size: 26px !important;
}

.fs28 {
  font-size: 28px !important;
}

.fs30 {
  font-size: 30px !important;
}

.fs34 {
  font-size: 34px !important;
}

.fs48 {
  font-size: 48px !important;
}

@media only screen and (max-width: 767px) {
  .sp-imgmax {
    width: 111.11%;
    margin-left: -5.555%;
    margin-right: -5.555%;
  }
  .is-pc {
    display: none;
  }
  .pt05 {
    /* padding-top: 4px!important; */
    padding-top: 4% !important;
  }
  .pt10 {
    padding-top: 8px !important;
  }
  .pt20 {
    padding-top: 15px !important;
  }
  .pt30 {
    padding-top: 20px !important;
  }
  .pt40 {
    padding-top: 25px !important;
  }
  .pt50 {
    padding-top: 30px !important;
  }
  .pt60 {
    padding-top: 35px !important;
  }
  .pt70 {
    padding-top: 40px !important;
  }
  .pt80 {
    padding-top: 50px !important;
  }
  .pt90 {
    padding-top: 60px !important;
  }
  .pt100 {
    padding-top: 70px !important;
  }
  .pt120 {
    padding-top: 80px !important;
  }
  .pb10 {
    padding-bottom: 8px !important;
  }
  .pb20 {
    padding-bottom: 15px !important;
  }
  .pb30 {
    padding-bottom: 20px !important;
  }
  .pb40 {
    padding-bottom: 25px !important;
  }
  .pb50 {
    padding-bottom: 30px !important;
  }
  .pb60 {
    padding-bottom: 35px !important;
  }
  .pb70 {
    padding-bottom: 40px !important;
  }
  .pb80 {
    padding-bottom: 50px !important;
  }
  .pb90 {
    padding-bottom: 60px !important;
  }
  .pb100 {
    padding-bottom: 70px !important;
  }
  .pb120 {
    padding-bottom: 80px !important;
  }
  .mt10 {
    margin-top: 8px !important;
  }
  .mt20 {
    margin-top: 15px !important;
  }
  .mt30 {
    margin-top: 20px !important;
  }
  .mt40 {
    margin-top: 25px !important;
  }
  .mt50 {
    margin-top: 30px !important;
  }
  .mt60 {
    margin-top: 35px !important;
  }
  .mt70 {
    margin-top: 40px !important;
  }
  .mt80 {
    margin-top: 50px !important;
  }
  .mt90 {
    margin-top: 60px !important;
  }
  .mt100 {
    margin-top: 70px !important;
  }
  .mt120 {
    margin-top: 80px !important;
  }
  .mb10 {
    margin-bottom: 8px !important;
  }
  .mb20 {
    margin-bottom: 15px !important;
  }
  .mb30 {
    margin-bottom: 20px !important;
  }
  .mb40 {
    margin-bottom: 25px !important;
  }
  .mb50 {
    margin-bottom: 30px !important;
  }
  .mb60 {
    margin-bottom: 35px !important;
  }
  .mb70 {
    margin-bottom: 45px !important;
  }
  .mb80 {
    margin-bottom: 50px !important;
  }
  .mb90 {
    margin-bottom: 60px !important;
  }
  .mb100 {
    margin-bottom: 70px !important;
  }
  .mb120 {
    margin-bottom: 80px !important;
  }
  .fs11 {
    font-size: 10px !important;
  }
  .fs12 {
    font-size: 11px !important;
  }
  .fs13 {
    font-size: 12px !important;
  }
  .fs14 {
    font-size: 13px !important;
  }
  .fs15 {
    font-size: 14px !important;
  }
  .fs16 {
    font-size: 15px !important;
  }
  .fs18 {
    font-size: 16px !important;
  }
  .fs20 {
    font-size: 17px !important;
  }
  .fs22 {
    font-size: 18px !important;
  }
  .fs24 {
    font-size: 20px !important;
  }
  .fs26 {
    font-size: 22px !important;
  }
  .fs28 {
    font-size: 24px !important;
  }
  .fs30 {
    font-size: 24px !important;
  }
  .fs34 {
    font-size: 23px !important;
  }
  .fs48 {
    font-size: 32px !important;
  }
  .sp-w80 {
    padding-left: 10%;
    padding-right: 10%;
  }
}
.mx680 {
  max-width: 680px !important;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}/*# sourceMappingURL=style.css.map */