@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2025/10/25
 */

/* !root
---------------------------------------------------------- */
:root {
    --NotoSansJP: "Noto Sans JP", sans-serif;
    --Barlow: "Barlow", sans-serif;
    --Black: #222;
    --Green: #06C2B4;
    --Orange: #FD6202;
    --LightGreen: #E1F7F6;
    --LightOrange: #FEDBB3;
}

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

fieldset {
  border: none;
}

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

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

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #222;
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
  -webkit-box-shadow: inset 0 0 4rem 4rem #F8F8F8 !important;
          box-shadow: inset 0 0 4rem 4rem #F8F8F8 !important;
}

select::-ms-expand {
	display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
	display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	cursor: pointer;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}

/*** タブレット 768x ~ 960px***/
@media screen and (min-width: 768px) and (max-width: 960px) {
    html {
        font-size: calc(100vw / 96);
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    html {
        font-size: calc(100vw / 39);
    }
}

body {
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: normal;
    color: #000;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: #000;
    text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.5s;
    }

    a:hover {
        text-decoration: underline;
    }

    .h-opacity {
        transition: opacity 0.5s ease-out;
    }

    .h-opacity:hover {
        opacity: .7;
        text-decoration: none;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events:none;
    }
}

.is-hide {
    display: none;
}

.is-center {
    text-align: center;
}

/*** 非スマホ 768px ~ ***/
@media screen and (min-width: 768px) {
    .is-sp {
        display: none;
    }
}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .is-pc {
        display: none;
    }
}

/* !color
---------------------------------------------------------- */
.color-orange {
    color: var(--Orange);
}

.color-green {
    color: var(--Green);
}

.color-black {
    color: var(--Black);
}

/* !common
---------------------------------------------------------- */
.anchor-wrap {
    position: relative;
}

.anchor-wrap .anchor {
    position: absolute;
    z-index: -1;
    top: -8rem;
}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .anchor-wrap .anchor {
        top: 0;
    }
}

/* !button
---------------------------------------------------------- */
.btn-scroll,
.btn-links,
.btn-back {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40rem;
    height: 8rem;
    font-size: 2.6rem;
    line-height: 1.5;
    color: #fff;
    font-weight: bold;
    border-radius: 4rem;
}

.btn-scroll,
.btn-links {
    background-color: var(--Orange);
    background-position: right 2.5rem center;
    background-repeat: no-repeat;
    background-size: 3rem auto;
}

.btn-scroll {
    background-image: url(../img/common/icon_arrow_down_orange.svg);
}

.btn-links {
    background-image: url(../img/common/icon_arrow_right_orange.svg);
}

.btn-back {
    background-image: url(../img/common/icon_arrow_left_gary.svg);
    background-color: #B1B1B1;
    background-position: 2.5rem center;
    background-repeat: no-repeat;
    background-size: 3rem auto;
}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .btn-scroll,
    .btn-links {
        width: 26rem;
        height: 5rem;
        background-position: right 1.5rem center;
        background-size: 2rem auto;
        font-size: 1.8rem;
    }

    .btn-back {
        width: 26rem;
        height: 5rem;
        background-position: 1.5rem center;
        background-size: 2rem auto;
        font-size: 1.8rem;
    }
}


/* !wrapper
---------------------------------------------------------- */
#wrapper {
    width: 100%;
    padding-top: 8rem;
}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    #wrapper {
        width: 100%;
        padding-top: 0;
        padding-bottom: 5rem;
    }
}

/* !header
---------------------------------------------------------- */
#header {
    width: 100%;
    height: 8rem;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem 0 1.6rem;
    box-shadow: 0 .4rem 1rem 0 rgba(0, 0, 0, 0.05);
}

.header-logo {
    font-size: 1px;
    line-height: 1;
    width: 33.6rem;
}

.header-logo img {
    width: 100%;
}

.header-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.header-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    width: 26rem;
    height: 5rem;
    border-radius: 3rem;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
    color: #fff;
}

.header-links a.is-calculator {
    background: var(--Green);
}

.header-links a.is-calculator:before {
    width: 2rem;
    height: 2.6rem;
    content: '';
    background: url(../img/common/icon_calculator.svg) center center no-repeat;
    background-size: 100% auto;
}

.header-links a.is-mail {
    background: var(--Orange);
}

.header-links a.is-mail:before {
    width: 2.4rem;
    height: 2rem;
    content: '';
    background: url(../img/common/icon_email.svg) center center no-repeat;
    background-size: 100% auto;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    #header {
        height: 5rem;
        position: relative;
        padding: 1rem 1.114rem;
    }

    .header-logo {
        width: 20.172rem;
    }

    .header-links {
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: 9999;
        gap: 0;
    }

    .header-links a {
        gap: 1rem;
        width: 100%;
        border-radius: 0;
        font-size: 1.2rem;
        text-align: center;
    }
}

/* !main Visual
---------------------------------------------------------- */
#main-visual {
    width: 100%;
    background: var(--LightGreen);
    padding: 42.291666666666667vw 0 6rem;
    position: relative;
}

#main-visual:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    content: '';
    background: url(../img/top/bg_mv_pc.png) center top no-repeat;
    background-size: 100% auto;
}

#main-visual .main-visual__inner {
    position: absolute;
    left: 0;
    top: 16.3541667vw;
    width: 100%;
    z-index: 2;
}

#main-visual .main-copy {
    font-size: 2.604166666666667vw;
    font-weight: bold;
    line-height: 1;
    color: var(--Black);
    text-align: center;
    margin-bottom: 2.604166666666667vw;
}

#main-visual .main-copy .main-copy__large {
    font-size: 4.166666666666667vw;
}

#main-visual .main-copy p + p {
    margin-top: 1.041666666666667vw;
}

#main-visual .main-links {
    text-align: center;
}

#main-visual .btn-scroll {
    width: 20.833333333333333vw;
    height: 4.166666666666667vw;
    background-position: right 1.302083333333333vw center;
    background-size: 1.5625vw auto;
    font-size: 1.354166666666667vw;
    border-radius: 2.0833333333333333vw;
}

#main-visual .main-visual__chart {
    position: relative;
    z-index: 2;
}

#main-visual .main-visual__chart .chart-title {
    font-size: 4rem;
    line-height: 1.45;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

#main-visual .main-visual__chart .chart-title p + p {
    margin-top: 2rem;
}

#main-visual .main-visual__chart .chart-title .chart-title__large {
    font-size: 5rem;
    display: inline-block;
    position: relative;
    color: var(--Green);
    margin-right: .9rem;
}

