@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
:root {
  --view-size: 1440;
}

@media screen and (max-width: 768px) {
  :root {
    --view-size: 375;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 / var(--view-size) * 100vw);
  font-weight: 500;
  line-height: 1.8;
  color: #333;
}

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

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

a {
  transition: 0.3s;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: calc(1200 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
}

/* display */
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

.common_ttl_wrap {
  text-align: center;
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .common_ttl_wrap {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.common_ttl_wrap .common_ttl {
  font-size: calc(40 / var(--view-size) * 100vw);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .common_ttl_wrap .common_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
.common_ttl_wrap .common_ttl .text_large {
  font-size: calc(56 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .common_ttl_wrap .common_ttl .text_large {
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.common_ttl_en {
  font-family: "Dela Gothic One", sans-serif;
  color: #63328D;
  font-size: calc(16 / var(--view-size) * 100vw);
}

.text_purple {
  color: #63328D;
}

.common_cta_row {
  margin-top: calc(40 / var(--view-size) * 100vw);
}
.common_cta_row .cta_btn {
  width: calc(250 / var(--view-size) * 100vw);
  color: #fff;
  font-size: calc(20 / var(--view-size) * 100vw);
  padding: calc(13 / var(--view-size) * 100vw) 0;
  position: relative;
  margin-right: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .common_cta_row .cta_btn {
    margin-bottom: calc(16 / var(--view-size) * 100vw);
    margin-right: 0;
  }
}
.common_cta_row .cta_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.common_cta_row .cta_btn.cta_btn_line {
  background-color: #00B900;
  padding-left: calc(64 / var(--view-size) * 100vw);
}
.common_cta_row .cta_btn.cta_btn_line::before {
  background: url(../images/icon_line_white.png) center/cover no-repeat;
  width: calc(22 / var(--view-size) * 100vw);
  height: calc(22 / var(--view-size) * 100vw);
  left: calc(36 / var(--view-size) * 100vw);
}
.common_cta_row .cta_btn.cta_btn_mail {
  background-color: #AC1414;
  padding-left: calc(56 / var(--view-size) * 100vw);
}
.common_cta_row .cta_btn.cta_btn_mail::before {
  background: url(../images/icon_mail_white.png) center/cover no-repeat;
  width: calc(20 / var(--view-size) * 100vw);
  height: calc(15 / var(--view-size) * 100vw);
  left: calc(30 / var(--view-size) * 100vw);
}
.common_cta_row .cta_btn.cta_btn_contact {
  background-color: #1554AA;
  padding-left: calc(78 / var(--view-size) * 100vw);
  margin-right: 0;
}
@media (max-width: 768px) {
  .common_cta_row .cta_btn.cta_btn_contact {
    margin-bottom: 0;
  }
}
.common_cta_row .cta_btn.cta_btn_contact::before {
  background: url(../images/icon_tel_white.png) center/cover no-repeat;
  width: calc(22 / var(--view-size) * 100vw);
  height: calc(22 / var(--view-size) * 100vw);
  left: calc(50 / var(--view-size) * 100vw);
}

.common_cta {
  height: calc(450 / var(--view-size) * 100vw);
  position: relative;
  border-bottom: calc(10 / var(--view-size) * 100vw) solid #63328D;
}
@media (max-width: 768px) {
  .common_cta {
    height: auto;
    background: #333;
    border-bottom: calc(8 / var(--view-size) * 100vw) solid #63328D;
    padding-bottom: calc(64 / var(--view-size) * 100vw);
  }
}
.common_cta .common_cta_text {
  font-size: calc(24 / var(--view-size) * 100vw);
  color: #fff;
  width: calc(367 / var(--view-size) * 100vw);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(58 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .common_cta .common_cta_text {
    width: 100%;
    padding: calc(40 / var(--view-size) * 100vw) calc(32 / var(--view-size) * 100vw) 0;
    margin-bottom: calc(24 / var(--view-size) * 100vw);
    font-size: calc(20 / var(--view-size) * 100vw);
    position: initial;
    transform: translateY(0);
  }
}
.common_cta .common_cta_row {
  position: absolute;
  bottom: calc(50 / var(--view-size) * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: calc(782 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .common_cta .common_cta_row {
    width: calc(250 / var(--view-size) * 100vw);
    position: initial;
    transform: translateX(0);
    margin: 0 auto;
  }
}

.fix_btn_area {
  position: fixed;
  right: calc(-120 / var(--view-size) * 100vw);
  top: calc(120 / var(--view-size) * 100vw);
  width: calc(40 / var(--view-size) * 100vw);
  z-index: 1000;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .fix_btn_area {
    top: auto;
    bottom: calc(-300 / var(--view-size) * 100vw);
    background-color: #f7f7f7;
    border-top: calc(5 / var(--view-size) * 100vw) solid #63328D;
    width: 100%;
    padding: calc(10 / var(--view-size) * 100vw) 0;
    right: 0;
  }
}
.fix_btn_area.active {
  right: 0;
}
@media (max-width: 768px) {
  .fix_btn_area.active {
    bottom: 0;
  }
}
.fix_btn_area .fix_btn {
  height: calc(200 / var(--view-size) * 100vw);
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: calc(8 / var(--view-size) * 100vw);
  color: #fff;
  position: relative;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.fix_btn_area .fix_btn::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fix_btn_area .fix_btn.fix_btn_line {
  background-color: #00B900;
  padding-top: calc(43 / var(--view-size) * 100vw);
}
.fix_btn_area .fix_btn.fix_btn_line::before {
  background: url(../images/icon_line_white.png) center/cover no-repeat;
  width: calc(22 / var(--view-size) * 100vw);
  height: calc(22 / var(--view-size) * 100vw);
  top: calc(15 / var(--view-size) * 100vw);
}
.fix_btn_area .fix_btn.fix_btn_mail {
  background-color: #AC1414;
  padding-top: calc(37 / var(--view-size) * 100vw);
}
.fix_btn_area .fix_btn.fix_btn_mail::before {
  background: url(../images/icon_mail_white.png) center/cover no-repeat;
  width: calc(20 / var(--view-size) * 100vw);
  height: calc(15 / var(--view-size) * 100vw);
  top: calc(18 / var(--view-size) * 100vw);
}
.fix_btn_area .fix_btn.fix_btn_tel {
  background-color: #1554AA;
  margin-bottom: 0;
  padding-top: calc(61 / var(--view-size) * 100vw);
}
.fix_btn_area .fix_btn.fix_btn_tel::before {
  background: url(../images/icon_tel_white.png) center/cover no-repeat;
  width: calc(22 / var(--view-size) * 100vw);
  height: calc(22 / var(--view-size) * 100vw);
  top: calc(31 / var(--view-size) * 100vw);
}
.fix_btn_area .common_cta_row {
  margin-top: 0;
}
.fix_btn_area .cta_btn {
  width: calc(119 / var(--view-size) * 100vw);
  font-size: calc(14 / var(--view-size) * 100vw);
  margin-bottom: 0;
  padding: calc(8 / var(--view-size) * 100vw) 0;
}
.fix_btn_area .cta_btn.cta_btn_line {
  padding-left: calc(30 / var(--view-size) * 100vw);
}
.fix_btn_area .cta_btn.cta_btn_line::before {
  left: calc(12 / var(--view-size) * 100vw);
  width: calc(16 / var(--view-size) * 100vw);
  height: calc(16 / var(--view-size) * 100vw);
}
.fix_btn_area .cta_btn.cta_btn_mail {
  padding-left: calc(26 / var(--view-size) * 100vw);
}
.fix_btn_area .cta_btn.cta_btn_mail::before {
  left: calc(7 / var(--view-size) * 100vw);
  width: calc(16 / var(--view-size) * 100vw);
  height: calc(12 / var(--view-size) * 100vw);
}
.fix_btn_area .cta_btn.cta_btn_contact {
  padding-left: calc(27 / var(--view-size) * 100vw);
}
.fix_btn_area .cta_btn.cta_btn_contact::before {
  left: calc(7 / var(--view-size) * 100vw);
  width: calc(17 / var(--view-size) * 100vw);
  height: calc(17 / var(--view-size) * 100vw);
}

.paint_bg {
  width: calc(1360 / var(--view-size) * 100vw);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .paint_bg {
    width: calc(341 / var(--view-size) * 100vw);
    top: calc(120 / var(--view-size) * 100vw);
  }
}

#company_anker {
  margin-top: calc(-80 / var(--view-size) * 100vw);
  padding-top: calc(80 / var(--view-size) * 100vw);
}

header {
  background-color: #f7f7f7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5000;
  box-shadow: 0px calc(2 / var(--view-size) * 100vw) calc(5 / var(--view-size) * 100vw) rgba(0, 0, 0, 0.15);
}
header .header_row {
  width: calc(1376 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  header .header_row {
    width: calc(343 / var(--view-size) * 100vw);
  }
}
header .header_link {
  width: 100%;
}
@media (max-width: 768px) {
  header .header_link {
    width: calc(128 / var(--view-size) * 100vw);
  }
}
header .header_link .header_logo {
  width: calc(175 / var(--view-size) * 100vw);
  padding: calc(12 / var(--view-size) * 100vw) 0;
}
@media (max-width: 768px) {
  header .header_link .header_logo {
    width: 100%;
    padding: calc(8 / var(--view-size) * 100vw) 0;
  }
}
header .header_link .header_logo h1 {
  line-height: 1;
}
header .header_link .header_logo img {
  vertical-align: baseline;
}
header .header_link .header_nav_pc li {
  margin-right: calc(24 / var(--view-size) * 100vw);
}
header .header_link .header_nav_pc li:last-child {
  margin-right: 0;
}
header .header_link .header_nav_pc li a {
  font-size: calc(14 / var(--view-size) * 100vw);
}

.menu_btn_wrap {
  display: none;
}
@media (max-width: 768px) {
  .menu_btn_wrap {
    display: flex;
    align-items: center;
  }
}
.menu_btn_wrap .menu_btn_text {
  font-size: calc(14 / var(--view-size) * 100vw);
  margin-right: calc(8 / var(--view-size) * 100vw);
}

.menu_btn {
  display: none;
}
@media (max-width: 768px) {
  .menu_btn {
    display: block;
    width: calc(29 / var(--view-size) * 100vw);
    height: calc(29 / var(--view-size) * 100vw);
    position: relative;
    z-index: 4000;
    border: calc(1 / var(--view-size) * 100vw) solid #333;
  }
  .menu_btn span {
    display: inline-block;
    height: calc(1 / var(--view-size) * 100vw);
    width: calc(17 / var(--view-size) * 100vw);
    background-color: #333;
    border-radius: calc(10 / var(--view-size) * 100vw);
    position: absolute;
    top: calc(8 / var(--view-size) * 100vw);
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .menu_btn span:nth-child(1) {
    top: calc(9 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(2) {
    top: calc(15 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(3) {
    top: calc(21 / var(--view-size) * 100vw);
  }
}

.header_menu_inner {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FAF6F4;
  z-index: 500;
  transition: 500ms ease-out;
  padding: calc(130 / var(--view-size) * 100vw) 0 0;
  z-index: 3000;
}
.header_menu_inner .header_nav_sp {
  width: calc(220 / var(--view-size) * 100vw);
  margin: 0 auto;
  position: relative;
}
.header_menu_inner .header_nav_sp::before {
  content: "";
  background: url(../images/bg_paint.png) center/cover no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(-70 / var(--view-size) * 100vw);
  width: calc(341 / var(--view-size) * 100vw);
  height: calc(134 / var(--view-size) * 100vw);
  z-index: 1;
}
.header_menu_inner .header_nav_sp .row {
  position: relative;
  z-index: 100;
}
.header_menu_inner .header_nav_sp li {
  width: 50%;
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
.header_menu_inner .header_nav_sp li a {
  font-size: calc(14 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btns {
  width: calc(250 / var(--view-size) * 100vw);
  margin: calc(40 / var(--view-size) * 100vw) auto 0;
}
.header_menu_inner .header_btns .header_btn {
  color: #fff;
  font-size: calc(20 / var(--view-size) * 100vw);
  font-weight: bold;
  width: 100%;
  padding: calc(13 / var(--view-size) * 100vw) 0;
  margin-bottom: calc(16 / var(--view-size) * 100vw);
  position: relative;
  display: block;
}
.header_menu_inner .header_btns .header_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header_menu_inner .header_btns .header_btn.header_btn_line {
  background-color: #00B900;
  padding-left: calc(64 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btns .header_btn.header_btn_line::before {
  background: url(../images/icon_line_white.png) center/cover no-repeat;
  width: calc(22 / var(--view-size) * 100vw);
  height: calc(22 / var(--view-size) * 100vw);
  left: calc(36 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btns .header_btn.header_btn_mail {
  background-color: #AC1414;
  padding-left: calc(56 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btns .header_btn.header_btn_mail::before {
  background: url(../images/icon_mail_white.png) center/cover no-repeat;
  width: calc(20 / var(--view-size) * 100vw);
  height: calc(15 / var(--view-size) * 100vw);
  left: calc(30 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btns .header_btn.header_btn_contact {
  margin-bottom: 0;
  background-color: #1554AA;
  padding-left: calc(78 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btns .header_btn.header_btn_contact::before {
  background: url(../images/icon_mail_tel.png) center/cover no-repeat;
  width: calc(22 / var(--view-size) * 100vw);
  height: calc(22 / var(--view-size) * 100vw);
  left: calc(50 / var(--view-size) * 100vw);
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .header_menu_inner {
  opacity: 1 !important;
  left: 0 !important;
}

/* footer */
footer {
  background-color: #333;
  padding: calc(40 / var(--view-size) * 100vw);
  text-align: center;
}
footer .footer_logo {
  width: calc(88 / var(--view-size) * 100vw);
  margin: 0 auto calc(8 / var(--view-size) * 100vw);
}
footer .copyright {
  font-size: calc(12 / var(--view-size) * 100vw);
  color: #fff;
}

.mv {
  background: url(../images/mv_bg_pc.jpg) center/cover no-repeat;
  height: calc(810 / var(--view-size) * 100vw);
  position: relative;
  border-bottom: calc(10 / var(--view-size) * 100vw) solid #63328D;
}
@media (max-width: 768px) {
  .mv {
    background: url(../images/mv_bg_sp.jpg) center/cover no-repeat;
    height: calc(667 / var(--view-size) * 100vw);
    margin-top: calc(28 / var(--view-size) * 100vw);
  }
}
.mv .mv_textarea {
  position: absolute;
  bottom: calc(48 / var(--view-size) * 100vw);
  left: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .mv .mv_textarea {
    bottom: calc(32 / var(--view-size) * 100vw);
    left: calc(20 / var(--view-size) * 100vw);
    width: calc(335 / var(--view-size) * 100vw);
  }
}
.mv .mv_textarea .mv_ttl_wrap {
  border-bottom: calc(3 / var(--view-size) * 100vw) solid #fff;
  padding-bottom: calc(16 / var(--view-size) * 100vw);
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .mv .mv_textarea .mv_ttl_wrap {
    border-bottom: calc(2 / var(--view-size) * 100vw) solid #fff;
    padding-bottom: calc(5 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.mv .mv_textarea .mv_ttl_wrap .mv_ttl {
  color: #fff;
  font-size: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .mv .mv_textarea .mv_ttl_wrap .mv_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
.mv .mv_textarea .mv_ttl_wrap .mv_ttl .text_small {
  font-size: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .mv .mv_textarea .mv_ttl_wrap .mv_ttl .text_small {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}
.mv .mv_textarea .mv_ttl_wrap .mv_ttl .text_box {
  padding: 0 calc(8 / var(--view-size) * 100vw);
  border: calc(3 / var(--view-size) * 100vw) solid #fff;
  margin: 0 calc(4 / var(--view-size) * 100vw);
}
.mv .mv_text {
  color: #fff;
}
@media (max-width: 768px) {
  .mv .mv_text {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}

.achievements {
  padding: calc(130 / var(--view-size) * 100vw) 0;
  background-color: #FAF6F4;
}
@media (max-width: 768px) {
  .achievements {
    padding: calc(72 / var(--view-size) * 100vw) 0;
  }
}
.achievements .achievements_row .achievements_item {
  width: calc(580 / var(--view-size) * 100vw);
  background-color: #fff;
}
@media (max-width: 768px) {
  .achievements .achievements_row .achievements_item {
    width: 100%;
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
  .achievements .achievements_row .achievements_item:last-child {
    margin-bottom: 0;
  }
}
.achievements .achievements_row .achievements_item .achievements_textarea {
  padding: calc(24 / var(--view-size) * 100vw);
  background-color: #fff;
}
.achievements .achievements_row .achievements_item .achievements_textarea .achievements_item_ttlarea {
  margin-bottom: calc(8 / var(--view-size) * 100vw);
  display: flex;
  align-items: center;
}
.achievements .achievements_row .achievements_item .achievements_textarea .achievements_item_ttlarea .achievements_item_ttl {
  padding: calc(4 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
  background-color: #63328D;
  color: #fff;
  font-size: calc(20 / var(--view-size) * 100vw);
  margin-right: calc(16 / var(--view-size) * 100vw);
}
.achievements .achievements_row .achievements_item .achievements_textarea .achievements_item_ttlarea .achievements_insta {
  width: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .achievements .achievements_row .achievements_item .achievements_textarea .achievements_item_text {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}

.worries {
  background-color: #fff;
  padding-top: calc(120 / var(--view-size) * 100vw);
  position: relative;
  border-bottom: calc(10 / var(--view-size) * 100vw) solid #63328D;
}
@media (max-width: 768px) {
  .worries {
    padding-top: calc(64 / var(--view-size) * 100vw);
    border-bottom: calc(8 / var(--view-size) * 100vw) solid #63328D;
  }
}
.worries .worries_bg {
  background: url(../images/worries_bg.jpg) center/cover no-repeat;
  width: 100%;
  height: calc(880 / var(--view-size) * 100vw);
  -webkit-clip-path: polygon(100% 90%, 50% 100%, 0 90%, 0 0, 100% 0);
          clip-path: polygon(100% 90%, 50% 100%, 0 90%, 0 0, 100% 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .worries .worries_bg {
    height: calc(1000 / var(--view-size) * 100vw);
  }
}
.worries .inner {
  position: relative;
  z-index: 100;
}
.worries .worries_ttl_wrap .common_ttl {
  color: #fff;
}
@media (max-width: 768px) {
  .worries .worries_ttl_wrap .common_ttl {
    line-height: 1.8;
  }
}
.worries .worries_ttl_wrap .common_ttl_en {
  color: #fff;
}
.worries .worries_ttl_wrap .text_large {
  position: relative;
}
.worries .worries_ttl_wrap .text_large::after {
  content: "";
  background: url(../images/worries_ttl_border.png) center/cover no-repeat;
  width: calc(183 / var(--view-size) * 100vw);
  height: calc(7 / var(--view-size) * 100vw);
  position: absolute;
  bottom: calc(-10 / var(--view-size) * 100vw);
  left: 0;
}
@media (max-width: 768px) {
  .worries .worries_ttl_wrap .text_large::after {
    width: calc(106 / var(--view-size) * 100vw);
    height: calc(9 / var(--view-size) * 100vw);
  }
}
.worries .worries_box {
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto;
  padding: calc(64 / var(--view-size) * 100vw) calc(117 / var(--view-size) * 100vw);
  position: relative;
  background-color: #f7f7f7;
}
@media (max-width: 768px) {
  .worries .worries_box {
    width: 100%;
    padding: calc(40 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  }
}
.worries .worries_box .worries_check {
  font-size: calc(20 / var(--view-size) * 100vw);
  padding-top: calc(16 / var(--view-size) * 100vw);
  padding-bottom: calc(4 / var(--view-size) * 100vw);
  border-bottom: calc(2 / var(--view-size) * 100vw) solid #898989;
  padding-left: calc(33 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .worries .worries_box .worries_check {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.worries .worries_box .worries_check::before {
  content: "";
  background: url(../images/icon_check.png) center/cover no-repeat;
  width: calc(25 / var(--view-size) * 100vw);
  height: calc(25 / var(--view-size) * 100vw);
  position: absolute;
  left: 0;
  top: calc(20 / var(--view-size) * 100vw);
}
.worries .worries_box .worries_box_illust {
  position: absolute;
  right: calc(16 / var(--view-size) * 100vw);
  bottom: calc(16 / var(--view-size) * 100vw);
  width: calc(187 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .worries .worries_box .worries_box_illust {
    width: calc(104 / var(--view-size) * 100vw);
    right: calc(8 / var(--view-size) * 100vw);
    bottom: calc(8 / var(--view-size) * 100vw);
  }
}
.worries .worries_solution {
  padding-top: calc(240 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .worries .worries_solution {
    padding-top: calc(180 / var(--view-size) * 100vw);
  }
}
.worries .worries_solution .worries_solution_bg {
  background: url(../images/worries_solution_pc.jpg) center/cover no-repeat;
  position: absolute;
  width: 100%;
  height: calc(564 / var(--view-size) * 100vw);
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .worries .worries_solution .worries_solution_bg {
    background: url(../images/worries_solution_sp.jpg) center/cover no-repeat;
    height: calc(382 / var(--view-size) * 100vw);
  }
}
.worries .worries_solution .worries_solution_ttl {
  width: calc(626 / var(--view-size) * 100vw);
  margin: 0 auto calc(32 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .worries .worries_solution .worries_solution_ttl {
    width: 100%;
    margin-bottom: calc(64 / var(--view-size) * 100vw);
    position: relative;
  }
}
.worries .worries_solution .worries_solution_item {
  width: calc(288 / var(--view-size) * 100vw);
  background-color: #f7f7f7;
  padding: calc(40 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .worries .worries_solution .worries_solution_item {
    width: 100%;
    padding: calc(40 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .worries .worries_solution .worries_solution_item:last-child {
    margin-bottom: 0;
  }
  .worries .worries_solution .worries_solution_item .worries_solution_ttlarea {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .worries .worries_solution .worries_solution_item:nth-child(1) .worries_solution_ttlarea {
    padding-left: calc(36 / var(--view-size) * 100vw);
  }
  .worries .worries_solution .worries_solution_item:nth-child(2) .worries_solution_ttlarea {
    padding-left: calc(12 / var(--view-size) * 100vw);
  }
  .worries .worries_solution .worries_solution_item:nth-child(3) .worries_solution_ttlarea {
    padding-left: calc(34 / var(--view-size) * 100vw);
  }
  .worries .worries_solution .worries_solution_item:nth-child(4) .worries_solution_ttlarea {
    padding-left: calc(15 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .worries .worries_solution .worries_solution_item:nth-child(4) .solution_item_icon img {
    height: calc(45 / var(--view-size) * 100vw);
  }
}
.worries .worries_solution .worries_solution_item .solution_item_icon {
  text-align: center;
}
@media (max-width: 768px) {
  .worries .worries_solution .worries_solution_item .solution_item_icon {
    margin-right: calc(10 / var(--view-size) * 100vw);
  }
}
.worries .worries_solution .worries_solution_item .solution_item_icon img {
  height: calc(86 / var(--view-size) * 100vw);
  width: auto;
  display: block;
  margin: 0 auto calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .worries .worries_solution .worries_solution_item .solution_item_icon img {
    height: calc(60 / var(--view-size) * 100vw);
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.worries .worries_solution .worries_solution_item .solution_item_ttl {
  text-align: center;
  font-size: calc(24 / var(--view-size) * 100vw);
  margin-bottom: calc(16 / var(--view-size) * 100vw);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .worries .worries_solution .worries_solution_item .solution_item_ttl {
    width: calc(196 / var(--view-size) * 100vw);
    margin-bottom: 0;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .worries .worries_solution .worries_solution_item .solution_item_text {
    width: 100%;
    margin-top: calc(16 / var(--view-size) * 100vw);
  }
}
.worries .worries_gallery {
  margin-top: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .worries .worries_gallery {
    margin-top: calc(32 / var(--view-size) * 100vw);
  }
}

.service {
  padding: calc(130 / var(--view-size) * 100vw) 0;
  background: url(../images/grid_bg.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .service {
    padding: calc(72 / var(--view-size) * 100vw) 0;
  }
}
.service .service_item {
  width: calc(588 / var(--view-size) * 100vw);
  box-shadow: 0px 0px calc(10 / var(--view-size) * 100vw) rgba(0, 0, 0, 0.1);
  margin-bottom: calc(24 / var(--view-size) * 100vw);
  background-color: #fff;
  padding: calc(40 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .service .service_item {
    width: 100%;
    padding: calc(40 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  }
  .service .service_item:last-child {
    margin-bottom: 0;
  }
}
.service .service_item .service_item_img {
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
.service .service_item .service_item_ttl {
  color: #63328D;
  font-size: calc(24 / var(--view-size) * 100vw);
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .service .service_item .service_item_ttl {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}
.reason {
  background-color: #333;
  padding-bottom: calc(120 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .reason {
    padding-bottom: calc(235 / var(--view-size) * 100vw);
  }
}
.reason .reason_cont {
  padding-top: calc(104 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .reason .reason_cont {
    padding-top: calc(40 / var(--view-size) * 100vw);
  }
}
.reason .reason_cont .reason_item {
  position: relative;
  margin-bottom: calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .reason .reason_cont .reason_item {
    margin-bottom: calc(212 / var(--view-size) * 100vw);
  }
}
.reason .reason_cont .reason_item:last-child {
  margin-bottom: 0;
}
.reason .reason_cont .reason_item .reason_item_img {
  width: calc(520 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(-40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .reason .reason_cont .reason_item .reason_item_img {
    width: calc(294 / var(--view-size) * 100vw);
    top: auto;
    bottom: calc(-170 / var(--view-size) * 100vw);
  }
}
.reason .reason_cont .reason_item .reason_item_box {
  background-color: #fff;
  width: calc(960 / var(--view-size) * 100vw);
  height: calc(355 / var(--view-size) * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .reason .reason_cont .reason_item .reason_item_box {
    width: 100%;
    height: auto;
    padding: calc(40 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw) calc(64 / var(--view-size) * 100vw);
  }
}
.reason .reason_cont .reason_item .reason_item_box .reason_item_number {
  color: #63328D;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: bold;
  margin-bottom: calc(8 / var(--view-size) * 100vw);
}
.reason .reason_cont .reason_item .reason_item_box .reason_item_ttl {
  font-size: calc(24 / var(--view-size) * 100vw);
  padding-bottom: calc(8 / var(--view-size) * 100vw);
  margin-bottom: calc(24 / var(--view-size) * 100vw);
  border-bottom: calc(2 / var(--view-size) * 100vw) solid #63328D;
}
.reason .reason_cont .reason_item.reason_item_01 .reason_item_img, .reason .reason_cont .reason_item.reason_item_03 .reason_item_img, .reason .reason_cont .reason_item.reason_item_05 .reason_item_img {
  left: 0;
}
@media (max-width: 768px) {
  .reason .reason_cont .reason_item.reason_item_01 .reason_item_img, .reason .reason_cont .reason_item.reason_item_03 .reason_item_img, .reason .reason_cont .reason_item.reason_item_05 .reason_item_img {
    left: calc(20 / var(--view-size) * 100vw);
  }
}
.reason .reason_cont .reason_item.reason_item_01 .reason_item_box, .reason .reason_cont .reason_item.reason_item_03 .reason_item_box, .reason .reason_cont .reason_item.reason_item_05 .reason_item_box {
  margin-left: auto;
  padding-left: calc(320 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .reason .reason_cont .reason_item.reason_item_01 .reason_item_box, .reason .reason_cont .reason_item.reason_item_03 .reason_item_box, .reason .reason_cont .reason_item.reason_item_05 .reason_item_box {
    padding-left: calc(20 / var(--view-size) * 100vw);
    margin-left: 0;
  }
}
.reason .reason_cont .reason_item.reason_item_02 .reason_item_img, .reason .reason_cont .reason_item.reason_item_04 .reason_item_img {
  right: 0;
}
@media (max-width: 768px) {
  .reason .reason_cont .reason_item.reason_item_02 .reason_item_img, .reason .reason_cont .reason_item.reason_item_04 .reason_item_img {
    right: calc(20 / var(--view-size) * 100vw);
  }
}
.reason .reason_cont .reason_item.reason_item_02 .reason_item_box, .reason .reason_cont .reason_item.reason_item_04 .reason_item_box {
  margin-right: auto;
  padding-right: calc(320 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .reason .reason_cont .reason_item.reason_item_02 .reason_item_box, .reason .reason_cont .reason_item.reason_item_04 .reason_item_box {
    padding-right: calc(20 / var(--view-size) * 100vw);
    margin-right: 0;
  }
}

.price {
  padding: calc(120 / var(--view-size) * 100vw) 0;
  background-color: #f7f7f7;
}
@media (max-width: 768px) {
  .price {
    padding: calc(64 / var(--view-size) * 100vw) 0;
  }
}
.price .price_read {
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .price .price_read {
    width: 100%;
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.price .price_cont {
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .price .price_cont {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.price .price_cont .price_box {
  background-color: #fff;
  border-top: calc(10 / var(--view-size) * 100vw) solid #63328D;
  width: calc(384 / var(--view-size) * 100vw);
  padding: calc(50 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw) calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .price .price_cont .price_box {
    border-top: calc(8 / var(--view-size) * 100vw) solid #63328D;
    width: 100%;
    padding: calc(48 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw) calc(40 / var(--view-size) * 100vw);
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
  .price .price_cont .price_box:last-child {
    margin-bottom: 0;
  }
}
.price .price_cont .price_box:nth-child(2) .price_box_ttlarea .price_box_price .text_tax {
  left: calc(164 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .price .price_cont .price_box:nth-child(2) .price_box_ttlarea .price_box_price .text_tax {
    left: calc(148 / var(--view-size) * 100vw);
  }
}
.price .price_cont .price_box .price_box_ttlarea {
  text-align: center;
  padding-bottom: calc(32 / var(--view-size) * 100vw);
  border-bottom: calc(2 / var(--view-size) * 100vw) solid #f7f7f7;
  margin-bottom: calc(32 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .price .price_cont .price_box .price_box_ttlarea {
    padding-bottom: calc(24 / var(--view-size) * 100vw);
    margin-bottom: calc(22 / var(--view-size) * 100vw);
  }
}
.price .price_cont .price_box .price_box_ttlarea .price_box_number {
  font-size: calc(14 / var(--view-size) * 100vw);
  font-weight: bold;
  color: #63328D;
  margin-bottom: calc(8 / var(--view-size) * 100vw);
}
.price .price_cont .price_box .price_box_ttlarea .price_box_ttl {
  font-size: calc(24 / var(--view-size) * 100vw);
  display: inline-block;
  border-bottom: calc(5 / var(--view-size) * 100vw) solid #63328D;
  padding-bottom: calc(8 / var(--view-size) * 100vw);
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
.price .price_cont .price_box .price_box_ttlarea .price_box_price {
  font-size: calc(32 / var(--view-size) * 100vw);
  font-weight: bold;
  color: #63328D;
  position: relative;
}
.price .price_cont .price_box .price_box_ttlarea .price_box_price .text_large {
  font-size: calc(56 / var(--view-size) * 100vw);
}
.price .price_cont .price_box .price_box_ttlarea .price_box_price .text_tax {
  font-size: calc(12 / var(--view-size) * 100vw);
  color: #333;
  position: absolute;
  top: calc(20 / var(--view-size) * 100vw);
  left: calc(154 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .price .price_cont .price_box .price_box_ttlarea .price_box_price .text_tax {
    top: calc(24 / var(--view-size) * 100vw);
    left: calc(134 / var(--view-size) * 100vw);
  }
}
.price .price_cont .price_box .price_box_cont .price_box_item {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
.price .price_cont .price_box .price_box_cont .price_box_item:last-child {
  margin-bottom: 0;
}
.price .price_cont .price_box .price_box_cont .price_box_item .price_box_name {
  font-weight: bold;
  margin-bottom: calc(8 / var(--view-size) * 100vw);
}
.price .price_cont .price_box .price_box_cont .price_box_item .price_box_text {
  font-size: calc(14 / var(--view-size) * 100vw);
}
.price .price_cont .price_box .price_box_cont .price_box_item .price_box_cption {
  margin-top: calc(16 / var(--view-size) * 100vw);
  font-size: calc(10 / var(--view-size) * 100vw);
}
.price .price_cont .price_box .price_box_bottom {
  text-align: center;
  margin-top: calc(24 / var(--view-size) * 100vw);
  font-weight: bold;
}
.price .price_bottom {
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .price .price_bottom {
    width: 100%;
  }
}
.price .price_bottom .price_bottom_text {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .price .price_bottom .price_bottom_text {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.price .price_bottom .price_bottom_main {
  font-size: calc(24 / var(--view-size) * 100vw);
  font-weight: bold;
}
@media (max-width: 768px) {
  .price .price_bottom .price_bottom_main {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}

.flow {
  padding: calc(120 / var(--view-size) * 100vw) 0;
}
@media (max-width: 768px) {
  .flow {
    padding: calc(64 / var(--view-size) * 100vw) 0;
  }
}
.flow .flow_cont .flow_item {
  width: calc(288 / var(--view-size) * 100vw);
  background-color: #f7f7f7;
  position: relative;
  padding: calc(24 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  padding-top: calc(54 / var(--view-size) * 100vw);
  margin-bottom: calc(32 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item {
    width: 100%;
    margin-bottom: calc(16 / var(--view-size) * 100vw);
    padding: calc(32 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
    padding-top: calc(55 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item::after {
  content: "";
  width: calc(16 / var(--view-size) * 100vw);
  height: calc(10 / var(--view-size) * 100vw);
  background-color: #333;
  position: absolute;
  bottom: 50%;
  transform: translateY(-50%);
  right: calc(-16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item::after {
    width: calc(10 / var(--view-size) * 100vw);
    height: calc(16 / var(--view-size) * 100vw);
    right: 50%;
    transform: translateX(-50%);
    bottom: calc(-16 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_01 .flow_item_ttl {
  padding-left: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_01 .flow_item_ttl {
    padding-left: calc(70 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_01 .flow_item_ttl::before {
  content: "";
  background: url(../images/flow_icon01.png) center/cover no-repeat;
  width: calc(41 / var(--view-size) * 100vw);
  height: calc(41 / var(--view-size) * 100vw);
  left: calc(0 / var(--view-size) * 100vw);
  top: calc(8 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_01 .flow_item_ttl::before {
    left: calc(21 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_02 .flow_item_ttl {
  padding-left: calc(96 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_02 .flow_item_ttl {
    padding-left: calc(73 / var(--view-size) * 100vw);
    padding-top: calc(6 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_02 .flow_item_ttl::before {
  content: "";
  background: url(../images/flow_icon02.png) center/cover no-repeat;
  width: calc(46 / var(--view-size) * 100vw);
  height: calc(46 / var(--view-size) * 100vw);
  left: calc(42 / var(--view-size) * 100vw);
  top: calc(8 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_02 .flow_item_ttl::before {
    left: calc(19 / var(--view-size) * 100vw);
    top: calc(0 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_03 .flow_item_ttl {
  padding-left: calc(78 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_03 .flow_item_ttl {
    padding-left: calc(105 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_03 .flow_item_ttl::before {
  content: "";
  background: url(../images/flow_icon03.png) center/cover no-repeat;
  width: calc(38 / var(--view-size) * 100vw);
  height: calc(54 / var(--view-size) * 100vw);
  left: calc(20 / var(--view-size) * 100vw);
  top: calc(0 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_03 .flow_item_ttl::before {
    left: calc(54 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_04::after {
  content: none;
}
.flow .flow_cont .flow_item.flow_item_04 .flow_item_ttl {
  padding-left: calc(127 / var(--view-size) * 100vw);
  padding-top: calc(14 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_04 .flow_item_ttl {
    padding-left: calc(154 / var(--view-size) * 100vw);
    padding-top: calc(8 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_04 .flow_item_ttl::before {
  content: "";
  background: url(../images/flow_icon04.png) center/cover no-repeat;
  width: calc(66 / var(--view-size) * 100vw);
  height: calc(46 / var(--view-size) * 100vw);
  left: calc(53 / var(--view-size) * 100vw);
  top: calc(5 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_04 .flow_item_ttl::before {
    left: calc(80 / var(--view-size) * 100vw);
    top: 0;
  }
}
.flow .flow_cont .flow_item.flow_item_05 .flow_item_ttl {
  padding-left: calc(51 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_05 .flow_item_ttl {
    padding-left: calc(78 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_05 .flow_item_ttl::before {
  content: "";
  background: url(../images/flow_icon05.png) center/cover no-repeat;
  width: calc(34 / var(--view-size) * 100vw);
  height: calc(41 / var(--view-size) * 100vw);
  left: calc(0 / var(--view-size) * 100vw);
  top: calc(6 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_05 .flow_item_ttl::before {
    left: calc(33 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_06 .flow_item_ttl {
  padding-left: calc(81 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_06 .flow_item_ttl {
    padding-left: calc(109 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_06 .flow_item_ttl::before {
  content: "";
  background: url(../images/flow_icon06.png) center/cover no-repeat;
  width: calc(46 / var(--view-size) * 100vw);
  height: calc(51 / var(--view-size) * 100vw);
  left: calc(27 / var(--view-size) * 100vw);
  top: calc(0 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_06 .flow_item_ttl::before {
    left: calc(55 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_07 .flow_item_ttl {
  padding-left: calc(78 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_07 .flow_item_ttl {
    padding-left: calc(105 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_07 .flow_item_ttl::before {
  content: "";
  background: url(../images/flow_icon07.png) center/cover no-repeat;
  width: calc(50 / var(--view-size) * 100vw);
  height: calc(50 / var(--view-size) * 100vw);
  left: calc(20 / var(--view-size) * 100vw);
  top: calc(0 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_07 .flow_item_ttl::before {
    left: calc(47 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_08::after {
  content: none;
}
.flow .flow_cont .flow_item.flow_item_08 .flow_item_ttl {
  padding-left: calc(76 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_08 .flow_item_ttl {
    padding-left: calc(103 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item.flow_item_08 .flow_item_ttl::before {
  content: "";
  background: url(../images/flow_icon08.png) center/cover no-repeat;
  width: calc(65 / var(--view-size) * 100vw);
  height: calc(51 / var(--view-size) * 100vw);
  left: calc(3 / var(--view-size) * 100vw);
  top: calc(0 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item.flow_item_08 .flow_item_ttl::before {
    left: calc(30 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item .flow_item_number {
  padding: calc(4 / var(--view-size) * 100vw);
  color: #fff;
  background-color: #63328D;
  width: calc(110 / var(--view-size) * 100vw);
  text-align: center;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .flow .flow_cont .flow_item .flow_item_number {
    width: calc(106 / var(--view-size) * 100vw);
  }
}
.flow .flow_cont .flow_item .flow_item_ttl {
  position: relative;
  font-size: calc(20 / var(--view-size) * 100vw);
  margin-bottom: calc(16 / var(--view-size) * 100vw);
  line-height: 1.4;
}
.flow .flow_cont .flow_item .flow_item_ttl::before {
  content: "";
  position: absolute;
}
.flow .flow_cont .flow_item .flow_item_ttl .text_small {
  font-size: calc(12 / var(--view-size) * 100vw);
}
.paint {
  position: relative;
  background-color: #f7f7f7;
  padding: calc(120 / var(--view-size) * 100vw) 0;
}
@media (max-width: 768px) {
  .paint {
    padding: calc(60 / var(--view-size) * 100vw) 0;
  }
}
.paint .inner {
  position: relative;
  z-index: 100;
}
.paint .paint_row {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
.paint .paint_item {
  background-color: #fff;
  width: calc(288 / var(--view-size) * 100vw);
  padding: calc(40 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .paint .paint_item {
    width: 100%;
    margin-bottom: calc(16 / var(--view-size) * 100vw);
    padding: calc(40 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  }
}
.paint .paint_item .paint_item_ttl {
  font-size: calc(24 / var(--view-size) * 100vw);
  color: #63328D;
  margin-bottom: calc(24 / var(--view-size) * 100vw);
  text-align: center;
}
@media (max-width: 768px) {
  .paint .paint_item .paint_item_ttl {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}
.paint .paint_bottom_text {
  text-align: center;
}

.faq {
  padding: calc(120 / var(--view-size) * 100vw) 0;
  border-bottom: calc(10 / var(--view-size) * 100vw) solid #63328D;
}
@media (max-width: 768px) {
  .faq {
    border-bottom: calc(8 / var(--view-size) * 100vw) solid #63328D;
  }
}
.faq .faq_cont {
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq .faq_cont {
    width: 100%;
  }
}
.faq .faq_item {
  border-bottom: calc(2 / var(--view-size) * 100vw) solid #63328D;
  padding: calc(30 / var(--view-size) * 100vw) 0;
}
.faq .faq_item:first-child {
  padding-top: 0;
}
.faq .faq_item .faq_question {
  position: relative;
  padding-left: calc(43 / var(--view-size) * 100vw);
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq .faq_item .faq_question {
    padding-right: calc(30 / var(--view-size) * 100vw);
  }
}
.faq .faq_item .faq_question::before {
  content: "";
  background: url(../images/question.png) center/cover no-repeat;
  width: calc(27 / var(--view-size) * 100vw);
  height: calc(27 / var(--view-size) * 100vw);
  position: absolute;
  left: 0;
  top: calc(5 / var(--view-size) * 100vw);
}
.faq .faq_item .faq_question .faq_question_text {
  font-size: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .faq .faq_item .faq_question .faq_question_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.faq .faq_item .faq_question .faq_question_plus {
  position: absolute;
  right: calc(20 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
}
.faq .faq_item .faq_question .faq_question_plus::before, .faq .faq_item .faq_question .faq_question_plus::after {
  content: "";
  position: absolute;
  background-color: #333;
  width: calc(20 / var(--view-size) * 100vw);
  height: calc(2 / var(--view-size) * 100vw);
  transition: 0.3s;
}
.faq .faq_item .faq_question .faq_question_plus::after {
  transform: rotate(90deg);
}
.faq .faq_item .faq_question.active .faq_question_plus::after {
  transform: rotate(0deg);
}
.faq .faq_item .faq_answer {
  padding-top: calc(16 / var(--view-size) * 100vw);
  position: relative;
  padding-left: calc(43 / var(--view-size) * 100vw);
  display: none;
}
.faq .faq_item .faq_answer::before {
  content: "";
  background: url(../images/answer.png) center/cover no-repeat;
  width: calc(28 / var(--view-size) * 100vw);
  height: calc(24 / var(--view-size) * 100vw);
  position: absolute;
  left: 0;
  top: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .faq .faq_item .faq_answer .faq_answer_text {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}

.work {
  padding: calc(130 / var(--view-size) * 100vw) 0 0;
  background: url(../images/grid_bg.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .work {
    padding: calc(72 / var(--view-size) * 100vw) 0 0;
  }
}
.work .work_cont .work_item {
  box-shadow: 0px 0px calc(10 / var(--view-size) * 100vw) rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: calc(588 / var(--view-size) * 100vw);
  margin-bottom: calc(24 / var(--view-size) * 100vw);
  padding: calc(40 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .work .work_cont .work_item {
    width: 100%;
    padding: calc(40 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  }
}
.work .work_cont .work_item .work_item_img {
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
.work .work_cont .work_item .work_item_ttl {
  color: #63328D;
  font-size: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .work .work_cont .work_item .work_item_ttl {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}
.work .work_cont .work_item .work_item_cate {
  font-size: calc(12 / var(--view-size) * 100vw);
  margin-bottom: calc(18 / var(--view-size) * 100vw);
}
.work .work_bottom_text {
  text-align: center;
  margin-bottom: calc(64 / var(--view-size) * 100vw);
}

.staff {
  padding: calc(120 / var(--view-size) * 100vw) 0;
  background: url(../images/staff_bg.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .staff {
    padding: calc(64 / var(--view-size) * 100vw) 0;
    background: url(../images/staff_bg_sp.png) center/cover no-repeat;
  }
}
.staff .common_ttl_wrap .common_ttl,
.staff .common_ttl_wrap .common_ttl_en {
  color: #fff;
}
.staff .staff_text {
  color: #fff;
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .staff .staff_text {
    width: 100%;
  }
}
.staff .staff_item {
  width: calc(588 / var(--view-size) * 100vw);
  background-color: #fff;
  padding: calc(40 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .staff .staff_item {
    width: 100%;
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
  .staff .staff_item:last-child {
    margin-bottom: 0;
  }
}
.staff .staff_item_img {
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
.staff .staff_item_name {
  font-size: calc(14 / var(--view-size) * 100vw);
}
.staff .staff_item_name .text_purple {
  font-size: calc(24 / var(--view-size) * 100vw);
  line-height: 1.2;
  display: block;
  margin-top: calc(10 / var(--view-size) * 100vw);
}
.staff .staff_item_name .text_small {
  font-size: calc(16 / var(--view-size) * 100vw);
  margin-left: calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .staff .staff_item_name .text_small {
    margin-left: 0;
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.staff .staff_item_text {
  margin-top: calc(16 / var(--view-size) * 100vw);
}

.message {
  padding: calc(210 / var(--view-size) * 100vw) 0 calc(160 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .message {
    padding: calc(64 / var(--view-size) * 100vw) 0;
  }
}
@media (max-width: 768px) {
  .message .paint_bg {
    top: 80;
  }
}
.message .inner {
  width: calc(960 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .message .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
}
.message .message_text {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
.message .message_name {
  text-align: right;
  font-size: calc(20 / var(--view-size) * 100vw);
}

.company {
  padding-bottom: calc(120 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .company {
    padding-bottom: calc(64 / var(--view-size) * 100vw);
  }
}
.company .inner {
  width: calc(960 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .company .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
}
.company .company_cont .company_item {
  border-bottom: calc(2 / var(--view-size) * 100vw) solid #63328D;
  padding: calc(20 / var(--view-size) * 100vw) 0;
}
@media (max-width: 768px) {
  .company .company_cont .company_item {
    padding: calc(20 / var(--view-size) * 100vw);
  }
}
.company .company_cont .company_item:first-child {
  border-top: calc(2 / var(--view-size) * 100vw) solid #63328D;
}
.company .company_cont .company_name {
  width: calc(170 / var(--view-size) * 100vw);
  text-align: right;
}
@media (max-width: 768px) {
  .company .company_cont .company_name {
    width: calc(82 / var(--view-size) * 100vw);
    text-align: left;
  }
}
.company .company_cont .company_text {
  width: calc(716 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .company .company_cont .company_text {
    width: calc(197 / var(--view-size) * 100vw);
  }
}

.contact {
  padding: calc(130 / var(--view-size) * 100vw) 0;
  background: url(../images/grid_bg.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .contact {
    padding: calc(72 / var(--view-size) * 100vw) 0;
  }
}
.contact .contact_cont {
  width: calc(960 / var(--view-size) * 100vw);
  background-color: #fff;
  padding: calc(64 / var(--view-size) * 100vw) 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact .contact_cont {
    width: 100%;
    padding: calc(40 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  }
}
.contact .contact_cont form {
  width: calc(650 / var(--view-size) * 100vw);
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact .contact_cont form {
    width: 100%;
  }
  .contact .contact_cont form .wpcf7-form-control-wrap {
    position: initial;
  }
}
.contact .contact_cont .contact_item_wrap .contact_item {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
.contact .contact_cont .contact_item_wrap .contact_item .contact_item_text {
  margin-bottom: calc(6 / var(--view-size) * 100vw);
}
.contact .contact_cont .contact_item_wrap .contact_item .contact_item_text .required {
  background-color: #63328D;
  color: #fff;
  padding: calc(4 / var(--view-size) * 100vw) calc(16 / var(--view-size) * 100vw);
  font-size: calc(14 / var(--view-size) * 100vw);
  margin-left: calc(16 / var(--view-size) * 100vw);
}
.contact .contact_cont .contact_item_wrap .contact_item .contact_item_input input,
.contact .contact_cont .contact_item_wrap .contact_item .contact_item_input textarea {
  width: 100%;
  background-color: #f7f7f7;
  padding: calc(16 / var(--view-size) * 100vw);
  border: none;
  font-size: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .contact .contact_cont .contact_item_wrap .contact_item .contact_item_input input,
  .contact .contact_cont .contact_item_wrap .contact_item .contact_item_input textarea {
    padding: calc(12 / var(--view-size) * 100vw);
  }
}
.contact .contact_cont .contact_item_wrap .contact_item .contact_item_input textarea {
  height: calc(150 / var(--view-size) * 100vw);
}
.contact .contact_cont .contact_item_wrap .contact_item .contact_item_caption {
  font-size: calc(14 / var(--view-size) * 100vw);
  margin-top: calc(8 / var(--view-size) * 100vw);
}
.contact .contact_cont .contact_private {
  margin-top: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .contact .contact_cont .contact_private {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.contact .contact_cont .contact_private .contact_private_box_wrap {
  overflow: scroll;
  background-color: #f7f7f7;
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
.contact .contact_cont .contact_private .contact_private_box_wrap .contact_private_box {
  height: calc(150 / var(--view-size) * 100vw);
}
.contact .contact_cont .contact_private .contact_private_box_wrap .contact_private_box_text {
  padding: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .contact .contact_cont .contact_private .contact_private_box_wrap .contact_private_box_text {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.contact .contact_cont .contact_private .contact_private_check {
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .contact .contact_cont .contact_private .contact_private_check {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .contact .contact_cont .contact_private .contact_private_check input {
    position: absolute;
    left: 0;
    top: calc(4 / var(--view-size) * 100vw);
  }
}
.contact .contact_cont .contact_private .contact_private_check .wpcf7-list-item-label {
  font-size: calc(14 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .contact .contact_cont .contact_private .contact_private_check .wpcf7-list-item-label {
    padding-left: calc(20 / var(--view-size) * 100vw);
    position: absolute;
    left: calc(0 / var(--view-size) * 100vw);
    top: calc(0 / var(--view-size) * 100vw);
    font-size: calc(16 / var(--view-size) * 100vw);
    line-height: 1.5;
  }
}
.contact .contact_cont .contact_submit #contact_submit_btn {
  color: #fff;
  border: calc(2 / var(--view-size) * 100vw) solid #AC1414;
  width: calc(250 / var(--view-size) * 100vw);
  margin: 0 auto;
  padding: calc(13 / var(--view-size) * 100vw);
  text-align: center;
  background-color: #AC1414;
  display: block;
  margin-top: calc(37 / var(--view-size) * 100vw);
  cursor: pointer;
}
@media (max-width: 768px) {
  .contact .contact_cont .contact_submit #contact_submit_btn {
    margin-top: calc(80 / var(--view-size) * 100vw);
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}

.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: 0.8s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.8s forwards 0.1s fadein;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */