@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video,
input[type=text], input[type=tel], input[type=email], input[type=url], input[type=password], textarea, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

@media screen and (max-width: 480px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
html {
  font-size: 16px;
  letter-spacing: 0;
  --base_header_height: 90px;
  --base_container_width: 1000px;
  --base_container_pad: 17px;
  --base_the_rest_of_container: calc(var(--vw) * 100) - var(--base_container_width);
  --base_the_rest_of_container_half: calc((var(--base_the_rest_of_container)) / 2);
  --base_line_height: 1.875;
  --base_color00: #333333;
  --base_color0001: #C5DAE8;
  --base_color0002: #F1F2F4;
  --base_color0003: #F0F7FF;
  --base_color0004: #666666;
  --base_color01: #E60013;
  --base_color02: #328E39;
  --base_color03: #FFDF3F;
  --base_color0301: #FFFA6C;
  --base_color04: #C3A303;
  --base_color05: #578AD7;
  --base_color0501: #2C569A;
  --base_color0502: #DEEDFF;
  --base_color21: #02A57F;
  --base_color22: #63380D;
  --base_color2201: #A67F59;
  --base_color2202: #D9CCB5;
  --base_color2203: #E8E3D4;
  --base_color2204: #F3F0E6;
  --base_color31: #FA58AA;
  --base_color3101: #FFB6D9;
  --base_color32: #ECF5FC;
  --base_color41: #1F70D2;
  --base_color4101: #93C7FF;
  --base_color4102: #E8EFF6;
  --base_grad01: linear-gradient(to bottom, #EDF5FF 0, #DEEDFF 100%);
  --base_grad02: linear-gradient(to bottom, #DEEDFF 0, #F5FBFF 100%);
  --base_grad31: linear-gradient(to bottom, #FFE8F4 0, #FFF0EE 100%);
  --base_grad41: linear-gradient(to bottom, #C6E6FF 0, #D3F6FF 100%);
  --base_grad42: linear-gradient(to bottom, #237BE5 0, #00408E 100%);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 1rem;
  padding-top: calc(var(--base_header_height) + 30px);
  /*font-feature-settings: "palt";*/
}
@media screen and (max-width: 880px) {
  body {
    --base_header_height: 60px ;
  }
}
body.top h1 {
  opacity: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.page_loading {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: opacity 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  /* スピードの問題で現在下層では非表示にする */
}
.page_loading.hide {
  opacity: 0;
  pointer-events: none !important;
}
.page_loading.hide * {
  pointer-events: none !important;
}
.page_loading:not(.anim_loading) {
  opacity: 0;
  pointer-events: none !important;
}
.page_loading:not(.anim_loading) * {
  pointer-events: none !important;
}
.page_loading.anim_loading img {
  display: block;
}
.page_loading img {
  visibility: hidden;
  backface-visibility: hidden;
  display: none;
  width: 180px;
}

.no-transition * {
  transition: none !important;
}

.main_wrap {
  overflow: hidden;
}
.main_wrap main {
  display: block;
}

.container {
  max-width: calc(var(--base_container_width) + var(--base_container_pad) * 2);
  width: 100%;
  margin: auto;
  padding: 0 var(--base_container_pad);
}

.punc {
  display: inline-block;
}
.punc.left.vertical {
  margin-top: -0.5em;
}
.punc.left.horizontal {
  margin-left: -0.5em;
}
.punc.right.vertical {
  margin-bottom: -0.5em;
}
.punc.right.horizontal {
  /*margin-right: -0.5em;*/
  width: 0.5em;
}

.btn {
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 881px) {
  .btn:hover {
    opacity: 0.7;
  }
}

.base_content {
  overflow: hidden;
  line-height: var(--base_line_height);
}
.base_content ul {
  list-style: disc;
  margin-left: 1.7em;
}
.base_content ol {
  list-style: decimal;
  margin-left: 1.7em;
}
.base_content ol li {
  padding-left: 0.3em;
}

p {
  line-height: var(--base_line_height);
}
@media screen and (max-width: 880px) {
  p {
    font-size: 0.9375rem;
  }
}

a {
  color: var(--base_color05);
}

a[href*="tel:"] {
  color: var(--base_color00);
  text-decoration: none;
}
@media screen and (min-width: 881px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1050px) {
  br.pc_lg {
    display: none;
  }
}
@media screen and (max-width: 890px) {
  br.pc_pre_md {
    display: none;
  }
}
@media screen and (max-width: 880px) {
  br.pc_md {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  br.pc_pre_sm {
    display: none;
  }
}
br.md {
  display: none;
}
@media screen and (max-width: 880px) {
  br.md {
    display: block;
  }
}
br.pre_sm {
  display: none;
}
@media screen and (max-width: 600px) {
  br.pre_sm {
    display: block;
  }
}
br.sm {
  display: none;
}
@media screen and (max-width: 400px) {
  br.sm {
    display: block;
  }
}
br.xs {
  display: none;
}
@media screen and (max-width: 370px) {
  br.xs {
    display: block;
  }
}

.alignleft {
  display: block;
  float: left;
  margin-right: 10px;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  display: block;
  float: right;
  margin-left: 10px;
  margin-bottom: 1em;
}

.clear {
  clear: both;
}

.space1em {
  clear: both;
  height: 1em;
}

.space2em {
  clear: both;
  height: 2em;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.fit_img_wrap {
  position: relative;
  z-index: 0;
}
.fit_img_wrap .fit_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.tabs .tab_contents .content {
  display: none;
}
.tabs .tab_contents .content.active {
  display: block;
}

.flex_wrap_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--col_gap);
  row-gap: var(--row_gap);
}
.flex_wrap_list > * {
  width: calc((100% - var(--col_gap) * (var(--cols) - 1)) / var(--cols));
}

ol.list li,
ul.list li {
  position: relative;
  padding-left: 1.1em;
}
ol.list li:before,
ul.list li:before {
  position: absolute;
  left: 0;
}
ol.list.num,
ul.list.num {
  counter-reset: num_cnt;
}
ol.list.num > li,
ul.list.num > li {
  counter-increment: num_cnt;
  padding-left: 1.1em;
}
ol.list.num > li:before,
ul.list.num > li:before {
  content: counter(num_cnt);
}
ol.list.num_dot,
ul.list.num_dot {
  counter-reset: num_dot_cnt;
}
ol.list.num_dot > li,
ul.list.num_dot > li {
  counter-increment: num_dot_cnt;
  padding-left: 1.6em;
}
ol.list.num_dot > li:before,
ul.list.num_dot > li:before {
  content: counter(num_dot_cnt) "．";
}
ol.list.num_colon,
ul.list.num_colon {
  counter-reset: num_colon_cnt;
}
ol.list.num_colon > li,
ul.list.num_colon > li {
  counter-increment: num_colon_cnt;
  padding-left: 1.6em;
}
ol.list.num_colon > li:before,
ul.list.num_colon > li:before {
  content: counter(num_colon_cnt) "：";
}
ol.list.num_paren,
ul.list.num_paren {
  counter-reset: paren_cnt;
}
ol.list.num_paren > li,
ul.list.num_paren > li {
  counter-increment: paren_cnt;
  padding-left: 1.3em;
}
ol.list.num_paren > li:before,
ul.list.num_paren > li:before {
  content: "(" counter(paren_cnt) ")";
}
ol.list.num_circle,
ul.list.num_circle {
  counter-reset: circle_cnt;
}
ol.list.num_circle > li,
ul.list.num_circle > li {
  counter-increment: circle_cnt;
  padding-left: 1.4em;
}
ol.list.num_circle > li:nth-child(1):before,
ul.list.num_circle > li:nth-child(1):before {
  content: "①";
}
ol.list.num_circle > li:nth-child(2):before,
ul.list.num_circle > li:nth-child(2):before {
  content: "②";
}
ol.list.num_circle > li:nth-child(3):before,
ul.list.num_circle > li:nth-child(3):before {
  content: "③";
}
ol.list.num_circle > li:nth-child(4):before,
ul.list.num_circle > li:nth-child(4):before {
  content: "④";
}
ol.list.num_circle > li:nth-child(5):before,
ul.list.num_circle > li:nth-child(5):before {
  content: "⑤";
}
ol.list.num_circle > li:nth-child(6):before,
ul.list.num_circle > li:nth-child(6):before {
  content: "⑥";
}
ol.list.num_circle > li:nth-child(7):before,
ul.list.num_circle > li:nth-child(7):before {
  content: "⑦";
}
ol.list.num_circle > li:nth-child(8):before,
ul.list.num_circle > li:nth-child(8):before {
  content: "⑧";
}
ol.list.num_circle > li:nth-child(9):before,
ul.list.num_circle > li:nth-child(9):before {
  content: "⑨";
}
ol.list.num_circle > li:nth-child(10):before,
ul.list.num_circle > li:nth-child(10):before {
  content: "⑩";
}
ol.list.num_circle > li:nth-child(11):before,
ul.list.num_circle > li:nth-child(11):before {
  content: "⑪";
}
ol.list.num_circle > li:nth-child(12):before,
ul.list.num_circle > li:nth-child(12):before {
  content: "⑫";
}
ol.list.num_circle > li:nth-child(13):before,
ul.list.num_circle > li:nth-child(13):before {
  content: "⑬";
}
ol.list.num_circle > li:nth-child(14):before,
ul.list.num_circle > li:nth-child(14):before {
  content: "⑭";
}
ol.list.num_circle > li:nth-child(15):before,
ul.list.num_circle > li:nth-child(15):before {
  content: "⑮";
}
ol.list.num_circle > li:nth-child(16):before,
ul.list.num_circle > li:nth-child(16):before {
  content: "⑯";
}
ol.list.num_circle > li:nth-child(17):before,
ul.list.num_circle > li:nth-child(17):before {
  content: "⑰";
}
ol.list.num_circle > li:nth-child(18):before,
ul.list.num_circle > li:nth-child(18):before {
  content: "⑱";
}
ol.list.num_circle > li:nth-child(19):before,
ul.list.num_circle > li:nth-child(19):before {
  content: "⑲";
}
ol.list.num_circle > li:nth-child(20):before,
ul.list.num_circle > li:nth-child(20):before {
  content: "⑳";
}
ol.list.square > li:before,
ul.list.square > li:before {
  content: "◇";
}
ol.list.line > li:before,
ul.list.line > li:before {
  content: "－";
}
ol.list.dot > li:before,
ul.list.dot > li:before {
  content: "・";
}
ol.list.kome > li:before,
ul.list.kome > li:before {
  content: "※";
}
ol.list.circle > li:before,
ul.list.circle > li:before {
  content: "●";
}
ol.list.double_circle > li:before,
ul.list.double_circle > li:before {
  content: "◎";
}

.txtL {
  text-align: left;
}

.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.frame_wrap {
  position: relative;
  padding-bottom: 56.25%; /*縦横比*/
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.frame_wrap .map_canvas,
.frame_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
  max-width: 498px !important;
  margin: auto;
}

.anim_init,
.anim_init_r,
.anim_init_b {
  visibility: hidden;
  backface-visibility: hidden;
}

.anim_common, .fade_in_center_anim, .fade_in_left_anim, .fade_in_right_anim, .fade_in_bottom_anim, .fade_in_top_anim {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.6s !important;
  -ms-animation-duration: 0.6s !important;
  animation-duration: 0.6s !important;
  visibility: visible !important;
}

.fade_in_top_anim {
  -webkit-animation-name: fade_in_top_anim;
  animation-name: fade_in_top_anim;
}

@-webkit-keyframes fade_in_top_anim {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_in_top_anim {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_in_bottom_anim {
  -webkit-animation-name: fade_in_bottom_anim;
  animation-name: fade_in_bottom_anim;
}

@-webkit-keyframes fade_in_bottom_anim {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_in_bottom_anim {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_in_right_anim {
  -webkit-animation-name: fade_in_right_anim;
  animation-name: fade_in_right_anim;
}

@-webkit-keyframes fade_in_right_anim {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_in_right_anim {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade_in_left_anim {
  -webkit-animation-name: fade_in_left_anim;
  animation-name: fade_in_left_anim;
}

@-webkit-keyframes fade_in_left_anim {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_in_left_anim {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade_in_center_anim {
  -webkit-animation-name: fade_in_center_anim;
  animation-name: fade_in_center_anim;
}
.fade_in_center_anim.lg {
  -webkit-animation-duration: 2s !important;
  -ms-animation-duration: 2s !important;
  animation-duration: 2 !important;
}

@-webkit-keyframes fade_in_center_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_in_center_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-----------------------------------------
Contact Form7
-----------------------------------------*/
.sent .wpcf7-response-output {
  display: none !important;
}
.sent .contact_form > *:not(.sent_content) {
  display: none !important;
}
.sent .contact_form .sent_content {
  display: block;
}

.contact_form .conf_msg {
  display: none;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}
.contact_form .sent_content {
  display: none;
}
.contact_form input[type=text],
.contact_form input[type=email],
.contact_form input[type=tel],
.contact_form input[type=url],
.contact_form select,
.contact_form textarea {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background: var(--base_color0003);
  outline: none;
  border-radius: 4px;
}
.contact_form input[type=text].wpcf7c-conf,
.contact_form input[type=email].wpcf7c-conf,
.contact_form input[type=tel].wpcf7c-conf,
.contact_form input[type=url].wpcf7c-conf,
.contact_form select.wpcf7c-conf,
.contact_form textarea.wpcf7c-conf {
  background: rgba(255, 255, 255, 0) !important;
  border: 0 !important;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*Firefox用*/
  text-indent: 0.01px;
  text-overflow: "";
}
.contact_form input[type=text]:placeholder-shown,
.contact_form input[type=email]:placeholder-shown,
.contact_form input[type=tel]:placeholder-shown,
.contact_form input[type=url]:placeholder-shown,
.contact_form select:placeholder-shown,
.contact_form textarea:placeholder-shown {
  color: #89A4B7;
}
.contact_form input[type=text]::-webkit-input-placeholder,
.contact_form input[type=email]::-webkit-input-placeholder,
.contact_form input[type=tel]::-webkit-input-placeholder,
.contact_form input[type=url]::-webkit-input-placeholder,
.contact_form select::-webkit-input-placeholder,
.contact_form textarea::-webkit-input-placeholder {
  color: #89A4B7;
}
.contact_form input[type=text]:-moz-placeholder,
.contact_form input[type=email]:-moz-placeholder,
.contact_form input[type=tel]:-moz-placeholder,
.contact_form input[type=url]:-moz-placeholder,
.contact_form select:-moz-placeholder,
.contact_form textarea:-moz-placeholder {
  opacity: 1;
  color: #89A4B7;
}
.contact_form input[type=text]::-moz-placeholder,
.contact_form input[type=email]::-moz-placeholder,
.contact_form input[type=tel]::-moz-placeholder,
.contact_form input[type=url]::-moz-placeholder,
.contact_form select::-moz-placeholder,
.contact_form textarea::-moz-placeholder {
  opacity: 1;
  color: #89A4B7;
}
.contact_form input[type=text]:-ms-input-placeholder,
.contact_form input[type=email]:-ms-input-placeholder,
.contact_form input[type=tel]:-ms-input-placeholder,
.contact_form input[type=url]:-ms-input-placeholder,
.contact_form select:-ms-input-placeholder,
.contact_form textarea:-ms-input-placeholder {
  color: #89A4B7;
}
.contact_form label {
  display: inline-block;
}
.contact_form textarea {
  resize: none;
}
.contact_form .submit_btns {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 880px) {
  .contact_form .submit_btns {
    flex-direction: column;
    align-items: center;
  }
}
.contact_form .submit_btns button[type=submit],
.contact_form .submit_btns button[type=button] {
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 20px;
}
@media screen and (max-width: 880px) {
  .contact_form .submit_btns button[type=submit],
  .contact_form .submit_btns button[type=button] {
    margin: 10px 0;
  }
}
.contact_form .submit_btns button[type=submit]:hover,
.contact_form .submit_btns button[type=button]:hover {
  cursor: pointer;
}
.contact_form .submit_btns button[type=submit].btn_back,
.contact_form .submit_btns button[type=button].btn_back {
  display: none;
}
.contact_form .submit_btns button[type=submit].disabled,
.contact_form .submit_btns button[type=button].disabled {
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.contact_form .submit_btns .ajax-loader {
  display: block !important;
  margin: 10px auto !important;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -25px;
}
.contact_form .send_loading {
  display: none;
  text-align: center;
}
.contact_form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--base_color0003) inset;
}
.contact_form input.wpcf7c-conf:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--base_color0003) inset;
}
.contact_form span.wpcf7-not-valid-tip {
  font-size: 0.875rem;
  margin-top: 5px;
}
.contact_form .wpcf7-response-output {
  border: 0 !important;
  text-align: center;
  color: #f00;
  padding: 20px 0 !important;
  margin: auto !important;
  line-height: 1.3 !important;
}
.contact_form .wpcf7-form-control-wrap {
  display: block;
}
.contact_form span.wpcf7-list-item {
  margin: 0;
}
.contact_form .wpcf7-radio,
.contact_form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 880px) {
  .contact_form .wpcf7-radio,
  .contact_form .wpcf7-checkbox {
    flex-direction: column;
  }
}
.contact_form .wpcf7-custom-item-error {
  display: block;
}
.contact_form .wpcf7-custom-item-error span:nth-child(n+3) {
  display: none;
}
.contact_form .chk_confirm_wrap {
  display: none;
}
.contact_form div.wpcf7-mail-sent-ok {
  display: none !important;
}
.contact_form [data-name=sys_error] input,
.contact_form [data-name=date_error] input,
.contact_form [data-name=start_error] input {
  display: none;
}
.contact_form .dl_list dl.hide {
  row-gap: 0 !important;
}
.contact_form .dl_list dl.hide dt {
  padding: 0 !important;
}
.contact_form .dl_list dl dt .hide {
  position: absolute;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.contact_form .dl_list dl dd .note {
  margin: 5px 0;
}
.contact_form .dl_list dl dd .note p {
  color: var(--base_color00);
}

.confirm form {
  position: relative;
}
.confirm form:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
}
.confirm input[type=text],
.confirm input[type=email],
.confirm input[type=tel],
.confirm input[type=url],
.confirm select,
.confirm textarea {
  background: #fff !important;
  border: 0 !important;
}
.confirm input[type=text]:placeholder-shown,
.confirm input[type=email]:placeholder-shown,
.confirm input[type=tel]:placeholder-shown,
.confirm input[type=url]:placeholder-shown,
.confirm select:placeholder-shown,
.confirm textarea:placeholder-shown {
  color: transparent;
}
.confirm input[type=text]::-webkit-input-placeholder,
.confirm input[type=email]::-webkit-input-placeholder,
.confirm input[type=tel]::-webkit-input-placeholder,
.confirm input[type=url]::-webkit-input-placeholder,
.confirm select::-webkit-input-placeholder,
.confirm textarea::-webkit-input-placeholder {
  color: transparent;
}
.confirm input[type=text]:-moz-placeholder,
.confirm input[type=email]:-moz-placeholder,
.confirm input[type=tel]:-moz-placeholder,
.confirm input[type=url]:-moz-placeholder,
.confirm select:-moz-placeholder,
.confirm textarea:-moz-placeholder {
  opacity: 1;
  color: transparent;
}
.confirm input[type=text]::-moz-placeholder,
.confirm input[type=email]::-moz-placeholder,
.confirm input[type=tel]::-moz-placeholder,
.confirm input[type=url]::-moz-placeholder,
.confirm select::-moz-placeholder,
.confirm textarea::-moz-placeholder {
  opacity: 1;
  color: transparent;
}
.confirm input[type=text]:-ms-input-placeholder,
.confirm input[type=email]:-ms-input-placeholder,
.confirm input[type=tel]:-ms-input-placeholder,
.confirm input[type=url]:-ms-input-placeholder,
.confirm select:-ms-input-placeholder,
.confirm textarea:-ms-input-placeholder {
  color: transparent;
}
.confirm textarea {
  resize: none;
}
.confirm select {
  -webkit-appearance: none;
  appearance: none;
}
.confirm .wpcf7-radio,
.confirm .wpcf7-checkbox {
  padding: 10px !important;
  background: none !important;
  flex-direction: row;
  column-gap: 0;
  row-gap: 0;
}
.confirm .wpcf7-radio label,
.confirm .wpcf7-checkbox label {
  margin: 0;
}
.confirm .wpcf7-radio input[type=radio],
.confirm .wpcf7-radio input[type=checkbox],
.confirm .wpcf7-checkbox input[type=radio],
.confirm .wpcf7-checkbox input[type=checkbox] {
  display: none;
}
.confirm .wpcf7-radio input[type=radio] + span,
.confirm .wpcf7-radio input[type=checkbox] + span,
.confirm .wpcf7-checkbox input[type=radio] + span,
.confirm .wpcf7-checkbox input[type=checkbox] + span {
  display: none;
}
.confirm .wpcf7-radio input[type=radio]:checked + span,
.confirm .wpcf7-radio input[type=checkbox]:checked + span,
.confirm .wpcf7-checkbox input[type=radio]:checked + span,
.confirm .wpcf7-checkbox input[type=checkbox]:checked + span {
  display: inline-block;
}
.confirm input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
}
.confirm input.wpcf7c-conf:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
}
.confirm .conf_msg {
  display: block !important;
  padding-top: 20px;
}
.confirm .wpcf7-response-output {
  display: none !important;
}
.confirm .dl_list {
  row-gap: 0 !important;
}
.confirm .dl_list dl {
  padding: 20px 0;
  border-bottom: 1px solid var(--base_color0001);
}
.confirm .dl_list dl:last-child {
  border-bottom: 0;
}
.confirm .dl_list dl.radio dt {
  padding-top: 10px !important;
}
@media screen and (max-width: 880px) {
  .confirm .dl_list dl.radio dt {
    padding-top: 0 !important;
  }
}
.confirm .dl_list dl.radio dd {
  background: none !important;
  padding: 0 !important;
}
.confirm .dl_list dl dd .zip input {
  width: 4em !important;
}
.confirm .dl_list dl dd .ymd input[name=start_y] {
  width: 4em !important;
}
.confirm .dl_list dl dd .ymd input[name=start_m],
.confirm .dl_list dl dd .ymd input[name=start_d] {
  width: 3em !important;
}
.confirm .care_top_links {
  display: none;
}
.confirm .privacy_policy {
  display: none;
}
.confirm .submit_btns button[type=button].btn_back {
  display: flex !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--base_header_height);
  background-color: #fff;
  z-index: 100;
  display: flex;
  align-items: center;
  padding-left: var(--base_container_pad);
  border-top: 4px solid var(--base_color01);
}
@media screen and (max-width: 880px) {
  header {
    border-top-width: 2px;
    padding-left: 10px;
  }
}
header .menu_btn_wrap {
  display: none;
  margin-left: auto;
  width: var(--base_header_height);
  height: 100%;
  z-index: 10;
}
@media screen and (max-width: 880px) {
  header .menu_btn_wrap {
    display: block;
  }
}
header .menu_btn_wrap .menu_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 5px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: var(--base_color01);
  border-radius: 0 0 0 10px;
}
header .menu_btn_wrap .menu_btn.open:after {
  content: "close";
}
header .menu_btn_wrap .menu_btn.open .lines span {
  top: 0;
  bottom: 0;
}
header .menu_btn_wrap .menu_btn.open .lines span:nth-child(1) {
  transform: rotate(-135deg);
}
header .menu_btn_wrap .menu_btn.open .lines span:nth-child(2) {
  width: 0;
}
header .menu_btn_wrap .menu_btn.open .lines span:nth-child(3) {
  transform: rotate(135deg);
}
header .menu_btn_wrap .menu_btn:after {
  content: "menu";
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  display: block;
}
header .menu_btn_wrap .menu_btn .lines {
  position: relative;
  width: 26px;
  height: 18px;
}
header .menu_btn_wrap .menu_btn .lines span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  transform-origin: 50% 50%;
  transition: all, 0.5s;
}
header .menu_btn_wrap .menu_btn .lines span:nth-child(1) {
  top: 0;
}
header .menu_btn_wrap .menu_btn .lines span:nth-child(2) {
  top: 0;
  bottom: 0;
}
header .menu_btn_wrap .menu_btn .lines span:nth-child(3) {
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  header .logo {
    width: 200px;
  }
}
@media screen and (max-width: 1050px) {
  header .logo {
    width: 170px;
  }
}
@media screen and (max-width: 880px) {
  header .logo {
    width: 180px;
  }
}
header nav {
  margin-left: auto;
  height: 100%;
  position: relative;
  display: flex;
}
@media screen and (max-width: 880px) {
  header nav {
    flex-direction: column;
    margin-left: 0;
    background: #fff;
    height: calc(100vh - var(--base_header_height));
    padding: 0 var(--base_container_pad);
    overflow: auto;
  }
}
header nav .nav_content {
  display: contents;
}
@media screen and (max-width: 880px) {
  header nav .nav_content {
    display: block;
    position: relative;
    padding-bottom: 80px;
  }
}
header nav a {
  color: var(--base_color00);
  text-decoration: none;
}
@media screen and (max-width: 880px) {
  header nav .instagram {
    display: contents;
  }
}
@media screen and (max-width: 880px) {
  header nav .instagram a {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    border: 0;
    margin: auto;
    padding: 0;
    width: fit-content;
    padding: 0 !important;
    border: 0 !important;
  }
  header nav .instagram a:before {
    content: none !important;
  }
}
header nav .instagram a img {
  width: 24px !important;
}
@media screen and (max-width: 880px) {
  header nav .instagram a img {
    width: 34px !important;
  }
}
header nav .nav01 {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  row-gap: 12px;
}
@media screen and (max-width: 880px) {
  header nav .nav01 {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
}
header nav .nav01 .nav0101 {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media screen and (max-width: 1200px) {
  header nav .nav01 .nav0101 {
    column-gap: 20px;
  }
}
@media screen and (max-width: 880px) {
  header nav .nav01 .nav0101 {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 18px;
    order: 2;
    background: var(--base_color0002);
    padding: 15px;
    margin-bottom: 15px;
  }
}
header nav .nav01 .nav0101 li.sp {
  display: none;
}
@media screen and (max-width: 880px) {
  header nav .nav01 .nav0101 li.sp {
    display: block;
  }
}
@media screen and (max-width: 880px) {
  header nav .nav01 .nav0101 li {
    width: calc((100% - 20px) / 2);
  }
}
header nav .nav01 .nav0101 li a {
  font-size: 0.875rem;
}
@media (any-hover: hover) {
  header nav .nav01 .nav0101 li a {
    transition: color 0.3s;
  }
  header nav .nav01 .nav0101 li a:hover {
    color: var(--base_color01);
  }
}
@media screen and (max-width: 880px) {
  header nav .nav01 .nav0101 li a {
    font-size: 1rem;
    display: flex;
    column-gap: 0.5em;
  }
  header nav .nav01 .nav0101 li a:before {
    content: "–";
    color: var(--base_color01);
  }
}
@media screen and (max-width: 370px) {
  header nav .nav01 .nav0101 li a {
    font-size: 0.875rem;
  }
}
header nav .nav01 .nav0102 {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  header nav .nav01 .nav0102 {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1050px) {
  header nav .nav01 .nav0102 {
    column-gap: 10px;
  }
}
@media screen and (max-width: 880px) {
  header nav .nav01 .nav0102 {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 880px) {
  header nav .nav01 .nav0102 li {
    width: 100%;
  }
}
header nav .nav01 .nav0102 li a {
  font-weight: 500;
  font-size: 1.125rem;
  padding-bottom: 2px;
}
@media screen and (max-width: 1200px) {
  header nav .nav01 .nav0102 li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 880px) {
  header nav .nav01 .nav0102 li a {
    padding-top: 20px;
    padding-bottom: 22px;
    font-size: 1.125rem;
    display: block;
    border-bottom: 1px solid var(--base_color0001);
  }
}
header nav .nav02 {
  height: inherit;
  margin-left: 33px;
}
@media screen and (max-width: 1200px) {
  header nav .nav02 {
    margin-left: 15px;
  }
}
@media screen and (max-width: 880px) {
  header nav .nav02 {
    height: auto;
  }
}
header nav .nav02 .tel {
  display: none;
}
@media screen and (max-width: 880px) {
  header nav .nav02 .tel {
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--base_color0001);
    font-family: "Roboto", sans-serif;
  }
  header nav .nav02 .tel:before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(../images/icon_sp_tel.svg);
  }
}
header nav .nav02 .tel a {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  flex: 1;
}
header nav .nav02 .tel a .time {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  margin-top: 5px;
}
header nav .nav02 .contact {
  height: 100%;
  max-height: 90px;
}
@media screen and (max-width: 880px) {
  header nav .nav02 .contact {
    height: auto;
    padding: 20px 0;
    border-bottom: 1px solid var(--base_color0001);
    display: flex;
    align-items: center;
    column-gap: 15px;
  }
  header nav .nav02 .contact:before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(../images/icon_sp_contact.svg);
  }
}
header nav .nav02 .contact a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100%;
  column-gap: 11px;
  color: #fff;
  background: var(--base_color01);
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: 0 0 0 10px;
}
@media screen and (max-width: 1200px) {
  header nav .nav02 .contact a {
    width: 150px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 880px) {
  header nav .nav02 .contact a {
    width: 100%;
    max-width: 253px;
    height: 46px;
    justify-content: flex-start;
    column-gap: 0;
    position: relative;
    padding: 10px 44px 12px 18px;
    border-radius: 23px;
  }
}
@media screen and (max-width: 370px) {
  header nav .nav02 .contact a {
    font-size: 0.9375rem;
  }
}
header nav .nav02 .contact a:before {
  content: "";
  width: 27px;
  height: 18px;
  background: url(../images/icon_contact.svg) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  header nav .nav02 .contact a:before {
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    background-image: url(../images/icon_circle_arrow02.svg);
  }
}
header nav .nav02 .contact a span {
  display: none;
}
@media screen and (max-width: 880px) {
  header nav .nav02 .contact a span {
    display: inline-block;
  }
}
@media screen and (max-width: 880px) {
  header nav {
    position: absolute;
    top: calc(var(--base_header_height) - 2px);
    left: 0;
    width: 100%;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none !important;
  }
  header nav * {
    pointer-events: none !important;
  }
  header nav.open {
    opacity: 1;
    pointer-events: all !important;
  }
  header nav.open * {
    pointer-events: all !important;
  }
}

#to_top {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
#to_top * {
  pointer-events: none;
}
#to_top.show {
  opacity: 1;
  pointer-events: all;
}
#to_top.show * {
  pointer-events: all;
}
#to_top:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/icon_to_top.svg) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  #to_top:before {
    width: 40px;
    height: 40px;
    background-image: url(../images/icon_to_top_sp.svg);
  }
}

body.sub .footer_contact {
  border-top: 6px solid var(--base_color01);
}

.footer_contact {
  padding: 60px 0 100px;
  background: var(--base_color0002);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  .footer_contact {
    padding: 40px 0;
  }
}
.footer_contact:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc(50% - 752px);
  width: 283px;
  height: 283px;
  background: url(../images/footer_leaf01.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  .footer_contact:after {
    background-image: url(../images/footer_leaf01_sp.webp);
    width: 129px;
    height: 129px;
    right: calc(50% - 225px);
  }
}
.footer_contact .bg {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: url(../images/footer_contact_bg01.webp) no-repeat center/cover;
  width: 100%;
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: "Marcellus", serif;
  color: rgba(247, 244, 238, 0.2);
  font-size: 9.375rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 880px) {
  .footer_contact .bg {
    font-size: 2.875rem;
    height: 242px;
    background-image: url(../images/footer_contact_bg01_sp.png);
  }
}
.footer_contact .bg span {
  position: relative;
  bottom: -23px;
}
@media screen and (max-width: 880px) {
  .footer_contact .bg span {
    bottom: -6px;
  }
}
.footer_contact h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  .footer_contact h2 {
    margin-bottom: 25px;
  }
}
.footer_contact .links {
  display: flex;
  column-gap: 32px;
}
@media screen and (max-width: 880px) {
  .footer_contact .links {
    flex-direction: column;
    row-gap: 10px;
    max-width: 400px;
    margin: auto;
  }
}
.footer_contact .links > div {
  flex: 1;
  height: 150px;
  background: #fff;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  column-gap: 26px;
}
@media screen and (max-width: 1050px) {
  .footer_contact .links > div {
    column-gap: 15px;
  }
}
@media screen and (max-width: 880px) {
  .footer_contact .links > div {
    flex: none;
    width: 100%;
    height: 120px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 370px) {
  .footer_contact .links > div {
    padding: 10px;
  }
}
.footer_contact .links > div:before {
  content: "";
  width: 80px;
  height: 80px;
  background: no-repeat center/contain;
}
@media screen and (max-width: 1050px) {
  .footer_contact .links > div:before {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 880px) {
  .footer_contact .links > div:before {
    width: 50px;
    height: 50px;
  }
}
.footer_contact .links > div:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid var(--base_color01);
}
@media screen and (max-width: 880px) {
  .footer_contact .links > div:after {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
}
.footer_contact .links > div .text {
  flex: 1;
}
@media screen and (max-width: 880px) {
  .footer_contact .links > div .text {
    flex: none;
  }
}
.footer_contact .links > div .text span {
  display: block;
}
.footer_contact .links > div .text span.title {
  color: var(--base_color01);
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 1050px) {
  .footer_contact .links > div .text span.title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 880px) {
  .footer_contact .links > div .text span.title {
    margin-bottom: 10px;
  }
}
.footer_contact .links > div.tel:before {
  background-image: url(../images/icon_footer_tel.png);
}
.footer_contact .links > div.tel a {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
}
@media screen and (max-width: 880px) {
  .footer_contact .links > div.tel a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 370px) {
  .footer_contact .links > div.tel a {
    font-size: 1.875rem;
  }
}
.footer_contact .links > div.tel .time {
  font-size: 0.75rem;
  margin-top: 7px;
}
@media screen and (max-width: 880px) {
  .footer_contact .links > div.tel .time {
    margin-top: 4px;
  }
}
.footer_contact .links > div.contact:before {
  background-image: url(../images/icon_footer_contact.png);
}
.footer_contact .links > div.contact .text span.title {
  margin-bottom: 20px;
}
@media screen and (max-width: 880px) {
  .footer_contact .links > div.contact .text span.title {
    margin-bottom: 10px;
  }
}

.footer_access {
  background: var(--base_color00);
  padding: 10px 0;
  padding-left: var(--base_the_rest_of_container_half);
}
@media screen and (max-width: 880px) {
  .footer_access {
    padding: 40px 10px 10px;
  }
}
.footer_access .title_map {
  display: flex;
  column-gap: 80px;
}
@media screen and (max-width: 880px) {
  .footer_access .title_map {
    flex-direction: column;
    row-gap: 25px;
  }
}
.footer_access .title_map .title {
  padding-top: 30px;
}
@media screen and (max-width: 880px) {
  .footer_access .title_map .title {
    padding: 0;
  }
}
.footer_access .title_map .title h2 span {
  color: #fff;
}
.footer_access .title_map .map {
  flex: 1;
}
@media screen and (max-width: 880px) {
  .footer_access .title_map .map {
    flex: none;
    width: 100%;
  }
}
.footer_access .title_map .map .frame_wrap {
  padding: 0;
  height: 280px;
}

.footer_links {
  padding: 70px 0 80px;
}
@media screen and (max-width: 880px) {
  .footer_links {
    padding: 30px 0 50px;
  }
}
.footer_links .info_links {
  display: flex;
  column-gap: 60px;
  position: relative;
}
@media screen and (max-width: 880px) {
  .footer_links .info_links {
    flex-direction: column;
    row-gap: 40px;
  }
}
.footer_links .info_links .info .logo {
  margin-bottom: 25px;
}
@media screen and (max-width: 880px) {
  .footer_links .info_links .info .logo {
    width: 210px;
    margin-bottom: 0;
  }
}
.footer_links .info_links .info .address {
  line-height: 1.57;
  font-size: 0.875rem;
}
@media screen and (max-width: 880px) {
  .footer_links .info_links .info .address {
    position: relative;
    max-width: 300px;
  }
}
.footer_links .info_links .info .address .instagram {
  position: absolute;
  right: 0;
  bottom: 0;
}
.footer_links .info_links .info .address .instagram img {
  vertical-align: bottom;
  width: 24px;
}
.footer_links .info_links .links {
  flex: 1;
}
@media screen and (max-width: 880px) {
  .footer_links .info_links .links {
    flex: none;
    width: 100%;
  }
}
.footer_links .info_links .links a {
  color: var(--base_color00);
}
.footer_links .info_links .links > ul {
  --cols: 3;
  --col_gap: 40px;
  --row_gap:70px;
}
@media screen and (max-width: 1050px) {
  .footer_links .info_links .links > ul {
    --cols: 2;
    --col_gap: 20px;
  }
}
@media screen and (max-width: 880px) {
  .footer_links .info_links .links > ul {
    --cols: 1;
    --row_gap: 8px;
  }
}
.footer_links .info_links .links > ul > li > a, .footer_links .info_links .links > ul > li > div {
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--base_color0001);
}
@media (any-hover: hover) {
  .footer_links .info_links .links > ul > li > a, .footer_links .info_links .links > ul > li > div {
    transition: border 0.3s;
  }
  .footer_links .info_links .links > ul > li > a:hover, .footer_links .info_links .links > ul > li > div:hover {
    border-bottom-color: var(--base_color01);
  }
}
.footer_links .info_links .links > ul > li > div {
  pointer-events: none;
}
.footer_links .info_links .links > ul > li > div:after {
  background-image: url(../images/icon_circle_arrow_bottom.svg);
}
.footer_links .info_links .links > ul > li > ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 880px) {
  .footer_links .info_links .links > ul > li > ul {
    margin: 20px 0 10px;
    row-gap: 25px;
  }
}
.footer_links .info_links .links > ul > li > ul > li > a {
  text-decoration: none;
  font-size: 0.875rem;
}
.footer_links .info_links .links > ul > li > ul > li > a:after {
  content: none;
}

.copyright {
  text-align: center;
  font-size: 0.625rem;
  color: #fff;
  background: #000;
  padding: 7px 0;
}

body.sub.com .sec01 {
  position: relative;
}
body.sub.com .sec01:before {
  --adj: ((100vw - 60px) * 0.2297 * 0.5 + 68px);
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--adj));
  left: 0;
  width: 100%;
  height: calc(100% + var(--adj));
  background: url(../images/top_bg01.webp) no-repeat center top/cover;
}
@media screen and (max-width: 880px) {
  body.sub.com .sec01:before {
    --adj: ((100vw - var(--base_container_pad) * 2) * 0.5882 * 0.5 + 46px);
    background-image: url(../images/top_bg01_sp.webp);
  }
}

