@charset "UTF-8";
/* RAINBOWFAM 2025v1_b0.1 ///////// */

/* FONT FACE ///////// */

@font-face {
  font-family: "MB101";
  src:
    url("../font/mb101-r.otf") format("opentype"),
    url("../font/mb101-h.otf") format("opentype");
  font-weight: normal bold;
}

/* FRAME ///////// */
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  /* fontsize:10px */
  color: rgba(0, 0, 0, 1);
  font-family: "MB101", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

body {
  background: #F5F5F5;
  margin: 0;
  padding: 0px;
  font-size: 1.2rem;
  line-height: 2em;
  letter-spacing: 0.1em;
}

a {
  cursor: pointer;
  color: #000;
}

a:hover {
  opacity: .6;
}

* {
  transition: all 0.2s ease-out allow-discrete;
}

/* LayOut : COMMON ///////// */
.contentsWrap {
  width: 1100px;
  margin: 0 auto;
  padding: 100px 0 0;
  position: relative;
}

.contentsWrapLow {
  width: 700px;
  margin: 0 auto;
  padding: 100px 0 0;
  position: relative;
}

/* PAGE TITLE ///////// */
#pageTitle {
  background: #FFF;
  width: 100%;
}

#pageTitle h1 {
  width: 1100px;
  margin: 0 auto;
  padding: 30px 0;
}

/* TITLE ///////// */
h1 {
  margin: 0 0 50px 0;
  font-family: "poppins", serif;
  font-size: 2.4rem;
  line-height: 1em;
  letter-spacing: 0.5em;
  font-weight: normal;
}

h2 {
  border-left: 3px solid #000;
  margin: 30px 0 0 0;
  padding: 0 0 0 20px;
  line-height: 1em;
  font-family: "MB101", serif;
  font-size: 1.4rem;
  font-weight: bold;
}

h2 i {
  font-style: normal;
  font-size: smaller;
  font-weight: normal;
}

/* VIEW MORE LINK ///////// */
.viewMore {
  border: 1px solid rgba(0, 0, 0, .1);
  width: 80px;
  height: 24px;
  font-family: "poppins", serif;
  font-size: 1rem !important;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #000;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.viewMore:hover {
  background: #000;
  color: #FFF;
  opacity: 1;
}

/* SECTION : CLEARFIX ///////// */
section:after {
  content: "";
  display: block;
  clear: both;
}

section:before {
  content: "";
  display: block;
  clear: both;
}

section {
  display: block;
}


/*- SITE TITLE ///////// */
#title {
  width: 1100px;
  height: 200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

#title a {
  margin: 0;
  padding: 0;
  font-family: "poppins", serif;
  font-size: 3rem;
  line-height: 1px;
  letter-spacing: 0.5em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
}

/*- MENU BUTTOM ///////// */
.btn-trigger {
  position: fixed;
  width: 20px;
  height: 22px;
  cursor: pointer;
  top: 100px;
  right: 100px;
  transform: translateY(-50%);
  z-index: 10;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 10px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn span:nth-of-type(1) {
  -webkit-animation: btn-bar01 .5s forwards;
  animation: btn-bar01 .5s forwards;
}

@-webkit-keyframes btn-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }

  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes btn-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }

  50% {
    transform: translateY(10px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

#btn span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}

#btn span:nth-of-type(3) {
  -webkit-animation: btn-bar03 .5s forwards;
  animation: btn-bar03 .5s forwards;
}

@-webkit-keyframes btn-bar03 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }

  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes btn-bar03 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }

  50% {
    transform: translateY(-10px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

#btn.active span:nth-of-type(1) {
  -webkit-animation: active-btn-bar01 .5s forwards;
  animation: active-btn-bar01 .5s forwards;
}

@-webkit-keyframes active-btn-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}

@keyframes active-btn-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(10px) rotate(0);
  }

  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

#btn.active span:nth-of-type(2) {
  opacity: 0;
}

#btn.active span:nth-of-type(3) {
  -webkit-animation: active-btn-bar03 .5s forwards;
  animation: active-btn-bar03 .5s forwards;
}

@-webkit-keyframes active-btn-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
}

@keyframes active-btn-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(0);
  }

  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}


