@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600&display=swap');

/*!
global > content-width
------------------------------
*/ :root {
  --width-content: 1040px;
} /*!
global > font
------------------------------
*/ :root {
  --font-family-base: "Noto Sans JP", sans-serif;
} /*!
global > text-color
------------------------------
*/ :root {
  --color-text-base: #303335;
  --color-text-accent1: #0D3B86;
  --color-text-accent2: #A72E2A;
  --color-text-accent3: #DC5C00;
  --color-text-accent4: #CD9616;
  --color-text-accent5: #776419;
} /*!
global > background
------------------------------
*/ :root {
  --color-background1: #F3F0EC;
  --color-background2: #768ABC;
  --color-background3: #A72E2A;
} /*!
global > btn
------------------------------
*/ :root {
  --color-btn-text: #fff;
  --color-btn-text-hover: #fff;
  --color-btn-background: #303335;
  --color-btn-background-hover: #4e5356;
} /*!
foundation > reset
------------------------------
*/ html {
  background: #fff;
  color: #000;
}
body, div, ul, li, h1, h2, h3, h4, p {
  margin: 0;
  padding: 0
}
img {
  border: 0
}
ul {
  list-style: none
}
h1, h2, h3, h4 {
  font-weight: 500;
  font-size: 100%
}
a {
  color: inherit;
  text-decoration: none
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
svg {
  display: block
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
button {
  padding: 0;
  border: none;
  outline: none;
  appearance: none;
  background: none;
  cursor: pointer;
}

/* --------------------
common
-------------------- */
body#sacsac {
  color: var(--color-text-base);
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-family-base);
  background-color: #FFF;
  background-attachment: fixed;
  position: relative;
  margin: auto;
}

#sacsac main {
  background: #fff;
}

@media (min-width: 1024px) {
    body#sacsac {
        font-size: 16px;
    }
}

#sacsac .section-container {
    padding: 50px 0 70px;
}

#sacsac .section-header {
    color: var(--color-text-accent1);
    text-align: center;
    margin-bottom: 30px;
}

#sacsac .section-header h2 {
    font-size: 24px;
    letter-spacing: 1px;
    text-indent: 1px;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    #sacsac .section-container {
        padding: 90px 0 ;
    }

    #sacsac .section-header {
        margin-bottom: 40px;
    }

    #sacsac .section-header h2 {
        font-size: 36px;
    }
}

#sacsac .w-base {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    #sacsac .w-base {
        width: calc(100% - 40px);
    }
}

@media (min-width: 1024px) {
    #sacsac .w-base {
        width: calc(100% - 60px);
    }
}

#sacsac .cv_box {
    background: var(--color-background1);
    text-align: center;
    padding: 50px 0;
}

#sacsac .cv_box p {
    font-size: 11px;
}

#sacsac .cv_box .comment {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .7px;
}

#sacsac .cv_box .comment::before {
    content: "＼";
}

#sacsac .cv_box .comment::after {
    content: "／";
}

#sacsac .app-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#sacsac .app-container a {
    display: inline-block;
}

#sacsac .app-container img {
    width: auto;
    height: 45px;
    vertical-align: middle;
    object-fit: contain;
}

#sacsac .app-container .img.google img {
    height: 65px;
}

@media (min-width: 1024px) {
    #sacsac .cv_box {
        padding: 90px 0;
    }

    #sacsac .cv_box .comment {
        font-size: 18px;
    }

    #sacsac .cv_box p {
        font-size: 14px;
    }

    #sacsac .cv_contact {
        padding-bottom: 50px;
    }

    #sacsac .app-container img {
        height: 55px;
    }

    #sacsac .app-container .img.google img {
        height: 80px;
    }
}

#sacsac .btn-wrap {
    text-align: center;
}

#sacsac .btn {
    display: inline-flex;
    background: var(--color-btn-background);
    border-radius: 50vh;
    color: var(--color-btn-text);
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.4px;
    text-indent: 1.4px;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    transition: all .12s ease-out;
    padding: 10px 30px;
}

#sacsac .btn:hover {
    background: var(--color-btn-background-hover);
}

#sacsac .note-list {
    font-size: 11px;
    margin-top: 10px;
}

#sacsac .note-list li {
    text-indent: -1em;
    padding-left: 1em;
}

#sacsac .note-list li::before {
    content: "※";
}

#sacsac .note-list.num {
    counter-reset: number 0;
}

