@charset "UTF-8";
/*
Theme Name: テーマの名前
Theme URL: テーマのサイトのURI
Description: テーマの説明
Author: 作者の名前
Version: 1.0.0
Tags: タグ
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
:root {
  --cl-pri: #121212;
  --cl-ac: #e23b34;
  --cl-sec: #fac800;
  --cl-light: #fedc00;
}

/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

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

body figure {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus-visible {
  outline: 1px solid transparent;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  color: var(--cl-pri);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  word-break: break-all;
  line-break: strict;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 758px) {
  body {
    font-size: 12px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

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

.container {
  margin: 0 auto;
  max-width: 100%;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  a:hover {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 758px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
}

::-webkit-file-upload-button {
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.btn,
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* ===================================

  固定フッターリンク

====================================== */
.fixed-link {
  display: none;
}

@media screen and (max-width: 1199px) {
  .fixed-link {
    display: block;
    position: fixed;
    bottom: -100px;
    padding: 12px 0;
    width: 100%;
    background-color: var(--cl-sec);
    z-index: 100;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .fixed-link.show {
    opacity: 1;
    bottom: 0;
  }
  .fixed-link__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .fixed-link .item {
    width: calc((100% - 8px) / 2);
  }
  .fixed-link .item__link, .fixed-link .item__img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 758px) {
  .fixed-link {
    width: 100%;
  }
  .fixed-link__inner {
    max-width: 100%;
  }
}
/* ===================================

  ヘッダー

====================================== */
/* ---------------------------------
  WP化するまで無効化
----------------------------------- */
.header-logo__link,
.footer-logo__link {
  pointer-events: none;
}

/* ---------------------------------
  WP化するまで無効化 ここまで
----------------------------------- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1300px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 10px;
}
.header.active {
  background-color: var(--cl-light);
}
.header-logo {
  width: 172px;
}
.header-logo__link, .header-logo__img {
  display: block;
  width: 100%;
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-link {
  width: 180px;
}
.header-link__img {
  display: block;
  width: 100%;
}
.header-link + .header-link {
  margin-left: 15px;
}

@media screen and (max-width: 1199px) {
  .header {
    height: 80px;
  }
  .header__inner {
    width: 100%;
    padding: 0 30px;
  }
  .header-logo {
    width: 150px;
  }
  .header__links {
    display: none;
  }
}
@media screen and (max-width: 758px) {
  .header {
    height: 60px;
  }
  .header__inner {
    padding: 0 20px;
  }
  .header-logo {
    width: 120px;
  }
}
/* ===================================

  フッター

====================================== */
.footer {
  padding: 50px 0;
  background-color: #666666;
  color: #fff;
}
.footer__container {
  margin: 0 auto;
  width: 1040px;
  max-width: 100%;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
  width: 340px;
}
.footer-logo {
  width: 215px;
}
.footer-logo__link, .footer-logo__img {
  display: block;
  width: 100%;
}
.footer__info {
  margin-top: 45px;
  font-size: 14px;
  line-height: 2;
}
.footer__info .name {
  font-size: 16px;
  font-weight: 500;
}
.footer__gm {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 190px;
  height: 40px;
  margin-top: 20px;
  background-color: #fff;
  color: var(--cl-pri);
  border-radius: 9999px;
  z-index: 1;
}
.footer__gm p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 500;
}
.footer__gm p::after {
  content: "";
  display: block;
  position: relative;
  top: 0.15em;
  margin-left: 12px;
  width: 14px;
  height: 14px;
  background-image: url(img/ico/ico-outlink.svg);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center center;
}
.footer__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.footer__btm {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #fff;
}
.footer__copy p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  .footer {
    padding: 50px 0 120px;
  }
  .footer__container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .footer__inner {
    display: block;
  }
  .footer__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .footer-logo {
    width: 180px;
    margin: 0 auto;
  }
  .footer__info {
    margin-top: 40px;
    font-size: 13px;
    text-align: center;
  }
  .footer__info .name {
    font-size: 15px;
  }
  .footer__gm {
    width: 180px;
    height: 38px;
    margin: 25px auto 0;
  }
  .footer__gm p {
    font-size: 15px;
  }
  .footer__gm p::after {
    top: 0.05em;
    margin-left: 10px;
    width: 1em;
    height: 1em;
    background-size: 1em 1em;
  }
  .footer__btm {
    margin-top: 50px;
    padding-top: 30px;
  }
  .footer__copy p {
    font-size: 13px;
    text-align: center;
  }
}
@media screen and (max-width: 758px) {
  .footer {
    padding: 40px 0 120px;
  }
  .footer__container {
    max-width: 100%;
    padding: 0 20px;
  }
  .footer-logo {
    width: 120px;
  }
  .footer__info {
    margin-top: 30px;
    font-size: 12px;
  }
  .footer__info .name {
    font-size: 14px;
  }
  .footer__gm {
    height: 35px;
    margin: 22px auto 0;
  }
  .footer__gm p {
    font-size: 14px;
  }
  .footer__btm {
    margin-top: 30px;
    padding-top: 20px;
  }
  .footer__copy p {
    font-size: 12px;
  }
}
/* ===================================

  トップページ

====================================== */
/* ===================================

  共通

====================================== */
.home {
  background-color: var(--cl-light);
}
.home .main .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .main .section-title .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.home .main .section-title .title::before, .home .main .section-title .title::after {
  content: "";
  display: block;
  width: 115px;
  height: 7px;
  background-color: #fff;
}
.home .main .section-title .title::before {
  -webkit-transform: rotate(75deg);
      -ms-transform: rotate(75deg);
          transform: rotate(75deg);
}
.home .main .section-title .title::after {
  -webkit-transform: rotate(-75deg);
      -ms-transform: rotate(-75deg);
          transform: rotate(-75deg);
}
.home .main .section-title .title br {
  display: none;
}

