@charset "UTF-8";
/**
 * 14th anniversary Decoration用CSS
 * Created on: 2024.09.13
 * Modified on: 2024.09.13
 */
/*--------------------------------------------------------
　BREAK POINT
--------------------------------------------------------*/
/*--------------------------------------------------------
　MIXIN
--------------------------------------------------------*/
/*--------------------------------------------------------
　STYLE
--------------------------------------------------------*/
body {
  text-size-adjust: 100%;
}

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

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

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: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .header {
    background: #FFFFFF;
    height: 60px;
  }
}
.header__tamaplaza {
  width: 200px;
  margin: 0 auto;
  padding-left: 80px;
  padding-top: 25px;
}
@media only screen and (max-width: 768px) {
  .header__tamaplaza {
    width: 133px;
    padding-top: 0;
    position: absolute;
    top: 15px;
    left: 15px;
    filter: brightness(0);
    padding-left: 0px;
  }
}
.header__tamaplaza a {
  display: block;
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s ease;
}
.header__tamaplaza a:hover {
  opacity: .7;
}

.nav__area {
  width: 80px;
  height: 100%;
  background: #ea5532;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .nav__area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(0, -100%);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .nav__area.is-nav-open {
    transform: translate(0, 0);
  }
}
.nav__list {
  width: 100%;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .nav__list {
    width: 90%;
    padding-top: 0;
    display: block;
  }
}
.nav__list-item {
  font-size: 12px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .nav__list-item {
    font-size: 15px;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    text-align: center;
  }
}
.nav__list-item::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -8px;
}
@media only screen and (max-width: 768px) {
  .nav__list-item::before {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    left: 0;
    margin-left: 0;
  }
}
.nav__list-item:last-child::after {
  content: "";
  width: 16px;
  height: 1px;
  background: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -8px;
}
@media only screen and (max-width: 768px) {
  .nav__list-item:last-child::after {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    left: 0;
    margin-left: 0;
  }
}
.nav__list-item a {
  display: block;
  color: #FFFFFF;
  padding: 20px 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s ease;
}
.nav__list-item a:hover {
  opacity: .7;
}
.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: #ea5532;
  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 .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 .5s ease-in-out forwards;
}
.nav__btn::after {
  animation: menu-line02-re .5s ease-in-out forwards;
}
.nav__btn.is-nav-open span {
  opacity: 0;
}
.nav__btn.is-nav-open::before {
  animation: menu-line01 .5s ease-in-out forwards;
}
.nav__btn.is-nav-open::after {
  animation: menu-line02 .5s ease-in-out forwards;
}

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