#main-visual .main-visual__chart .chart-title .chart-title__large:after {
    width: 100%;
    height: 1rem;
    background: url(../img/top/bg_green_wave.svg) center center no-repeat;
    background-size: 100% 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2;
}

#main-visual .main-visual__chart .chart-area {
    width: 100%;
    max-width: 92rem;
    border: .2rem solid var(--Green);
    border-radius: 2rem;
    background: #fff;
    padding: 3rem;
    text-align: center;
    margin: 0 auto;
}

#main-visual .main-visual__chart .chart-subtitle {
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 1rem;
}

#main-visual .main-visual__chart .chart-image,
#main-visual .main-visual__chart .chart-image img {
    width: 100%;
}

@media only screen and (max-width : 1280px){
    #main-visual {
        padding-top: 61.328125vw;
    }

    #main-visual:before {
        background-image: url(../img/top/bg_mv_tb.png);
    }

    #main-visual .main-visual__inner {
        top: 19.21875vw;
    }

    #main-visual .main-copy {
        font-size: 2.34375vw;
        margin-bottom: 3.125vw;
    }

    #main-visual .main-copy .main-copy__large {
        font-size: 3.90625vw;
    }

    #main-visual .main-copy .main-copy__middle {
        font-size: 3.125vw;
    }

    #main-visual .main-copy p + p {
        margin-top: 1.5625vw;
    }

    #main-visual .btn-scroll {
        width: 31.25vw;
        height: 6.25vw;
        background-position: right 1.953125vw center;
        background-size: 2.34375vw auto;
        font-size: 2.03125vw;
        border-radius: 3.125vw;
    }
}

@media only screen and (max-width : 960px){
    #main-visual {
        padding-top: 112.8125vw;
    }

    #main-visual:before {
        height: 90.9375vw;
        background-image: url(../img/top/bg_mv_sp01.png);
        background-color: #fff;
    }

    #main-visual:after {
        width: 100%;
        height: 35.625vw;
        position: absolute;
        left: 0;
        top: 90vw;
        z-index: 1;
        content: '';
        background: url(../img/top/bg_mv_sp02.png) center bottom no-repeat;
        background-size: 100% auto;
    }

    #main-visual .main-visual__inner {
        top: 54.479166666666667vw;
    }

    #main-visual .main-copy {
        font-size: 5.208333333333333vw;
        margin-bottom: 5.208333333333333vw;
    }

    #main-visual .main-copy .main-copy__large {
        font-size: 8.333333333333333vw;
    }


    #main-visual .main-copy .main-copy__middle {
        font-size: 5.208333333333333vw;
    }

    #main-visual .main-copy p + p {
        margin-top: 2.083333333333333vw;
    }

    #main-visual .btn-scroll {
        width: 41.666666666666667vw;
        height: 8.333333333333333vw;
        background-position: right 2.604166666666667vw center;
        background-size: 3.125vw auto;
        font-size: 2.708333333333333vw;
        border-radius: 4.166666666666667vw;
    }
}



/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    #main-visual {
        padding: 47.877rem 0 5rem;
    }

    #main-visual:before {
        height: 40rem;
    }

    #main-visual:after {
        height: 14rem;
        top: 39.8rem;
    }

    #main-visual .main-visual__inner {
        top: 22rem;
    }

    #main-visual .main-copy {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    #main-visual .main-copy .main-copy__large {
        font-size: 3.2rem;
        line-height: 1.25;
    }

    #main-visual .main-copy .main-copy__middle {
        font-size: 2.8rem;
        line-height: 1.142857142857143;
    }

    #main-visual .main-copy p + p {
        margin-top: .6rem;
    }

    #main-visual .main-links {
        text-align: center;
    }

    #main-visual .btn-scroll {
        width: 26rem;
        height: 5rem;
        background-position: right 2.5rem center;
        background-size: 2rem auto;
        font-size: 1.8rem;
        border-radius: 4rem;
    }

    #main-visual .main-visual__chart .chart-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    #main-visual .main-visual__chart .chart-title p + p {
        margin-top: 1.5rem;
    }

    #main-visual .main-visual__chart .chart-title .chart-title__large {
        font-size: 2.8rem;
        margin-right: .3rem;
    }

    #main-visual .main-visual__chart .chart-title .chart-title__large:after {
        height: .557rem;
    }

    #main-visual .main-visual__chart .chart-area {
        border: .1rem solid var(--Green);
        border-radius: .8rem;
        padding: 1rem;
    }

    #main-visual .main-visual__chart .chart-subtitle {
        font-size: 1.8rem;
        margin-bottom: .4rem;
    }
}

/* !teaser
---------------------------------------------------------- */

/* !contents
---------------------------------------------------------- */
#contents {
    width: 100%;
}

.inner {
    width: 100%;
    max-width: 108rem;
    padding: 0 4rem;
    margin: 0 auto;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .inner {
        padding: 0 2rem;
    }
}

/* !footer
---------------------------------------------------------- */
#footer {
    width: 100%;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 4rem;
    background: #F6F6FB;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.7;
    color: #666;
    font-family: var(--Barlow);
    text-decoration: underline;
}

.footer-logo img {
    width: 39rem;
}

.footer-links {
    background: #fff;
    padding: 2rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.footer-links a {
    display: inline-flex;
    gap: .6rem;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #666;
    font-weight: 500;
}

.footer-links a:before {
    content: '';
    width: .6rem;
    height: 1.2rem;
    background: #666;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

#copyright {
    background: #F6F6FB;
    padding: .8rem 4rem 1rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    color: #666;
    font-family: var(--Barlow);
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){

    .footer-logo {
        padding: 2rem;
    }

    .footer-logo img {
        width: 26.9rem;
    }

    .footer-links {
        padding: 2rem 2rem 3.6rem;
        flex-direction: column;
        gap: 1rem;
    }

    #copyright {
        padding: .8rem 2rem 1rem;
    }
}

/* !home
---------------------------------------------------------- */

/*** message ***/
.message-wrap {
    background: #fff;
    padding: 6rem 0 13rem;
}

