@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

p,
dd {
  text-justify: inter-ideograph;
  word-break: break-all;
}

img {
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 3.6rem;
    font-weight: 600;
  }
  h2 {
    font-size: 2.8rem;
    font-weight: 600;
  }
  h3 {
    font-size: 1.87em;
    font-weight: 600;
  }
  h4 {
    font-size: 1.5em;
    font-weight: 600;
  }
  h5 {
    font-size: 1.12em;
    font-weight: 600;
  }
  h6 {
    font-size: 1.4rem;
    font-weight: 600;
  }
  caption {
    font-size: 1.3rem;
    font-weight: 500;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  input,
  textarea,
  select {
    font-family: inherit;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  h2 {
    font-size: 2.4rem;
    font-weight: 700;
  }
  h3 {
    font-size: 2rem;
    font-weight: 700;
  }
  h4 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  h5 {
    font-size: 1.4rem;
    font-weight: 700;
  }
  h6 {
    font-size: 1.3rem;
    font-weight: 700;
  }
  caption {
    font-size: 1.2rem;
    font-weight: 500;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  input,
  textarea,
  select {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 500;
  }
  a img {
    transition: 0.2s;
  }
  a img:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
:root {
  --color_txt: #000;
  --color_main: #cee6f1;
  --color_sub: #1a4199;
  --color_bd: #dcdcdc;
  --color_gy: #898989;
  --padding_sp: 4em;
}

.trans {
  transition: 0.3s;
}
.trans:hover {
  opacity: 0.7;
}

.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

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

.items-center {
  align-items: center;
}

.fc-bl {
  color: var(--color_sub);
}

.col-2 {
  display: flex;
  flex-wrap: wrap;
}
.col-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 3.8%;
}
.col-3 > div {
  width: 30.8%;
  background: var(--color_main);
  border-radius: 5px;
}

.cmn__tel a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 0.93em;
}
.cmn__tel a::before {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: block;
  width: 0.62em;
  aspect-ratio: 1/1;
  background: url(../img/base/ico--tel_bl01.png) no-repeat center 0/100% auto;
}
.cmn__tel.is-wh a::before {
  background: url(../img/base/ico--tel_wh01.png) no-repeat center 0/100% auto;
}

.cmn__contact span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 2.42em;
}
.cmn__contact span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: block;
  width: 1.42em;
  aspect-ratio: 32/24;
  background: url(../img/base/ico--mail_wh01.png) no-repeat center 0/100% auto;
}
.cmn__contact.is-bl span::before {
  background: url(../img/base/ico--mail_bl01.png) no-repeat center 0/100% auto;
}

.cmn__table {
  border-collapse: separate;
  border-spacing: 0;
}
.cmn__table tr:nth-of-type(odd) td,
.cmn__table tr:nth-of-type(odd) th {
  background: #f0f0f0;
}
.cmn__table tr:nth-of-type(odd) td:first-child,
.cmn__table tr:nth-of-type(odd) th:first-child {
  border-radius: 5px 0 0 5px;
}
.cmn__table tr:nth-of-type(odd) td:last-child,
.cmn__table tr:nth-of-type(odd) th:last-child {
  border-radius: 0 5px 5px 0;
}
.cmn__table th {
  vertical-align: top;
  width: 20%;
  padding: 20px;
  font-size: 1.12em;
  font-weight: 700;
}
.cmn__table td {
  width: 80%;
  padding: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .col-2 .txt-block {
    width: 100% !important;
    order: 2;
  }
  .col-2 .img-block {
    width: 100% !important;
  }
  .col-3 > div {
    width: 100%;
  }
  .cmn__table th {
    width: 35%;
    font-size: 1em;
  }
  .cmn__table td {
    width: 65%;
  }
}
.thumbnail {
  position: relative;
  overflow: hidden;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  font-family: "object-fit: cover; object-position: center";
}