#sacsac .note-list.num li {
    text-indent: -2em;
    padding-left: 2em;
}

#sacsac .note-list.num li::before {
    counter-increment: number 1;
    content: "※" counter(number);
    margin-right: 5px;
}

#sacsac .bubble {
    background-image: url(../img/text-bubble.png);
    background-size: 100%;
    background-position: center bottom 5px;
    background-repeat: no-repeat;
    padding-bottom: 20px;
}

#sacsac .contact {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: auto;
}

#sacsac .contact .inner {
    width: max-content;
    border-top: 1px solid #303335;
    border-bottom: 1px solid #303335;
    position: relative;
    margin: auto;
    padding: 10px 50px;
}

#sacsac .contact .decoration {
    width: 100%;
}

#sacsac .contact .decoration::before,
#sacsac .contact .decoration::after {
    content: "";
    position: absolute;
    background: currentColor;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translateY(-50%);
}

#sacsac .contact .decoration::before {
    left: 0;
}

#sacsac .contact .decoration::after {
    right: 0;
}

#sacsac .contact .decoration-top::before,
#sacsac .contact .decoration-top::after {
    top: 0;
}

#sacsac .contact .decoration-bottom::before,
#sacsac .contact .decoration-bottom::after {
    bottom: -5px;
}

#sacsac .contact .accent {
    color: #0000EE;
}

#sacsac .spbr {
    display: block;
}

#sacsac .pcbr {
    display: none;
}

@media (min-width: 768px) {
    #sacsac .spbr {
        display: none;
    }

    #sacsac .pcbr {
        display: block;
    }
}

#sacsac .js-slideup {
  opacity: 0;
  visibility: hidden;
  /* transition: all 1s; */
  transform: translateY(20px);
  transition: 0.6s ease-out;
}

#sacsac .js-slide-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ----------------------- */

#sacsac #header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #fff;
}

#sacsac #header h1 {
    width: 216px;
    line-height: 1;
}

#sacsac #header h1 img {
    width: 100%;
    vertical-align: bottom;
}

@media (min-width: 1024px) {
    #sacsac #header {
        height: 140px;
    }

    #sacsac #header h1 {
        width: 422px;
        margin-top: 20px;
    }

}

/* ----- */

#sacsac #kv {
    width: auto;
    height: 373px;
    background-image: url(../img/kv_sp.jpg);
    background-size: 373px;
    background-position: center;
    background-repeat: repeat-x;
    padding: 30px 10px;
}

#sacsac #kv h2 {
    width: max-content;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align-last: justify;
    margin: auto;
}

#sacsac #kv .sub {
    width: max-content;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.04em;
    position: relative;
    margin: 8px auto 0;
    z-index: 1;
}

#sacsac #kv .sub::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 8px;
    background: rgba(250, 242, 19, 0.58);
    filter: blur(3.0999999046325684px);
    z-index: -1;
}

#sacsac #kv .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

#sacsac #kv .logo {
    width: 135px;
}

#sacsac #kv .mockup {
    width: 90px;
}

@media (min-width: 768px) {
    #sacsac #kv {
        background-size: 515px;
    }
}

@media (min-width: 1024px) {
    #sacsac #kv {
        height: 476px;
        background-image: url(../img/kv_pc.jpg);
        background-size: 1040px;
        padding: 30px 40px 40px;
    }

    #sacsac #kv h2 {
        font-size: 40px;
        font-weight: 700;
    }

    #sacsac #kv .sub {
        font-size: 24px;
        margin-top: 15px;
    }

    #sacsac #kv .img-box {
        margin-top: 45px;
    }

    #sacsac #kv .logo {
        width: 200px;
    }


    #sacsac #kv .mockup {
        display: none;
    }
}

/* ----- */

#sacsac #explain {
    background: var(--color-background1);
}

#sacsac .cv_explain + #explain .section-container {
    padding: 10px 0 50px;
}

#sacsac #explain .section-header {
    background: #fff;
    color: inherit;
    margin: 0;
    padding: 30px 0;
}

#sacsac #explain .section-header h2 {
    font-size: 20px;
    letter-spacing: 0;
    text-indent: 0;
}

#sacsac #explain .section-header h2 .bubble {
    padding: 0 10px 22px;
}

#sacsac #explain .section-header h2 .accent {
    color: var(--color-text-accent2);
    font-size: 35px;
}

