@charset "UTF-8";
:root {
  --black: 71,71,71;
  --main: 46,82,153;
  --sub: 71,181,237;
  --yellow: 255,221,89;
  --orange: 230,120,11;
  --red: 218,88,6;
  --gray: 115,118,121;
  --hover: 27,54,122;
  --deco01: 252,236,220;
  --deco02: 255,247,213;
  --bg01: 232,239,255;
  --bg02: 210,239,250;
  --bg03: 233,246,252;
  --border: 199,200,201;
  --line: 6,199,85;
  --line_hover: 3,171,48;
  --white: 255,255,255;
  --cv: linear-gradient(to right,#2e5299 0%, #2e74d4 100%);
  --contents_width: 1100px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1160px;
  --sidebar_width: 250px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, 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, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
  padding-top: 65px;
}
@media all and (min-width: 768px) {
  .l-wrapper {
    padding-top: 138px;
  }
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: auto var(--sidebar_width);
    gap: 0 40px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-sidebar {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media all and (min-width: 768px) and (min-height: 1200px) {
  .l-container .l-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
    left: 0;
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1160px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1159px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1160px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1160px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/* font
------------------------------------- */
.u-font-serif {
  font-family: "BIZ UDPMincho", serif;
  font-weight: 400;
}

/* text
------------------------------------- */
.u-text-medium {
  font-weight: 500;
}

/* u-radius
------------------------------------- */
.u-radius {
  border-radius: 5px;
}
@media all and (min-width: 768px) {
  .u-radius {
    border-radius: 10px;
  }
}

.u-circle {
  background: radial-gradient(circle, #d1a815 0%, rgba(209, 168, 21, 0) 75%);
  opacity: 0.15;
  border-radius: 50%;
}

.u-shadow {
  box-shadow: 0px 3px 15px rgba(89, 89, 89, 0.2);
}

/*  .c-archive01
================================================== */
.c-archive01.is-archive .c-archive01__item:first-child {
  border-width: 1px 0 0;
}
.c-archive01.is-archive .c-archive01__item .c-archive01__item-in {
  padding-top: 15px;
}
.c-archive01.is-archive .c-archive01__item:last-child {
  border-width: 1px 0;
}
.c-archive01__item {
  border-style: solid;
  border-color: rgb(var(--border));
  border-width: 1px 0 0 0;
}
.c-archive01__item:first-child {
  border-width: 0;
}
.c-archive01__item:first-child .c-archive01__item-in {
  padding-top: 0;
}
.c-archive01__item-in {
  display: block;
  padding: 15px 0;
}
.c-archive01__item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-archive01__item-date {
  margin: 0 10px 0 0;
  padding: 5px 0;
  font-size: 1.2rem;
}
.c-archive01__item-cat-item {
  min-width: 90px;
  text-align: center;
  font-size: 1.2rem;
  box-sizing: border-box;
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 3em;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .c-archive01.is-archive .c-archive01__item .c-archive01__item-in {
    padding-top: 20px;
  }
  .c-archive01.is-archive .c-archive01__item:last-child {
    border-width: 1px 0;
  }
  .c-archive01.is-archive .c-archive01__item:last-child .c-archive01__item-in {
    padding-bottom: 20px;
  }
  .c-archive01__item:last-child .c-archive01__item-in {
    padding-bottom: 0;
  }
  .c-archive01__item-in {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
  .c-archive01__item-in:hover {
    color: rgb(var(--main));
  }
  .c-archive01__item-in:hover .c-archive01__item-head {
    text-decoration: underline !important;
  }
  .c-archive01__item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .c-archive01__item-date {
    margin: 0 15px 0 0;
  }
  .c-archive01__item-cat {
    white-space: nowrap;
  }
  .c-archive01__item-cat-item {
    text-align: center;
    min-width: 90px;
    box-sizing: border-box;
  }
  .c-archive01__item-head {
    padding-left: 20px;
    flex: 1;
    max-height: 1.5em;
    -webkit-line-clamp: 1;
    margin-top: 0;
  }
}

.c-case-archive01.is-archive .c-case-archive01__item:not(:last-child) {
  margin-bottom: 15px;
}
.c-case-archive01.is-archive .c-case-archive01__item-header-txt {
  text-align: right;
}
.c-case-archive01.is-archive .c-case-archive01__item-comp-after::before {
  background: rgb(var(--main));
}
.c-case-archive01__item-link {
  position: relative;
  display: block;
  border-radius: 10px;
}
.c-case-archive01__item-link:not(div):before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  background: rgb(var(--main));
  border-radius: 0 0 3px 0;
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}
.c-case-archive01__item-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 10px 10px 0 0;
  padding: 18px;
  background: rgb(var(--main));
  line-height: 1.5;
  color: #fff;
}
.c-case-archive01__item-header-label {
  margin-right: 10px;
  margin-bottom: 4px;
  border-radius: 5px;
  padding: 6px 10px;
  color: rgb(var(--main));
  font-size: 1.3rem;
  font-weight: 500;
  background: #fff;
}
.c-case-archive01__item-header-main {
  font-size: 2.1rem;
  font-weight: 500;
}
.c-case-archive01__item-header-txt {
  margin-top: 10px;
  width: 100%;
}
.c-case-archive01__item-content {
  background: #fff;
  padding: 17px;
  border-radius: 0 0 10px 10px;
  border-style: solid;
  border-width: 0 1px 1px 1px;
  border-color: rgb(var(--border));
  box-sizing: border-box;
}
.c-case-archive01__item-detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.c-case-archive01__item-head {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 400;
  border-bottom: 1px solid rgb(var(--border));
  color: rgb(var(--main));
  line-height: 1.5;
}
.c-case-archive01__item-cost {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0 0 auto;
  justify-content: flex-end;
  align-items: baseline;
  padding-bottom: 4px;
  border-bottom: 2px solid;
  text-align: right;
  font-weight: 500;
  line-height: 1.5;
}
.c-case-archive01__item-cost-prefix {
  font-size: 1.3rem;
}
.c-case-archive01__item-cost-num {
  font-size: 2.3rem;
}
.c-case-archive01__item-cost-suffix {
  font-size: 1.7rem;
}
.c-case-archive01__item-comp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 10px;
}
.c-case-archive01__item-comp-before {
  padding: 10px;
  color: rgb(var(--sub));
  border: 1px solid;
  box-sizing: border-box;
}
.c-case-archive01__item-comp-before .c-case-archive01__item-comp-num {
  background: #d2effa;
}
.c-case-archive01__item-comp-after {
  position: relative;
  padding: 10px;
  color: rgb(var(--orange));
  border: 3px solid;
  box-sizing: border-box;
}
.c-case-archive01__item-comp-after::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 12px;
  background: rgb(var(--border));
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.c-case-archive01__item-comp-after .c-case-archive01__item-comp-num {
  background: #fdf1e6;
}
.c-case-archive01__item-comp-txt {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-case-archive01__item-comp-num {
  margin-top: 5px;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-case-archive01__item-point {
  margin-top: 15px;
  background: #eeeeef;
  padding: 20px;
  border-radius: 10px;
}
.c-case-archive01__item-point-head {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.c-case-archive01__item-point-head-ico {
  width: 25px;
  margin-right: 6px;
}
.c-case-archive01__item-point-head-txt {
  font-size: 1.2rem;
  font-weight: 500;
}
.c-case-archive01__item-reparation {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  margin: 15px -10px -20px;
}
.c-case-archive01__item-reparation-box {
  position: relative;
  width: calc(50% - 20px);
  margin: 0 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 5px;
  border: 3px solid;
  min-height: 75px;
  box-sizing: border-box;
}
.c-case-archive01__item-reparation-box.is-before::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 12px;
  background: rgb(var(--main));
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.c-case-archive01__item-reparation-box.is-double {
  width: calc(100% - 20px);
}
.c-case-archive01__item-reparation-box.is-double::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid;
}
.c-case-archive01__item-reparation-txt {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4167;
}
.c-case-archive01__item-reparation-num {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-case-archive01__item-reparation-num-suffix {
  font-size: 1.3rem;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .c-case-archive01__item-reparation.is-other .c-case-archive01__item-reparation-box {
    width: calc(100% - 20px);
  }
  .c-case-archive01__item-reparation.is-other .c-case-archive01__item-reparation-box.is-before::before {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 16px;
    height: 10px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
}
@media all and (min-width: 768px) {
  .c-case-archive01.is-archive .c-case-archive01__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .c-case-archive01.is-archive .c-case-archive01__item-header {
    padding: 20px;
    min-height: 112px;
    align-items: flex-start;
    box-sizing: border-box;
  }
  .c-case-archive01.is-archive .c-case-archive01__item-header-txt {
    margin: auto 0 0 auto;
  }
  .c-case-archive01.is-archive .c-case-archive01__item-comp {
    gap: 30px;
  }
  .c-case-archive01.is-archive .c-case-archive01__item-comp-before {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .c-case-archive01.is-archive .c-case-archive01__item-comp-after {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .c-case-archive01.is-archive .c-case-archive01__item-comp-after::before {
    left: -24px;
    width: 15px;
    height: 26px;
  }
  .c-case-archive01.is-archive .c-case-archive01__item-comp-txt {
    margin: 0 0 4px;
  }
  .c-case-archive01__item-link:not(div)::before {
    width: 15px;
    height: 15px;
  }
  .c-case-archive01__item-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgb(var(--main));
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .c-case-archive01__item-link:not(div):hover {
    box-shadow: none;
  }
  .c-case-archive01__item-link:not(div):hover::after {
    opacity: 1;
  }
  .c-case-archive01__item-header {
    padding: 25px 40px;
  }
  .c-case-archive01__item-header-label {
    padding: 7px 13px;
    font-size: 1.4rem;
    margin: 0 15px 0 0;
  }
  .c-case-archive01__item-header-main {
    font-size: 2.8rem;
  }
  .c-case-archive01__item-header-txt {
    margin: 0 0 0 auto;
    width: auto;
  }
  .c-case-archive01__item-content {
    padding: 40px;
    display: flex;
  }
  .c-case-archive01__item-detail {
    flex: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  .c-case-archive01__item-head {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 2.4rem;
  }
  .c-case-archive01__item-cost {
    margin: auto 0 0 auto;
  }
  .c-case-archive01__item-cost-prefix {
    font-size: 1.4rem;
  }
  .c-case-archive01__item-cost-num {
    font-size: 3.1rem;
  }
  .c-case-archive01__item-cost-suffix {
    font-size: 2.1rem;
  }
  .c-case-archive01__item-txt {
    margin-bottom: 30px;
  }
  .c-case-archive01__item-img {
    margin-left: 40px;
    width: 470px;
  }
  .c-case-archive01__item-img img {
    image-rendering: -webkit-optimize-contrast;
  }
  .c-case-archive01__item-comp {
    margin-top: auto;
    gap: 20px;
  }
  .c-case-archive01__item-comp-before {
    display: flex;
    padding: 15px 10px;
  }
  .c-case-archive01__item-comp-after {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-width: 3px;
  }
  .c-case-archive01__item-comp-txt {
    flex: 1;
    margin-right: 19px;
    font-size: 1.4rem;
  }
  .c-case-archive01__item-comp-num {
    min-width: 105px;
    padding: 0 15px;
    margin-top: 0;
    font-size: 3.1rem;
    box-sizing: border-box;
  }
  .c-case-archive01__item-point {
    margin-left: 40px;
    width: 460px;
    margin-top: 0;
    padding: 35px;
  }
  .c-case-archive01__item-point-head {
    margin-bottom: 2px;
  }
  .c-case-archive01__item-point-head-ico {
    width: 40px;
    margin-right: 10px;
  }
  .c-case-archive01__item-point-head-txt {
    font-size: 2.1rem;
  }
  .c-case-archive01__item-reparation {
    margin: 0 -17px;
  }
  .c-case-archive01__item-reparation.is-other .c-case-archive01__item-reparation-box {
    width: calc(50% - 34px);
  }
  .c-case-archive01__item-reparation-box {
    width: 215px;
    margin: 0 17px;
    padding: 10px 5px;
    min-height: 90px;
  }
  .c-case-archive01__item-reparation-box.is-before::before {
    left: -27px;
    width: 15px;
    height: 26px;
  }
  .c-case-archive01__item-reparation-box.is-double {
    width: 245px;
    flex: 1;
  }
  .c-case-archive01__item-reparation-txt {
    font-size: 1.4rem;
  }
  .c-case-archive01__item-reparation-num {
    font-size: 3.1rem;
  }
  .c-case-archive01__item-reparation-num-suffix {
    font-size: 1.6rem;
  }
}

.c-column-archive01.is-archive .c-column-archive01__item-head {
  font-size: 1.9rem;
}
.c-column-archive01__item {
  border-bottom: 1px solid rgb(var(--border));
}
.c-column-archive01__item-link {
  position: relative;
  display: block;
  padding: 20px 0;
}
.c-column-archive01__item-cat {
  margin-bottom: 1px !important;
}
.c-column-archive01__item-head {
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.c-column-archive01__item-img {
  margin-bottom: 10px;
  border-radius: 10px;
}
.c-column-archive01__item-area-txt {
  display: flex;
  flex-direction: column;
}
.c-column-archive01__item-txt {
  margin-bottom: 4px;
  font-size: 1.3rem;
}
.c-column-archive01__item-date {
  order: 2;
  font-size: 1.3rem;
  line-height: 1.5;
}
.c-column-archive01__item-arrow {
  display: grid !important;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(var(--main));
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  bottom: 20px;
}
.c-column-archive01__item-arrow svg {
  color: #fff;
  width: 5px;
}
@media all and (min-width: 768px) {
  .c-column-archive01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
  .c-column-archive01.is-archive {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-column-archive01.is-archive .c-column-archive01__item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgb(var(--border));
  }
  .c-column-archive01.is-archive .c-column-archive01__item:nth-last-child(-n+2) .c-column-archive01__item-link {
    padding-bottom: 30px;
  }
  .c-column-archive01.is-archive .c-column-archive01__item:nth-last-child(-n+2) .c-column-archive01__item-arrow {
    bottom: 30px;
  }
  .c-column-archive01.is-archive .c-column-archive01__item-head {
    font-size: 2.1rem;
  }
  .c-column-archive01__item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .c-column-archive01__item:nth-last-child(-n+2) .c-column-archive01__item-link {
    padding-bottom: 0;
  }
  .c-column-archive01__item:nth-last-child(-n+2) .c-column-archive01__item-arrow {
    bottom: 0;
  }
  .c-column-archive01__item-link {
    padding: 0 0 30px;
  }
  .c-column-archive01__item-link:hover .c-column-archive01__item-head {
    text-decoration: underline;
    color: rgb(var(--main));
  }
  .c-column-archive01__item-link:hover .c-column-archive01__item-arrow {
    background: #fff;
    border: 1px solid rgb(var(--main));
  }
  .c-column-archive01__item-link:hover .c-column-archive01__item-arrow svg {
    color: rgb(var(--main));
  }
  .c-column-archive01__item-head {
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
  }
  .c-column-archive01__item-content {
    display: flex;
    align-items: flex-start;
  }
  .c-column-archive01__item-img {
    width: 215px;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .c-column-archive01__item-area-txt {
    flex: 1;
  }
  .c-column-archive01__item-txt {
    font-size: 1.4rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .c-column-archive01__item-date {
    font-size: 1.4rem;
  }
  .c-column-archive01__item-arrow {
    bottom: 30px;
  }
}

.c-column-archive02 {
  counter-reset: ranking;
}
.c-column-archive02.is-ranking .c-column-archive02__item::before {
  content: counter(ranking);
  position: absolute;
  top: 20px;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-content: center;
  border-radius: 3px;
  background: var(--cv);
  font-size: 1.2rem;
  color: #fff;
  z-index: 1;
}
.c-column-archive02__item {
  position: relative;
  border-bottom: 1px solid rgb(var(--border));
  counter-increment: ranking;
}
.c-column-archive02__item-link {
  position: relative;
  display: block;
  padding: 20px 0;
}
.c-column-archive02__item-content {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.c-column-archive02__item-img {
  width: 100px;
  border-radius: 3px;
  box-sizing: border-box;
}
.c-column-archive02__item-area-txt {
  flex: 1;
  padding-left: 15px;
}
.c-column-archive02__item-cat {
  margin-bottom: 1px !important;
}
.c-column-archive02__item-head {
  margin-bottom: 6px;
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.c-column-archive02__item-date {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .c-column-archive02__item-link:hover .c-column-archive02__item-head {
    text-decoration: underline;
    color: rgb(var(--main));
  }
  .c-column-archive02__item-img {
    width: 90px;
  }
  .c-column-archive02__item-area-txt {
    padding-left: 10px;
  }
  .c-column-archive02__item-date {
    font-size: 1.2rem;
  }
}

.c-search-archive01 {
  border-top: 1px solid rgb(var(--border));
}
.c-search-archive01__item {
  border-bottom: 1px solid rgb(var(--border));
}
.c-search-archive01__item-in {
  display: block;
  padding: 24px 0;
  box-sizing: border-box;
}
.c-search-archive01__item-head {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-search-archive01__item-txt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media all and (min-width: 768px) {
  .c-search-archive01__item-in {
    padding: 30px 35px;
  }
  .c-search-archive01__item-in:hover .c-search-archive01__item-head {
    text-decoration: underline;
  }
  .c-search-archive01__item-in:hover .c-search-archive01__item-txt {
    color: rgb(var(--main));
  }
  .c-search-archive01__item-head {
    margin-bottom: 8px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  .c-search-archive01__item-txt {
    -webkit-line-clamp: 3;
    transition: all 0.3s ease;
  }
}

/* .c-bg-main
================================================== */
.c-bg-main {
  background-color: rgb(var(--main));
}

/* .c-bg-sub
================================================== */
.c-bg-sub {
  background-color: rgb(var(--sub));
}

/* .c-bg-bg01
================================================== */
.c-bg-bg01 {
  background-color: rgb(var(--bg01));
}

.c-bnr01 {
  display: grid;
  gap: 10px;
}
.c-bnr01__item {
  max-width: 335px;
  width: 100%;
  margin: auto;
}
.c-bnr01__item-link {
  position: relative;
  display: flex !important;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  min-height: 90px;
  border-radius: 5px;
  z-index: 1;
  color: #fff;
  box-sizing: border-box;
}
.c-bnr01__item-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(var(--main), 0.5);
  border-radius: 5px;
  z-index: -1;
  transition: all 0.3s ease;
}
.c-bnr01__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 5px;
}
.c-bnr01__item-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}
.c-bnr01__item-txt {
  font-size: 1.9rem;
  font-weight: 500;
}
.c-bnr01__item-arrow {
  display: grid !important;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  margin-left: auto;
}
.c-bnr01__item-arrow svg {
  color: #fff;
  width: 5px;
}
.c-bnr01__item-arrow svg {
  color: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-bnr01 {
    display: flex;
    justify-content: center;
  }
  .c-bnr01__item {
    max-width: 352px;
    width: calc(33.333% - 22px);
    margin: 0 11px;
  }
  .c-bnr01__item-link {
    padding: 0 20px 0 30px;
    min-height: 120px;
  }
  .c-bnr01__item-link:hover::before {
    background: rgb(var(--main), 0.8);
  }
  .c-bnr01__item-txt {
    font-size: 2.4rem;
  }
}

.c-btn01 {
  max-width: 280px;
  width: 100%;
  margin: 25px auto 0;
}
.c-btn01-wrap {
  margin: 0;
}
.c-btn01-wrap .c-btn01 {
  margin-top: 0;
  max-width: 295px;
}
.c-btn01-wrap .c-btn01:not(:last-child) {
  margin-bottom: 10px;
}
.c-btn01.is-line .c-btn01__link {
  background: rgb(var(--line));
  border-color: rgb(var(--line));
  color: #fff;
  justify-content: center;
}
.c-btn01.is-tone .c-btn01__link {
  background: var(--cv);
  border: 0;
  color: #fff;
  justify-content: center;
}
.c-btn01.is-tone .c-btn01__ico {
  top: 2px;
  left: -3px;
  width: 18px;
}
.c-btn01.is-sub .c-btn01__link {
  background: rgb(var(--sub));
  border: 0;
  color: #fff;
  justify-content: center;
}
.c-btn01.is-sub .c-btn01__ico {
  top: 3px;
  width: 24px;
}
.c-btn01.is-wide {
  max-width: 295px;
  margin: 40px auto;
}
.c-btn01.is-wide .c-btn01__link {
  text-decoration: none;
  min-height: 90px;
}
.c-btn01__link {
  display: flex;
  align-items: center;
  background: #fff;
  width: 100%;
  min-height: 70px;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid rgb(var(--main));
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
}
.c-btn01__ico {
  position: relative;
  top: 4px;
  width: 20px;
  margin-right: 8px;
}
.c-btn01__arrow {
  margin-left: auto;
  display: grid !important;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(var(--main));
}
.c-btn01__arrow svg {
  color: #fff;
  width: 5px;
}
.c-btn01__blank {
  margin-left: auto;
  display: grid !important;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(var(--main));
}
.c-btn01__blank svg {
  color: #fff;
  width: 5px;
}
.c-btn01__blank svg {
  width: 7px;
}
.c-btn01__txt-lg {
  font-size: 1.7rem;
}
@media all and (min-width: 768px) {
  .c-btn01 {
    max-width: 400px;
    margin-top: 40px;
  }
  .c-btn01.is-left-tb {
    margin-left: 0;
  }
  .c-btn01.is-right-tb {
    margin-right: 0;
  }
  .c-btn01.is-sm-tb {
    max-width: 250px;
    margin-top: 20px;
  }
  .c-btn01.is-sm-tb .c-btn01__link {
    min-height: 54px;
    padding: 0 20px;
    font-size: 1.6rem;
  }
  .c-btn01.is-wide {
    max-width: 100%;
    margin: 50px auto;
  }
  .c-btn01.is-wide .c-btn01__link {
    min-height: 85px;
  }
  .c-btn01-wrap {
    display: flex;
    margin: 0 -10px;
  }
  .c-btn01-wrap .c-btn01 {
    margin: 0 10px;
    flex: 1;
    max-width: none;
  }
  .c-btn01-wrap .c-btn01:not(:last-child) {
    margin-bottom: 0;
  }
  .c-btn01.is-line .c-btn01__link:hover {
    background: rgb(var(--line_hover));
    border-color: rgb(var(--line_hover));
  }
  .c-btn01.is-tone .c-btn01__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--hover));
    transition: all 0.3s ease;
    border-radius: 5px;
    opacity: 0;
    z-index: -1;
  }
  .c-btn01.is-tone .c-btn01__link:hover:before {
    opacity: 1;
  }
  .c-btn01.is-tone .c-btn01__ico {
    top: 0px;
    width: 23px;
  }
  .c-btn01.is-sub .c-btn01__link:hover {
    background: #1480DC;
  }
  .c-btn01.is-sub .c-btn01__ico {
    top: 3px;
    width: 27px;
  }
  .c-btn01__link {
    position: relative;
    min-height: 80px;
    padding: 0 25px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    z-index: 1;
  }
  .c-btn01__link:hover {
    background: rgb(var(--hover));
    color: #fff;
  }
  .c-btn01__link:hover .c-btn01__arrow, .c-btn01__link:hover .c-btn01__blank {
    background: #fff;
  }
  .c-btn01__link:hover .c-btn01__arrow svg, .c-btn01__link:hover .c-btn01__blank svg {
    color: rgb(var(--main));
  }
  .c-btn01__ico {
    top: 4px;
    width: 23px;
    margin-right: 10px;
  }
  .c-btn01__blank {
    margin-left: auto;
    display: grid !important;
    place-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgb(var(--main));
  }
  .c-btn01__blank svg {
    color: #fff;
    width: 5px;
  }
  .c-btn01__blank svg {
    width: 7px;
  }
  .c-btn01__txt-lg {
    font-size: 2.1rem;
  }
}

.c-category01 {
  border: 1px solid rgb(var(--main));
  border-radius: 5px;
  box-sizing: border-box;
}
.c-category01 + .c-category01 {
  margin-top: 20px;
}
.c-category01__head {
  padding: 20px;
  display: flex;
  align-items: center;
}
.c-category01__head.is-active .c-category01__head-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}
.c-category01__head-txt {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.5;
}
.c-category01__head-plus {
  position: relative;
  width: 15px;
  height: 15px;
}
.c-category01__head-plus::before, .c-category01__head-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: rgb(var(--main));
  transition: all 0.3s ease;
}
.c-category01__head-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-category01__content {
  position: relative;
}
.c-category01__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 1px;
  background: rgb(var(--border));
}
.c-category01__list {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
.c-category01__item {
  margin-right: 20px;
}
.c-category01__item-link {
  display: flex;
  align-items: center;
}
.c-category01__item-arw {
  width: 6px;
  margin-right: 5px;
  color: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-category01__head {
    padding: 15px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .c-category01__head:hover {
    background: rgb(var(--bg01));
  }
  .c-category01__head-txt {
    font-size: 1.8rem;
  }
  .c-category01__content {
    position: relative;
  }
  .c-category01__list {
    padding: 25px 30px;
  }
  .c-category01__item {
    margin-right: 25px;
  }
  .c-category01__item-link {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  .c-category01__item-link:hover {
    color: rgb(var(--main));
    text-decoration: underline;
  }
  .c-category01__item-arw {
    width: 8px;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-main
================================================== */
.c-color-main {
  color: rgb(var(--main));
}

/* .c-color-sub
================================================== */
.c-color-sub {
  color: rgb(var(--sub));
}

/* .c-color-yellow
================================================== */
.c-color-yellow {
  color: rgb(var(--yellow));
}

/* .c-color-orange
================================================== */
.c-color-orange {
  color: rgb(var(--orange));
}

/* .c-color-red
================================================== */
.c-color-red {
  color: rgb(var(--red));
}

/* .c-color-gray
================================================== */
.c-color-gray {
  color: rgb(var(--gray));
}

/* .c-column-relation
======================================*/
.c-column-relation {
  border: 1px solid rgb(var(--main));
  background: rgba(var(--bg02), 0.5);
}
.c-column-relation .c-column-relation__in {
  position: relative;
  display: block;
  padding: 25px 20px 35px;
  text-decoration: none;
}
.c-column-relation .c-column-relation__in > * {
  margin: 0;
}
.c-column-relation .c-column-relation__tit {
  font-size: 1.7rem;
  line-height: 1.5;
  text-decoration: underline;
}
.c-column-relation .c-column-relation__txt {
  margin-top: 15px;
}
.c-column-relation .c-column-relation__txt > p {
  line-height: 1.5;
  color: rgb(var(--black));
}
.c-column-relation .c-column-relation__ico {
  position: absolute;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  right: 10px;
  bottom: 10px;
  background: rgb(var(--main));
  border: 1px solid rgb(var(--main));
  border-radius: 999px;
}
.c-column-relation .c-column-relation__ico-arw {
  width: 5px;
  color: #fff;
}
.c-column-relation .c-column-relation__ico-arw svg {
  transform: translate(0, -1px);
  display: block;
}
@media all and (min-width: 768px) {
  .c-column-relation .c-column-relation__in {
    padding: 35px 40px 44px;
  }
  .c-column-relation .c-column-relation__in:hover .c-column-relation__tit {
    text-decoration: none;
  }
  .c-column-relation .c-column-relation__in:hover .c-column-relation__ico {
    background: #fff;
  }
  .c-column-relation .c-column-relation__in:hover .c-column-relation__ico-arw {
    color: rgb(var(--main));
  }
  .c-column-relation .c-column-relation__ico {
    right: 15px;
    bottom: 15px;
  }
  .c-column-relation .c-column-relation__ico-arw svg {
    transform: translate(1px, 0);
  }
}

.c-cv01 {
  background: url(../img/common/cv/bg_cv01_sp.jpg) no-repeat center/cover;
}
.c-cv01.is-single {
  margin: 0 -20px;
  padding: 0 20px;
}
.c-cv01__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.c-cv01__txt {
  margin-bottom: 10px;
}
.c-cv01__about {
  margin-top: -10px;
}
.c-cv01__fukidashi {
  max-width: 268px;
  margin: 0 -12px -10px auto;
}
.c-cv01__circle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}
.c-cv01__circle-item {
  text-align: center;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: linear-gradient(-45deg, #e88624 0, #e88624 50%, rgb(var(--orange)) 50%, rgb(var(--orange)) 100%);
  border: 3px solid #f0be8b;
  color: #fff;
  aspect-ratio: 1;
  font-size: 1.3rem;
  line-height: 1.5;
}
.c-cv01__box {
  padding: 25px 20px;
  background: #fff;
  border-radius: 10px;
}
.c-cv01__tel {
  max-width: 295px;
  width: 100%;
  margin: 0 auto 20px;
}
.c-cv01__tel-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(var(--sub));
  width: 100%;
  min-height: 75px;
  padding: 0 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  box-sizing: border-box;
}
.c-cv01__tel-txt {
  margin-top: auto;
  font-size: 1.3rem;
  letter-spacing: 0;
}
.c-cv01__tel-num {
  font-size: 2.3rem;
  font-weight: 500;
}
.c-cv01__tel-time {
  margin-bottom: auto;
  font-size: 1.3rem;
}
.c-cv01__reception {
  margin-bottom: 15px;
}
.c-cv01__reception-circle {
  width: 105px;
  margin-bottom: 5px;
}
.c-cv01__reception-circle img {
  image-rendering: -webkit-optimize-contrast;
}
.c-cv01__reception-txt {
  font-size: 1.7rem;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .c-cv01 {
    background-image: url(../img/common/cv/bg_cv01_pc.jpg);
  }
  .c-cv01.is-single {
    margin: 0;
    padding: 20px;
  }
  .c-cv01.is-single .c-cv01__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
  .c-cv01.is-single .c-cv01__wrap {
    padding: 0 30px;
    margin-bottom: 20px;
  }
  .c-cv01.is-single .c-cv01__head {
    padding-top: 0;
    margin-bottom: 0;
  }
  .c-cv01.is-single .c-cv01__head-txt {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
  .c-cv01.is-single .c-cv01__about {
    width: 280px;
  }
  .c-cv01.is-single .c-cv01__circle-item {
    font-size: 1.2rem;
  }
  .c-cv01.is-single .c-cv01__box {
    padding: 30px 20px;
  }
  .c-cv01.is-single .c-cv01__tel {
    max-width: 224px;
  }
  .c-cv01.is-single .c-cv01__tel-link {
    font-size: 1.2rem;
  }
  .c-cv01.is-single .c-cv01__tel-num {
    font-size: 2.7rem;
  }
  .c-cv01.is-single .c-cv01__tel-time {
    font-size: 1.2rem;
  }
  .c-cv01.is-single .c-cv01__reception-circle {
    width: 65px;
  }
  .c-cv01.is-single .c-cv01__reception-txt {
    font-size: 1.8rem;
  }
  .c-cv01.is-single .c-btn01__link {
    padding: 0 18px;
    max-height: 65px;
    font-size: 1.6rem;
  }
  .c-cv01.is-single .c-btn01__txt {
    font-size: 1.6rem;
  }
  .c-cv01.is-single .c-btn01__txt-lg {
    font-size: 2rem;
  }
  .c-cv01__inner {
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .c-cv01__wrap {
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .c-cv01__head {
    padding-top: 40px;
    flex: 1;
  }
  .c-cv01__txt {
    margin-bottom: 10px;
  }
  .c-cv01__about {
    margin-top: 0;
    width: 350px;
  }
  .c-cv01__fukidashi {
    margin: 0 -15px -10px auto;
    max-width: 333px;
    width: 100%;
  }
  .c-cv01__circle {
    margin-bottom: 0;
  }
  .c-cv01__circle-item {
    font-size: 1.4rem;
  }
  .c-cv01__box {
    padding: 30px 40px;
    display: flex;
    align-items: center;
  }
  .c-cv01__tel {
    max-width: 290px;
    margin: 0;
  }
  .c-cv01__tel-link {
    pointer-events: none;
    align-items: flex-start;
    background: transparent;
    width: auto;
    padding: 0;
    border-radius: 0;
    color: rgb(var(--black));
    font-size: 1.4rem;
  }
  .c-cv01__tel-txt {
    margin: 0;
    font-size: 1.4rem;
  }
  .c-cv01__tel-num {
    font-size: 3.2rem;
  }
  .c-cv01__tel-time {
    display: block;
    color: rgb(var(--gray));
    padding-left: 1em;
    font-size: 1.4rem;
  }
  .c-cv01__contact {
    flex: 1;
  }
  .c-cv01__reception {
    display: flex;
    align-items: center;
  }
  .c-cv01__reception-circle {
    width: 76px;
    margin: 0 10px 0 0;
  }
  .c-cv01__reception-txt {
    font-size: 2.1rem;
  }
}

/*  .c-faq01
================================================== */
.c-faq01 {
  padding: 20px 15px;
  border: 1px solid rgb(var(--main));
  border-radius: 5px;
}
.c-faq01 + .c-faq01 {
  margin-top: 10px;
}
.c-faq01__ico {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 33px;
  height: 33px;
  text-align: center;
  background: rgb(var(--main));
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 2px;
  box-sizing: border-box;
}
.c-faq01__head {
  position: relative;
  padding: 0 15px 0 45px;
  background: rgb(var(--bg_gray));
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
}
.c-faq01__head::-webkit-details-marker {
  display: none;
}
.c-faq01__head[class*=toggle] {
  padding-right: 45px;
  cursor: pointer;
}
.c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
  position: absolute;
  top: 20px;
  right: 0;
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin-top: -1px;
  background: rgb(var(--main));
  transition: all 0.3s ease;
}
.c-faq01__head[class*=toggle]::before {
  transform: rotate(-90deg);
}
.c-faq01__head[class*=toggle].is-active::before {
  transform: rotate(0);
}
.c-faq01__txt {
  position: relative;
  background: rgb(var(--bg02), 0.3);
  border-radius: 5px;
  margin-top: 20px;
  padding: 20px 20px 20px 65px;
}
.c-faq01__txt .c-faq01__ico {
  top: 20px;
  left: 20px;
  background: rgb(var(--sub));
  padding-bottom: 0;
}
.c-faq01__txt a {
  text-decoration: underline;
  color: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-faq01 {
    padding: 20px;
  }
  .c-faq01 + .c-faq01 {
    margin-top: 30px;
  }
  .c-faq01__ico {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  .c-faq01__head {
    padding: 5px 35px 0 55px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  .c-faq01__head[class*=toggle] {
    padding-right: 50px;
    cursor: pointer;
  }
  .c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
    width: 15px;
  }
  .c-faq01__txt {
    position: relative;
    padding: 25px 25px 25px 75px;
  }
  .c-faq01__txt .c-faq01__ico {
    top: 25px;
  }
  .c-faq01__txt a:hover {
    text-decoration: none;
  }
}

/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  box-sizing: border-box;
  display: block;
  max-width: 500px;
  width: 100%;
  height: 46px;
  padding: 10px 20px;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
input.c-form-parts::-moz-placeholder, select.c-form-parts::-moz-placeholder, textarea.c-form-parts::-moz-placeholder, button.c-form-parts::-moz-placeholder {
  color: rgb(var(--gray));
}
input.c-form-parts::placeholder, select.c-form-parts::placeholder, textarea.c-form-parts::placeholder, button.c-form-parts::placeholder {
  color: rgb(var(--gray));
}
input.c-form-parts.is-full, select.c-form-parts.is-full, textarea.c-form-parts.is-full, button.c-form-parts.is-full {
  max-width: 100%;
}

textarea.c-form-parts {
  height: 200px;
  max-width: 100%;
  resize: vertical;
}

select.c-form-parts {
  padding-right: 40px;
  background: no-repeat right 20px top 50%/10px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.144%22%20height%3D%2214.144%22%20viewBox%3D%220%200%2014.144%2014.144%22%3E%3Cpath%20d%3D%22M0%2C10V0H10V2.5H2.5V10Z%22%20transform%3D%22translate(7.071%2014.144)%20rotate(-135)%22%2F%3E%3C%2Fsvg%3E");
}
@media all and (min-width: 768px) {
  select.c-form-parts {
    width: 100%;
    max-width: 100%;
  }
}

.c-form-file {
  margin-top: 30px;
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default th, .c-form.is-default td {
  padding: 15px 0;
  border-color: rgb(var(--border));
  border-style: solid;
  border-width: 0;
}
.c-form.is-default th {
  position: relative;
  padding: 15px;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media all and (max-width: 767px) {
  .c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default th, .c-form.is-default td {
    display: block;
  }
  .c-form.is-default th {
    padding: 40px 0 0;
    border-bottom: 0;
  }
  .c-form.is-default td {
    padding: 20px 0 10px;
  }
  .c-form.is-default tr + tr th {
    border-top: 0;
  }
}
@media all and (min-width: 768px) {
  .c-form.is-default .c-form__wrap {
    padding: 30px 80px 70px;
    border: 1px solid rgb(var(--border));
  }
  .c-form.is-default th, .c-form.is-default td {
    padding: 30px 0;
    border-width: 1px 0;
  }
  .c-form.is-default th {
    width: 230px;
  }
  .c-form.is-default td {
    padding-left: 40px;
  }
  .c-form.is-default tr:first-child th, .c-form.is-default tr:first-child td, .c-form.is-default tr:last-child th, .c-form.is-default tr:last-child td {
    border-width: 0;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  position: absolute;
  top: 40px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 55px;
  height: 25px;
  margin-left: 10px;
  background: #737679;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 2px;
}
.c-form-label.is-required {
  background: rgb(var(--main));
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: rgb(var(--black), 20);
  font-size: 1.2rem;
  line-height: 1.5;
  text-indent: -1em;
  margin-left: 1em;
}
.c-form-note::before {
  content: "※";
}
.c-form-note + .c-form-note {
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .c-form-note {
    font-size: 1.4rem;
  }
}

td .c-form-note {
  margin-top: 20px;
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  flex-basis: 128px;
}
.c-form-postcode__btn {
  margin-left: 15px;
  flex: 1;
  max-width: 162px;
  height: 46px;
  border-radius: 23px;
  background: rgb(var(--main));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  border-color: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-form-postcode__input {
    flex-basis: 118px;
  }
  .c-form-postcode__btn {
    margin-left: 20px;
    max-width: 162px;
    transition: all 0.3s ease;
  }
  .c-form-postcode__btn:hover {
    background: rgb(var(--main), 0.75);
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
}
.mw_wp_form_confirm .c-form-postcode__btn,
.is-confirm .c-form-postcode__btn {
  display: none;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 14px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}
@media all and (min-width: 768px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 60px;
}
.c-form-agreement__txt {
  line-height: 1.5;
}
.c-form-agreement__txt a {
  color: rgb(var(--main));
}
.c-form-agreement .mwform-checkbox-field {
  margin-top: 40px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-form-agreement {
    margin-top: 70px;
    text-align: center;
  }
  .c-form-agreement .mwform-checkbox-field {
    margin-top: 30px;
  }
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 40px;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.c-form-btn {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: auto;
  max-width: 280px;
  width: 100%;
  height: 70px;
  padding: 5px 20px;
  font-size: 1.5rem;
  border: 1px solid rgb(var(--main));
  border-radius: 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}
.c-form-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%) scale(-1, 1);
  background: url(../img/common/img_arrow01.png) no-repeat center/contain;
}
.c-form-btn.is-back {
  background: rgb(var(--border), 0.5);
  justify-content: flex-end;
}
.c-form-btn.is-back::before {
  left: 20px;
  transform: translate(0, -50%);
  right: auto;
}
.c-form-btn + .c-form-btn {
  margin-top: 10px;
}
@media all and (min-width: 768px) {
  .c-form-btn {
    max-width: 400px;
    margin: 0 20px;
    height: 80px;
    padding: 10px 25px;
    font-size: 1.8rem;
  }
  .c-form-btn::before {
    right: 25px;
  }
  .c-form-btn:hover {
    background: rgb(var(--bg02));
  }
  .c-form-btn.is-back::before {
    left: 25px;
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}
.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
  margin-top: 5px;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}
.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 26px;
  vertical-align: top;
}
.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid;
  border-radius: 50%;
}
.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 3px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(var(--main));
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}
.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}
.c-radio-list .mwform-radio-field + .mwform-radio-field, .c-radio-list .mwform-radio-field + .c-radio,
.c-radio-list .c-radio + .mwform-radio-field,
.c-radio-list .c-radio + .c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
  margin-top: 5px;
}
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid;
}
.c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
  position: absolute;
  top: 11px;
  left: 3px;
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  border-color: rgb(var(--main));
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
}

.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field, .c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}

/* c-form-date
------------------------------------- */
.c-form-date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-form-date + .c-form-date {
  margin-top: 30px;
}
.c-form-date__txt {
  min-width: 100px;
}
.c-form-date__datepicker {
  flex: 1;
}
.c-form-date__datepicker input {
  max-width: none;
  padding-right: 60px;
  background-image: url(../img/common/ico_calendar01.svg);
  background-repeat: no-repeat;
  background-position: center right 19px;
}
.c-form-date__select {
  width: 100%;
  margin-top: 10px;
}
.c-form-date__select select {
  margin-left: auto;
  max-width: 143px;
}
@media all and (min-width: 768px) {
  .c-form-date + .c-form-date {
    margin-top: 20px;
  }
  .c-form-date__txt {
    min-width: 100px;
  }
  .c-form-date__datepicker {
    flex: none;
    width: 212px;
  }
  .c-form-date__select {
    width: 167px;
    margin: 0 0 0 17px;
  }
  .c-form-date__select select {
    max-width: 100%;
  }
}

/* c-form-flow01
------------------------------------- */
.c-form-flow01 {
  display: flex;
  margin: 0 auto 20px;
}
.c-form-flow01__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  background: rgb(var(--bg01));
  color: rgb(var(--main));
  flex: 1;
  font-size: 1.2rem;
  font-weight: bold;
  padding-right: 15px;
  box-sizing: border-box;
}
.c-form-flow01__item::before, .c-form-flow01__item::after {
  content: "";
  position: absolute;
  left: -15px;
  display: block;
  height: 52%;
  width: 21px;
  background: rgb(var(--bg01));
  border-left: 3px solid #fff;
}
.c-form-flow01__item::before {
  bottom: 0;
  transform: skew(-30deg);
}
.c-form-flow01__item::after {
  top: -1px;
  transform: skew(30deg);
}
.c-form-flow01__item:nth-child(1)::before, .c-form-flow01__item:nth-child(1)::after {
  display: none;
}
@media all and (min-width: 768px) {
  .c-form-flow01 {
    max-width: 728px;
    margin: 0 auto 40px;
  }
  .c-form-flow01__item {
    font-size: 1.4rem;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_input .c-form-flow01__item:nth-child(1) {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_input .c-form-flow01__item:nth-child(1)::before, .mw_wp_form_input .c-form-flow01__item:nth-child(1)::after {
  display: none;
}

.mw_wp_form_confirm .c-form-flow01__item:nth-child(2),
.is-confirm .c-form-flow01__item:nth-child(2) {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_confirm .c-form-flow01__item:nth-child(2)::before, .mw_wp_form_confirm .c-form-flow01__item:nth-child(2)::after,
.is-confirm .c-form-flow01__item:nth-child(2)::before,
.is-confirm .c-form-flow01__item:nth-child(2)::after {
  background: rgb(var(--main));
  height: 51%;
}
.mw_wp_form_confirm .c-form-flow01__item:nth-child(2)::after,
.is-confirm .c-form-flow01__item:nth-child(2)::after {
  top: 0;
}

.mw_wp_form_complete .c-form-flow01__item:nth-child(3) {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_complete .c-form-flow01__item:nth-child(3)::before, .mw_wp_form_complete .c-form-flow01__item:nth-child(3)::after {
  background: rgb(var(--main));
}
.mw_wp_form_complete .c-form-flow01__item:nth-child(3)::after {
  top: 0;
}

.c-head01 {
  margin-bottom: 15px;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.5;
}
.c-head01__lg {
  font-size: 2.5rem;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 30px;
    font-size: 3.2rem;
  }
  .c-head01__lg {
    font-size: 3.7rem;
  }
}

.c-head02 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 11px;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.5;
}
.c-head02::before {
  content: "";
  position: absolute;
  top: 7.5%;
  left: 0;
  height: 85%;
  width: 4px;
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-head02 {
    margin-bottom: 5px;
    padding-left: 14px;
    font-size: 2.1rem;
  }
}

.c-head03 {
  margin-bottom: 15px;
  font-size: 2.1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media all and (min-width: 768px) {
  .c-head03 {
    margin-bottom: 35px;
    font-size: 2.8rem;
  }
}

/* .c-head04
======================================*/
.c-head04 {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.5263157895;
  color: rgb(var(--main));
  margin-bottom: 22px;
}
@media all and (min-width: 768px) {
  .c-head04 {
    font-size: 2.4rem;
    line-height: 1.75;
    margin-bottom: 25px;
  }
}

/* .c-head05
======================================*/
.c-head05 {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5294117647;
  color: rgb(var(--main));
  margin-bottom: 16px;
}
@media all and (min-width: 768px) {
  .c-head05 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}

/* .c-head06
======================================*/
.c-head06 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5333333333;
  color: rgb(var(--main));
  margin-bottom: 13px;
}
@media all and (min-width: 768px) {
  .c-head06 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/* .c-intro01
======================================*/
.c-intro01 {
  position: relative;
  z-index: 1;
}
.c-intro01__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: -1;
}
.c-intro01__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: url(../img/about/bg_intro01_sp.jpg) no-repeat center top/cover;
  z-index: 1;
}
.c-intro01__bg::after {
  content: "";
  display: block;
  width: 100%;
  flex: 1;
  background: rgb(var(--bg01));
}
.c-intro01__inner {
  padding-top: 55px;
  padding-bottom: 60px;
}
.c-intro01__box {
  padding: 40px 20px 20px;
  border-radius: 10px;
  background: #fff;
}
.c-intro01__img {
  max-width: 255px;
  margin: 0 auto 25px;
}
.c-intro01__head {
  padding-bottom: 4px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgb(var(--border));
}
.c-intro01__head-position {
  font-weight: bold;
  font-size: 1.3rem;
}
.c-intro01__head-name {
  display: flex;
  align-items: baseline;
}
.c-intro01__head-name-txt {
  font-size: 2.3rem;
  line-height: 1.5;
}
.c-intro01__head-name-hira {
  display: block;
  margin-left: 10px;
}
.c-intro01__label {
  margin: 10px 0 !important;
}
@media all and (min-width: 768px) {
  .c-intro01__bg::before {
    height: 55%;
    background-image: url(../img/about/bg_intro01_pc.jpg);
  }
  .c-intro01__inner {
    padding-top: 112px;
    padding-bottom: 120px;
  }
  .c-intro01__box {
    padding: 60px;
  }
  .c-intro01__content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .c-intro01__img {
    order: 2;
    max-width: 360px;
    width: 100%;
    margin: 0;
  }
  .c-intro01__area-txt {
    max-width: 560px;
    width: 100%;
    margin-right: 60px;
  }
  .c-intro01__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: 12px;
    margin-bottom: 25px;
  }
  .c-intro01__head-position {
    width: 100%;
    font-size: 1.4rem;
  }
  .c-intro01__head-name-txt {
    font-size: 3rem;
  }
  .c-intro01__head-name-hira {
    font-size: 1.4rem;
    margin-left: 15px;
  }
  .c-intro01__label {
    margin: 0 0 0 10px !important;
  }
}

.c-cat-label01 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2px -4px;
}
.c-cat-label01__item {
  padding: 3px 6px;
  margin: 0 2px 4px;
  border-radius: 5px;
  line-height: 1.5;
  font-weight: 500;
  background: rgb(var(--sub));
  color: #fff;
  font-size: 1.3rem;
  box-sizing: border-box;
}
.c-cat-label01__item.is-orange {
  background: rgb(var(--orange));
}
.c-cat-label01__item.is-white {
  background: #fff;
  color: rgb(var(--main));
  border: 1px solid;
}
.c-cat-label01__item.is-main {
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-cat-label01__item {
    padding: 3px 10px;
  }
}

/* .c-label01
======================================*/
.c-label01 {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding: 2px 10px;
  box-sizing: border-box;
  background: rgb(var(--sub));
  color: #fff;
  margin-bottom: 15px;
}
@media all and (min-width: 768px) {
  .c-label01 {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 3px 10px;
    margin-bottom: 10px;
  }
}

/* .c-link01
======================================*/
.c-link01 {
  position: relative;
  color: rgb(var(--main));
  padding-right: 15px;
  text-decoration: underline !important;
  word-break: break-word;
}
.c-link01::after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg id='外部リンク_ico' xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath id='Path_11' data-name='Path 11' d='M4.25,1.25H8V5H4.25ZM3,6.25H9.25V0H3Z' transform='translate(0.75)' fill='%232e5299'/%3E%3Cpath id='Path_12' data-name='Path 12' d='M0,3V9.25H6.25v-2.5H5V8H1.25V4.251H2.5V3Z' transform='translate(0 0.75)' fill='%232e5299'/%3E%3C/svg%3E%0A");
  position: absolute;
  bottom: 4px;
  right: 0;
}
@media all and (min-width: 768px) {
  .c-link01:hover {
    text-decoration: none !important;
  }
}

.c-check-list01__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 13px 0;
}
.c-check-list01__item:not(:last-child) {
  border-bottom: 1px solid rgb(var(--border));
}
.c-check-list01__item-ico {
  width: 20px;
  margin-right: 8px;
}
.c-check-list01__item-txt {
  flex: 1;
  line-height: 1.5;
}
.c-check-list01__item-lg {
  font-size: 1.9rem;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .c-check-list01__item {
    padding: 15px 0;
    border-bottom: 1px solid rgb(var(--border));
  }
  .c-check-list01__item-ico {
    width: 22px;
    margin-right: 8px;
  }
  .c-check-list01__item-lg {
    font-size: 2.4rem;
  }
}

.c-check-list02__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
}
.c-check-list02__item:not(:last-child) {
  border-bottom: 1px solid rgb(var(--border));
}
.c-check-list02__item-ico {
  width: 11px;
  margin-right: 8px;
}
.c-check-list02__item-txt {
  flex: 1;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .c-check-list02__item {
    padding: 10px 0;
  }
  .c-check-list02__item-ico {
    width: 18px;
    margin-right: 8px;
  }
  .c-check-list02__item-txt {
    font-size: 1.5rem;
  }
}

/* .c-list01
======================================*/
.c-list01__item {
  line-height: 1.7857142857;
  position: relative;
  padding-left: 14px;
}
.c-list01__item + .c-list01__item {
  margin-top: 10px;
}
.c-list01__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgb(var(--main));
  position: absolute;
  top: 9px;
  left: 0;
}
@media all and (min-width: 768px) {
  .c-list01__item {
    line-height: 1.8125;
  }
  .c-list01__item + .c-list01__item {
    margin-top: 9px;
  }
  .c-list01__item::before {
    top: 11px;
  }
}

/* .c-list02
======================================*/
.c-list02__item {
  line-height: 1.7857142857;
}
.c-list02__item + .c-list02__item {
  margin-top: 10px;
}
.c-list02__item-in {
  display: flex;
}
.c-list02__num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 5px;
}
.c-list02__txt {
  flex: 1;
}
@media all and (min-width: 768px) {
  .c-list02__item {
    line-height: 1.8125;
  }
  .c-list02__num {
    margin-right: 8px;
  }
}

.c-marker01 {
  display: inline;
  background: linear-gradient(to top, rgb(var(--deco01)) 4px, transparent 4px);
}
@media all and (min-width: 768px) {
  .c-marker01 {
    background: linear-gradient(to top, rgb(var(--deco01)) 8px, transparent 8px);
  }
}

/* .c-note01
======================================*/
.c-note01 {
  font-size: 1.2rem;
  color: rgb(var(--gray));
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}
.c-note01__wrap {
  margin-top: 12px;
}
.c-note01 + .c-note01 {
  margin-top: 7px;
}
.c-note01::before {
  content: "※";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media all and (min-width: 768px) {
  .c-note01 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .c-note01__wrap {
    margin-top: 21px;
  }
  .c-note01 + .c-note01 {
    margin-top: 9px;
  }
  .c-note01::before {
    margin-right: 5px;
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  min-width: 240px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto -10px;
  padding-bottom: 64px;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a, .c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  line-height: 1;
  text-decoration: none;
  font-weight: 500;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  background: rgb(var(--bg01));
}
.c-pager01 li.previous, .c-pager01 li.next {
  position: absolute;
  bottom: 0;
  width: 110px;
  border: 1px solid rgb(var(--main));
  border-radius: 5px;
}
.c-pager01 li.previous > a, .c-pager01 li.next > a {
  position: relative;
  width: 100%;
  font-size: 0;
}
.c-pager01 li.previous > a::before, .c-pager01 li.next > a::before {
  content: "";
  font-size: 1.5rem;
}
.c-pager01 li.previous > a::after, .c-pager01 li.next > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: url(../img/common/img_arrow01.png) no-repeat center/contain;
}
.c-pager01 li.previous {
  left: 0;
}
.c-pager01 li.previous > a::before {
  content: "前へ";
}
.c-pager01 li.previous > a:after {
  left: 10px;
}
.c-pager01 li.next {
  right: 0;
}
.c-pager01 li.next > a::before {
  content: "次へ";
}
.c-pager01 li.next > a:after {
  right: 10px;
  transform: translate(0, -50%) scale(-1, 1);
}
@media all and (min-width: 768px) {
  .c-pager01 {
    min-width: auto;
    margin: 60px auto 0;
    padding-bottom: 0;
  }
  .c-pager01 li {
    margin: 0 5px 0;
  }
  .c-pager01 li a {
    transition: all 0.3s ease;
  }
  .c-pager01 li a:hover {
    background: rgb(var(--bg01));
  }
  .c-pager01 li.previous, .c-pager01 li.next {
    position: relative;
    width: 68px;
    border: 0;
  }
  .c-pager01 li.previous > a, .c-pager01 li.next > a {
    padding: 0 5px;
    text-align: left;
  }
  .c-pager01 li.previous > a::before, .c-pager01 li.next > a::before {
    font-size: 1.8rem;
  }
  .c-pager01 li.previous > a:hover, .c-pager01 li.next > a:hover {
    color: rgb(var(--main));
    text-decoration: underline;
    background-color: transparent;
  }
  .c-pager01 li.previous {
    margin-right: 40px;
  }
  .c-pager01 li.previous > a {
    justify-content: flex-end;
    padding-left: 10px;
  }
  .c-pager01 li.previous > a::after {
    left: -5px;
  }
  .c-pager01 li.next {
    margin-left: 40px;
  }
  .c-pager01 li.next > a {
    justify-content: flex-start;
    padding-right: 10px;
  }
  .c-pager01 li.next > a::after {
    right: -5px;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  line-height: 1;
}
.c-pager02 a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 15px;
  border: 1px solid rgb(var(--main));
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  box-sizing: border-box;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  padding-left: 50px;
  justify-content: flex-start;
}
.c-pager02__previous .c-pager02__ico {
  left: 15px;
  transform: translate(0, -50%) scale(-1, 1);
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  padding-right: 50px;
  justify-content: flex-end;
}
.c-pager02__next .c-pager02__ico {
  right: 15px;
}
.c-pager02__ico {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: grid !important;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(var(--main));
}
.c-pager02__ico svg {
  color: #fff;
  width: 5px;
}
.c-pager02__all {
  width: 280px;
  margin: auto;
  clear: both;
  padding-top: 20px;
}
.c-pager02__all a {
  justify-content: center;
}
.c-pager02__all a .c-pager02__ico {
  position: static;
  transform: scale(-1, 1);
}
.c-pager02__all a .c-pager02__txt {
  margin-left: 1em;
}
@media all and (min-width: 768px) {
  .c-pager02 {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgb(var(--border));
  }
  .c-pager02 a {
    height: 80px;
    padding: 5px;
    border: 0;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  .c-pager02__previous, .c-pager02__next {
    position: absolute;
    top: 40px;
    width: auto;
  }
  .c-pager02__previous a:hover, .c-pager02__next a:hover {
    color: rgb(var(--main));
    text-decoration: underline;
  }
  .c-pager02__previous {
    left: 0;
  }
  .c-pager02__previous a {
    padding-left: 35px;
  }
  .c-pager02__previous .c-pager02__ico {
    left: 0;
  }
  .c-pager02__next {
    right: 0;
  }
  .c-pager02__next a {
    padding-right: 35px;
  }
  .c-pager02__next .c-pager02__ico {
    right: 0;
  }
  .c-pager02__ico {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    display: grid !important;
    place-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgb(var(--main));
  }
  .c-pager02__ico svg {
    color: #fff;
    width: 5px;
  }
  .c-pager02__all {
    width: 330px;
    padding-top: 0;
  }
  .c-pager02__all a {
    border: 1px solid rgb(var(--main));
  }
  .c-pager02__all a:hover {
    background: rgb(var(--bg01));
  }
}

.c-single-author01 {
  padding: 25px;
  border: 1px solid rgb(var(--border));
  box-sizing: border-box;
}
.c-single-author01__head {
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(var(--border));
}
.c-single-author01__head-img {
  width: 100px;
  height: 100px;
  margin: auto;
}
.c-single-author01__head-img img {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-single-author01__head-area-txt {
  margin-top: 15px;
  line-height: 1.4615;
}
.c-single-author01__head-office {
  font-size: 1.3rem;
  font-weight: 500;
}
.c-single-author01__head-name {
  margin-top: 5px;
  font-size: 1.5rem;
}
.c-single-author01__head-txt {
  margin-top: 10px;
  font-size: 1.2rem;
}
.c-single-author01__content {
  padding-top: 20px;
}
@media all and (min-width: 768px) {
  .c-single-author01 {
    padding: 25px 40px;
  }
  .c-single-author01__head {
    display: flex;
    align-items: center;
    padding-bottom: 25px;
  }
  .c-single-author01__head-img {
    width: 80px;
    height: 80px;
    margin: 0 20px 0 0;
  }
  .c-single-author01__head-area-txt {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
  }
  .c-single-author01__head-office {
    width: 100%;
    font-size: 1.4rem;
  }
  .c-single-author01__head-name {
    margin: 5px 20px 0 0;
    font-size: 1.8rem;
  }
  .c-single-author01__head-txt {
    margin-top: 10px;
  }
  .c-single-author01__content {
    padding-top: 25px;
  }
}

.c-single-fixed {
  margin-bottom: 50px;
}
.c-single-fixed__content {
  margin-bottom: 50px;
}
@media all and (min-width: 768px) {
  .c-single-fixed {
    margin-bottom: 60px;
  }
  .c-single-fixed__content {
    margin-bottom: 60px;
  }
}

/* .c-single-content
================================================== */
.c-single-content {
  display: flow-root;
  overflow: hidden;
}
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content h2,
.c-single-content h3,
.c-single-content h4 {
  font-family: "BIZ UDPMincho", serif;
  font-weight: 400;
  line-height: 1.5;
}
.c-single-content h2 {
  margin: 25px 0 15px;
  padding: 15px 20px;
  font-size: 1.7rem;
  background: rgb(var(--bg02));
  border-radius: 6px;
}
.c-single-content h3 {
  position: relative;
  margin: 25px 0 15px;
  border-bottom: 1px solid rgb(var(--border));
  padding-bottom: 10px;
  font-size: 1.9rem;
  color: rgb(var(--main));
  box-sizing: border-box;
}
.c-single-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 1px;
  background: rgb(var(--sub));
  z-index: 1;
}
.c-single-content h4 {
  margin: 25px 0 15px;
  font-size: 1.5rem;
  color: rgb(var(--main));
}
.c-single-content p,
.c-single-content div {
  margin: 1em 0;
}
.c-single-content p + h3,
.c-single-content p + h4,
.c-single-content p + img,
.c-single-content div + h3,
.c-single-content div + h4,
.c-single-content div + img {
  margin-top: 30px;
}
.c-single-content a {
  color: rgb(var(--main));
  text-decoration: underline;
}
.c-single-content strong {
  font-weight: 500;
  display: inline;
  background: linear-gradient(to top, rgb(var(--deco02)) 4px, transparent 4px);
}
.c-single-content ul {
  margin: 1em 0;
}
.c-single-content ul li::marker {
  color: rgb(var(--main));
}
.c-single-content ol {
  padding-left: 0;
  margin: 1em 0;
  list-style: none;
  counter-reset: num;
}
.c-single-content ol li {
  counter-increment: num;
  position: relative;
  box-sizing: border-box;
  padding-left: 2.2em;
}
.c-single-content ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(num, decimal-leading-zero) ".";
  display: inline-block;
  white-space: nowrap;
  color: rgb(var(--main));
}
.c-single-content blockquote {
  margin: 30px auto;
  padding: 30px 25px;
  border: 1px solid rgb(var(--border));
}
.c-single-content img {
  margin: 1em 0;
  border-radius: 6px;
}
.c-single-content hr {
  clear: both;
  margin: -0.5em 0;
  border: 0;
}
.c-single-content table {
  margin: 30px 0;
}
.c-single-content table th,
.c-single-content table td {
  text-align: center;
  border: 1px solid rgb(var(--border));
  padding: 10.3px 20px;
  box-sizing: border-box;
}
.c-single-content table tr {
  margin-bottom: -1px;
}
.c-single-content table th {
  background-color: rgb(var(--main));
  color: #fff;
  margin-bottom: -1px;
}
.c-single-content .c-case-archive01 {
  margin: 20px 0;
}
.c-single-content .c-case-archive01__item-reparation {
  margin: 15px -10px -20px;
}
.c-single-content .c-case-archive01__item-reparation-box {
  margin: 0 10px 20px;
}
.c-single-content .c-case-archive01__item-comp-after, .c-single-content .c-case-archive01__item-comp-before {
  margin: 0;
}
.c-single-content .c-case-archive01 p {
  margin: 0;
}
@media all and (min-width: 768px) {
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content .alignleft {
    float: left;
    margin: 0 30px 30px 0;
    max-width: 407px;
  }
  .c-single-content .alignright {
    float: right;
    margin: 0 0 30px 30px;
    max-width: 407px;
  }
  .c-single-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .c-single-content p,
.c-single-content div {
    margin: 30px 0;
  }
  .c-single-content p,
.c-single-content div {
    margin: 30px 0;
  }
  .c-single-content p + h3,
.c-single-content p + h4,
.c-single-content p + img,
.c-single-content div + h3,
.c-single-content div + h4,
.c-single-content div + img {
    margin-top: 50px;
  }
  .c-single-content h2 {
    margin: 25px 0;
    padding: 20px 25px;
    font-size: 2.4rem;
  }
  .c-single-content h3 {
    margin: 20px 0;
    padding-bottom: 20px;
    font-size: 2.1rem;
  }
  .c-single-content h3::before {
    width: 100px;
  }
  .c-single-content h4 {
    margin: 20px 0;
    font-size: 1.8rem;
  }
  .c-single-content blockquote {
    margin: 40px 0;
    padding: 40px;
  }
  .c-single-content img {
    border-radius: 10px;
  }
  .c-single-content table {
    margin: 50px 0;
  }
  .c-single-content table th,
.c-single-content table td {
    padding: 12.5px 20px;
  }
  .c-single-content table tr {
    margin-bottom: -1px;
  }
  .c-single-content .c-case-archive01 {
    margin: 30px 0;
  }
  .c-single-content .c-case-archive01__item-reparation {
    margin: 0 -17px;
  }
  .c-single-content .c-case-archive01__item-reparation-box {
    margin: 0 17px;
  }
  .c-single-content .c-case-archive01__item-comp {
    margin: 0;
  }
  .c-single-content .c-case-archive01__item-comp__before, .c-single-content .c-case-archive01__item-comp__after {
    margin: 0;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 12px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
  font-size: 1.3rem;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 7px;
  height: 7px;
  color: rgb(var(--gray));
  background: no-repeat url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%224.666%22%20height%3D%227%22%20viewBox%3D%220%200%204.666%207%22%3E%20%3Cpath%20d%3D%22M6.124%2C0%2C3.5%2C2.8.875%2C0%2C0%2C.932l2.625%2C2.8.875.933.876-.933L7%2C.932Z%22%20transform%3D%22translate(0%207)%20rotate(-90)%22%20fill%3D%22%23c7c8c9%22%2F%3E%3C%2Fsvg%3E") center/contain;
}
.l-breadcrumb-list__item > a {
  color: rgb(var(--main));
  text-decoration: underline;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    padding-top: 16px;
  }
  .l-breadcrumb-list__item {
    font-size: 1.4rem;
  }
}

.l-footer-bnr__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .l-footer-bnr__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  padding-bottom: 50px;
}
.l-footer__inner {
  padding-top: 50px;
  padding-bottom: 45px;
}
.l-footer__info {
  margin-bottom: 30px;
}
.l-footer__info-logo {
  margin-bottom: 15px;
  max-width: 278px;
  width: 100%;
}
.l-footer__info-addr {
  font-size: 1.3rem;
  line-height: 1.5;
}
.l-footer__info-addr-ico {
  width: 8px;
  height: 8px;
  margin: 0 0 2px 4px;
}
.l-footer__info-addr-ico svg {
  display: block;
}
.l-footer__info-tel {
  margin-top: 9px;
  font-size: 1.3rem;
}
.l-footer__sitemap-list {
  -moz-columns: 2;
  columns: 2;
}
.l-footer__sitemap-item {
  margin-bottom: 1.1em;
}
.l-footer__sitemap-item:last-child {
  padding-bottom: 6em;
}
.l-footer__sitemap-item-link {
  font-weight: 500;
}
.l-footer__sitemap-secondary {
  margin-top: 15px;
}
.l-footer__sitemap-secondary-item {
  margin-bottom: 5px;
}
.l-footer__sitemap-secondary-link {
  position: relative;
  display: block;
  padding-left: 17px;
  font-size: 1.3rem;
}
.l-footer__sitemap-secondary-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: rgb(var(--main));
  width: 10px;
  height: 2px;
}
.l-footer__cr {
  border-top: 1px solid rgb(var(--border));
  padding: 25px 20px;
  text-align: right;
  font-size: 1.3rem;
}
@media all and (min-width: 768px) {
  .l-footer {
    padding-bottom: 0;
  }
  .l-footer__inner {
    display: flex;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .l-footer__info {
    max-width: 356px;
    margin-bottom: 0;
  }
  .l-footer__info-logo {
    margin-bottom: 20px;
    max-width: none;
  }
  .l-footer__info-addr {
    font-size: 1.4rem;
  }
  .l-footer__info-addr-link {
    transition: all 0.3s ease;
  }
  .l-footer__info-addr-link:is(a):hover {
    color: rgb(var(--main));
    text-decoration: underline;
  }
  .l-footer__info-tel {
    margin-top: 4px;
    font-size: 1.4rem;
  }
  .l-footer__sitemap {
    margin-left: auto;
  }
  .l-footer__sitemap-list {
    -moz-columns: 3;
    columns: 3;
  }
  .l-footer__sitemap-item {
    margin-bottom: 0.5em;
  }
  .l-footer__sitemap-item:last-child {
    padding-bottom: 0;
  }
  .l-footer__sitemap-link {
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .l-footer__sitemap-link:is(a):hover {
    color: rgb(var(--main));
    text-decoration: underline;
  }
  .l-footer__sitemap-secondary {
    margin-top: 5px;
  }
  .l-footer__sitemap-secondary-item {
    margin-bottom: 5px;
  }
  .l-footer__sitemap-secondary-link {
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .l-footer__sitemap-secondary-link:hover {
    color: rgb(var(--main));
    text-decoration: underline;
  }
  .l-footer__cr {
    padding: 25px 0;
    font-size: 1.4rem;
  }
  .l-footer__cr-txt {
    display: block;
    max-width: var(--contents_width);
    margin: auto;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  position: absolute;
  top: -20px;
  right: 20px;
}
.l-footer-page-top__link {
  box-sizing: border-box;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  background: rgb(var(--main));
  border-radius: 50%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
.l-footer-page-top__link svg {
  display: block;
  width: 8px;
  transform: rotate(-90deg);
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    right: 40px;
  }
  .l-footer-page-top__link {
    transition: all 0.3s ease;
  }
}

/* l-fixed-footer-
------------------------------------- */
.l-fixed-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  z-index: 100;
}
.l-fixed-footer__inner {
  display: flex;
  margin: 0 -2px;
}
.l-fixed-footer__tel {
  flex: 1;
  margin: 0 2px;
}
.l-fixed-footer__tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--sub));
  color: #fff;
  border-radius: 5px 5px 0 0;
  height: 50px;
}
.l-fixed-footer__tel-txt {
  display: none;
}
.l-fixed-footer__tel-time {
  display: none;
}
.l-fixed-footer__tel-ico {
  width: 24px;
  line-height: 1;
}
.l-fixed-footer__btn {
  flex: 1;
  margin: 0 2px;
}
.l-fixed-footer__btn.is-line .l-fixed-footer__btn-link {
  background: rgb(var(--line));
  border-color: rgb(var(--line));
  color: #fff;
}
.l-fixed-footer__btn.is-tone .l-fixed-footer__btn-link {
  background: var(--cv);
  border: 0;
  color: #fff;
}
.l-fixed-footer__btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--sub));
  color: #fff;
  border-radius: 5px 5px 0 0;
  height: 50px;
}
.l-fixed-footer__btn-txt {
  display: none;
}
.l-fixed-footer__btn-ico {
  line-height: 1;
  width: 24px;
}
@media all and (min-width: 768px) {
  .l-fixed-footer {
    left: auto;
    right: 30px;
    top: calc(95% - 290px);
    bottom: auto;
    max-width: 260px;
    height: auto;
    z-index: 100;
    background: #fff;
    border-radius: 5px;
    padding: 15px 20px;
    box-sizing: border-box;
    box-shadow: 0px 3px 15px rgba(89, 89, 89, 0.2);
  }
  .l-fixed-footer.is-active {
    right: 0;
    padding: 0;
    width: 60px;
  }
  .l-fixed-footer.is-active .l-fixed-footer__close {
    top: 0;
    right: 0;
    width: 100%;
    height: 180px;
    border-radius: 5px 0 0 5px;
    background: rgb(var(--orange));
    color: #fff;
    box-shadow: 0px 3px 15px rgba(89, 89, 89, 0.2);
    transition: all 0.3s ease;
  }
  .l-fixed-footer.is-active .l-fixed-footer__close::before, .l-fixed-footer.is-active .l-fixed-footer__close::after {
    content: "";
    display: none;
  }
  .l-fixed-footer.is-active .l-fixed-footer__close-txt {
    writing-mode: vertical-rl;
    font-size: 1.8rem;
  }
  .l-fixed-footer.is-active .l-fixed-footer__close:hover {
    background: #da5806;
    box-shadow: none;
  }
  .l-fixed-footer.is-active .l-fixed-footer__inner {
    display: none;
  }
  .l-fixed-footer__close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    border: 0;
    background: rgb(var(--gray));
    z-index: 1;
  }
  .l-fixed-footer__close::before, .l-fixed-footer__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 14px;
    height: 2px;
    background: #fff;
  }
  .l-fixed-footer__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .l-fixed-footer__close-txt {
    font-size: 0;
  }
  .l-fixed-footer__inner {
    position: relative;
    display: block;
    margin: 0;
  }
  .l-fixed-footer__head {
    margin-bottom: 10px;
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .l-fixed-footer__cat {
    justify-content: center;
  }
  .l-fixed-footer__cat-item {
    font-size: 1.4rem;
  }
  .l-fixed-footer__tel {
    flex: 1;
    margin: 5px 0;
  }
  .l-fixed-footer__tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: transparent;
    color: rgb(var(--black));
    border-radius: 0;
    height: auto;
  }
  .l-fixed-footer__tel-txt {
    display: block;
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: 0;
  }
  .l-fixed-footer__tel-num {
    font-size: 2.8rem;
  }
  .l-fixed-footer__tel-time {
    display: block;
    font-size: 1.2rem;
    color: rgb(var(--gray));
  }
  .l-fixed-footer__btn {
    flex: 1;
    margin: 0;
  }
  .l-fixed-footer__btn.is-line .l-fixed-footer__btn-link:hover {
    background: rgb(var(--line_hover));
    border-color: rgb(var(--line_hover));
  }
  .l-fixed-footer__btn.is-tone {
    margin-top: 5px;
  }
  .l-fixed-footer__btn.is-tone .l-fixed-footer__btn-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--hover));
    transition: all 0.3s ease;
    border-radius: 5px;
    opacity: 0;
    z-index: -1;
  }
  .l-fixed-footer__btn.is-tone .l-fixed-footer__btn-link:hover:before {
    opacity: 1;
  }
  .l-fixed-footer__btn-link {
    position: relative;
    border-radius: 5px;
    height: 55px;
    z-index: 1;
  }
  .l-fixed-footer__btn-txt {
    display: block;
    font-size: 1.4rem;
  }
  .l-fixed-footer__btn-txt-lg {
    font-size: 1.8rem;
  }
  .l-fixed-footer__btn-ico {
    position: relative;
    top: 2px;
    line-height: 1;
    width: 18px;
    margin-right: 6px;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 320px;
  height: 60px;
  padding: 0 20px 0;
  z-index: 2000;
  box-sizing: border-box;
  background: #fff;
  transition: all 0.3s ease;
}
.l-header.is-hide {
  transform: translateY(-100%);
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
    height: 138px;
    padding: 20px 50px 0;
    align-items: flex-start;
  }
}
@media all and (min-width: 768px) and (max-width: 1560px) {
  .l-header .l-header-info__logo {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 359px;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  width: 100%;
}
.l-header-info__logo {
  width: 285px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    width: auto;
    margin-right: auto;
  }
  .l-header-info__logo {
    width: 425px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: -9px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: rgb(var(--main));
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 2px;
  content: "";
  background: #fff;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 18px;
}
.l-nav-btn__line:nth-child(2) {
  top: 24px;
}
.l-nav-btn__line:nth-child(3) {
  top: 31px;
}
.l-nav-btn.is-open .l-nav-btn__line {
  top: 24px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  transform: rotate(45deg);
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100dvh;
  min-width: 320px;
  padding: 90px 20px 80px;
  background: #fff;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
@media all and (max-width: 767px) {
  .l-nav {
    overflow: auto;
    transform: translateX(120%);
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    transform: translateX(0);
  }
}
@media all and (min-width: 768px) {
  .l-nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-wrap: wrap;
    background: transparent;
  }
}
@media all and (min-width: 768px) and (max-width: 1560px) {
  .l-nav {
    width: 100%;
  }
}

/* .l-nav-contact
================================================== */
.l-nav-contact {
  margin-bottom: 5px;
}
.l-nav-contact__item {
  max-width: 295px;
  width: 100%;
  margin: 0 auto;
}
.l-nav-contact__item:not(:last-child) {
  margin-bottom: 10px;
}
.l-nav-contact__item.is-tel .l-nav-contact__item-link {
  background: rgb(var(--sub));
  height: 75px;
}
.l-nav-contact__item.is-line .l-nav-contact__item-link {
  background: rgb(var(--line));
}
.l-nav-contact__item.is-mail .l-nav-contact__item-link {
  background: var(--cv);
}
.l-nav-contact__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 70px;
  border-radius: 5px;
  color: #fff;
  line-height: 1;
  box-sizing: border-box;
}
.l-nav-contact__item-tel {
  margin-top: auto;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}