@media only screen and (min-width: 768px) {
  body {
    width: 100%;
    min-width: 1280px;
  }
  .inner--s {
    width: 56.25%;
    min-width: 1080px;
    margin: 0 auto;
  }
  .inner--m {
    width: 66.5%;
    min-width: 1280px;
    margin: 0 auto;
  }
  .inner--l {
    width: 87.5%;
    min-width: 1280px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .inner--s,
  .inner--m,
  .inner--l {
    width: 95%;
    margin: 0 auto;
  }
}
.sb_style a {
  text-decoration: underline;
}

.sb_style em {
  font-style: italic;
}

.sb_style ol,
.sb_style ul {
  list-style: decimal;
}

.sb_style table {
  border: 1px #666666 solid;
}

.sb_style th,
.sb_style td {
  vertical-align: middle;
  border: 1px #666666 solid;
}

.sb_style a {
  color: #008bf7;
}

.sb_style h1,
.sb_style h2,
.sb_style h3,
.sb_style h4,
.sb_style h5,
.sb_style h6 {
  box-sizing: border-box;
  line-height: 1.5;
  font-weight: 700;
}

.sb_style h1 {
  padding: 0 5px;
  font-size: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

.sb_style h2 {
  padding-left: 10px;
  font-size: 26px;
  border-left: 3px solid #000;
}

.sb_style h3 {
  font-size: 24px;
  padding: 5px 10px;
  background: #000;
}

.sb_style h4 {
  padding-bottom: 8px;
  font-size: 20px;
  position: relative;
}

.sb_style h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: #000;
}

.sb_style h5 {
  font-size: 18px;
  padding: 5px 10px;
  background: #f2f2f2;
}

.sb_style h6 {
  font-size: 16px;
  color: #000;
}

.sb_style p {
  font-size: 16px;
  color: #000;
}

.sb_style ul {
  padding-left: 30px;
}

.sb_style ul li {
  margin-bottom: 5px;
}

.sb_style ol {
  padding-left: 30px;
}

.sb_style ol li {
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .sb_style table {
    width: 100% !important;
    height: auto !important;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border: none;
  }
  .sb_style tbody {
    width: 100%;
    display: table;
  }
  .sb_style h1,
  .sb_style h2,
  .sb_style h3,
  .sb_style h4,
  .sb_style h5,
  .sb_style h6 {
    box-sizing: border-box;
    line-height: 1.5;
    font-weight: 700;
  }
  .sb_style h1 {
    padding: 0 5px;
    font-size: 6vw;
    padding-bottom: 3%;
    border-bottom: 1px solid #000;
  }
  .sb_style h2 {
    padding-left: 5%;
    font-size: 5.5vw;
    border-left: 2px solid #000;
  }
  .sb_style h3 {
    font-size: 5vw;
    padding: 3% 4%;
    background: #000;
    color: #fff;
  }
  .sb_style h4 {
    padding-bottom: 3%;
    font-size: 4.8vw;
    position: relative;
  }
  .sb_style h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 15%;
    height: 2px;
    background: #000;
  }
  .sb_style h5 {
    font-size: 4.5vw;
    padding: 3% 5%;
    background: #f2f2f2;
  }
  .sb_style h6 {
    font-size: 4.2vw;
    color: #000;
  }
  .sb_style p {
    font-size: 14px;
    color: #000;
  }
  .sb_style ul {
    padding-left: 30px;
  }
  .sb_style ul li {
    margin-bottom: 5px;
  }
  .sb_style ol {
    padding-left: 30px;
  }
  .sb_style ol li {
    margin-bottom: 5px;
  }
  .sb_style img {
    width: auto;
    height: auto;
  }
}
.tit-primary {
  margin-bottom: 2.5em;
  color: var(--color_sub);
}
.tit-primary .sub {
  font-size: 1.25em;
}
.tit-primary h3 {
  font-size: 1.87em;
  font-weight: 900;
}
.tit-primary.is-wh {
  color: #fff;
}

.tit-secondry h4 {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 0.75em;
  margin-bottom: 2em;
}
.tit-secondry h4::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: block;
  width: 2.08em;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: var(--color_main);
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .tit-primary {
    margin-bottom: 2em;
  }
  .tit-primary h3 {
    font-size: 1.6em;
  }
}
.button--pattern-1 {
  background: var(--color_sub);
  padding: 0.8em 1.78em;
  border-radius: 200px;
  color: #fff;
  transition: 0.2s;
}
.button--pattern-1:hover {
  background-color: #2e56b1;
}
.button--pattern-2 {
  position: relative;
  z-index: 1;
  padding-right: 3.33em;
  color: var(--color_sub);
  font-size: 1.12em;
  transition: 0.2s;
}
.button--pattern-2 span {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color_sub);
  font-weight: 600;
}
.button--pattern-2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  display: block;
  width: 2.77em;
  aspect-ratio: 1/1;
  background: url(../img/base/ico--arrow-bl01.png) no-repeat center 0/100% auto;
}
.button--pattern-2:hover {
  opacity: 0.7;
}

.error-text {
  color: #e74c3c;
}

