@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@font-face {
  font-family: "hm";
  font-display: swap;
  src: url("../fonts/HelveticaNeueMedium.woff2") format("woff2");
}
@font-face {
  font-family: "hb";
  font-display: swap;
  src: url("../fonts/HelveticaNeueBold.woff2") format("woff2");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #2B2B2B;
  line-height: 1.75;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 2;
  }
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media all and (max-width: 750px) {
  .pcbr {
    display: none;
  }
}

.spbr {
  display: none;
}
@media all and (max-width: 750px) {
  .spbr {
    display: block;
  }
}

i, em {
  font-style: normal;
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  position: relative;
}

.inner {
  margin: 0 auto;
  padding: 0 clamp(4rem, 2.9282576867vw, 200rem);
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: sticky;
  top: 0;
  right: 0;
  z-index: 12;
  display: block;
  width: 100%;
  background: white;
  place-content: center;
  height: 61px;
}
.smenu .line {
  background: #2B2B2B;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media all and (max-width: 767px) {
  .smenu {
    padding: 0;
    height: 30px;
  }
}

.logo {
  position: relative;
  z-index: 30;
  margin-left: 38px;
  transition: all 0.3s ease;
}
.logo img {
  height: 21px;
  transition: all 0.3s ease;
}
.logo:hover {
  opacity: 0.5;
}
@media all and (max-width: 767px) {
  .logo {
    display: none;
  }
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 767px) {
  #nav-drawer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
  }
}

#nav-open {
  display: none;
  vertical-align: middle;
  box-sizing: border-box;
  z-index: 10000;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-left: 50px;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px; /*線の太さ*/
  width: 35px; /*長さ*/
  border-radius: 10px;
  background: #000;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span {
  display: none;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}
@media all and (max-width: 1280px) {
  #nav-open {
    display: inline-block;
  }
  #nav-open .op, #nav-open .cl {
    font-size: 1.6rem;
    padding-right: 15px;
    font-weight: 500;
    font-family: "hm", sans-serif;
  }
  #nav-open .cl {
    display: none;
    color: white;
  }
}
@media all and (max-width: 767px) {
  #nav-open {
    margin-left: 0;
    line-height: 1;
    top: 9px;
    position: absolute;
  }
}

#nav-close {
  display: block;
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  top: 0;
  right: 0;
  z-index: 9999; /*最前面に*/
  width: auto; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: none; /*最大幅（調整してください）*/
  height: 100%;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
#nav-content .nvt1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
}
#nav-content .nvt1 a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #2B2B2B;
  margin-left: 38px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  font-family: "hm", sans-serif;
}
#nav-content .nvt1 a:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 0;
  height: 1px;
  background: #2B2B2B;
  transition: all 0.3s ease;
}
#nav-content .nvt1 a:hover:before {
  width: 100%;
}
#nav-content .nvt1 .spm {
  display: none;
}
#nav-content .nvt2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
  gap: 0 20px;
  padding: 0 38px 0 96px;
}
#nav-content .nvt2 a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 8px 15px 4px 15px;
  box-sizing: border-box;
  color: white;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  font-family: "hm", sans-serif;
  background: #2B2B2B;
  border: 1px solid #2B2B2B;
}
#nav-content .nvt2 a:hover {
  color: #2b2b2b;
  background: white;
}
@media all and (max-width: 1280px) {
  #nav-content {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 100;
    width: 100%;
    display: block;
    text-align: center;
    background: #2B2B2B;
    padding-top: 110px;
  }
  #nav-content .nvt1 {
    display: block;
    text-align: left;
    max-width: 800px;
    width: calc(100% - 80px);
    margin: 0 auto;
  }
  #nav-content .nvt1 a {
    color: white;
    font-size: 3.6rem;
    margin-left: 0;
  }
  #nav-content .nvt1 a:before {
    background: white;
  }
  #nav-content .nvt2 {
    display: block;
    padding: 30px 0 0 0;
    text-align: left;
    max-width: 800px;
    width: calc(100% - 80px);
    margin: 0 auto;
  }
  #nav-content .nvt2 a {
    font-size: 1.2rem;
    padding: 8px 15px 4px 15px;
    display: block;
    width: 235px;
    border: 1px solid white;
    margin-top: 16px;
  }
  #nav-content .nvt2 a i {
    display: block;
    background: url(../images/btn_arw1.png) top 5px right no-repeat;
    background-size: 5px auto;
    transition: all 0.3s ease;
  }
  #nav-content .nvt2 a:last-of-type {
    margin-bottom: 0;
  }
  #nav-content .nvt2 a:hover {
    color: #2b2b2b;
    background: white;
  }
  #nav-content .nvt2 a:hover i {
    background: url(../images/btn_arw0.png) top 5px right no-repeat;
    background-size: 5px auto;
  }
}
@media all and (max-width: 767px) {
  #nav-content {
    padding-top: 100px;
  }
  #nav-content:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(123, 123, 123, 0.4823529412);
  }
  #nav-content .nvt1 {
    width: calc(100% - 40px);
  }
  #nav-content .nvt1 p {
    line-height: 1;
  }
  #nav-content .nvt1 p:last-of-type a {
    margin-bottom: 0;
  }
  #nav-content .nvt1 a {
    padding: 0;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  #nav-content .nvt1 .spm {
    display: block;
  }
  #nav-content .nvt2 {
    width: calc(100% - 40px);
    padding: 20px 0 0 0;
  }
}

