/*=============================
// variable
===============================*/
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

/* base */
html {
  color: #292929;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" on;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 13.6vw;
  }
}

body {
  margin-top: 80px;
  position: relative;
  min-width: 1000px;
}
@media (max-width: 768px) {
  body {
    margin-top: 13.6vw;
    min-width: 100%;
  }
}
body::before {
  display: none;
  content: "";
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.27);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  body::before {
    display: block;
  }
}
body.is-visible-menu {
  overflow: hidden;
}
body.is-visible-menu::before {
  opacity: 1;
  pointer-events: auto;
}

figure, picture {
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.5;
}

/* header */
.header {
  width: 100%;
  padding: 0 20px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header_inner {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.header_daskin {
  margin-right: 20px;
  width: 157px;
}
.header_akiya {
  width: 142px;
}
.header_nav {
  margin: 0 32px 0 auto;
}
.header_nav ul {
  display: flex;
  flex-flow: row wrap;
  gap: 0 32px;
}
.header_nav ul li {
  font-size: 16px;
}
.header_contact {
  padding: 4px 19px 5px;
  background: #F06F66;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  position: relative;
}
.header_contact::before {
  content: "";
  width: 7px;
  height: 10px;
  background: url("../img/common/button_icon_arrow_white.png") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}
.header_menu {
  display: none;
}

@media (max-width: 1000px) {
  .header_daskin {
    margin-right: 12px;
    width: 127px;
  }
  .header_akiya {
    width: 112px;
  }
  .header_nav {
    margin: 0 12px 0 auto;
  }
  .header_nav ul {
    gap: 0 12px;
  }
  .header_nav ul li {
    font-size: 14px;
  }
  .header_contact {
    padding: 4px 10px 5px;
    font-size: 14px;
  }
  .header_contact::before {
    right: 8px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 3.2vw;
  }
  .header_inner {
    height: 13.6vw;
  }
  .header_daskin {
    margin-right: 2.6666666667vw;
    width: 20.8vw;
  }
  .header_akiya {
    width: 19.7333333333vw;
  }
  .header_nav {
    display: none;
  }
  .header_contact {
    margin: 0 0 0 auto;
    padding: 0.8vw 2.6666666667vw 1.0666666667vw;
    font-size: 2.6666666667vw;
    line-height: 1.3;
  }
  .header_contact::before {
    width: 1.0666666667vw;
    height: 1.6vw;
    right: 2.4vw;
  }
  .header_menu {
    display: block;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    margin-left: 3.2vw;
    position: relative;
  }
  .header_menu span {
    display: block;
    width: 5.3333333333vw;
    height: 0.5333333333vw;
    background: #016B2A;
  }
  .header_menu::before, .header_menu::after {
    content: "";
    width: 5.3333333333vw;
    height: 0.5333333333vw;
    background: #016B2A;
    position: absolute;
    left: 0;
  }
  .header_menu::before {
    top: 0;
  }
  .header_menu::after {
    bottom: 0;
  }
}
/* drawer */
.drawer {
  display: none;
}

@media (max-width: 768px) {
  .drawer {
    padding: 10.6666666667vw 5.3333333333vw 9.6vw;
    width: 100%;
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s;
  }
  .is-visible-menu .drawer {
    transform: translateY(0);
  }
  .drawer_close {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    position: absolute;
    top: 4.8vw;
    right: 3.4666666667vw;
  }
  .drawer_close span {
    width: 5.3333333333vw;
    height: 0.5333333333vw;
    background: #016B2A;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .drawer_close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(30deg);
  }
  .drawer_close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-30deg);
  }
  .drawer_logo {
    margin-bottom: 8.5333333333vw;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 0 7.4666666667vw;
  }
  .drawer_logo a {
    width: 36.8vw;
  }
  .drawer_contact {
    margin: 0 auto 8.5333333333vw;
    width: 100%;
    background: linear-gradient(to bottom, #f06f66 0%, #ff3a2b 100%);
    border-radius: 999px;
    color: #fff;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    max-width: 74.4vw;
    height: 24vw;
    border: 0.8vw solid #fff;
    font-size: 4.8vw;
    box-shadow: 0 0 1.0666666667vw rgba(44, 44, 44, 0.18);
    position: relative;
  }
  .drawer_contact > span {
    text-align: left;
    line-height: 1.3;
  }
  .drawer_contact > span > span {
    letter-spacing: -0.4em;
  }
  .drawer_contact::after {
    content: "";
    background: url("../img/top/cta_btn_arrow_orange.png") no-repeat center/contain;
    margin-left: 4.5333333333vw;
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translate(0, -50%);
  }
  .drawer_nav {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 3.4666666667vw 0;
  }
  .drawer_nav ul {
    display: flex;
    flex-flow: column;
    width: 50%;
    gap: 3.4666666667vw;
  }
  .drawer_nav ul li a {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0 1.0666666667vw;
  }
  .drawer_nav ul li a::before {
    content: "";
    width: 4.5333333333vw;
    height: 4.5333333333vw;
    background: url("../img/common/footer_nav_icon_arrow.png") no-repeat center/contain;
  }
  .drawer_nav ul li a[target=_blank]::before {
    background: url("../img/common/footer_nav_icon_blank.png") no-repeat center/contain;
  }
  .drawer_nav ul li a span {
    width: calc(100% - 5.6vw);
    font-size: 4.2666666667vw;
    line-height: 1.25;
  }
}
/* footer */
.footer {
  padding: 59px 30px 12px;
  background: #FFFCF0;
}
.footer_inner {
  margin: 0 auto;
  max-width: 1138px;
}
.footer_primary {
  margin-bottom: 60px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.footer_primary .duskin {
  margin-right: 36px;
  width: 160px;
}
.footer_primary .akiya {
  width: 160px;
}
.footer_primary .sns {
  margin: 0 0 0 auto;
  display: flex;
  flex-flow: row wrap;
  gap: 0 26px;
}
.footer_primary .sns li {
  width: 27px;
}
.footer_secondary {
  margin-bottom: 69px;
  display: flex;
  flex-flow: row wrap;
}
.footer_secondary p {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #009F4C;
  color: #009F4C;
  font-size: 25px;
  font-weight: 800;
}
.footer_secondary nav {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.footer_secondary nav ul {
  display: flex;
  flex-flow: column;
  gap: 13px;
}
.footer_secondary nav ul li a {
  display: flex;
  flex-flow: row wrap;
  gap: 0 4px;
}
.footer_secondary nav ul li a::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../img/common/footer_nav_icon_arrow.png") no-repeat center/contain;
  position: relative;
}
.footer_secondary nav ul li a[target=_blank]::before {
  background: url("../img/common/footer_nav_icon_blank.png") no-repeat center/contain;
}
.footer_copyright {
  color: #009F4C;
  font-family: "poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    padding: 7.4666666667vw 5.3333333333vw 4.2666666667vw;
  }
  .footer_primary {
    margin-bottom: 11.2vw;
    flex-flow: column;
    align-items: center;
  }
  .footer_primary .duskin {
    margin: 0 0 6.4vw;
    width: 42.6666666667vw;
  }
  .footer_primary .akiya {
    margin: 0 0 6.4vw;
    width: 42.6666666667vw;
  }
  .footer_primary .sns {
    margin: 0 auto;
    gap: 0 6.9333333333vw;
  }
  .footer_primary .sns li {
    width: 7.2vw;
  }
  .footer_secondary {
    margin-bottom: 11.7333333333vw;
  }
  .footer_secondary p {
    margin-bottom: 5.3333333333vw;
    padding-bottom: 3.2vw;
    border-bottom: 0.2666666667vw solid #009F4C;
    font-size: 5.3333333333vw;
  }
  .footer_secondary nav {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 3.4666666667vw 0;
  }
  .footer_secondary nav ul {
    width: 50%;
    gap: 3.4666666667vw 2.6666666667vw;
  }
  .footer_secondary nav ul li a {
    gap: 0 1.0666666667vw;
  }
  .footer_secondary nav ul li a::before {
    width: 4.5333333333vw;
    height: 4.5333333333vw;
    top: 0vw;
  }
  .footer_secondary nav ul li a span {
    font-size: 4.2666666667vw;
    width: calc(100% - 5.6vw);
  }
  .footer_copyright {
    display: block;
    font-size: 3.2vw;
  }
}
/* cta */
.cta {
  padding: 78px 30px 52px;
  background: url("../img/top/cta_bg.png") no-repeat center/cover;
}
.cta.is-bg-green {
  background: url("../img/top/cta_bg_green.png") no-repeat center/cover;
}
.cta_inner {
  margin: 0 auto;
  max-width: 1040px;
  display: flex;
  flex-flow: row wrap;
  gap: 0 28px;
}
.cta_contact {
  padding: 65px 20px 48px;
  width: calc(100% - 255px - 28px);
  background: #fff;
  border-radius: 20px;
  position: relative;
}
.cta_contact .fukidashi {
  padding: 10px 20px;
  background: #292929;
  border-radius: 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta_contact .fukidashi::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 15px solid #292929;
  border-bottom: 0;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translate(-50%, 100%);
}
.cta_contact .desc {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
}
.cta_contact .desc span {
  font-size: 40px;
}
.cta_contact .button {
  margin: 0 auto;
  width: 100%;
  max-width: 463px;
  height: 85px;
  background: linear-gradient(to bottom, #f06f66 0%, #ff3a2b 100%);
  border-radius: 999px;
  border: 3px solid #fff;
  color: #fff;
  font-size: 22px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 4px rgba(44, 44, 44, 0.18);
}
.cta_contact .button > span > span {
  letter-spacing: -0.4em;
}
.cta_contact .button::after {
  margin-left: 20px;
  content: "";
  width: 34px;
  height: 34px;
  background: url("../img/top/cta_btn_arrow_orange.png") no-repeat center/contain;
}
.cta_contact .attention {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
  line-height: 1.45;
}
.cta_merry {
  padding: 25px 22px;
  width: 255px;
  background: #fff;
  border: 3px solid #D6007F;
  border-radius: 20px;
}
.cta_merry .desc {
  margin-bottom: 33px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.cta_merry .logo {
  margin-bottom: 16px;
}
.cta_merry .button {
  margin: 0 auto;
  width: 100%;
  max-width: 210px;
  height: 55px;
  background: #D6007F;
  border-radius: 999px;
  border: 3px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 4px rgba(44, 44, 44, 0.18);
  position: relative;
}
.cta_merry .button::after {
  content: "";
  width: 26px;
  height: 26px;
  background: url("../img/top/cta_btn_arrow_purple.png") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

@media (max-width: 768px) {
  .cta {
    padding: 11.2vw 8.5333333333vw 23.7333333333vw;
    background: url("../img/top/cta_bg_sp.png") no-repeat center/cover;
  }
  .cta.is-bg-green {
    background: url("../img/top/cta_bg_green_sp.png") no-repeat center/cover;
  }
  .cta_inner {
    gap: 5.3333333333vw;
  }
  .cta_contact {
    padding: 12.8vw 5.3333333333vw 5.3333333333vw;
    width: 100%;
    border-radius: 5.3333333333vw;
  }
  .cta_contact .fukidashi {
    width: 63.4666666667vw;
    padding: 1.6vw 2.9333333333vw 1.8666666667vw;
    border-radius: 2.6666666667vw;
    font-size: 4.8vw;
  }
  .cta_contact .fukidashi::before {
    border-right: 1.6vw solid transparent;
    border-left: 1.6vw solid transparent;
    border-top: 4vw solid #292929;
    bottom: 0.5333333333vw;
  }
  .cta_contact .desc {
    margin-bottom: 3.7333333333vw;
    font-size: 5.3333333333vw;
    line-height: 1.3;
  }
  .cta_contact .desc span {
    font-size: 5.3333333333vw;
  }
  .cta_contact .button {
    max-width: 74.4vw;
    height: 24vw;
    border: 0.8vw solid #fff;
    font-size: 4.8vw;
    box-shadow: 0 0 1.0666666667vw rgba(44, 44, 44, 0.18);
    position: relative;
  }
  .cta_contact .button > span {
    text-align: left;
    line-height: 1.3;
  }
  .cta_contact .button > span > span {
    letter-spacing: -0.4em;
  }
  .cta_contact .button::after {
    margin-left: 4.5333333333vw;
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translate(0, -50%);
  }
  .cta_contact .attention {
    margin-top: 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
  .cta_merry {
    padding: 5.8666666667vw 6.4vw;
    width: 100%;
    border: 0.8vw solid #D6007F;
    border-radius: 5.3333333333vw;
  }
  .cta_merry .desc {
    margin-bottom: 5.3333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
  .cta_merry .logo {
    width: 55.4666666667vw;
    margin: 0 auto 1.3333333333vw;
  }
  .cta_merry .button {
    max-width: 56vw;
    height: 14.6666666667vw;
    border: 0.8vw solid #fff;
    font-size: 5.3333333333vw;
    box-shadow: 0 0 1.0666666667vw rgba(44, 44, 44, 0.18);
  }
  .cta_merry .button::after {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    right: 3.2vw;
  }
}

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