.cont-dl {
  display: grid;
  row-gap: 20px;
}
.cont-dl .in-dl {
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}
.cont-dl .in-dl dt a,
.cont-dl .in-dl dd a {
  border-bottom: 1px solid #000000;
}
.cont-dl .in-dl .required {
  color: #ffffff;
  line-height: 1;
  background: #e74c3c;
}
.cont-dl .in-dl .optional {
  color: #ffffff;
  line-height: 1;
  background: #3498db;
}
.cont-dl .in-dl dt {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 10px;
}
.cont-dl .in-dl dd input {
  font-size: 16px;
}
.cont-dl .in-dl dd input[type=text],
.cont-dl .in-dl dd input[type=num],
.cont-dl .in-dl dd input[type=email],
.cont-dl .in-dl dd input[type=url],
.cont-dl .in-dl dd input[type=tel] {
  width: 100%;
  padding: 10px;
  border: solid #ccc 1px;
  background: #fff;
  box-sizing: border-box;
}
.cont-dl .in-dl dd .select-wrp {
  position: relative;
  width: 300px;
}
.cont-dl .in-dl dd .select-wrp:after {
  content: "";
  border-top: 6px solid #000000;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.cont-dl .in-dl dd select {
  position: relative;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  color: #000000;
}
.cont-dl .in-dl dd textarea {
  padding: 10px;
  border: solid #ccc 1px;
  width: 100%;
  height: 200px;
  background: #fff;
  box-sizing: border-box;
  line-height: 1.8;
}
.cont-dl .in-dl dd #pc01,
.cont-dl .in-dl dd #pc02 {
  margin-bottom: 10px;
}
.cont-dl .in-dl dd #pc01 {
  width: 60px !important;
}
.cont-dl .in-dl dd #pc02 {
  width: 80px !important;
}
.cont-dl .in-dl {
  display: grid;
  grid-template-columns: 350px 1fr;
  column-gap: 20px;
}
.cont-dl .in-dl .required,
.cont-dl .in-dl .optional {
  padding: 5px 8px;
  font-size: 13px;
}
.cont-dl .in-dl dt {
  grid-template-rows: auto auto 1fr;
}
@media only screen and (max-width: 767px) {
  .cont-dl .in-dl {
    display: flex;
    flex-direction: column;
    border-bottom: none;
  }
  .cont-dl .in-dl .required,
  .cont-dl .in-dl .optional {
    padding: 5px 8px;
    font-size: 12px;
  }
  .cont-dl .in-dl dt {
    margin-bottom: 20px;
  }
  .cont-dl .in-dl .upload-notice {
    grid-column: 1/span 2;
    font-size: 12px;
    line-height: 1.6;
  }
  .cont-dl .in-dl dd .thumb {
    width: 150px;
    height: 150px;
  }
}

.contact-btn ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-btn ul li:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}
.contact-btn ul li #form-btn {
  color: #fff;
  letter-spacing: 3px;
  font-weight: bold;
  border: solid 1px #000000;
  background-color: #000000;
}
.contact-btn ul {
  column-gap: 30px;
}
.contact-btn ul li #form-btn {
  width: 340px;
  font-size: 18px;
  padding: 25px 0;
}
@media only screen and (max-width: 767px) {
  .contact-btn ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .contact-btn ul li #form-btn {
    width: 280px;
    font-size: 16px;
    padding: 20px 0;
  }
}

/*リキャプチャ---------------*/
.contact .recap-inwrap {
  width: 300px;
  margin: 0 auto 50px;
}
.contact-recaptcha-wrap {
  margin-top: 60px;
}
.contact-recaptcha-wrap .recap-inwrap {
  margin: 0 auto 50px;
}
@media only screen and (max-width: 767px) {
  .contact-recaptcha-wrap {
    margin-top: 30px;
  }
  .contact-recaptcha-wrap .recap-inwrap {
    margin: 0 auto 40px;
  }
}

/*送信完了---------------*/
.send-comp {
  text-align: center;
}
.send-comp p {
  line-height: 1.5em;
}

.send-comp-ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}

.header__contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 0 0;
  min-width: 1280px;
  font-size: clamp(0.8em, 0.98vw, 1em);
}

.header__logo {
  padding-left: 30px;
  color: var(--color_sub);
  font-size: 1.87em;
  font-weight: 900;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 0 1em;
}
.header__nav {
  display: flex;
  gap: 0 2.18em;
  align-items: center;
  padding-right: 30px;
}

.header__list {
  display: flex;
  gap: 0 1.42em;
  font-size: 0.87em;
}
.header__list a {
  transition: 0.3s;
}
.header__list a:hover {
  color: var(--color_sub);
}

.header__sub {
  display: flex;
  align-items: center;
  gap: 0 1.56em;
}

.header__tel {
  font-size: 2em;
  font-weight: 900;
  color: var(--color_sub);
}

.header__cta {
  font-size: 0.87em;
}
.header__cta a {
  padding: 0.8em 1.78em;
  width: auto;
}

.header__mv.top {
  padding-top: 380px;
}
.header__mv.top .header__title {
  position: absolute;
  top: 22%;
  left: 50%;
}
.header__mv.top .header__title h2 {
  margin-bottom: 0.7em;
}
.header__mv.top .header__title p {
  line-height: 1.8;
}

