@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: "pref";
  font-display: swap;
  src: url("../fonts/pres.woff2") format("woff2");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: left;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

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%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 92%;
  max-width: 1060px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  display: block;
  width: 100%;
  padding: 30px 40px;
  transition: all 0.3s ease;
}
.smenu.active {
  background: white;
}
@media all and (max-width: 767px) {
  .smenu {
    padding: 20px;
  }
}

.logo {
  position: relative;
  z-index: 110;
  transition: all 0.3s ease;
}
.logo:hover {
  opacity: 0.5;
}
.logo img {
  height: 32px;
  transition: all 0.3s ease;
}
@media all and (max-width: 767px) {
  .logo img {
    height: 22.5px;
    width: auto;
  }
}

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

#nav-open {
  display: none;
  width: 52px;
  height: 52px;
  vertical-align: middle;
  padding: 46px 31.5px;
  box-sizing: border-box;
  z-index: 10000;
  cursor: pointer;
  transition: all 0.5s ease;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 1px; /*線の太さ*/
  width: 26px; /*長さ*/
  border-radius: 10px;
  background: #000;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
@media all and (max-width: 1300px) {
  #nav-open {
    display: inline-block;
    padding: 13px 13.5px;
    position: absolute;
    right: -10px;
    top: -10px;
  }
  #nav-open i {
    position: absolute;
    font-size: 1rem;
    width: 100%;
    bottom: 5px;
    left: 0;
    text-align: center;
  }
}
#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;
  gap: 0 24px;
}
#nav-content .inb {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: all 0.3s ease;
  padding-top: 20px;
}
#nav-content .inb .in {
  background: white;
  padding: 16px 20px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #000;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.08);
}
#nav-content .inb a {
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
#nav-content .inb a:last-of-type {
  margin-bottom: 0;
}
#nav-content .inb a:hover i:before {
  width: 100%;
}
#nav-content .inb i {
  position: relative;
}
#nav-content .inb i:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}
#nav-content a {
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
}
#nav-content .nv_bx:hover .inb {
  opacity: 1;
  visibility: visible;
}
#nav-content .menu_t {
  position: relative;
  padding-right: 20px;
  box-sizing: border-box;
  background: url("../images/arw1.png") center right no-repeat;
  background-size: 10px auto;
}
#nav-content .spl i {
  position: relative;
}
#nav-content .spl i:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}
#nav-content .spl:hover i:before {
  width: 100%;
}
#nav-content .contact {
  display: block;
  margin-left: 6px;
  color: white;
  background: #000;
  padding: 7px 20px;
  border-radius: 100px;
  box-sizing: border-box;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
#nav-content .contact:hover {
  background: white;
  color: #000;
}
#nav-content .spn, #nav-content br {
  display: none;
}
@media all and (max-width: 1300px) {
  #nav-content {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 100;
    width: 100%;
    display: block;
    text-align: center;
    background: white;
    padding: 100px 5% 60px 5%;
  }
  #nav-content a {
    display: block;
    font-size: 1.4rem;
    padding: 10px 0;
  }
  #nav-content .inb {
    display: none;
  }
  #nav-content .inb .in {
    border: none;
    box-shadow: none;
  }
  #nav-content .inb a {
    font-size: 1.2rem;
    border-bottom: 1px solid #ccc;
  }
  #nav-content .spn {
    display: block;
    margin-bottom: 4px;
  }
  #nav-content br {
    display: block;
  }
  #nav-content .spl {
    padding: 18px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
    text-align: left;
    background: url("../images/arw_navsp.png") center right no-repeat;
    background-size: 36px auto;
    transition: all 0.3s ease;
  }
  #nav-content .spl:hover {
    background: url("../images/arw_navsp_o.png") center right no-repeat;
    background-size: 36px auto;
  }
  #nav-content .spl:hover i:before {
    content: none;
  }
  #nav-content .spl:hover span, #nav-content .spl:hover i {
    opacity: 0.5;
  }
  #nav-content .spl span {
    font-family: "Syne", sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
  }
  #nav-content .spl span:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    width: calc(100% + 12px);
    height: 7.5px;
    background: #6EECC4;
  }
  #nav-content .spl .n2:before {
    background: #FFD034;
  }
  #nav-content .spl .n3:before {
    background: #89ADFF;
  }
  #nav-content .spl .n4:before {
    background: #FFC0FB;
  }
  #nav-content .spl .n5:before {
    background: #FFD034;
  }
  #nav-content .spl em {
    position: relative;
    z-index: 2;
  }
  #nav-content .r1 {
    padding: 50px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #B8B8B8;
  }
  #nav-content .contact {
    max-width: 100%;
    text-align: left;
    padding: 9px 20px;
    box-sizing: border-box;
    margin: 0 auto;
    background: url("../images/arw_nav2.png") center right 15px no-repeat, #000;
    background-size: 10.5px auto;
    transition: all 0.3s ease;
  }
  #nav-content .contact:hover {
    background: url("../images/arw_nav2_o.png") center right 15px no-repeat, #fff;
    background-size: 10.5px auto;
  }
  #nav-content .contact .spn {
    display: inline;
  }
  #nav-content .ct2 {
    margin-bottom: 20px;
  }
  #nav-content .r2 {
    padding-top: 15px;
    text-align: left;
  }
  #nav-content .r2 a {
    display: inline-block;
    font-size: 1rem;
    background: url("../images/out.png") center right no-repeat;
    background-size: 11px auto;
    padding-right: 12px;
    transition: all 0.3s ease;
  }
  #nav-content .r2 a:hover {
    opacity: 0.5;
  }
  #nav-content .r2 .nav_copy {
    font-size: 1rem;
  }
}
@media all and (max-width: 767px) {
  #nav-content .r2 a:hover {
    opacity: 1;
  }
  #nav-content .contact:hover {
    color: white;
    background: url(../images/arw_nav2.png) center right 15px no-repeat, #000;
    background-size: 10.5px auto;
  }
  #nav-content .spl:hover {
    background: url("../images/arw_navsp.png") center right no-repeat;
    background-size: 36px auto;
  }
  #nav-content .spl:hover span, #nav-content .spl:hover i {
    opacity: 1;
  }
}