.l-nav-contact__item-num {
  font-size: 2.3rem;
}
.l-nav-contact__item-time {
  margin-bottom: auto;
  font-size: 1.3rem;
}
.l-nav-contact__item-txt {
  font-size: 1.5rem;
  font-weight: 500;
}
.l-nav-contact__item-ico {
  position: relative;
  top: 2px;
  margin-right: 6px;
  width: 20px;
}
@media all and (min-width: 768px) {
  .l-nav-contact {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .l-nav-contact__access {
    width: 120px;
    margin-right: 25px;
  }
  .l-nav-contact__access-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid rgb(var(--main));
    border-radius: 5px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  .l-nav-contact__access-link:hover {
    background: rgb(var(--main));
    color: #fff;
  }
  .l-nav-contact__access-link:hover .l-nav-contact__access-ico {
    color: #fff;
  }
  .l-nav-contact__access-txt {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .l-nav-contact__access-ico {
    position: relative;
    top: 3px;
    width: 13px;
    margin-left: auto;
  }
  .l-nav-contact__search {
    margin-right: 5px;
  }
  .l-nav-contact__search-link {
    display: grid;
    place-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgb(var(--sub));
    background: rgb(var(--sub));
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .l-nav-contact__search-link:hover {
    background: #1480DC;
  }
  .l-nav-contact__search-link svg {
    width: 20px;
  }
  .l-nav-contact__search-link.is-active {
    background: #1480dc;
  }
  .l-nav-contact__item {
    max-width: none;
    width: auto;
    margin: 0;
  }
  .l-nav-contact__item:not(:last-child) {
    margin-bottom: 0;
  }
  .l-nav-contact__item.is-tel {
    margin-right: 20px;
  }
  .l-nav-contact__item.is-tel .l-nav-contact__item-link {
    padding: 0;
    height: auto;
    background: none;
    pointer-events: none;
    color: rgb(var(--black));
  }
  .l-nav-contact__item.is-line {
    display: none;
  }
  .l-nav-contact__item.is-mail .l-nav-contact__item-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--hover));
    transition: all 0.3s ease;
    border-radius: 5px;
    opacity: 0;
    z-index: -1;
  }
  .l-nav-contact__item.is-mail .l-nav-contact__item-link:hover:before {
    opacity: 1;
  }
  .l-nav-contact__item-link {
    position: relative;
    width: auto;
    padding: 0 25px;
    height: 50px;
    z-index: 1;
    transition: all 0.3s ease;
  }
  .l-nav-contact__item-tel {
    margin-top: 0;
    font-size: 1.4rem;
  }
  .l-nav-contact__item-num {
    font-size: 3.2rem;
  }
  .l-nav-contact__item-time {
    display: none;
  }
  .l-nav-contact__item-txt {
    font-size: 1.6rem;
  }
  .l-nav-contact__item-ico {
    width: 19px;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list {
  padding: 0 20px;
}
.l-nav-list__item.is-parent .l-nav-list__item-link {
  cursor: pointer;
}
.l-nav-list__item.is-parent .l-nav-list__item-link.is-active .l-nav-list__item-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}
.l-nav-list__item-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 65px;
  border-bottom: 1px solid rgb(var(--border));
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
}
.l-nav-list__item-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: grid !important;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(var(--main));
}
.l-nav-list__item-arrow svg {
  color: #fff;
  width: 5px;
}
.l-nav-list__item-plus {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 12px;
  height: 12px;
}
.l-nav-list__item-plus::before, .l-nav-list__item-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: rgb(var(--main));
  transition: all 0.3s ease;
}
.l-nav-list__item-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.l-nav-list__child-wrap {
  padding: 20px;
  background: rgb(var(--bg01));
  display: none;
}
.l-nav-list__child-item:not(:last-child) {
  margin-bottom: 5px;
}
.l-nav-list__child-item-link {
  position: relative;
  display: block;
  padding-left: 17px;
  font-size: 1.3rem;
}
.l-nav-list__child-item-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: rgb(var(--main));
  width: 10px;
  height: 2px;
}
@media all and (min-width: 768px) {
  .l-nav-list {
    padding: 15px 0 0;
    display: flex;
    justify-content: flex-end;
  }
  .l-nav-list__item {
    position: relative;
    margin-left: 30px;
  }
  .l-nav-list__item.is-parent .l-nav-list__item-link:hover, .l-nav-list__item.is-parent .l-nav-list__item-link.is-active {
    color: rgb(var(--main));
  }
  .l-nav-list__item-link {
    min-height: auto;
    border-bottom: 0;
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link:hover {
    color: rgb(var(--main));
  }
  .l-nav-list__item-arrow {
    display: none !important;
  }
  .l-nav-list__item-plus {
    position: relative;
    top: 2px;
    right: auto;
    transform: none;
    margin-left: 6px;
  }
  .l-nav-list__child {
    padding: 20px;
    background: rgb(var(--main));
    width: 160px;
    box-sizing: border-box;
  }
  .l-nav-list__child-wrap {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    padding: 0;
    display: none;
  }
  .l-nav-list__child-item:not(:last-child) {
    margin-bottom: 5px;
  }
  .l-nav-list__child-item-link {
    padding-left: 0;
    font-size: 1.6rem;
    color: #fff;
  }
  .l-nav-list__child-item-link::before {
    display: none;
  }
  .l-nav-list__child-item-link:hover {
    text-decoration: underline;
  }
}

/* .l-nav-search
================================================ */
.l-nav-search {
  margin-top: 30px;
  padding: 20px;
  background: rgb(var(--bg01));
}
.l-nav-search__wrap {
  position: relative;
}
.l-nav-search .l-nav-search__input {
  padding: 5px 85px 5px 5px;
  width: 100%;
  height: 45px;
  font-size: 1.6rem;
  background: rgb(var(--white));
  box-sizing: border-box;
  border-color: rgb(var(--border));
  border-radius: 5px;
}
.l-nav-search .l-nav-search__btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  display: grid;
  place-content: center;
  width: 80px;
  height: 35px;
  background: rgb(var(--main));
  color: #fff;
  border-radius: 5px;
  color: #fff;
}
@media all and (min-width: 768px) {
  .l-nav-search {
    display: none;
    position: absolute;
    top: 50px;
    right: 50px;
    background: rgb(var(--main), 0.85);
    width: 460px;
    z-index: 100;
  }
  .l-nav-search.is-active {
    display: block;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
  z-index: 1;
}
.l-main-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: calc(100% - 280px);
  width: 100%;
  background: url(../img/home/bg_mv02_sp.jpg) no-repeat center/cover;
  z-index: -1;
}
.l-main-img__pic {
  margin: 0 20px;
}
.l-main-img__pic img {
  border-radius: 10px 10px 0 0;
}
.l-main-img__inner {
  margin: 0 20px;
  padding: 15px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: url(../img/home/bg_mv01.jpg) no-repeat center/cover;
  box-sizing: border-box;
}
.l-main-img__copy {
  display: grid;
}
.l-main-img__copy-fukidashi {
  grid-column: 1;
  grid-row: 1;
  transition-delay: 0.3s;
}
.l-main-img__copy-txt {
  grid-column: 1;
  grid-row: 1;
}
.l-main-img__copy-label {
  margin: 8px auto 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  font-size: 1.3rem;
  font-weight: 500;
  color: rgb(var(--main));
}
.l-main-img__copy-label-lg {
  font-size: 1.5rem;
}
.l-main-img__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.l-main-img__item {
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: linear-gradient(-45deg, #e88624 0, #e88624 50%, rgb(var(--orange)) 50%, rgb(var(--orange)) 100%);
  border: 3px solid #f0be8b;
  color: #fff;
  aspect-ratio: 1;
}
.l-main-img__item-txt {
  font-size: 1rem;
}
.l-main-img__item-lg {
  font-size: 1.5rem;
}
.l-main-img__item-num {
  font-size: 2.5rem;
}
.l-main-img__content {
  padding-top: 40px;
  padding-bottom: 40px;
}
.l-main-img__head {
  margin-bottom: 15px;
}
.l-main-img__head-list {
  margin-bottom: 3px;
}
.l-main-img__head-item {
  font-size: 1.4rem;
}
.l-main-img__head-txt {
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.5;
}
.l-main-img__box {
  position: relative;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  z-index: 1;
}
.l-main-img__box-img {
  position: absolute;
  right: 16px;
  bottom: 99%;
  width: 95px;
  z-index: -1;
}
@media all and (max-width: 390px) {
  .l-main-img__list {
    margin: 0 -10px;
  }
}
@media all and (min-width: 768px) {
  .l-main-img::before {
    height: calc(100% - 375px);
    background-image: url(../img/home/bg_mv02_pc.jpg);
  }
  .l-main-img__heroimg {
    max-width: 1820px;
    margin: auto;
    position: relative;
    z-index: 1;
  }
  .l-main-img__pic {
    position: relative;
    margin: 0 50px;
    z-index: -1;
  }
  .l-main-img__pic img {
    border-radius: 10px;
  }
  .l-main-img__inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    max-width: 1640px;
    width: 100%;
    height: 100%;
    padding: 0 80px;
    border-radius: 0;
    background: none;
  }
  .l-main-img__copy {
    max-width: 663px;
    width: 50%;
  }
  .l-main-img__copy-fukidashi {
    grid-column: 1;
    grid-row: 1;
  }
  .l-main-img__copy-txt {
    grid-column: 1;
    grid-row: 1;
  }
  .l-main-img__copy-label {
    margin: 20px 20px 30px;
    padding: 10px 15px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .l-main-img__copy-label-lg {
    font-size: 2.1rem;
  }
  .l-main-img__list {
    width: 410px;
    gap: 10px;
    margin-left: 20px;
  }
  .l-main-img__item-txt {
    font-size: 1.2rem;
  }
  .l-main-img__item-lg {
    font-size: 1.6rem;
  }
  .l-main-img__item-num {
    font-size: 4.3rem;
  }
  .l-main-img__content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-main-img__head {
    margin-bottom: 20px;
  }
  .l-main-img__head-list {
    margin-bottom: 4px;
  }
  .l-main-img__head-item {
    font-size: 1.6rem;
  }
  .l-main-img__head-txt {
    font-size: 3.7rem;
  }
  .l-main-img__box {
    padding: 30px 40px;
  }
  .l-main-img__box-img {
    right: 104px;
    width: 263px;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  position: relative;
  z-index: 1;
  height: 190px;
}
.l-sub-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 63%;
  background: rgb(var(--bg01));
  z-index: -1;
}
.l-sub-img__mv {
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  z-index: 1;
}
.l-sub-img__inner {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
}
.l-sub-img__head {
  padding: 0 30px 20px;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 400;
}
@media all and (max-width: 767px) {
  .l-sub-img__mv {
    max-height: 170px;
    overflow: hidden;
  }
  .l-sub-img__mv img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media all and (min-width: 768px) {
  .l-sub-img {
    position: relative;
    z-index: 1;
    height: 270px;
  }
  .l-sub-img::before {
    height: 55%;
  }
  .l-sub-img__mv {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 1820px;
    min-width: 1280px;
    width: calc(100% - 120px);
    height: calc(100% - 50px);
  }
  .l-sub-img__mv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .l-sub-img__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .l-sub-img__head {
    padding: 0 0 50px;
    font-size: 3.7rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .l-sub-img__mv {
    min-width: 0;
    width: calc(100% - 30px);
  }
}

/* .l-sub-img.is-fee
================================================ */
@media all and (min-width: 768px) {
  .l-sub-img.is-fee {
    height: 280px;
  }
}

/* .l-sidebar
================================================== */
@media all and (max-width: 767px) {
  .l-sidebar {
    padding: 60px 20px;
  }
}
@media all and (min-width: 768px) {
  .l-sidebar {
    padding-bottom: 200px;
  }
}

.l-sidebar-sec + .l-sidebar-sec {
  margin-top: 40px;
}
.l-sidebar-sec__head {
  margin-bottom: 20px;
  padding: 15px;
  background: rgb(var(--bg02));
  font-size: 1.5rem;
  line-height: 1.5;
}
@media all and (max-width: 767px) {
  .l-sidebar-sec__content {
    border: 1px solid rgb(var(--main));
    border-radius: 5px;
  }
  .l-sidebar-sec__trigger {
    padding: 20px;
    display: flex;
    align-items: center;
  }
  .l-sidebar-sec__trigger.is-active .l-sidebar-sec__trigger-plus::after {
    transform: translate(-50%, -50%) rotate(0);
  }
  .l-sidebar-sec__trigger-txt {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .l-sidebar-sec__trigger-plus {
    position: relative;
    width: 15px;
    height: 15px;
  }
  .l-sidebar-sec__trigger-plus::before, .l-sidebar-sec__trigger-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background: rgb(var(--main));
    transition: all 0.3s ease;
  }
  .l-sidebar-sec__trigger-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .l-sidebar-sec__body {
    position: relative;
  }
  .l-sidebar-sec__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background: rgb(var(--border));
  }
  .l-sidebar-sec__list {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .l-sidebar-sec__list-item {
    margin-right: 20px;
  }
  .l-sidebar-sec__list-link {
    display: flex;
    align-items: center;
  }
  .l-sidebar-sec__list-arw {
    width: 6px;
    margin-right: 5px;
    color: rgb(var(--main));
  }
}
@media all and (min-width: 768px) {
  .l-sidebar-sec__head {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  .l-sidebar-sec__body {
    display: block !important;
  }
  .l-sidebar-sec__list-item {
    border-bottom: 1px solid rgb(var(--border));
  }
  .l-sidebar-sec__list-link {
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
  }
  .l-sidebar-sec__list-link:hover {
    background: rgb(var(--bg01));
  }
  .l-sidebar-sec__list-arw {
    width: 8px;
    margin: -2px 7px 0 10px;
    color: rgb(var(--main));
  }
}

@-moz-document url-prefix() {
  .c-form.is-default th {
    vertical-align: top;
  }

  .c-form-label {
    top: 30px;
  }
}
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

@supports not (aspect-ratio: 1) {
  @media all and (max-width: 767px) {
    .l-main-img__item {
      width: 90px;
      height: 90px;
      margin: auto;
    }

    .c-cv01__circle-item {
      height: 110px;
    }
  }
  @media all and (min-width: 768px) {
    .l-main-img__item {
      height: 130px;
    }

    .c-cv01__circle-item {
      height: 110px;
    }
  }
}
/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgb(var(--main));
  border: 1px solid rgb(var(--main));
  color: #fff;
  display: grid;
  place-content: center;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 10px;
}
@media all and (min-width: 768px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #fff;
    color: rgb(var(--main));
  }
}

.swiper-button-prev {
  left: -55px;
  padding-left: 30px;
}
.swiper-button-prev svg {
  transform: scale(-1, 1);
}
@media all and (min-width: 768px) {
  .swiper-button-prev {
    padding-left: 0;
    left: -20px;
  }
}

.swiper-button-next {
  right: -55px;
  padding-right: 30px;
}
@media all and (min-width: 768px) {
  .swiper-button-next {
    padding-right: 0;
    right: -20px;
  }
}

.swiper-pagination {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(var(--border));
}
.swiper-pagination-current {
  font-size: 2.1rem;
  color: rgb(var(--orange));
}
.swiper-pagination-total {
  color: rgb(var(--black));
}
@media all and (min-width: 768px) {
  .swiper-pagination {
    margin-top: 0;
    font-size: 2.1rem;
  }
  .swiper-pagination-current {
    font-size: 2.8rem;
  }
}

/* .js-feature-slider
================================*/
.js-feature-slider {
  overflow: visible;
}
.js-feature-slider .swiper-button-prev::after, .js-feature-slider .swiper-button-next::after {
  display: none;
}
.js-feature-slider .swiper-pagination {
  top: calc(100% + 10px);
}
.js-feature-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgb(var(--bg01));
  opacity: 1;
}
.js-feature-slider .swiper-pagination-bullet-active {
  background: rgb(var(--main));
}
@media all and (max-width: 767px) {
  .js-feature-slider .swiper-button-prev {
    left: -55px;
  }
  .js-feature-slider .swiper-button-next {
    right: -55px;
  }
}

#about .c-bnr01__item:nth-child(3) {
  order: -1;
}