.message-head {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.message-head .message-head__top {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 600;
}

.message-head .message-head__top:before {
    width: 6.6rem;
    height: 6.5rem;
    background: url(../img/top/img_money.svg) center center no-repeat;
    background-size: 100% 100%;
    content: '';
    display: inline-block;
}

.message-head .message-head__top .number {
    font-size: 8rem;
}

.message-head .message-head__middle {
    font-size: 3.7rem;
    padding: 0 3.6rem;
    line-height: 1.621621621621622;
    color: #fff;
    font-weight: 600;
    background: var(--Green);
    border-radius: 3rem;
}

.message-head .message-head__bottom {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.4375;
}

.message-head .message-head__bottom small {
    font-size: 2.6rem;
}

.message-body {
    margin-top: 4rem;
}

.message-image,
.message-image img {
    width: 100%;
}

.message-table {
    position: relative;
    margin-top: 4.5rem;
}

.message-table:before {
    position: absolute;
    left: 50%;
    top: -2.4rem;
    transform: translateX(-50%);
    z-index: 2;
    width: 10rem;
    height: 3rem;
    background: var(--Orange);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    content: '';
}

.message-table table {
    width: 100%;
    border: .1rem solid var(--Orange);
}

.message-table table thead th {
    background: var(--Orange);
    font-size: 2.8rem;
    line-height: 1.5;
    color: #fff;
    font-weight: bold;
    letter-spacing: .04em;
    padding: 1.8rem;
    text-align: center;
}

.message-table table tbody th,
.message-table table tbody td {
    border-bottom: .1rem solid var(--Orange);
}

.message-table table tbody th {
    background: var(--LightOrange);
    padding: 1.5rem 2rem;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
    color: var(--Black);
    vertical-align: top;
    text-align: left;
    width: 22rem;
}

.message-table table tbody td {
    background: #fff;
    padding: 1.9rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--Black);
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .message-wrap {
        padding: 3rem 0 7rem;
    }

    .message-head .message-head__top {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .message-head .message-head__top:before {
        width: 4rem;
        height: 3.939rem;
    }

    .message-head .message-head__top .number {
        font-size: 6rem;
    }

    .message-head .message-head__middle {
        font-size: 2.6rem;
        padding: .6rem 3rem;
        line-height: 1.23;
        border-radius: 1rem;
        text-align: center;
    }

    .message-head .message-head__bottom {
        font-size: 2.4rem;
        text-align: center;
    }

    .message-head .message-head__bottom small {
        font-size: 2rem;
    }

    .message-body {
        margin-top: 2rem;
    }
    .message-table {
        margin-top: 4.3rem;
    }

    .message-table:before {
        top: -2.2rem;
    }

    .message-table table,
    .message-table table thead,
    .message-table table body,
    .message-table table tr,
    .message-table table th,
    .message-table table td {
        display: block;
    }

    .message-table table {
        border-bottom: 0;
        border-radius: .3rem .3rem 0 0;
    }

    .message-table table thead th {
        width: 100%;
        font-size: 1.8rem;
        padding: 1.2rem;
    }

    .message-table table tbody th {
        padding: 1rem 2rem;
        font-size: 2rem;
        line-height: 1.45;
        width: 100%;
        border-bottom: 0;
    }

    .message-table table tbody td {
        width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1.8rem;
        line-height: 1.5556;
    }
}


/*** 4つの大きなメリット ***/
.merit-wrap {
    background: #F3FAF9;
    padding-bottom: 8rem;
}

.merit-heading {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.merit-heading:before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    width: 30.9rem;
    height: 30.9rem;
    border-radius: 100%;
    background: #F3FAF9;
    content: '';
}

.merit-heading .merit-heading__sub {
    display: block;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--Black);
    padding-top: 7rem;
    background: url(../img/top/icon_title_merit.svg) center top no-repeat;
    background-size: auto 5.2rem;
}

.merit-heading .merit-heading__main {
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 1.45833;
    display: block;
    margin-top: -3.5rem;
}

.merit-heading .merit-heading__main .number {
    font-size: 10rem;
    font-family: var(--Barlow);
    line-height: 1;
}

.merit-list {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
}

.merit-list .merit-image {
    width: 100%;
}

.merit-list .merit-image img {
    width: 100%;
    border-radius: 1rem;
}

.merit-list .merit-title {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.merit-list .merit-title .merit-title__number {
    font-family: var(--Barlow);
    font-size: 8rem;
    line-height: 1;
    font-weight: 600;
    color: var(--Green);
    white-space: nowrap;
    word-break: keep-all;
}

.merit-list .merit-title .merit-title__main .merit-title__main--sub {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    color: var(--Black);
}

.merit-list .merit-title .merit-title__main .merit-title__main--main {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    color: var(--Green);
}

.merit-list .merit-desc {
    font-size: 1.8rem;
    line-height: 1.555555555555556;
    margin-top: 2rem;
}

.merit-links {
    text-align: center;
    margin-top: 4rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .merit-wrap {
        padding-bottom: 5rem;
    }

    .merit-heading:before {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%,-3rem);
        width: 15.45rem;
        height: 15.45rem;
    }

    .merit-heading .merit-heading__sub {
        font-size: 1.8rem;
        padding-top: 4.639rem;
        background: url(../img/top/icon_title_merit.svg) center top no-repeat;
        background-size: auto 3.676rem;
    }

    .merit-heading .merit-heading__main {
        font-size: 2.6rem;
        margin-top: -2.8rem;
    }

    .merit-heading .merit-heading__main .number {
        font-size: 6rem;
    }

    .merit-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 4rem;
    }

    .merit-list .merit-image img {
        border-radius: .735rem;
    }

    .merit-list .merit-title {
        margin-top: 1rem;
    }

    .merit-list .merit-title .merit-title__number {
        font-size: 6rem;
    }

    .merit-list .merit-title .merit-title__main .merit-title__main--sub {
        font-size: 1.8rem;
    }

    .merit-list .merit-title .merit-title__main .merit-title__main--main {
        font-size: 2.2rem;
    }

    .merit-list .merit-desc {
        margin-top: 1rem;
    }

    .merit-links {
        margin-top: 3rem;
    }
}


/*** K2が選ばれる理由 ***/
.reasons-wrap {
    width: 100%;
    background: var(--LightGreen);
    padding: 6rem 0 4rem;
    position: relative;
}