body.care .top_main_visual,
body.uniform .top_main_visual {
  display: flex;
  align-items: center;
  height: 860px;
}
@media screen and (max-width: 1050px) {
  body.care .top_main_visual,
  body.uniform .top_main_visual {
    background-position: calc(50% + 540px - 304px) -250px, center top !important;
  }
}
@media screen and (max-width: 880px) {
  body.care .top_main_visual,
  body.uniform .top_main_visual {
    display: block;
    height: auto;
    padding: 290px 0 100px;
    background-position: calc(50% + 18px) -190px, center top !important;
    background-size: 520px 536px, cover !important;
  }
}
body.care .top_main_visual .container,
body.uniform .top_main_visual .container {
  max-width: calc(1166px + var(--base_container_pad) * 2);
}
body.care .top_main_visual .container .text,
body.uniform .top_main_visual .container .text {
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  body.care .top_main_visual .container .text,
  body.uniform .top_main_visual .container .text {
    max-width: 600px;
    margin: 0 auto 38px;
  }
}
body.care .top_main_visual .container .text p,
body.uniform .top_main_visual .container .text p {
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 880px) {
  body.care .top_main_visual .container .text p,
  body.uniform .top_main_visual .container .text p {
    font-size: 0.875rem;
    line-height: 2;
  }
}
body.care .top_main_visual .container .links,
body.uniform .top_main_visual .container .links {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 880px) {
  body.care .top_main_visual .container .links,
  body.uniform .top_main_visual .container .links {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
}
body.care .top_main_visual .container .links .btn01,
body.uniform .top_main_visual .container .links .btn01 {
  max-width: 240px;
}
body.care .sub_main_visual .title .h_title01 .en,
body.uniform .sub_main_visual .title .h_title01 .en {
  font-size: 1.25rem;
}
@media screen and (max-width: 880px) {
  body.care .sub_main_visual .title .h_title01 .en,
  body.uniform .sub_main_visual .title .h_title01 .en {
    font-size: 1rem;
  }
}
body.care .sub_main_visual .title .h_title01 .jp,
body.uniform .sub_main_visual .title .h_title01 .jp {
  font-size: 2.25rem;
}
@media screen and (max-width: 880px) {
  body.care .sub_main_visual .title .h_title01 .jp,
  body.uniform .sub_main_visual .title .h_title01 .jp {
    font-size: 1.625rem;
  }
}
body.care.top .sec01,
body.uniform.top .sec01 {
  position: relative;
  z-index: 0;
}
body.care.top .sec01:before,
body.uniform.top .sec01:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -95px;
  left: 0;
  width: 100%;
  height: 180px;
  background-image: url(../images/care/content_top.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: max(101%, 1366px) 100%;
}
@media screen and (max-width: 880px) {
  body.care.top .sec01:before,
  body.uniform.top .sec01:before {
    top: -49px;
    height: 50px;
    background-image: url(../images/care/content_top_sp.webp);
    background-size: max(101%, 375px) 100%;
  }
}
body.care.sub .sec01,
body.uniform.sub .sec01 {
  position: relative;
}
body.care.sub .sec01:before,
body.uniform.sub .sec01:before {
  --adj: ((100vw - 60px) * 0.2297 * 0.5 + 68px);
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--adj));
  left: 0;
  width: 100%;
  height: calc(100% + var(--adj));
  background: url(../images/care/bg_line.png) repeat, var(--grad);
}
@media screen and (max-width: 880px) {
  body.care.sub .sec01:before,
  body.uniform.sub .sec01:before {
    --adj: ((100vw - var(--base_container_pad) * 2) * 0.5882 * 0.5 + 46px);
  }
}

body.care.sub .sec01:before {
  --grad: var(--base_grad31);
}

body.uniform.sub .sec01:before {
  --grad: var(--base_grad41);
}

.sub_main_visual {
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .sub_main_visual {
    padding: 0 var(--base_container_pad);
  }
}
.sub_main_visual .image {
  border-radius: 20px;
  overflow: hidden;
}
.sub_main_visual .image:before {
  content: "";
  display: block;
  padding-top: 22.97%;
}
@media screen and (max-width: 880px) {
  .sub_main_visual .image:before {
    padding-top: 58.82%;
  }
}
.sub_main_visual .title {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 30px;
  width: calc(100% - 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 880px) {
  .sub_main_visual .title {
    left: var(--base_container_pad);
    width: calc(100% - var(--base_container_pad) * 2);
  }
}
.sub_main_visual .title .h_title01 .en {
  font-size: 4.5rem;
}
@media screen and (max-width: 880px) {
  .sub_main_visual .title .h_title01 .en {
    font-size: 2.625rem;
  }
}
.sub_main_visual .title .h_title01 .jp {
  font-size: 1.125rem;
  margin-top: 8px;
  color: #fff;
  line-height: 1.25;
}

.breadcrumb {
  background: var(--base_color0101);
  margin-bottom: 46px;
}
@media screen and (max-width: 880px) {
  .breadcrumb {
    margin-bottom: 10px;
  }
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 5px;
  padding: 20px 0;
}
.breadcrumb ul li {
  margin-right: 26px;
  font-size: 0.75rem;
  position: relative;
  line-height: 1.2;
}
@media screen and (max-width: 880px) {
  .breadcrumb ul li {
    margin-right: 22px;
    font-size: 0.625rem;
  }
}
.breadcrumb ul li:after {
  content: "＞";
  position: absolute;
  top: 0;
  right: -13px;
  bottom: 0;
  margin: auto;
  transform: translateX(50%);
}
@media screen and (max-width: 880px) {
  .breadcrumb ul li:after {
    right: -11px;
    width: 4px;
    height: 8px;
  }
}
.breadcrumb ul li:last-child {
  margin-right: 0;
}
.breadcrumb ul li:last-child:after {
  content: none;
}
.breadcrumb ul li a {
  text-decoration: none;
  color: var(--base_color00);
}
.breadcrumb ul li span {
  color: var(--base_color00);
}

.btn01,
.btn0102 {
  width: 100%;
  max-width: 320px;
  height: 50px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 44px 12px 18px;
  border-radius: 25px;
  background: var(--base_color01);
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
  border: 1px solid var(--base_color01);
  line-height: 1.22;
}
@media (any-hover: hover) {
  .btn01:hover,
  .btn0102:hover {
    color: var(--base_color01);
    background: #fff;
  }
  .btn01:hover:after,
  .btn0102:hover:after {
    background-image: url(../images/icon_circle_arrow.svg);
  }
}
@media screen and (max-width: 880px) {
  .btn01,
  .btn0102 {
    max-width: 220px;
    height: 46px;
    padding-right: 39px;
    padding-left: 13px;
  }
}
@media screen and (max-width: 370px) {
  .btn01,
  .btn0102 {
    font-size: 0.875rem;
  }
}
.btn01:after,
.btn0102:after {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  background-image: url(../images/icon_circle_arrow02.svg);
  transition: background 0.3s;
}
.btn01.btn_back,
.btn0102.btn_back {
  padding: 10px 18px 12px 44px;
  background: var(--base_color0004);
  justify-content: flex-end;
  border-color: var(--base_color0004);
}
.btn01.btn_back:after,
.btn0102.btn_back:after {
  transform: rotate(180deg);
  right: auto;
  left: 12px;
  background-image: url(../images/icon_circle_arrow02_g.svg);
}
@media (any-hover: hover) {
  .btn01.btn_back:hover,
  .btn0102.btn_back:hover {
    color: var(--base_color0004);
    background: #fff;
  }
  .btn01.btn_back:hover:after,
  .btn0102.btn_back:hover:after {
    background-image: url(../images/icon_circle_arrow_g.svg);
  }
}

.btn0102 {
  max-width: 398px;
  width: 100%;
  height: 100px;
  border-radius: 16px;
  column-gap: 16px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media (any-hover: hover) {
  .btn0102:hover:before {
    background-color: var(--base_color0502);
  }
}
@media screen and (max-width: 880px) {
  .btn0102 {
    max-width: 330px;
    height: 90px;
    column-gap: 10px;
  }
}
@media screen and (max-width: 370px) {
  .btn0102 {
    font-size: 1rem;
  }
}
.btn0102:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: no-repeat center/40px 40px;
  background-color: #fff;
  transition: background 0.3s;
}
@media screen and (max-width: 880px) {
  .btn0102:before {
    width: 50px;
    height: 50px;
    background-size: 33px 33px;
  }
}
.btn0102 span .sub {
  font-size: 0.875rem;
}
@media screen and (max-width: 370px) {
  .btn0102 span .sub {
    font-size: 0.75rem;
  }
}

.link01,
.link0101 {
  padding-right: 30px;
  position: relative;
  color: var(--base_color00);
  text-decoration: none;
}
@media (any-hover: hover) {
  .link01,
  .link0101 {
    transition: color 0.3s;
  }
  .link01:hover,
  .link0101:hover {
    color: var(--base_color01) !important;
  }
}
.link01:after,
.link0101:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  background: url(../images/icon_circle_arrow.svg) no-repeat center/contain;
}

.link0101 {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--base_color0001);
}
@media (any-hover: hover) {
  .link0101 {
    transition: color 0.3s, border 0.3s;
  }
  .link0101:hover {
    border-bottom-color: var(--base_color01) !important;
  }
}