/* .about-ally
===================================*/
.about-ally {
  position: relative;
  z-index: 1;
}
.about-ally__inner {
  position: relative;
  z-index: 1;
  padding-top: 46px;
  padding-bottom: 53px;
}
.about-ally__circle01 {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: -1;
  width: 220px;
  height: 220px;
  aspect-ratio: 1;
}
.about-ally__circle02 {
  position: absolute;
  top: 211px;
  left: 0;
  width: 158px;
  height: 158px;
  aspect-ratio: 1;
  z-index: -1;
}
.about-ally__img {
  max-width: 255px;
  margin: 0 auto 24px;
}
.about-ally__head {
  position: relative;
  z-index: 1;
}
.about-ally__head-ico {
  position: absolute;
  top: 5px;
  left: 55%;
  width: 100px;
  z-index: -1;
}
.about-ally__txt {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}
.about-ally__txt + .about-ally__txt {
  margin-top: 0.4em;
}
@media all and (min-width: 768px) {
  .about-ally__inner {
    padding-top: 116px;
    padding-bottom: 120px;
  }
  .about-ally__circle01 {
    top: 0;
    right: 35%;
    margin: 0 auto;
    z-index: -1;
    width: 501px;
    height: 501px;
  }
  .about-ally__circle02 {
    top: auto;
    left: -180px;
    bottom: 50px;
    width: 359px;
    height: 359px;
  }
  .about-ally__content {
    display: flex;
    align-items: center;
  }
  .about-ally__img {
    max-width: 480px;
    margin: 0;
  }
  .about-ally__area-txt {
    flex: 1;
    padding: 0 0 0 66px;
  }
  .about-ally__head {
    position: relative;
  }
  .about-ally__head-ico {
    top: 0;
    left: 46%;
    width: 200px;
  }
  .about-ally__head-marker {
    background: linear-gradient(to top, rgb(var(--deco01)) 10px, transparent 10px);
  }
  .about-ally__txt {
    font-size: 1.6rem;
  }
  .about-ally__txt + .about-ally__txt {
    margin-top: 1em;
  }
}