.reasons-wrap:after {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 7.5rem;
    background: var(--LightGreen);
    content: '';
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.reasons-heading {
    text-align: center;
    font-size: 6rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 4rem;
}

.reasons-list {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.reasons-list img {
    width: 100%;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .reasons-wrap {
        padding: 5rem 0;
    }

    .reasons-wrap:after {
        height: 1.5rem;
    }

    .reasons-heading {
        font-size: 3.2rem;
        line-height: 1.875;
        margin-bottom: 3rem;
    }

    .reasons-list {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .reasons-list li {
        width: calc(50% - 1rem);
        text-align: center;
    }

    .reasons-list li:first-child {
        width: 100%;
    }

    .reasons-list li:first-child img {
        width: calc(50% - 1rem);
    }
}


/*** 無償PR支援パッケージ ***/
.service-wrap {
    background: #fff;
    padding: 13.5rem 0 8rem;
}

.service-heading {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
}

.service-heading .service-heading__sub {
    display: block;
    font-size: 4rem;
    line-height: 1.45;
    font-weight: bold;
}

.service-heading .service-heading__sub .sub {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    margin-bottom: -.2rem;
}

.service-heading .service-heading__sub .sub:before,
.service-heading .service-heading__sub .sub:after {
    width: .2rem;
    height: 3.6rem;
    background: var(--Black);
    content: '';
    border-radius: .1rem;
}

.service-heading .service-heading__sub .sub:before {
    transform: translateY(.4rem) rotate(-25.87deg);
}

.service-heading .service-heading__sub .sub:after {
    transform: translateY(.4rem) rotate(25.87deg);
}

.service-heading .service-heading__main {
    width: 100%;
    border-top: .8rem solid var(--Green);
    border-bottom: .8rem solid var(--Green);
    padding: 1rem 0;
    font-size: 8rem;
    line-height: 1.125;
    font-weight: bold;
    color: var(--Green);
    text-align: center;
}

.service-head {
    margin-bottom: 6rem;
}

.service-head .service-head__text {
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 3rem;
}

.service-head .service-head__list .service-head__list--item {
    display: flex;
    align-items: center;
    gap: 6%;
    position: relative;
}

.service-head .service-head__list .service-head__list--item + .service-head__list--item {
    margin-top: 1rem;
}

.service-head .service-head__list .service-head__list--item:before {
    width: 6%;
    height: 100%;
    position: absolute;
    left: 34%;
    top: 0;
    z-index: 2;
    background: url(../img/top/img_arrow.svg) center center no-repeat;
    background-size: 100% auto;
    content: '';
}

.service-head .service-head__list .service-head__list--item dt {
    width: 34%;
    background: #FED3B3;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--Black);
}

.service-head .service-head__list .service-head__list--item dd {
    width: 60%;
    height: 8rem;
    background: var(--Orange);
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-body {
    margin-bottom: 4rem;
}

.service-body .service-body__title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 3.7rem;
}

.service-map {
    width: 100%;
    position: relative;
    border-radius: 3rem;
    border: .2rem solid #77D3CC;
    background: var(--LightGreen);
    padding: 8.8rem 5rem 5rem;
}

.service-map .service-map__title {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    z-index: 2;
    font-size: 3.6rem;
    line-height: 1;
    letter-spacing: .06em;
    font-weight: 600;
    color: #fff;
    background: var(--Green);
    border-radius: 2.8rem;
    padding: 1.2rem 3rem;
}

.service-map .service-map__image,
.service-map .service-map__image img {
    width: 100%;
}

.service-map .service-map__text {
    margin-top: 3rem;
    font-size: 2.4rem;
    line-height: 1.6667;
    font-weight: 600;
}

.service-links {
    margin-top: 4rem;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .service-head .service-head__list .service-head__list--item dt,
    .service-head .service-head__list .service-head__list--item dd {
        font-size: 2.2rem;
    }
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .service-wrap {
        padding: 6.5rem 0 4rem;
    }

    .service-heading {
        gap: 2rem;
    }

    .service-heading .service-heading__sub {
        font-size: 2.4rem;
        text-align: center;
    }

    .service-heading .service-heading__sub .sub {
        margin-bottom: 1rem;
    }

    .service-heading .service-heading__sub .sub:before,
    .service-heading .service-heading__sub .sub:after {
        height: 2.4rem;
    }

    .service-heading .service-heading__sub .sub:before {
        transform: translateY(.2rem) rotate(-25.87deg);
    }

    .service-heading .service-heading__sub .sub:after {
        transform: translateY(.2rem) rotate(25.87deg);
    }

    .service-heading .service-heading__main {
        border-top: .4rem solid var(--Green);
        border-bottom: .4rem solid var(--Green);
        padding: .8rem 0;
        font-size: 2.8rem;
        line-height: 1;
    }

    .service-head {
        margin-bottom: 4rem;
    }

    .service-head .service-head__text {
        font-size: 2rem;
        line-height: 1.45;
        margin-bottom: 2rem;
    }

    .service-head .service-head__list .service-head__list--item {
        flex-direction: column;
        gap: 3.4rem;
    }

    .service-head .service-head__list .service-head__list--item + .service-head__list--item {
        margin-top: 2.6rem;
    }

    .service-head .service-head__list .service-head__list--item:before {
        display: none;
    }

    .service-head .service-head__list .service-head__list--item dt {
        width: 100%;
        height: auto;
        display: block;
        text-align: center;
        font-size: 2rem;
        line-height: 1.45;
        position: relative;
        padding: 2.55rem 1rem;
    }

    .service-head .service-head__list .service-head__list--item dt:before {
        width: 100%;
        height: 3.4rem;
        position: absolute;
        left: 0;
        top: 100%;
        background: url(../img/top/img_arrow_sp.svg) center center no-repeat;
        background-size: auto 100%;
        content: '';
    }

    .service-head .service-head__list .service-head__list--item dd {
        width: 100%;
        height: auto;
        font-size: 2rem;
        line-height: 1.45;
        color: #fff;
        display: block;
        padding: 2.55rem 1rem;
        text-align: center;
    }

    .service-body {
        margin-bottom: 3rem;
    }

    .service-body .service-body__title {
        font-size: 1.8rem;
        line-height: 1.5556;
        margin-bottom: 3.8rem;
    }

    .service-map {
        padding: 4.8rem 2rem 2rem;
    }

    .service-map .service-map__title {
        font-size: 2.6rem;
        line-height: 1.384615384615385;
        padding: 1rem 3rem;
        word-break: keep-all;
    }

    .service-map .service-map__text {
        margin-top: 2rem;
        font-size: 1.8rem;
        line-height: 1.556;
    }

    .service-links {
        margin-top: 3rem;
    }
}


/*** 企業版ふるさと納税 税控除シミュレーター ***/
.simulator-wrap {
    width: 100%;
    background: #F2F2F2;
    padding: 8rem 0;
}

.simulator-wrap .simulator-heading {
    text-align: center;
    font-size: 4rem;
    line-height: 1.45;
    font-weight: bold;
    margin-bottom: 2rem;
}

.simulator-wrap .simulator-text {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.556;
    margin-bottom: 3rem;
}

.simulator-wrap .simulator-notes {
    margin-top: 1rem;
}

.simulator-wrap .simulator-notes li {
    font-size: 1.8rem;
    line-height: 1.667;
    padding-left: 1em;
    text-indent: -1em;
}

.simulator-calculator {
    width: 100%;
    background: #fff;
    border-radius: 3rem;
    box-shadow: 0 1rem 2rem 0 rgba(233, 233, 233, 0.5);
    padding: 3rem 4rem 3.6rem;
}

.simulator-calculator__select {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.simulator-calculator__select .simulator-label {
    font-size: 2.2rem;
    line-height: 2.4rem;
    margin-bottom: 1.6rem;
    font-weight: 600;
    display: block;
}

.simulator-calculator__select .relative {
    position: relative;
    width: 100%;
}

.simulator-calculator__select .relative input {
    width: 100%;
    height: 6rem;
    border-radius: .8rem;
    border: .1rem solid #ccc;
    background: #fff;
    padding: 0 8rem 0 2rem;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--Black);
}

.simulator-calculator__select .relative span {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
    font-size: 2.2rem;
    color: #666;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.7rem;
    height: 100%;
}

.simulator-calculator__button {
    text-align: center;
    margin-top: 3rem;
}

.simulator-result {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    margin-top: 3rem;
    width: 100%;
    border-radius: 3rem;
    overflow: hidden;
}
.simulator-result.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px; /* 十分な高さを確保 */
    box-shadow: 0 1rem 2rem 0 rgba(233, 233, 233, 0.5);
}

.simulator-result__head {
    background: var(--Green);
    padding: 1.4rem;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.simulator-result__body {
    background: #fff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.simulator-result .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #F6F6FB;
    padding: 1.7rem 2rem;
    color: var(--Black);
}

.simulator-result .result-item.last-child {
    background: #FFF5EE;
}

.simulator-result .result-item .result-item__title {
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 600;
}

.simulator-result .result-item .result-item__price {
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 600;
    font-family: var(--Barlow);
}

.simulator-result .result-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: .2rem solid #D1D1D1;
    border-bottom: .2rem solid #D1D1D1;
    width: 100%;
}

.simulator-result .result-box .result-item {
    background: none;
}

.simulator-result .result-box .result-item .result-item__title {
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.simulator-result .result-box .result-item .result-item__price {
    font-size: 2.4rem;
    line-height: 3.2rem;
    color: #666;
}

.info-icon {
    cursor: pointer;
    position: relative;
    width: 2.4rem;
}

.info-icon img {
    width: 100%;
}

.tooltip {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, -1rem);
    z-index: 2;
    width: 24rem;
    border-radius: .25rem;
    background: #000;
    padding: .75rem;
    color: #fff;
    font-size: 1.2rem;
}
.info-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.simulator-error {
    width: 100%;
    background: #FFF3E6;
    padding: 2rem;
    border-radius: 1rem;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
    color: var(--Orange);
}


/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .simulator-wrap {
        padding: 3.3rem 0 5rem;
    }

    .simulator-wrap .simulator-heading {
        font-size: 2.6rem;
    }

    .simulator-wrap .simulator-text {
        text-align: left;
    }

    .simulator-wrap .simulator-notes {
        margin-top: 2rem;
    }

    .simulator-wrap .simulator-notes li {
        font-size: 1.6rem;
        line-height: 1.875;
        padding-left: 1em;
        text-indent: -1em;
    }

    .simulator-calculator {
        padding: 2rem;
    }

    .simulator-calculator__select {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .simulator-calculator__select .simulator-label {
        font-size: 1.8rem;
    }

    .simulator-calculator__select .relative input {
        font-size:1.8rem;
    }

    .simulator-calculator__select .relative span {
        font-size:1.8rem;
        padding: 0 2rem;
    }

    .simulator-calculator__button {
        margin-top: 2rem;
    }

    .simulator-result {
        border-radius: 1.5rem;
    }

    .simulator-result__head {
        padding: 1.9rem;
        font-size: 2.2rem;
        line-height: 3.2rem;
    }

    .simulator-result__body {
        padding: 2rem;
        gap: 1rem;
    }

    .simulator-result .result-item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1rem 2rem;
    }

    .simulator-result .result-item .result-item__title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .simulator-result .result-box {
        display: block;
        gap: 1rem;
        padding: 1rem 0;
    }

    .simulator-result .result-box .result-item {
        padding-right: 0;
    }

    .simulator-result .result-box .result-item .result-item__title {
        font-size: 1.6rem;
        margin-bottom: .8rem;
    }

    .simulator-result .result-box .result-item:first-child .tooltip {
        transform: translate(-100%, -1rem);
        margin-left: 1.2rem;
    }
}


/*** 利用の流れ ***/
.flow-wrap {
    width: 100%;
    padding: 8rem 0;
    background: #fff;
}

.flow-wrap .flow-heading {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.45;
    color: var(--Black);
    text-align: center;
    margin-bottom: 4rem;
}

.flow-wrap .flow-heading span {
    margin: 0 1rem;
}

.flow-wrap .flow-heading .number {
    font-size: 6rem;
    font-weight: 600;
}

.flow-wrap .flow-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.flow-wrap .flow-list .flow-list__item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.flow-wrap .flow-image {
    width: 18rem;
    height: 18rem;
    border-radius: 100%;
    border: .4rem solid var(--Green);
    overflow: hidden;
}

.flow-wrap .flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-wrap .flow-box {
    width: calc(100% - 20rem);
}

.flow-wrap .flow-step {
    position: relative;
    margin-bottom: 2.2rem;
    margin-left: -.8rem;
    font-size: 2.6rem;
    font-family: var(--Barlow);
    font-weight: 600;
    line-height: 1.73;
    padding: 0 1rem;
    transform: rotate(-9.67deg);
}

.flow-wrap .flow-step:before,
.flow-wrap .flow-step:after {
    width: 11.285rem;
    height: .267rem;
    border-radius: .2rem;
    background: #000;
    content: '';
    position: absolute;
    z-index: 1;
    left: .5rem;
}

.flow-wrap .flow-step:before {
    top: 0;
    transform: rotate(-7.19deg);
}

.flow-wrap .flow-step:after {
    bottom: 0;
    transform: rotate(5.18deg);
}

.flow-wrap .flow-title {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--Green);
}