#sacsac #explain .section-header h2 .accent .num {
    font-size: 45px;
}

#sacsac #explain .section-header h2 sup {
    font-size: 10px;
}

#sacsac #explain .cv_box {
    margin-bottom: 60px;
}

#sacsac #explain .note-list.num {
    max-width: 450px;
    margin: auto;
}

#sacsac .exchange-list {
    width: calc(100% - 60px);
    max-width: 300px;
    font-weight: 500;
    position: relative;
    margin: 0 auto 40px;
}

#sacsac .exchange-list::before {
    content: '';
    width: 1px;
    height: 25px;
    background: #303335;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 10px 0;
}

#sacsac .exchange-list li + li {
    margin-top: 10px;
}

#sacsac .exchange-list li::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #F5A100;
    transform: rotate(45deg);
    margin-right: 8px;
}

#sacsac .price-box {
    text-align: center;
}

#sacsac .price-box .price {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    text-indent: 1px;
}

#sacsac .price-box .price .num {
    font-size: 30px;
}

#sacsac .price-box .price .small {
    font-size: 17px;
    font-feature-settings: "palt";
}

#sacsac .continuation-text {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 30px 0 20px;
}

#sacsac .continuation-text sup {
    font-size: 10px;
}

@media (min-width: 1024px) {
    #sacsac .cv_explain + #explain .section-container {
        padding: 0 0 90px;
    }

    #sacsac #explain .section-header h2 .bubble {
        font-size: 30px;
        padding: 0 15px 25px;
    }

    #sacsac #explain .section-header h2 .accent {
        font-size: 38px;
    }

    #sacsac #explain .section-header h2 .accent .num {
        font-size: 58px;
    }

    #sacsac .continuation-text {
        font-size: 30px;
    }
}

/* ----- */

#sacsac .case-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    container-type: inline-size;
    gap: 10px;
    margin: auto;
}

#sacsac .case-item {
    max-width: 350px;
}

@media (min-width: 768px) {
    #sacsac .case-list {
        align-items: flex-start;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 730px;
        gap: 20px;
    }

    #sacsac .case-item {
        align-items: flex-start;
        width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    #sacsac .case-list {
        gap: 20px 30px;
    }
}

/* ----- */

#sacsac #solution {
    background: var(--color-background1);
}

#sacsac #solution .section-container {
    padding: 50px 0;
}

#sacsac #solution::before {
    content: '';
    display: block;
    padding-top: 14.45%;
    background-image: url(../img/worries_sp_bg.svg);
    background-size: 100%;
    background-position: center -1px;
    background-repeat: no-repeat;
}

#sacsac .solution-box {
    background: #fff;
    padding: 30px 10px;
}

#sacsac .solution-box .desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

#sacsac .solution-box .desc .accent {
    color: var(--color-text-accent4);
}

#sacsac .solution-box .desc .accent sup {
    font-size: 10px;
}

#sacsac .solution-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    margin: 30px auto 0;
}

#sacsac .solution-item .img {
    max-width: 340px;
    position: relative;
}

#sacsac .solution-item .img:first-of-type::after {
    content: '';
    width: 27px;
    height: calc(22px / 2);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #686058;
    position: absolute;
    bottom: -21px;
    right: 38%;
}

#sacsac .solution-box .note-list {
    max-width: 680px;
    margin: 20px auto 0;
}

#sacsac .brand-box {
    background: #fff;
    margin-top: 60px;
    padding: 30px 10px;
}

#sacsac .brand-box .title {
    text-align: center;
    margin-bottom: 25px;
}

#sacsac .brand-box .title .sub {
    display: inline-block;
    background: #303335;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
    padding: 5px 10px;
}

#sacsac .brand-box .title .sub .num {
    font-size: 18px;
}

#sacsac .brand-box .title h3 {
    font-size: 18px;
}

#sacsac .brand-box .sp_contents .img {
    max-width: 400px;
    margin: auto;
}

#sacsac .brand-box summary {
    text-align: center;
    list-style: none;
    pointer-events: none;
}

#sacsac .brand-box summary .btn {
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    margin-top: 45px;
}

#sacsac .brand-box summary .btn::before {
    width: 20px;
    height: 40px;
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle farthest-side, #000, #000 20%, transparent 20%, transparent);
    background-size: 20px 12px;
}

#sacsac .brand-box summary .btn::after {
    content: '';
    width: 10px;
    height: 10px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #fff;
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
}