.hero {
  position: relative;
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .hero {
    padding-top: 60px;
  }
}
.hero #canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .hero #canvas {
    transform: scale(2, 1);
  }
}
.hero::before {
  content: "";
  width: 100%;
  aspect-ratio: 2 / 1;
  background: url("../images/fv_bg.jpg") no-repeat center top/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.fv {
  position: relative;
}
.fv__eyecatch {
  width: 75%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .fv__eyecatch {
    width: 100%;
  }
}
.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 {
  width: 4.9%;
  position: absolute;
  bottom: -1.25%;
  left: 6.9%;
}
@media only screen and (max-width: 768px) {
  .fv__object01 {
    width: 7.7%;
    bottom: -21%;
    left: 5.2%;
  }
}
.fv__object01 img {
  width: 100%;
}
.fv__object02 {
  width: 12.8%;
  position: absolute;
  bottom: -10.5%;
  right: 15.75%;
}
@media only screen and (max-width: 768px) {
  .fv__object02 {
    width: 10.8%;
    bottom: -24.8%;
    right: 5.1%;
  }
}
.fv__object02 img {
  width: 100%;
}
.fv__profile-btn {
  width: 45px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 2px;
  right: 8.75%;
  cursor: pointer;
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s ease;
}
.fv__profile-btn:hover {
  opacity: .7;
}
.fv__profile-btn .ico {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  position: relative;
}
.fv__profile-btn .ico::before {
  content: "";
  width: 12px;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 0;
}
.fv__profile-btn .ico::after {
  content: "";
  width: 2px;
  height: 12px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -5px;
}
.fv__profile-box {
  display: none;
  width: 440px;
  border: 1px solid #000000;
  background: #FFFFFF;
  position: absolute;
  bottom: 0;
  right: 8.75%;
}
.fv__profile-box .box-inner {
  padding: 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: 207px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.fv__profile-box .box-inner .txt {
  margin: 30px 0;
}
.fv__profile-box .box-inner .homepage {
  font-weight: bold;
  color: #ea5532;
}
.fv__profile-box .box-inner .homepage a {
  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 .3s ease;
}
.fv__profile-box .box-inner .sns a:hover {
  opacity: .7;
}
.fv__profile-box .box-close {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #000000;
  position: absolute;
  top: -1px;
  right: -1px;
  cursor: pointer;
}
.fv__profile-box .box-close::before, .fv__profile-box .box-close::after {
  content: "";
  width: 16px;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
}
.fv__profile-box .box-close::before {
  transform: rotate(45deg);
}
.fv__profile-box .box-close::after {
  transform: rotate(-45deg);
}
.fv__profile-box .box-close:hover {
  opacity: 0.7;
}

.lead {
  padding-bottom: 55px;
  position: relative;
}
.lead__ttl {
  display: block;
  width: 601px;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .lead__ttl {
    width: 62.4vw;
    margin-top: 10vw;
  }
}
.lead__ttl-pc {
  display: block;
  margin-top: 60px;
  position: relative;
  left: 50%;
  margin-left: -300px;
}
@media only screen and (max-width: 768px) {
  .lead__ttl-pc {
    display: none;
  }
}
.lead__ttl-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .lead__ttl-sp {
    display: block;
    width: 85.3vw;
    margin: 7vw auto 0;
  }
}
.lead__ttl-sub {
  width: 298px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .lead__ttl-sub {
    width: 44vw;
    margin-top: 1vw;
  }
}
.lead__txt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 2.125;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .lead__txt {
    font-size: 14px;
    margin-top: 7.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .lead {
    padding-bottom: 27.2vw;
  }
  .lead__profile {
    margin-top: 3vw;
  }
  .lead__profile-btn {
    width: 120px;
    margin: 0 auto;
    padding: 10px 0;
    border-bottom: 1px solid #000000;
  }
  .lead__profile-btn img {
    display: block;
  }
}
.lead .bread {
  position: absolute;
  width: 173px;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -617px;
}
.lead .glass01 {
  position: absolute;
  width: 32px;
  top: 213px;
  left: 50%;
  margin-left: -449px;
}
.lead .glass02 {
  position: absolute;
  width: 153px;
  top: 286px;
  left: 50%;
  margin-left: -599px;
}
.lead .glass03 {
  position: absolute;
  width: 153px;
  top: 286px;
  left: 50%;
  margin-left: -428px;
}
@media only screen and (max-width: 768px) {
  .lead .bread {
    width: 23vw;
    top: 50%;
    margin-top: -22.9vw;
    margin-left: 33vw;
    z-index: -1;
  }
  .lead .glass01 {
    width: 4.1vw;
    top: auto;
    left: 50%;
    bottom: 13vw;
    margin-left: -2.05vw;
  }
  .lead .glass02 {
    width: 20.7vw;
    top: auto;
    bottom: -12vw;
    left: 49%;
    margin-left: -20.7vw;
  }
  .lead .glass03 {
    width: 20.7vw;
    top: auto;
    bottom: -12vw;
    left: 51%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 430px) {
  .lead .bread {
    margin-top: -35.9vw;
  }
}
.lead .apple01 {
  width: 107px;
  position: absolute;
  top: 29px;
  left: 50%;
  margin-left: 392px;
}
.lead .apple02 {
  width: 100px;
  position: absolute;
  top: 153px;
  left: 50%;
  margin-left: 517px;
}
.lead .onigiri {
  width: 103px;
  position: absolute;
  top: 222px;
  left: 50%;
  margin-left: 290px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .lead .apple01 {
    width: 13.7vw;
    top: 50%;
    margin-top: -15.9vw;
    margin-left: -50.9vw;
    z-index: -1;
  }
  .lead .apple02 {
    width: 13.6vw;
    top: 50%;
    margin-top: 21.8vw;
    margin-left: 38.1vw;
  }
  .lead .onigiri {
    width: 13.6vw;
    top: 50%;
    margin-top: 11.2vw;
    margin-left: -48vw;
  }
}
@media only screen and (max-width: 430px) {
  .lead .apple01 {
    margin-top: -29.9vw;
  }
  .lead .apple02 {
    margin-top: 37.8vw;
  }
  .lead .onigiri {
    margin-top: 19.2vw;
  }
}

.decoration {
  margin-bottom: 90px;
  position: relative;
}
.decoration::before {
  content: "";
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1;
  background: url("../images/decoration_bg.jpg") repeat 0 0/86px 86px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 430px) {
  .decoration::before {
    background-size: 55px 55px;
  }
}
@media only screen and (max-width: 768px) {
  .decoration {
    margin-bottom: 0;
  }
}
.decoration__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 73px 0 58px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
.decoration__inner .decoration01 {
  width: 64px;
  position: absolute;
  bottom: -11px;
  left: 50%;
  margin-left: -549px;
}
.decoration__inner .decoration02 {
  width: 58px;
  position: absolute;
  top: 38px;
  left: 50%;
  margin-left: -114px;
}
.decoration__inner .decoration03 {
  width: 137px;
  position: absolute;
  top: -65px;
  left: 50%;
  margin-left: 401px;
}
.decoration__inner .decoration04 {
  width: 64px;
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: 500px;
}
@media only screen and (max-width: 768px) {
  .decoration__inner {
    padding: 14.8vw 6vw 8.4vw;
    flex-direction: column;
  }
  .decoration__inner .decoration01 {
    width: 11.2vw;
    top: -2.7vw;
    left: auto;
    right: 12vw;
    margin-left: 0;
  }
  .decoration__inner .decoration02 {
    width: 10.1vw;
    top: -3.8vw;
    left: 6vw;
    margin-left: 0;
  }
  .decoration__inner .decoration03 {
    width: 18.1vw;
    top: -25vw;
    left: 6.3vw;
    margin-left: 0;
  }
  .decoration__inner .decoration04 {
    width: 9.1vw;
    top: -23vw;
    left: auto;
    right: 6vw;
    margin-left: 0;
  }
}
.decoration__ttl {
  width: 67.7%;
}
@media only screen and (max-width: 768px) {
  .decoration__ttl {
    width: 72vw;
    margin: 0 auto;
  }
}
.decoration__txtbox {
  width: 48.9%;
}
@media only screen and (max-width: 768px) {
  .decoration__txtbox {
    width: 100%;
    margin-top: 0;
  }
}
.decoration__txt {
  font-size: 16px;
  line-height: 1.875;
  margin-top: 36px;
  margin-left: 1%;
}
@media only screen and (max-width: 768px) {
  .decoration__txt {
    font-size: 14px;
    margin: 20px 5%;
  }
}
.decoration__imgbox {
  width: 44.3%;
}
@media only screen and (max-width: 768px) {
  .decoration__imgbox {
    width: 100%;
  }
}
.decoration__img {
  max-width: 400px;
}
.decoration__img figcaption {
  font-size: 10px;
  margin-top: 6px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .decoration__img {
    max-width: none;
    margin: 0 5%;
  }
}

.section {
  background: #FFFFFF;
}
.section__ttl {
  border-top: 1px solid #000000;
  background: url("../images/bg.jpg") repeat 0 0/80px 80px;
  padding: 20px 20px 20px 100px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .section__ttl {
    padding: 30px 20px 30px 50px;
  }
}
.section__ttl .txt {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .section__ttl .txt {
    font-size: 18px;
  }
}
.section__ttl .ico {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 30px;
  left: 50px;
}
@media only screen and (max-width: 768px) {
  .section__ttl .ico {
    width: 16px;
    height: 16px;
    top: 37px;
    left: 15px;
  }
}
.section__ttl .ico::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
}
.section__ttl .ico::after {
  content: "";
  width: 2px;
  height: 100%;
  background: #000000;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
}
.section__ttl.is-acc-open .ico::after {
  display: none;
}
.section__boxes {
  border-top: 1px solid #000000;
  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 .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: #ea5532;
}
.section__tab-item:hover {
  border-bottom-color: #ea5532;
}
.section__list {
  width: 100%;
  max-width: 1960px;
  margin: 0 auto;
  padding: 0 30px 80px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media only screen and (max-width: 430px) {
  .section__list {
    padding: 0 5% 13%;
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  .renewal .section__list {
    background: url("../images/renewal_object01.png") no-repeat right 60px center/300px 490px;
  }
}
.section__list-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  margin: 80px 0 0;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .section__list-item {
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin-top: 13%;
  }
}
.section__list-item.blank {
  margin-top: 0;
}
.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: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 230px;
  height: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 430px) {
  .section__list-item > a, .section__list-item > span {
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.section__list-item .img-box {
  opacity: 1;
  transition: .3s ease;
}
@media only screen and (max-width: 430px) {
  .section__list-item .img-box {
    width: 36%;
  }
}
.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: .3s ease;
  margin-bottom: 15px;
}
@media only screen and (max-width: 430px) {
  .section__list-item .txt-box {
    width: 60%;
    height: auto;
  }
}
.section__list-item .date {
  font-size: 10px;
  line-height: 1.4;
  border-bottom: 1px solid #000000;
  padding: 6px 0;
}
@media only screen and (max-width: 430px) {
  .section__list-item .date {
    font-size: 12px;
    padding-top: 0;
  }
}
.section__list-item .name {
  font-size: 16px;
  font-weight: bold;
  margin: 16px 0;
}
@media only screen and (max-width: 430px) {
  .section__list-item .name {
    font-size: 15px;
    margin: 15px 0;
  }
}
.section__list-item .txt {
  font-size: 13px;
  line-height: 1.54;
  letter-spacing: 0.02em;
  word-break: break-all;
}
@media only screen and (max-width: 430px) {
  .section__list-item .txt {
    font-size: 12px;
    line-height: 1.66;
  }
}
.section__list-item .btn {
  width: 230px;
  height: 50px;
  margin: auto auto 0;
  border: 2px solid #000000;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  position: relative;
  transition: .3s ease;
}
.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: .3s ease;
}
.section__list-item .btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ea5532;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: .3s ease;
}
.section__list-item > a .name {
  text-decoration: underline;
}
.section__list-item > a:hover .img-box {
  opacity: .7;
}
.section__list-item > a:hover .txt-box {
  opacity: .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;
}