.flow-wrap .flow-text {
    margin-top: 1rem;
    font-size: 1.8rem;
    line-height: 1.666666666666667;
    color: var(--Black);
}

.flow-wrap .flow-links {
    margin-top: 4rem;
    text-align: center;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .flow-wrap {
        padding: 5rem 0;
    }

    .flow-wrap .flow-heading {
        font-size: 2.6rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .flow-wrap .flow-heading span {
        margin: 0;
    }

    .flow-wrap .flow-heading .number {
        font-size: 4rem;
        margin: 0 .4rem;
    }

    .flow-wrap .flow-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }

    .flow-wrap .flow-list .flow-list__item {
        gap: 1rem;
    }

    .flow-wrap .flow-image {
        width: 8rem;
        height: 8rem;
        border: .2rem solid var(--Green);
    }

    .flow-wrap .flow-box {
        width: calc(100% - 9rem);
    }

    .flow-wrap .flow-step {
        margin-left: -.8rem;
        font-size: 1.8rem;
    }

    .flow-wrap .flow-step:before,
    .flow-wrap .flow-step:after {
        width: 7.5rem;
        height: .178rem;
        border-radius: .15rem;
    }

    .flow-wrap .flow-step:before {
        top: 0;
        transform: rotate(-7.19deg);
    }

    .flow-wrap .flow-step:after {
        bottom: 0;
        transform: rotate(5.18deg);
    }

    .flow-wrap .flow-title {
        font-size: 2rem;
        line-height: 1.45;
    }

    .flow-wrap .flow-text {
        margin-top: .4rem;
    }

    .flow-wrap .flow-links {
        margin-top: 3rem;
    }
}