@media screen and (max-width: 1199px) {
  .home .main .section-title .title {
    font-size: 36px;
  }
  .home .main .section-title .title::before, .home .main .section-title .title::after {
    width: 100px;
    height: 6px;
  }
  .home .main .section-title .title br {
    display: block;
  }
}
@media screen and (max-width: 758px) {
  .home .main .section-title .title {
    font-size: 24px;
    white-space: nowrap;
  }
  .home .main .section-title .title::before, .home .main .section-title .title::after {
    width: 80px;
    height: 4px;
  }
  .home .main .section-title .title::before {
    margin-right: -0.3em;
  }
  .home .main .section-title .title::after {
    margin-left: -0.3em;
  }
}
/* ===================================

  MV

====================================== */
.home .mv {
  width: 100%;
}
.home .mv h1 {
  width: 100%;
  display: block;
}
.home .mv__img {
  width: 100%;
}
.home .mv__img.pc {
  display: block;
}
.home .mv__img.sp {
  display: none;
}

@media screen and (max-width: 758px) {
  .home .mv__img.pc {
    display: none;
  }
  .home .mv__img.sp {
    display: block;
  }
}
/* ===================================

  CTA

====================================== */
.home .cta {
  padding: 40px 0 45px;
  background-color: var(--cl-sec);
}
.home .cta .container {
  position: relative;
  width: 1030px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 14px;
}
.home .cta__ico {
  position: absolute;
  top: -65px;
  left: 16px;
  width: 150px;
  z-index: 2;
}
.home .cta__ico img {
  display: block;
  width: 100%;
}
.home .cta__head {
  text-align: center;
}
.home .cta__title {
  display: inline-block;
}
.home .cta__title h2 {
  display: inline-block;
  padding-bottom: 15px;
  font-size: 48px;
  font-weight: 700;
  border-bottom: 8px solid #fff;
}
.home .cta__title h2 span {
  color: var(--cl-ac);
}
.home .cta__title p {
  margin-top: 25px;
  font-size: 24px;
  line-height: 1.5;
}
.home .cta__body {
  margin-top: 28px;
}
.home .cta-tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .cta-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 480px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 480px;
          flex: 0 0 480px;
}
.home .cta-tel__txt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 30px;
  background-color: var(--cl-ac);
  font-size: 18px;
  color: #fff;
  border-radius: 9999px;
  z-index: 1;
}
.home .cta-tel__txt::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -8px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: #e23b34 transparent transparent transparent;
}
.home .cta-tel__txt.bgf {
  border: 1px solid #e23b34;
  background-color: #fff;
  color: #e23b34;
  z-index: 2;
}
.home .cta-tel__txt.bgf::after {
  z-index: 1;
}
.home .cta-tel__txt.bgf::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -7px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  z-index: 3;
}
.home .cta-tel__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 600;
  white-space: nowrap;
}
.home .cta-tel__link span {
  margin-right: 8px;
  padding-bottom: 0.125em;
  font-size: 36px;
  color: var(--cl-ac);
}
.home .cta-lines {
  margin-top: 35px;
}
.home .cta-line {
  width: 480px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 480px;
          flex: 0 0 480px;
  margin: 0 auto;
}
.home .cta-line__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 110px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #06c755;
  border-radius: 9999px;
  z-index: 1;
}
.home .cta-line__link span {
  margin-top: 6px;
  font-size: 30px;
  font-weight: 700;
}
.home .cta-line__link::before, .home .cta-line__link::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.home .cta-line__link::before {
  left: 38px;
  width: 63px;
  height: 60px;
  background-image: url(img/ico/ico-line.svg);
  background-repeat: no-repeat;
  background-size: 63px 60px;
  background-position: center;
}
.home .cta-line__link::after {
  right: 32px;
  width: 10px;
  height: 18px;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 10px 18px;
  background-position: center;
}