.pagetop__arrow {
  width: 80px;
  height: 80px;
  background: #ea5532;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
}
@media only screen and (max-width: 768px) {
  .pagetop__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    bottom: 50px;
    left: auto;
    right: 10px;
    z-index: 9;
  }
}
.pagetop__arrow a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s ease;
}
.pagetop__arrow a:hover {
  opacity: .7;
}
.pagetop__arrow img {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 31px;
  left: 31px;
}
@media only screen and (max-width: 768px) {
  .pagetop__arrow img {
    top: 16px;
    left: 16px;
  }
}

.footer {
  background: #FFFFFF;
  border-top: 1px solid #000000;
  padding: 60px 0 30px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 30px 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 .3s ease;
}
.footer__logo a:hover {
  opacity: .7;
}
@media only screen and (max-width: 768px) {
  .footer__logo {
    width: 150px;
    margin: 30px 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 .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: 1px solid #000000;
  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: 56%;
  margin: 0 auto;
}
.modal__contents .name {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 1.2em 0;
}
.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 {
  color: #ea5532;
  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;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.modal__close-btn::before, .modal__close-btn::after {
  content: "";
  width: 16px;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
}
.modal__close-btn::before {
  transform: rotate(45deg);
}
.modal__close-btn::after {
  transform: rotate(-45deg);
}

/*--------------------------------------------------------
　ANIMATION
--------------------------------------------------------*/
.is-anm {
  opacity: 0;
  transition: all .6s 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 .8s ease-out .4s;
}
.fv__copy.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes yurayura01 {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  90% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurayura02 {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  90% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.glass02 {
  animation: yurayura01 3s ease infinite;
}

.glass03 {
  animation: yurayura02 3s ease infinite;
}

@keyframes hanabi {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.firework01 {
  animation: hanabi 4s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
}

.firework02 {
  animation: hanabi 3s cubic-bezier(0.19, 1, 0.22, 1) 0.5s infinite;
}

.firework03 {
  animation: hanabi 3s cubic-bezier(0.19, 1, 0.22, 1) 1s infinite;
}

.firework04 {
  animation: hanabi 3.5s cubic-bezier(0.19, 1, 0.22, 1) 0s 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);
  }
}
.lead__ttl-sub {
  opacity: 0;
  transition: all .8s ease-out .4s;
}
.lead__ttl-sub.is-done {
  opacity: 1;
}

.lead__ttl-sub img {
  animation: poyopoyo01 3s ease infinite .4s;
}