#nav-input:checked ~ #nav-close {
  visibility: visible;
  opacity: 1;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
}
#nav-input:checked ~ #nav-open span {
  transform: rotate(40deg);
  top: 41px;
}
@media all and (max-width: 767px) {
  #nav-input:checked ~ #nav-open span {
    top: 24px;
  }
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(100deg);
}
#nav-input:checked ~ #nav-open span:after {
  right: -100px;
  opacity: 0;
}

.nav-unshown {
  display: none;
}

@media all and (max-width: 1280px) {
  .act #nav-open.act1 {
    position: fixed;
    top: 20px;
    right: 0;
  }
  .act #nav-open.act1 .op {
    display: none;
  }
  .act #nav-open.act1 .cl {
    display: block;
    color: white;
  }
}
@media all and (max-width: 767px) {
  .act #nav-open.act1 {
    top: 9px;
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  position: relative;
}
footer .ft1, footer .ft2 {
  position: relative;
  z-index: 2;
}

/*------------------------------------------------------------
parts
------------------------------------------------------------*/
/*-----accordion-------*/
.acd_wrap {
  margin-top: 100px;
}

.acd_bx {
  border: 1px solid #ccc;
  margin-top: 20px;
}
.acd_bx:first-of-type {
  margin-top: 0;
}
.acd_bx .q {
  cursor: pointer;
  padding: 20px;
  position: relative;
}
.acd_bx .a {
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
}
.acd_bx .plus {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  transition: all 0.3s ease;
}
.acd_bx .plus:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #ccc;
}
.acd_bx .plus:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background: #ccc;
  transition: all 0.3s ease;
}
.acd_bx .open .plus {
  transform: rotate(90deg);
}
.acd_bx .open .plus:before {
  opacity: 0;
  bottom: -30px;
}

/*-----layout-------*/
.photo_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.photo_text .img {
  width: 50%;
  margin-left: calc(42% - 50vw);
  flex: 1;
}
.photo_text .img img {
  width: 100%;
  object-fit: cover;
}
.photo_text .txt {
  width: 50%;
}
@media all and (max-width: 767px) {
  .photo_text {
    flex-wrap: wrap;
  }
  .photo_text .img {
    width: 100%;
    margin-left: 0;
    flex: unset;
  }
  .photo_text .txt {
    width: 100%;
  }
}

.photo_text_rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.photo_text_rev .img {
  width: 50%;
  margin-right: calc(42% - 50vw);
  flex: 1;
}
.photo_text_rev .img img {
  width: 100%;
  object-fit: cover;
}
.photo_text_rev .txt {
  width: 50%;
}
@media all and (max-width: 767px) {
  .photo_text_rev {
    flex-wrap: wrap;
  }
  .photo_text_rev .img {
    width: 100%;
    margin-right: 0;
    flex: unset;
  }
  .photo_text_rev .txt {
    width: 100%;
  }
}