#sacsac .brand-box .details-contents .text-box {
    position: relative;
    text-align: center;
    margin-top: 55px;
}

#sacsac .brand-box .details-contents .text-box::before {
    width: 20px;
    height: 40px;
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    background: radial-gradient(circle farthest-side, #000, #000 20%, transparent 20%, transparent);
    background-size: 20px 12px;
}

#sacsac .brand-box .details-contents .text-box .sub {
    width: max-content;
    background: #303335;
    border-radius: 50vh;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.9px;
    text-indent: 0.9px;
    margin: auto;
    padding: 7px 20px;
}

#sacsac .brand-box .details-contents .text-box .main {
    font-weight: 500;
    letter-spacing: 0.9px;
    text-indent: 0.9px;
    margin-top: 15px;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
#sacsac .brand-box summary::-webkit-details-marker {
  display: none;
}

#sacsac .brand-box details[open] summary {
  display: none;
}

#sacsac .brand-box .pc_contents {
    display: none;
}

#sacsac .contact_middle {
    background: var(--color-background1);
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    #sacsac #solution::before {
        padding-top: 6.25%;
        background-image: url(../img/worries_pc_bg.svg);
    }

    #sacsac .solution-box {
        padding: 40px 20px;
    }

    #sacsac .solution-item {
        align-items: flex-end;
        justify-content: center;
        flex-direction: row;
        gap: 45px;
    }

    #sacsac .solution-item .img:first-of-type::after {
        bottom: 38%;
        right: -53px;
        transform: translateX(-50%) rotate(-90deg);
    }

    #sacsac .solution-box .note-list {
        max-width: 725px;
        margin-left: auto;
    }

    #sacsac .brand-box {
        padding: 40px 20px;
    }

    #sacsac .brand-box .title .sub {
        padding: 5px 20px;
    }

    #sacsac .brand-box .sp_contents .img {
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    #sacsac #solution .section-container {
        width: 100%;
        padding: 90px 0 0;
    }

    #sacsac .solution-box {
        padding: 70px 30px;
    }

    #sacsac .solution-box .desc {
        font-size: 18px;
        line-height: 2;
    }

    #sacsac .brand-box {
        margin-top: 100px;
        padding: 70px 30px;
    }

    #sacsac .brand-box .title {
        margin-bottom: 60px;
    }

    #sacsac .brand-box .title h3 {
        font-size: 28px;
    }

    #sacsac .brand-box .title .sub {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 10px 25px;
    }

    #sacsac .brand-box .title .sub .num {
        font-size: 32px;
    }

    #sacsac .brand-box .sp_contents {
        display: none;
    }

    #sacsac .brand-box .pc_contents {
        display: block;
    }

    #sacsac .brand-box .pc_contents .img {
        max-width: 1200px;
        margin: auto;
    }

    #sacsac .brand-box .pc_contents .text-box {
        position: relative;
        text-align: center;
        margin-top: 100px;
    }

    #sacsac .brand-box .pc_contents .text-box::before {
        width: 40px;
        height: 60px;
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 20px;
        background: radial-gradient(circle farthest-side, #000, #000 20%, transparent 20%, transparent);
        background-size: 40px 20px;
    }

    #sacsac .brand-box .pc_contents .text-box .sub {
        width: max-content;
        background: #303335;
        border-radius: 50vh;
        color: #fff;
        font-size: 24px;
        line-height: 1;
        margin: auto;
        padding: 15px 50px;
    }

    #sacsac .brand-box .pc_contents .text-box .main {
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 2.6px;
        text-indent: 2.6px;
        margin-top: 25px;
    }
}

/* ----- */

#sacsac #reasons {
    background: var(--color-background1);
}

#sacsac .reason {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

#sacsac .reason-item {
    width: calc(100% - 40px);
    max-width: 450px;
}

#sacsac .reason-item:nth-of-type(even) {
    margin-left: auto;
}

#sacsac .reason-item .img {
    width: 100%;
    position: relative;
}

#sacsac .reason-item .img .label {
    position: absolute;
    bottom: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

#sacsac .reason-item:nth-of-type(odd) .img .label {
    right: 25px;
}

#sacsac .reason-item:nth-of-type(even) .img .label {
    left: 25px;
}

#sacsac .reason-item .img .label .num {
    font-size: 30px;
}

