@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;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #111;
  line-height: 1.8;
  letter-spacing: 0.06em;
  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.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;
  }
}

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

.inner {
  width: 95%;
  max-width: 1120px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10010;
  display: block;
  width: 100%;
  background: white;
}
@media all and (max-width: 767px) {
  .smenu {
    padding: 0;
  }
}

.logo {
  padding: 7px 20px;
}
.logo img {
  height: 46px;
  width: auto;
}
@media all and (max-width: 767px) {
  .logo {
    padding: 4px 10px;
  }
  .logo img {
    height: 40px;
    width: auto;
  }
}

.lg_txt {
  font-size: 1.4rem;
}
@media all and (max-width: 1024px) {
  .lg_txt {
    display: none;
  }
}

.btn_sch {
  position: absolute;
  right: 80px;
  top: 9px;
  display: block;
  padding: 5.5px 10px;
  border-radius: 100px;
  background: url("../images/arw1.svg") center right 15px no-repeat, #4ABCB3;
  background-size: 12px auto;
  border: 2px solid #4ABCB3;
  box-sizing: border-box;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  width: 160px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn_sch:hover {
  background: url("../images/arw1_hv.svg") center right 15px no-repeat, white;
  background-size: 12px auto;
  color: #4ABCB3;
  border: 2px solid #4ABCB3;
}
@media all and (max-width: 767px) {
  .btn_sch {
    display: none;
  }
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}

#nav-open {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  padding: 19px 14px;
  vertical-align: middle;
  box-sizing: border-box;
  z-index: 10000;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-left: 0;
  background: #000000;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px; /*線の太さ*/
  width: 32px; /*長さ*/
  border-radius: 10px;
  background: white;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}
@media all and (max-width: 767px) {
  #nav-open {
    width: 48px;
    height: 48px;
    padding: 15px 12px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    width: 24px; /*長さ*/
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
}

#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 {
  position: fixed;
  background: #4ABCB3;
  display: block;
  text-align: center;
  padding: 60px 80px 60px 80px;
  box-sizing: border-box;
  max-width: 569px;
  overflow: auto;
  top: 0;
  right: -100%;
  z-index: 9999; /*最前面に*/
  width: 100%; /*右側に隙間を作る（閉じるカバーを表示）*/
  height: 100%;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-overflow-scrolling: touch;
}
#nav-content .nv_top {
  text-align: left;
}
#nav-content .nv_top a {
  display: block;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  border-bottom: 2px solid #000;
  box-sizing: border-box;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding: 12px 0;
  background: url("../images/nvt_arw.svg") top 25px right 20px no-repeat;
  background-size: 20px auto;
}
#nav-content .nv_top a:hover {
  background: url("../images/nvt_arw.svg") top 25px right 0 no-repeat;
  background-size: 20px auto;
}
#nav-content .nv_mid {
  margin: 30px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px;
}
#nav-content .nv_mid a {
  text-decoration: none;
  color: #FEF101;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #000;
  padding: 20px 15px 20px 20px;
  box-sizing: border-box;
  box-shadow: 0 5px 0 #000;
  position: relative;
  bottom: 0;
  transition: all 0.3s ease;
}
#nav-content .nv_mid a span {
  width: 100%;
  background: url("../images/nvt_arw_y.svg") center right no-repeat;
  background-size: 16px auto;
}
#nav-content .nv_mid a:hover {
  bottom: -5px;
  box-shadow: none;
}
#nav-content .nv_mid .b1 {
  background: #E73A90;
}
#nav-content .nv_mid .b2 {
  background: #017BC7;
}
#nav-content .nv_btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
#nav-content .nv_btm .txx {
  width: 50%;
  margin: 0 0 0 auto;
  display: block;
  text-decoration: none;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  border-bottom: 2px solid #000;
  box-sizing: border-box;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding: 0 0 10px 0;
  background: url("../images/nvt_arw.svg") top 10px right 20px no-repeat;
  background-size: 16px auto;
}
#nav-content .nv_btm .txx:hover {
  background: url("../images/nvt_arw.svg") top 10px right 0 no-repeat;
  background-size: 16px auto;
}
#nav-content .nv_btm .insta {
  width: 56px;
}
#nav-content .nv_btm .insta img {
  width: 1005;
}
#nav-content .fb {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
  font-size: 2.4rem;
  text-align: left;
}
@media all and (max-width: 767px) {
  #nav-content {
    top: 48px;
    padding: 11.5% 10.5%;
  }
  #nav-content .nv_top a {
    font-size: 1.6rem;
    border-bottom: 2px solid #000;
    background: url("../images/nvt_arw.svg") top 21px right 5px no-repeat;
    background-size: 16px auto;
  }
  #nav-content .nv_top a:hover {
    background: url("../images/nvt_arw.svg") top 21px right 0 no-repeat;
    background-size: 16px auto;
  }
  #nav-content .nv_mid {
    margin: 24px auto;
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  #nav-content .nv_mid a {
    line-height: 1.4;
    display: flex;
    padding: 13px 15px 13px 20px;
  }
  #nav-content .nv_mid a span {
    width: 100%;
    background: url("../images/nvt_arw_y.svg") center right no-repeat;
    background-size: 16px auto;
  }
  #nav-content .nv_mid a:hover {
    bottom: -5px;
    box-shadow: none;
  }
  #nav-content .nv_mid .b1 {
    background: #E73A90;
  }
  #nav-content .nv_mid .b2 {
    background: #017BC7;
  }
  #nav-content .nv_btm {
    margin: 50px 0;
  }
  #nav-content .nv_btm .txx {
    font-size: 1.6rem;
    padding: 0 0 10px 0;
    background: url("../images/nvt_arw.svg") top 10px right 0 no-repeat;
    background-size: 16px auto;
  }
  #nav-content .nv_btm .txx:hover {
    background: url("../images/nvt_arw.svg") top 10px right 0 no-repeat;
    background-size: 16px auto;
  }
  #nav-content .nv_btm .insta {
    width: 48px;
  }
  #nav-content .fb {
    line-height: 1;
    font-size: 2rem;
  }
}

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