/* .about-merit
===================================*/
.about-merit {
  background-color: rgb(var(--bg03));
}
.about-merit__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-merit-list__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-sizing: border-box;
}
.about-merit-list__item + .about-merit-list__item {
  margin-top: 15px;
}
.about-merit-list__info {
  margin-bottom: 20px;
}
@media all and (min-width: 768px) {
  .about-merit__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .about-merit-list__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 59px 60px;
  }
  .about-merit-list__item + .about-merit-list__item {
    margin-top: 20px;
  }
  .about-merit-list__info {
    max-width: 490px;
    width: 100%;
    margin-bottom: 0;
  }
  .about-merit-list__head {
    margin-bottom: 23px;
  }
  .about-merit-list__img {
    max-width: 450px;
    width: 100%;
  }
}

/* .about-office
===================================*/
.about-office__inner {
  padding-top: 60px;
  padding-bottom: 57px;
}
.about-office-table {
  margin-bottom: 51px;
}
.about-office-table th, .about-office-table td {
  border: 1px solid rgb(var(--border));
  padding: 10.3px 20px;
  box-sizing: border-box;
}
.about-office-table tr {
  margin-bottom: -1px;
}
.about-office-table th {
  background-color: rgb(var(--main));
  color: #fff;
  text-align: left;
  margin-bottom: -1px;
}
.about-office-card {
  margin-bottom: 35px;
}
.about-office-card__img {
  margin-bottom: 15px;
}
.about-office-card__img-txt {
  font-size: 1.3rem;
  line-height: 1.8461538462;
  margin-top: 11px;
}
.about-office-gallery__item + .about-office-gallery__item {
  margin-top: 39px;
}
.about-office-gallery__img {
  margin-bottom: 9px;
}
.about-office-gallery__txt {
  font-size: 1.3rem;
  line-height: 1.8461538462;
}
@media all and (max-width: 767px) {
  .about-office table, .about-office tr, .about-office th, .about-office td {
    display: grid;
  }
}
@media all and (min-width: 768px) {
  .about-office__inner {
    padding-top: 110px;
    padding-bottom: 114px;
  }
  .about-office__head {
    margin-bottom: 36px;
  }
  .about-office-table {
    margin-bottom: 81px;
  }
  .about-office-table th, .about-office-table td {
    padding: 12.5px 20px;
  }
  .about-office-table tr {
    margin-bottom: -1px;
  }
  .about-office-table th {
    width: 220px;
    text-align: left;
    margin-bottom: -1px;
  }
  .about-office-card {
    display: flex;
    justify-content: space-between;
    margin-bottom: 53px;
  }
  .about-office-card__img {
    max-width: 500px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 41px;
  }
  .about-office-card__img-txt {
    font-size: 1.4rem;
    margin-top: 16px;
  }
  .about-office-card__info {
    max-width: 559px;
    width: 100%;
  }
  .about-office-gallery {
    display: flex;
  }
  .about-office-gallery__item + .about-office-gallery__item {
    margin-top: 0;
    margin-left: 31px;
  }
  .about-office-gallery__img {
    margin-bottom: 16px;
  }
  .about-office-gallery__txt {
    font-size: 1.4rem;
  }
}