#sacsac .reason-item .contents {
    display: flex;
    justify-content: center;
    background: #FFF;
    position: relative;
    padding: 35px 30px 25px;
}

#sacsac .reason-item .contents h3 {
    width: max-content;
    min-width: 250px;
    max-width: 100%;
    background: var(--color-background2);
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 20px;
}

#sacsac .reason-item .contents p {
    color: #768ABC;
    font-weight: 500;
}

#sacsac .reason-item .contents sup {
    font-size: 10px;
}

#sacsac #reasons .note-list {
    width: calc(100% - 45px);
    margin: 10px 30px 0 15px;
}

#sacsac #reasons + .cv_box {
    padding-top: 0;
}

@media (min-width: 768px) {
    #sacsac .reason {
        justify-content: center;
        gap: 20px;
    }

    #sacsac .reason-item {
        max-width: 350px;
    }

    #sacsac .reason-item:nth-of-type(even) {
        margin: 0;
    }

    #sacsac .reason-item .contents {
        align-items: center;
        height: calc(100% - 130px);
        padding: 35px 15px 25px;
    }

    #sacsac .reason-item:nth-of-type(even) .img .label {
        left: auto;
        right: 25px;
    }

    #sacsac #reasons .note-list {
        width: max-content;
        max-width: 768px;
        margin: 10px auto 0;
    }
}

@media (min-width: 1024px) {
    #sacsac .reason {
        max-width: calc((365px * 3) + (20px * 2));
        margin: auto;
    }

    #sacsac .reason-item {
        max-width: 365px;
    }
}

/* ----- */

#sacsac #campaign, #sacsac #campaign02 {
    background: var(--color-background1);
}

#sacsac #campaign .section-container, #sacsac #campaign02 .section-container {
    background: #fff;
    border-radius: 3px;
    padding: 40px 20px;
	border-top: 10px solid var(--color-background3);
}

#sacsac #campaign .section-header h2, #sacsac #campaign02 .section-header h2 {
    color: var(--color-text-accent2);
}

#sacsac .campaign-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
}

#sacsac .campaign-circle {
    width: 112px;
    height: 112px;
    border: 1px solid var(--color-text-accent5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}

#sacsac .campaign-circle .price {
    font-size: 18px;
}

#sacsac .campaign-circle .price .accent {
    font-size: 34px;
}

#sacsac .campaign-price {
    display: flex;
    flex-direction: column;
    text-align: center;
}

#sacsac .campaign-price p {
    font-size: 18px;
}

#sacsac .campaign-price .price {
    font-size: 33px;
    margin: 0 5px;
}

#sacsac .campaign-price .small {
    font-size: 14px;
    font-feature-settings: "palt" 1;
}

#sacsac .campaign-price .accent {
    color: var(--color-text-accent5);
    font-weight: 500;
}

#sacsac .campaign-price .accent .price {
    font-size: 42px;
}

#sacsac .campaign-price .arrow {
    position: relative;
    display: inline-block;
    width: 1px;
    height: 20px;
    margin: 10px auto 0;
    border-radius: 9999px;
    background-color: #000000;
}

#sacsac .campaign-price .arrow::before,
#sacsac .campaign-price .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 5px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 50% calc(100% - 0.5px);
}

#sacsac .campaign-price .arrow::before {
  transform: rotate(45deg);
}

#sacsac .campaign-price .arrow::after {
  transform: rotate(-45deg);
}

#sacsac .campaign-price + p {
    font-size: 11px;
    text-align: center;
    margin-top: 16px;
}

#sacsac #campaign .note-list, #sacsac #campaign02 .note-list {
    margin-top: 30px;
}

@media (min-width: 1024px) {
	#sacsac #campaign {
		padding-top: 100px;
	}
    #sacsac #campaign .section-container, #sacsac #campaign02 .section-container {
        width: 100%;
        padding: 70px 30px;
    }
	#sacsac #campaign .section-header h2, #sacsac #campaign02 .section-header h2 {
		font-size: 48px;
	}

    #sacsac .campaign-top {
        gap: 10px;
        font-size: 22px;
    }
    
    #sacsac .campaign-circle {
        width: 120px;
        height: 120px;
    }

    #sacsac .campaign-price {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 50px;
    }

    #sacsac .campaign-price p {
        font-size: 21px;
    }

    #sacsac .campaign-price .price {
        font-size: 37px;
    }

    #sacsac .campaign-price .small {
        font-size: 15px;
    }

    #sacsac .campaign-price .arrow {
        width: 2px;
        height: 60px;
        margin: 20px 0 0;
        transform: rotate(-90deg);
    }

    #sacsac .campaign-price .arrow::before,
    #sacsac .campaign-price .arrow::after {
        width: 2px;
        height: 10px;
        left: calc(50% - 1px);
        transform-origin: 50% calc(100% - 1px);
    }

    #sacsac .campaign-price + p {
        font-size: 14px;
    }

    #sacsac #campaign .note-list, #sacsac #campaign02 .note-list {
        text-align: center;
        margin-top: 40px;
    }
}