/*** 導入企業様の声と支援実績 ***/
.voice-wrap {
    background: var(--Green);
    padding: 8rem 0 12rem;
    overflow: hidden;
    width: 100%;
}

.voice-wrap .voice-heading {
    text-align: center;
    font-size: 4rem;
    line-height: 1.45;
    color: #fff;
    font-weight: bold;
    margin-bottom: 3rem;
}

/*.voice-wrap .voice-swiper {
    width: 36.458333333333333vw;
    margin: 0 auto;
}

.voice-wrap .voice-swiper .swiper {
    overflow: visible;
}

.voice-wrap .voice-swiper .swiper-slide {
    padding: 0 1.041667vw;
}

.voice-wrap .voice-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: .52vw;
    background: #fff;
    padding: 0 1.5625vw 1.5625vw;
}

.voice-wrap .voice-image {
    width: calc(100% + 3.125vw);
    margin: 0 -1.5625vw;
    aspect-ratio: 33 / 20;
    margin-bottom: 1.5625vw;
}

.voice-wrap .voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-wrap .voice-title {
    font-size: 1.145833333333333vw;
    line-height: 1.5;
    font-weight: 600;
    padding-bottom: .52vw;
    border-bottom: .1041667vw solid var(--Green);
    color: var(--Green);
}

.voice-wrap .voice-name {
    margin-top: .52vw;
    color: #666666;
    font-size: .9375vw;
    line-height: 1.5;
    font-weight: 500;
}

.voice-wrap .voice-desc {
    margin-top: .52vw;
    color: var(--Black);
    font-size: .9375vw;
    line-height: 1.778;
}

.voice-wrap .swiper-pagination {
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    margin-top: 1.041667vw;
    font-size: 1px;
    line-height: 1;
}

.voice-wrap .voice-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 1.041667vw;
    height: 1.041667vw;
    margin: 0 .52vw;
    border-radius: 100%;
    background: #fff;
    opacity: 1;
}*/

.voice-wrap .voice-swiper {
    width: 66rem;
    margin: 0 auto;
}

.voice-wrap .voice-swiper .swiper {
    overflow: visible;
}

.voice-wrap .voice-swiper .swiper-slide {
    padding: 0 2rem;
}

.voice-wrap .voice-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
    background: #fff;
    padding: 0 3rem 3rem;
}

.voice-wrap .voice-image {
    width: calc(100% + 6rem);
    margin: 0 -3rem;
    aspect-ratio: 33 / 20;
    margin-bottom: 3rem;
}

.voice-wrap .voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-wrap .voice-title {
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: .2rem solid var(--Green);
    color: var(--Green);
}

.voice-wrap .voice-name {
    margin-top: 1rem;
    color: #666666;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
}

.voice-wrap .voice-desc {
    margin-top: 1rem;
    color: var(--Black);
    font-size: 1.8rem;
    line-height: 1.778;
}

.voice-wrap .swiper-pagination {
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    margin-top: 2rem;
    font-size: 1px;
    line-height: 1;
}

.voice-wrap .voice-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
    margin: 0 1rem;
    border-radius: 100%;
    background: #fff;
    opacity: 1;
}

.voice-wrap .voice-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #02B1A4;
}

.voice-wrap .voice-links {
    margin-top: 4rem;
    text-align: center;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .voice-wrap {
        padding: 5rem 0 11rem;
    }

    .voice-wrap .voice-heading {
        font-size: 2.6rem;
    }

    .voice-wrap .voice-swiper {
        width: 33.3rem;
    }

    .voice-wrap .voice-swiper .swiper-slide {
        padding: 0 .75rem;
    }

    .voice-wrap .voice-item {
        border-radius: 1rem;
        padding: 0 1.5rem 3.5rem;
    }

    .voice-wrap .voice-image {
        width: calc(100% + 3rem);
        margin: 0 -1.5rem;
        margin-bottom: 1.5rem;
    }

    .voice-wrap .voice-title {
        font-size: 2rem;
        line-height: 1.45;
        padding-bottom: .5rem;
        border-bottom: .1rem solid var(--Green);
    }

    .voice-wrap .voice-name {
        margin-top: .5rem;
        font-size: 1.8rem;
    }

    .voice-wrap .voice-desc {
        margin-top: .5rem;
        font-size: 1.8rem;
        line-height: 1.556;
    }

    .voice-wrap .swiper-pagination {
        margin-top: 2rem;
    }

    .voice-wrap .voice-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 2rem;
        height: 2rem;
        margin: 0 1rem;
    }

    .voice-wrap .voice-links {
        margin-top: 3rem;
    }
}


/*** 寄附先プロジェクトを探す ***/

.project-wrap {
    width: 100%;
    padding: 2rem 0 5rem;
    background: #fff;
}