.list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 20px;
}
.list .img:nth-of-type(1) {
  grid-row: 1/3;
  grid-column: 1/4;
}

/*-----btns-------*/
.under_btn {
  position: relative;
}
.under_btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0481A2;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.under_btn:hover:after {
  transform: scale(1, 1);
}
@media all and (max-width: 767px) {
  .under_btn:after {
    content: none;
  }
}

.grad_btn {
  display: block;
  color: #fff;
  padding: 18px 60px;
  border-radius: 30px;
  text-decoration: none;
  outline: none;
  background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}

.grad_btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.op0 {
  opacity: 1;
}
.trigger.txt_anm {
  opacity: 1;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}

@keyframes up {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes txt_in {
  0% {
    opacity: 1;
    translate: 0 100%;
  }
  100% {
    translate: 0 !important;
  }
}
.ttlh2_v2 {
  font-weight: 500;
  font-size: clamp(8rem, 9.3704245974vw, 12.8rem);
  letter-spacing: 0;
  line-height: 1;
  font-family: "hm", sans-serif;
  padding-top: 80px;
  box-sizing: border-box;
}
.ttlh2_v2.wh {
  color: white;
}
@media all and (max-width: 767px) {
  .ttlh2_v2 {
    font-size: 3.6rem;
    padding-top: 45px;
  }
}

.btnw {
  margin-top: 10px;
}

.btn1 {
  display: block;
  text-decoration: none;
  font-family: "hm", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: 0;
  padding-top: 18px;
  box-sizing: border-box;
  width: 230px;
  color: #2b2b2b;
  border-top: 1px solid #2b2b2b;
  transition: all 0.3s ease;
}
.btn1 i {
  display: block;
  background: url("../images/btn_arw0.png") center right 5px no-repeat;
  background-size: 10px auto;
  transition: all 0.3s ease;
}
.btn1:hover i {
  background: url("../images/btn_arw0.png") center right 0 no-repeat;
  background-size: 10px auto;
}
.btn1.wh {
  color: white;
  border-top: 1px solid #959595;
}
.btn1.wh i {
  background: url("../images/btn_arw1.png") center right 5px no-repeat;
  background-size: 10px auto;
}
.btn1.wh:hover i {
  background: url("../images/btn_arw1.png") center right 0 no-repeat;
  background-size: 10px auto;
}
@media all and (max-width: 767px) {
  .btn1 {
    font-size: 1.1rem;
    padding-top: 2px;
    width: 75px;
  }
  .btn1 i {
    background: url(../images/btn_arw0.png) top 7px right 3px no-repeat;
    background-size: 4px auto;
  }
  .btn1:hover i {
    background: url(../images/btn_arw0.png) top 7px right no-repeat;
    background-size: 4px auto;
  }
  .btn1.wh i {
    background: url(../images/btn_arw1.png) top 7px right 3px no-repeat;
    background-size: 4px auto;
  }
  .btn1.wh:hover i {
    background: url(../images/btn_arw1.png) top 7px rightno-repeat;
    background-size: 4px auto;
  }
}

.anm_area .c4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.anm_area .bx {
  background: #ccc;
  border-right: 1px solid #000;
  aspect-ratio: 1/1;
}

.contact_area {
  background: #D9D9D9;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.contact_area .ye {
  background: #FFFA14;
  height: 190px;
}
.contact_area .bl {
  background: #2B2B2B;
  height: 40px;
}
.contact_area .lead {
  font-weight: 400;
  margin-top: 30px;
}
.contact_area .c2 {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: flex-end;
}
.contact_area .tx {
  font-family: "hm", sans-serif;
  line-height: 1.5;
  border-left: 1px solid #2B2B2B;
  padding-left: 18px;
  box-sizing: border-box;
}
.contact_area .btns a {
  display: block;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 18px 15px 14px 15px;
  box-sizing: border-box;
  color: white;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  font-family: "hm", sans-serif;
  background: #2B2B2B;
  border: 1px solid #2B2B2B;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}
.contact_area .btns a:last-of-type {
  margin-bottom: 0;
}
.contact_area .btns a i {
  display: block;
  background: url("../images/btn_arw1.png") center right 10px no-repeat;
  background-size: 10px auto;
  transition: all 0.3s ease;
}
.contact_area .btns a:hover {
  background: white;
  color: #2B2B2B;
}
.contact_area .btns a:hover i {
  background: url("../images/btn_arw0.png") center right 5px no-repeat;
  background-size: 10px auto;
}
@media all and (max-width: 1000px) {
  .contact_area .c2 {
    grid-template-columns: 1fr;
  }
  .contact_area .btns {
    margin-top: 40px;
  }
  .contact_area .btns a {
    max-width: 500px;
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 767px) {
  .contact_area {
    padding-bottom: 45px;
  }
  .contact_area .ye {
    height: 95px;
  }
  .contact_area .bl {
    height: 20px;
  }
  .contact_area .lead {
    font-weight: 400;
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .contact_area .tx {
    margin-top: 20px;
    padding-left: 9px;
    font-size: 1.2rem;
  }
  .contact_area .btns a {
    max-width: 210px;
    font-size: 1.2rem;
    padding: 5px 6px 1px 6px;
    margin-bottom: 20px;
  }
  .contact_area .btns a i {
    display: block;
    background: url("../images/btn_arw1.png") top 7px right 5px no-repeat;
    background-size: 4px auto;
  }
  .contact_area .btns a:hover i {
    background: url("../images/btn_arw0.png") top 7px right no-repeat;
    background-size: 4px auto;
  }
}

footer {
  background: #2B2B2B;
  padding: 50px 0 30px 0;
  box-sizing: border-box;
  color: white;
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-start;
}
footer .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 120px;
}
footer .logos img {
  display: inline-block;
  height: 38px;
  width: auto;
}
footer .menu_wrap {
  text-align: right;
  font-family: "hm", sans-serif;
}
footer .menu_wrap a {
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
}
footer .menu_wrap a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: all 0.3s ease;
}
footer .menu_wrap a:hover:before {
  width: 100%;
}
footer .menu_wrap .menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
  gap: 0 38px;
}
footer .menu_wrap .copyright {
  margin-top: 30px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media all and (max-width: 1000px) {
  footer .inner {
    display: block;
  }
  footer .logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
    align-items: center;
  }
  footer .menu_wrap {
    margin-top: 30px;
    text-align: left;
  }
  footer .menu_wrap .menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  footer .menu_wrap .copyright {
    margin-top: 20px;
  }
}
@media all and (max-width: 767px) {
  footer {
    padding: 30px 0 15px 0;
  }
  footer .logos {
    align-items: flex-end;
  }
  footer .logos img {
    height: 33px;
  }
  footer .logos .insta img {
    height: 18px;
  }
  footer .menu_wrap {
    margin-top: 20px;
  }
  footer .menu_wrap a {
    font-size: 1rem;
  }
  footer .menu_wrap .menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  footer .menu_wrap .copyright {
    margin-top: 10px;
    font-size: 1rem;
    transform-origin: left top;
    transform: scale(0.7);
  }
}

.under_mv {
  background: #2b2b2b;
  color: white;
  padding: 65px 0 55px 0;
}
.under_mv .eg {
  font-weight: 500;
  font-size: clamp(4rem, 4.6852122987vw, 6.4rem);
  letter-spacing: 0;
  line-height: 1.45;
  font-family: "hm", sans-serif;
  box-sizing: border-box;
}
.under_mv h1 {
  display: inline-block;
  max-width: 234px;
  width: 100%;
  border-top: 1px solid white;
  font-size: 2.2rem;
  font-weight: 500;
  padding-top: 8px;
  box-sizing: border-box;
  margin-top: 8px;
}
@media all and (max-width: 767px) {
  .under_mv {
    padding: 25px 0 25px 0;
  }
  .under_mv .eg {
    font-size: 2rem;
  }
  .under_mv h1 {
    max-width: 115px;
    font-size: 1.2rem;
    padding-top: 4px;
    margin-top: 4px;
    border-top: 1px solid #CACACA;
  }
}

.anm_area .c4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.anm_area .bx_grd {
  width: 25vw;
  aspect-ratio: 1/1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  box-sizing: border-box;
}
.anm_area .bx_grd:first-child {
  border-left: 1px solid white;
}
.anm_area .bx_grd p {
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  transition: all 1s ease;
  opacity: 0;
  backface-visibility: hidden;
  perspective: 1000;
}
.anm_area .bx_grd p.op1 {
  opacity: 1;
}
.anm_area .ib1 {
  background: #4AFFAE;
}
.anm_area .ib2 {
  background: #69FF9C;
}
.anm_area .ib3 {
  background: #88FF7F;
}
.anm_area .ib4 {
  background: #BAFF36;
}
.anm_area .ib5 {
  background: #D8FF00;
}
.anm_area .ib6 {
  background: #FEFF00;
}
.anm_area .ib7 {
  background: #65DFDE;
}
.anm_area .ib8 {
  background: #4FEBC1;
}
.anm_area .ib9 {
  background: #5DECBA;
}
.anm_area .ib10 {
  background: #A2E765;
}
.anm_area .ib11 {
  background: #C3DD57;
}
.anm_area .ib12 {
  background: #FAD833;
}
.anm_area .ib13 {
  background: #5BBDE5;
}
.anm_area .ib14 {
  background: #3FD3E5;
}
.anm_area .ib15 {
  background: #43D6F5;
}
.anm_area .ib16 {
  background: #8CCABB;
}
.anm_area .ib17 {
  background: #B9B97F;
}
.anm_area .ib18 {
  background: #F9B058;
}
.anm_area .ib19 {
  background: #2F95DC;
}
.anm_area .ib20 {
  background: #34A3F6;
}
.anm_area .ib21 {
  background: #40A8F5;
}
.anm_area .ib22 {
  background: #8BA5C4;
}
.anm_area .ib23 {
  background: #B8919F;
}
.anm_area .ib24 {
  background: #F8887B;
}
.anm_area .ib25 {
  background: #2565EB;
}
.anm_area .ib26 {
  background: #3972FF;
}
.anm_area .ib27 {
  background: #5E79EE;
}
.anm_area .ib28 {
  background: #8479D9;
}
.anm_area .ib29 {
  background: #B667C1;
}
.anm_area .ib30 {
  background: #F75F9D;
}
.anm_area .ib31 {
  background: #2132FF;
}
.anm_area .ib32 {
  background: #3B30F2;
}
.anm_area .ib33 {
  background: #6731E5;
}
.anm_area .ib34 {
  background: #952FD8;
}
.anm_area .ib35 {
  background: #C62ECB;
}
.anm_area .ib36 {
  background: #F72CBF;
}
.anm_area .color1.ib1 {
  background: #EA68BC;
}
.anm_area .color1.ib2 {
  background: #EC80C5;
}
.anm_area .color1.ib3 {
  background: #F0A3D2;
}
.anm_area .color1.ib4 {
  background: #F5C8E0;
}
.anm_area .color1.ib5 {
  background: #FAE3E9;
}
.anm_area .color1.ib6 {
  background: #FDF5F1;
}
.anm_area .color1.ib7 {
  background: #EA67AA;
}
.anm_area .color1.ib8 {
  background: #EC7FB3;
}
.anm_area .color1.ib9 {
  background: #F0A2BF;
}
.anm_area .color1.ib10 {
  background: #F5C7CD;
}
.anm_area .color1.ib11 {
  background: #FAE2D5;
}
.anm_area .color1.ib12 {
  background: #FDF4DC;
}
.anm_area .color1.ib13 {
  background: #EA6791;
}
.anm_area .color1.ib14 {
  background: #EC7F99;
}
.anm_area .color1.ib15 {
  background: #F0A2A4;
}
.anm_area .color1.ib16 {
  background: #F5C6AF;
}
.anm_area .color1.ib17 {
  background: #FAE2B8;
}
.anm_area .color1.ib18 {
  background: #FDF4BE;
}
.anm_area .color1.ib19 {
  background: #EA6570;
}
.anm_area .color1.ib20 {
  background: #EC7E77;
}
.anm_area .color1.ib21 {
  background: #F0A180;
}
.anm_area .color1.ib22 {
  background: #F5C58A;
}
.anm_area .color1.ib23 {
  background: #FAE091;
}
.anm_area .color1.ib24 {
  background: #FDF297;
}
.anm_area .color1.ib25 {
  background: #EA6551;
}
.anm_area .color1.ib26 {
  background: #EC7E57;
}
.anm_area .color1.ib27 {
  background: #F0A05F;
}
.anm_area .color1.ib28 {
  background: #F5C468;
}
.anm_area .color1.ib29 {
  background: #F9DF6F;
}
.anm_area .color1.ib30 {
  background: #FDF174;
}
.anm_area .color1.ib31 {
  background: #EA643D;
}
.anm_area .color1.ib32 {
  background: #EC7C42;
}
.anm_area .color1.ib33 {
  background: #F0A04A;
}
.anm_area .color1.ib34 {
  background: #F5C353;
}
.anm_area .color1.ib35 {
  background: #F9DE5B;
}
.anm_area .color1.ib36 {
  background: #FDF060;
}
.anm_area .color2.ib1 {
  background: #DE66C3;
}
.anm_area .color2.ib2 {
  background: #E07FCE;
}
.anm_area .color2.ib3 {
  background: #E4A2DC;
}
.anm_area .color2.ib4 {
  background: #EAC6EA;
}
.anm_area .color2.ib5 {
  background: #EFE1F4;
}
.anm_area .color2.ib6 {
  background: #F2F3FB;
}
.anm_area .color2.ib7 {
  background: #C863C3;
}
.anm_area .color2.ib8 {
  background: #CA7CCD;
}
.anm_area .color2.ib9 {
  background: #CF9FDB;
}
.anm_area .color2.ib10 {
  background: #D5C3E9;
}
.anm_area .color2.ib11 {
  background: #DADEF3;
}
.anm_area .color2.ib12 {
  background: #DEF0FB;
}
.anm_area .color2.ib13 {
  background: #A55FC2;
}
.anm_area .color2.ib14 {
  background: #A878CD;
}
.anm_area .color2.ib15 {
  background: #AD9ADA;
}
.anm_area .color2.ib16 {
  background: #B5BFE8;
}
.anm_area .color2.ib17 {
  background: #BBD9F2;
}
.anm_area .color2.ib18 {
  background: #BFEBFA;
}
.anm_area .color2.ib19 {
  background: #795AC2;
}
.anm_area .color2.ib20 {
  background: #7D73CC;
}
.anm_area .color2.ib21 {
  background: #8496DA;
}
.anm_area .color2.ib22 {
  background: #8EB9E8;
}
.anm_area .color2.ib23 {
  background: #96D4F2;
}
.anm_area .color2.ib24 {
  background: #9CE4F9;
}
.anm_area .color2.ib25 {
  background: #4E55C1;
}
.anm_area .color2.ib26 {
  background: #546FCB;
}
.anm_area .color2.ib27 {
  background: #5F90D9;
}
.anm_area .color2.ib28 {
  background: #6CB3E7;
}
.anm_area .color2.ib29 {
  background: #76CCF1;
}
.anm_area .color2.ib30 {
  background: #7EDEF9;
}
.anm_area .color2.ib31 {
  background: #3154C1;
}
.anm_area .color2.ib32 {
  background: #3B6CCB;
}
.anm_area .color2.ib33 {
  background: #4A8ED9;
}
.anm_area .color2.ib34 {
  background: #5AB0E7;
}
.anm_area .color2.ib35 {
  background: #66C9F1;
}
.anm_area .color2.ib36 {
  background: #6FDAF8;
}

/*# sourceMappingURL=base.css.map */