#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: 20px;
  color: white;
}
@media all and (max-width: 767px) {
  #nav-input:checked ~ #nav-open span {
    top: 20px;
  }
}
#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;
}

/*------------------------------------------------------------
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.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(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.title_eg {
  font-weight: 600;
  font-size: clamp(6rem, 5.8565153734vw, 8rem);
  line-height: 0.8;
  font-family: "Syne", sans-serif;
  position: relative;
}
.title_eg i {
  position: relative;
  z-index: 1;
}
.title_eg i:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 13px;
  left: 0;
  width: calc(100% + 24px);
  height: clamp(10px, 1.317715959vw, 18px);
  background: #6EECC4;
}
.title_eg em {
  position: relative;
  z-index: 3;
}
.title_eg.ttl_or i:before {
  background: #F1BC11;
}
.title_eg.ttl_bl i:before {
  background: #89ADFF;
}
.title_eg.ttl_bl2 i:before {
  background: #FFC0FB;
}
.title_eg.ttl_pin i:before {
  background: #EB93E5;
}
.title_eg.ttl_gr i:before {
  background: #FFD034;
}
.title_eg.ttl_gr2 i:before {
  background: #2CCC99;
}
@media all and (max-width: 767px) {
  .title_eg {
    font-size: 4rem;
  }
  .title_eg i:before {
    bottom: 6px;
    height: 9px;
    width: calc(100% + 12px);
  }
}

.ttl_v3 .cap {
  font-size: clamp(1.6rem, 1.6105417277vw, 2.2rem);
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .ttl_v3 .cap {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}

.ttl_h3_v1 {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  font-size: clamp(3.2rem, 3.8067349927vw, 5.2rem);
}
@media all and (max-width: 767px) {
  .ttl_h3_v1 {
    font-size: 2.8rem;
  }
}

.btn_cm1 {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 23.5px 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-bottom: 1px solid #000;
  background: url("../images/arw_btn1.png") center right 10px no-repeat;
  background-size: 40px auto;
}
.btn_cm1:hover {
  background: url("../images/arw_btn1_bl.png") center right 10px no-repeat;
  background-size: 40px auto;
}
@media all and (max-width: 767px) {
  .btn_cm1 {
    padding: 19px 10px;
    background: url("../images/arw_btn1.png") center right 10px no-repeat;
    background-size: 36px auto;
  }
  .btn_cm1:hover {
    background: url("../images/arw_btn1.png") center right 10px no-repeat;
    background-size: 36px auto;
  }
}

.btn_cm2 {
  margin: 0 auto;
  display: block;
  text-decoration: none;
  width: 290px;
  border: 1px solid #000;
  background: white;
  border-radius: 100px;
  text-align: center;
  padding: 17px 0;
  box-sizing: border-box;
  color: #000;
  transition: all 0.3s ease;
}
.btn_cm2 i {
  padding-right: 35px;
  background: url("../images/arw_dat.png") center right no-repeat;
  background-size: 15px auto;
  transition: all 0.3s ease;
}
.btn_cm2:hover {
  background: #000;
  color: white;
}
.btn_cm2:hover i {
  padding-right: 35px;
  background: url("../images/arw_dat_eh.png") center right no-repeat;
  background-size: 15px auto;
  transition: all 0.3s ease;
}
@media all and (max-width: 767px) {
  .btn_cm2 {
    font-size: 1.4rem;
    width: 210px;
    padding: 9px 0;
  }
  .btn_cm2 i {
    padding-right: 20px;
    background: url("../images/arw_dat.png") center right no-repeat;
    background-size: 11px auto;
    transition: all 0.3s ease;
  }
  .btn_cm2:hover {
    background: white;
    color: #000;
  }
  .btn_cm2:hover i {
    padding-right: 20px;
    background: url("../images/arw_dat.png") center right no-repeat;
    background-size: 11px auto;
    transition: all 0.3s ease;
  }
}

.btn_dat {
  width: 100px;
  margin: 0 0 0 auto;
  padding: 5px 20px 5px 0;
  box-sizing: border-box;
  display: block;
  background: url("../images/arw_dat.png") center right no-repeat;
  background-size: 16px auto;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
}
.btn_dat:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}
.btn_dat:hover:before {
  width: 100%;
}
@media all and (max-width: 767px) {
  .btn_dat:hover {
    opacity: 1;
  }
  .btn_dat:hover:before {
    width: 0;
  }
}

.link_no {
  pointer-events: none !important;
}

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

.p-grid {
  display: grid;
}
.p-grid.u-c2 {
  grid-template-columns: 1fr 1fr;
}

.entry {
  background: #6EECC4;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  padding: 80px 0;
  box-sizing: border-box;
  text-align: center;
}
.entry h4 {
  font-size: 2.2rem;
}
.entry .ttl_v4 .jp {
  font-size: 2.2rem;
}
@media all and (max-width: 767px) {
  .entry .ttl_v4 .jp {
    font-size: 1.5rem;
  }
}
.entry .eg {
  margin-top: 20px;
  font-family: "Syne", sans-serif;
  line-height: 1;
  font-weight: 600;
  font-size: clamp(10px, 10.2489019034vw, 140px);
}
.entry .eg em {
  position: relative;
  z-index: 2;
}
.entry .eg i {
  display: inline-block;
  position: relative;
}
.entry .eg i:before {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 18px;
  background: #2CCC99;
}
.entry .tx {
  margin: 30px 0 60px 0;
}
.entry .btn_cm2 {
  max-width: 590px;
  width: 100%;
  margin-top: 20px;
}
.entry .btn_cm2 i {
  width: 90%;
  text-align: left;
  display: block;
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  .entry {
    padding: 40px 0;
  }
  .entry h4 {
    font-size: 2.2rem;
  }
  .entry .jp {
    font-size: 1.5rem;
  }
  .entry .eg {
    margin-top: 10px;
    font-size: 6.5rem;
  }
  .entry .eg i {
    display: inline-block;
    position: relative;
  }
  .entry .eg i:before {
    bottom: 11px;
    height: 10px;
  }
  .entry .tx {
    margin: 30px 0;
  }
}

footer {
  padding: 80px max(40px, 2.9282576867vw) 0 max(40px, 2.9282576867vw);
  background: white;
}
footer .ft1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 40px 40px;
}
footer .ft1 .btn_ftl {
  transition: all 0.3s ease;
}
footer .ft1 .btn_ftl img {
  height: 66px;
}
footer .ft1 .btn_ftl:hover {
  opacity: 0.5;
}
footer .ft1 .sns {
  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 40px;
}
footer .ft1 .sns img {
  height: 40px;
  width: auto;
}
footer .ft1 .sns a {
  transition: all 0.3s ease;
}
footer .ft1 .sns a:hover {
  opacity: 0.5;
}
footer .ft2 {
  padding: 0 40px 80px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
footer .ft2 .menu1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  max-width: 460px;
  width: 100%;
}
footer .ft2 .menu1 a {
  display: block;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
}
footer .ft2 .menu1 a:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}
footer .ft2 .menu1 a:hover:before {
  width: 100%;
}
footer .ft2 .bnr {
  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;
}
footer .ft2 .bnr img {
  height: 135px;
  width: auto;
}
footer .ft2 .bnr a {
  transition: all 0.3s ease;
}
footer .ft2 .bnr a:hover {
  opacity: 0.5;
}
footer .ft3 {
  padding: 30px 0;
  box-sizing: border-box;
  border-top: 1px solid #B8B8B8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
footer .ft3 a {
  display: block;
  text-decoration: none;
  color: #333;
  background: url("../images/out.png") center right no-repeat;
  background-size: 16px auto;
  padding-right: 25px;
  transition: all 0.3s ease;
  position: relative;
}
footer .ft3 a:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}
footer .ft3 a:hover:before {
  width: 100%;
}
@media all and (max-width: 1000px) {
  footer {
    padding: 50px max(40px, 2.9282576867vw) 0 max(40px, 2.9282576867vw);
  }
  footer .ft1 {
    display: block;
    padding: 0 40px 20px 40px;
  }
  footer .ft1 .btn_ftl {
    text-align: center;
    display: block;
  }
  footer .ft1 .btn_ftl img {
    display: inline-block;
    height: 40px;
  }
  footer .ft1 .sns {
    width: 58px;
    margin: 40px auto 0 auto;
    gap: 0 20px;
  }
  footer .ft1 .sns img {
    height: 20px;
    width: auto;
  }
  footer .ft2 {
    padding: 0 40px 80px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  footer .ft2 .menu1 {
    order: 2;
    max-width: 320px;
    margin: 0 auto;
    justify-content: center;
  }
  footer .ft2 .bnr {
    order: 1;
    width: 300px;
    margin: 0 auto;
  }
}
@media all and (max-width: 767px) {
  footer {
    padding: 50px 0 0;
  }
  footer .ft1 {
    padding: 0 40px 40px 40px;
  }
  footer .ft1 .btn_ftl img {
    width: auto;
    height: 40px;
  }
  footer .ft1 .btn_ftl:hover {
    opacity: 1;
  }
  footer .ft1 .sns {
    gap: 0 20px;
    margin: 30px auto 0 auto;
  }
  footer .ft1 .sns img {
    height: 20px;
    width: auto;
  }
  footer .ft2 {
    padding: 0 40px 40px 40px;
  }
  footer .ft2 .bnr {
    width: 220px;
  }
  footer .ft2 .bnr img {
    height: 90px;
  }
  footer .ft2 .menu1 {
    gap: 10px 20px;
    font-size: 1.3rem;
  }
  footer .ft2 .menu1 a:hover:before {
    width: 0;
  }
  footer .ft3 {
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px 0;
    padding: 20px 0;
  }
  footer .ft3 .copyright {
    order: 2;
    font-size: 1rem;
  }
  footer .ft3 a {
    order: 1;
    display: inline-block;
    width: 108px;
    font-size: 1rem;
    background: url("../images/out.png") center right no-repeat;
    background-size: 11px auto;
    padding-right: 12px;
  }
  footer .ft3 a:hover:before {
    width: 0;
  }
}

.stic {
  position: fixed;
  right: 0;
  bottom: 40px;
  background: white;
  width: 370px;
  border-radius: 10px 0 0 10px;
  border: 1px solid #000;
  color: #000;
  padding: 24px 16px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 44px 1fr 40px;
  gap: 0 16px;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.stic:hover .ar {
  fill: white;
}
.stic:hover .ci {
  fill: #000;
}
.stic svg {
  width: 40px;
}
.stic svg path {
  transition: all 0.3s ease;
}
.stic svg .ar {
  fill: #000;
}
.stic svg .ci {
  fill: white;
}
.stic .title_eg {
  font-size: 2.7rem;
}
.stic .title_eg i:before {
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
}
.stic .title_eg em {
  position: relative;
  z-index: 3;
  font-size: 2.7rem;
}
.stic .cap {
  margin-top: 3px;
  font-size: 1.5rem;
}
@media all and (max-width: 767px) {
  .stic {
    bottom: 20px;
    width: 270px;
    padding: 14px 10px;
    grid-template-columns: 36px 1fr 36px;
    gap: 0 8px;
  }
  .stic:hover .ar {
    fill: #000;
  }
  .stic:hover .ci {
    fill: white;
  }
  .stic svg {
    width: 36px;
  }
  .stic svg .ar {
    fill: #000;
  }
  .stic svg .ci {
    fill: white;
  }
  .stic .title_eg {
    font-size: 1.9rem;
  }
  .stic .title_eg i:before {
    height: 4px;
  }
  .stic .title_eg em {
    font-size: 1.9rem;
  }
  .stic .cap {
    margin-top: 3px;
    font-size: 1rem;
  }
}

.mv_under {
  box-sizing: border-box;
  border-bottom: 1px solid #000;
  padding-top: 110px;
}
.mv_under .inner {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 36.6032210835vw 1fr;
  align-items: flex-start;
  gap: 0 30px;
  padding: 0 max(40px, 6.588579795vw);
  padding-bottom: 50px;
}
.mv_under .title_eg {
  white-space: nowrap;
}
.mv_under .title_eg em {
  font-size: max(50px, 5.8565153734vw);
}
.mv_under .anks {
  margin-top: max(20px, 5.8565153734vw);
}
.mv_under .anks a {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 20px 0 20px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #000;
  background: url("../images/arw_ank.png") center right 10px no-repeat;
  background-size: 40px auto;
}
.mv_under .anks i {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  display: block;
}
.mv_under .copys {
  position: relative;
  z-index: 2;
  margin-top: max(0px, 7.3206442167vw);
}
.mv_under .mv_img {
  aspect-ratio: 1/1;
  border-radius: 50% 50% 0 0;
  margin: 0 0 0 auto;
  width: 41.7276720351vw;
}
.mv_under .ttl_v3 .cap {
  margin-top: 20px;
}
@media all and (max-width: 900px) {
  .mv_under .anks a {
    padding: 15px 0 15px 10px;
    background: url(../images/arw_ank.png) center right no-repeat;
    background-size: 30px auto;
  }
}
@media all and (max-width: 767px) {
  .mv_under {
    position: relative;
    padding-top: 100px;
  }
  .mv_under .inner {
    padding-left: 15px;
    padding-right: 0;
    grid-template-columns: 1fr;
    position: relative;
    padding-bottom: 240px;
  }
  .mv_under .copys {
    position: initial;
  }
  .mv_under .eg {
    font-size: 5rem;
  }
  .mv_under .eg i {
    display: block;
    text-align: right;
  }
  .mv_under .sub {
    font-size: 2rem;
    margin: -42px 0 0 0;
  }
  .mv_under .sub2 {
    position: absolute;
    bottom: 135px;
    left: 0;
    width: 100%;
    font-size: 1.6rem;
    padding: 40px 0 0 0;
    text-align: center;
    border-bottom: none;
  }
  .mv_under .sub2 i {
    position: relative;
  }
  .mv_under .sub2 i:before, .mv_under .sub2 i:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 1px;
    background: #000;
  }
  .mv_under .sub2 i:after {
    right: unset;
    left: -30px;
  }
  .mv_under .mv_img {
    margin-top: -96px;
    width: 105%;
    border-radius: 340px 340px 0 0;
  }
  .mv_under .anks {
    position: absolute;
    bottom: 50px;
    width: 92%;
    margin-top: 0;
  }
  .mv_under .anks a {
    padding: 18px 0 18px 10px;
    background: url("../images/arw_ank.png") center right no-repeat;
    background-size: 36px auto;
  }
  .mv_under .anks i {
    font-size: 1.2rem;
  }
}

.sld2 .page_color_red .ct, .int_sec1 .int_wraps .page_color_red .ct {
  border-left: 4px solid #FFC0FB;
}
.sld2 .page_color_red .tg, .int_sec1 .int_wraps .page_color_red .tg {
  background: #FFC0FB;
}
.sld2 .page_color_yellow .ct, .int_sec1 .int_wraps .page_color_yellow .ct {
  border-left: 4px solid #FFD034;
}
.sld2 .page_color_yellow .tg, .int_sec1 .int_wraps .page_color_yellow .tg {
  background: #FFD034;
}
.sld2 .page_color_green .ct, .int_sec1 .int_wraps .page_color_green .ct {
  border-left: 4px solid #6EECC4;
}
.sld2 .page_color_green .tg, .int_sec1 .int_wraps .page_color_green .tg {
  background: #6EECC4;
}
.sld2 .page_color_blue .ct, .int_sec1 .int_wraps .page_color_blue .ct {
  border-left: 4px solid #89ADFF;
}
.sld2 .page_color_blue .tg, .int_sec1 .int_wraps .page_color_blue .tg {
  background: #89ADFF;
}

.page_color_yellow .mv {
  background: #FFD034;
}
.page_color_yellow .mv .title_eg i:before {
  background: #F1BC11;
}
.page_color_yellow .qa_bx .q:after {
  background: #FFD034;
}

.page_color_green .mv {
  background: #6EECC4;
}
.page_color_green .mv .title_eg i:before {
  background: #2CCC99;
}
.page_color_green .qa_bx .q:after {
  background: #6EECC4;
}

.page_color_blue .mv {
  background: #89ADFF;
}
.page_color_blue .mv .title_eg i:before {
  background: #628BEB;
}
.page_color_blue .qa_bx .q:after {
  background: #89ADFF;
}

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