.nav-unshown {
  display: none;
}

.gpt {
  display: block;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 100;
  transition: all 0.3s ease;
}
.gpt img {
  width: 85px;
  height: auto;
}
@media all and (max-width: 767px) {
  .gpt {
    right: 5px;
    bottom: 65px;
  }
  .gpt img {
    width: 80px;
    min-width: 80px;
    height: auto;
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.bnrs {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 80px 0;
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  .bnrs {
    width: 80%;
    padding: 30px 0 50px 0;
  }
}

.bnr1 {
  position: relative;
  display: grid;
  grid-template-columns: 30.3% 1fr;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 10px 0 #000;
  transition: all 0.3s ease;
  bottom: 0;
}
.bnr1:before {
  content: "";
  position: absolute;
  top: 7%;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 93%;
  z-index: 1;
  background: #E73A90;
  border-radius: 20px;
}
.bnr1 .img {
  position: relative;
  z-index: 2;
  margin-left: 30px;
  overflow: hidden;
}
.bnr1 .img img {
  transition: all 0.3s ease;
  bottom: -7px;
}
.bnr1 .txt {
  z-index: 2;
  display: flex;
  align-items: center;
}
.bnr1 .txt .txt_in {
  width: 100%;
  position: relative;
  background: url("../images/arwy.png") top 87px right 40px no-repeat;
  background-size: 40px auto;
  transition: all 0.3s ease;
}
.bnr1 .txt .star11 {
  position: absolute;
  width: 70px;
  left: -40px;
  top: -10px;
}
.bnr1 .txt .star12 {
  width: 90px;
  position: absolute;
  right: 100px;
  bottom: -20px;
}
.bnr1 .txx {
  margin-left: -100px;
  margin-top: 20px;
}
.bnr1 .subs {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FEF101;
  text-align: center;
}
.bnr1 .m1 {
  color: white;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.bnr1 .m1 span {
  display: block;
  font-size: 4rem;
}
.bnr1:hover {
  bottom: -10px;
  box-shadow: none;
}
.bnr1:hover .txt .txt_in {
  width: 100%;
  position: relative;
  background: url("../images/arwy.png") top 87px right 20px no-repeat;
  background-size: 40px auto;
}
.bnr1:hover .img img {
  position: relative;
  transform-origin: center;
  transform: rotate(-5deg);
}
@media all and (max-width: 1024px) {
  .bnr1 {
    grid-template-columns: 25.3% 1fr;
    margin-top: 0;
  }
  .bnr1 .subs {
    display: none;
  }
  .bnr1 .img {
    margin-left: 0;
  }
  .bnr1 .txt .txt_in {
    background: url(../images/arwy.png) top 47px right 40px no-repeat;
    background-size: 40px auto;
  }
  .bnr1 .txt .star11 {
    width: 8%;
    left: -30px;
  }
  .bnr1 .txt .star12 {
    width: 11%;
    bottom: -30px;
  }
  .bnr1 .m1 {
    font-size: 5rem;
  }
  .bnr1 .m1 span {
    font-size: 4rem;
  }
}
@media all and (max-width: 767px) {
  .bnr1 {
    box-shadow: 0 5px 0 #000;
    border-radius: 10px;
    margin-top: 5px;
  }
  .bnr1:before {
    border-radius: 10px;
  }
  .bnr1:hover {
    bottom: -5px;
    box-shadow: none;
  }
  .bnr1:hover .img img {
    bottom: -5px;
    position: relative;
    transform-origin: center;
    transform: rotate(-5deg);
  }
  .bnr1 .m1 {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .bnr1 .m1 span {
    font-size: 1.6rem;
  }
  .bnr1 .img {
    grid-template-columns: 28.3% 1fr;
  }
  .bnr1 .txt .txt_in {
    background: url(../images/arwy.png) top 28px right 14px no-repeat;
    background-size: 12px auto;
  }
  .bnr1 .txt .star11 {
    width: 9%;
    top: -3px;
    left: -15px;
  }
  .bnr1 .txt .stars12 {
    width: 11%;
    bottom: -11px;
    right: 15%;
  }
  .bnr1 .txx {
    margin-left: -30px;
    margin-top: 4px;
  }
}

.bnr2 {
  position: relative;
  display: grid;
  grid-template-columns: 26.3% 1fr;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 10px 0 #000;
  transition: all 0.3s ease;
  bottom: 0;
  margin-top: 30px;
}
.bnr2:before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 90%;
  z-index: 1;
  background: #017BC7;
  border-radius: 20px;
}
.bnr2:after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 28%;
  height: 90%;
  z-index: 1;
  background: #FEF101;
  border-radius: 20px 0 0 20px;
}
.bnr2 .img {
  position: relative;
  z-index: 2;
  margin-left: 20px;
  overflow: hidden;
}
.bnr2 .img img {
  top: 2px;
  transition: all 0.3s ease;
  position: relative;
}
.bnr2 .txt {
  z-index: 2;
  display: flex;
  align-items: center;
}
.bnr2 .txt .txt_in {
  width: 100%;
  position: relative;
  background: url("../images/arwy.png") top 67px right 40px no-repeat;
  background-size: 40px auto;
  transition: all 0.3s ease;
}
.bnr2 .txt .star20 {
  position: absolute;
  width: 28px;
  left: 190px;
  top: -21px;
}
.bnr2 .txt .star21 {
  position: absolute;
  width: 48px;
  left: 60px;
  top: 90px;
}
.bnr2 .txt .star22 {
  width: 70px;
  position: absolute;
  right: 100px;
  bottom: -40px;
}
.bnr2 .txx {
  margin-left: -60px;
  margin-top: 20px;
}
.bnr2 .subs {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FEF101;
  text-align: center;
}
.bnr2 .m1 {
  color: white;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.bnr2 .m1 span {
  font-size: 4rem;
}
.bnr2:hover {
  bottom: -10px;
  box-shadow: none;
}
.bnr2:hover .img img {
  transform-origin: center;
  transform: rotate(10deg);
  top: 15px;
}
.bnr2:hover .txt_in {
  width: 100%;
  position: relative;
  background: url("../images/arwy.png") top 67px right 20px no-repeat;
  background-size: 40px auto;
}
@media all and (max-width: 1024px) {
  .bnr2 {
    grid-template-columns: 25.3% 1fr;
    margin-top: 0;
  }
  .bnr2 .subs {
    display: none;
  }
  .bnr2 .img {
    margin-left: 0;
  }
  .bnr2 .txt .txt_in {
    background: url(../images/arwy.png) top 31px right 40px no-repeat;
    background-size: 40px auto;
  }
  .bnr2 .txt .star11 {
    width: 8%;
    left: -30px;
  }
  .bnr2 .txt .star22 {
    width: 10%;
    bottom: -70px;
  }
  .bnr2 .m1 {
    font-size: 5rem;
  }
  .bnr2 .m1 span {
    font-size: 4rem;
  }
}
@media all and (max-width: 767px) {
  .bnr2 {
    box-shadow: 0 5px 0 #000;
    border-radius: 10px;
    margin-top: 5px;
  }
  .bnr2:before {
    border-radius: 10px;
  }
  .bnr2:after {
    border-radius: 10px 0 0 10px;
  }
  .bnr2:hover {
    bottom: -5px;
    box-shadow: none;
  }
  .bnr2:hover .img img {
    top: 5px;
  }
  .bnr2 .m1 {
    font-size: 2rem;
    padding-top: 9px;
  }
  .bnr2 .m1 span {
    font-size: 1.6rem;
  }
  .bnr2 .img {
    grid-template-columns: 28.3% 1fr;
    left: 3px;
  }
  .bnr2 .img img {
    top: 0px;
  }
  .bnr2 .txt .txt_in {
    background: url(../images/arwy.png) top 20px right 14px no-repeat;
    background-size: 12px auto;
  }
  .bnr2 .txt .star20 {
    width: 7%;
    left: 50px;
    top: -14px;
  }
  .bnr2 .txt .star21 {
    width: 10%;
    top: auto;
    bottom: -25px;
    left: auto;
    right: 12%;
    transform: rotate(45deg);
  }
  .bnr2 .txt .star22 {
    width: 7%;
    bottom: -21px;
    right: 85%;
    transform: rotate(45deg);
  }
  .bnr2 .txx {
    margin-left: -10px;
    margin-top: 4px;
  }
}

.bnr_sp_txt {
  display: none;
}
@media all and (max-width: 1024px) {
  .bnr_sp_txt {
    display: block;
    text-align: center;
  }
  .bnr_sp_txt img {
    display: inline-block;
    height: 20px;
    width: auto;
  }
}
@media all and (max-width: 767px) {
  .bnr_sp_txt img {
    height: 20px;
  }
}

@media all and (max-width: 1024px) {
  .bnr_sp_txt2 {
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  .bnr_sp_txt2 {
    margin-top: 20px;
  }
}

footer .acbx {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
footer .left {
  background: #4ABCB3;
  color: white;
  padding: 60px 30px 60px 80px;
  box-sizing: border-box;
}
footer .f_logo {
  width: 240px;
  display: block;
  margin: 0 auto 40px auto;
}
footer .f_logo img {
  width: 100%;
}
footer .names {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}
footer .names .lg1 {
  width: 78px;
  margin-right: 20px;
}
footer .names .lg1 img {
  width: 100%;
}
footer .names .names2 {
  font-size: 2.8rem;
  font-weight: 700;
}
footer .ads {
  margin-top: 20px;
  font-size: 1.4rem;
  position: relative;
}
footer .ads a {
  display: block;
  width: 56px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
}
footer .ads a:hover {
  opacity: 0.5;
}
footer .tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
footer .numb {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  color: white;
  letter-spacing: 0;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}
footer .btn1_top {
  text-align: left;
  display: block;
  margin: 10px 0 0 auto;
  width: 204px;
  padding: 12px 10px 12px 40px;
  box-sizing: border-box;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
  border-radius: 100px;
  border: 2px solid #000;
  background: url("../images/arw_w1.svg") center right 20px no-repeat, #000;
  background-size: 16px auto;
  transition: all 0.3s ease;
}
footer .btn1_top:hover {
  background: url("../images/arwb.svg") center right 20px no-repeat, white;
  color: #000;
  background-size: 16px auto;
}
footer .map {
  width: 100%;
}
footer .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
footer .map .gmap {
  height: 100%;
  overflow: hidden;
  padding-bottom: 20.25%;
  position: relative;
}
footer .copy {
  text-align: center;
  font-size: 1.4rem;
  padding: 10px 0;
  box-sizing: border-box;
}
@media all and (max-width: 1280px) {
  footer .acbx {
    grid-template-columns: 1fr;
  }
  footer .cont {
    max-width: 700px;
    margin: 0 auto;
  }
  footer .map .gmap {
    height: 500px;
    padding-bottom: 30.25%;
  }
}
@media all and (max-width: 767px) {
  footer {
    margin-bottom: 60px;
  }
  footer .left {
    padding: 30px 8%;
    letter-spacing: 0;
  }
  footer .f_logo {
    width: 160px;
    margin: 0 auto 20px auto;
  }
  footer .names .lg1 {
    width: 52px;
    margin-right: 10px;
  }
  footer .names .names2 {
    font-size: 1.6rem;
  }
  footer .ads {
    margin-top: 20px;
    font-size: 1.6rem;
  }
  footer .ads a {
    margin: 20px auto 0 auto;
    position: relative;
  }
  footer .tels {
    display: block;
  }
  footer .numb {
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: 0;
  }
  footer .btn1_top {
    margin: 30px auto 20px auto;
    width: 220px;
    padding: 8px 10px 8px 55px;
  }
  footer .map .gmap {
    height: 375px;
  }
  footer .copy {
    font-size: 1rem;
    padding: 10px 0;
  }
}

.sp_navs {
  display: none;
}
@media all and (max-width: 767px) {
  .sp_navs {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 100;
    border-top: 4px solid white;
    border-bottom: 6px solid #000;
    display: grid;
    grid-template-columns: 57% 43%;
    gap: 0;
  }
  .sp_navs a {
    text-decoration: none;
    display: block;
    color: #FFFF00;
    font-weight: 900;
    font-size: 2rem;
    padding: 4px 0;
    box-sizing: border-box;
    text-align: center;
  }
  .sp_navs .bb1 {
    background: #E73A90;
  }
  .sp_navs .bb2 {
    background: #017BC7;
  }
}

/*------------------------------------------------------------
parts
------------------------------------------------------------*/
.bread {
  margin-top: 60px;
  padding: 10px 20px;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 1.2rem;
  font-weight: 500;
}
.bread a {
  text-decoration: none;
  color: #939393;
  position: relative;
  padding-right: 15px;
  box-sizing: border-box;
}
.bread a:before {
  content: ">";
  margin-top: 0;
  margin-left: 0;
  font-size: 1.2rem;
  font-weight: 500;
  position: absolute;
  right: 3px;
  top: 0;
}
@media all and (max-width: 767px) {
  .bread {
    font-size: 1rem;
  }
  .bread a {
    padding-right: 10px;
  }
  .bread a:before {
    font-size: 1rem;
    right: 1px;
  }
}

.under_mv .ttl_bx {
  text-align: center;
}
.under_mv .ttl_bx h1 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 30px;
}
.under_mv .ttl_bx .sub {
  letter-spacing: 0;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media all and (max-width: 767px) {
  .under_mv .ttl_bx {
    text-align: center;
  }
  .under_mv .ttl_bx h1 {
    font-size: 2.8rem;
    margin-top: 10px;
  }
  .under_mv .ttl_bx .sub {
    margin-top: 2px;
    font-size: 1.6rem;
  }
}

/*-----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.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;
  }
}
.content {
  opacity: 0;
  pointer-events: none;
}

body.appear .content {
  animation-name: PageAnime-content;
  animation-duration: 0.55s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}

.animation .content {
  opacity: 1;
  pointer-events: auto;
}

.move .animation-bg {
  background: #75bec2;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ltr .animation-bg {
  animation-name: PageAnime-ltr;
}

@keyframes PageAnime-ltr {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

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