@media screen and (max-width: 1199px) {
  .home .cta {
    padding: 50px 0;
  }
  .home .cta .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .cta__ico {
    top: -40px;
    left: 30px;
    width: 120px;
  }
  .home .cta__title h2 {
    display: inline-block;
    padding-bottom: 15px;
    font-size: 36px;
    border-width: 6px;
  }
  .home .cta__title p {
    margin-top: 30px;
    font-size: 16px;
  }
  .home .cta__body {
    margin-top: 35px;
    display: block;
  }
  .home .cta-tels {
    display: block;
  }
  .home .cta-tel {
    width: 400px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
    margin: 0 auto;
  }
  .home .cta-tel:nth-child(2) {
    margin-top: 30px;
  }
  .home .cta-tel__txt {
    width: 100%;
    height: 28px;
    font-size: 16px;
  }
  .home .cta-tel__link {
    font-size: 48px;
  }
  .home .cta-tel__link span {
    padding-bottom: 0.3em;
    margin-right: 0.5em;
    font-size: 26px;
  }
  .home .cta-line {
    margin: 40px auto 0;
    width: 400px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }
  .home .cta-line__link {
    height: 80px;
    font-size: 16px;
  }
  .home .cta-line__link span {
    font-size: 26px;
  }
  .home .cta-line__link::before {
    left: 20px;
    width: 53px;
    height: 50px;
    background-size: 53px 50px;
  }
  .home .cta-line__link::after {
    right: 22px;
    width: 8px;
    height: 16px;
    background-size: 8px 16px;
  }
}
@media screen and (max-width: 758px) {
  .home .cta {
    padding: 100px 0 40px;
  }
  .home .cta .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .cta__ico {
    top: -90px;
    left: 10px;
    width: 80px;
  }
  .home .cta__title h2 {
    font-size: 26px;
    border-width: 4px;
  }
  .home .cta__title p {
    margin-top: 15px;
    font-size: 14px;
  }
  .home .cta__body {
    margin-top: 30px;
  }
  .home .cta-tel {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 320px;
  }
  .home .cta-tel:nth-child(2) {
    margin-top: 25px;
  }
  .home .cta-tel__txt {
    font-size: 14px;
  }
  .home .cta-tel__link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 36px;
  }
  .home .cta-tel__link span {
    margin-right: 5px;
    padding-bottom: 0.3em;
    font-size: 20px;
  }
  .home .cta-line {
    margin: 30px auto 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 320px;
  }
  .home .cta-line__link {
    height: 65px;
    font-size: 14px;
  }
  .home .cta-line__link span {
    font-size: 22px;
  }
  .home .cta-line__link::before {
    left: 15px;
    width: 43px;
    height: 40px;
    background-size: 43px 40px;
  }
  .home .cta-line__link::after {
    right: 18px;
  }
}
/* ===================================

  こんなお悩みありませんか？

====================================== */
.home .main .worry {
  background-color: #f0f0f0;
}
.home .main .worry .container {
  position: relative;
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 0 115px;
}
.home .main .worry__title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.home .main .worry__contents {
  margin-top: 62px;
  padding: 0 130px;
}
.home .main .worry__contents li {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 85px 20px;
  border-bottom: 1px dotted var(--cl-pri);
}
.home .main .worry__contents li span {
  color: var(--cl-ac);
}
.home .main .worry__contents li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.home .main .worry__contents li::before {
  content: "";
  position: relative;
  top: 0.4em;
  display: inline-block;
  margin-right: 20px;
  width: 40px;
  height: 40px;
  background-image: url(img/ico/ico-check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home .main .worry__deco {
  position: absolute;
  bottom: 0;
  z-index: 2;
}
.home .main .worry__deco img {
  display: block;
  width: 100%;
}
.home .main .worry__deco.woman {
  left: 0;
  width: 198px;
}
.home .main .worry__deco.man {
  right: 0;
  width: 211px;
}

@media screen and (max-width: 1199px) {
  .home .main .worry .container {
    width: 100%;
    max-width: 768px;
    padding: 60px 30px 150px;
  }
  .home .main .worry__title {
    font-size: 36px;
  }
  .home .main .worry__contents {
    margin-top: 50px;
    padding: 0 60px;
  }
  .home .main .worry__contents li {
    font-size: 20px;
    padding: 8px 30px 16px 60px;
  }
  .home .main .worry__contents li::before {
    top: 0.3em;
    margin-right: 0.8em;
    width: 1.5em;
    height: 1.5em;
  }
  .home .main .worry__deco.woman {
    width: 160px;
  }
  .home .main .worry__deco.man {
    width: 170px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .worry .container {
    max-width: 100%;
    padding: 60px 20px 170px;
  }
  .home .main .worry__title {
    font-size: 24px;
  }
  .home .main .worry__contents {
    margin-top: 40px;
    padding: 0;
  }
  .home .main .worry__contents li {
    font-size: 16px;
    padding: 8px 5px 15px;
  }
  .home .main .worry__contents li::before {
    top: 0.35em;
    margin-right: 0.6em;
    width: 1.5em;
    height: 1.5em;
  }
  .home .main .worry__deco.woman {
    width: 120px;
  }
  .home .main .worry__deco.man {
    width: 130px;
  }
}
/* ===================================

  サイタカってどんなサービス？

====================================== */
.home .service {
  padding: 100px 0;
  background-color: var(--cl-sec);
}
.home .service .container {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}
.home .service__txt {
  margin-top: 70px;
}
.home .service__txt p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
.home .service__txt .sp {
  display: none;
}
.home .service__contents {
  margin-top: 46px;
}
.home .service__contents .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .service__contents .item {
  position: relative;
  padding: 25px 30px 30px;
  width: calc((100% - 60px) / 3);
  background-color: #fff;
  border-radius: 10px;
  z-index: 1;
}
.home .service__contents .item__step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 120px;
  height: 25px;
  background-color: var(--cl-ac);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
  z-index: 1;
}
.home .service__contents .item__title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: var(--cl-ac);
}
.home .service__contents .item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  width: 100%;
  height: 145px;
}
.home .service__contents .item__img {
  display: block;
  width: auto;
  height: 130px;
}
.home .service__contents .item:first-child .item__img {
  height: 145px;
}
.home .service__contents .item__body {
  padding-top: 28px;
}
.home .service__contents .item__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .home .service {
    padding: 80px 0;
  }
  .home .service .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .service__txt {
    margin-top: 50px;
  }
  .home .service__txt p {
    font-size: 18px;
  }
  .home .service__contents {
    margin-top: 40px;
  }
  .home .service__contents .item {
    padding: 25px 20px 30px;
    width: calc((100% - 30px) / 3);
    border-radius: 8px;
  }
  .home .service__contents .item__step {
    width: 100px;
    height: 22px;
    font-size: 16px;
  }
  .home .service__contents .item__title {
    margin-top: 18px;
    font-size: 20px;
  }
  .home .service__contents .item__head {
    margin-top: 28px;
    height: 130px;
  }
  .home .service__contents .item__img {
    height: 110px;
  }
  .home .service__contents .item:first-child .item__img {
    height: 130px;
  }
  .home .service__contents .item__body {
    padding-top: 25px;
  }
  .home .service__contents .item__txt {
    font-size: 16px;
  }
  .home .service__contents .item__txt br {
    display: none;
  }
}
@media screen and (max-width: 758px) {
  .home .service {
    padding: 50px 0 60px;
  }
  .home .service .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .service__txt {
    margin-top: 30px;
  }
  .home .service__txt p {
    font-size: 16px;
  }
  .home .service__txt .sp {
    display: block;
  }
  .home .service__contents {
    margin-top: 35px;
  }
  .home .service__contents .items {
    display: block;
  }
  .home .service__contents .item {
    padding: 30px;
    width: 100%;
    border-radius: 10px;
  }
  .home .service__contents .item + .item {
    margin-top: 25px;
  }
  .home .service__contents .item__step {
    width: 110px;
    height: 24px;
    font-size: 16px;
  }
  .home .service__contents .item__txt br {
    display: block;
  }
}
/* ===================================

  オークション代行が選ばれる理由

====================================== */
.home .main .reason {
  padding: 86px 0 100px;
  background-color: var(--cl-light);
}
.home .main .reason .container {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}
.home .main .reason__contents {
  margin-top: 136px;
}
.home .main .reason .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .main .reason .item {
  position: relative;
  padding: 76px 30px 35px;
  width: calc((100% - 40px) / 2);
  min-height: 680px;
  background-color: #fff;
  border-radius: 10px;
  z-index: 1;
}
.home .main .reason .item:nth-child(n+3) {
  margin-top: 105px;
}
.home .main .reason .item__num {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  padding-top: 12px;
  width: 92px;
  height: 92px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: var(--cl-ac);
  border-radius: 50%;
  border: 5px solid #fff;
  z-index: 1;
}
.home .main .reason .item__num span {
  margin-top: 5px;
  font-size: 32px;
}
.home .main .reason .item__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.home .main .reason .item__title span {
  display: block;
  color: var(--cl-ac);
}
.home .main .reason .item__head {
  margin-top: 15px;
}
.home .main .reason .item__img {
  display: block;
  width: 100%;
}
.home .main .reason .item__body {
  margin-top: 9px;
}
.home .main .reason .item__body p {
  font-size: 18px;
  line-height: 2;
}
.home .main .reason .item__body p span {
  font-weight: 700;
  color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .home .main .reason {
    padding: 60px 0 80px;
  }
  .home .main .reason .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .reason__contents {
    margin-top: 90px;
  }
  .home .main .reason .item {
    padding: 50px 20px 30px;
    width: calc((100% - 20px) / 2);
    min-height: 0;
  }
  .home .main .reason .item:nth-child(n+3) {
    margin-top: 70px;
  }
  .home .main .reason .item__num {
    padding-top: 10px;
    width: 80px;
    height: 80px;
    font-size: 16px;
    border-width: 4px;
  }
  .home .main .reason .item__num span {
    margin-top: 4px;
    font-size: 26px;
  }
  .home .main .reason .item__title {
    font-size: 23px;
  }
  .home .main .reason .item__head {
    margin-top: 12px;
  }
  .home .main .reason .item__body {
    margin-top: 8px;
  }
  .home .main .reason .item__body p {
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .reason {
    padding: 50px 0 60px;
  }
  .home .main .reason .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .reason__contents {
    margin-top: 80px;
  }
  .home .main .reason .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home .main .reason .item {
    padding: 45px 15px 40px;
    width: 100%;
    max-width: 350px;
  }
  .home .main .reason .item:nth-child(n+2) {
    margin-top: 60px;
  }
  .home .main .reason .item__num {
    padding-top: 8px;
    width: 70px;
    height: 70px;
    font-size: 15px;
  }
  .home .main .reason .item__num span {
    margin-top: 3px;
    font-size: 24px;
  }
  .home .main .reason .item__title {
    font-size: 22px;
  }
  .home .main .reason .item__body p {
    font-size: 15px;
  }
}
/* ===================================

  お客様へのお支払い

====================================== */
.home .main .payment {
  padding: 113px 0 110px;
  background-color: var(--cl-sec);
}
.home .main .payment .container {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}
.home .main .payment__contents {
  margin-top: 102px;
}
.home .main .payment .box {
  position: relative;
  padding: 72px 100px 56px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}
.home .main .payment .box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .main .payment .box__head .price {
  width: 360px;
}
.home .main .payment .box__head .ico {
  width: 25px;
}
.home .main .payment .box__head .fee {
  width: 420px;
}
.home .main .payment .box__img {
  display: block;
  width: 100%;
}
.home .main .payment .box__img.sp {
  display: none;
}
.home .main .payment .box__body {
  margin-top: 46px;
}
.home .main .payment .box__title {
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  border-bottom: 2px solid var(--cl-sec);
}
.home .main .payment .box__contents {
  margin-top: 14px;
}
.home .main .payment .box__contents p {
  font-size: 20px;
  line-height: 2;
  text-align: center;
}
.home .main .payment .box__contents p br {
  display: none;
}
.home .main .payment .box__contents .table-wrap {
  margin-top: 15px;
}
.home .main .payment .box__contents .price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #ccc;
}
.home .main .payment .box__contents .price-table th,
.home .main .payment .box__contents .price-table td {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 18px;
  line-height: 1.3;
}
.home .main .payment .box__contents .price-table thead tr {
  background-color: #f2f2f2;
}
.home .main .payment .box__contents .price-table thead th {
  text-align: center;
  font-weight: 500;
}
.home .main .payment .box__contents .price-table__col--item, .home .main .payment .box__contents .price-table__col--desc, .home .main .payment .box__contents .price-table__col--amt {
  width: 33.3333333333%;
}
.home .main .payment .box__contents .price-table__amt {
  text-align: right;
  white-space: nowrap;
}
.home .main .payment .box__contents .price-table__amt--negative {
  color: var(--cl-pri);
}
.home .main .payment .box__contents .price-table__row--total td {
  background-color: #fff4bd;
}
.home .main .payment .box__contents .price-table__row--total td:nth-child(1) {
  background-color: var(--cl-sec);
  font-weight: 500;
}
.home .main .payment .box__contents .price-table__row--total td:nth-child(2) {
  font-weight: 400;
  color: var(--cl-pri);
}
.home .main .payment .box__contents .price-table__row--total .price-table__amt {
  font-weight: 500;
  color: #e74403;
}
.home .main .payment .box__foot {
  margin-top: 20px;
}
.home .main .payment .box__foot p {
  font-size: 18px;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .home .main .payment {
    padding: 80px 0;
  }
  .home .main .payment .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .payment__contents {
    margin-top: 80px;
  }
  .home .main .payment .box {
    padding: 60px 30px;
  }
  .home .main .payment .box__head .price {
    width: 265px;
  }
  .home .main .payment .box__head .ico {
    width: 20px;
  }
  .home .main .payment .box__head .fee {
    width: 308px;
  }
  .home .main .payment .box__body {
    margin-top: 35px;
  }
  .home .main .payment .box__title {
    padding-bottom: 10px;
    font-size: 20px;
  }
  .home .main .payment .box__contents {
    margin-top: 12px;
  }
  .home .main .payment .box__contents p {
    font-size: 16px;
  }
  .home .main .payment .box__contents .price-table th,
  .home .main .payment .box__contents .price-table td {
    height: 50px;
    padding: 8px;
    font-size: 16px;
    vertical-align: middle;
    word-break: break-all;
  }
  .home .main .payment .box__foot {
    margin-top: 18px;
  }
  .home .main .payment .box__foot p {
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .payment {
    padding: 60px 0;
  }
  .home .main .payment .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .payment__contents {
    margin-top: 60px;
  }
  .home .main .payment .box {
    padding: 40px 15px;
  }
  .home .main .payment .box__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .main .payment .box__head .price {
    width: 238px;
  }
  .home .main .payment .box__head .ico {
    margin-top: 15px;
  }
  .home .main .payment .box__head .fee {
    margin-top: 15px;
    width: 280px;
  }
  .home .main .payment .box__body {
    margin-top: 40px;
  }
  .home .main .payment .box__title {
    font-size: 18px;
  }
  .home .main .payment .box__contents p {
    font-size: 15px;
  }
  .home .main .payment .box__contents p br {
    display: block;
  }
  .home .main .payment .box__contents .price-table th,
  .home .main .payment .box__contents .price-table td {
    height: 60px;
    padding: 8px;
    font-size: 14px;
  }
  .home .main .payment .box__contents .price-table tbody td:first-child {
    padding-left: 1.6em;
    text-indent: -1.2em;
  }
  .home .main .payment .box__contents .price-table__col--item, .home .main .payment .box__contents .price-table__col--desc {
    width: auto;
  }
  .home .main .payment .box__contents .price-table__col--amt {
    width: 110px;
  }
  .home .main .payment .box__foot {
    margin-top: 16px;
  }
  .home .main .payment .box__foot p {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
  }
  .home .main .payment .box__foot p + p {
    margin-top: 0.5em;
  }
}
/* ===================================

  売却事例

====================================== */
.home .main .works {
  padding: 88px 0 100px;
  background-color: #f3f3f3;
}
.home .main .works .container {
  position: relative;
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}
.home .main .works .section-title .title::before, .home .main .works .section-title .title::after {
  background-color: var(--cl-sec);
}
.home .main .works .section-title .title::before {
  margin-right: 0.5em;
}
.home .main .works .section-title .title::after {
  margin-left: 0.5em;
}
.home .main .works__contents {
  margin-top: 75px;
}
.home .main .works .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .main .works .entry {
  position: relative;
  width: calc((100% - 60px) / 4);
}
.home .main .works .entry + .entry {
  margin-left: 20px;
}
.home .main .works .entry:nth-child(4n+1) {
  margin-left: 0;
}
.home .main .works .entry:nth-child(n+5) {
  margin-top: 20px;
}
.home .main .works .entry-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 72px;
  z-index: 2;
}
.home .main .works .entry-badge__img {
  display: block;
  width: 100%;
}
.home .main .works .entry__thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  z-index: 1;
}
.home .main .works .entry__thumb-img {
  width: 100%;
  padding-top: 80%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.home .main .works .entry__body {
  padding: 10px;
  background-color: #fff;
}
.home .main .works .entry__name {
  line-height: 1.5;
  text-align: center;
}
.home .main .works .entry__name .maker {
  font-size: 10px;
}
.home .main .works .entry__name .name {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 500;
}
.home .main .works .entry__name .rank {
  display: block;
  margin-top: 3px;
  font-size: 10px;
}
.home .main .works .entry dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .main .works .entry dt {
  font-size: 12px;
}
.home .main .works .entry dd {
  font-size: 12px;
  font-weight: 500;
}
.home .main .works .entry__info {
  margin-top: 20px;
  padding: 0 21px 0 10px;
}
.home .main .works .entry__info dl + dl {
  margin-top: 18px;
}
.home .main .works .entry__hopeprice {
  position: relative;
  margin-top: 18px;
  padding: 9px 20px 9px 15px;
  background-color: var(--cl-sec);
  border-radius: 4px;
  z-index: 1;
}
.home .main .works .entry__cashback {
  position: relative;
  margin-top: 10px;
  padding: 9px 20px 9px 15px;
  background-color: #f2f2f2;
  border-radius: 4px;
  z-index: 1;
}
.home .main .works .entry__total {
  position: relative;
  padding: 11px 15px;
  background-color: #1068ac;
  color: #fff;
  border-radius: 0 0 4px 4px;
  z-index: 1;
}
.home .main .works .entry__total dd {
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  .home .main .works {
    padding: 80px 0;
  }
  .home .main .works .container {
    width: 100%;
    max-width: 768px;
    padding: 0 60px;
  }
  .home .main .works .section-title .title::before {
    margin-right: 0.3em;
  }
  .home .main .works .section-title .title::after {
    margin-left: 0.3em;
  }
  .home .main .works__contents {
    margin-top: 80px;
  }
  .home .main .works .entries {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .main .works .entry {
    width: calc((100% - 30px) / 2);
    max-width: 250px;
  }
  .home .main .works .entry + .entry {
    margin-left: 0;
  }
  .home .main .works .entry-badge {
    width: 62px;
  }
  .home .main .works .entry:nth-child(2n) {
    margin-left: 30px;
  }
  .home .main .works .entry:nth-child(n+3) {
    margin-top: 30px;
  }
  .home .main .works .entry__body {
    padding: 12px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .works {
    padding: 60px 0;
  }
  .home .main .works .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .works .section-title .title::before {
    margin-right: 0;
  }
  .home .main .works .section-title .title::after {
    margin-left: 0;
  }
  .home .main .works__contents {
    margin-top: 60px;
  }
  .home .main .works .entries {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .home .main .works .entry {
    width: 100%;
    max-width: 280px;
  }
  .home .main .works .entry:nth-child(2n) {
    margin-left: 0;
  }
  .home .main .works .entry:nth-child(n+2) {
    margin-top: 35px;
  }
  .home .main .works .entry-badge {
    width: 70px;
  }
  .home .main .works .entry__body {
    padding: 10px;
  }
}
/* ===================================

  他社サービスと徹底比較

====================================== */
.home .main .comp {
  padding: 92px 0 107px;
  background-color: var(--cl-light);
}
.home .main .comp .container {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}
.home .main .comp__contents {
  margin-top: 95px;
}
.home .main .comp .compare {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #ccc;
}
.home .main .comp .compare th,
.home .main .comp .compare td {
  padding: 18px 9px;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.3;
  border: 1px solid #ccc;
  word-break: break-all;
}
.home .main .comp .compare th span,
.home .main .comp .compare td span {
  display: block;
}
.home .main .comp .compare th span + span,
.home .main .comp .compare td span + span {
  margin-top: 6px;
}
.home .main .comp .compare thead th {
  background-color: #e6e6e6;
  font-weight: 500;
}
.home .main .comp .compare thead .compare__th--accent {
  background-color: var(--cl-sec);
}
.home .main .comp .compare thead .compare__th--accent img {
  display: block;
  width: 86px;
  margin: 0 auto;
}
.home .main .comp .compare tbody th[scope=row] {
  font-weight: 500;
  background: #fff;
}
.home .main .comp .compare__col--item, .home .main .comp .compare__col--auction, .home .main .comp .compare__col--bulk, .home .main .comp .compare__col--shop, .home .main .comp .compare__col--trade {
  width: 20%;
}
.home .main .comp .compare .sm {
  font-size: 0.78em;
}
.home .main .comp .compare__text--red {
  color: #e74403;
  font-weight: 400;
}
.home .main .comp .compare__text--red + .compare__text--red {
  font-size: 0.78em;
}
.home .main .comp .rating {
  font-size: 18px;
  line-height: 1;
}
.home .main .comp .rating__red {
  color: #e74403;
}
.home .main .comp tr td:nth-child(2) {
  background-color: #fff4bd;
  font-weight: 500;
}

@media screen and (max-width: 1199px) {
  .home .main .comp {
    padding: 80px 0;
  }
  .home .main .comp .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .comp__contents {
    margin-top: 80px;
  }
  .home .main .comp .compare th,
  .home .main .comp .compare td {
    height: 60px;
    padding: 10px 8px;
    font-size: 15px;
  }
  .home .main .comp .compare th span + span,
  .home .main .comp .compare td span + span {
    margin-top: 0.5em;
  }
  .home .main .comp .compare thead .compare__th--accent img {
    width: 70px;
  }
  .home .main .comp .rating {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .comp {
    padding: 60px 0;
  }
  .home .main .comp .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .comp .section-title .title::before {
    margin-right: -0.5em;
  }
  .home .main .comp .section-title .title::after {
    margin-left: -0.5em;
  }
  .home .main .comp__contents {
    margin-top: 60px;
  }
  .home .main .comp .compare th,
  .home .main .comp .compare td {
    padding: 8px;
    font-size: 14px;
  }
  .home .main .comp .compare thead .compare__th--accent img {
    width: 100%;
  }
  .home .main .comp .rating {
    font-size: 14px;
  }
}
/* ===================================

  よくある質問

====================================== */
.home .main .faq {
  padding: 114px 0 100px;
  background-color: #fff;
}
.home .main .faq .container {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}
.home .main .faq .section-title .title::before, .home .main .faq .section-title .title::after {
  background-color: var(--cl-sec);
}
.home .main .faq .section-title .title::before {
  margin-right: 0.5em;
}
.home .main .faq .section-title .title::after {
  margin-left: 0.5em;
}
.home .main .faq__contents {
  margin-top: 100px;
}
.home .main .faq .item + .item {
  margin-top: 20px;
}
.home .main .faq .item__q {
  position: relative;
  padding: 20px 30px;
  background-color: var(--cl-light);
  border-radius: 8px;
  z-index: 1;
  cursor: pointer;
}
.home .main .faq .item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .main .faq .item__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
  width: 35px;
}
.home .main .faq .item__head span {
  display: block;
  padding-top: 0.18em;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
}
.home .main .faq .item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
}
.home .main .faq .item__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.home .main .faq .item__q .item__inner {
  position: relative;
}
.home .main .faq .item__ico {
  position: absolute;
  top: 0.35em;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(img/ico/ico-plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.home .main .faq .item__ico.active {
  background-image: url(img/ico/ico-minus.svg);
}
.home .main .faq .item__a {
  position: relative;
  margin-top: -8px;
  padding: 28px 115px 28px 30px;
  border: 2px solid var(--cl-light);
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 1;
}
.home .main .faq .item__txt {
  font-size: 18px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .home .main .faq {
    padding: 80px 0 100px;
  }
  .home .main .faq .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .faq .section-title .title::before {
    margin-right: 0.3em;
  }
  .home .main .faq .section-title .title::after {
    margin-left: 0.3em;
  }
  .home .main .faq__contents {
    margin-top: 80px;
  }
  .home .main .faq .item + .item {
    margin-top: 15px;
  }
  .home .main .faq .item__q {
    padding: 16px 25px;
  }
  .home .main .faq .item__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    width: 30px;
  }
  .home .main .faq .item__head span {
    padding-top: 0.15em;
    font-size: 20px;
  }
  .home .main .faq .item__title {
    font-size: 18px;
  }
  .home .main .faq .item__ico {
    top: 0.38em;
    width: 18px;
    height: 18px;
  }
  .home .main .faq .item__a {
    padding: 25px 80px 25px 25px;
  }
  .home .main .faq .item__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .faq {
    padding: 60px 0 80px;
  }
  .home .main .faq .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .faq .section-title .title::before {
    margin-right: 0;
  }
  .home .main .faq .section-title .title::after {
    margin-left: 0;
  }
  .home .main .faq__contents {
    margin-top: 60px;
  }
  .home .main .faq .item__q {
    padding: 15px;
  }
  .home .main .faq .item__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22px;
            flex: 0 0 22px;
    width: 22px;
  }
  .home .main .faq .item__head span {
    font-size: 18px;
  }
  .home .main .faq .item__title {
    font-size: 16px;
  }
  .home .main .faq .item__ico {
    width: 16px;
    height: 16px;
  }
  .home .main .faq .item__a {
    padding: 22px 30px 20px 15px;
  }
  .home .main .faq .item__txt {
    font-size: 14px;
  }
}
/* ===================================

  2026.02.21 修正

====================================== */
.home .main .payment .box__figure {
  margin-top: 33px;
}
.home .main .payment .box__img {
  display: block;
  width: 100%;
}
.home .main .payment .box__contents .table-wrap {
  margin-top: 46px;
}

@media screen and (max-width: 1199px) {
  .home .main .payment .box__figure {
    margin-top: 25px;
  }
  .home .main .payment .box__contents .table-wrap {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .payment .box__figure {
    margin-top: 22px;
  }
  .home .main .payment .box__contents .table-wrap {
    margin-top: 22px;
  }
}