/* ----- */

#sacsac #service {
    background: var(--color-background1);
}

#sacsac #service .section-container {
    background: #fff;
    border-radius: 3px;
    padding: 40px 20px;
}

#sacsac #service .section-header h2 {
    color: var(--color-text-accent2);
}

#sacsac .service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#sacsac .service-item {
    background: #EEE;
}

#sacsac .service-item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--color-background3);
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-indent: 2px;
    padding: 10px;
}

#sacsac .service-item h3 .small {
    display: inline-block;
    font-feature-settings: "palt" 1;
    font-size: 0.8em;
}

#sacsac .service-item .img {
    max-width: 350px;
    margin: auto;
}

#sacsac .service-item .contents {
    padding: 0 10px 20px;
}

#sacsac .service-item .contents p {
    font-weight: 500;
    text-align: center;
}

#sacsac #service .cv_btn {
    margin-top: 30px;
}

@media (min-width: 768px) {
    #sacsac .service-list {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #sacsac .service-item {
        max-width: 350px;
    }
}

@media (min-width: 1024px) {
    #sacsac #service .section-container {
        width: 100%;
        padding: 70px 30px;
    }

    #sacsac .service-list {
        gap: 40px;
    }

    #sacsac .service-item h3 {
        font-size: 22px;
    }

    #sacsac #service .note-list {
        max-width: calc((350px * 3) + (40px * 2));
        margin: 10px auto 0;
    }
}

/* ----- */

#sacsac #flow {
    background: var(--color-background1);
    padding-top: 60px;
}

#sacsac #flow .section-container {
    background: #fff;
    padding: 30px 16px;
}

#sacsac #flow .section-header h2 {
    color: var(--color-text-accent3);
}

#sacsac #flow .text-box {
    text-align: center;
    margin-bottom: 30px;
}

#sacsac #flow .text-box p {
    font-weight: 500;
    letter-spacing: 1.5px;
    text-indent: 1.5px;
}

#sacsac #flow .text-box .bubble {
    display: inline-block;
    padding-bottom: 10px;
}

#sacsac #flow .text-box .num {
    font-size: 20px;
    font-weight: 600;
}

#sacsac .flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: auto;
    counter-reset: counter 0;
}

#sacsac .flow-item {
    display: flex;
    align-items: center;
    gap: 15px;
    counter-increment: counter 1;
}

#sacsac .flow-item .img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-background1);
}

#sacsac .flow-item .img img {
    width: 100%;
    vertical-align: bottom;
}

#sacsac .flow-item:last-child .img::after {
    content: none;
}

#sacsac .flow-item .contents {
    width: calc(100% - 105px);
}

#sacsac .flow-item .contents h3 {
    color: var(--color-text-accent3);
    font-size: 20px;
}

#sacsac .flow-item .contents h3::before {
    content: "Step" counter(counter);
    display: block;
    color: var(--color-text-base);
    font-size: 14px;
}

#sacsac .flow-item .contents p {
    font-weight: 500;
    margin-top: 5px;
}

#sacsac #flow .note-list {
    margin-top: 30px;
}

@media (min-width: 768px) {
    #sacsac #flow .section-container {
        padding: 40px 20px;
    }

    #sacsac .flow {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: calc((380px * 2) + 20px);
    }

    #sacsac .flow-item {
        width: calc(50% - 10px);
    }

    #sacsac #flow .note-list {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    #sacsac #flow {
        padding-top: 100px;
    }

    #sacsac #flow .section-container {
        width: 100%;
        padding: 70px 30px;
    }

    #sacsac #flow .text-box {
        font-size: 18px;
        margin-bottom: 50px;
    }

    #sacsac #flow .text-box .num {
        font-size: 30px;
    }

    #sacsac .flow {
        gap: 50px 30px;
        max-width: calc((380px * 2) + 30px);
    }

    #sacsac .flow-item {
        width: calc(50% - 15px);
    }

    #sacsac .flow-item .img {
        width: 100px;
        height: 100px;
    }

    #sacsac .flow-item .contents h3 {
        font-size: 22px;
    }

    #sacsac .flow-item .contents p {
        font-size: 14px;
    }

    #sacsac .flow-item .contents {
        width: calc(100% - 115px);
    }
}