/* .about-intro
===================================*/
.about-intro__box {
  padding-bottom: 40px;
}
.about-intro-career {
  margin-top: 20px;
  margin-bottom: 25px;
}
.about-intro-career-set + .about-intro-career-set {
  border-top: 1px solid rgb(var(--border));
  padding-top: 25px;
  margin-top: 30px;
}
.about-intro-career-set__list-item {
  display: flex;
}
.about-intro-career-set__list-item + .about-intro-career-set__list-item {
  margin-top: 6px;
}
.about-intro-career-set__list-head {
  width: 84px;
  font-weight: 500;
  margin-right: 10px;
}
.about-intro-career-set__list-txt {
  flex: 1;
  line-height: 1.7857142857;
}
.about-intro-box {
  border: 1px solid rgb(var(--border));
  padding: 27px 20px 25px;
  box-sizing: border-box;
}
.about-intro-box__head {
  margin-bottom: 10px;
}
.about-intro-box__txt {
  line-height: 1.7857142857;
}
.about-intro-box__txt + .about-intro-box__txt {
  margin-top: 13px;
}
@media all and (min-width: 768px) {
  .about-intro__box {
    padding-bottom: 60px;
  }
  .about-intro-career {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    margin-bottom: 34px;
  }
  .about-intro-career-set {
    max-width: 460px;
    width: 100%;
  }
  .about-intro-career-set + .about-intro-career-set {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    border-left: 1px solid rgb(var(--border));
    padding-left: 30px;
    margin-left: 30px;
  }
  .about-intro-career-set__list-head {
    width: 90px;
    margin-right: 20px;
  }
  .about-intro-career-set__list-txt {
    line-height: 1.8125;
  }
  .about-intro-box {
    padding: 39px;
  }
  .about-intro-box__txt + .about-intro-box__txt {
    margin-top: 0;
  }
}

/* .about-access
===================================*/
.about-access__inner {
  padding-top: 53px;
  padding-bottom: 60px;
}
.about-access__map {
  margin-bottom: 20px;
  height: 350px;
}
.about-access__map iframe {
  width: 100%;
  height: 100%;
}
.about-access__item {
  padding-bottom: 30px;
}
.about-access__item:not(:first-child) {
  padding-top: 25px;
  border-top: 1px solid rgb(var(--border));
}
.about-access__item:last-child .about-access__btn {
  margin-top: 13px;
}
.about-access__addr {
  margin-bottom: 13px;
}
.about-access__parking {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.about-access__parking-label {
  border-radius: 5px;
  padding: 2px 5px;
  color: #fff;
  background: rgb(var(--orange));
  line-height: 1.5;
}
.about-access__parking-txt {
  flex: 1;
  margin-left: 7px;
}
.about-access__box {
  padding: 20px 20px 10px;
  border-radius: 10px;
  border: 1px solid rgb(var(--border));
  box-sizing: border-box;
  margin-bottom: 50px;
}
.about-access__box-head {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.about-access__box-head-ico {
  position: relative;
  top: 2px;
  width: 14px;
  margin-right: 12px;
}
.about-access__box-head-txt {
  flex: 1;
  font-size: 1.9rem;
  font-weight: 400;
}
.about-access__box-item {
  padding: 12px 0;
  line-height: 1.5;
}
.about-access__box-item:not(:last-child) {
  border-bottom: 1px solid rgb(var(--border));
}
.about-access-station {
  margin-bottom: 35px;
}
.about-access-station__head {
  margin-bottom: 45px;
}
.about-access-station-list__item {
  position: relative;
}
.about-access-station-list__item + .about-access-station-list__item {
  margin-top: 67px;
}
.about-access-station-list__item:last-child::after {
  display: none;
}
.about-access-station-list__item::after {
  content: "";
  border-style: solid;
  border-width: 20px 14px 0 14px;
  border-color: rgb(var(--sub)) transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
}
.about-access-station-list__img {
  position: relative;
  margin: 0 0 10px 10px;
}
.about-access-station-list__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: rgb(var(--main));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  left: -10px;
}
.about-access-station-list__txt {
  margin-left: 10px;
}
.about-access-parking__set {
  border-radius: 10px;
  background-color: rgb(var(--bg01));
  padding: 25px 20px;
  box-sizing: border-box;
}
.about-access-parking__set + .about-access-parking__set {
  margin-top: 12px;
}
.about-access-parking__head {
  margin-bottom: 3px;
}
.about-access-parking__info {
  margin-bottom: 20px;
}
.about-access-parking__note {
  display: flex;
  margin-top: 18px;
}
.about-access-parking__note-lbl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 11px;
  font-weight: bold;
}
.about-access-parking__note-txt {
  flex: 1;
}
.about-access__btn-wrap .about-access__btn {
  max-width: 280px;
}
@media all and (min-width: 768px) {
  .about-access__inner {
    padding-top: 108px;
    padding-bottom: 120px;
  }
  .about-access__map {
    margin-bottom: 30px;
    height: 450px;
  }
  .about-access__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-access__item {
    padding: 0 40px 0 0;
  }
  .about-access__item:not(:first-child) {
    padding: 0 0 0 40px;
    border-top: 0;
    border-left: 1px solid rgb(var(--border));
  }
  .about-access__item:last-child .about-access__btn {
    margin-top: 25px;
  }
  .about-access__parking {
    align-items: center;
    margin-bottom: 20px;
  }
  .about-access__parking-label {
    padding: 4px 8px;
    font-size: 1.4rem;
  }
  .about-access__parking-txt {
    margin-left: 9px;
  }
  .about-access__addr {
    margin-bottom: 5px;
  }
  .about-access__box {
    padding: 38px;
    margin-top: 50px;
    margin-bottom: 95px;
  }
  .about-access__box-head-ico {
    width: 19px;
    margin-right: 10px;
  }
  .about-access__box-head-txt {
    font-size: 2.1rem;
  }
  .about-access__box-list {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-access__box-item {
    padding: 0 0 0 40px;
    line-height: 1.5;
  }
  .about-access__box-item:not(:last-child) {
    padding: 0 40px 0 0;
    border-bottom: 0;
    border-right: 1px solid rgb(var(--border));
  }
  .about-access-station {
    margin-bottom: 45px;
  }
  .about-access-station__head {
    margin-bottom: 41px;
  }
  .about-access-station-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: -21px;
    margin-bottom: -50px;
    margin-right: 33px;
  }
  .about-access-station-list__item {
    width: calc(25% - 31px);
    margin-left: 31px;
    margin-bottom: 50px;
  }
  .about-access-station-list__item + .about-access-station-list__item {
    margin-top: 0;
  }
  .about-access-station-list__item:last-child::after {
    display: none;
  }
  .about-access-station-list__item::after {
    border-width: 10px 0 10px 14px;
    border-color: transparent transparent transparent rgb(var(--sub));
    left: unset;
    bottom: unset;
    position: absolute;
    top: calc(50% - 40px);
    right: -23px;
    transform: translateY(-50%);
  }
  .about-access-station-list__img {
    position: relative;
    margin: 0 0 13px 0;
  }
  .about-access-station-list__txt {
    line-height: 1.8125;
    margin-left: 0;
  }
  .about-access-parking__set {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 61px 60px;
  }
  .about-access-parking__set + .about-access-parking__set {
    margin-top: 22px;
  }
  .about-access-parking__set:nth-of-type(2) {
    padding: 55px 60px;
  }
  .about-access-parking__info {
    max-width: 430px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 40px;
  }
  .about-access-parking__img {
    max-width: 510px;
    width: 100%;
  }
  .about-access-parking__note {
    margin-top: 45px;
  }
  .about-access-parking__note-lbl {
    margin-right: 16px;
  }
}