.h_title01 .en,
.h_title0102 .en {
  color: var(--base_color01);
  font-size: 3.75rem;
  font-weight: 400;
  font-family: "Marcellus", serif;
  display: block;
}
@media screen and (max-width: 880px) {
  .h_title01 .en,
  .h_title0102 .en {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 370px) {
  .h_title01 .en,
  .h_title0102 .en {
    font-size: 2.25rem;
  }
}
.h_title01 .en span,
.h_title0102 .en span {
  color: var(--base_color02);
}
.h_title01 .jp,
.h_title0102 .jp {
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: 8px;
  display: block;
}
@media screen and (max-width: 880px) {
  .h_title01 .jp,
  .h_title0102 .jp {
    margin-top: 5px;
    font-size: 1rem;
  }
}

.h_title0102 {
  margin-bottom: 30px;
}
.h_title0102 .en {
  font-size: 1.125rem;
}
.h_title0102 .jp {
  margin-top: 8px;
  font-size: 1.875rem;
}
@media screen and (max-width: 880px) {
  .h_title0102 .jp {
    font-size: 1.375rem;
  }
}

.h_title02 {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 30px;
  margin-bottom: 30px;
  border-radius: 20px 20px 0 0;
  color: #fff;
  background: var(--base_color01);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.27;
  position: relative;
}
@media screen and (max-width: 880px) {
  .h_title02 {
    font-size: 1.375rem;
    border-radius: 16px 16px 0 0;
    padding: 10px 10px 10px 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 370px) {
  .h_title02 {
    font-size: 1.25rem;
  }
}
.h_title02:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--base_color02);
}
.h_title02.recommend {
  padding-right: 130px;
}
@media screen and (max-width: 880px) {
  .h_title02.recommend {
    padding-right: 100px;
  }
}
.h_title02.recommend:after {
  content: "おすすめ";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  width: 110px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #C49D43 0, #CFBA4F 50%, #C49D43 100%);
}
@media screen and (max-width: 880px) {
  .h_title02.recommend:after {
    width: 80px;
    height: 24px;
    font-size: 0.9375rem;
  }
}

.h_title03 {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.375rem;
  border-radius: 6px;
  color: var(--base_color0501);
  background: var(--base_color0502);
  line-height: 1.3;
}
@media screen and (max-width: 880px) {
  .h_title03 {
    font-size: 1.25rem;
    padding: 10px 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 370px) {
  .h_title03 {
    font-size: 1.125rem;
  }
}

.h_title04 {
  font-weight: 700;
  width: fit-content;
  text-align: center;
  margin: auto;
  position: relative;
  margin-bottom: 80px;
}
.h_title04:before, .h_title04:after {
  content: "";
  position: absolute;
  width: 33px;
  height: 76px;
  background: no-repeat center;
  bottom: -8px;
}
@media screen and (max-width: 880px) {
  .h_title04:before, .h_title04:after {
    width: 21px;
    height: 50px;
    bottom: 0;
  }
}
.h_title04:before {
  left: -42px;
  background-image: url(../images/care/h_title04_dec_left.svg);
}
@media screen and (max-width: 880px) {
  .h_title04:before {
    left: -28px;
  }
}
.h_title04:after {
  right: -42px;
  background-image: url(../images/care/h_title04_dec_right.svg);
}
@media screen and (max-width: 880px) {
  .h_title04:after {
    right: -28px;
  }
}
.h_title04 .s01 {
  display: block;
  margin: 0 auto 14px;
  padding-bottom: 12px;
  font-size: 3.125rem;
  color: var(--color01);
  width: fit-content;
  border-bottom: 6px solid var(--color02);
}
@media screen and (max-width: 880px) {
  .h_title04 .s01 {
    font-size: 2rem;
    border-width: 4px;
    padding-bottom: 10px;
    margin-bottom: 8px;
  }
}
.h_title04 .s01 span {
  position: relative;
  display: inline-block;
}
.h_title04 .s01 span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color02);
  top: -18px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 880px) {
  .h_title04 .s01 span:before {
    top: -9px;
    width: 6px;
    height: 6px;
  }
}
.h_title04 .s02 {
  display: block;
  margin: 0 auto;
  width: fit-content;
  font-size: 1.875rem;
}
@media screen and (max-width: 880px) {
  .h_title04 .s02 {
    font-size: 1.25rem;
  }
}

.h_title05 {
  width: fit-content;
  margin: 0 auto 40px;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color);
  padding-bottom: 10px;
  border-bottom: 4px solid var(--border_color);
}
@media screen and (max-width: 880px) {
  .h_title05 {
    font-size: 1.625rem;
    padding-bottom: 6px;
  }
}

.h_title06 {
  color: #fff;
  min-height: 40px;
  display: flex;
  align-items: center;
  line-height: 1.25;
  background: #7D848C;
  border-radius: 4px;
  padding: 5px 30px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 500;
}

.note *:not(a) {
  font-size: 0.875rem;
  line-height: 1.57;
  color: var(--base_color0004);
}
.note .dfs {
  font-size: 1rem;
}
@media screen and (max-width: 880px) {
  .note .dfs {
    font-size: 0.9375rem;
  }
}

.table01 {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.table01 th, .table01 td {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 15px 30px;
  line-height: 1.25;
  vertical-align: middle;
}
@media screen and (max-width: 880px) {
  .table01 th, .table01 td {
    padding: 12px 10px;
    line-height: 1.43;
  }
}
.table01 th:last-child, .table01 td:last-child {
  border-right: 0;
}
.table01 th span, .table01 td span {
  font-size: 0.875rem;
}
@media screen and (max-width: 880px) {
  .table01 th span, .table01 td span {
    font-size: 0.75rem;
  }
}
.table01 thead tr th {
  background: var(--base_color05);
  color: #fff;
  text-align: left;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 370px) {
  .table01 thead tr th {
    font-size: 0.9375rem;
  }
}
.table01 tbody tr:nth-child(odd) {
  background: var(--base_color0502);
}
.table01 tbody tr:nth-child(even) {
  background: var(--base_color0003);
}
.table01 tbody tr:last-child td {
  border-bottom: 0;
}
.table01 tbody tr td {
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 880px) {
  .table01 tbody tr td {
    font-size: 0.875rem;
  }
}
.table01 tbody tr td.num {
  font-size: 1.25rem;
  text-align: right;
  font-weight: 400;
}
@media screen and (max-width: 880px) {
  .table01 tbody tr td.num {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 370px) {
  .table01 tbody tr td.num {
    font-size: 1rem;
  }
}
.table01 tbody tr td.num .unit {
  font-size: 1rem;
}
@media screen and (max-width: 880px) {
  .table01 tbody tr td.num .unit {
    font-size: 0.75rem;
  }
}

.line_dec_contents {
  position: relative;
  z-index: 0;
  background: #fff;
}
.line_dec_contents:before, .line_dec_contents:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: max(100%, 1366px) 100%;
}
@media screen and (max-width: 880px) {
  .line_dec_contents:before, .line_dec_contents:after {
    height: 55px;
    background-size: max(100%, 375px) 100%;
  }
}
.line_dec_contents:before {
  top: -120px;
  background-image: url(../images/content_top.webp);
  background-position: center top;
}
@media screen and (max-width: 880px) {
  .line_dec_contents:before {
    top: -47px;
    background-image: url(../images/content_top_sp.webp);
  }
}
.line_dec_contents:after {
  bottom: -120px;
  background-image: url(../images/content_bottom.webp);
  background-position: center bottom;
}
@media screen and (max-width: 880px) {
  .line_dec_contents:after {
    bottom: -47px;
    background-image: url(../images/content_bottom_sp.webp);
  }
}

.news_tab .tab_btns {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  column-gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  .news_tab .tab_btns {
    justify-content: flex-start;
    margin: 0 auto 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    max-width: 308px;
  }
}
.news_tab .tab_btns a {
  display: block;
  padding: 6px 16px;
  color: var(--base_color00);
  background: var(--base_color0001);
  text-decoration: none;
  position: relative;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
}
.news_tab .tab_btns a:after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--base_color01);
}
.news_tab .tab_btns a.active {
  color: #fff;
  background: var(--base_color01);
}
@media (any-hover: hover) {
  .news_tab .tab_btns a:hover {
    color: #fff;
    background: var(--base_color01);
  }
}
.news_tab .tab_btns a.active:after {
  content: "";
}
.news_tab .news_meta time {
  position: relative;
  top: 2px;
}
.news_tab .news_meta .cats {
  flex-direction: column;
}
@media screen and (max-width: 880px) {
  .news_tab .news_meta .cats {
    flex-direction: row;
  }
}
.news_tab .news_list > ul > li {
  border-bottom: 1px solid var(--base_color0001);
}
.news_tab .news_list > ul > li > a {
  display: flex;
  align-items: center;
  column-gap: 40px;
  padding: 22px 30px 20px;
  color: var(--base_color00);
  text-decoration: none;
}
@media (any-hover: hover) {
  .news_tab .news_list > ul > li > a {
    transition: background 0.3s;
  }
  .news_tab .news_list > ul > li > a:hover {
    background: var(--base_color0003);
  }
  .news_tab .news_list > ul > li > a:hover h3 {
    color: var(--base_color01);
  }
}
@media screen and (max-width: 880px) {
  .news_tab .news_list > ul > li > a {
    padding: 14px 10px 10px;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 6px;
  }
}
.news_tab .news_list > ul > li > a h3 {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s;
}
@media screen and (max-width: 880px) {
  .news_tab .news_list > ul > li > a h3 {
    font-size: 0.9375rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.news_meta {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 880px) {
  .news_meta {
    column-gap: 10px;
  }
}
.news_meta time {
  font-family: "Roboto", sans-serif;
}
.news_meta .cats {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 5px;
  width: 130px;
}
@media screen and (max-width: 880px) {
  .news_meta .cats {
    width: auto;
    flex: 1;
  }
}
.news_meta .cats .cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  min-height: 20px;
  padding: 1px 5px 3px;
  background: var(--base_color00);
  color: #fff;
  font-size: 0.8125rem;
  border-radius: 4px;
}

.paging.archive {
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 880px) {
  .paging.archive {
    position: relative;
    left: -10px;
    width: calc(100% + 20px);
    margin: auto;
  }
}
.paging.archive span,
.paging.archive a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--base_color00);
  line-height: 1;
  padding-bottom: 4px;
  position: relative;
}
@media screen and (max-width: 880px) {
  .paging.archive span,
  .paging.archive a {
    font-size: 0.9375rem;
    padding-bottom: 2px;
  }
}
@media screen and (max-width: 370px) {
  .paging.archive span,
  .paging.archive a {
    font-size: 0.875rem;
  }
}
.paging.archive span.current,
.paging.archive a.current {
  color: var(--base_color01);
}
.paging.archive span.current:before,
.paging.archive a.current:before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--base_color01);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.paging.archive span.dots,
.paging.archive a.dots {
  border: 0;
  color: var(--base_color00);
}
@media screen and (max-width: 880px) {
  .paging.archive span.dots,
  .paging.archive a.dots {
    width: 20px;
  }
}
@media screen and (max-width: 370px) {
  .paging.archive span.dots,
  .paging.archive a.dots {
    width: 15px;
  }
}
.paging.archive span.prev, .paging.archive span.next,
.paging.archive a.prev,
.paging.archive a.next {
  width: fit-content;
  color: var(--base_color00);
  padding-bottom: 2px;
  margin: 0 5px;
}
@media screen and (max-width: 880px) {
  .paging.archive span.prev, .paging.archive span.next,
  .paging.archive a.prev,
  .paging.archive a.next {
    font-size: 0.9375rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 370px) {
  .paging.archive span.prev, .paging.archive span.next,
  .paging.archive a.prev,
  .paging.archive a.next {
    margin: 0 2px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 600px) {
  .paging.archive span,
  .paging.archive a {
    width: 30px;
    height: 30px;
  }
}
.paging.archive a {
  transition: opacity 0.3s;
}
@media screen and (min-width: 881px) {
  .paging.archive a:hover {
    opacity: 0.7;
  }
}

.services_link_list {
  display: flex;
  column-gap: 32px;
  width: 100%;
}
@media screen and (max-width: 880px) {
  .services_link_list {
    flex-direction: column;
    row-gap: 16px;
  }
}
.services_link_list > li {
  flex: 1;
  background: #fff;
}
.services_link_list > li > a {
  width: 100%;
  min-height: 240px;
  display: block;
  position: relative;
  z-index: 0;
  padding: 26px 28px;
  color: var(--base_color00);
  --bg_pos: 8px;
  box-shadow: 0 16px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 880px) {
  .services_link_list > li > a {
    min-height: 200px;
  }
}
.services_link_list > li > a:before {
  content: "";
  display: block;
  width: calc(100% - var(--bg_pos) * 2);
  height: calc(100% - var(--bg_pos) * 2);
  border: 1px solid var(--base_color01);
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.services_link_list > li > a:after {
  content: "";
  position: absolute;
  right: var(--bg_pos);
  bottom: var(--bg_pos);
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/top_main_visual_links_arrow.svg) no-repeat center/contain;
}
.services_link_list > li > a .image {
  border-radius: 10px;
  overflow: hidden;
  max-width: 256px;
  margin: 0 auto 20px;
}
.services_link_list > li > a .text {
  display: flex;
  justify-content: center;
}
.services_link_list > li > a .text p {
  line-height: 1.625;
  max-width: 314px;
  width: fit-content;
  margin: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 880px) {
  .services_link_list > li > a .text p {
    line-height: 1.6;
  }
}

.faq_list > ul {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
@media screen and (max-width: 880px) {
  .faq_list > ul {
    row-gap: 20px;
  }
}
.faq_list > ul > li {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 880px) {
  .faq_list > ul > li {
    row-gap: 12px;
  }
}
.faq_list > ul > li h3 {
  display: flex;
  align-items: center;
  line-height: 1.6;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 15px 40px 15px 123px;
  color: var(--base_color01);
  background: var(--base_color0002);
  position: relative;
  min-height: 80px;
}
@media screen and (max-width: 880px) {
  .faq_list > ul > li h3 {
    min-height: 60px;
    font-size: 0.9375rem;
    padding: 10px 20px 10px 55px;
  }
}
.faq_list > ul > li h3:before {
  content: "Q";
  position: absolute;
  top: 15px;
  left: 40px;
  font-size: 1.5rem;
  color: #fff;
  background: var(--base_color01);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-bottom: 3px;
}
@media screen and (max-width: 880px) {
  .faq_list > ul > li h3:before {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
    left: 10px;
  }
}
.faq_list > ul > li > div {
  padding: 0 40px 0 105px;
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 880px) {
  .faq_list > ul > li > div {
    min-height: 32px;
    padding: 0 20px 0 55px;
  }
}
.faq_list > ul > li > div:before {
  content: "A";
  position: absolute;
  top: 0;
  left: 40px;
  font-size: 1.5rem;
  color: var(--base_color02);
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--base_color02);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-bottom: 3px;
}
@media screen and (max-width: 880px) {
  .faq_list > ul > li > div:before {
    left: 10px;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }
}
.faq_list > ul > li > div .base_content * {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 880px) {
  .faq_list > ul > li > div .base_content * {
    font-size: 1rem;
  }
}

.num_flow_list > ol {
  counter-reset: cnt;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 880px) {
  .num_flow_list > ol {
    row-gap: 20px;
  }
}
.num_flow_list > ol > li {
  counter-increment: cnt;
  position: relative;
  z-index: 0;
}
.num_flow_list > ol > li:last-child:after {
  content: none;
}
.num_flow_list > ol > li:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -35px;
  left: 39px;
  width: 2px;
  height: 40px;
  background: var(--line_color);
}
.num_flow_list > ol > li > div {
  display: flex;
  min-height: 100px;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  .num_flow_list > ol > li > div {
    flex-direction: column;
  }
}
.num_flow_list > ol > li h3 {
  flex: 1;
  max-width: 400px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--title_color);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  width: 400px;
  background: var(--title_bg_color);
  padding: 0 20px;
}
@media screen and (max-width: 880px) {
  .num_flow_list > ol > li h3 {
    flex: none;
    max-width: 100%;
    width: 100%;
    font-size: 1.125rem;
    padding: 12px 11px;
    column-gap: 10px;
  }
}
@media screen and (max-width: 880px) {
  .num_flow_list > ol > li h3 {
    font-size: 1rem;
  }
}
.num_flow_list > ol > li h3:before {
  content: "0" counter(cnt);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  background: var(--num_bg_color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--base_color0301);
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  padding-right: 3px;
}
.num_flow_list > ol > li h3 span {
  flex: 1;
}
.num_flow_list > ol > li .text {
  flex: 1;
  padding: 20px 30px;
}
@media screen and (max-width: 880px) {
  .num_flow_list > ol > li .text {
    padding: 16px;
  }
}

.dl_list01 dl {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--base_color0001);
  line-height: 1.625;
}
.dl_list01 dl:first-child {
  border-top: 1px solid var(--base_color0001);
}
@media screen and (max-width: 880px) {
  .dl_list01 dl {
    padding: 12px 0;
    font-size: 0.9375rem;
    flex-direction: column;
    row-gap: 10px;
  }
}
.dl_list01 dl dt {
  width: 210px;
  font-weight: 500;
  padding: 0 30px;
}
@media screen and (max-width: 880px) {
  .dl_list01 dl dt {
    width: 100%;
    padding: 0 12px;
  }
}
.dl_list01 dl dd {
  flex: 1;
  padding-right: 30px;
}
@media screen and (max-width: 880px) {
  .dl_list01 dl dd {
    flex: none;
    width: 100%;
    padding: 0 12px;
  }
}
.dl_list01 dl dd .list.dot li:before {
  color: var(--base_color01);
}
.dl_list01 dl dd .list.dot.col03 li {
  display: flex;
  column-gap: 1em;
}
@media screen and (max-width: 880px) {
  .dl_list01 dl dd .list.dot.col03 li {
    flex-wrap: wrap;
  }
}
.dl_list01 dl dd .list.dot.col03 li > div:nth-child(1) {
  width: 225px;
}
@media screen and (max-width: 880px) {
  .dl_list01 dl dd .list.dot.col03 li > div:nth-child(1) {
    width: 200px;
  }
  .dl_list01 dl dd .list.dot.col03 li > div:nth-child(3) {
    width: 100%;
  }
}

.line_dev_list > ul, .line_dev_list > ol {
  display: flex;
  column-gap: 81px;
  row-gap: 41px;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width: 880px) {
  .line_dev_list > ul, .line_dev_list > ol {
    flex-direction: column;
    row-gap: 21px;
  }
}
.line_dev_list > ul:after, .line_dev_list > ol:after {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--base_color0001);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 880px) {
  .line_dev_list > ul:after, .line_dev_list > ol:after {
    content: none;
  }
}
.line_dev_list > ul > li, .line_dev_list > ol > li {
  width: calc((100% - 81px) / 2);
  position: relative;
}
.line_dev_list > ul > li:nth-last-child(2):after, .line_dev_list > ul > li:nth-last-child(1):after, .line_dev_list > ol > li:nth-last-child(2):after, .line_dev_list > ol > li:nth-last-child(1):after {
  content: none;
}
@media screen and (max-width: 880px) {
  .line_dev_list > ul > li, .line_dev_list > ol > li {
    width: 100%;
  }
  .line_dev_list > ul > li:nth-last-child(2):after, .line_dev_list > ol > li:nth-last-child(2):after {
    content: "";
  }
}
.line_dev_list > ul > li:after, .line_dev_list > ol > li:after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--base_color0001);
  position: absolute;
  left: 0;
  bottom: -21px;
}
@media screen and (max-width: 880px) {
  .line_dev_list > ul > li:after, .line_dev_list > ol > li:after {
    bottom: -11px;
  }
}