/* ----- */

#sacsac #faq .section-header h2 {
    color: #686058;
}

#sacsac #faq .section-container {
    padding-bottom: 50px;
}

#sacsac .faq-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    max-width: 1130px;
    margin: auto;
}

#sacsac .faq-accordion {
    width: 100%;
    max-width: 550px;
    background: var(--color-background1);
    font-weight: 600;
    position: relative;
    margin: 0;
}

#sacsac .faq-accordion::before {
    content: 'Q.';
    position: absolute;
    top: 15px;
    left: 9px;
}

#sacsac .faq-accordion .accordion-title {
    position: relative;
    cursor: pointer;
    padding: 15px 30px 15px 30px;
}

#sacsac .faq-accordion .accordion-title::before,
#sacsac .faq-accordion .accordion-title::after {
    content: '';
    width: 1.5px;
    height: 8px;
    background: #303335;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: opacity .2s ease-out;
    pointer-events: none;
}

#sacsac .faq-accordion .accordion-title::after {
    transform: translateY(-50%) rotate(90deg);
}

#sacsac .faq-accordion .accordion-content {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    position: relative;
    font-weight: 500;
    margin: 0;
    padding: 0 30px;
    transition: opacity .2s ease-out;
}

#sacsac .faq-accordion .accordion-content::before {
    content: 'A.';
    position: absolute;
    left: 10px;
}

#sacsac .faq-accordion.is-open .accordion-title::after {
    opacity: 0;
}

#sacsac .faq-accordion.is-open .accordion-content {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    padding: 0 30px 15px 30px;
}

#sacsac #faq .contact {
    margin-top: 80px;
}

@media (min-width: 768px) {
    #sacsac .faq-container {
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    #sacsac .faq-accordion {
        width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    #sacsac #faq .section-container {
        padding-bottom: 70px;
    }

    #sacsac .faq-container {
        gap: 30px;
    }

    #sacsac .faq-accordion {
        width: calc(50% - 15px);
    }

    #sacsac .faq-accordion .accordion-title {
        padding: 30px 45px;
    }

    #sacsac .faq-accordion::before {
        top: 30px;
        left: 20px;
    }

    #sacsac .faq-accordion .accordion-title::before,
    #sacsac .faq-accordion .accordion-title::after {
        right: 30px;
    }

    #sacsac .faq-accordion .accordion-content::before {
        left: 20px;
    }

    #sacsac .faq-accordion.is-open .accordion-content {
        padding: 0 45px 30px 45px;
    }
}

/* ----- */

#sacsac #footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    background: #474540;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

#sacsac #footer small {
    font-size: inherit;
}

@media (min-width: 1024px) {
    #sacsac #footer {
        height: 68px;
        font-size: 20px;
    }
}

/* キャンペーン */
.campaign_link {
	background: var(--color-background3);
	color: white;
	display: block;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
}
@media (min-width: 1024px) {
	.campaign_link {
		width: 500px;
	}
}
/* お問い合わせ */
@media screen and (min-width: 768px) { /* 768px以上の画面幅で適用 */
  .no-call-pc {
    pointer-events: none; /* クリックイベントを無効化 */
    cursor: default; /* マウスカーソルをデフォルトに変更 */
  }
}

.contactArea .contactArea_inner {
	margin: 50px auto;
	text-align: center;
}

.contactArea h2 {
	font-size: 24px;
	margin-bottom: 20px;
}
.contact_box {
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_box .tel, .contact_box .mail {
	font-family: Arial, Helvetica, "sans-serif";
	font-weight: 800;
	font-size: 30px;
	padding-left: 20px;
}
.contact_box .mail {
	font-size: 28px;
}

.contact_box p:first-of-type {
	width: 15%;
}

@media (min-width: 1024px) {
	.contactArea .contactArea_inner {
		width: 380px;
	}
	.contact_box .tel {
		font-size: 48px;
	}
	.contact_box .mail {
		font-size: 44px;
	}
}