/* .about-bnr
===================================*/
.about-bnr__inner {
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .about-bnr__inner {
    padding-bottom: 120px;
  }
}

#case .l-container {
  padding-top: 50px;
}
@media all and (max-width: 767px) {
  #case .l-footer-bnr__inner {
    padding-top: 0;
  }
}
@media all and (min-width: 768px) {
  #case .l-container {
    padding-top: 90px;
  }
}

.case-archive__inner {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .case-archive__inner {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}

.case-article__info {
  margin-bottom: 50px;
}
.case-article__head {
  padding-bottom: 20px;
}
.case-article__head h1 {
  margin-top: 10px;
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.case-article__box {
  padding: 5px 20px 30px;
  border: 1px solid rgb(var(--main));
  box-sizing: border-box;
}
.case-article__box + .case-article__box {
  margin-top: 10px;
}
.case-article__box-name {
  padding: 15px 0 12px;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid rgb(var(--border));
}
.case-article__box-list {
  padding: 14px 0 10px;
  border-bottom: 1px solid rgb(var(--border));
  line-height: 1.7857;
}
.case-article__box-detail {
  font-weight: 500;
}
.case-article__content-body {
  margin-bottom: 50px;
}
.case-article__content-cv {
  margin-top: 50px;
}
.case-article__content > .c-btn01 + .c-btn01 {
  margin-top: -20px;
}
.case-article__related {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .case-article__info {
    margin-bottom: 94px;
  }
  .case-article__head {
    padding-bottom: 30px;
  }
  .case-article__head h1 {
    margin-top: 20px;
    font-size: 2.8rem;
  }
  .case-article__box {
    padding: 40px;
    border-color: rgb(var(--border));
  }
  .case-article__box-name {
    padding: 0 0 12px;
    font-size: 1.8rem;
  }
  .case-article__box-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
    margin-bottom: 30px;
  }
  .case-article__box-list {
    display: flex;
    align-items: flex-start;
    padding: 14px 0 10px;
    line-height: 1.5625;
  }
  .case-article__box-detail {
    padding-right: 10px;
  }
  .case-article__box-desc {
    flex: 1;
  }
  .case-article__content-body {
    margin-bottom: 60px;
  }
  .case-article__content-cv {
    margin-top: 40px;
  }
  .case-article__related {
    padding-top: 100px;
  }
}

#column .l-container {
  padding-top: 50px;
}
@media all and (max-width: 767px) {
  #column .l-footer-bnr__inner {
    padding-top: 0;
  }
}
@media all and (min-width: 768px) {
  #column .l-container {
    padding-top: 90px;
  }
}