.header__mv {
  margin-bottom: 2em;
}
.header__mv .header__title {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 66.5%;
  min-width: 1080px;
}
@media only screen and (max-width: 1280px) {
  .header__mv .header__title {
    min-width: auto;
  }
}
.header__mv .header__title .en {
  font-size: 0.6em;
}
.header__mv .header__title h2 {
  line-height: 1.3;
  color: var(--color_sub);
  font-size: 2.5em;
}

@media only screen and (max-width: 767px) {
  .header__contents {
    min-width: 100%;
  }
  .header__logo a {
    gap: 0 0.5em;
  }
  .header__logo img {
    width: 50px;
  }
  .header__mv {
    height: 280px;
  }
  .header__mv.top {
    padding-top: 300px;
  }
  .header__mv.top .header__title {
    top: 17%;
  }
  .header__mv.top .header__title h2 {
    font-size: 2em;
  }
  .header__mv > img {
    height: 100%;
    object-position: 50% 0;
  }
  .header__mv .header__title {
    top: 100px;
    width: 90%;
  }
  .header__mv .header__title h2 {
    font-size: 2em;
  }
}
.footer-action {
  margin-top: 7.5em;
  padding: 4.3em 0 3.12em;
  background: url(../img/layout/footer/bg--01.png) no-repeat 7.4% center/auto 100% var(--color_sub);
  color: #fff;
}
.footer-action .footer-action__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em 0;
}
.footer-action .footer-action__left {
  width: 20%;
}
.footer-action .footer-action__left .tit-primary {
  margin-bottom: 0;
}
.footer-action .footer-action__right {
  width: 35%;
}
.footer-action .footer-action__tel {
  margin: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 3.12em;
  font-weight: 900;
  text-align: center;
}
.footer-action .footer-action__link li + li {
  margin-top: 1.25em;
}
.footer-action .footer-action__link a {
  display: block;
  background: #fff;
  color: var(--color_sub);
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
}
.footer-action .footer-action__link .line span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 2.2em;
}
.footer-action .footer-action__link .line span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 1.66em;
  aspect-ratio: 1/1;
  background: url(../img/layout/header/line.png) no-repeat center 0/cover;
}

.footer-bar {
  padding: 70px 0;
}
.footer-bar__wrapper {
  display: flex;
  justify-content: space-between;
}
.footer-bar__wrapper--top {
  align-items: flex-start;
}
.footer-bar__wrapper--bottom {
  flex-direction: row-reverse;
  border-top: 1px solid var(--color_bd);
  padding-top: 15px;
  margin-top: 30px;
}
.footer-bar__contents {
  display: flex;
  flex-direction: column;
}
.footer-bar__logo {
  width: 100px;
  margin-bottom: 25px;
}
.footer-bar__address {
  margin-bottom: 50px;
}
.footer-bar__group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bar__sns {
  width: 30px;
}
.footer-bar__list {
  display: flex;
  flex-wrap: wrap;
  width: 765px;
}
.footer-bar__item {
  width: 150px;
  margin: 0 20px 25px;
}
.footer-bar__item a {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.footer-bar__copyright {
  font-size: 1.5rem;
  color: var(--color_gy);
}
.footer-bar__links {
  display: flex;
  gap: 20px;
}
.footer-bar__link a {
  font-size: 1.4rem;
  color: var(--color_gy);
}

@media only screen and (max-width: 767px) {
  .footer-action .footer-action__left {
    width: 100%;
  }
  .footer-action .footer-action__right {
    width: 100%;
  }
  .footer-action .footer-action__tel {
    font-size: 2.4em;
  }
  .footer-action .footer-action__link a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .footer-bar {
    padding: 30px 0 10px;
  }
  .footer-bar__wrapper--bottom {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    padding-top: 10px;
  }
  .footer-bar__contents {
    display: block;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .footer-bar__logo {
    display: block;
    width: 100px;
    margin: 0 auto 15px;
  }
  .footer-bar__address {
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  .footer-bar__group {
    justify-content: center;
  }
  .footer-bar__sns {
    width: 25px;
  }
  .footer-bar__list {
    display: none;
  }
  .footer-bar__copyright {
    font-size: 1.1rem;
  }
  .footer-bar__links {
    display: none;
  }
}
.drawer-off__button {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  background: var(--color_sub);
  border-radius: 8px;
  cursor: pointer;
  z-index: 999;
}
.drawer-off__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.drawer-off__wrapper {
  display: flex;
  flex-direction: column;
}
.drawer-off__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}
.drawer-off__line span {
  display: block;
  width: 30px;
  height: 1px;
  background: #ffffff;
}
.drawer-off__title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.drawer-on {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-on.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 100;
}
.drawer-on__inner {
  padding: 17px 15px;
  box-sizing: border-box;
}
.drawer-on__logo {
  display: block;
  width: 235px;
  margin-bottom: 30px;
}
.drawer-on__nav {
  margin-bottom: 30px;
}
.drawer-on__item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}
.drawer-on__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.drawer-on__link a {
  font-size: 1.4rem;
  font-weight: 700;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
}

.drawer-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000000;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.drawer-mail i, .drawer-mail span {
  color: #ffffff;
}
.drawer-mail span {
  font-size: 1.8rem;
  font-weight: 500;
}

.drawer-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F7F7F7;
  padding: 10px 30px 20px;
  margin-bottom: 30px;
}
.drawer-tel__link {
  display: flex;
  justify-content: center;
  align-items: self-end;
  gap: 5px;
}
.drawer-tel__link i, .drawer-tel__link span {
  color: #000000;
}
.drawer-tel__link i {
  margin-bottom: 8px;
}
.drawer-tel__link span {
  font-size: 3.2rem;
  font-weight: 500;
}
.drawer-tel__caption {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  background: #ffffff;
  padding: 5px;
}

