@charset "UTF-8";
/**
 * TERRAS the Early Summer用CSS
 * Created on: 2024.04.08
 * Modified on: yyyy.mm.dd
 */
/*--------------------------------------------------------
　BREAK POINT
--------------------------------------------------------*/
/*--------------------------------------------------------
　MIXIN
--------------------------------------------------------*/
/*--------------------------------------------------------
　STYLE
--------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  text-size-adjust: 100%;
  background-color: #B6DECB;
}

.allwrap {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 14px;
  line-height: 1.7;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media only screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

.br {
  display: inline-block;
}

@media only screen and (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}
figure {
  margin: 0;
}

.header {
  width: 100%;
  height: 74px;
  padding: 0 30px;
  background: rgba(182, 222, 203, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 430px) {
  .header {
    background: #FFFFFF;
    height: 60px;
    position: relative;
  }
}
.header__tamaplaza {
  width: 148px;
}
@media only screen and (max-width: 768px) {
  .header__tamaplaza {
    width: 120px;
    padding-top: 0;
    position: absolute;
    top: 15px;
    left: 15px;
  }
}
.header__tamaplaza a {
  display: block;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header__tamaplaza a:hover {
  opacity: 0.7;
}

.nav__area {
  width: 100%;
  padding-right: 44px;
}
@media only screen and (max-width: 768px) {
  .nav__area {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(0, -100%);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding-right: 0;
  }
  .nav__area.is-nav-open {
    transform: translate(0, 0);
  }
}
@media only screen and (max-width: 768px) {
  .nav__area {
    background: #00A29A;
    height: 100%;
  }
}
.nav__title {
  display: none;
}
@media only screen and (max-width: 430px) {
  .nav__title {
    display: block;
    position: absolute;
    top: min(17.3333333333vw, 130px);
    left: 50%;
    transform: translateX(-50%);
    width: min(44vw, 330px);
    height: min(28.5333333333vw, 214px);
    width: 90%;
  }
}
.nav__title a {
  display: block;
  width: 100%;
  height: 100%;
}
.nav__title a img {
  width: 100%;
  height: 100%;
}
.nav__list {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 53px;
}
@media only screen and (max-width: 768px) {
  .nav__list {
    width: 90%;
    display: block;
  }
}
.nav__list-item {
  font-size: 12px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .nav__list-item {
    font-size: 15px;
    font-weight: bold;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    text-align: center;
  }
}
.nav__list-item::before {
  content: "";
  width: 1px;
  height: 10px;
  background: #000;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .nav__list-item::before {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
    transform: none;
  }
}
.nav__list-item:last-child::after {
  content: "";
  width: 1px;
  height: 10px;
  background: #000;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .nav__list-item:last-child::after {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    top: auto;
    bottom: 0;
    right: 0;
    transform: none;
  }
}
.nav__list-item a {
  display: block;
  color: #000;
  padding: 27px 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.nav__list-item a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .nav__list-item a {
    color: #fff;
  }
}
.nav__sub-list {
  display: none;
}
@media only screen and (max-width: 768px) {
  .nav__sub-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media only screen and (max-width: 768px) {
  .nav__sub-list-item {
    width: 44%;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 11px;
  }
}
@keyframes menu-line01 {
  0% {
    margin-top: -8px;
    transform: rotate(0deg);
  }
  50% {
    margin-top: 0;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 0;
    transform: rotate(-45deg);
  }
}
@keyframes menu-line02 {
  0% {
    margin-top: 6px;
    transform: rotate(0deg);
  }
  50% {
    margin-top: 0;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 0;
    transform: rotate(45deg);
  }
}
@keyframes menu-line01-re {
  0% {
    margin-top: 0;
    transform: rotate(-45deg);
  }
  50% {
    margin-top: 0;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -8px;
    transform: rotate(0deg);
  }
}
@keyframes menu-line02-re {
  0% {
    margin-top: 0;
    transform: rotate(45deg);
  }
  50% {
    margin-top: 0;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 6px;
    transform: rotate(0deg);
  }
}
.nav__btn {
  display: block;
  width: 60px;
  height: 60px;
  background: #00A29A;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
}
@media only screen and (min-width: 769px) {
  .nav__btn {
    display: none;
  }
}
.nav__btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -1px;
  transition: opacity 0s ease 0.25s;
}
.nav__btn::before, .nav__btn::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 20px;
}
.nav__btn::before {
  animation: menu-line01-re 0.5s ease-in-out forwards;
}
.nav__btn::after {
  animation: menu-line02-re 0.5s ease-in-out forwards;
}
.nav__btn.is-nav-open span {
  opacity: 0;
}
.nav__btn.is-nav-open::before {
  animation: menu-line01 0.5s ease-in-out forwards;
}
.nav__btn.is-nav-open::after {
  animation: menu-line02 0.5s ease-in-out forwards;
}

@media only screen and (max-width: 768px) {
  .main {
    margin-left: 0;
  }
}

.hero {
  position: relative;
  padding-top: 80px;
}
@media only screen and (max-width: 768px) {
  .hero {
    padding-top: 0;
  }
}
.hero__bg01 {
  width: 525px;
  position: absolute;
  bottom: -110px;
  left: -230px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .hero__bg01 {
    width: 59.3vw;
    bottom: -19.2vw;
    left: -25.3vw;
  }
}
.hero__bg02 {
  width: 180px;
  position: absolute;
  bottom: 0;
  left: 180px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .hero__bg02 {
    width: 19.6vw;
    left: 27.5vw;
  }
}
.hero__bg03 {
  width: 314px;
  position: absolute;
  bottom: 90px;
  right: -16px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .hero__bg03 {
    width: 30.9vw;
    bottom: 2.6vw;
    right: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .hero__bg04 {
    width: 12.9vw;
    position: absolute;
    bottom: 8.4vw;
    left: 42.5vw;
    z-index: -1;
  }
}

.fv {
  position: relative;
}
.fv__eyecatch {
  position: relative;
  width: 78%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .fv__eyecatch {
    width: 100%;
  }
}
.fv__eyecatch picture {
  display: block;
  border-radius: min(6.6666666667vw, 50px);
  overflow: hidden;
}
@media only screen and (max-width: 430px) {
  .fv__eyecatch picture {
    border-radius: 0;
  }
}
.fv__eyecatch img {
  width: 100%;
}
.fv__copy {
  width: 3.4%;
  min-width: 41px;
  position: absolute;
  top: 0;
  right: 15.6%;
  margin-top: -3.75%;
}
@media only screen and (max-width: 768px) {
  .fv__copy {
    width: 6.2%;
    min-width: unset;
    top: 0;
    right: 5.3%;
    margin-top: 6%;
  }
}
.fv__object01-1 {
  width: min(7.8125vw, 100px);
  position: absolute;
  top: 60px;
  right: -40px;
  animation: fvFloat01 3.2s ease-in-out infinite;
}
@media only screen and (max-width: 430px) {
  .fv__object01-1 {
    width: 14%;
    top: auto;
    bottom: 30.6%;
    right: 3%;
  }
}
.fv__object01-1 img {
  width: 100%;
}
.fv__object01-2 {
  width: min(7.8125vw, 100px);
  position: absolute;
  bottom: 130px;
  left: -30px;
  animation: fvFloat02 3.8s ease-in-out infinite;
}
@media only screen and (max-width: 430px) {
  .fv__object01-2 {
    width: 14%;
    bottom: 1.4%;
    left: 2.4%;
  }
}
.fv__object02-1 {
  width: min(2.34375vw, 40px);
  position: absolute;
  left: 4%;
  --fv-sway: 18px;
  animation: fvCottonFall 12s linear infinite;
}
@media only screen and (max-width: 430px) {
  .fv__object02-1 {
    width: 5%;
    left: 6%;
  }
}
.fv__object02-2 {
  width: min(3.125vw, 40px);
  position: absolute;
  left: 15%;
  --fv-sway: 24px;
  animation: fvCottonFall 10.8s linear infinite -2.2s;
}
@media only screen and (max-width: 430px) {
  .fv__object02-2 {
    width: 6%;
    left: 17%;
  }
}
.fv__object02-3 {
  width: min(5vw, 31px);
  position: absolute;
  left: 31%;
  --fv-sway: 20px;
  animation: fvCottonFall 11.5s linear infinite -4.4s;
}
@media only screen and (max-width: 430px) {
  .fv__object02-3 {
    width: 5%;
    left: 32%;
  }
}
.fv__object02-4 {
  width: min(3.125vw, 40px);
  position: absolute;
  left: 48%;
  --fv-sway: 22px;
  animation: fvCottonFall 9.8s linear infinite -1.5s;
}
@media only screen and (max-width: 768px) {
  .fv__object02-4 {
    width: 8%;
    left: 49%;
  }
}
.fv__object02-5 {
  width: min(5vw, 31px);
  position: absolute;
  left: 64%;
  --fv-sway: 16px;
  animation: fvCottonFall 12.5s linear infinite -6s;
}
@media only screen and (max-width: 768px) {
  .fv__object02-5 {
    width: 8%;
    left: 66%;
  }
}
.fv__object02-6 {
  width: min(2.34375vw, 40px);
  position: absolute;
  left: 79%;
  --fv-sway: 26px;
  animation: fvCottonFall 10.2s linear infinite -3.6s;
}
@media only screen and (max-width: 768px) {
  .fv__object02-6 {
    width: 8%;
    left: 80%;
  }
}
.fv__object02-7 {
  width: min(2.34375vw, 40px);
  position: absolute;
  left: 90%;
  --fv-sway: 14px;
  animation: fvCottonFall 11.2s linear infinite -8s;
}
@media only screen and (max-width: 768px) {
  .fv__object02-7 {
    width: 8%;
    left: 88%;
  }
}
.fv__object02-1, .fv__object02-2, .fv__object02-3, .fv__object02-4, .fv__object02-5, .fv__object02-6, .fv__object02-7 {
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity, top;
}
.fv__profile {
  width: 75%;
  margin: 0 auto;
  padding-top: 20px;
}
.fv__profile-btn {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
  margin-right: 20px;
  color: #00A29A;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.fv__profile-btn:hover {
  opacity: 0.7;
}
.fv__profile-btn::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../images/ico_profile.svg") no-repeat center center/100% auto;
}
.fv__profile-box {
  display: none;
  width: 440px;
  background: #FFFFFF;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  right: 8.75%;
}
.fv__profile-box .box-inner {
  padding: 55px 45px 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.fv__profile-box .box-inner .img {
  width: 143px;
}
.fv__profile-box .box-inner .name {
  width: 110px;
  font-size: 20px;
  font-weight: bold;
  margin-right: 50px;
  margin-top: 30px;
}
.fv__profile-box .box-inner .name span {
  display: block;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00A29A;
}
.fv__profile-box .box-inner .txt {
  margin: 30px 0 20px;
}
.fv__profile-box .box-inner .homepage {
  font-weight: bold;
  color: #00A29A;
}
.fv__profile-box .box-inner .homepage a {
  color: #00A29A;
  text-decoration: underline;
}
.fv__profile-box .box-inner .homepage a:hover {
  text-decoration: none;
}
.fv__profile-box .box-inner .sns a {
  margin-left: 25px;
  display: inline-block;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.fv__profile-box .box-inner .sns a:hover {
  opacity: 0.7;
}
.fv__profile-box .box-close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -1px;
  right: -1px;
  cursor: pointer;
}
.fv__profile-box .box-close:hover {
  opacity: 0.7;
}

.lead {
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .lead {
    padding-bottom: 33.5vw;
  }
}
.lead::before {
  content: "";
  width: min(18.4375vw, 236px);
  height: min(16.25vw, 208px);
  background: url("../images/obj_grass01.png") no-repeat center/contain;
  position: absolute;
  bottom: -15px;
  left: calc(50% - 42.578125vw);
}
@media only screen and (max-width: 768px) {
  .lead::before {
    width: min(34.6354166667vw, 236px);
    height: min(30.9895833333vw, 208px);
  }
}
@media only screen and (max-width: 430px) {
  .lead::before {
    width: min(35.4666666667vw, 236px);
    height: min(31.7333333333vw, 208px);
    bottom: -8px;
    left: calc(50% - 42.6666666667vw);
  }
}
.lead::after {
  content: "";
  width: min(19.375vw, 248px);
  height: min(15.46875vw, 198px);
  background: url("../images/obj_grass02.png") no-repeat center/contain;
  position: absolute;
  bottom: -20px;
  right: calc(50% - 42.578125vw);
}
@media only screen and (max-width: 768px) {
  .lead::after {
    width: min(35.9375vw, 236px);
    height: min(32.2916666667vw, 208px);
  }
}
@media only screen and (max-width: 430px) {
  .lead::after {
    width: min(36.8vw, 236px);
    height: min(33.0666666667vw, 208px);
    bottom: -20px;
    right: calc(50% - 44vw);
  }
}
.lead__txt {
  font-size: 16px;
  text-align: center;
  line-height: 2.125;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .lead__txt {
    font-size: 14px;
    line-height: 2.4;
    margin-top: 11.5vw;
  }
}
@media only screen and (max-width: 768px) {
  .lead__profile {
    margin-top: 7.4vw;
  }
  .lead__profile-btn {
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    color: #00A29A;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .lead__profile-btn:hover {
    opacity: 0.7;
  }
  .lead__profile-btn span {
    position: relative;
    padding-right: 22px;
  }
  .lead__profile-btn span::before {
    content: "";
    width: calc(100% + 10px);
    height: 1px;
    position: absolute;
    bottom: -10px;
    left: -5px;
    border-bottom: 1px solid #00A29A;
  }
  .lead__profile-btn span::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../images/ico_profile.svg") no-repeat center center/100% auto;
  }
}

.section {
  background: #FFFFFF;
  margin: 0 30px;
  border: #fff solid 6px;
  border-radius: 30px;
}
@media only screen and (max-width: 430px) {
  .section {
    margin: 0 -6px;
    width: calc(100% + 12px);
  }
}
.section.newshop, .section.popup {
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .section.newshop, .section.popup {
    padding-bottom: 48px;
  }
}
.section.popup, .section.event {
  margin-top: -50px;
}
@media only screen and (max-width: 768px) {
  .section.popup, .section.event {
    margin-top: -55px;
  }
}
.section.newshop {
  background-color: #FFEAE6;
}
.section.popup {
  background-color: #E6F3E6;
}
.section.event {
  background-color: #FFFAD7;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .section.event {
    border-radius: 30px 30px 0 0;
  }
}
.section.event .section__list {
  position: relative;
}
.section.event .section__list::after {
  content: "";
  width: 154px;
  height: 454px;
  background: url("../images/obj_grass03.png") no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 100px;
}
@media only screen and (min-width: 769px) {
  .section.event .section__list::after {
    right: min(7.8125vw, 100px);
  }
}
@media only screen and (max-width: 768px) {
  .section.event .section__list::after {
    display: none;
  }
}
.section__ttl {
  padding: 60px 20px;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .section__ttl {
    padding: 37px 20px;
  }
}
.section__ttl .txt {
  color: #00A29A;
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  margin-right: 1.3em;
}
@media only screen and (max-width: 768px) {
  .section__ttl .txt {
    font-size: 18px;
    letter-spacing: 0.06em;
    margin-right: 1.8em;
  }
}
.section__ttl .ico {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: -40px;
  background-color: #00A29A;
  border-radius: 100vh;
  transform: translateY(-50%);
}
@media only screen and (max-width: 430px) {
  .section__ttl .ico {
    right: min(-4.6666666667vw, -35px);
    width: min(6.6666666667vw, 50px);
    height: min(6.6666666667vw, 50px);
  }
}
.section__ttl .ico::before {
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section__ttl .ico::after {
  content: "";
  width: 2px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section__ttl.is-acc-open .ico::after {
  display: none;
}
.section__boxes {
  display: none;
}
.section__tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 430px) {
  .section__tab {
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
}
.section__tab-item {
  width: 25%;
  padding: 50px 0 10px;
  border-bottom: 4px solid #E6E6E6;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 430px) {
  .section__tab-item {
    width: 50%;
    padding: 25px 0 5px;
    font-size: 11px;
    border-width: 3px;
  }
}
.section__tab-item.is-active {
  border-bottom-color: #B6DECB;
}
.section__tab-item:hover {
  border-bottom-color: #B6DECB;
}
.section__list {
  width: 100%;
  max-width: 1960px;
  margin: 40px auto 0;
  padding: 0 min(5.46875vw, 70px) 80px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media only screen and (min-width: 769px) {
  .section__list {
    gap: 40px min(2.34375vw, 30px);
  }
}
@media only screen and (min-width: 1025px) {
  .section__list {
    gap: 40px min(3.125vw, 40px);
  }
}
@media screen and (min-width: 1281px) {
  .section__list {
    gap: 70px min(3.828125vw, 49px);
  }
}
@media only screen and (max-width: 768px) {
  .section__list {
    gap: 40px 3.2%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 430px) {
  .section__list {
    padding: 0 5% 13%;
    margin-top: 3%;
  }
}
.newshop .section__list {
  display: flex;
  margin-top: 34px;
  gap: 40px min(6.875vw, 88px);
}
@media only screen and (min-width: 769px) {
  .newshop .section__list {
    gap: 40px min(3.90625vw, 30px);
  }
}
@media only screen and (min-width: 1025px) {
  .newshop .section__list {
    gap: 40px min(5.078125vw, 65px);
  }
}
@media screen and (min-width: 1281px) {
  .newshop .section__list {
    gap: 40px min(6.875vw, 88px);
  }
}
@media only screen and (max-width: 768px) {
  .newshop .section__list {
    gap: 40px 3%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 430px) {
  .newshop .section__list {
    margin-top: 5px;
    gap: 50px;
  }
}
.section__list-item {
  flex: 1;
  width: 100%;
  min-width: auto;
  max-width: min(17.96875vw, 230px);
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .section__list-item {
    width: 100%;
    min-width: auto;
    max-width: none;
  }
}
.newshop .section__list-item {
  flex: auto;
  width: 100%;
  min-width: auto;
  max-width: min(38.28125vw, 490px);
}
@media screen and (min-width: 1281px) {
  .newshop .section__list-item {
    max-width: calc((100% - min(6.875vw, 88px)) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .newshop .section__list-item {
    max-width: 100%;
  }
}
@media only screen and (max-width: 430px) {
  .newshop .section__list-item {
    width: 100%;
  }
}
.newshop .section__list-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 80px;
}
@media only screen and (max-width: 430px) {
  .newshop .section__list-item a {
    flex-direction: column;
    padding: 0 0 68px;
  }
}
.newshop .section__list-item a .img-box {
  width: min(17.96875vw, 230px);
}
@media only screen and (max-width: 768px) {
  .newshop .section__list-item a .img-box {
    width: min(29.9479166667vw, 230px);
  }
}
@media only screen and (max-width: 430px) {
  .newshop .section__list-item a .img-box {
    width: min(66.6666666667vw, 500px);
    margin: 0 auto 20px;
  }
}
.newshop .section__list-item a .txt-box {
  width: min(18.75vw, 240px);
}
@media screen and (min-width: 1281px) {
  .newshop .section__list-item a .txt-box {
    width: calc(100% - min(20.3125vw, 260px));
  }
}
@media only screen and (max-width: 768px) {
  .newshop .section__list-item a .txt-box {
    width: calc(100% - min(33.8541666667vw, 260px));
  }
}
@media only screen and (max-width: 430px) {
  .newshop .section__list-item a .txt-box {
    width: 100%;
  }
}
.newshop .section__list-item a .btn {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section__list-item.blank {
  margin-top: 0;
}
@media only screen and (max-width: 430px) {
  .section__list-item.blank {
    display: none;
  }
}
.shopinfo .section__list-item {
  display: none;
}
.shopinfo .section__list-item.is-show {
  display: block;
}
.section__list-item .category {
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 120px;
  font-size: 10px;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 430px) {
  .section__list-item .category {
    right: auto;
    left: 0;
    margin-right: 0;
  }
}
.section__list-item > a,
.section__list-item > span {
  display: block;
  width: min(17.96875vw, 230px);
  height: 100%;
  margin: 0 auto;
  padding-bottom: 70px;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .section__list-item > a,
  .section__list-item > span {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.section__list-item .img-box {
  opacity: 1;
  transition: 0.3s ease;
  width: 100%;
}
@media only screen and (max-width: 430px) {
  .section__list-item .img-box {
    width: min(34.6666666667vw, 260px);
  }
}
.section__list-item .logo {
  display: none;
}
@media only screen and (max-width: 430px) {
  .section__list-item .logo {
    display: block;
  }
}
.section__list-item .txt-box {
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  overflow: hidden;
  position: relative;
  opacity: 1;
  transition: 0.3s ease;
}
@media only screen and (max-width: 430px) {
  .section__list-item .txt-box {
    width: min(47.3333333333vw, 355px);
  }
}
.section__list-item .date {
  font-size: 10px;
  border-bottom: 1px solid #000000;
  padding: 6px 0;
}
@media only screen and (min-width: 769px) {
  .section__list-item .date {
    font-size: min(1.171875vw, 9px);
  }
}
@media only screen and (max-width: 430px) {
  .section__list-item .date {
    font-size: 12px;
    padding-top: 0;
  }
}
.newshop .section__list-item .date {
  padding: 0 0 8px;
}
@media only screen and (max-width: 430px) {
  .newshop .section__list-item .date {
    padding: 0 0 4px;
  }
}
.section__list-item .name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  margin: 22px 0 34px;
}
@media only screen and (max-width: 430px) {
  .section__list-item .name {
    font-size: 15px;
    margin: 15px 0;
  }
}
.section__list-item .name small {
  font-size: 85%;
  display: block;
}
.newshop .section__list-item .name {
  margin: 16px 0 0;
}
@media only screen and (max-width: 430px) {
  .newshop .section__list-item .name {
    margin-bottom: 10px;
  }
}
.section__list-item .name-sub {
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-decoration: none;
}
@media only screen and (max-width: 430px) {
  .section__list-item .name-sub {
    margin-bottom: 14px;
  }
}
.section__list-item .txt {
  font-size: 13px;
  line-height: 1.54;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 430px) {
  .section__list-item .txt {
    font-size: 12px;
    line-height: 1.66;
  }
}
.section__list-item .btn {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  border: 2px solid #000000;
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .section__list-item .btn {
    margin-top: min(3.90625vw, 30px);
  }
}
@media only screen and (max-width: 430px) {
  .section__list-item .btn {
    height: min(13.3333333333vw, 100px);
    margin-top: min(2.6666666667vw, 20px);
  }
}
.section__list-item .btn .more {
  position: relative;
  z-index: 1;
}
.section__list-item .btn .ico {
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transition: 0.3s ease;
}
.section__list-item .btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #00A29A;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: 0.3s ease;
}
.section__list-item > a .name {
  text-decoration: underline;
}
.section__list-item > a:hover .img-box {
  opacity: 0.7;
}
.section__list-item > a:hover .txt-box {
  opacity: 0.7;
}
.section__list-item > a:hover .btn {
  color: #FFFFFF;
}
.section__list-item > a:hover .btn .ico {
  border-color: #FFFFFF;
  transform: translate(5px, 0) rotate(45deg);
}
.section__list-item > a:hover .btn::before {
  transform: scale(1, 1);
}
.section__list-item > span .btn {
  background: #E6E6E6;
  border-color: #E6E6E6;
}
.section__note {
  width: 100%;
  padding: 30px;
}
@media only screen and (max-width: 430px) {
  .section__note {
    background-color: #fff;
    padding: 25px 35px;
  }
}
.section__note p {
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 430px) {
  .section__note p {
    line-height: 1.8;
    text-align: left;
  }
}

.pagetop__arrow {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 20;
}
@media only screen and (max-width: 768px) {
  .pagetop__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    bottom: 50px;
    right: 20px;
    z-index: 9;
  }
}
.pagetop__arrow a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.pagetop__arrow a:hover {
  opacity: 0.7;
}
.pagetop__arrow img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.footer {
  background: #FFFFFF;
  padding: 30px 0;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 15px 0 20px;
  }
}
.footer__note {
  font-size: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .footer__note {
    position: static;
    display: flex;
    justify-content: center;
  }
}
.footer__logo {
  width: 243px;
  margin: 0 auto 40px;
}
.footer__logo a {
  display: block;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.footer__logo a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .footer__logo {
    width: 150px;
    margin: 0 auto 20px;
  }
}
.footer__copyright {
  font-size: 10px;
  font-family: "Cabin", sans-serif;
  letter-spacing: 0.05em;
}

/*--------------------------------------------------------
　MODAL WINDOW
--------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    z-index: -1;
  }
  1% {
    visibility: visible;
    z-index: 101;
  }
  100% {
    visibility: visible;
    opacity: 1;
    z-index: 101;
  }
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
}
.modal.show {
  animation: fadeIn 0.3s linear forwards;
}
.modal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.modal__wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 86.6vw;
  transform: translate(-50%, -50%);
}
.modal__wrap-inner {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 11.6vw 10vw;
  box-sizing: border-box;
}
.modal__contents {
  width: 100%;
  max-height: 85vh;
  overflow-y: scroll;
  box-sizing: border-box;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 13px;
  line-height: 1.7;
}
.modal__contents .box-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.modal__contents .img {
  width: min(28vw, 210px);
  margin-bottom: min(8vw, 60px);
}
.modal__contents .name {
  width: min(26.6666666667vw, 200px);
  font-size: 18px;
  font-weight: bold;
  margin-right: min(5.3333333333vw, 40px);
  margin-bottom: min(5.3333333333vw, 40px);
}
.modal__contents .name span {
  display: block;
  font-size: 10px;
  font-weight: bold;
  color: #00A29A;
}
.modal__contents .txt {
  width: 100%;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 1.5em;
}
.modal__contents .homepage {
  flex: 1;
  font-size: 14px;
  font-weight: bold;
}
.modal__contents .homepage a {
  text-decoration: underline;
}
.modal__contents .sns {
  flex-basis: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__contents .sns a {
  display: block;
  width: 24px;
}
.modal__close-btn {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

/*--------------------------------------------------------
　ANIMATION
--------------------------------------------------------*/
.is-anm {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.is-anm.is-done {
  opacity: 1;
}

.fade-up {
  transform: translate(0, 40px);
}
.fade-up.is-done {
  transform: translate(0, 0);
}

.fade-down {
  transform: translate(0, -40px);
}
.fade-down.is-done {
  transform: translate(0, 0);
}

.fade-left {
  transform: translate(-40px, 0);
}
.fade-left.is-done {
  transform: translate(0, 0);
}

.fade-right {
  transform: translate(40px, 0);
}
.fade-right.is-done {
  transform: translate(0, 0);
}

.fade-scale {
  transform: scale(0);
  transition: all 1s cubic-bezier(0.65, -0.55, 0.265, 1.55);
}
.fade-scale.is-done {
  transform: scale(1);
}

.fv__copy {
  opacity: 0;
  transform: translate(0, -40px);
  transition: all 0.8s ease-out 0.4s;
}
.fv__copy.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes yurayura01 {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.hero__bg01 {
  transform-origin: center bottom;
  animation: yurayura01 4s ease infinite;
}

@keyframes poyopoyo01 {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1);
  }
  26% {
    transform: scale(0.95);
  }
  32% {
    transform: scale(1);
  }
  38% {
    transform: scale(0.95);
  }
  44% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fvFloat01 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fvFloat02 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fvCottonFall {
  0% {
    opacity: 0;
    top: -15%;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  8% {
    opacity: 1;
  }
  25% {
    top: 22%;
    transform: translate3d(var(--fv-sway), 0, 0) rotate(7deg);
  }
  50% {
    top: 45%;
    transform: translate3d(calc(var(--fv-sway) * -1), 0, 0) rotate(-5deg);
  }
  75% {
    top: 68%;
    transform: translate3d(var(--fv-sway), 0, 0) rotate(5deg);
  }
  93% {
    opacity: 1;
    top: 88%;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    opacity: 0;
    top: 100%;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
.lead__ttl-sub {
  opacity: 0;
  transition: all 0.8s ease-out 0.4s;
}
.lead__ttl-sub.is-done {
  opacity: 1;
}

.lead__ttl-sub img {
  animation: poyopoyo01 3s ease infinite 0.4s;
}/*# sourceMappingURL=style.css.map */