.column-archive__inner {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .column-archive__inner {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}

.column-article__info {
  margin-bottom: 20px;
}
.column-article__info .c-case-archive01__item-reparation {
  margin-top: 20px;
}
.column-article__head h1 {
  margin-top: 10px;
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.column-article__head-date {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
.column-article__head-date-txt {
  font-size: 1.3rem;
}
.column-article__head-date-txt + .column-article__head-date-txt {
  margin-left: 1em;
}
.column-article__content-lead {
  margin-bottom: 20px;
}
.column-article__content-thumbnail {
  text-align: center;
  margin: 0 auto 50px;
}
.column-article__content-toc {
  margin-top: 20px;
  border: 1px solid rgb(var(--border));
}
.column-article__content-toc-head {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 5px 50px;
}
.column-article__content-toc-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 22px;
  height: 15px;
  background: url(../img/common/ico_toc01.png) no-repeat center/contain;
  transform: translate(0, -50%);
}
.column-article__content-toc-content {
  border-top: 1px solid rgb(var(--border));
  padding: 25px;
}
.column-article__content-toc-content ul {
  counter-reset: num01;
  list-style: none;
}
.column-article__content-toc-content ul a {
  color: rgb(var(--main));
  text-decoration: underline;
}
.column-article__content-toc-content ul .toc-h2 {
  margin-bottom: 5px;
  font-weight: 500;
  counter-increment: num01;
  counter-reset: num02;
}
.column-article__content-toc-content ul .toc-h2 a::before {
  content: counter(num01) ".";
}
.column-article__content-toc-content ul .toc-h3 {
  padding-left: 15px;
  margin-bottom: 5px;
  counter-increment: num02;
  font-size: 0.8em;
}
.column-article__content-toc-content ul .toc-h3 a::before {
  content: counter(num02) ".";
}
.column-article__content-toc-content ul .toc-h3 + .toc-h2 {
  margin-top: 15px;
}
.column-article__content-body {
  margin-top: 50px;
  margin-bottom: 50px;
}
.column-article__content-cv {
  margin-top: 50px;
}
.column-article__content > .c-btn01 + .c-btn01 {
  margin-top: -20px;
}
.column-article__related {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .column-article__info {
    margin-bottom: 30px;
  }
  .column-article__info .c-case-archive01__item-reparation {
    margin-top: 30px;
  }
  .column-article__head h1 {
    font-size: 2.8rem;
  }
  .column-article__head-date {
    margin-top: 20px;
  }
  .column-article__head-date-txt {
    font-size: 1.4rem;
  }
  .column-article__content-lead {
    margin-bottom: 30px;
  }
  .column-article__content-thumbnail {
    margin-bottom: 60px;
  }
  .column-article__content-toc {
    margin-top: 60px;
  }
  .column-article__content-toc-head {
    font-size: 1.8rem;
    padding: 8px 50px;
  }
  .column-article__content-toc-content {
    padding: 30px 40px;
  }
  .column-article__content-toc-content ul {
    counter-reset: num01;
    list-style: none;
  }
  .column-article__content-toc-content ul a {
    color: rgb(var(--main));
    text-decoration: underline;
  }
  .column-article__content-toc-content ul .toc-h2 {
    margin-bottom: 15px;
  }
  .column-article__content-toc-content ul .toc-h3 {
    padding-left: 20px;
  }
  .column-article__content-toc-content ul .toc-h3 + .toc-h2 {
    margin-top: 20px;
  }
  .column-article__content-body {
    margin-top: 70px;
    margin-bottom: 60px;
  }
  .column-article__content-cv {
    margin-top: 40px;
  }
  .column-article__related {
    padding-top: 100px;
  }
}

.contact-reserve__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact-reserve__head {
  margin-bottom: 20px;
  text-align: center;
}
.contact-reserve__head-txt {
  position: relative;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  margin: 0 auto 20px;
}
.contact-reserve__head-txt::before, .contact-reserve__head-txt::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 1px;
  background: rgb(var(--main));
}
.contact-reserve__head-txt::before {
  left: -10px;
  transform: rotate(-15deg);
}
.contact-reserve__head-txt::after {
  right: -10px;
  transform: rotate(15deg);
}
.contact-reserve__head-tit {
  font-size: 2.3rem;
  line-height: 1.5;
}
.contact-reserve__txt {
  text-align: center;
  margin-bottom: 40px;
}
.contact-reserve__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.contact-reserve__item {
  display: grid;
  place-content: center;
  height: 76px;
  background: rgb(var(--deco02));
  text-align: center;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .contact-reserve__inner {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .contact-reserve__head {
    margin-bottom: 38px;
  }
  .contact-reserve__head-txt {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .contact-reserve__head-tit {
    font-size: 3.2rem;
  }
  .contact-reserve__txt {
    margin-bottom: 80px;
  }
  .contact-reserve__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .contact-reserve__item {
    height: 99px;
    font-size: 2.2rem;
  }
}

/* contact-phone
------------------------------------- */
.contact-phone {
  background: url(../img/contact/bg_contact01.jpg) no-repeat center/cover;
}
.contact-phone__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact-phone__box {
  padding: 40px 20px;
  border-radius: 6px;
  background: #fff;
}
.contact-phone__box-item + .contact-phone__box-item {
  margin-top: 30px;
}
.contact-phone__box-head {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.contact-phone__box-tel-btn {
  max-width: 280px;
  width: 100%;
  margin: auto;
}
.contact-phone__box-tel-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 75px;
  width: 100%;
  border-radius: 6px;
  background: rgb(var(--sub));
  color: #fff;
  line-height: 1;
}
.contact-phone__box-tel-txt {
  font-size: 1.3rem;
  letter-spacing: 0;
}
.contact-phone__box-tel-num {
  margin-left: 2px;
  font-size: 2.3rem;
  letter-spacing: 0;
}
.contact-phone__box-tel-time {
  margin-top: 5px;
  font-size: 1.3rem;
}
.contact-phone__box-btn {
  margin-top: 0;
}
.contact-phone__box-time {
  margin-top: 5px;
  text-align: center;
  font-size: 1.3rem;
}
@media all and (min-width: 768px) {
  .contact-phone__inner {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .contact-phone__box {
    padding: 45px 98px;
    border-radius: 10px;
    display: flex;
  }
  .contact-phone__box-item {
    width: 50%;
    box-sizing: border-box;
  }
  .contact-phone__box-item + .contact-phone__box-item {
    margin-top: 0;
    padding-left: 84px;
    border-left: 1px solid rgb(var(--border));
  }
  .contact-phone__box-head {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
  .contact-phone__box-tel-link {
    pointer-events: none;
    min-height: auto;
    border-radius: 0;
    background: transparent;
    color: rgb(var(--black));
  }
  .contact-phone__box-tel-txt {
    padding-top: 10px;
    font-size: 1.6rem;
  }
  .contact-phone__box-tel-num {
    margin-left: 6px;
    font-size: 3.7rem;
  }
  .contact-phone__box-tel-time {
    margin-top: 14px;
    font-size: 1.4rem;
  }
  .contact-phone__box-btn {
    max-width: 360px;
  }
  .contact-phone__box-time {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}

/* contact-form
------------------------------------- */
.contact-form {
  border-bottom: 1px solid rgb(var(--border));
}
.contact-form__inner {
  padding-top: 60px;
  padding-bottom: 80px;
}
.contact-form__txt {
  margin-bottom: 34px;
}
.contact-form__box-head {
  padding: 5px;
  color: #fff;
  font-size: 1.9rem;
  text-align: center;
  background: rgb(var(--main));
  line-height: 1.5;
}
.contact-form__box-content {
  padding: 30px 20px;
  border: 1px solid rgb(var(--border));
  border-top: 0;
}
.contact-form__box-list + .contact-form__box-list {
  margin-top: 23px;
}
.contact-form__box-detail {
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.contact-form__flow {
  margin-top: 40px;
}
.contact-form__note {
  margin-top: 20px;
}
.contact-form__note-txt {
  margin-bottom: 5px;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgb(var(--gray));
}
.contact-form__note-txt::before {
  content: "※";
}
@media all and (min-width: 768px) {
  .contact-form__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .contact-form__txt {
    margin-bottom: 40px;
  }
  .contact-form__box-head {
    padding: 10px 25px;
    font-size: 2.4rem;
    text-align: left;
  }
  .contact-form__box-content {
    padding: 35px 30px;
  }
  .contact-form__box-list + .contact-form__box-list {
    margin-top: 40px;
  }
  .contact-form__box-detail {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .contact-form__flow {
    margin-top: 80px;
    margin-bottom: 40px;
  }
  .contact-form__flow-txt {
    text-align: center;
  }
  .contact-form__note {
    margin: 30px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact-form__note-txt {
    font-size: 1.4rem;
  }
}

.contact-message__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .contact-message__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .contact-message__txt {
    text-align: center;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.faq-archive__inner {
  padding-top: 60px;
}
@media all and (min-width: 768px) {
  .faq-archive__inner {
    padding-top: 90px;
  }
}

/* .feature-intro
===================================*/
.feature-intro {
  overflow: hidden;
}
.feature-intro__inner {
  padding-top: 55px;
  padding-bottom: 55px;
}
.feature-intro__img {
  position: relative;
  max-width: 335px;
  width: 100%;
  margin: 0 auto 25px;
}
.feature-intro__circle01 {
  position: absolute;
  bottom: -70px;
  left: -70px;
  z-index: -1;
  width: 142px;
  height: 142px;
  aspect-ratio: 1;
}
.feature-intro__head {
  position: relative;
  z-index: 1;
}
.feature-intro__head-ico {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 96px;
  z-index: -1;
}
.feature-intro__head-ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.feature-intro__txt {
  position: relative;
  z-index: 1;
}
@media all and (min-width: 768px) {
  .feature-intro__inner {
    padding-top: 116px;
    padding-bottom: 120px;
  }
  .feature-intro__content {
    display: flex;
    align-items: center;
  }
  .feature-intro__img {
    max-width: 480px;
    width: 100%;
    margin: 0 60px 0 0;
  }
  .feature-intro__circle01 {
    bottom: -142px;
    left: -142px;
    width: 285px;
    height: 285px;
  }
  .feature-intro__area-txt {
    max-width: 560px;
    width: 100%;
  }
  .feature-intro__head {
    position: relative;
  }
  .feature-intro__head-ico {
    width: 191px;
    right: 121px;
  }
  .feature-intro__head-marker {
    background: linear-gradient(to top, rgb(var(--deco01)) 10px, transparent 10px);
  }
}

/* .feature-main
===================================*/
.feature-main {
  background: url(../img/feature/bg_main01_sp.jpg) no-repeat center/cover;
}
.feature-main__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.feature-main-sec {
  overflow: hidden;
  background-color: #fff;
  padding: 25px 20px;
  box-sizing: border-box;
}
.feature-main-sec + .feature-main-sec {
  margin-top: 15px;
}
.feature-main-sec-slider .swiper-slide {
  position: relative;
  padding-top: 61%;
  border: 1px solid rgb(var(--border));
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.feature-main-sec-slider .swiper-slide img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.feature-main-sec__label {
  margin-bottom: 15px;
}
.feature-main-sec__head {
  margin-bottom: 17px;
}
.feature-main-sec__info {
  margin-bottom: 20px;
}
.feature-main-sec__txt {
  word-break: break-word;
}
.feature-main-sec__note {
  margin-top: 15px;
}
.feature-main-sec__img {
  position: relative;
}
.feature-main-sec__img-txt {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5384615385;
  margin-bottom: 5px;
}
.feature-main-sec__img-ico {
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}
.feature-main-sec__btn-wrap {
  margin-top: 30px;
}
.feature-main-sec__btn + .feature-main-sec__btn {
  margin-top: 15px;
}
.feature-main-sec-point {
  margin-top: 65px;
}
.feature-main-sec-point-list__item {
  display: flex;
  align-items: center;
  background-color: rgb(var(--bg01));
  padding: 20px 19px;
  box-sizing: border-box;
}
.feature-main-sec-point-list__item + .feature-main-sec-point-list__item {
  margin-top: 1px;
}
.feature-main-sec-point-list__img {
  width: 80px;
  margin-right: 14px;
}
.feature-main-sec-point-list__txt {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.5333333333;
}
.feature-main-sec-contact {
  background: url(../img/common/cv/bg_cv01_sp.jpg) no-repeat center/cover;
  padding: 10px;
  box-sizing: border-box;
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .feature-main {
    background: url(../img/feature/bg_main01_pc.jpg) no-repeat center/cover;
  }
  .feature-main__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .feature-main-sec {
    padding: 60px;
  }
  .feature-main-sec + .feature-main-sec {
    margin-top: 20px;
  }
  .feature-main-sec__label {
    margin-bottom: 10px;
  }
  .feature-main-sec__head {
    margin-bottom: 23px;
  }
  .feature-main-sec__con {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .feature-main-sec__info {
    max-width: 490px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 40px;
  }
  .feature-main-sec__note {
    margin-top: 20px;
  }
  .feature-main-sec__img {
    max-width: 450px;
    width: 100%;
    margin-top: 3px;
  }
  .feature-main-sec__img.is-zoom {
    cursor: pointer;
  }
  .feature-main-sec__img-txt {
    font-size: 1.4rem;
  }
  .feature-main-sec__img-ico {
    width: 30px;
  }
  .feature-main-sec__btn {
    margin: 0;
  }
  .feature-main-sec__btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  .feature-main-sec__btn + .feature-main-sec__btn {
    margin: 0 0 0 20px;
  }
  .feature-main-sec-point {
    margin-top: 30px;
  }
  .feature-main-sec-point-list {
    display: flex;
    align-items: stretch;
    margin-left: -1px;
  }
  .feature-main-sec-point-list__item {
    width: calc(25% - 1px);
    margin-left: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 14px 35px;
  }
  .feature-main-sec-point-list__item + .feature-main-sec-point-list__item {
    margin-top: 0;
    margin-left: 1px;
  }
  .feature-main-sec-point-list__img {
    width: 106px;
    margin: 0 auto 15px;
  }
  .feature-main-sec-point-list__txt {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
  }
  .feature-main-sec-contact {
    background: url(../img/common/cv/bg_cv01_pc.jpg) no-repeat center/cover;
    padding: 20px;
    margin-top: 40px;
  }
  .feature-main-sec-contact__box {
    padding: 20px 40px 30px;
  }
  .feature-main-sec-contact__tel {
    max-width: 255px;
    margin-top: 25px;
  }
  .feature-main-sec-contact__tel-num {
    font-size: 2.7rem;
  }
  .feature-main-sec-contact__tel-time {
    font-size: 1.2rem;
  }
  .feature-main-sec-contact__reception {
    margin-bottom: 16px;
  }
  .feature-main-sec-contact__reception-circle {
    width: 65px;
  }
  .feature-main-sec-contact__reception-txt {
    font-size: 1.8rem;
  }
  .feature-main-sec-contact__contact {
    margin-top: 9px;
  }
  .feature-main-sec-contact__btn {
    max-width: 287px !important;
    width: 100%;
  }
  .feature-main-sec-contact__btn + .flow-intro-sec-contact__btn {
    margin-left: 1px;
  }
  .feature-main-sec-contact__btn-link {
    min-height: 65px;
  }
}

/* .feature-bnr
===================================*/
.feature-bnr__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .feature-bnr__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* .feature-intro02
===================================*/
.feature-intro02__box {
  padding-bottom: 30px;
}
.feature-intro02-btn {
  margin-top: 15px;
}
@media all and (min-width: 768px) {
  .feature-intro02__box {
    padding-bottom: 60px;
  }
  .feature-intro02-btn {
    margin-top: 12px !important;
    margin-right: -20px !important;
  }
}

/* .popup-image
===================================*/
.popup-image {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.popup-image.is-active {
  opacity: 1;
  visibility: visible;
}
.popup-image__ico {
  width: 40px;
  margin-left: auto;
  cursor: pointer;
}
.popup-image__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .popup-image {
    max-width: 670px;
    width: 100%;
    max-height: 85%;
    padding: 0;
    overflow-y: auto;
  }
}

/* .fee-negotiation
===================================*/
.fee-negotiation__inner {
  padding-top: 42px;
  padding-bottom: 46px;
}
.fee-negotiation__head {
  margin-bottom: 19px;
}
.fee-negotiation-set + .fee-negotiation-set {
  margin-top: 33px;
}
.fee-negotiation-set:nth-of-type(1) .fee-negotiation-set__list-item.is-full .fee-negotiation-set__list-info {
  padding-bottom: 19px;
}
.fee-negotiation-set__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-bottom: -10px;
}
.fee-negotiation-set__list-item {
  width: calc(50% - 10px);
  margin-left: 10px;
  margin-bottom: 10px;
}
.fee-negotiation-set__list-item.is-full {
  width: 100%;
}
.fee-negotiation-set__list-item.is-main .fee-negotiation-set__list-lbl {
  background-color: rgb(var(--main));
}
.fee-negotiation-set__list-item.is-main .fee-negotiation-set__list-info {
  padding: 15px 31px;
}
.fee-negotiation-set__list-lbl {
  font-weight: 500;
  background-color: rgb(var(--sub));
  color: #fff;
  text-align: center;
  padding: 5px;
  border: 1px solid rgb(var(--border));
  box-sizing: border-box;
  margin-bottom: -1px;
}
.fee-negotiation-set__list-info {
  padding: 13px;
  border: 1px solid rgb(var(--border));
  box-sizing: border-box;
  text-align: center;
}
.fee-negotiation-set__list-head {
  font-weight: 500;
  margin-bottom: 1px;
}
.fee-negotiation-set__list-price {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
}
.fee-negotiation-set__list-price.is-orange {
  font-size: 1.8rem;
  color: rgb(var(--orange));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fee-negotiation-set__list-price.is-orange .fee-negotiation-set__list-price-sub {
  font-size: 1.4rem;
  color: rgb(var(--black));
  line-height: 2;
  word-break: break-word;
}
.fee-negotiation-set__list-price-unit {
  font-size: 1.8rem;
}
@media all and (min-width: 768px) {
  .fee-negotiation__inner {
    padding-top: 110px;
    padding-bottom: 90px;
  }
  .fee-negotiation__head {
    margin-bottom: 28px;
  }
  .fee-negotiation-set + .fee-negotiation-set {
    margin-top: 50px;
  }
  .fee-negotiation-set:nth-of-type(1) .fee-negotiation-set__list-item.is-full .fee-negotiation-set__list-info {
    padding-bottom: 28px;
  }
  .fee-negotiation-set__list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-bottom: -25px;
  }
  .fee-negotiation-set__list-item {
    width: calc(50% - 20px);
    display: flex;
    margin-left: 20px;
    margin-bottom: 25px;
  }
  .fee-negotiation-set__list-item.is-main .fee-negotiation-set__list-info {
    padding: 26px 40px;
    text-align: left;
  }
  .fee-negotiation-set__list-item.is-main .fee-negotiation-set__list-price.is-orange {
    justify-content: flex-start;
  }
  .fee-negotiation-set__list-lbl {
    width: 138px;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    margin-right: -1px;
  }
  .fee-negotiation-set__list-info {
    flex: 1;
    padding: 26px 40px;
  }
  .fee-negotiation-set__list-head {
    margin-bottom: 4px;
  }
  .fee-negotiation-set__list-price {
    justify-content: center;
  }
  .fee-negotiation-set__list-price.is-orange {
    font-size: 2.6rem;
    flex-direction: row;
    line-height: 1.1;
  }
  .fee-negotiation-set__list-price.is-orange .fee-negotiation-set__list-price-sub {
    font-size: 2rem;
    line-height: 1.35;
  }
  .fee-negotiation-set__list-price-unit {
    font-size: 2rem;
  }
}

/* .fee-contract
===================================*/
.fee-contract__inner {
  padding-bottom: 60px;
}
.fee-contract__txt {
  margin-bottom: 7px;
}
.fee-contract-sec {
  margin-top: 30px;
  border-radius: 10px;
}
.fee-contract-sec__head {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.5263157895;
  background-color: rgb(var(--main));
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
}
.fee-contract-sec__con {
  padding: 25px 20px 30px;
  box-sizing: border-box;
}
.fee-contract-sec__img {
  max-width: 273px;
  width: 100%;
  margin: 0 auto 43px;
}
.fee-contract-sec__box {
  border: 10px solid rgb(var(--yellow));
  padding: 21px 30px 20px;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
}
.fee-contract-sec__box::before {
  content: "";
  width: 17px;
  height: 35px;
  background: url(../img/fee/ico_contract01.png) no-repeat center/cover;
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: -1;
}
.fee-contract-sec__box-header {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 8px;
}
.fee-contract-sec__box-header-sub {
  margin-bottom: -5px;
}
.fee-contract-sec__box-header-main {
  color: rgb(var(--orange));
}
.fee-contract-sec__box-header-main span {
  font-size: 2.6rem;
  line-height: 1.1;
}
@media all and (min-width: 768px) {
  .fee-contract__inner {
    padding-bottom: 120px;
  }
  .fee-contract__head {
    margin-bottom: 25px;
  }
  .fee-contract-sec {
    margin-top: 28px;
  }
  .fee-contract-sec__head {
    font-size: 2.4rem;
    line-height: 1.75;
    padding: 17px;
  }
  .fee-contract-sec__con {
    padding: 28px 100px 60px;
  }
  .fee-contract-sec__img {
    max-width: 883px;
    margin-bottom: 36px;
  }
  .fee-contract-sec__box {
    padding: 30px 30px 20px 30px;
  }
  .fee-contract-sec__box::before {
    width: 23px;
    height: 51px;
    top: -47px;
    left: 44px;
  }
  .fee-contract-sec__box-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.125;
    margin-bottom: 18px;
  }
  .fee-contract-sec__box-header-main {
    font-size: 3rem;
    background: linear-gradient(to top, rgb(var(--deco01)) 10px, transparent 10px);
    margin-top: -20px;
  }
  .fee-contract-sec__box-header-main span {
    font-size: 4.6rem;
    font-feature-settings: "palt";
  }
  .fee-contract-sec__box-note {
    justify-content: center;
  }
}

/* .fee-points
===================================*/
.fee-points {
  background: url(../img/fee/bg_points01_sp.jpg) no-repeat top center/cover;
}
.fee-points__inner {
  padding-top: 55px;
  padding-bottom: 50px;
}
.fee-points__head {
  text-align: center;
  margin-bottom: 19px;
}
.fee-points-list__item {
  background-color: #fff;
  padding: 30px 30px 25px 30px;
  box-sizing: border-box;
}
.fee-points-list__item + .fee-points-list__item {
  margin-top: 10px;
}
.fee-points-list__label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 14px;
}
.fee-points-list__head {
  text-align: center;
  margin-bottom: 17px;
}
@media all and (min-width: 768px) {
  .fee-points {
    background: url(../img/fee/bg_points01_pc.jpg) no-repeat top center/cover;
  }
  .fee-points__inner {
    padding-top: 110px;
    padding-bottom: 100px;
  }
  .fee-points__head {
    text-align: center;
    margin-bottom: 39px;
  }
  .fee-points-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -30px;
    margin-bottom: -20px;
  }
  .fee-points-list__item {
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-bottom: 20px;
    padding: 35px 30px;
  }
  .fee-points-list__item + .fee-points-list__item {
    margin-top: 0;
  }
  .fee-points-list__label {
    margin-bottom: 17px;
  }
  .fee-points-list__head {
    text-align: center;
  }
}

/* .fee-lawyer
===================================*/
.fee-lawyer__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.fee-lawyer__head {
  font-size: 1.7rem;
  line-height: 1.8823529412;
  background-color: rgb(var(--main));
  color: #fff;
  text-align: center;
  padding: 13px;
  box-sizing: border-box;
  margin: 0 15px 19px 15px;
  position: relative;
}
.fee-lawyer__head::after {
  content: "";
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: rgb(var(--main)) transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.fee-lawyer-list__item {
  background-color: #fff;
  padding: 25px 30px;
  box-sizing: border-box;
}
.fee-lawyer-list__item + .fee-lawyer-list__item {
  margin-top: 10px;
}
.fee-lawyer-list__head {
  text-align: center;
  margin-bottom: 16px;
}
.fee-lawyer__btn {
  margin-top: 40px;
}
@media all and (min-width: 768px) {
  .fee-lawyer__inner {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .fee-lawyer__head {
    max-width: 667px;
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.5;
    margin: 0 auto 45px;
  }
  .fee-lawyer__head::after {
    border-width: 30px 20.5px 0 20.5px;
    bottom: -16px;
  }
  .fee-lawyer-list {
    display: flex;
    align-items: stretch;
    margin-left: -22px;
  }
  .fee-lawyer-list__item {
    width: calc(33.3333333333% - 22px);
    margin-left: 22px;
    padding: 28px 29px 38px 29px;
  }
  .fee-lawyer-list__item + .fee-lawyer-list__item {
    margin-top: 0;
  }
  .fee-lawyer-list__head {
    font-size: 2rem;
    line-height: 1.75;
  }
  .fee-lawyer__btn {
    max-width: 476px;
  }
}

/* .fee-bnr
===================================*/
.fee-bnr__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .fee-bnr__inner {
    padding-top: 120px;
    padding-bottom: 117px;
  }
}

/* .flow-intro
===================================*/
.flow-intro__inner {
  padding-top: 65px;
  padding-bottom: 60px;
}
.flow-intro-sec {
  border-radius: 10px;
  position: relative;
}
.flow-intro-sec + .flow-intro-sec {
  margin-top: 60px;
}
.flow-intro-sec:nth-of-type(3) .flow-intro-sec__con {
  padding-bottom: 17px;
}
.flow-intro-sec:nth-of-type(5) .flow-intro-sec__con {
  padding-bottom: 17px;
}
.flow-intro-sec:last-child::after {
  display: none;
}
.flow-intro-sec::after {
  content: "";
  width: 80px;
  height: 20px;
  background: url(../img/flow/ico_intro01.png) no-repeat center/cover;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
}
.flow-intro-sec-header {
  display: flex;
  align-items: flex-start;
  background-color: rgb(var(--main));
  color: #fff;
  padding: 15px 20px;
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
}
.flow-intro-sec-header__num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  margin-right: 10px;
}
.flow-intro-sec-header__head {
  flex: 1;
  font-size: 2.1rem;
  line-height: 1.5238095238;
}
.flow-intro-sec__con {
  padding: 20px 20px 25px 20px;
  box-sizing: border-box;
}
.flow-intro-sec-intro {
  margin-bottom: 20px;
}
.flow-intro-sec-intro__info {
  margin-bottom: 20px;
}
.flow-intro-sec-intro__txt {
  margin-bottom: 17px;
}
.flow-intro-sec-intro__fee {
  display: flex;
  border: 1px solid rgb(var(--border));
  box-sizing: border-box;
  min-height: 50px;
}
.flow-intro-sec-intro__fee-lbl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 145px;
  background-color: rgb(var(--sub));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
}
.flow-intro-sec-intro__fee-num {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.1;
}
.flow-intro-sec-intro__fee-num span {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 3px;
}
.flow-intro-sec-contact {
  background: url(../img/common/cv/bg_cv01_sp.jpg) no-repeat center/cover;
  padding: 10px;
  box-sizing: border-box;
}
.flow-intro-sec-contact__box {
  padding: 20px 10px;
  box-sizing: border-box;
}
.flow-intro-sec-contact__reception {
  margin-bottom: 9px;
}
.flow-intro-sec-contact__reception-txt {
  font-size: 1.7rem;
}
.flow-intro-sec-interview {
  margin-bottom: 35px;
}
.flow-intro-sec-interview__info {
  margin-bottom: 20px;
}
.flow-intro-sec-interview__txt {
  margin-bottom: 15px;
}
.flow-intro-sec-interview__list {
  display: flex;
  margin: 0 -4px;
}
.flow-intro-sec-interview__list-item {
  width: 33.3333333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.5;
  text-align: center;
  background-color: rgb(var(--deco02));
  padding: 15px 8px;
  box-sizing: border-box;
  margin: 0 4px;
}
.flow-intro-sec-interview__set + .flow-intro-sec-interview__set {
  margin-top: 30px;
}
.flow-intro-sec-interview__set-before {
  margin-bottom: 20px;
}
.flow-intro-sec-interview__set-after {
  padding: 20px 20px 27px;
  box-sizing: border-box;
}
.flow-intro-sec-interview__set-lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.7rem;
  line-height: 1.8823529412;
  border-bottom: 1px solid rgb(var(--border));
  margin: 0 auto 10px;
}
.flow-intro-sec-interview__set-list-wrap {
  background-color: #fff;
  padding: 19px 15px 19px 20px;
  box-sizing: border-box;
  margin-top: 17px;
}
.flow-intro-sec-interview__set-link {
  display: flex;
  align-items: center;
  border: 1px solid rgb(var(--main));
  box-sizing: border-box;
  padding: 18px 15px 17px;
  border-radius: 5px;
  margin-top: 18px;
}
.flow-intro-sec-interview__set-link-img {
  width: 62px;
  margin-right: 11px;
}
.flow-intro-sec-interview__set-link-info {
  flex: 1;
}
.flow-intro-sec-interview__set-link-head {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5333333333;
  margin-bottom: 5px;
}
.flow-intro-sec-interview__set-link-txt {
  font-size: 1.2rem;
  color: rgb(var(--gray));
  line-height: 1.5;
}
.flow-intro-sec-interview__set-link-arrow {
  margin-left: auto;
  display: grid !important;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(var(--main));
}
.flow-intro-sec-interview__set-link-arrow svg {
  color: #fff;
  width: 5px;
}
.flow-intro-sec-interview__set-note {
  margin-top: 10px;
}
.flow-intro-sec-list__item + .flow-intro-sec-list__item {
  margin-top: 30px;
}
.flow-intro-sec-card__info {
  margin-bottom: 15px;
}
@media all and (min-width: 768px) {
  .flow-intro__inner {
    padding-top: 116px;
    padding-bottom: 120px;
  }
  .flow-intro-sec:nth-of-type(3) .flow-intro-sec__con {
    padding-top: 56px;
    padding-bottom: 53px;
  }
  .flow-intro-sec:nth-of-type(5) .flow-intro-sec__con {
    padding-bottom: 17px;
  }
  .flow-intro-sec-header {
    padding: 24px 58px;
  }
  .flow-intro-sec-header__num {
    font-size: 2.1rem;
    margin-right: 18px;
  }
  .flow-intro-sec-header__head {
    font-size: 3.2rem;
    line-height: 1.5;
  }
  .flow-intro-sec__con {
    padding: 60px;
  }
  .flow-intro-sec-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .flow-intro-sec-intro__info {
    max-width: 580px;
    width: 100%;
    margin-right: 40px;
    margin-bottom: 0;
  }
  .flow-intro-sec-intro__txt {
    margin-bottom: 23px;
  }
  .flow-intro-sec-intro__fee {
    min-height: 70px;
  }
  .flow-intro-sec-intro__fee-lbl {
    width: 290px;
    font-size: 2.1rem;
    line-height: 1.5238095238;
  }
  .flow-intro-sec-intro__fee-num {
    font-size: 3.7rem;
  }
  .flow-intro-sec-intro__fee-num span {
    font-size: 2.1rem;
    margin-top: 10px;
  }
  .flow-intro-sec-intro__img {
    max-width: 360px;
    width: 100%;
  }
  .flow-intro-sec-contact {
    background: url(../img/common/cv/bg_cv01_pc.jpg) no-repeat center/cover;
    padding: 20px;
  }
  .flow-intro-sec-contact__box {
    padding: 20px 40px 30px;
  }
  .flow-intro-sec-contact__tel {
    max-width: 255px;
    margin-top: 25px;
  }
  .flow-intro-sec-contact__tel-num {
    font-size: 2.7rem;
  }
  .flow-intro-sec-contact__tel-time {
    font-size: 1.2rem;
  }
  .flow-intro-sec-contact__reception {
    margin-bottom: 16px;
  }
  .flow-intro-sec-contact__reception-circle {
    width: 65px;
  }
  .flow-intro-sec-contact__reception-txt {
    font-size: 1.8rem;
  }
  .flow-intro-sec-contact__contact {
    margin-top: 9px;
  }
  .flow-intro-sec-contact__btn {
    max-width: 287px !important;
    width: 100%;
  }
  .flow-intro-sec-contact__btn + .flow-intro-sec-contact__btn {
    margin-left: 1px;
  }
  .flow-intro-sec-contact__btn-link {
    min-height: 65px;
  }
  .flow-intro-sec-interview {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .flow-intro-sec-interview__info {
    max-width: 580px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 40px;
  }
  .flow-intro-sec-interview__txt {
    margin-bottom: 25px;
  }
  .flow-intro-sec-interview__list {
    display: flex;
    margin: 0 -5px;
  }
  .flow-intro-sec-interview__list-item {
    font-size: 2rem;
    line-height: 1.6;
    padding: 18px 8px;
    margin: 0 5px;
  }
  .flow-intro-sec-interview__img {
    max-width: 360px;
    width: 100%;
  }
  .flow-intro-sec-interview__set + .flow-intro-sec-interview__set {
    margin-top: 31px;
  }
  .flow-intro-sec-interview__set-in {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .flow-intro-sec-interview__set-before {
    max-width: 473px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 34px;
  }
  .flow-intro-sec-interview__set-after {
    max-width: 473px;
    width: 100%;
    padding: 35px 40px 40px 40px;
    margin-top: 5px;
  }
  .flow-intro-sec-interview__set-lead {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    padding-bottom: 10px;
    margin-bottom: 17px;
  }
  .flow-intro-sec-interview__set-list-wrap {
    padding: 16px 12px 13px 20px;
  }
  .flow-intro-sec-interview__set-link {
    padding: 25px 15px 25px 25px;
    margin-top: 25px;
    transition: all 0.3s ease;
  }
  .flow-intro-sec-interview__set-link:hover {
    opacity: 0.7;
  }
  .flow-intro-sec-interview__set-link-img {
    width: 130px;
    margin-right: 20px;
  }
  .flow-intro-sec-interview__set-link-head {
    font-size: 1.8rem;
    line-height: 1.8888888889;
    margin-bottom: 7px;
  }
  .flow-intro-sec-interview__set-link-txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .flow-intro-sec-interview__set-link-arrow {
    margin-left: auto;
    display: grid !important;
    place-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgb(var(--main));
  }
  .flow-intro-sec-interview__set-link-arrow svg {
    color: #fff;
    width: 5px;
  }
  .flow-intro-sec-interview__set-note {
    margin-top: 15px;
  }
  .flow-intro-sec-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: -34px;
    margin-bottom: -60px;
  }
  .flow-intro-sec-list__item {
    width: calc(50% - 34px);
    margin-left: 34px;
    margin-bottom: 60px;
  }
  .flow-intro-sec-list__item + .flow-intro-sec-list__item {
    margin-top: 0;
  }
  .flow-intro-sec-card {
    display: flex;
    justify-content: space-between;
  }
  .flow-intro-sec-card__info {
    max-width: 580px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 40px;
  }
  .flow-intro-sec-card__img {
    max-width: 360px;
    width: 100%;
  }
}

/* .flow-bnr
===================================*/
.flow-bnr__inner {
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .flow-bnr__inner {
    padding-bottom: 120px;
  }
}

/* .flow-intro02
===================================*/
.flow-intro02__box {
  padding-bottom: 30px;
}
.flow-intro02-btn {
  margin-top: 15px;
}
@media all and (min-width: 768px) {
  .flow-intro02__box {
    padding-bottom: 60px;
  }
  .flow-intro02-btn {
    margin-top: 12px !important;
    margin-right: -20px !important;
  }
}

.home-ally {
  position: relative;
  z-index: 1;
}
.home-ally__inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 55px;
}
.home-ally__circle01 {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: -1;
  width: 220px;
  height: 220px;
  aspect-ratio: 1;
}
.home-ally__circle02 {
  position: absolute;
  top: 211px;
  left: 0;
  width: 158px;
  height: 158px;
  aspect-ratio: 1;
  z-index: -1;
}
.home-ally__img {
  max-width: 255px;
  margin: 0 auto 25px;
}
.home-ally__head {
  position: relative;
  z-index: 1;
}
.home-ally__head-ico {
  position: absolute;
  top: 5px;
  left: 55%;
  width: 100px;
  z-index: -1;
}
.home-ally__txt {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}
.home-ally__txt + .home-ally__txt {
  margin-top: 0.4em;
}
@media all and (min-width: 768px) {
  .home-ally__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .home-ally__circle01 {
    top: 0;
    right: 35%;
    margin: 0 auto;
    z-index: -1;
    width: 501px;
    height: 501px;
  }
  .home-ally__circle02 {
    top: auto;
    left: -180px;
    bottom: 50px;
    width: 359px;
    height: 359px;
  }
  .home-ally__content {
    display: flex;
  }
  .home-ally__img {
    max-width: 480px;
    margin: 0;
  }
  .home-ally__area-txt {
    flex: 1;
    padding: 20px 0 0 60px;
  }
  .home-ally__head {
    position: relative;
  }
  .home-ally__head-ico {
    top: 0;
    left: 46%;
    width: 200px;
  }
  .home-ally__txt {
    font-size: 1.8rem;
  }
  .home-ally__txt + .home-ally__txt {
    margin-top: 1em;
  }
}

.home-worries {
  position: relative;
  z-index: 1;
}
.home-worries__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: -1;
}
.home-worries__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: rgb(var(--bg01));
}
.home-worries__bg::after {
  content: "";
  display: block;
  flex: 1;
  width: 100%;
  background: url(../img/home/bg_worries01_sp.jpg) no-repeat top center/cover;
}
.home-worries__inner {
  padding-top: 57px;
  padding-bottom: 35px;
}
.home-worries__head {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.home-worries__head-ico {
  position: absolute;
  top: -20px;
  left: -10px;
  width: 72px;
}
.home-worries__box {
  position: relative;
  padding: 10px 20px;
  background: #fff;
  border-radius: 10px;
}
.home-worries__box::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translate(-50%, 0);
  width: 30px;
  height: 20px;
  background: rgb(var(--yellow));
  border-radius: 5px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.home-worries__content {
  position: relative;
  padding-top: 35px;
}
.home-worries__img01 {
  position: absolute;
  left: 10px;
  bottom: -35px;
  width: 63px;
}
.home-worries__img02 {
  position: absolute;
  right: 10px;
  bottom: -35px;
  width: 41px;
}
.home-worries__copy {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .home-worries__bg::before {
    height: 60%;
  }
  .home-worries__bg::after {
    background-image: url(../img/home/bg_worries01_pc.jpg);
  }
  .home-worries__inner {
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .home-worries__head {
    display: flex;
    margin-bottom: 45px;
  }
  .home-worries__head-ico {
    top: -35px;
    left: -50px;
    width: 143px;
  }
  .home-worries__head-main {
    margin-bottom: 0;
  }
  .home-worries__head-txt {
    flex: 1;
    padding: 7px 0 0 95px;
  }
  .home-worries__box {
    padding: 40px 60px;
  }
  .home-worries__box::before {
    bottom: -20px;
    width: 40px;
    height: 30px;
  }
  .home-worries__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
  .home-worries__item:nth-child(n+5) {
    border-bottom: 0;
  }
  .home-worries__content {
    padding-top: 70px;
  }
  .home-worries__img01 {
    left: 54px;
    bottom: -70px;
    width: 158px;
  }
  .home-worries__img02 {
    right: 116px;
    bottom: -70px;
    width: 104px;
  }
  .home-worries__copy {
    font-size: 4.3rem;
  }
}

/* home-strength
------------------------------------- */
.home-strength {
  overflow: hidden;
}
.home-strength__inner {
  position: relative;
  z-index: 1;
  padding-top: 55px;
  padding-bottom: 60px;
}
.home-strength__circle01 {
  position: absolute;
  top: 101px;
  left: -128px;
  width: 297px;
  height: 297px;
  z-index: -1;
}
.home-strength__circle02 {
  position: absolute;
  right: -70px;
  bottom: 0;
  width: 180px;
  height: 180px;
  z-index: -1;
}
.home-strength__head {
  margin-bottom: 20px;
}
.home-strength__list.is-animated .home-strength__item {
  opacity: 1;
  transform: translateY(0);
}
.home-strength__item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.home-strength__item:not(:last-child) {
  margin-bottom: 20px;
}
.home-strength__item-link {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.home-strength__item-link:before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  background: rgb(var(--main));
  border-radius: 0 0 3px 0;
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}
.home-strength__item-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.home-strength__item-num {
  position: absolute;
  left: -15px;
  bottom: -15px;
  z-index: 1;
  width: 74px;
  height: 74px;
  padding: 0 0 10px 10px;
  display: grid;
  place-content: center;
  background: rgb(var(--main));
  border-radius: 50%;
  color: #fff;
  font-weight: 500;
  box-sizing: border-box;
}
.home-strength__item-area-txt {
  border-style: solid;
  border-width: 0 1px 1px;
  border-color: rgb(var(--border));
  border-radius: 0 0 10px 10px;
  padding: 17px;
  background: #fff;
  box-sizing: border-box;
}
.home-strength__item-head {
  margin-bottom: 5px;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .home-strength__inner {
    padding-top: 113px;
    padding-bottom: 120px;
  }
  .home-strength__circle01 {
    top: 242px;
    left: -128px;
    width: 593px;
    height: 593px;
  }
  .home-strength__circle02 {
    right: -170px;
    bottom: 140px;
    width: 361px;
    height: 361px;
  }
  .home-strength__head {
    margin-bottom: 36px;
  }
  .home-strength__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
  }
  .home-strength__list.is-animated .home-strength__item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .home-strength__list.is-animated .home-strength__item:nth-child(3) {
    transition-delay: 0.4s;
  }
  .home-strength__list.is-animated .home-strength__item:nth-child(4) {
    transition-delay: 0.6s;
  }
  .home-strength__list.is-animated .home-strength__item:nth-child(5) {
    transition-delay: 0.8s;
  }
  .home-strength__item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
  .home-strength__item:nth-child(n+3) {
    width: calc(33.3333% - 30px);
  }
  .home-strength__item:not(:last-child) {
    margin-bottom: 30px;
  }
  .home-strength__item:not(:last-child) .home-strength__item-head {
    font-size: 2.4rem;
  }
  .home-strength__item-link {
    display: flex !important;
    flex-direction: column;
    height: 100%;
  }
  .home-strength__item-link::before {
    width: 15px;
    height: 15px;
  }
  .home-strength__item-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgb(var(--main));
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .home-strength__item-link:hover {
    box-shadow: none;
  }
  .home-strength__item-link:hover::after {
    opacity: 1;
  }
  .home-strength__item-num {
    left: -20px;
    bottom: -20px;
    width: 87px;
    height: 87px;
    padding: 0 0 10px 10px;
  }
  .home-strength__item-area-txt {
    border-color: rgb(var(--border));
    padding: 25px;
    flex: 1;
  }
  .home-strength__item-head {
    margin-bottom: 15px;
    font-size: 2.1rem;
  }
}

.home-case {
  overflow: hidden;
  background: url(../img/home/bg_case01_sp.png) no-repeat center top/cover;
}
.home-case__inner {
  padding-top: 55px;
  padding-bottom: 60px;
}
.home-case__head {
  display: flex;
  align-items: baseline;
}
.home-case__head-pager {
  margin-left: auto;
}
.home-case__slide .swiper {
  overflow: visible;
}
.home-case__keyword {
  margin-top: 50px;
  padding: 20px 20px 25px;
  background: #fff;
  border-radius: 10px;
}
.home-case__keyword-head {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid rgb(var(--border));
  z-index: 1;
}
.home-case__keyword-head::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: url(../img/home/ico_search01.svg) no-repeat center/contain;
  z-index: -1;
}
.home-case__keyword-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.home-case__keyword-item-link {
  display: flex;
  align-items: center;
  min-height: 60px;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgb(var(--border));
  box-sizing: border-box;
}
.home-case__keyword-item-ico {
  margin-right: 5px;
  width: 30px;
}
.home-case__keyword-item-txt {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}
.home-case__keyword-item-arrow {
  display: grid !important;
  place-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgb(var(--main));
  margin-left: auto;
}
.home-case__keyword-item-arrow svg {
  color: #fff;
  width: 3px;
}
@media all and (min-width: 768px) {
  .home-case {
    background-image: url(../img/home/bg_case01_pc.png);
  }
  .home-case__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .home-case__keyword {
    margin-top: 40px;
    padding: 40px;
    display: flex;
    align-items: center;
  }
  .home-case__keyword-head {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 2.1rem;
    width: 200px;
    border-bottom: 0;
  }
  .home-case__keyword-head::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translate(0, -50%);
    width: 110px;
    height: 110px;
  }
  .home-case__keyword-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    padding-left: 30px;
    border-left: 1px solid rgb(var(--border));
    flex: 1;
  }
  .home-case__keyword-item-link {
    min-height: 70px;
    padding: 15px 20px;
    transition: all 0.3s ease;
  }
  .home-case__keyword-item-link:hover {
    background: rgb(var(--main));
    color: #fff;
  }
  .home-case__keyword-item-link:hover .home-case__keyword-item-arrow {
    background: #fff;
  }
  .home-case__keyword-item-link:hover .home-case__keyword-item-arrow svg {
    color: rgb(var(--main));
  }
  .home-case__keyword-item-ico {
    width: 40px;
  }
  .home-case__keyword-item-txt {
    font-size: 1.6rem;
  }
  .home-case__keyword-item-arrow {
    width: 20px;
    height: 20px;
  }
  .home-case__keyword-item-arrow svg {
    width: 6px;
  }
}

.home-bnr__inner {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media all and (min-width: 768px) {
  .home-bnr__inner {
    padding-top: 120px;
    padding-bottom: 70px;
  }
}

.home-column__inner {
  padding-bottom: 60px;
}
.home-column__head-txt {
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.home-column__pickup {
  padding: 20px;
  margin-bottom: 5px;
  background: rgb(var(--bg02));
  display: flex;
  align-items: center;
}
.home-column__pickup-head {
  margin-right: 15px;
  font-size: 1.7rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.home-column__pickup-txt {
  flex: 1;
  padding-left: 15px;
  border-left: 1px solid rgb(var(--border));
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .home-column__inner {
    padding-bottom: 120px;
  }
  .home-column__head-txt {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
  .home-column__pickup {
    padding: 10px 20px;
    margin-bottom: 25px;
    border-radius: 10px;
  }
  .home-column__pickup-head {
    margin-right: 20px;
    font-size: 2.1rem;
  }
  .home-column__pickup-txt {
    padding-left: 20px;
  }
}

.home-intro {
  position: relative;
  z-index: 1;
}
.home-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: -1;
}
.home-intro__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: url(../img/home/bg_intro01_sp.jpg) no-repeat center top/cover;
  z-index: 1;
}
.home-intro__bg::after {
  content: "";
  display: block;
  width: 100%;
  flex: 1;
  background: #e8efff;
}
.home-intro__inner {
  padding-top: 55px;
  padding-bottom: 60px;
}
.home-intro__box {
  padding: 40px 20px 20px;
  border-radius: 10px;
  background: #fff;
}
.home-intro__img {
  max-width: 255px;
  margin: 0 auto 25px;
}
.home-intro__head {
  padding-bottom: 4px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgb(var(--border));
}
.home-intro__head-position {
  font-size: 1.3rem;
}
.home-intro__head-name {
  display: flex;
  align-items: baseline;
}
.home-intro__head-name-txt {
  font-size: 2.3rem;
  line-height: 1.5;
}
.home-intro__head-name-hira {
  display: block;
  margin-left: 10px;
}
.home-intro__label {
  margin: 10px 0 !important;
}
.home-intro__office {
  margin-top: 25px;
}
.home-intro__office-head {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  margin-bottom: 15px;
  background: rgb(var(--deco02));
  border-radius: 10px;
}
.home-intro__office-head-ico {
  width: 30px;
  margin-right: 5px;
}
.home-intro__office-head-txt {
  flex: 1;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.5;
}
.home-intro__office-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
@media all and (min-width: 768px) {
  .home-intro__bg::before {
    height: 55%;
    background-image: url(../img/home/bg_intro01_pc.jpg);
  }
  .home-intro__inner {
    padding-top: 112px;
    padding-bottom: 120px;
  }
  .home-intro__box {
    padding: 60px;
  }
  .home-intro__content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .home-intro__img {
    order: 2;
    max-width: 360px;
    margin: 0;
  }
  .home-intro__area-txt {
    flex: 1;
    padding-right: 40px;
  }
  .home-intro__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: 12px;
    margin-bottom: 25px;
  }
  .home-intro__head-position {
    width: 100%;
    font-size: 1.4rem;
  }
  .home-intro__head-name-txt {
    font-size: 3.2rem;
  }
  .home-intro__head-name-hira {
    margin-left: 15px;
  }
  .home-intro__label {
    margin: 0 0 0 10px !important;
  }
  .home-intro__office {
    margin-top: 45px;
  }
  .home-intro__office-head {
    padding: 10px 20px;
    margin-bottom: 25px;
  }
  .home-intro__office-head-ico {
    position: relative;
    top: 4px;
    margin-right: 12px;
  }
  .home-intro__office-head-txt {
    font-size: 2.4rem;
  }
  .home-intro__office-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.home-access__inner {
  padding-top: 55px;
  padding-bottom: 60px;
}
.home-access__map {
  margin-bottom: 25px;
  height: 350px;
}
.home-access__map iframe {
  width: 100%;
  height: 100%;
}
.home-access__item {
  padding-bottom: 30px;
}
.home-access__item:not(:first-child) {
  padding-top: 30px;
  border-top: 1px solid rgb(var(--border));
}
.home-access__addr {
  margin-bottom: 15px;
}
.home-access__parking {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.home-access__parking-label {
  border-radius: 5px;
  padding: 2px 5px;
  color: #fff;
  background: rgb(var(--orange));
  line-height: 1.5;
}
.home-access__parking-txt {
  flex: 1;
  margin-left: 7px;
}
.home-access__box {
  padding: 20px 20px 10px;
  border-radius: 10px;
  border: 1px solid rgb(var(--border));
  box-sizing: border-box;
}
.home-access__box-head {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.home-access__box-head-ico {
  position: relative;
  top: 2px;
  width: 14px;
  margin-right: 12px;
}
.home-access__box-head-txt {
  flex: 1;
  font-size: 1.9rem;
  font-weight: 400;
}
.home-access__box-item {
  padding: 15px 0;
  line-height: 1.5;
}
.home-access__box-item:not(:last-child) {
  border-bottom: 1px solid rgb(var(--border));
}
@media all and (min-width: 768px) {
  .home-access__inner {
    padding-top: 110px;
    padding-bottom: 120px;
  }
  .home-access__map {
    margin-bottom: 30px;
    height: 450px;
  }
  .home-access__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home-access__item {
    padding: 0 40px 0 0;
  }
  .home-access__item:not(:first-child) {
    padding: 0 0 0 40px;
    border-top: 0;
    border-left: 1px solid rgb(var(--border));
  }
  .home-access__parking {
    align-items: center;
  }
  .home-access__parking-label {
    padding: 4px 8px;
    font-size: 1.4rem;
  }
  .home-access__parking-txt {
    margin-left: 9px;
  }
  .home-access__addr {
    margin-bottom: 5px;
  }
  .home-access__box {
    margin-top: 50px;
    padding: 36px;
  }
  .home-access__box-head-ico {
    width: 19px;
    margin-right: 10px;
  }
  .home-access__box-head-txt {
    font-size: 2.1rem;
  }
  .home-access__box-list {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home-access__box-item {
    padding: 0 0 0 40px;
    line-height: 1.5;
  }
  .home-access__box-item:not(:last-child) {
    padding: 0 40px 0 0;
    border-bottom: 0;
    border-right: 1px solid rgb(var(--border));
  }
}

/* home-information
------------------------------------- */
.home-information {
  background: url(../img/home/bg_news01_sp.jpg) no-repeat center/cover;
}
.home-information__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-information__box {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}
@media all and (min-width: 768px) {
  .home-information {
    background-image: url(../img/home/bg_news01_pc.jpg);
  }
  .home-information__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home-information__box {
    padding: 55px 60px;
    display: grid;
    grid-template-areas: "head archive" "btn archive";
    grid-template-columns: 250px 1fr;
    grid-template-rows: 1fr auto;
    gap: 40px;
  }
  .home-information__box-head {
    grid-area: head;
  }
  .home-information__box-archive {
    grid-area: archive;
  }
  .home-information__box-btn {
    grid-area: btn;
  }
}
@media all and (min-width: 768px){
  .home-information__box-head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .home-information__box-archive {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .home-information__box-btn {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

#information .c-pager02 {
  border-top: 0;
}
@media all and (min-width: 768px) {
  #information .c-pager02 {
    margin-top: 60px;
  }
}

.information-archive__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .information-archive__inner {
    padding-top: 90px;
    padding-bottom: 120px;
  }
}

.information-article {
  padding-top: 15px;
}
.information-article__inner {
  border-top: 4px solid rgb(var(--main));
  padding-top: 40px;
}
.information-article__info {
  margin-bottom: 20px;
}
.information-article__head-time {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 10px;
}
.information-article__head-cat {
  display: inline-flex;
}
.information-article__head h1 {
  margin-top: 10px;
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.information-article__content {
  position: relative;
  z-index: 1;
}
.information-article__content::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 0;
  width: calc(100% + 40px);
  height: 0;
  border-bottom: 1px solid rgb(var(--border));
}
.information-article__content-body {
  padding-bottom: 60px;
}
.information-article__related {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .information-article {
    padding-top: 90px;
  }
  .information-article__inner {
    padding-top: 0;
  }
  .information-article__box {
    padding: 67px 60px;
    border-style: solid;
    border-color: rgb(var(--border));
    border-width: 0 1px 1px;
    box-sizing: border-box;
  }
  .information-article__info {
    margin-bottom: 45px;
  }
  .information-article__head-time {
    font-size: 1.4rem;
    margin-right: 20px;
  }
  .information-article__head h1 {
    margin-top: 20px;
    font-size: 2.8rem;
  }
  .information-article__content::before {
    display: none;
  }
  .information-article__content-body {
    padding-bottom: 0;
  }
}

/*
	.policy-main
 ================================================ */
.policy-main {
  border-bottom: 1px solid rgb(var(--border));
}
.policy-main__inner {
  padding-top: 50px;
  padding-bottom: 81px;
}
.policy-main__txt {
  margin-bottom: 37px;
}
.policy-main-list__item + .policy-main-list__item {
  margin-top: 36px;
}
.policy-main-list__head {
  margin-bottom: 13px;
}
.policy-main-list__list {
  margin-top: 27px;
}
.policy-main-list__list.is-level02 {
  margin: 17px 0 17px 27px;
}
.policy-main-list__list.is-custom li:not(:first-child) {
  margin-top: 27px;
}
.policy-main-list__set-wrap {
  margin-top: 35px;
  margin-left: 27px;
}
.policy-main-list__set + .policy-main-list__set {
  margin-top: 35px;
}
.policy-main-list__address {
  margin-top: 35px;
}
@media all and (min-width: 768px) {
  .policy-main__inner {
    padding-top: 82px;
    padding-bottom: 120px;
  }
  .policy-main__txt {
    margin-bottom: 68px;
  }
  .policy-main-list__item + .policy-main-list__item {
    margin-top: 71px;
  }
  .policy-main-list__list {
    margin-top: 36px;
  }
  .policy-main-list__list.is-level02 {
    margin: 35px 0 35px 33px;
  }
  .policy-main-list__list.is-custom li:not(:first-child) {
    margin-top: 35px;
  }
  .policy-main-list__set-wrap {
    margin-top: 12px;
    margin-left: 33px;
  }
  .policy-main-list__address {
    margin-top: 43px;
  }
}

.search-result__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .search-result__inner {
    padding-top: 90px;
    padding-bottom: 120px;
  }
}