.drawer-sns__title {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.drawer-sns__list {
  display: flex;
  gap: 5%;
}
.drawer-sns__item {
  width: 10%;
}

.breadcrumbs {
  margin-bottom: 5em;
}
.breadcrumbs__inner {
  padding: 15px 0;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.breadcrumbs__item {
  font-size: 1.5rem;
  line-height: 1;
  padding-right: 10px;
  border-right: 1px solid #000000;
}
.breadcrumbs__item:last-child {
  border: none;
}

.pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.pagenation li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  font-size: 1.7rem;
  line-height: 1;
}
.pagenation li.current span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  background: #000000;
}

@media only screen and (max-width: 767px) {
  .pagenation {
    margin-top: 20px;
  }
  .pagenation li a {
    width: 35px;
    aspect-ratio: 1/1;
    font-size: 1.6rem;
  }
  .pagenation li.current span {
    width: 35px;
    aspect-ratio: 1/1;
    font-size: 1.8rem;
  }
}
.navigation {
  position: relative;
  margin-top: 30px;
}
.navigation .center {
  text-align: center;
}
.navigation .left {
  position: absolute;
  top: 0;
  left: 0;
}
.navigation .right {
  position: absolute;
  top: 0;
  right: 0;
}
.navigation a {
  font-size: 1.5rem;
  font-weight: bold;
}

.top-column {
  padding: 80px 0 30px;
}
.top-column__inner {
  position: relative;
}
.top-column__title {
  margin-bottom: 35px;
}
.top-column__list {
  display: flex;
  gap: 2%;
}
.top-column__item {
  display: flex;
  width: 32%;
}
.top-column__item .link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  transition: 0.3s;
}
.top-column__item .link:hover {
  opacity: 0.6;
}
.top-column__item .img {
  width: 100%;
  aspect-ratio: 400/245;
  background: url(../img/pages/top/column/no-img.jpg) no-repeat center/cover;
  border-radius: 8px;
}
.top-column__item .time {
  color: #646464;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
.top-column__item .title {
  flex-grow: 1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
}
.top-column__item .caption {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.top-column__button {
  position: absolute;
  top: 30px;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .top-column {
    padding: 50px 0 30px;
  }
  .top-column__title {
    margin-bottom: 35px;
  }
  .top-column__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .top-column__item {
    display: flex;
    width: 90%;
    margin: 0 auto;
  }
  .top-column__item .link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .top-column__item .time {
    font-size: 1.4rem;
  }
  .top-column__item .title {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-bottom: 10px;
  }
  .top-column__item .caption {
    font-size: 1.3rem;
  }
  .top-column__button {
    position: relative;
    margin: 0 auto;
  }
  .top-column .btn {
    text-align: center;
  }
}
.top-news {
  padding: 120px 0;
}
.top-news__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.top-news__list {
  display: flex;
  flex-direction: column;
  width: 725px;
}
.top-news__item .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
  padding: 25px 0;
}
.top-news__item .wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 95%;
}
.top-news__item .time {
  color: #646464;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
.top-news__item .title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}
.top-news__item .icon {
  color: var(--color_sub);
}
.top-news__button {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .top-news {
    padding: 50px 0;
  }
  .top-news__inner {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
  }
  .top-news__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
  }
  .top-news__item .link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
  }
  .top-news__item .wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 90%;
  }
  .top-news__item .time {
    font-size: 1.5rem;
  }
  .top-news__item .title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .top-news__button {
    position: relative;
    margin: 0 auto;
  }
  .top-news .btn {
    text-align: center;
  }
}
.top-about {
  padding-top: 10em;
}
.top-about .col-2 {
  gap: 1.5em 7.9%;
}
.top-about .txt-block {
  width: 43.7%;
}
.top-about .txt-block h4 {
  margin-bottom: 1.6em;
}
.top-about .txt-block .btn {
  text-align: right;
}
.top-about .top-about__label {
  display: flex;
  gap: 1em 2.9%;
  margin: 3.1em 0;
}
.top-about .top-about__label li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31.4%;
  padding: 1em;
  background: var(--color_main);
  border-radius: 5px;
  font-size: 1.12em;
  font-weight: 700;
  text-align: center;
  color: var(--color_sub);
}
.top-about .img-block {
  width: 48.4%;
}