.project-wrap .project-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 4rem;
    line-height: 1.45;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.project-wrap .project-heading:before {
    width: 8rem;
    height: 10rem;
    content: '';
    background: url(../img/top/icon_title_project.svg) center center no-repeat;
    background-size: 100% auto;
}

.project-wrap .project-heading:after {
    width: 30.9rem;
    height: 30.9rem;
    background: #fff;
    border-radius: 100%;
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -7.44rem;
    z-index: -1;
}

.project-wrap .project-text {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.556;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.project-wrap .project-categorys {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-wrap .project-categorys select {
    width: 32rem;
    height: 5rem;
    border: .1rem solid #ccc;
    border-radius: .8rem;
    background: url(../img/common/icon_select.svg) right 1rem center no-repeat;
    background-size: 2.4rem auto;
    padding: 0 4.4rem 0 2rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--Black);
    outline: none;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
}

.project-list .project-list__item {
    display: block;
}

.project-image {
    width: 100%;
    aspect-ratio: 32 / 21;
    border-radius: 1rem;
    display: block;
    overflow: hidden;
    border: .1rem solid #ccc;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.project-info .project-info__category {
    display: inline-flex;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.6rem;
    padding: .4rem 2rem;
    border-radius: 1.7rem;
    background: var(--Green);
    color: #fff;
}

.project-info .project-info__area {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--Green);
    line-height: 2.6rem;
}

.project-title {
    display: block;
    margin-top: 1rem;
    font-size: 2rem;
    line-height: 1.45;
    font-weight: 500;
}

.project-tags {
    display: block;
    margin-top: 1rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
    color: #666;
}

.project-wrap .project-links {
    margin-top: 4rem;
    text-align: center;
}

.project-wrap .project-links .btn-scroll {
    background-color: var(--Green);
    background-image: url(../img/common/icon_arrow_down_green.svg);
}


/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .project-wrap {
        padding: 0 0 6rem;
    }

    .project-wrap .project-heading {
        gap: 2rem;
        font-size: 2.6rem;
    }

    .project-wrap .project-heading:after {
        top: -5.5rem;
    }

    .project-wrap .project-text {
        text-align: left;
    }

    .project-wrap .project-categorys {
        gap: 2rem;
        flex-direction: column;
    }

    .project-wrap .project-categorys select {
        width: 100%;
        background-position: right 1.3rem center;
    }

    .project-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }

    .project-wrap .project-links {
        margin-top: 3rem;
    }

}


/*** 無料相談・資料請求フォーム ***/
.contact-wrap {
    background: var(--Green);
    padding: 8rem 0;
}

.contact-wrap .contact-heading {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-wrap .contact-text {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.5556;
    color: #fff;
    margin-bottom: 3rem;
}

.contact-wrap .contact-form {
    width: 100%;
    background: #fff;
    border-radius: 3rem;
    padding: 5rem;
}

.contact-wrap .contact-body {
    display: flex;
    justify-content: center;
    align-items: align-items;
    gap: 4rem;
}

.contact-wrap .contact-body .contact-body__item{
    width: 100%;
} 

.contact-wrap .contact-body dl + dl {
    margin-top: 3rem;
}

.contact-wrap .contact-body dl dt {
    font-size: 1.8rem;
    line-height: 1.27;
    font-weight: 600;
    color: var(--Black);
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
}

.contact-wrap .contact-body .is-required {
    display: inline-block;
    margin-left: .8rem;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #fff;
    padding: .2rem 1.2rem;
    border-radius: 1.3rem;
    background: var(--Orange);
}

.contact-wrap .contact-body dl dd {
    width: 100%;
}

.contact-wrap .contact-form input[type=text],
.contact-wrap .contact-form input[type=tel],
.contact-wrap .contact-form input[type=email],
.contact-wrap .contact-form textarea {
    width: 100%;
    height: 5rem;
    padding: 0 1.2rem;
    border: 0;
    border-radius: .8rem;
    background: #F8F8F8;
    font-size: 1.8rem;
    line-height: 1.5;
}

.contact-wrap .contact-form textarea {
    height: 40.8rem;
    padding: 1.5rem 2.2rem;
}

.contact-wrap .contact-agree {
    margin-top: 2.6rem;
    text-align: center;
    position: relative;
}

.contact-wrap .contact-agree input[type=checkbox] {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%,-50%);
}

.contact-wrap .contact-agree label .smf-checkbox-control__label {
    padding-left: 3rem;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--Black);
    background: url(../img/common/icon_check.svg) left .3rem no-repeat;
    background-size: 2rem auto;
    cursor: pointer;
}

.contact-wrap .contact-agree label input[type=checkbox]:checked + .smf-checkbox-control__label {
    background-image: url(../img/common/icon_checked.svg);
}

.contact-wrap .contact-agree label a {
    text-decoration: underline;
}

.contact-wrap .contact-button {
    margin-top: 3rem;
    text-align: center;
}

.contact-wrap .contact-button input[type=submit] {
    width: 40rem;
    height: 8rem;
    border-radius: 4rem;
    border: 0;
    background: url(../img/common/icon_arrow_right_green.svg) right 2.5rem center no-repeat var(--Green);
    background-size: 3rem auto;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: bold;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .contact-wrap .contact-agree label a:hover {
        text-decoration: none;
    }
}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .contact-wrap {
        padding: 5rem 0;
    }

    .contact-wrap .contact-heading {
        font-size: 2.8rem;
        line-height: 1.428571428571429;
    }

    .contact-wrap .contact-text {
        text-align: left;
        margin-bottom: 2rem;
    }

    .contact-wrap .contact-form {
        padding: 3rem;
    }

    .contact-wrap .contact-body {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-wrap .contact-agree {
        margin-top: 1.2rem;
    }

    .contact-wrap .contact-agree label .smf-checkbox-control__label {
        font-size: 1.4rem;
        background-position: left top;
    }

    .contact-wrap .contact-button input[type=submit] {
        width: 26rem;
        height: 5rem;
        background: url(../img/common/icon_arrow_right_green.svg) right 1.5rem center no-repeat var(--Green);
        background-size: 2rem auto;
        font-size: 1.8rem;
    }
}


/* !project
---------------------------------------------------------- */
.project-detail {
    padding: 8rem 0;
}

.project-head {
    margin-bottom: 3rem;
}

.project-head h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.45;
}

.project-body {
    font-size: 1.8rem;
    line-height: 3.2rem;
    font-weight: 400;
    color: var(--Black);
}

.project-body figure {
    display: block;
    margin: 0 0 2rem;
}