.problem_content {
  padding: 100px 0 153px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 880px) {
  .problem_content {
    padding: 60px 0 50px;
  }
}
.problem_content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: url(../images/care/bg_line.png) repeat, var(--grad);
  width: max(100%, 1366px);
  height: 100%;
  clip-path: url(#sec_care_top_clip01);
}
@media screen and (max-width: 880px) {
  .problem_content:before {
    width: max(100%, 375px);
    clip-path: url(#sec_care_top_clip01_sp);
  }
}
.problem_content h2 {
  --color01: var(--base_color31);
  --color02: var(--base_color02);
}
.problem_content .problems {
  display: flex;
  justify-content: center;
  column-gap: 32px;
}
@media screen and (max-width: 880px) {
  .problem_content .problems {
    flex-direction: column;
    row-gap: 70px;
  }
}
.problem_content .problems .problem {
  padding: 42px;
  background: #fff;
  border-radius: 20px;
  border: 6px solid var(--border_color);
  flex: 1;
}
@media screen and (max-width: 880px) {
  .problem_content .problems .problem {
    flex: none;
    width: 100%;
    padding: 20px;
  }
}
.problem_content .problems .problem .image_text {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
@media screen and (max-width: 880px) {
  .problem_content .problems .problem .image_text {
    align-items: flex-start;
    column-gap: 14px;
  }
}
.problem_content .problems .problem .image_text .image {
  border-radius: 30px;
  overflow: hidden;
  max-width: 180px;
  flex: 1;
}
@media screen and (max-width: 880px) {
  .problem_content .problems .problem .image_text .image {
    max-width: 140px;
  }
}
.problem_content .problems .problem .image_text .text {
  flex: 1;
}
.problem_content .problems .problem .image_text .text p {
  line-height: 1.625;
}
.problem_content .problems .problem hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: var(--base_color0001);
  margin: 20px;
}

.solution_content .solution_bg {
  position: relative;
  z-index: 0;
}
.solution_content .solution_bg:before {
  content: "";
  position: absolute;
  top: var(--top);
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: max(118%, 1600px);
  height: calc(100% - var(--top));
  background: url(../images/care/bg_line.png) repeat, var(--grad);
  clip-path: url(#sec_care_top_clip02);
}
@media screen and (max-width: 880px) {
  .solution_content .solution_bg:before {
    width: max(129%, 480px);
    clip-path: url(#sec_care_top_clip02_sp);
  }
}

.sec_404 {
  padding-bottom: 100px;
}
@media screen and (max-width: 880px) {
  .sec_404 {
    padding-bottom: 50px;
  }
}

.care_top_links,
.uniform_top_links {
  padding: 40px 0;
  background: var(--grad);
}
@media screen and (max-width: 880px) {
  .care_top_links,
  .uniform_top_links {
    padding: 20px 0;
  }
}
.care_top_links.add_image,
.uniform_top_links.add_image {
  position: relative;
}
@media screen and (max-width: 880px) {
  .care_top_links.add_image,
  .uniform_top_links.add_image {
    padding-top: 30px;
  }
}
.care_top_links.add_image:before, .care_top_links.add_image:after,
.uniform_top_links.add_image:before,
.uniform_top_links.add_image:after {
  content: "";
  position: absolute;
  background: no-repeat center/contain;
}
.care_top_links.add_image:before,
.uniform_top_links.add_image:before {
  top: -30px;
  left: calc(50% - 400px);
  width: 123px;
  height: 98px;
  background-image: url(../images/care/top_title_image02.webp);
}
@media screen and (max-width: 880px) {
  .care_top_links.add_image:before,
  .uniform_top_links.add_image:before {
    top: -23px;
    left: calc(50% - 151px);
    width: 59px;
    height: 47px;
  }
}
.care_top_links.add_image:after,
.uniform_top_links.add_image:after {
  top: -45px;
  right: calc(50% - 400px);
  width: 165px;
  height: 134px;
  background-image: url(../images/care/top_title_image03.webp);
}
@media screen and (max-width: 880px) {
  .care_top_links.add_image:after,
  .uniform_top_links.add_image:after {
    top: -24px;
    right: calc(50% - 156px);
    width: 62px;
    height: 50px;
  }
}
.care_top_links .p01,
.uniform_top_links .p01 {
  text-align: center;
  width: fit-content;
  text-align: center;
  margin: 0 auto 36px;
  text-decoration: underline;
  text-decoration-color: var(--base_color02);
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  line-height: 2;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 880px) {
  .care_top_links .p01,
  .uniform_top_links .p01 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    text-underline-offset: 8px;
  }
}
@media screen and (max-width: 370px) {
  .care_top_links .p01,
  .uniform_top_links .p01 {
    font-size: 1rem;
  }
}
.care_top_links .links,
.uniform_top_links .links {
  display: flex;
  column-gap: 36px;
}
@media screen and (max-width: 880px) {
  .care_top_links .links,
  .uniform_top_links .links {
    flex-direction: column;
    row-gap: 16px;
    max-width: 500px;
    margin: auto;
  }
}
.care_top_links .links .link,
.uniform_top_links .links .link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 28px;
  border-radius: 20px;
  padding: 30px;
  background: url(../images/care/bg_line.png) repeat, #FFF7E2;
}
@media screen and (max-width: 880px) {
  .care_top_links .links .link,
  .uniform_top_links .links .link {
    flex: none;
    width: 100%;
    padding: 18px 25px;
  }
}
@media screen and (max-width: 370px) {
  .care_top_links .links .link,
  .uniform_top_links .links .link {
    padding: 18px;
  }
}
.care_top_links .links .link .dec_title,
.uniform_top_links .links .link .dec_title {
  width: fit-content;
  display: flex;
  align-items: flex-end;
  column-gap: 11px;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 880px) {
  .care_top_links .links .link .dec_title,
  .uniform_top_links .links .link .dec_title {
    font-size: 1rem;
    column-gap: 7px;
  }
  .care_top_links .links .link .dec_title.br_md,
  .uniform_top_links .links .link .dec_title.br_md {
    line-height: 1.3;
  }
  .care_top_links .links .link .dec_title.br_md:before, .care_top_links .links .link .dec_title.br_md:after,
  .uniform_top_links .links .link .dec_title.br_md:before,
  .uniform_top_links .links .link .dec_title.br_md:after {
    top: 0;
  }
  .care_top_links .links .link .dec_title br.md,
  .uniform_top_links .links .link .dec_title br.md {
    display: block !important;
  }
}
@media screen and (max-width: 370px) {
  .care_top_links .links .link .dec_title,
  .uniform_top_links .links .link .dec_title {
    font-size: 0.9375rem;
  }
}
.care_top_links .links .link .dec_title:before, .care_top_links .links .link .dec_title:after,
.uniform_top_links .links .link .dec_title:before,
.uniform_top_links .links .link .dec_title:after {
  content: "";
  width: 9px;
  height: 20px;
  background: no-repeat center;
  position: relative;
  top: 5px;
}
@media screen and (max-width: 880px) {
  .care_top_links .links .link .dec_title:before, .care_top_links .links .link .dec_title:after,
  .uniform_top_links .links .link .dec_title:before,
  .uniform_top_links .links .link .dec_title:after {
    width: 8px;
    height: 19px;
  }
}
.care_top_links .links .link .dec_title:before,
.uniform_top_links .links .link .dec_title:before {
  background-image: var(--title_dec_left);
}
.care_top_links .links .link .dec_title:after,
.uniform_top_links .links .link .dec_title:after {
  background-image: var(--title_dec_right);
}

.com_top_main_visual {
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 880px) {
  .com_top_main_visual {
    padding: 0 var(--base_container_pad);
    margin: auto;
    container-type: inline-size;
  }
}
.com_top_main_visual .main_visual_image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.com_top_main_visual .main_visual_image:before {
  content: "";
  display: block;
  padding-top: 41.5%;
}
@media screen and (max-width: 880px) {
  .com_top_main_visual .main_visual_image:before {
    padding-top: 117.65%;
  }
}
.com_top_main_visual .main_visual_text {
  text-align: center;
  font-size: 2.64vw;
  color: #fff;
  font-weight: 500;
  position: absolute;
  line-height: 1.56;
  top: 5.12vw;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 880px) {
  .com_top_main_visual .main_visual_text {
    top: 11.67cqw;
    font-size: 7.2cqw;
    line-height: 1.5;
  }
}

.sec_top.sec01 {
  position: relative;
  padding: 178px 0 296px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 {
    padding: 0 0 140px;
  }
}
.sec_top.sec01:before {
  --adj: 26.5vw;
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--adj));
  left: 0;
  width: 100%;
  height: calc(100% + var(--adj));
  background: url(../images/top_bg01.webp) no-repeat center top/cover;
}
@media screen and (max-width: 880px) {
  .sec_top.sec01:before {
    --adj: 345px;
    background-image: url(../images/top_bg01_sp.webp);
  }
}
@media screen and (max-width: 600px) {
  .sec_top.sec01:before {
    --adj: 41vw;
  }
}
.sec_top.sec01 .links {
  top: -182px;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .sec_top.sec01 .links {
    padding: 0 30px;
  }
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 .links {
    position: static;
    margin: -134px 0 67px;
  }
}
@media screen and (max-width: 600px) {
  .sec_top.sec01 .links {
    margin-top: -35vw;
  }
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 .links .container {
    max-width: 450px;
    padding-right: 14px;
    padding-left: 14px;
  }
}
.sec_top.sec01 .text_wrap .container {
  position: relative;
}
.sec_top.sec01 .text_wrap .container:before {
  content: "";
  width: 90px;
  height: 73px;
  background: url(../images/leaf01.webp) no-repeat center/contain;
  position: absolute;
  top: 50px;
  left: calc(50% - 500px);
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 .text_wrap .container:before {
    top: 30px;
    left: calc(50% - 177px);
    width: 46px;
    height: 38px;
    z-index: 5;
  }
}
.sec_top.sec01 .text_wrap .container:after {
  content: "";
  width: 300px;
  height: 300px;
  background: url(../images/top_sec01_image01.webp) no-repeat center/contain;
  position: absolute;
  top: -50px;
  right: calc(50% - 700px);
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 .text_wrap .container:after {
    top: -40px;
    right: calc(50% - 190px);
    width: 100px;
    height: 100px;
  }
}
.sec_top.sec01 .text_wrap .text {
  position: relative;
  z-index: 0;
}
.sec_top.sec01 .text_wrap .text:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: #fff;
  filter: blur(80px);
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 .text_wrap .text:before {
    width: 500px;
    height: 500px;
  }
}
.sec_top.sec01 .text_wrap .text h2 {
  text-align: center;
  color: var(--base_color01);
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 .text_wrap .text h2 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.sec_top.sec01 .text_wrap .text h2 span {
  color: var(--base_color02);
}
.sec_top.sec01 .text_wrap .text hr {
  width: 24px;
  height: 1px;
  border: 0;
  margin: 50px auto 40px;
  background: var(--base_color00);
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 .text_wrap .text hr {
    margin: 20px auto;
  }
}
.sec_top.sec01 .text_wrap .text p {
  line-height: 2.25;
  text-align: center;
}
@media screen and (max-width: 880px) {
  .sec_top.sec01 .text_wrap .text p {
    line-height: 2.13;
  }
}
.sec_top.sec02 {
  position: relative;
}
.sec_top.sec02:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: -360px;
  left: calc(50% - 710px);
  width: 300px;
  height: 300px;
  background: url(../images/top_sec02_image01.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  .sec_top.sec02:before {
    top: -134px;
    left: calc(50% - 189px);
    width: 100px;
    height: 100px;
  }
}
.sec_top.sec02:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: -390px;
  right: -17px;
  background: url(../images/leaf02.webp) no-repeat center/contain;
  width: 395px;
  height: 444px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec02:after {
    top: -147px;
    right: calc(50% - 198px);
    width: 122px;
    height: 135px;
    background-image: url(../images/leaf02_sp.webp);
  }
}
.sec_top.sec02 h2 {
  margin-bottom: -20px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec02 h2 {
    margin-bottom: 28px;
  }
}
.sec_top.sec02 .to_list {
  padding: 30px 0;
  text-align: right;
}
.sec_top.sec03 {
  padding: 100px 0;
  background: url(../images/top_bg02.webp) no-repeat center top/cover;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 {
    padding: 58px 0 40px;
    background-image: url(../images/top_bg02_sp.webp);
  }
}
.sec_top.sec03 h2 {
  margin-bottom: 30px;
}
.sec_top.sec03 .service_list > ul {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul {
    row-gap: 20px;
  }
}
.sec_top.sec03 .service_list > ul > li {
  padding: 50px 50px 50px 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul > li {
    padding: 37px 27px 37px 0;
  }
}
.sec_top.sec03 .service_list > ul > li:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  right: 0;
  background-image: linear-gradient(to right, var(--base_color01), var(--base_color01)), linear-gradient(to right, #fff, #fff);
  background-size: 100% calc(100% - 20px), 100% 100%;
  background-position: right 10px center, center;
  background-repeat: no-repeat;
  z-index: -2;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul > li:before {
    right: -10px;
  }
}
.sec_top.sec03 .service_list > ul > li:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: calc(100% - 22px);
  top: 0;
  right: 11px;
  bottom: 0;
  margin: auto;
  background: #fff;
  border-radius: 0 60px 0 0;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul > li:after {
    border-radius: 0 40px 0 0;
    right: 1px;
  }
}
.sec_top.sec03 .service_list > ul > li .image_text {
  display: flex;
  column-gap: 38px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul > li .image_text {
    flex-direction: column;
    row-gap: 20px;
  }
}
.sec_top.sec03 .service_list > ul > li .image_text .image {
  max-width: 398px;
  flex: 1;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul > li .image_text .image {
    max-width: 100%;
    width: 100%;
    flex: none;
  }
}
.sec_top.sec03 .service_list > ul > li .image_text .text {
  max-width: 514px;
  flex: 1.2;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul > li .image_text .text {
    max-width: 100%;
    width: 100%;
    flex: none;
  }
}
.sec_top.sec03 .service_list > ul > li .image_text .text h3 {
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.3;
  padding-left: 14px;
  border-left: 4px solid var(--base_color02);
  color: var(--base_color01);
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul > li .image_text .text h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-left: 10px;
  }
}
.sec_top.sec03 .service_list > ul > li .image_text .text h3 .info {
  display: block;
  width: fit-content;
  font-size: 1.125rem;
  background: #D6F8E8;
  color: var(--base_color21);
  padding: 5px 20px;
  border-radius: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec03 .service_list > ul > li .image_text .text h3 .info {
    font-size: 0.875rem;
  }
}
.sec_top.sec03 .service_list > ul > li .image_text .text hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: var(--base_color0001);
  margin: 10px 0;
}
.sec_top.sec03 .service_list > ul > li .image_text .text p {
  line-height: 1.875;
  flex: 1;
}
.sec_top.sec03 .service_list > ul > li .image_text .text .to_detail {
  margin-top: 20px;
  text-align: right;
}
.sec_top.sec04 {
  padding-top: 110px;
  position: relative;
  z-index: 0;
  border-top: 6px solid var(--base_color01);
}
@media screen and (max-width: 880px) {
  .sec_top.sec04 {
    padding-top: 40px;
  }
}
.sec_top.sec04:before {
  content: "";
  position: absolute;
  top: 160px;
  left: calc(50% - 740px);
  width: 190px;
  height: 188px;
  background: url(../images/top_recruit_leaf01.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  .sec_top.sec04:before {
    top: 92px;
    left: calc(50% - 204px);
    width: 81px;
    height: 80px;
    background-image: url(../images/top_recruit_leaf01_sp.webp);
  }
}
.sec_top.sec04:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 245px;
  background: var(--base_color0002);
}
@media screen and (max-width: 880px) {
  .sec_top.sec04:after {
    height: 362px;
  }
}
.sec_top.sec04 h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec04 h2 {
    margin-bottom: 122px;
  }
}
.sec_top.sec04 .image_text {
  background: url(../images/top_recruit_bg.webp) no-repeat center/cover;
  position: relative;
  z-index: 0;
  padding: 55px 44px 55px 70px;
  display: flex;
  column-gap: 38px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec04 .image_text {
    flex-direction: column;
    row-gap: 20px;
    padding: 0 30px 76px;
  }
}
.sec_top.sec04 .image_text:before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: 1px solid #fff;
}
.sec_top.sec04 .image_text .image {
  max-width: 397px;
  margin-top: -115px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 880px) {
  .sec_top.sec04 .image_text .image {
    flex: none;
    width: 100%;
    max-width: 200px;
    margin: -97px auto 0;
  }
}
.sec_top.sec04 .image_text .image .to_detail {
  margin-top: auto;
}
@media screen and (max-width: 880px) {
  .sec_top.sec04 .image_text .image .to_detail {
    margin: 0;
    position: absolute;
    right: 30px;
    bottom: 34px;
  }
}
.sec_top.sec04 .image_text .image .to_detail a {
  color: #fff;
}
.sec_top.sec04 .image_text .text {
  max-width: 448px;
  flex: 1.12;
  color: #fff;
}
@media screen and (max-width: 880px) {
  .sec_top.sec04 .image_text .text {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}
.sec_top.sec04 .image_text .text h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  margin-bottom: 24px;
}
@media screen and (max-width: 880px) {
  .sec_top.sec04 .image_text .text h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
.sec_top.sec04 .image_text .text p {
  line-height: 1.875;
}
@media screen and (max-width: 880px) {
  .sec_top.sec04 .image_text .text p {
    line-height: 1.6;
  }
}

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

.sec_company.sec01 {
  padding: 0 0 206px;
}
@media screen and (max-width: 880px) {
  .sec_company.sec01 {
    padding: 0 0 100px;
  }
}
.sec_company.sec01 h3 {
  color: var(--base_color01);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.67;
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  .sec_company.sec01 h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
.sec_company.sec01 .image_text {
  display: flex;
  column-gap: 32px;
  align-items: flex-end;
}
@media screen and (max-width: 880px) {
  .sec_company.sec01 .image_text {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
}
.sec_company.sec01 .image_text .text {
  flex: 1;
}
@media screen and (max-width: 880px) {
  .sec_company.sec01 .image_text .text {
    flex: none;
    width: 100%;
    order: 2;
  }
}
.sec_company.sec01 .image_text .text .sign {
  text-align: right;
  font-size: 0.875rem;
  margin-top: 25px;
}
.sec_company.sec01 .image_text .text .sign span {
  display: inline-block;
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (max-width: 880px) {
  .sec_company.sec01 .image_text .text .sign span {
    font-size: 1.125rem;
  }
}
.sec_company.sec01 .image_text .image {
  width: 208px;
}
.sec_company.sec02 {
  padding-bottom: 100px;
}
.sec_company.sec02 .line_dec_contents:after {
  content: none;
}
@media screen and (max-width: 880px) {
  .sec_company.sec02 {
    padding-bottom: 50px;
  }
}

.sec_recruit.sec01 {
  padding-bottom: 205px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 {
    padding-bottom: 85px;
  }
}
.sec_recruit.sec01:before {
  background: url(../images/bg_pattern01.png) repeat !important;
}
.sec_recruit.sec01 .lead {
  padding: 26px 0;
  background: url(../images/footer_contact_bg01.webp) no-repeat center top/cover;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .lead {
    padding: 15px 0;
    background-image: url(../images/footer_contact_bg01_sp.png);
  }
}
.sec_recruit.sec01 .lead p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.67;
  text-align: center;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .lead p {
    font-size: 1.125rem;
    line-height: 1.55;
  }
}
.sec_recruit.sec01 .lead p span {
  font-size: 1.75rem;
  color: var(--base_color03);
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .lead p span {
    font-size: 1.375rem;
  }
}
.sec_recruit.sec01 .banner {
  text-align: center;
  padding: 50px 0 70px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .banner {
    padding: 30px 0;
  }
}
.sec_recruit.sec01 .banner a {
  display: block;
  max-width: 640px;
  margin: auto;
  box-shadow: 0 16px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .banner a {
    max-width: 320px;
  }
}
.sec_recruit.sec01 .charm .charm_list > ol {
  display: flex;
  column-gap: 32px;
  margin-bottom: 54px;
}
@media screen and (max-width: 1050px) {
  .sec_recruit.sec01 .charm .charm_list > ol {
    column-gap: 15px;
  }
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .charm .charm_list > ol {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 30px;
  }
}
.sec_recruit.sec01 .charm .charm_list > ol > li {
  padding: 10px;
  background: var(--list_color02);
  flex: 1;
}
.sec_recruit.sec01 .charm .charm_list > ol > li.num01 {
  --list_color: var(--base_color04);
  --list_color02: #FFF3C1;
  --img_width: 194px;
}
.sec_recruit.sec01 .charm .charm_list > ol > li.num02 {
  --list_color: var(--base_color02);
  --list_color02: #E5F7CD;
  --img_width: 230px;
}
.sec_recruit.sec01 .charm .charm_list > ol > li.num03 {
  --list_color: var(--base_color05);
  --list_color02: #DEEDFF;
  --img_width: 194px;
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text {
  border: 1px solid var(--list_color);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text .title {
  background: var(--list_color);
  display: flex;
  align-items: center;
  position: relative;
  height: 72px;
  padding: 0 10px 0 110px;
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text .title .number {
  width: 90px;
  height: 90px;
  color: #fff;
  background: var(--base_color00);
  border-radius: 50%;
  border: 4px solid #fff;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text .title .number span {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--list_color);
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text .title h3 {
  flex: 1;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #fff;
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text .text {
  background: #fff;
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text .text .image {
  width: 100%;
  height: 120px;
  margin: 0 auto 10px;
  text-align: center;
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text .text .image img {
  max-width: var(--img_width);
  width: 100%;
}
.sec_recruit.sec01 .charm .charm_list > ol > li .title_text .text a {
  margin: auto 0 0 auto;
  padding: 5px 30px 9px 0;
  font-weight: 500;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .charm .charm_list > ol > li .title_text .text a {
    margin-top: 20px;
  }
}
.sec_recruit.sec01 .charm .other {
  background: #FFE2E4;
  padding: 10px;
}
.sec_recruit.sec01 .charm .other .content {
  background: #fff;
  padding: 0 14px 14px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .charm .other .content {
    padding: 0 20px 20px;
  }
}
.sec_recruit.sec01 .charm .other .content h3 {
  background: var(--base_color01);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 40px;
  font-weight: 500;
  font-size: 1.25rem;
  position: relative;
  top: -25px;
  margin: 0 auto;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .charm .other .content h3 {
    width: 160px;
    height: 32px;
    font-size: 1.125rem;
    padding-bottom: 3px;
    top: -21px;
  }
}
.sec_recruit.sec01 .charm .other .content h3:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  background: var(--base_color01);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .charm .other .content h3:after {
    bottom: -12px;
  }
}
.sec_recruit.sec01 .charm .other .content ul {
  display: flex;
  column-gap: 10px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec01 .charm .other .content ul {
    flex-direction: column;
    row-gap: 10px;
  }
}
.sec_recruit.sec01 .charm .other .content ul li {
  flex: 1;
  padding: 10px 15px;
  background: var(--base_color0002);
}
.sec_recruit.sec01 .charm .other .content ul li h4 {
  color: var(--base_color01);
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 370px) {
  .sec_recruit.sec01 .charm .other .content ul li h4 {
    font-size: 1rem;
  }
}
.sec_recruit.sec01 .charm .other .content ul li p {
  line-height: 1.625;
}
.sec_recruit.sec02 .container {
  position: relative;
}
.sec_recruit.sec02 .container .note {
  position: absolute;
  top: 35px;
  left: 244px;
  color: var(--base_color0004);
  font-size: 0.875rem;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .container .note {
    position: static;
    margin-bottom: 72px;
  }
}
.sec_recruit.sec02 h2 {
  margin-bottom: 56px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 h2 {
    margin-bottom: 20px;
  }
}
.sec_recruit.sec02 .work_list {
  padding-bottom: 96px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list {
    padding-bottom: 30px;
  }
}
.sec_recruit.sec02 .work_list > ul {
  display: flex;
  flex-direction: column;
  row-gap: 90px;
}
@media screen and (max-width: 1050px) {
  .sec_recruit.sec02 .work_list > ul {
    row-gap: 50px;
  }
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul {
    row-gap: 78px;
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text {
  position: relative;
}
.sec_recruit.sec02 .work_list > ul > li .image_text .image {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .image {
    top: -48px;
    right: 0;
    left: 0;
    transform: none;
    text-align: center;
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text .image img {
  max-width: 313px;
  width: 100%;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .image img {
    max-width: 230px;
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text {
  margin-left: 156px;
  background: var(--base_color0002);
  position: relative;
  z-index: 0;
  padding: 30px 36px 30px 188px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .text {
    margin-left: 0;
    padding: 193px 25px 22px 25px;
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #fff;
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text h3 {
  font-size: 1.125rem;
  color: var(--base_color02);
  line-height: 1.39;
  font-weight: 500;
  margin-bottom: 15px;
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text > p {
  line-height: 1.625;
  margin-bottom: 43px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .text > p {
    margin-bottom: 15px;
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text .voice {
  display: flex;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .text .voice {
    flex-direction: column;
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .from {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--base_color02);
  font-weight: 500;
  line-height: 1.25;
  position: relative;
  width: 124px;
  text-align: center;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .from {
    width: 100%;
    height: 50px;
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .from:after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  right: -9px;
  bottom: 0;
  margin: auto;
  background: var(--base_color02);
  width: 10px;
  height: 14px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .from:after {
    top: auto;
    right: 0;
    bottom: -9px;
    left: 0;
    width: 14px;
    height: 10px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .detail {
  flex: 1;
  background: #fff;
  padding: 12px 136px 12px 25px;
  position: relative;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .detail {
    flex: none;
    width: 100%;
    padding: 18px 100px 18px 15px;
  }
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .detail p {
  font-size: 0.875rem;
  line-height: 1.375;
}
.sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .detail img {
  position: absolute;
  right: 13px;
  bottom: -30px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec02 .work_list > ul > li .image_text .text .voice .detail img {
    right: 0;
    bottom: 0;
    width: 100px;
  }
}
.sec_recruit.sec03 {
  padding-top: 125px;
  padding-bottom: 200px;
  background: url(../images/bg_pattern01.png) repeat;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec03 {
    padding-top: 73px;
    padding-bottom: 84px;
  }
}
.sec_recruit.sec03 .p01 {
  font-size: 1.125rem;
  line-height: 1.67;
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec03 .p01 {
    font-size: 0.9375rem;
    margin-bottom: 30px;
  }
}
.sec_recruit.sec03 .style_list > ul {
  --cols: 4;
  --col_gap: 33px;
  --row_gap: 20px;
}
@media screen and (max-width: 1050px) {
  .sec_recruit.sec03 .style_list > ul {
    --cols: 2;
    max-width: 485px;
    margin: auto;
  }
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec03 .style_list > ul {
    --col_gap: 20px ;
  }
}
.sec_recruit.sec03 .style_list > ul > li.style01 {
  --color: var(--base_color01);
}
.sec_recruit.sec03 .style_list > ul > li.style02 {
  --color: var(--base_color04);
}
.sec_recruit.sec03 .style_list > ul > li.style03 {
  --color: var(--base_color02);
}
.sec_recruit.sec03 .style_list > ul > li.style04 {
  --color: var(--base_color05);
}
.sec_recruit.sec03 .style_list > ul > li h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.33;
  text-align: center;
  color: #fff;
  background: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 64px;
  position: relative;
  margin: 0 auto -30px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec03 .style_list > ul > li h3 {
    font-size: 1rem;
    width: 130px;
    height: 50px;
    line-height: 1.25;
    margin-bottom: -20px;
  }
}
.sec_recruit.sec03 .style_list > ul > li h3:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  margin: auto;
  width: 10px;
  height: 8px;
  background: var(--color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.sec_recruit.sec03 .style_list > ul > li .image {
  margin-bottom: 11px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec03 .style_list > ul > li .image {
    width: 160px;
    margin: 0 auto 10px;
  }
}
.sec_recruit.sec03 .style_list > ul > li p {
  line-height: 1.625;
}
.sec_recruit.sec03 .style_list > ul > li p span {
  color: var(--base_color01);
}
.sec_recruit.sec04 .container {
  padding-bottom: 1px;
}
.sec_recruit.sec04 .job_detail_list {
  margin-bottom: 80px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec04 .job_detail_list {
    margin-bottom: 40px;
  }
  .sec_recruit.sec04 .job_detail_list:last-child {
    margin-bottom: 26px;
  }
}
.sec_recruit.sec04 .job_detail_list dl {
  display: flex;
  line-height: 1.625;
  padding: 17px 0;
  border-bottom: 1px solid var(--base_color0001);
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec04 .job_detail_list dl {
    flex-direction: column;
    padding: 0;
  }
}
.sec_recruit.sec04 .job_detail_list dl:first-child {
  border-top: 1px solid var(--base_color01);
  background: var(--base_color0002);
}
.sec_recruit.sec04 .job_detail_list dl dt {
  font-weight: 500;
  width: 210px;
  padding: 0 30px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec04 .job_detail_list dl dt {
    font-size: 0.9375rem;
    width: 100%;
    padding: 12px 10px 0;
  }
}
.sec_recruit.sec04 .job_detail_list dl dd {
  flex: 1;
  padding-right: 30px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec04 .job_detail_list dl dd {
    width: 100%;
    flex: none;
    padding: 0 10px 10px;
  }
}
.sec_recruit.sec05 {
  padding: 123px 0 200px;
  background: url(../images/bg_pattern01.png) repeat;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec05 {
    padding: 74px 0 86px;
  }
}
.sec_recruit.sec05 .flow_list > ol {
  counter-reset: cnt;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec05 .flow_list > ol {
    row-gap: 34px;
  }
}
.sec_recruit.sec05 .flow_list > ol > li {
  display: flex;
  align-items: center;
  column-gap: 35px;
  counter-increment: cnt;
  border: 6px solid #FFE1E4;
  background: #fff;
  padding: 20px 30px 20px 0;
  position: relative;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec05 .flow_list > ol > li {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }
}
.sec_recruit.sec05 .flow_list > ol > li:last-child:after {
  content: none;
}
.sec_recruit.sec05 .flow_list > ol > li:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -26px;
  left: 0;
  margin: auto;
  transform: translateY(50%);
  width: 34px;
  height: 19px;
  background: var(--base_color02);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec05 .flow_list > ol > li:after {
    width: 26px;
    height: 14px;
    bottom: -23px;
  }
}
.sec_recruit.sec05 .flow_list > ol > li h3 {
  background: var(--base_color01);
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 10px 20px;
  margin-left: -6px;
  max-width: 395px;
  flex: 1;
  height: 60px;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec05 .flow_list > ol > li h3 {
    flex: none;
    max-width: 325px;
    width: calc(100% + 26px);
    height: 50px;
    padding: 10px 17px 10px 20px;
    font-size: 1.125rem;
    column-gap: 10px;
    margin-left: -21px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  }
}
@media screen and (max-width: 370px) {
  .sec_recruit.sec05 .flow_list > ol > li h3 {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.sec_recruit.sec05 .flow_list > ol > li h3:before {
  content: "0" counter(cnt);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--base_color01);
  box-sizing: border-box;
  padding-right: 2px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec05 .flow_list > ol > li h3:before {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
    padding-right: 3px;
    padding-top: 2px;
  }
}
.sec_recruit.sec05 .flow_list > ol > li > div {
  flex: 1;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec05 .flow_list > ol > li > div {
    flex: none;
    width: 100%;
  }
}
.sec_recruit.sec05 .flow_list > ol > li > div p {
  line-height: 1.625;
}
.sec_recruit.sec06 {
  padding-bottom: 100px;
}
@media screen and (max-width: 880px) {
  .sec_recruit.sec06 {
    padding-bottom: 50px;
  }
}
.sec_recruit.sec06 .line_dec_contents:after {
  content: none;
}

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

.sec_contact {
  padding-bottom: 100px;
}
@media screen and (max-width: 880px) {
  .sec_contact {
    padding-bottom: 50px;
  }
}
.sec_contact .contact_form .box {
  border-radius: 20px;
  background: #fff;
  padding: 60px 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .box {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 370px) {
  .sec_contact .contact_form .box br {
    display: none;
  }
}
.sec_contact .contact_form .box .p01 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .box .p01 {
    margin-bottom: 20px;
    text-align: left;
  }
}
.sec_contact .contact_form .box .p02 {
  margin-bottom: 20px;
  color: var(--base_color01);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--base_color0001);
}
.sec_contact .contact_form .box .req {
  color: var(--base_color01);
  display: inline-block;
}
.sec_contact .contact_form .box .req:before {
  content: "＊";
}
.sec_contact .contact_form .box .any {
  display: inline-block;
}
.sec_contact .contact_form .box .any:before {
  content: "　";
}
.sec_contact .contact_form .box .dl_list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.sec_contact .contact_form .box .dl_list dl {
  display: flex;
  align-items: flex-start;
  max-width: 826px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .box .dl_list dl {
    flex-direction: column;
    row-gap: 10px;
  }
}
.sec_contact .contact_form .box .dl_list dl dt {
  font-weight: 500;
  width: 226px;
  padding-top: 13px;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .box .dl_list dl dt {
    width: 100%;
    font-size: 0.9375rem;
    padding-top: 0;
  }
}
.sec_contact .contact_form .box .dl_list dl dd {
  flex: 1;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .box .dl_list dl dd {
    width: 100%;
    flex: none;
  }
}
.sec_contact .contact_form .box .dl_list dl.radio dt {
  padding-top: 18px;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .box .dl_list dl.radio dt {
    padding-top: 0;
  }
}
.sec_contact .contact_form .box .dl_list dl.radio dd .wpcf7-radio {
  padding: 18px 10px;
  background: var(--base_color0003);
}
.sec_contact .contact_form .box .content {
  max-width: 828px;
  margin: auto;
}
.sec_contact .contact_form .box .h_title06 {
  margin-top: 40px;
}
.sec_contact .contact_form .box .zip {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .box .zip {
    margin-bottom: 12px;
  }
}
.sec_contact .contact_form .box .zip input {
  width: 100px;
}
.sec_contact .contact_form .box .ymd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 12px;
}
.sec_contact .contact_form .box .ymd .wrap {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
@media screen and (max-width: 600px) {
  .sec_contact .contact_form .box .ymd .wrap:first-child {
    width: 100%;
  }
}
.sec_contact .contact_form .box .ymd .wrap input {
  width: 120px;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .box .ymd .wrap input {
    width: 100px;
  }
}
.sec_contact .contact_form .privacy_policy {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  .sec_contact .contact_form .privacy_policy {
    margin-bottom: 40px;
  }
}
.sec_contact .contact_form .submit_btns button {
  width: 240px;
}
.sec_contact.thanks h2 {
  color: var(--base_color01);
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.sec_contact.thanks hr {
  max-width: 656px;
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--base_color0001);
  margin: 40px auto;
}
@media screen and (max-width: 880px) {
  .sec_contact.thanks hr {
    margin: 25px auto;
  }
}
.sec_contact.thanks p {
  max-width: 656px;
  width: 100%;
  margin: auto;
}
.sec_contact.thanks p.p02 {
  color: var(--base_color0004);
}
.sec_contact.thanks .btn01 {
  width: 240px;
  margin: auto;
}

.sec_privacy_policy {
  padding-bottom: 100px;
}
@media screen and (max-width: 880px) {
  .sec_privacy_policy {
    padding-bottom: 50px;
  }
}
.sec_privacy_policy .content {
  max-width: 828px;
  margin: auto;
  line-height: var(--base_line_height);
}
@media screen and (max-width: 880px) {
  .sec_privacy_policy .content {
    font-size: 0.9375rem;
  }
}
.sec_privacy_policy .content .p01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 880px) {
  .sec_privacy_policy .content .p01 {
    margin-bottom: 20px;
  }
}
.sec_privacy_policy .content > .list.num {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.sec_privacy_policy .content > .list.num > li {
  padding-left: 40px;
}
@media screen and (max-width: 880px) {
  .sec_privacy_policy .content > .list.num > li {
    padding-left: 25px;
  }
}
.sec_privacy_policy .content > .list.num > li:before {
  color: var(--base_color01);
  font-size: 1.125rem;
}
@media screen and (max-width: 880px) {
  .sec_privacy_policy .content > .list.num > li:before {
    font-size: 1rem;
    top: -2px;
  }
}
.sec_privacy_policy .content > .list.num > li .list.num_paren {
  margin-top: 13px;
  margin-left: 50px;
  color: var(--base_color0004);
}
@media screen and (max-width: 880px) {
  .sec_privacy_policy .content > .list.num > li .list.num_paren {
    margin-left: 10px;
  }
}

.sec_news {
  padding-bottom: 100px;
}
@media screen and (max-width: 880px) {
  .sec_news {
    padding-bottom: 50px;
  }
}
.sec_news.sec_detail .content {
  max-width: 828px;
  margin: auto;
}
.sec_news.sec_detail .news_meta {
  margin-bottom: 25px;
}
@media screen and (max-width: 880px) {
  .sec_news.sec_detail .news_meta {
    margin-bottom: 16px;
  }
}
.sec_news.sec_detail .news_meta .cats {
  width: auto;
  flex: 1;
  align-items: center;
}
.sec_news.sec_detail h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 25px;
  position: relative;
}
@media screen and (max-width: 880px) {
  .sec_news.sec_detail h1 {
    font-size: 1.25rem;
    padding-left: 15px;
  }
}
.sec_news.sec_detail h1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--base_color01);
}
@media screen and (max-width: 880px) {
  .sec_news.sec_detail h1:before {
    width: 3px;
  }
}
.sec_news.sec_detail h1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 4px;
  height: 100%;
  background: var(--base_color02);
}
@media screen and (max-width: 880px) {
  .sec_news.sec_detail h1:after {
    width: 2px;
    left: 5px;
  }
}
.sec_news.sec_detail hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: var(--base_color05);
  margin: 14px 0 50px;
}
@media screen and (max-width: 880px) {
  .sec_news.sec_detail hr {
    margin: 8px 0 20px;
  }
}
.sec_news.sec_detail .to_list {
  margin-top: 100px;
}
@media screen and (max-width: 880px) {
  .sec_news.sec_detail .to_list {
    margin-top: 50px;
  }
}
.sec_news.sec_detail .to_list a {
  max-width: 240px;
  margin: auto;
  padding: 10px 18px 12px 44px;
  justify-content: flex-end;
}
.sec_news.sec_detail .to_list a:after {
  transform: rotate(180deg);
  right: auto;
  left: 12px;
}

/*--------------------------
クリーニングAPA
----------------------------*/
body.apa {
  --base_header_height: 110px;
}
@media screen and (max-width: 880px) {
  body.apa {
    --base_header_height: 60px;
  }
}
body.apa header .logo {
  width: 213px;
}
@media screen and (max-width: 1050px) {
  body.apa header .logo {
    width: 150px;
  }
}
@media screen and (max-width: 880px) {
  body.apa header .logo {
    width: 142px;
  }
}
body.apa header nav .nav01 .nav0101 {
  display: none;
}
@media screen and (max-width: 880px) {
  body.apa header nav .nav01 .nav0101 {
    display: flex;
    margin-bottom: 0;
  }
  body.apa header nav .nav01 .nav0101 .logo {
    width: 100%;
  }
  body.apa header nav .nav01 .nav0101 .logo a:before {
    content: none;
  }
  body.apa header nav .nav01 .nav0101 .logo img {
    width: 151px;
  }
  body.apa header nav .nav01 .nav0101 > li:nth-child(2), body.apa header nav .nav01 .nav0101 > li:nth-child(4) {
    width: calc(35% - 10px);
  }
  body.apa header nav .nav01 .nav0101 > li:nth-child(3), body.apa header nav .nav01 .nav0101 > li:nth-child(5) {
    width: calc(65% - 10px);
  }
}
body.apa header nav .nav01 .nav0102 {
  column-gap: 0;
}
@media screen and (max-width: 880px) {
  body.apa header nav .nav01 .nav0102 {
    margin-top: 10px;
  }
}
body.apa header nav .nav01 .nav0102 > li.sp {
  display: none;
}
@media screen and (max-width: 880px) {
  body.apa header nav .nav01 .nav0102 > li.sp {
    display: block;
  }
}
@media screen and (min-width: 881px) {
  body.apa header nav .nav01 .nav0102 > li {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body.apa header nav .nav01 .nav0102 > li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: url(../images/apa/header_line.svg) no-repeat center;
  }
  body.apa header nav .nav01 .nav0102 > li > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.38;
    padding: 0 20px;
    color: var(--base_color00) !important;
  }
}
@media screen and (min-width: 881px) and (max-width: 1200px) {
  body.apa header nav .nav01 .nav0102 > li > a {
    padding: 0 10px;
  }
}
@media screen and (min-width: 881px) and (max-width: 1050px) {
  body.apa header nav .nav01 .nav0102 > li > a {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 881px) and (any-hover: hover) {
  body.apa header nav .nav01 .nav0102 > li > a:hover img {
    transform: translateY(-5px);
  }
}
@media screen and (min-width: 881px) {
  body.apa header nav .nav01 .nav0102 > li > a:after {
    content: none;
  }
  body.apa header nav .nav01 .nav0102 > li > a img {
    width: 50px;
    transition: transform 0.3s;
  }
  body.apa header nav .nav01 .nav0102 > li > a span {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 880px) {
  body.apa header nav .nav01 .nav0102 > li > a {
    display: flex;
    align-items: center;
    column-gap: 20px;
    line-height: 1.3;
    padding: 13px 0;
  }
  body.apa header nav .nav01 .nav0102 > li > a img {
    width: 40px;
  }
}
body.apa header nav .nav01 .nav0102 > li.site_top a {
  padding: 21px 0;
}
body.apa header nav .nav02 {
  margin-left: 0;
}
@media screen and (max-width: 880px) {
  body.apa header nav .nav02 .contact {
    margin-bottom: 30px;
  }
}
body.apa footer .footer_recruit {
  position: relative;
  z-index: 0;
  min-height: 200px;
  display: flex;
  align-items: center;
  background: url(../images/apa/footer_recruit_bg.webp) no-repeat center/cover;
  color: #fff;
  padding: 30px 0;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_recruit {
    min-height: 260px;
    background-image: url(../images/apa/footer_recruit_bg_sp.webp);
  }
}
body.apa footer .footer_recruit:before {
  content: "";
  width: 100%;
  height: calc(100% - 20px);
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
body.apa footer .footer_recruit .text_arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_recruit .text_arrow {
    flex-direction: column;
    row-gap: 30px;
  }
}
body.apa footer .footer_recruit .text_arrow .text h2 {
  font-weight: 500;
  font-size: 1.75rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_recruit .text_arrow .text h2 {
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: center;
  }
}
body.apa footer .footer_recruit .text_arrow .arrow {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  color: #fff;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_recruit .text_arrow .arrow {
    width: 100%;
    max-width: 310px;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 0.9375rem;
    column-gap: 15px;
  }
}
body.apa footer .footer_recruit .text_arrow .arrow:after {
  content: "";
  width: 100%;
  width: 218px;
  height: 15px;
  background: url(../images/apa/footer_recruit_arrow.svg) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_recruit .text_arrow .arrow:after {
    width: auto;
    flex: 1;
  }
}
body.apa footer .footer_links .info_links .links > ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 70px;
  row-gap: 20px;
  padding: 40px 49px;
  background: var(--base_color0002);
  border-radius: 20px;
}
@media screen and (max-width: 1050px) {
  body.apa footer .footer_links .info_links .links > ul {
    column-gap: 40px;
    padding: 30px;
  }
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_links .info_links .links > ul {
    padding: 10px 20px 20px;
    row-gap: 5px;
    border-radius: 16px;
    flex-direction: column;
  }
}
body.apa footer .footer_links .info_links .links > ul > li {
  width: 206px;
  line-height: 1.25;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_links .info_links .links > ul > li {
    width: 100%;
  }
}
body.apa footer .footer_links .info_links .links > ul > li:nth-child(1) {
  width: 100%;
  font-size: 1.125rem;
}
body.apa footer .footer_links .info_links .links > ul > li:nth-child(1) a:after {
  width: 26px;
  height: 26px;
}
body.apa footer .footer_links .info_links .links > ul > li a {
  height: 3em;
  padding: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_links .info_links .links > ul > li a {
    height: auto;
    padding: 10px 0;
  }
}
body.apa footer .footer_links .info_links .links .sub {
  margin-top: 50px;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_links .info_links .links .sub {
    margin: 30px 0 0;
    row-gap: 20px;
  }
}
body.apa footer .footer_links .info_links .links .sub > ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 15px;
}
@media screen and (max-width: 880px) {
  body.apa footer .footer_links .info_links .links .sub > ul {
    flex-direction: column;
    row-gap: 20px;
  }
}
body.apa footer .footer_links .info_links .links .sub > ul > li a {
  font-size: 1rem;
  display: flex;
  column-gap: 0.2em;
  padding: 0;
}
body.apa footer .footer_links .info_links .links .sub > ul > li a:before {
  content: "–";
  color: var(--base_color01);
}
body.apa footer .footer_links .info_links .links .sub > ul > li a:after {
  content: none;
}
body.apa .sub_main_visual {
  position: relative;
}
body.apa .sub_main_visual:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1000px;
  background: var(--base_grad01);
}
body.apa .sub_main_visual:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -115px;
  left: 0;
  width: 100%;
  height: 357px;
  background: url(../images/apa/bubble01.webp) no-repeat -142px calc(100% - 37px)/300px 322px, url(../images/apa/bubble02.webp) no-repeat calc(100% + 142px) 100%/230px 217px;
}
@media screen and (max-width: 880px) {
  body.apa .sub_main_visual:after {
    bottom: -44px;
    height: 203px;
    background: url(../images/apa/bubble01.webp) no-repeat -80px calc(100% - 42px)/150px 161px, url(../images/apa/bubble02.webp) no-repeat calc(100% + 81px) 100%/115px 108px;
  }
}
body.apa .sub_main_visual .image {
  border-radius: 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sub_main_visual .image {
    border-radius: 20px;
  }
}
body.apa .sub_main_visual .image:before {
  padding-top: 21.44%;
}
@media screen and (max-width: 880px) {
  body.apa .sub_main_visual .image:before {
    padding-top: 58.82%;
  }
}
body.apa .sub_main_visual .title .h_title01 .en {
  font-size: 1.25rem;
}
@media screen and (max-width: 880px) {
  body.apa .sub_main_visual .title .h_title01 .en {
    font-size: 1rem;
  }
}
body.apa .sub_main_visual .title .h_title01 .jp {
  font-size: 2.25rem;
}
@media screen and (max-width: 880px) {
  body.apa .sub_main_visual .title .h_title01 .jp {
    font-size: 1.625rem;
  }
}
body.apa .apa_sub_lead {
  padding-bottom: 88px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_sub_lead {
    padding-bottom: 50px;
  }
}
body.apa .apa_sub_lead p.lead {
  color: var(--base_color01);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.67;
  margin-bottom: 20px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_sub_lead p.lead {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
body.apa .apa_sub_lead p.p01 {
  text-align: center;
  font-size: 1.125rem;
  font-family: 500;
  line-height: 1.78;
}
@media screen and (max-width: 880px) {
  body.apa .apa_sub_lead p.p01 {
    font-size: 1rem;
  }
}
body.apa .news_meta time {
  color: var(--base_color01);
}
body.apa .apa_news_list > ul {
  --cols: 3;
  --col_gap: 32px;
  --row_gap: 32px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_news_list > ul {
    --cols: 2;
    --col_gap: 12px;
    --row_gap: 12px;
  }
}
body.apa .apa_news_list > ul > li a {
  padding: 8px 8px 26px;
  background: #fff;
  border-radius: 20px;
  display: block;
  color: var(--base_color00);
  height: 100%;
}
@media screen and (max-width: 880px) {
  body.apa .apa_news_list > ul > li a {
    padding: 4px 4px 12px;
  }
}
body.apa .apa_news_list > ul > li a .image {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  margin-bottom: 18px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_news_list > ul > li a .image {
    margin-bottom: 12px;
  }
}
body.apa .apa_news_list > ul > li a .image:before {
  content: "";
  display: block;
  padding-top: 91.22%;
}
body.apa .apa_news_list > ul > li a .image img {
  object-position: center top;
}
body.apa .apa_news_list > ul > li a .news_meta {
  margin-bottom: 7px;
  padding: 0 14px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_news_list > ul > li a .news_meta {
    font-size: 0.875rem;
    margin-bottom: 5px;
    padding: 0 8px;
  }
}
body.apa .apa_news_list > ul > li a h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.625;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 14px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_news_list > ul > li a h3 {
    font-size: 0.875rem;
    padding: 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
body.apa .sec_apa {
  padding: 112px 0 100px;
  background: #fff;
  border-radius: 140px 140px 0 0;
  position: relative;
}
@media screen and (max-width: 1050px) {
  body.apa .sec_apa {
    border-radius: 100px 100px 0 0;
  }
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa {
    padding: 50px 0;
    border-radius: 50px 50px 0 0;
  }
}
body.apa .sec_apa:after {
  content: "";
  position: absolute;
  top: -60px;
  left: calc(50% - 412px);
  width: 125px;
  height: 117px;
  background: url(../images/apa/bubble02.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa:after {
    top: -19px;
    left: calc(50% - 110px);
    width: 63px;
    height: 59px;
  }
}
body.apa .apa_page_bottom_links {
  padding: 60px 0 80px;
  background: url(../images/apa/page_bottom_links_bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 880px) {
  body.apa .apa_page_bottom_links {
    padding: 33px 0;
    background-image: url(../images/apa/page_bottom_links_bg_sp.webp);
  }
}
body.apa .apa_page_bottom_links h2 {
  width: fit-content;
  margin: 0 auto 30px;
  color: var(--base_color0501);
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  line-height: 1.44;
  text-align: center;
}
@media screen and (max-width: 880px) {
  body.apa .apa_page_bottom_links h2 {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
}
body.apa .apa_page_bottom_links h2:before, body.apa .apa_page_bottom_links h2:after {
  content: "";
  width: 13px;
  height: 23px;
  position: absolute;
  bottom: 0;
  background: no-repeat center/contain;
}
body.apa .apa_page_bottom_links h2:before {
  left: -25px;
  background-image: url(../images/apa/page_bottom_links_title_left.svg);
}
body.apa .apa_page_bottom_links h2:after {
  right: -25px;
  background-image: url(../images/apa/page_bottom_links_title_right.svg);
}
body.apa .apa_page_bottom_links .links {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 32px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_page_bottom_links .links {
    flex-direction: column;
    row-gap: 10px;
  }
}
body.apa .apa_page_bottom_links .links a.service04:before {
  background-image: url(../images/apa/menu_icon04.png);
}
body.apa .apa_page_bottom_links .links a.service05:before {
  background-image: url(../images/apa/menu_icon05.png);
}
body.apa .apa_contents {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_contents {
    row-gap: 60px;
  }
}
body.apa .apa_contents .content > *:last-child {
  margin-bottom: 0 !important;
}
body.apa .services_link_list > li > a {
  min-height: 0;
}
body.apa .services_link_list > li > a .image {
  max-width: 332px;
}
body.apa .services_link_list > li > a .text p {
  max-width: 338px;
}
body.apa .apa_top_main_visual .splide {
  margin-bottom: 55px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .splide {
    margin-bottom: 38px;
  }
}
body.apa .apa_top_main_visual .splide .splide__slide {
  width: 100%;
}
body.apa .apa_top_main_visual .splide .splide__slide > a, body.apa .apa_top_main_visual .splide .splide__slide > div {
  display: block;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .splide .splide__slide > a, body.apa .apa_top_main_visual .splide .splide__slide > div {
    border-radius: 20px;
  }
}
body.apa .apa_top_main_visual .splide .splide__slide > a:before, body.apa .apa_top_main_visual .splide .splide__slide > div:before {
  content: "";
  display: block;
  padding-top: 42%;
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .splide .splide__slide > a:before, body.apa .apa_top_main_visual .splide .splide__slide > div:before {
    padding-top: 67.65%;
  }
}
body.apa .apa_top_main_visual .splide .splide__pagination {
  bottom: -28px;
  column-gap: 20px;
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .splide .splide__pagination {
    bottom: -18px;
    column-gap: 13px;
  }
}
body.apa .apa_top_main_visual .splide .splide__pagination li button {
  width: 12px;
  height: 12px;
  margin: 0;
  background: #C0D0DB;
  transform: scale(1);
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .splide .splide__pagination li button {
    width: 8px;
    height: 8px;
  }
}
body.apa .apa_top_main_visual .splide .splide__pagination li button.is-active {
  background: var(--base_color01);
}
body.apa .apa_top_main_visual .splide .splide__arrow {
  width: 40px;
  height: 40px;
  background: no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .splide .splide__arrow {
    width: 30px;
    height: 30px;
  }
}
body.apa .apa_top_main_visual .splide .splide__arrow svg {
  display: none;
}
body.apa .apa_top_main_visual .splide .splide__arrow--prev {
  left: 14%;
  background-image: url(../images/apa/splide_arrow_left.svg);
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .splide .splide__arrow--prev {
    left: 25px;
  }
}
body.apa .apa_top_main_visual .splide .splide__arrow--next {
  right: 14%;
  background-image: url(../images/apa/splide_arrow_right.svg);
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .splide .splide__arrow--next {
    right: 25px;
  }
}
body.apa .apa_top_main_visual .banners {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 31px;
  position: relative;
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .banners {
    max-width: 500px;
    margin: auto;
    flex-direction: column;
    row-gap: 12px;
  }
}
body.apa .apa_top_main_visual .banners:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--vw) * 100);
  height: 10000px;
  background: url(../images/apa/top_bg01.webp) no-repeat center top/max(100%, 1366px);
}
@media screen and (max-width: 880px) {
  body.apa .apa_top_main_visual .banners:before {
    top: 22px;
    background-image: url(../images/apa/top_bg01_sp.webp);
    background-size: max(100%, 375px);
  }
}
body.apa .sec_apa_top h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top h2 {
    margin-bottom: 20px;
  }
}
body.apa .sec_apa_top .sec_title {
  display: flex;
  align-items: flex-end;
  column-gap: 48px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top .sec_title {
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
  }
}
body.apa .sec_apa_top .sec_title h2 {
  margin-bottom: 0;
}
body.apa .sec_apa_top .sec_title .sub {
  flex: 1;
}
body.apa .sec_apa_top .sec_title .sub p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--base_color0501);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top .sec_title .sub p {
    line-height: 1.5;
    font-size: 1rem;
  }
}
body.apa .sec_apa_top .sec_title_hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: var(--base_color0501);
  margin: 20px 0 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top .sec_title_hr {
    margin: 14px 0 22px;
  }
}
body.apa .sec_apa_top.sec01 {
  padding: 50px 0 100px;
  position: relative;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec01 {
    padding: 42px 0 60px;
  }
}
body.apa .sec_apa_top.sec01:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 214px;
  left: calc(50% - 868px);
  width: 300px;
  height: 321px;
  background: url(../images/apa/bubble01.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec01:before {
    width: 150px;
    height: 161px;
    top: 363px;
    left: -80px;
  }
}
body.apa .sec_apa_top.sec01:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 8px;
  right: calc(50% - 813px);
  width: 230px;
  height: 216px;
  background: url(../images/apa/bubble02.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec01:after {
    width: 115px;
    height: 108px;
    bottom: 85px;
    right: -82px;
  }
}
body.apa .sec_apa_top.sec01 .apa_news_list {
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec01 .apa_news_list {
    margin-bottom: 30px;
  }
}
body.apa .sec_apa_top.sec01 .to_list a {
  width: 240px;
  margin: auto;
}
body.apa .sec_apa_top.sec02 .tabs .tab_btns {
  display: flex;
  column-gap: 10px;
  border-bottom: 4px solid var(--base_color01);
  margin-bottom: 20px;
}
body.apa .sec_apa_top.sec02 .tabs .tab_btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  max-width: 312px;
  flex: 1;
  height: 46px;
  color: var(--base_color00);
  background: var(--base_color0001);
  text-decoration: none;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_btns a {
    font-size: 0.875rem;
    line-height: 1.43;
    text-align: center;
  }
}
body.apa .sec_apa_top.sec02 .tabs .tab_btns a.active {
  height: 56px;
  background: var(--base_color01);
  color: #fff;
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .frame_wrap {
  padding: 0;
  height: 495px;
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .frame_wrap {
    height: 390px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .frame_wrap {
    height: 290px;
  }
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li {
  border-bottom: 1px solid var(--base_color0001);
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li:first-child {
  border-top: 1px solid var(--base_color0001);
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a {
  position: relative;
  display: block;
  padding: 14px 60px 14px 30px;
}
@media (any-hover: hover) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a {
    transition: color 0.3s, background 0.3s;
  }
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a:hover {
    color: var(--base_color01);
    background: var(--base_color0003);
  }
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a {
    padding: 10px 40px 10px 10px;
  }
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a:after {
  right: 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a:after {
    right: 10px;
  }
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a h3 {
  font-weight: 500;
  font-size: 1.125rem;
  padding-left: 14px;
  margin-bottom: 7px;
  position: relative;
  line-height: 1.25;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a h3 {
    font-size: 1rem;
    padding-left: 10px;
  }
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a h3:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--base_color01);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a h3:before {
    width: 6px;
    height: 6px;
  }
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a address {
  font-size: 0.9375rem;
  color: var(--base_color0004);
  padding-left: 14px;
  font-style: normal;
  display: flex;
  column-gap: 1em;
  line-height: 1.57;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a address {
    font-size: 0.875rem;
    flex-direction: column;
    padding-left: 10px;
  }
}
body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a address span {
  max-width: 50%;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec02 .tabs .tab_contents .content .shop_list > ul > li a address span {
    max-width: 100%;
  }
}
body.apa .sec_apa_top.sec03 {
  background-image: var(--base_grad02);
}
body.apa .sec_apa_top.sec03:after {
  top: -43px;
  right: calc(50% - 330px);
  left: auto;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03:after {
    top: -19px;
    right: calc(50% - 106px);
  }
}
body.apa .sec_apa_top.sec03 .benefits_list {
  margin-bottom: 70px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .benefits_list {
    margin-bottom: 40px;
  }
}
body.apa .sec_apa_top.sec03 .benefits_list > ol {
  counter-reset: cnt;
  --cols: 2;
  --col_gap: 40px;
  --row_gap: 40px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .benefits_list > ol {
    --cols: 1;
    --row_gap: 20px;
  }
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li {
  counter-increment: cnt;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .benefits_list > ol > li {
    border-radius: 16px;
  }
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .header {
  background: var(--base_color01);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 54px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .benefits_list > ol > li .header {
    height: 38px;
    justify-content: flex-start;
    padding-left: 20px;
  }
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .header:after {
  content: "0" counter(cnt);
  position: absolute;
  top: 0;
  right: 0;
  width: 148px;
  height: 100%;
  background: var(--base_color02);
  font-style: italic;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
  box-sizing: border-box;
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 1050px) {
  body.apa .sec_apa_top.sec03 .benefits_list > ol > li .header:after {
    width: 120px;
  }
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .benefits_list > ol > li .header:after {
    font-size: 1.5rem;
    width: 105px;
    padding-left: 10px;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
  }
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail {
  padding: 14px 15px 24px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail {
    padding: 15px 20px 16px;
  }
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail .image {
  margin-bottom: 10px;
  text-align: center;
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail .image img {
  zoom: 0.5;
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail p {
  line-height: 1.625;
  width: fit-content;
  margin: auto;
  max-width: 405px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail p {
    line-height: 1.57;
    font-size: 0.875rem;
  }
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail .note {
  font-size: 0.875rem;
  color: var(--base_color0004);
  width: fit-content;
  margin: auto;
  max-width: 405px;
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail .note ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail .note ul {
    flex-direction: column;
  }
}
body.apa .sec_apa_top.sec03 .benefits_list > ol > li .detail .note ul li {
  line-height: 1.57;
}
body.apa .sec_apa_top.sec03 .step_list {
  position: relative;
  z-index: 0;
}
body.apa .sec_apa_top.sec03 .step_list h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--base_color01);
  display: flex;
  align-items: center;
  column-gap: 14px;
  margin-bottom: 26px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list h3 {
    font-size: 1.25rem;
  }
}
body.apa .sec_apa_top.sec03 .step_list h3:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--base_color0501);
}
body.apa .sec_apa_top.sec03 .step_list > ol {
  display: flex;
  justify-content: center;
  column-gap: 74px;
  counter-reset: cnt;
  margin-bottom: 40px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list > ol {
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 20px;
  }
}
body.apa .sec_apa_top.sec03 .step_list > ol > li {
  flex: 1;
  max-width: 226px;
  counter-increment: cnt;
  position: relative;
}
body.apa .sec_apa_top.sec03 .step_list > ol > li:last-child:after {
  content: none;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list > ol > li {
    display: flex;
    align-items: flex-end;
    column-gap: 10px;
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}
body.apa .sec_apa_top.sec03 .step_list > ol > li:after {
  content: "";
  position: absolute;
  top: 142px;
  right: -37px;
  margin: auto;
  transform: translateX(50%);
  width: 12px;
  height: 14px;
  background: var(--base_color01);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list > ol > li:after {
    width: 14px;
    height: 12px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform: translateY(50%);
    top: auto;
    right: 0;
    bottom: -15px;
    left: 0;
  }
}
body.apa .sec_apa_top.sec03 .step_list > ol > li .image_wrap .num {
  color: var(--base_color01);
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list > ol > li .image_wrap .num {
    margin-bottom: 5px;
  }
}
body.apa .sec_apa_top.sec03 .step_list > ol > li .image_wrap .num:after {
  content: "0" counter(cnt);
  font-size: 1.5rem;
  margin-left: 6px;
}
body.apa .sec_apa_top.sec03 .step_list > ol > li .image_wrap .image {
  width: 226px;
  margin-bottom: 16px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list > ol > li .image_wrap .image {
    width: 140px;
    margin: 0;
  }
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list > ol > li .text_wrap {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
body.apa .sec_apa_top.sec03 .step_list > ol > li .text_wrap p {
  line-height: 1.625;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list > ol > li .text_wrap p {
    font-size: 0.875rem;
  }
}
body.apa .sec_apa_top.sec03 .step_list > ol > li .text_wrap .note {
  font-size: 0.875rem;
  color: var(--base_color0004);
  margin-top: 5px;
}
body.apa .sec_apa_top.sec03 .step_list .notice {
  position: relative;
}
body.apa .sec_apa_top.sec03 .step_list .notice:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -811px;
  left: calc(50% - 914px);
  width: 360px;
  height: 315px;
  background: url(../images/apa/bubble03.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list .notice:before {
    width: 150px;
    height: 161px;
    top: -32px;
    left: -100px;
    background-image: url(../images/apa/bubble01.webp);
  }
}
body.apa .sec_apa_top.sec03 .step_list .notice:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -186px;
  right: calc(50% - 917px);
  width: 360px;
  height: 339px;
  background: url(../images/apa/bubble02.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list .notice:after {
    width: 115px;
    height: 108px;
    bottom: -92px;
    right: -100px;
  }
}
body.apa .sec_apa_top.sec03 .step_list .notice .text_wrap {
  background: var(--base_color0502);
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec03 .step_list .notice .text_wrap {
    padding: 30px 20px;
    border-radius: 16px;
  }
}
body.apa .sec_apa_top.sec03 .step_list .notice .text_wrap .text {
  max-width: 828px;
  margin: auto;
}
body.apa .sec_apa_top.sec03 .step_list .notice .text_wrap .text h4 {
  color: var(--base_color0501);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
body.apa .sec_apa_top.sec03 .step_list .notice .text_wrap .text ol {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
body.apa .sec_apa_top.sec03 .step_list .notice .text_wrap .text ol li {
  line-height: 1.57;
  font-size: 0.875rem;
}
body.apa .sec_apa_top.sec04 {
  position: relative;
  padding: 115px 0 100px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 {
    padding: 50px 0;
  }
}
body.apa .sec_apa_top.sec04:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url(../images/apa/top_bg02.webp) no-repeat center top/cover;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04:before {
    background-image: url(../images/apa/top_bg02_sp.webp);
    height: 134px;
  }
}
body.apa .sec_apa_top.sec04:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 115px;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  height: 352px;
  background: linear-gradient(to bottom, #fff 0, #DEEDFF 84%);
  border-radius: 140px 140px 0 0;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04:after {
    top: 50px;
    border-radius: 50px 50px 0 0;
  }
}
body.apa .sec_apa_top.sec04 .bg {
  position: absolute;
  top: 400px;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: url(../images/apa/top_bg03.webp) no-repeat center/max(100%, 1366px), linear-gradient(to bottom, #DEEDFF 80px, #F5FBFF 100%);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .bg {
    background: url(../images/apa/top_bg03_sp.webp) no-repeat center top/max(100%, 1000px), linear-gradient(to bottom, #DEEDFF 80px, #F5FBFF 100%);
  }
}
body.apa .sec_apa_top.sec04 .bubbles {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.apa .sec_apa_top.sec04 .bubbles .bubble01 {
  width: 150px;
  height: 150px;
  background: url(../images/apa/bubble051.webp) no-repeat center/contain;
  position: absolute;
  top: 185px;
  left: calc(50% - 438px);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .bubbles .bubble01 {
    width: 90px;
    height: 90px;
    top: 83px;
    left: 38px;
  }
}
body.apa .sec_apa_top.sec04 .bubbles .bubble02 {
  width: 212px;
  height: 157px;
  background: url(../images/apa/bubble052.webp) no-repeat center/contain;
  position: absolute;
  top: 448px;
  right: calc(50% - 388px);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .bubbles .bubble02 {
    width: 60px;
    height: 45px;
    top: 255px;
    right: calc(50% - 170px);
  }
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_top.sec04 .bubbles .bubble02 {
    top: 285px;
  }
}
body.apa .sec_apa_top.sec04 .bubbles .bubble03 {
  width: 254px;
  height: 187px;
  background: url(../images/apa/bubble053.webp) no-repeat center/contain;
  position: absolute;
  bottom: 142px;
  left: calc(50% - 500px);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .bubbles .bubble03 {
    width: 60px;
    height: 45px;
    bottom: 26px;
    left: calc(50% - 170px);
  }
}
body.apa .sec_apa_top.sec04 .bubbles .bubble04 {
  width: 150px;
  height: 150px;
  background: url(../images/apa/bubble051.webp) no-repeat center/contain;
  position: absolute;
  bottom: -90px;
  right: calc(50% - 458px);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .bubbles .bubble04 {
    width: 90px;
    height: 90px;
    bottom: -70px;
    right: calc(50% - 150px);
  }
}
body.apa .sec_apa_top.sec04 .container {
  position: relative;
  z-index: 10;
}
body.apa .sec_apa_top.sec04 .sec_title {
  padding-top: 80px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .sec_title {
    padding-top: 50px;
  }
}
body.apa .sec_apa_top.sec04 .sec_title_hr {
  margin-bottom: 48px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .sec_title_hr {
    margin-bottom: 30px;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol {
  counter-reset: cnt;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol {
    row-gap: 30px;
    align-items: center;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li {
  counter-increment: cnt;
  position: relative;
  width: 484px;
  height: 484px;
  background: url(../images/apa/bubble04.webp) no-repeat center/contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li {
    width: 360px;
    height: 360px;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li:not(:nth-child(1)) {
  margin-top: -157px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li:not(:nth-child(1)) {
    margin-top: 0;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li:nth-child(even) {
  margin-left: auto;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li:nth-child(even) {
    margin-left: 0;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 133px;
  height: 125px;
  background: url(../images/apa/bubble02.webp) no-repeat center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 3px;
  flex-direction: column;
  color: var(--base_color0501);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li .num {
    width: 80px;
    height: 75px;
    font-size: 0.875rem;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .num:after {
  content: "0" counter(cnt);
  font-weight: 400;
  font-size: 2.5rem;
  font-style: italic;
  margin-left: -8px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li .num:after {
    font-size: 1.5rem;
    margin-left: -4px;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li h3 {
  text-align: center;
  color: var(--base_color01);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li h3 {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li hr {
  max-width: 360px;
  width: 100%;
  height: 1px;
  background: var(--base_color0001);
  margin: 14px 0;
  border: 0;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li hr {
    max-width: 290px;
    margin: 10px 0;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 18px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content {
    row-gap: 12px;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.56;
  max-width: 310px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content p {
    font-size: 0.9375rem;
    max-width: 290px;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content .list {
  line-height: 1.6;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content .list {
    font-size: 0.9375rem;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content .note {
  color: var(--base_color0004);
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content .note * {
  font-size: 0.875rem !important;
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content .image {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content .image {
    max-width: 190px;
  }
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content .image img {
  vertical-align: bottom;
  zoom: 0.5;
}
body.apa .sec_apa_top.sec04 .commitment_list > ol > li .content .link01 {
  margin-top: 10px;
}
body.apa .sec_apa_top.sec05 {
  padding: 100px 0;
  border-radius: 140px 140px 0 0;
  background: linear-gradient(to bottom, #DEEDFF 0, #F5FBFF 100%);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_top.sec05 {
    padding: 50px 0;
    border-radius: 50px 50px 0 0;
  }
}
body.apa .sec_apa_top.sec05 .faq_list h3 {
  background: #fff;
}
body.apa.price-menu .apa_sub_lead a {
  width: fit-content;
  display: block;
  margin: auto;
}
body.apa.price-menu .apa_sub_lead a img {
  zoom: 0.5;
}
body.apa .sec_apa_price.sec01 .note {
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_price.sec01 .note {
    margin-bottom: 30px;
  }
}
body.apa .sec_apa_price.sec01 .note ul {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
body.apa .sec_apa_price.sec01 .tables {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_price.sec01 .tables {
    row-gap: 30px;
  }
}
body.apa .sec_apa_price.sec01 .tables .table h3 {
  font-weight: 500;
  font-size: 1.5rem;
  padding-left: 14px;
  border-left: 4px solid var(--base_color01);
  margin-bottom: 16px;
  line-height: 1.2;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_price.sec01 .tables .table h3 {
    font-size: 1.125rem;
    padding-left: 10px;
  }
}
body.apa .sec_apa_price.sec01 .tables .table table th:nth-child(2), body.apa .sec_apa_price.sec01 .tables .table table td:nth-child(2) {
  width: 240px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_price.sec01 .tables .table table th:nth-child(2), body.apa .sec_apa_price.sec01 .tables .table table td:nth-child(2) {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_price.sec01 .tables .table table th:nth-child(2), body.apa .sec_apa_price.sec01 .tables .table table td:nth-child(2) {
    width: 95px;
  }
}
body.apa .sec_apa_price.sec01 .tables .table table th:nth-child(3), body.apa .sec_apa_price.sec01 .tables .table table td:nth-child(3) {
  width: 280px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_price.sec01 .tables .table table th:nth-child(3), body.apa .sec_apa_price.sec01 .tables .table table td:nth-child(3) {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_price.sec01 .tables .table table th:nth-child(3), body.apa .sec_apa_price.sec01 .tables .table table td:nth-child(3) {
    width: 125px;
  }
}
body.apa.option-menu .apa_sub_lead .container {
  max-width: calc(746px + var(--base_container_pad) * 2);
}
body.apa.option-menu .apa_sub_lead .links {
  --cols: 3;
  --col_gap: 13px;
  --row_gap: 13px;
  margin-bottom: 22px;
}
@media screen and (max-width: 880px) {
  body.apa.option-menu .apa_sub_lead .links {
    --cols: 2;
    --col_gap: 8px;
    --row_gap: 8px;
  }
}
body.apa.option-menu .apa_sub_lead .links > li a {
  display: flex;
  align-items: center;
  padding: 10px 52px 10px 15px;
  width: 100%;
  min-height: 50px;
  background: #fff;
  border-radius: 6px;
  color: var(--base_color0501);
  line-height: 1.4;
}
@media (any-hover: hover) {
  body.apa.option-menu .apa_sub_lead .links > li a:hover:after {
    background-image: url(../images/icon_circle_arrow_bottom.svg);
  }
}
@media screen and (max-width: 880px) {
  body.apa.option-menu .apa_sub_lead .links > li a {
    padding: 5px 30px 5px 8px;
    font-size: 0.8125rem;
    min-height: 36px;
    height: 100%;
    border-radius: 4px;
  }
}
body.apa.option-menu .apa_sub_lead .links > li a:after {
  transition: background 0.3s;
  right: 15px;
  background-image: url(../images/icon_circle_arrow_b_bottom.svg);
}
@media screen and (max-width: 880px) {
  body.apa.option-menu .apa_sub_lead .links > li a:after {
    width: 16px;
    height: 16px;
    right: 10px;
  }
}
body.apa .sec_apa_option .content h2 span .s {
  font-size: 1rem;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content h2 span .s {
    font-size: 0.875rem;
  }
}
body.apa .sec_apa_option .content .p01 {
  color: var(--base_color01);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content .p01 {
    margin-bottom: 20px;
  }
}
body.apa .sec_apa_option .content .image01 {
  max-width: 828px;
  margin: 0 auto 30px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content .image01 {
    margin-bottom: 20px;
  }
}
body.apa .sec_apa_option .content .image01:before {
  content: "";
  display: block;
  padding-top: 33.82%;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content .image01:before {
    padding-top: 58.8%;
  }
}
body.apa .sec_apa_option .content h4 {
  color: var(--base_color05);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.67;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--base_color0001);
  margin-bottom: 16px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content h4 {
    line-height: 1.44;
    margin-bottom: 12px;
  }
}
body.apa .sec_apa_option .content .image_text01 {
  display: flex;
  column-gap: 32px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content .image_text01 {
    flex-direction: column;
    row-gap: 20px;
  }
}
body.apa .sec_apa_option .content .image_text01 .text {
  flex: 1;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content .image_text01 .text {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}
body.apa .sec_apa_option .content .image_text01 .text > *:last-child {
  margin-bottom: 0;
}
body.apa .sec_apa_option .content .image_text01 .text > p {
  margin-bottom: 30px;
}
body.apa .sec_apa_option .content .image_text01 .image {
  flex: 1;
  max-width: 398px;
  margin: auto;
  text-align: center;
}
body.apa .sec_apa_option .content .image_text01 .image.sp {
  display: none !important;
  margin-bottom: 20px;
}
body.apa .sec_apa_option .content .image_text01 .image img {
  zoom: 0.5;
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_option .content .image_text01 .image img {
    max-width: 260px;
    zoom: 1;
  }
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content .image_text01 .image {
    flex: none;
    width: 100%;
  }
  body.apa .sec_apa_option .content .image_text01 .image.pc {
    display: none !important;
  }
  body.apa .sec_apa_option .content .image_text01 .image.sp {
    display: block !important;
  }
}
body.apa .sec_apa_option .content#content02 .p01 {
  margin-bottom: 10px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content#content02 .p01 {
    margin-bottom: 14px;
  }
}
body.apa .sec_apa_option .content#content02 .note {
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content#content02 .note {
    margin-bottom: 20px;
  }
}
body.apa .sec_apa_option .content#content02 .merit {
  padding: 30px;
  border-radius: 20px;
  background: var(--base_color0002);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content#content02 .merit {
    margin-bottom: 20px;
    padding: 20px;
  }
}
body.apa .sec_apa_option .content#content02 .merit h4 {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: var(--base_color05);
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  height: 40px;
  border-radius: 20px;
  margin-bottom: 27px;
}
body.apa .sec_apa_option .content#content02 .merit > ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 26px;
  row-gap: 20px;
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_option .content#content02 .merit > ul {
    flex-direction: column;
    row-gap: 10px;
  }
}
body.apa .sec_apa_option .content#content02 .merit > ul > li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
body.apa .sec_apa_option .content#content02 .merit > ul > li:nth-child(odd) {
  width: calc(53% - 13px);
}
body.apa .sec_apa_option .content#content02 .merit > ul > li:nth-child(even) {
  width: calc(47% - 13px);
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_option .content#content02 .merit > ul > li {
    width: 100% !important;
  }
}
body.apa .sec_apa_option .content#content02 .merit > ul > li .icon img {
  zoom: 0.5;
}
body.apa .sec_apa_option .content#content02 .merit > ul > li p {
  flex: 1;
  margin: 0;
}
body.apa .sec_apa_option .content#content02 .merit hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: var(--base_color0001);
  margin: 20px 0;
}
body.apa .sec_apa_option .content#content02 .merit .dl_list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_option .content#content02 .merit .dl_list {
    row-gap: 13px;
    max-width: 300px;
    margin: 0 auto 20px;
  }
}
body.apa .sec_apa_option .content#content02 .merit .dl_list dl {
  display: flex;
  column-gap: 14px;
  line-height: 1.625;
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_option .content#content02 .merit .dl_list dl {
    flex-direction: column;
    row-gap: 8px;
    text-align: left;
  }
}
body.apa .sec_apa_option .content#content02 .merit .dl_list dl dt {
  width: 180px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--base_color0501);
  background: var(--base_color0001);
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_option .content#content02 .merit .dl_list dl dt {
    width: 100%;
  }
}
body.apa .sec_apa_option .content#content02 .merit .dl_list dl dd {
  flex: 1;
  padding-top: 4px;
}
@media screen and (max-width: 600px) {
  body.apa .sec_apa_option .content#content02 .merit .dl_list dl dd {
    flex: none;
    width: 100%;
  }
}
body.apa .sec_apa_option .content#content02 .image_text01 .image.pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_option .content#content02 .image_text01 .text p {
    margin-bottom: 20px;
  }
}
body.apa .sec_apa_remodeling .content .image_text {
  display: flex;
  column-gap: 33px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .image_text {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}
body.apa .sec_apa_remodeling .content .image_text .text {
  flex: 1;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .image_text .text {
    flex: none;
    width: 100%;
  }
}
body.apa .sec_apa_remodeling .content .image_text .text .list.circle {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .image_text .text .list.circle {
    margin-bottom: 20px;
  }
}
body.apa .sec_apa_remodeling .content .image_text .text .list.circle > li {
  width: 50%;
  font-size: 1.125rem;
  line-height: 1.625;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .image_text .text .list.circle > li {
    font-size: 1rem;
  }
  body.apa .sec_apa_remodeling .content .image_text .text .list.circle > li:nth-child(odd) {
    width: 44%;
  }
  body.apa .sec_apa_remodeling .content .image_text .text .list.circle > li:nth-child(even) {
    width: 56%;
  }
}
@media screen and (max-width: 370px) {
  body.apa .sec_apa_remodeling .content .image_text .text .list.circle > li {
    font-size: 0.875rem;
  }
}
body.apa .sec_apa_remodeling .content .image_text .text .list.circle > li:before {
  font-size: 0.625rem;
  top: 0.7em;
  color: var(--base_color01);
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .image_text .text .list.circle > li:before {
    font-size: 0.5rem;
    top: 0.8em;
  }
}
@media screen and (max-width: 370px) {
  body.apa .sec_apa_remodeling .content .image_text .text .list.circle > li:before {
    top: 0.6em;
  }
}
body.apa .sec_apa_remodeling .content .image_text .text .text01 {
  color: var(--base_color0501);
  background: var(--base_color0502);
  font-size: 1.125rem;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 10px;
}
body.apa .sec_apa_remodeling .content .image_text .text .text02 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  max-width: 400px;
  width: 100%;
  height: 100px;
  margin: auto;
  color: var(--base_color01);
  line-height: 1.625;
  text-align: center;
}
body.apa .sec_apa_remodeling .content .image_text .text .text02:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--base_color0002);
  filter: blur(10px);
}
body.apa .sec_apa_remodeling .content .image_text .image {
  flex: 1;
  max-width: 483px;
  margin: auto;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .image_text .image {
    flex: none;
    width: 100%;
  }
}
body.apa .sec_apa_remodeling .content .link_text {
  display: flex;
  align-items: center;
  column-gap: 33px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .link_text {
    flex-direction: column;
    row-gap: 20px;
  }
}
body.apa .sec_apa_remodeling .content .link_text .link {
  flex: 1;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .link_text .link {
    flex: none;
    width: 100%;
  }
}
body.apa .sec_apa_remodeling .content .link_text .link .price_link {
  background: var(--base_color0501);
  border-color: var(--base_color0501);
}
@media (any-hover: hover) {
  body.apa .sec_apa_remodeling .content .link_text .link .price_link:hover {
    background: #fff;
    color: var(--base_color0501);
  }
  body.apa .sec_apa_remodeling .content .link_text .link .price_link:hover:after {
    background-image: url(../images/icon_circle_arrow_b.svg);
  }
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .link_text .link .price_link {
    margin: auto;
  }
}
body.apa .sec_apa_remodeling .content .link_text .link .price_link:before {
  background-image: url(../images/apa/icon_price.png);
}
body.apa .sec_apa_remodeling .content .link_text .link .price_link:after {
  background-image: url(../images/icon_circle_arrow02_b.svg);
}
body.apa .sec_apa_remodeling .content .link_text .text {
  flex: 1;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .link_text .text {
    flex: none;
    width: 100%;
  }
}
body.apa .sec_apa_remodeling .content .link_text .text .note ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
body.apa .sec_apa_remodeling .content .box {
  border-radius: 20px;
  padding: 30px;
  background: var(--base_color0002);
  text-align: center;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_remodeling .content .box {
    padding: 7px 10px 30px;
  }
}
body.apa .sec_apa_remodeling .content .box img {
  zoom: 0.5;
}
@media screen and (max-width: 880px) {
  body.apa.apa-royal-leather-finish .apa_sub_lead {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 400px) {
  body.apa.apa-royal-leather-finish .apa_sub_lead p.lead {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 370px) {
  body.apa.apa-royal-leather-finish .apa_sub_lead p.lead {
    font-size: 1rem;
  }
}
body.apa.apa-royal-leather-finish .apa_sub_lead .image {
  max-width: 658px;
  margin: auto;
  position: relative;
}
body.apa.apa-royal-leather-finish .apa_sub_lead .image .img {
  border-radius: 20px;
}
body.apa.apa-royal-leather-finish .apa_sub_lead .image .text {
  position: absolute;
  left: -124px;
  bottom: 24px;
}
@media screen and (max-width: 880px) {
  body.apa.apa-royal-leather-finish .apa_sub_lead .image .text {
    width: 120px;
    height: 120px;
    right: 5px;
    bottom: -60px;
    left: auto;
  }
}
body.apa .sec_rlf.sec01 {
  background: #fff;
  padding-bottom: 100px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 {
    padding-bottom: 50px;
  }
}
body.apa .sec_rlf.sec01 .first_visual {
  height: 400px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .first_visual {
    height: 200px;
  }
}
body.apa .sec_rlf.sec01 .first_visual img {
  object-position: center top;
}
body.apa .sec_rlf.sec01 .sec_content {
  position: relative;
  background: #fff;
  max-width: 1200px;
  margin: -136px auto 0;
  border-radius: 140px 140px 0 0;
  padding: 80px 0 0 0;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .sec_content {
    margin-top: -76px;
    padding-top: 50px;
    border-radius: 50px 50px 0 0;
  }
}
body.apa .sec_rlf.sec01 .sec_content:after {
  content: none;
}
body.apa .sec_rlf.sec01 .sec_content .h_title02 {
  background: var(--base_color22);
}
body.apa .sec_rlf.sec01 .sec_content .h_title02:before {
  background: var(--base_color04);
}
body.apa .sec_rlf.sec01 .sec_content .h_title03 {
  color: var(--base_color22);
  background: var(--base_color2202);
}
body.apa .sec_rlf.sec01 .sec_content .h_title03 .en {
  color: var(--base_color2201);
  font-size: 1.375rem;
  margin-left: 20px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .sec_content .h_title03 .en {
    font-size: 1.25rem;
    margin-left: 15px;
  }
}
body.apa .sec_rlf.sec01 .sec_content p {
  margin-bottom: 20px;
}
body.apa .sec_rlf.sec01 .sec_content .image_table {
  display: flex;
  column-gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .sec_content .image_table {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 40px;
  }
}
body.apa .sec_rlf.sec01 .sec_content .image_table .image {
  flex: 1;
  max-width: 484px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .sec_content .image_table .image {
    flex: none;
    width: 100%;
    margin: auto;
  }
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table {
  flex: 1;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .sec_content .image_table .table {
    flex: none;
    width: 100%;
  }
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table table.adj01 th {
  padding: 5px 10px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .sec_content .image_table .table table.adj01 th:first-child {
    width: 73px;
  }
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table table.adj01 td {
  padding: 5px 10px;
}
@media screen and (max-width: 600px) {
  body.apa .sec_rlf.sec01 .sec_content .image_table .table table.adj01 td.num {
    font-size: 1.125rem;
  }
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table table th {
  padding: 8px 18px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .sec_content .image_table .table table th {
    padding: 10px 10px;
  }
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table table td {
  padding: 12px 18px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec01 .sec_content .image_table .table table td {
    padding: 12px 10px;
  }
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table table td.head {
  background: var(--base_color0002);
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table table thead tr th {
  background: var(--base_color2201);
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table table tbody tr:nth-child(odd) {
  background: var(--base_color2203);
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table table tbody tr:nth-child(even) {
  background: var(--base_color2204);
}
body.apa .sec_rlf.sec01 .sec_content .image_table .table .note {
  margin-top: 10px;
}
body.apa .sec_rlf.sec02 {
  background: var(--base_grad01);
  padding-bottom: 300px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 {
    padding-bottom: 145px;
  }
}
body.apa .sec_rlf.sec02:after {
  top: -43px;
  right: calc(50% - 330px);
  left: auto;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02:after {
    top: -19px;
    right: calc(50% - 106px);
  }
}
body.apa .sec_rlf.sec02 hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: var(--base_color0501);
  margin: 40px 0;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 hr {
    margin: 10px 0 25px;
  }
}
body.apa .sec_rlf.sec02 .point_list > ol {
  counter-reset: cnt;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 .point_list > ol {
    row-gap: 30px;
  }
}
body.apa .sec_rlf.sec02 .point_list > ol > li {
  counter-increment: cnt;
}
body.apa .sec_rlf.sec02 .point_list > ol > li .en {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  color: var(--base_color22);
  padding-left: 50px;
  margin-bottom: -6px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 .point_list > ol > li .en {
    padding-left: 24px;
  }
}
body.apa .sec_rlf.sec02 .point_list > ol > li .en:before {
  content: "0" counter(cnt);
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--base_color01);
  margin-right: 13px;
}
body.apa .sec_rlf.sec02 .point_list > ol > li h3 {
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.375rem;
  background: var(--base_color22);
  min-height: 56px;
  padding: 15px 50px;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 .point_list > ol > li h3 {
    border-radius: 16px 16px 0 0;
    padding: 15px 24px;
  }
}
body.apa .sec_rlf.sec02 .point_list > ol > li .detail {
  background: #fff;
  padding: 30px 50px;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 .point_list > ol > li .detail {
    border-radius: 0 0 16px 16px;
    padding: 20px;
  }
}
body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text {
  display: flex;
  column-gap: 40px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text {
    flex-direction: column;
    row-gap: 20px;
  }
}
body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text .images {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
  max-width: 380px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text .images {
    margin: auto;
  }
}
body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text .images .image {
  flex: 1;
}
body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text .text {
  flex: 1;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text .text {
    flex: none;
    width: 100%;
  }
}
body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text .text p {
  line-height: 1.625;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec02 .point_list > ol > li .detail .image_text .text p {
    line-height: var(--base_line_height);
  }
}
body.apa .sec_rlf.sec03 {
  margin-top: -187px;
  padding-bottom: 100px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec03 {
    margin-top: -104px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec03 h2 {
    margin-bottom: 10px;
  }
}
body.apa .sec_rlf.sec03 hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: var(--base_color0501);
  margin: 20px 0 30px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec03 hr {
    margin: 10px 0 25px;
  }
}
body.apa .sec_rlf.sec03 .images {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec03 .images {
    border-radius: 16px;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto 30px;
  }
}
body.apa .sec_rlf.sec03 .images .image {
  flex: 1;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec03 .images .image {
    flex: none;
  }
}
body.apa .sec_rlf.sec03 .images .image img {
  vertical-align: bottom;
}
body.apa .sec_rlf.sec03 .detail {
  max-width: 828px;
  margin: auto;
}
body.apa .sec_rlf.sec03 .detail .name {
  color: var(--base_color01);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec03 .detail .name {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
body.apa .sec_rlf.sec03 .detail .dl_list01 {
  margin-bottom: 20px;
}
body.apa .sec_rlf.sec03 .detail p {
  margin-bottom: 10px;
}
body.apa .sec_rlf.sec03 .detail .map {
  margin-top: 80px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_rlf.sec03 .detail .map {
    margin-top: 30px;
  }
}
body.apa .sec_apa_store {
  margin-top: 116px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_store {
    margin-top: 50px;
  }
}
body.apa .sec_apa_store .content {
  max-width: 828px;
  margin: auto;
}
body.apa .sec_apa_store .main_visual {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
body.apa .sec_apa_store .main_visual:before {
  content: "";
  display: block;
  padding-top: 56.28%;
}
body.apa .sec_apa_store .dl_list01 {
  margin-bottom: 20px;
}
body.apa .sec_apa_store .map {
  margin-top: 80px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_store .map {
    margin-top: 30px;
  }
}
body.apa.news .sub_main_visual:before {
  height: 3000px;
}
body.apa .sec_apa_news {
  padding-bottom: 100px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_news {
    padding-bottom: 50px;
  }
}
body.apa .sec_apa_news.sec_detail {
  margin-top: 116px;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_news.sec_detail {
    margin-top: 30px;
  }
}
body.apa .sec_apa_news.sec_detail .content {
  max-width: 100%;
}
body.apa .sec_apa_news.sec_detail .content .base_content {
  max-width: 828px;
  margin: auto;
}
body.apa .sec_apa_news.sec_detail .content .image {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}
@media screen and (max-width: 880px) {
  body.apa .sec_apa_news.sec_detail .content .image {
    max-width: 300px;
    margin-bottom: 20px;
  }
}

/*--------------------------
アピアケア
----------------------------*/
body.care.top {
  padding-top: 0;
}
body.care .care_top_main_visual {
  background: url(../images/care/top_main_visual_bg01.webp) no-repeat calc(50% + 540px - 204px) -250px/1080px 1114px, url(../images/care/top_main_visual_bg02.webp) no-repeat center top/cover;
}
@media screen and (max-width: 880px) {
  body.care .care_top_main_visual {
    background-image: url(../images/care/top_main_visual_bg01_sp.webp), url(../images/care/top_main_visual_bg02_sp.webp);
  }
}
body.care .care_top_main_visual .container .image {
  max-width: 360px;
  margin-bottom: 32px;
}
@media screen and (max-width: 880px) {
  body.care .care_top_main_visual .container .image {
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 600px) {
  body.care .care_top_main_visual .container .image {
    max-width: 278px;
  }
}
body.care .care_top_main_visual .container .text {
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  body.care .care_top_main_visual .container .text {
    max-width: 600px;
    margin: 0 auto 38px;
  }
}
body.care .care_top_main_visual .container .text p span {
  display: inline-block;
  background: var(--base_color0301);
  color: var(--base_color31);
  padding: 3px 5px 5px;
  line-height: 1;
}
body.care .care_top_main_visual .container .links .btn01 {
  background: var(--base_color31);
  border-color: var(--base_color31);
}
@media (any-hover: hover) {
  body.care .care_top_main_visual .container .links .btn01:hover {
    color: var(--base_color31);
    background-color: #fff;
  }
  body.care .care_top_main_visual .container .links .btn01:hover:after {
    background-image: url(../images/icon_circle_arrow_p.svg);
  }
}
body.care .care_top_main_visual .container .links .btn01:after {
  background-image: url(../images/icon_circle_arrow02_p.svg);
}
body.care .sec_care_top .h_title05 {
  --color: var(--base_color31);
  --border_color: var(--base_color02);
}
body.care .sec_care_top.sec01 {
  padding-top: 50px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec01 {
    padding-top: 30px;
  }
}
body.care .sec_care_top.sec01 .container_w {
  background: url(../images/care/top_bg01.webp) no-repeat center/1100px;
  margin-bottom: 68px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec01 .container_w {
    background-image: url(../images/care/top_bg01_sp.webp);
    background-position: center top;
    background-size: 420px;
    margin-bottom: 40px;
  }
}
body.care .sec_care_top.sec01 a {
  max-width: 720px;
  margin: auto;
  display: block;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec01 a {
    max-width: 340px;
  }
}
body.care .sec_care_top.sec02 .problem_content {
  --grad: var(--base_grad31);
  --border_color: var(--base_color3101);
  margin-bottom: 32px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .problem_content {
    margin-bottom: 16px;
  }
}
body.care .sec_care_top.sec02 .problem_content h2 {
  --color01: var(--base_color31);
  --color02: var(--base_color02);
}
body.care .sec_care_top.sec02 .problem_content .problems .problem {
  padding-top: 88px;
  position: relative;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .problem_content .problems .problem {
    padding-top: 68px;
  }
}
body.care .sec_care_top.sec02 .problem_content .problems .problem h3 {
  background: url(../images/care/top_probrem_balloon.svg) no-repeat center/contain;
  width: 230px;
  height: 126px;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--base_color0301);
  position: absolute;
  top: -52px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .problem_content .problems .problem h3 {
    width: 200px;
    height: 110px;
    font-size: 1.5rem;
  }
}
body.care .sec_care_top.sec02 .problem_content .problems .problem h3 > span {
  width: fit-content;
  height: 90px;
  display: flex;
  row-gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .problem_content .problems .problem h3 > span {
    height: 82px;
  }
}
body.care .sec_care_top.sec02 .problem_content .problems .problem h3 > span span {
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .problem_content .problems .problem h3 > span span {
    font-size: 1rem;
  }
}
body.care .sec_care_top.sec02 .problem_content .problems .problem .image_text .text p span {
  display: block;
  font-weight: 700;
  color: var(--base_color31);
}
body.care .sec_care_top.sec02 .solution_content {
  margin-top: -50px;
  padding-top: 50px;
  background: url(../images/care/top_bg02.webp) no-repeat center top/1461px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content {
    margin: 0;
    padding: 0;
    background-image: url(../images/care/top_bg02_sp.webp);
    background-position: center 40px;
    background-size: 420px;
  }
}
body.care .sec_care_top.sec02 .solution_content h2 {
  display: flex;
  align-items: center;
  column-gap: 26px;
  font-weight: 700;
  font-size: 1.625rem;
  width: fit-content;
  margin: 0 auto 63px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content h2 {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    row-gap: 20px;
    font-size: 1.25rem;
    margin-bottom: 42px;
  }
}
body.care .sec_care_top.sec02 .solution_content h2 img {
  zoom: 0.5;
}
body.care .sec_care_top.sec02 .solution_content h2 > span {
  display: block;
}
body.care .sec_care_top.sec02 .solution_content h2 > span .s01 {
  display: block;
  margin-bottom: 10px;
}
body.care .sec_care_top.sec02 .solution_content h2 > span .s02 {
  display: block;
}
body.care .sec_care_top.sec02 .solution_content h2 > span .s02 span {
  font-size: 3.125rem;
  color: var(--base_color31);
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--base_color02);
  text-decoration-thickness: 6px;
  text-underline-offset: 20px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content h2 > span .s02 span {
    font-size: 2rem;
    text-decoration-thickness: 4px;
    text-underline-offset: 12px;
  }
}
@media screen and (max-width: 370px) {
  body.care .sec_care_top.sec02 .solution_content h2 > span .s02 span {
    font-size: 1.75rem;
  }
}
body.care .sec_care_top.sec02 .solution_content .types {
  position: relative;
  z-index: 5;
  margin-bottom: 70px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .types {
    margin-bottom: 25px;
  }
}
body.care .sec_care_top.sec02 .solution_content .types ul {
  display: flex;
  justify-content: center;
  column-gap: 32px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .types ul {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }
}
body.care .sec_care_top.sec02 .solution_content .types ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--base_color32);
  border: 6px solid #fff;
  position: relative;
  padding-top: 45px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .types ul li {
    width: 240px;
    height: 240px;
    padding-top: 28px;
  }
}
body.care .sec_care_top.sec02 .solution_content .types ul li h3 {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  width: 200px;
  height: 72px;
  text-align: center;
  padding-top: 16px;
  background: url(../images/care/balloon01.png) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .types ul li h3 {
    top: -10px;
    width: 150px;
    height: 54px;
    padding-top: 10px;
    font-size: 1.25rem;
    background-image: url(../images/care/balloon01_sp.png);
  }
}
body.care .sec_care_top.sec02 .solution_content .types ul li .image {
  margin-bottom: 20px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .types ul li .image {
    margin-bottom: 15px;
  }
}
body.care .sec_care_top.sec02 .solution_content .types ul li .image img {
  zoom: 0.5;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .types ul li .image img {
    zoom: 0.375;
  }
}
body.care .sec_care_top.sec02 .solution_content .types ul li p {
  text-align: center;
  line-height: 1.67;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .types ul li p {
    font-size: 1rem;
    line-height: 1.375;
  }
}
body.care .sec_care_top.sec02 .solution_content .types ul li p span {
  display: inline-block;
  color: var(--base_color31);
  font-size: 1.375rem;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .types ul li p span {
    font-size: 1.25rem;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail {
  --grad: var(--base_grad31);
  --border_color: var(--base_color3101);
  padding-bottom: 80px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail {
    padding-bottom: 50px;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail:before {
  --top: -183px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail:before {
    --top: -383px;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .text01 {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .text01 {
    flex-direction: column;
    row-gap: 25px;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .text01 p {
  flex: 1;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .text01 p {
    flex: none;
    width: fit-content;
    font-size: 1.125rem;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .text01 p span {
  font-size: 2rem;
  color: var(--base_color31);
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .text01 p span {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 370px) {
  body.care .sec_care_top.sec02 .solution_content .detail .text01 p span {
    font-size: 1.5rem;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .text01 .btn01 {
  width: 240px;
  border-color: var(--base_color31);
  color: var(--base_color31);
  background: #fff;
}
body.care .sec_care_top.sec02 .solution_content .detail .text01 .btn01:after {
  background-image: url(../images/icon_circle_arrow_p.svg);
}
@media (any-hover: hover) {
  body.care .sec_care_top.sec02 .solution_content .detail .text01 .btn01:hover {
    color: #fff;
    background: var(--base_color31);
  }
  body.care .sec_care_top.sec02 .solution_content .detail .text01 .btn01:hover:after {
    background-image: url(../images/icon_circle_arrow02_p.svg);
  }
}
body.care .sec_care_top.sec02 .solution_content .detail hr {
  border: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  margin: 20px 0 40px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail hr {
    margin: 25px 0;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list {
  margin-bottom: 105px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .flow_list {
    margin-bottom: 40px;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul {
  --cols: 3;
  --col_gap: 32px;
  --row_gap: 32px;
}
@media screen and (max-width: 1050px) {
  body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul {
    --cols: 2;
    max-width: 656px;
    margin: auto;
  }
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul {
    --cols: 1;
    --row_gap: 36px ;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li {
  position: relative;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li:nth-child(3):after {
  content: none;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li:nth-last-child(2):after, body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li:nth-last-child(1):after {
  content: none !important;
}
@media screen and (max-width: 1050px) {
  body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li:nth-child(3):after {
    content: "";
  }
  body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li:nth-child(even):after {
    content: none;
  }
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li:nth-child(even):after {
    content: "";
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li:after {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  transform: translateX(50%);
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 24px;
  background: var(--base_color02);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li:after {
    top: auto;
    right: 0;
    bottom: -19px;
    left: 0;
    transform: translateY(50%);
    width: 24px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li .title_image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
  display: flex;
  flex-direction: column;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li .title_image .title {
  flex: 1;
  background: var(--base_color31);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  line-height: 1.625;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li .title_image .title span {
  color: var(--base_color0301);
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li .title_image .image {
  min-height: 167px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px 16px;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li .title_image .image img {
  zoom: 0.5;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li .title_image .image p {
  font-size: 0.875rem;
  line-height: 1.57;
  color: var(--base_color31);
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li .title_image .image.image01 {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li .title_image .image.image02 {
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  padding-right: 10px;
  padding-left: 10px;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li.balloon {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li.balloon div {
  background: url(../images/care/balloon02.png) no-repeat center/contain;
  width: 312px;
  height: 222px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.care .sec_care_top.sec02 .solution_content .detail .flow_list > ul > li.balloon div p {
  line-height: 1.625;
  width: 200px;
}
body.care .sec_care_top.sec02 .solution_content .detail .service_point_list {
  padding: 65px 60px 40px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .service_point_list {
    border: 10px;
    padding: 45px 30px 30px;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .service_point_list:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  border-radius: 10px;
  border: 1px solid var(--base_color02);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
body.care .sec_care_top.sec02 .solution_content .detail .service_point_list h3 {
  --clip_width: 10px;
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  margin: auto;
  background: var(--base_color02);
  font-weight: 700;
  font-size: 1.25rem;
  width: 260px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base_color0301);
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--clip_width)) 50%, 100% 100%, 0 100%, var(--clip_width) 50%);
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .service_point_list h3 {
    --clip_width: 8px;
    top: -11px;
    width: 208px;
    height: 40px;
    font-size: 1.125rem;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .service_point_list > ol {
  counter-reset: cnt;
}
body.care .sec_care_top.sec02 .solution_content .detail .service_point_list > ol > li {
  counter-increment: cnt;
  line-height: 1.625;
  display: flex;
  align-items: center;
  padding-left: 50px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec02 .solution_content .detail .service_point_list > ol > li {
    font-size: 0.9375rem;
    min-height: 3.2em;
  }
}
body.care .sec_care_top.sec02 .solution_content .detail .service_point_list > ol > li:before {
  content: "0" counter(cnt);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--base_color31);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  box-sizing: border-box;
  padding: 1px 2px 0 0;
}
body.care .sec_care_top.sec03 {
  padding: 30px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 {
    padding: 18px;
  }
}
body.care .sec_care_top.sec03 .box {
  border-radius: 40px;
  padding: 60px 0;
  background: var(--base_color32);
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box {
    border-radius: 30px;
    padding: 20px 0;
  }
}
body.care .sec_care_top.sec03 .box .title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 55px;
  position: relative;
}
body.care .sec_care_top.sec03 .box .title h2:before {
  content: "";
  width: 130px;
  height: 88px;
  background: url(../images/care/top_title_image01.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box .title h2:before {
    position: absolute;
    top: 0;
    left: calc(50% - 167px);
    width: 68px;
    height: 50px;
  }
}
@media screen and (max-width: 370px) {
  body.care .sec_care_top.sec03 .box .title h2:before {
    zoom: 0.9;
  }
}
body.care .sec_care_top.sec03 .box .title h2:after {
  content: "";
  width: 114px;
  height: 91px;
  background: url(../images/care/top_title_image02.webp) no-repeat center/contain;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box .title h2:after {
    position: absolute;
    top: 0;
    right: calc(50% - 167px);
    width: 60px;
    height: 48px;
  }
}
@media screen and (max-width: 370px) {
  body.care .sec_care_top.sec03 .box .title h2:after {
    zoom: 0.9;
  }
}
body.care .sec_care_top.sec03 .box .title h2 > span {
  display: block;
}
body.care .sec_care_top.sec03 .box .title h2 > span .s01 {
  display: flex;
  align-items: flex-end;
  width: fit-content;
  border-bottom: 6px solid var(--base_color02);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box .title h2 > span .s01 {
    flex-direction: column;
    align-items: center;
    border-width: 4px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
body.care .sec_care_top.sec03 .box .title h2 > span .s01 .unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid var(--base_color0001);
  background: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 14px 14px 0;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box .title h2 > span .s01 .unit {
    width: 189px;
    height: 36px;
    font-size: 0.9375rem;
    margin-right: 0;
  }
}
body.care .sec_care_top.sec03 .box .title h2 > span .s01 .price {
  font-weight: 700;
  font-size: 5.5rem;
  color: var(--base_color31);
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box .title h2 > span .s01 .price {
    font-size: 5rem;
  }
}
body.care .sec_care_top.sec03 .box .title h2 > span .s01 .price:before {
  content: "税込";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--base_color31);
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  top: -13px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box .title h2 > span .s01 .price:before {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}
body.care .sec_care_top.sec03 .box .title h2 > span .s01 .price:after {
  content: "円";
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  top: -17px;
}
body.care .sec_care_top.sec03 .box .title h2 > span .s02 {
  display: block;
  text-align: center;
  font-size: 1.875rem;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box .title h2 > span .s02 {
    font-size: 1.25rem;
  }
}
body.care .sec_care_top.sec03 .box .title .note {
  width: fit-content;
  margin: 20px auto 0;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box .title .note {
    margin-top: 10px;
  }
}
body.care .sec_care_top.sec03 .box hr {
  width: 100%;
  height: 4px;
  background: #fff;
  border: 0;
  margin: 30px 0;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec03 .box hr {
    margin: 20px 0;
  }
}
body.care .sec_care_top.sec03 .box .notice h3 {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 12px;
}
body.care .sec_care_top.sec03 .box .notice .list.circle {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
body.care .sec_care_top.sec03 .box .notice .list.circle > li {
  font-size: 0.875rem;
  line-height: 1.57;
  color: var(--base_color0004);
}
body.care .sec_care_top.sec03 .box .notice .list.circle > li:before {
  top: 2px;
  color: var(--base_color31);
  font-size: 0.625rem;
}
body.care .sec_care_top.sec04 {
  padding: 60px 0 100px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec04 {
    padding: 40px 0 50px;
  }
}
body.care .sec_care_top.sec04 h2 {
  margin-bottom: 76px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec04 h2 {
    margin-bottom: 66px;
  }
}
body.care .sec_care_top.sec04 .voice_list > ul {
  display: flex;
  column-gap: 32px;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec04 .voice_list > ul {
    flex-direction: column;
    row-gap: 56px;
    max-width: 600px;
    margin: auto;
  }
}
body.care .sec_care_top.sec04 .voice_list > ul > li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: var(--base_color32);
  padding: 0 26px 26px;
}
body.care .sec_care_top.sec04 .voice_list > ul > li .image {
  margin: -32px 0 16px;
  max-width: 180px;
}
body.care .sec_care_top.sec04 .voice_list > ul > li .user {
  font-size: 0.875rem;
}
body.care .sec_care_top.sec04 .voice_list > ul > li hr {
  border: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 22px 0;
}
body.care .sec_care_top.sec04 .voice_list > ul > li h3 {
  color: var(--base_color31);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.22;
  margin-bottom: 26px;
  width: 100%;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec04 .voice_list > ul > li h3 {
    margin-bottom: 16px;
  }
}
body.care .sec_care_top.sec05 {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec05 {
    padding: 50px 0 30px;
  }
}
body.care .sec_care_top.sec05:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 140px;
  background: url(../images/care/bg_line.png) repeat, var(--base_grad31);
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec05:before {
    border-radius: 50px;
  }
}
body.care .sec_care_top.sec05 .num_flow_list > ol > li:after {
  --line_color: var(--base_color31);
}
body.care .sec_care_top.sec05 .num_flow_list > ol > li h3 {
  --title_color: var(--base_color31);
  --title_bg_color: var(--base_color32);
}
body.care .sec_care_top.sec05 .num_flow_list > ol > li h3:before {
  --num_bg_color: var(--base_color02);
}
body.care .sec_care_top.sec06 {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 880px) {
  body.care .sec_care_top.sec06 {
    padding: 50px 0 64px;
  }
}
body.care .sec_care_top.sec06 .faq_list > ul > li h3 {
  color: var(--base_color31);
  background: var(--base_color32);
}
body.care .sec_care_top.sec06 .faq_list > ul > li h3:before {
  background: var(--base_color02);
}
body.care .sec_care_top.sec06 .faq_list > ul > li > div:before {
  border-color: var(--base_color31);
  color: var(--base_color31);
}
@media screen and (max-width: 880px) {
  body.care .care_top_image {
    margin-top: -4px;
  }
}
body.care .care_top_image img {
  width: 100%;
  vertical-align: bottom;
}
body.care .care_top_links {
  --grad: linear-gradient(to bottom, #FF58AA 0, #FC3D8D 100%);
  --title_dec_left: url(../images/care/care_top_dec_title_left.svg);
  --title_dec_right: url(../images/care/care_top_dec_title_right.svg);
}
body.care .care_top_links a {
  background: var(--base_color02);
  border-color: var(--base_color02);
}
@media (any-hover: hover) {
  body.care .care_top_links a:hover {
    background: #fff;
    color: var(--base_color02);
  }
  body.care .care_top_links a:hover:after {
    background-image: url(../images/icon_circle_arrow02_green.svg);
  }
}
body.care .care_top_links a:after {
  background-image: url(../images/icon_circle_arrow_green.svg);
}
body.care .sec_care_contact.sec01 .care_top_links {
  background: none;
  padding-top: 0;
}
body.care .sec_care_contact.sec01 .pay {
  display: flex;
  column-gap: 20px;
}

/*--------------------------
ユニフォームクリーニング
----------------------------*/
body.uniform.top {
  padding-top: 0;
}
body.uniform .uniform_top_main_visual {
  background: url(../images/uniform/top_main_visual_bg01.webp) no-repeat calc(50% + 540px - 204px) -250px/1080px 1114px, url(../images/care/top_main_visual_bg02.webp) no-repeat center top/cover;
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_main_visual {
    background-image: url(../images/uniform/top_main_visual_bg01_sp.webp), url(../images/care/top_main_visual_bg02_sp.webp);
  }
}
body.uniform .uniform_top_main_visual .container .image {
  max-width: 360px;
  margin-bottom: 32px;
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_main_visual .container .image {
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 600px) {
  body.uniform .uniform_top_main_visual .container .image {
    max-width: 288px;
  }
}
body.uniform .uniform_top_main_visual .container .text {
  margin-bottom: 30px;
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_main_visual .container .text {
    max-width: 600px;
    margin: 0 auto 38px;
  }
}
body.uniform .uniform_top_main_visual .container .text p {
  max-width: 585px;
}
body.uniform .uniform_top_main_visual .container .text p span {
  display: inline-block;
  background: var(--base_color0301);
  color: var(--base_color31);
  padding: 3px 5px 5px;
  line-height: 1;
}
body.uniform .uniform_top_main_visual .container .links .btn01 {
  max-width: 280px;
  background: var(--base_color41);
  border-color: var(--base_color41);
}
@media (any-hover: hover) {
  body.uniform .uniform_top_main_visual .container .links .btn01:hover {
    color: var(--base_color41);
    background-color: #fff;
  }
  body.uniform .uniform_top_main_visual .container .links .btn01:hover:after {
    background-image: url(../images/icon_circle_arrow_uni.svg);
  }
}
body.uniform .uniform_top_main_visual .container .links .btn01:after {
  background-image: url(../images/icon_circle_arrow02_uni.svg);
}
body.uniform .sec_uniform_top .h_title05 {
  --color: var(--base_color41);
  --border_color: var(--base_color01);
}
body.uniform .sec_uniform_top.sec01 {
  padding-top: 70px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 {
    padding-top: 20px;
  }
}
body.uniform .sec_uniform_top.sec01 .problem_content {
  --grad: var(--base_grad41);
  --border_color: var(--base_color4101);
  margin-bottom: 32px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .problem_content {
    margin-bottom: 16px;
  }
}
body.uniform .sec_uniform_top.sec01 .problem_content h2 {
  --color01: var(--base_color41);
  --color02: var(--base_color01);
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .problem_content h2 {
    margin-bottom: 30px;
  }
}
body.uniform .sec_uniform_top.sec01 .problem_content .problem ul li .image_text {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .problem_content .problem ul li .image_text {
    column-gap: 10px;
  }
}
body.uniform .sec_uniform_top.sec01 .problem_content .problem ul li .image_text .image {
  flex: 1;
  max-width: 180px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .problem_content .problem ul li .image_text .image {
    max-width: 140px;
  }
}
body.uniform .sec_uniform_top.sec01 .problem_content .problem ul li .image_text .text {
  flex: 1;
}
body.uniform .sec_uniform_top.sec01 .problem_content .problem ul li .image_text .text p {
  line-height: 1.625;
}
body.uniform .sec_uniform_top.sec01 .solution_content {
  background: url(../images/uniform/top_bg01.webp) no-repeat 50% calc(50% - 100px)/1461px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content {
    background-image: url(../images/uniform/top_bg01_sp.webp);
    background-position: center 40px;
    background-size: 420px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .p01 {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
  width: fit-content;
  margin: 0 auto 30px;
  color: var(--base_color41);
  line-height: 3;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .p01 {
    font-size: 1.25rem;
    line-height: 2.3;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .p01 img {
  max-width: 158px;
  vertical-align: bottom;
  display: inline-block;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .p01 img {
    max-width: 118px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .p01 > span {
  padding-bottom: 7px;
  position: relative;
  display: inline-block;
  line-height: 1.6;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .p01 > span {
    padding-bottom: 4px;
  }
  body.uniform .sec_uniform_top.sec01 .solution_content .p01 > span:nth-of-type(2) {
    padding-bottom: 0;
    margin-top: 5px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .p01 > span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--base_color01);
}
body.uniform .sec_uniform_top.sec01 .solution_content .p01 > span .num {
  font-size: 3.5rem;
  line-height: 1;
}
body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol {
  counter-reset: cnt;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 687px;
  margin: 0 auto 28px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol {
    flex-direction: column;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li {
  counter-increment: cnt;
  padding-left: 47px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li {
    padding: 31px 0 0;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .num {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--base_color41);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 10px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .num {
    width: 64px;
    height: 64px;
    right: 0;
    bottom: auto;
    font-size: 0.9375rem;
    row-gap: 5px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .num:before {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  background: var(--base_color41);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .num:before {
    width: 9px;
    height: 9px;
    top: auto;
    right: 0;
    bottom: -8px;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .num:after {
  content: "0" counter(cnt);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  font-style: italic;
  color: var(--base_color0301);
  margin-right: 3px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .num:after {
    font-size: 1.5rem;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .text {
  background: var(--base_color4102);
  min-height: 130px;
  border-radius: 10px;
  padding: 25px 20px 25px 75px;
  line-height: 2.5;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .text {
    padding: 40px 20px 20px;
    font-size: 0.9375rem;
    line-height: 2.13;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .text span {
  line-height: 1;
  color: var(--base_color41);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .strength_list > ol li .text span {
    font-size: 1.125rem;
    text-underline-offset: 3px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .p02 {
  width: fit-content;
  margin: 0 auto 40px;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--base_color41);
  display: flex;
  align-items: center;
  column-gap: 16px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .p02 {
    font-size: 1.5rem;
    line-height: 1.33;
    column-gap: 0;
    text-align: center;
    align-items: flex-end;
    margin-bottom: 20px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .p02:before, body.uniform .sec_uniform_top.sec01 .solution_content .p02:after {
  content: "";
  width: 19px;
  height: 40px;
  background: no-repeat;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .p02:before, body.uniform .sec_uniform_top.sec01 .solution_content .p02:after {
    width: 14px;
    height: 30px;
    margin-bottom: 2px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .p02:before {
  background-position: left top;
  background-image: url(../images/uniform/solution_dec_left.svg);
}
body.uniform .sec_uniform_top.sec01 .solution_content .p02:after {
  background-position: right top;
  background-image: url(../images/uniform/solution_dec_right.svg);
}
body.uniform .sec_uniform_top.sec01 .solution_content .p02 span span {
  color: var(--base_color01);
}
body.uniform .sec_uniform_top.sec01 .solution_content .image01 {
  max-width: 740px;
  margin: 0 auto 54px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .image01 {
    max-width: 500px;
    margin-bottom: 30px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail {
  --grad: var(--base_grad41);
  padding-bottom: 80px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail {
    padding-bottom: 50px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail:before {
  --top: -102px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail:before {
    --top: -76px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list {
  margin-bottom: 24px;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol {
  --cols: 3;
  --col_gap: 32px;
  --row_gap: 32px;
  counter-reset: cnt;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol {
    --cols: 1;
    --row_gap:20px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li {
  border: 4px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  counter-increment: cnt;
  display: flex;
  flex-direction: column;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li.full {
  width: 100%;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li.full .content {
  padding-top: 30px;
  padding-bottom: 50px;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li.full .content > * {
  max-width: 870px;
  margin: auto;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li h3 {
  height: 52px;
  display: flex;
  align-items: center;
  background: var(--base_color41);
  color: var(--base_color0301);
  font-weight: 700;
  font-size: 1.25rem;
  padding-left: 100px;
  position: relative;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li h3 .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 95px;
  height: 100%;
  background: var(--base_color0501);
  padding-left: 10px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li h3 .num:after {
  content: "0" counter(cnt);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  font-style: italic;
  margin-left: 5px;
  position: relative;
  top: 1px;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content {
  flex: 1;
  background: #fff;
  padding: 15px 22px;
  position: relative;
}
@media screen and (max-width: 370px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content {
    padding-right: 16px;
    padding-left: 16px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list {
  position: relative;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul {
    row-gap: 41px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul:after {
  content: none;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li {
  width: 100%;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li:last-child:after {
  content: none;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li:after {
  content: "";
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li:after {
    bottom: -21px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text {
  display: flex;
  column-gap: 22px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text {
    flex-direction: column;
    row-gap: 10px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text .title {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--base_color41);
  background: var(--base_color4102);
  border-radius: 10px;
  font-size: 1rem;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text .title {
    width: 100%;
    min-height: 36px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text .text .list.circle {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text .text .list.circle {
    row-gap: 5px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text .text .list.circle > li {
  line-height: 1.625;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text .text .list.circle > li {
    font-size: 0.9375rem;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text .text .list.circle > li:before {
  font-size: 0.5rem;
  color: var(--base_color41);
  top: 7px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .line_dev_list > ul > li .title_text .text .list.circle > li:before {
    top: 5px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .images {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  position: absolute;
  top: 90px;
  right: 7px;
}
@media screen and (max-width: 1050px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .images {
    right: 0;
  }
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .images {
    position: static;
    justify-content: center;
    flex-direction: row;
    column-gap: 18px;
    margin-top: 30px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .images .image {
  max-width: 150px;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box {
  padding: 30px 25px;
  background: var(--base_color4102);
  border-radius: 10px;
  margin-bottom: 40px;
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box {
    padding: 16px;
    flex-direction: column;
    row-gap: 10px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box .text_wrap {
  flex: 1;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box .text_wrap {
    flex: none;
    width: 100%;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box .text_wrap .title {
  line-height: 1.3;
  column-gap: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
  color: var(--base_color41);
  margin-bottom: 14px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box .text_wrap .title {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box .text_wrap .title h4 {
  font-size: 1rem;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box .text_wrap .title .image {
  display: inline-flex;
  column-gap: 5px;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box .text_wrap .title .image img {
  width: 55px;
}
body.uniform .sec_uniform_top.sec01 .solution_content .detail .char_list > ol > li .content .box .image_wrap .image {
  width: 107px;
  margin: auto;
}
body.uniform .sec_uniform_top.sec02 {
  position: relative;
  z-index: 0;
  padding: 70px 0;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02 {
    padding: 50px 0;
  }
}
body.uniform .sec_uniform_top.sec02:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 140px 140px 0 0;
  background: var(--base_grad42);
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02:before {
    border-radius: 50px 50px 0 0;
  }
}
body.uniform .sec_uniform_top.sec02 h2 {
  --color: #fff;
}
body.uniform .sec_uniform_top.sec02 .box {
  background: #2977EC;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 36px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02 .box {
    padding: 25px;
  }
}
@media screen and (max-width: 370px) {
  body.uniform .sec_uniform_top.sec02 .box {
    padding: 20px;
  }
}
body.uniform .sec_uniform_top.sec02 .box .content {
  max-width: 812px;
  margin: auto;
}
body.uniform .sec_uniform_top.sec02 .box .content > ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text {
    flex-direction: column;
    row-gap: 10px;
  }
}
body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text .title {
  width: 240px;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text .title {
    width: 100%;
  }
}
body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text .title h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--base_color41);
  width: 100%;
  min-height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text .text {
  flex: 1;
  color: #fff;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text .text {
    width: 100%;
    flex: none;
  }
}
body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text .text p {
  font-size: 1.125rem;
  line-height: 1.67;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02 .box .content > ul > li .title_text .text p {
    font-size: 1rem;
  }
}
body.uniform .sec_uniform_top.sec02 .box .content hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 20px 0;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02 .box .content hr {
    margin: 16px 0;
  }
}
body.uniform .sec_uniform_top.sec02 .box .content .p01 {
  text-align: center;
  color: var(--base_color0301);
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec02 .box .content .p01 {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 370px) {
  body.uniform .sec_uniform_top.sec02 .box .content .p01 {
    font-size: 1rem;
  }
}
body.uniform .sec_uniform_top.sec03 {
  position: relative;
  z-index: 0;
  padding: 100px 0;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec03 {
    padding: 50px 0 30px;
  }
}
body.uniform .sec_uniform_top.sec03:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 0 0 140px 140px;
  background: url(../images/care/bg_line.png) repeat, var(--base_grad41);
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec03:before {
    border-radius: 0 0 50px 50px;
  }
}
body.uniform .sec_uniform_top.sec03 .num_flow_list > ol > li:after {
  --line_color: var(--base_color41);
}
body.uniform .sec_uniform_top.sec03 .num_flow_list > ol > li h3 {
  --title_color: var(--base_color41);
  --title_bg_color: var(--base_color4102);
}
body.uniform .sec_uniform_top.sec03 .num_flow_list > ol > li h3:before {
  --num_bg_color: var(--base_color01);
}
body.uniform .sec_uniform_top.sec04 {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 880px) {
  body.uniform .sec_uniform_top.sec04 {
    padding: 50px 0 64px;
  }
}
body.uniform .sec_uniform_top.sec04 .faq_list > ul > li h3 {
  color: var(--base_color41);
  background: var(--base_color4102);
}
body.uniform .sec_uniform_top.sec04 .faq_list > ul > li h3:before {
  background: var(--base_color01);
}
body.uniform .sec_uniform_top.sec04 .faq_list > ul > li > div:before {
  border-color: var(--base_color41);
  color: var(--base_color41);
}
body.uniform .uniform_top_slide {
  padding: 50px 0;
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_slide {
    padding: 30px 0;
  }
}
body.uniform .uniform_top_slide .splide .splide__slide .fit_img_wrap {
  width: 360px;
  margin-right: 20px;
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_slide .splide .splide__slide .fit_img_wrap {
    width: 300px;
    margin-right: 10px;
  }
}
body.uniform .uniform_top_slide .splide .splide__slide .fit_img_wrap:before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
body.uniform .uniform_top_links {
  --title_dec_left: url(../images/uniform/links_dec_title_left.svg);
  --title_dec_right: url(../images/uniform/links_dec_title_right.svg);
}
body.uniform .uniform_top_links.add_image {
  --grad: var(--base_grad42);
}
body.uniform .uniform_top_links.add_image:before {
  width: 107px;
  height: 117px;
  background-image: url(../images/uniform/top_links_title_image01.webp);
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_links.add_image:before {
    width: 44px;
    height: 48px;
  }
}
body.uniform .uniform_top_links.add_image:after {
  top: -42px;
  width: 148px;
  height: 124px;
  background-image: url(../images/uniform/top_links_title_image02.webp);
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_links.add_image:after {
    top: -24px;
    width: 60px;
    height: 50px;
  }
}
body.uniform .uniform_top_links .p01 {
  text-decoration-color: var(--base_color01);
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_links .links .link {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_links .links .link .dec_title {
    line-height: 1.4;
    align-items: center;
  }
  body.uniform .uniform_top_links .links .link .dec_title:before, body.uniform .uniform_top_links .links .link .dec_title:after {
    transform: scale(1.5);
  }
}
@media screen and (max-width: 880px) {
  body.uniform .uniform_top_links .links .link a {
    max-width: 290px;
  }
}