/* NAVI ///////// */
nav {
  background: #FFF;
  width: auto;
  height: 100%;
  padding: 0 75px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  font-family: "poppins", serif;
  font-size: 2rem;
  letter-spacing: 0.5em;
  transform: translateX(100%);
  white-space: nowrap;
  opacity: 0;
}

nav.active {
  transform: translateX(0%);
  opacity: 1;
}

nav #menuWrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 15px 0 0 0;
}

nav ul li a {
  text-decoration: none;
}

nav ul li a:hover {
  padding: 0 0 0 0.5rem;
}

#snsList {
  margin: 40px 0;
}

#snsList li {
  display: inline-block;
}

#snsList li img {
  width: 40px;
  height: auto;
}


/* MODAL ///////// */
#modal {
  background: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  backdrop-filter: blur(2px);
  display: none;
}

#modal.active {
  display: block;
}


/*- FOOTER ///////// */
footer {
  background: #FFF;
  padding: 0 0 100px;
  font-family: "poppins", serif;
}

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

footer .contentsWrap #footerLeftMenu {
  width: calc((100% - 300px)/2);
  margin: 0 0 0 300px;
  padding: 0;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

#footerLeftMenu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footerLeftMenu li a {
  text-decoration: none;
}

#footerLeftMenu li a:hover {
  padding: 0 0 0 0.5rem;
}

footer .contentsWrap #footerRightMenu {
  width: calc((100% - 300px)/2);
  margin: 0;
  padding: 0;
  text-align: right;
}

#snsLink {
  width: auto;
  height: 30px;
  margin: 0;
  padding: 0;
}

#snsLink li {
  width: 30px !important;
  height: 30px;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 1px;
}

#snsLink li img {
  width: 30px;
  height: 30px;
}

#otherSite {
  width: auto;
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
}

#otherSite li {}

#otherSite li a {
  text-decoration: none;
}

#otherSite li a:hover {
  padding-right: 0.5em !important;
}

#copy {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
}

/* FOOTER LOWER PAGE */
footer .contentsWrapLow {
  display: flex;
  flex-wrap: wrap;
}

footer .contentsWrapLow #footerLeftMenu {
  width: 50%;
  margin: 0;
  padding: 0;
}

footer .contentsWrapLow #footerRightMenu {
  width: 50%;
  margin: 0;
  padding: 0;
  text-align: right;
}


@media screen and (max-width:1099px) {

  .contentsWrap {
    width: calc(100% - 100px);
  }

  #pageTitle h1 {
    width: calc(100% - 100px);
    margin: 0 auto;
    padding: 30px 0;
  }

  h1 {
    margin: 0 0 50px 0;
  }

  #title {
    width: 100%;
  }

  #title a {
    margin: 0 0 0 50px;
  }

  .btn-trigger {
    right: 50px;
  }

  footer .contentsWrap #footerLeftMenu {
    width: calc((100% - 100px)/3);
    margin: 0 50px 0 calc((100% - 100px) / 3 + 50px);
  }

  footer .contentsWrap #footerRightMenu {
    width: calc((100% - 100px)/3);
    margin: 0;
    padding: 0;
    text-align: right;
  }
}

@media screen and (max-width:767px) {

  .contentsWrapLow {
    width: calc(100% - 100px);
    margin: 0 auto;
    padding: 100px 0 0;
    position: relative;
  }

  h1 {
    margin: 0 0 50px 0;
  }

  #title {
    width: 100%;
  }

  #title a {
    margin: 0 0 0 50px;
  }

  .btn-trigger {
    right: 50px;
  }

  footer .contentsWrap #footerLeftMenu {
    width: 50%;
    margin: 0;
  }

  footer .contentsWrap #footerRightMenu {
    width: 50%;
  }

}

@media screen and (max-width:500px) {
  nav {
    font-size: 1.8rem;
    padding: 0 30px;
  }

  nav ul li {
    margin: 15px 0 0 0;
  }

  footer {
    letter-spacing: 0.15em;
  }

  #copy {
    font-size: 1rem;
  }


}


@media screen and (max-width:430px) {

  .contentsWrapLow {
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 100px 0 0;
    position: relative;
  }

  #pageTitle h1 {
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 30px 0;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1em;
  }

  #title a {
    font-size: 2.4rem;
    margin: 0 0 0 30px;
  }

  .btn-trigger {
    right: 30px;
  }

  .contentsWrap {
    width: calc(100% - 60px);
  }

}