.project-body figure img {
    width: 100%;
    border-radius: 1rem;
}

.project-body p {
    margin-bottom: 2rem;
}

.project-body h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.45;
    margin-bottom: 2rem;
}

.project-body h2 {
    margin-bottom: 2rem;
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: .1rem solid var(--Green);
}

.project-body h3 {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 4rem;
    margin-bottom: 2rem;
}

.project-body h4 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 3.8rem;
    margin-bottom: 2rem;
}

.project-body h5 {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 3.6rem;
    margin-bottom: 2rem;
}

.project-body h6 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 3.4rem;
    margin-bottom: 2rem;
}

.project-body a {
    color: var(--Green);
    text-decoration: underline;
}

.project-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.project-others {
    padding: 8rem 0;
    background: var(--LightGreen);
}

.project-others .project-heading {
    text-align: center;
    font-size: 4rem;
    line-height: 1.45;
    font-weight: bold;
    margin-bottom: 3rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .project-body a:hover {
        text-decoration: none;
    }
}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){
    .project-detail {
        padding: 4rem 0 4.5rem;
    }

    .project-head h1,
    .project-body h1 {
        font-size: 3rem;
        line-height: 1.43;
    }

    .project-links {
        margin-top: 3.5rem;
        flex-direction: column;
    }

    .project-others {
        padding: 5rem 0;
    }

    .project-others .project-heading {
        font-size: 2.8rem;
        line-height: 1.5;
    }
}


/* !thanks
---------------------------------------------------------- */
.thanks-wrap {
    padding: 8rem 0;
    background: #fff;
}

.thanks-wrap .thanks-box {
    width: 100%;
    background: var(--Green);
    border-radius: 3rem;
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    line-height: 2.4rem;
}

.thanks-wrap .thanks-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    font-size: 3.4rem;
    line-height: 4.9rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.thanks-wrap .thanks-heading:before {
    width: 8rem;
    height: 8rem;
    background: url(../img/common/icon_mail.svg) center center no-repeat;
    background-size: 100% 100%;
    content: '';
}

.thanks-wrap .thanks-button {
    margin-top: 5rem;
}


/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){

    .thanks-wrap .thanks-heading {
        font-size: 2.8rem;
        line-height: 4.1rem;
    }
}

.button-loading,
.select-loading {
    text-align: center;
    padding-top: 4rem;
}

.button-loading img,
.select-loading img {
    width: 3.2rem;
}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){

    .button-loading,
    .select-loading {
        padding-top: 3rem;
    }
}




.snow-monkey-form {
    width: 100%;
    background: #fff;
    border-radius: 3rem;
    padding: 5rem;
}

.snow-monkey-form .smf-form {
    position: relative;
}

.snow-monkey-form .smf-form .smf-item {
    width: calc(50% - 2rem);
}

.snow-monkey-form .smf-form .smf-item + .smf-item {
    margin-top: 3rem;
}

.snow-monkey-form .smf-form .smf-item.contact-body__item {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    margin-top: 0;
}

.snow-monkey-form .smf-form .smf-item.contact-agree {
    width: 100%;
    margin-top: 2.6rem;
} 

.snow-monkey-form .smf-item__label__text {
    font-size: 1.8rem;
    line-height: 1.27;
    font-weight: 600;
    color: var(--Black);
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
}

.snow-monkey-form .smf-item__label__text strong {
    display: inline-block;
    margin-left: .8rem;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #fff;
    padding: .2rem 1.2rem;
    border-radius: 1.3rem;
    background: var(--Orange);
}

.snow-monkey-form input[type=text],
.snow-monkey-form input[type=tel],
.snow-monkey-form input[type=email]{
    width: 100%;
    height: 5rem;
    padding: 0 1.2rem;
    border: 0;
    border-radius: .8rem;
    background: #F8F8F8;
    font-size: 1.8rem;
    line-height: 1.5;
}

.snow-monkey-form textarea {
    height: 40.8rem;
    padding: 1.5rem 2.2rem !important;
    border: 0 !important;
    border-radius: .8rem !important;
    background: #F8F8F8 !important;
    font-size: 1.8rem;
    line-height: 1.5;
}

.snow-monkey-form input.error{
    background: #FFF3E6;
}

.snow-monkey-form .smf-form .smf-item.contact-agree .smf-item__col--label {
    display: none;
}

.snow-monkey-form .smf-action {
    margin-top: 3rem;
    text-align: center;
}

.snow-monkey-form .smf-action button[type=submit]:not(.is-back) {
    width: 40rem;
    height: 8rem;
    border-radius: 4rem;
    border: 0;
    background: url(../img/common/icon_arrow_right_green.svg) right 2.5rem center no-repeat var(--Green);
    background-size: 3rem auto;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: bold;
    transition: opacity .3s ease-in-out;
}

.snow-monkey-form .smf-action button[type=submit].is-back {
    width: 40rem;
    height: 8rem;
    border-radius: 4rem;
    border: 0;
    background: url(../img/common/icon_arrow_left_gary.svg) 2.5rem center no-repeat #B1B1B1;
    background-size: 3rem auto;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: bold;
    transition: opacity .3s ease-in-out;
}

.smf-error-messages {
    font-size: 1.8rem;
    line-height: 2.2rem;
    color: var(--Orange);
    margin-top: 1.6rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .snow-monkey-form .smf-action button[type=submit]:hover {
        opacity: .7;
    }
}

/*** スマホ 375px ~ 767px***/
@media only screen and (max-width : 767px){

    .snow-monkey-form {
        padding: 3rem;
    }

    .snow-monkey-form .smf-form .smf-item {
        width: 100%;
    }

    .snow-monkey-form .smf-form .smf-item.contact-body__item {
        position: relative;
        margin-top: 3rem;
    }

    .snow-monkey-form .smf-action {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1.6rem;
    }

    .snow-monkey-form .smf-action button[type=submit]:not(.is-back) {
        width: 26rem;
        height: 5rem;
        background: url(../img/common/icon_arrow_right_green.svg) right 1.5rem center no-repeat var(--Green);
        background-size: 2rem auto;
        font-size: 1.8rem;
    }

    .snow-monkey-form .smf-action button[type=submit].is-back {
        width: 26rem;
        height: 5rem;
        background: url(../img/common/icon_arrow_left_gary.svg) 1.5rem center no-repeat #B1B1B1;
        background-size: 2rem auto;
        font-size: 1.8rem;
    }

    .smf-action .smf-button-control+.smf-button-control {
        margin: 0;
    }
}