.top-reason {
  padding-top: 7.5em;
}
.top-reason .col-3 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.top-reason .top-reason__item {
  padding: 0 1.87em 1.87em;
}
.top-reason .top-reason__img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  text-align: center;
}
.top-reason h4 {
  margin-bottom: 1em;
  text-align: center;
}
.top-reason .top-reason__txt .note {
  font-size: 0.81em;
}

.top-service {
  margin-top: 7.5em;
  padding: 3.75em 0;
  background: var(--color_sub);
  color: #fff;
}
.top-service .col-2 {
  gap: 1.5em 7.9%;
}
.top-service .txt-block {
  width: 43.7%;
}
.top-service .img-block {
  width: 48.4%;
}
.top-service .top-service__link {
  padding-top: 3.12em;
}
.top-service .top-service__link li + li {
  margin-top: 1.56em;
}
.top-service .top-service__link a {
  position: relative;
  display: block;
  padding: 1em 1.25em;
  border-radius: 5px;
  background: #fff;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--color_txt);
}
.top-service .top-service__link a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25em;
  content: "";
  display: block;
  width: 2.08em;
  aspect-ratio: 1/1;
  background: url(../img/base/ico--arrow-bl01.png) no-repeat center 0/100% auto;
}
.top-service .top-service__link a .sub {
  font-size: 0.66em;
}

@media only screen and (max-width: 767px) {
  .top-about {
    padding-top: var(--padding_sp) !important;
  }
  .top-about .txt-block .btn {
    text-align: center;
  }
  .top-about .top-about__label li {
    padding-left: 0.2em;
    padding-right: 0.2em;
    font-size: 1em;
  }
  .top-reason {
    padding-top: var(--padding_sp) !important;
  }
  .top-service {
    margin-top: var(--padding_sp) !important;
  }
}
.blog__inner {
  padding: 80px 0;
}
.blog__title {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.blog-archive__select {
  display: flex;
  justify-content: end;
  margin-bottom: 15px;
  position: relative;
}
.blog-archive__select::after {
  content: "";
  border-top: 6px solid #000000;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.blog-archive__select select {
  display: block;
  width: 185px;
  font-size: 1.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.blog-archive__select select:focus, .blog-archive__select select:active {
  outline: none;
}
.blog-archive__item {
  border-bottom: 1px solid #cccccc;
  padding: 30px 0;
}
.blog-archive__item:first-child {
  padding-top: 0;
}
.blog-archive__link {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.blog-archive__thumbnail {
  width: 180px;
  aspect-ratio: 1/1;
}
.blog-archive__contents {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 870px;
}
.blog-archive__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.blog-archive__date {
  font-size: 1.6rem;
  font-weight: 600;
}
.blog-archive__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}
.blog-archive__tag {
  background: #000000;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 2px 10px;
}
.blog-archive__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
.blog-archive__text {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .blog__inner {
    padding: 50px 0;
  }
  .blog__title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .blog-archive__select {
    display: flex;
    justify-content: end;
    position: relative;
  }
  .blog-archive__select::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  .blog-archive__select select {
    width: 150px;
    font-size: 1.4rem;
  }
  .blog-archive__item {
    padding: 20px 0;
  }
  .blog-archive__link {
    display: flex;
    gap: 5%;
  }
  .blog-archive__thumbnail {
    width: 25%;
    aspect-ratio: 1/1;
  }
  .blog-archive__contents {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70%;
  }
  .blog-archive__wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .blog-archive__date {
    font-size: 1.4rem;
  }
  .blog-archive__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5px;
  }
  .blog-archive__tag {
    font-size: 1.3rem;
    padding: 2px 10px;
  }
  .blog-archive__title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .blog-archive__text {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.blog-single__inner {
  padding: 80px 0;
}
.blog-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.blog-single__tag {
  color: #ffffff;
  font-size: 1.4rem;
  background: #000000;
  padding: 2px 10px;
}
.blog-single__title {
  color: #000000;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.blog-single__body {
  margin-bottom: 100px;
}
.blog-single__wrapper {
  display: flex;
  justify-content: end;
  border-top: 1px solid #000000;
  padding-top: 5px;
}
.blog-single__date {
  font-size: 1.6rem;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .blog-single__inner {
    padding: 50px 0;
  }
  .blog-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
  }
  .blog-single__tag {
    font-size: 1.3rem;
    padding: 2px 10px;
  }
  .blog-single__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .blog-single__body {
    margin-bottom: 60px;
  }
  .blog-single__wrapper {
    display: flex;
    justify-content: end;
    padding-top: 5px;
  }
  .blog-single__date {
    font-size: 1.5rem;
  }
}
.contact-form__inner {
  padding: 80px 0;
}
.contact-form__title {
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.complete__inner {
  padding: 80px 0;
}
.complete__title {
  text-align: center;
  margin-bottom: 30px;
}
.complete__text {
  text-align: center;
}
.complete__link {
  display: block;
  text-align: center;
  margin-top: 10px;
}

.contact-complete__inner {
  padding: 80px 0;
}
.contact-complete__title {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.contact-complete__text {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.contact-complete__text a {
  border-bottom: 1px solid #000000;
}

@media only screen and (max-width: 767px) {
  .contact-complete__inner {
    padding: 50px 0;
  }
  .contact-complete__title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .contact-complete__text {
    font-size: 1.5rem;
    text-align: center;
  }
  .contact-complete__text a {
    border-bottom: 1px solid #000000;
  }
}
.privacy-policy__inner {
  padding: 80px 0;
}
.privacy-policy__title {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.privacy-contents__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.privacy-contents__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-contents__title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}
.privacy-contents__title i {
  font-size: 1rem;
  font-weight: 500;
}
.privacy-contents__title span {
  font-size: 2rem;
  font-weight: 500;
}
.privacy-contents__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .privacy-policy__inner {
    padding: 50px 0;
  }
  .privacy-policy__title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .privacy-contents__list {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .privacy-contents__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .privacy-contents__title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .privacy-contents__title i {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .privacy-contents__title span {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .privacy-contents__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.site-map__inner {
  padding: 80px 0;
}
.site-map__title {
  font-size: 2.8rem;
  margin-bottom: 30px;
}
.site-map__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}
.site-map__item a i {
  font-size: 1.4rem;
  font-weight: 500;
}
.site-map__item a span {
  font-size: 1.6rem;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .site-map__inner {
    padding: 50px 0;
  }
  .site-map__title {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .site-map__item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
  }
  .site-map__item a i, .site-map__item a span {
    font-size: 1.5rem;
  }
}
.notfound__inner {
  padding: 80px 0;
}
.notfound__title {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.notfound__text {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.notfound__text a {
  border-bottom: 1px solid #000000;
}

@media only screen and (max-width: 767px) {
  .notfound__inner {
    padding: 50px 0;
  }
  .notfound__title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .notfound__text {
    font-size: 1.5rem;
    text-align: center;
  }
  .notfound__text a {
    border-bottom: 1px solid #000000;
  }
}
.corporate-faq {
  padding-top: 4.3em;
}
.corporate-faq ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 3.1em 0;
  border-radius: 5px;
  background: var(--color_sub);
  color: #fff;
}
.corporate-faq ul::before {
  position: absolute;
  top: -5.5em;
  right: 2.6%;
  content: "";
  display: block;
  width: 11.5%;
  aspect-ratio: 148/125;
  background: url(../img/pages/corporate/faq/img--01.png) no-repeat center 0/cover;
}
.corporate-faq li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  padding: 0.5em;
  font-size: 1.12em;
  text-align: center;
}
.corporate-faq li + li {
  border-left: 2px solid #fff;
}

.corporate-reason {
  padding-top: 4.3em;
}
.corporate-reason .corporate-reason__item h4 {
  margin: 1em 0;
}
.corporate-reason .corporate-reason__img img {
  width: 100%;
}
.corporate-reason .corporate-reason__txt {
  padding: 0 1.87em 1.87em;
}

.corporate-service {
  padding-top: 7.5em;
}
.corporate-service .corporate-service__item {
  margin-top: 4.3em;
}
.corporate-service .corporate-service__item + .corporate-service__item {
  margin-top: 2em;
}
.corporate-service .corporate-service__item {
  padding: 3.1em;
  gap: 1.5em 6.2%;
  border-radius: 5px;
  background: var(--color_main);
}
.corporate-service .corporate-service__item .txt-block {
  width: 46.9%;
}
.corporate-service .corporate-service__item .txt-block h4 {
  margin-bottom: 0.5em;
}
.corporate-service .corporate-service__item .txt-block dl {
  margin-top: 2.2em;
  border-top: 1px solid var(--color_sub);
  font-size: 1.12em;
  font-weight: 700;
}
.corporate-service .corporate-service__item .txt-block dt {
  float: left;
  clear: both;
  padding: 0.2em 0 0.2em 0.5em;
}
.corporate-service .corporate-service__item .txt-block dd {
  padding: 0.2em 0 0.2em 6em;
  border-bottom: 1px solid var(--color_sub);
}
.corporate-service .corporate-service__item .img-block {
  width: 46.9%;
}

.corporate-flow {
  padding-top: 4.3em;
}
.corporate-flow .corporate-flow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 7.4%;
}
.corporate-flow .corporate-flow__item {
  counter-increment: my-counter;
  position: relative;
  width: 19.45%;
}
.corporate-flow .corporate-flow__item::before {
  line-height: 1;
  content: counter(my-counter, decimal-leading-zero);
  position: absolute;
  left: -0.2em;
  top: -0.3em;
  font-size: 2.6em;
  font-weight: 900;
  color: var(--color_sub);
}
.corporate-flow .corporate-flow__item + .corporate-flow__item::after {
  position: absolute;
  top: 25%;
  left: -60%;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: var(--color_main);
  z-index: -1;
}
.corporate-flow .corporate-flow__item h5 {
  margin: 1.5em 0 0.8em;
}
.corporate-flow .corporate-flow__img {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .corporate-faq ul {
    padding: 0.5em 2em;
  }
  .corporate-faq ul::before {
    top: -3em;
    width: 5em;
  }
  .corporate-faq li {
    width: 100%;
    padding: 1em;
  }
  .corporate-faq li + li {
    border: none;
    border-top: 2px solid #fff;
  }
  .corporate-service {
    padding-top: var(--padding_sp) !important;
  }
  .corporate-service .corporate-service__item {
    padding: 2em;
  }
  .corporate-flow .corporate-flow__item {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .corporate-flow .corporate-flow__item + .corporate-flow__item::after {
    display: none;
  }
}
.personal-reason__msg {
  margin-top: 5em;
  padding: 2.5em;
  border-radius: 5px;
  border: 5px solid var(--color_sub);
}
.personal-reason__msg h4 {
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  .personal-reason__msg {
    margin-top: 2em;
    padding: 1em;
    border-width: 2px;
  }
}
.service-features {
  padding-top: 3.7em;
}
.service-features .service-features__list {
  gap: 3.75em 5.5%;
}
.service-features .service-features__item {
  width: 47.25%;
  padding: 2.5em 1.87em;
  border-radius: 5px;
  background: var(--color_sub);
  color: #fff;
}
.service-features .service-features__img {
  text-align: center;
}
.service-features .service-features__tit {
  margin: 1.9em 0 1em;
  font-size: 1.5em;
  text-align: center;
}

.service-service .corporate-service__item {
  margin-top: 0;
}
.service-service ul {
  margin-top: 2.2em;
  border-top: 1px solid var(--color_sub);
  font-size: 1.12em;
  font-weight: 700;
}
.service-service li {
  padding: 0.2em 0.5em;
  border-bottom: 1px solid var(--color_sub);
}

@media only screen and (max-width: 767px) {
  .service-features .service-features__list {
    gap: 1.5em 0;
  }
  .service-features .service-features__item {
    width: 100%;
  }
  .service-features .service-features__img {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-features .service-features__tit {
    font-size: 1.2em;
  }
}
.company-greeting .col-2 {
  gap: 1.5em 5.7%;
}
.company-greeting .txt-block {
  width: 46.2%;
}
.company-greeting .img-block {
  width: 48.1%;
}

.company-policy {
  padding-top: 5em;
}

.company-outline {
  padding-top: 7.5em;
}
.company-outline table {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.company-faq {
  padding-top: 7.5em;
}
.company-faq .company-faq__item {
  padding: 2.2em 0;
  border-top: 1px solid var(--color_sub);
  border-bottom: 1px solid var(--color_sub);
  font-size: 1.12em;
  font-weight: 700;
}
.company-faq .company-faq__item + .company-faq__item {
  border-top: none;
}
.company-faq .company-faq__item dt {
  position: relative;
  margin-bottom: 2.2em;
  padding-left: 3.3em;
}
.company-faq .company-faq__item dt::before {
  line-height: 1;
  position: absolute;
  top: -0.2em;
  left: 0;
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9em;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background: var(--color_sub);
  font-size: 1.16em;
  color: #fff;
}
.company-faq .company-faq__item dd {
  position: relative;
  padding-left: 3.3em;
}
.company-faq .company-faq__item dd::before {
  line-height: 1;
  position: absolute;
  top: -0.2em;
  left: 0;
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9em;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background: var(--color_main);
  font-size: 1.16em;
  color: var(--color_sub);
}

@media only screen and (max-width: 767px) {
  .company-outline {
    padding-top: var(--padding_sp) !important;
  }
  .company-faq {
    padding-top: var(--padding_sp) !important;
  }
}

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