@charset "utf-8";
/* *************************************
// スタイル
************************************* */

:root {
    --main-color: #e5c35f;
    --sub-color: #d49c35;
    --shadow-color: 0 10px 20px rgba(155, 111, 0, 0.2);
    --soft-font: "Zen Maru Gothic", sans-serif;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}
h1, h2, h3, h4, .title {
    font-family: var(--soft-font);
    font-weight: bold;
}
.btn001 a {
    position: relative;
    display: block;
    width: fit-content;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 70px;
    border-radius: 100vh;
}
.btn001 a::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 1.25em;
    height: 1.25em;
    font-size: 14px;
    background-color: var(--sub-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}
.btn002 a {
    position: relative;
    display: block;
    width: fit-content;
    background-color: var(--sub-color);
    color: #fff;
    text-align: center;
    padding: 10px 50px;
    border-radius: 100vh;
    margin-top: 30px;
    margin-inline: auto;
    transition: 0.2s;
}
.btn002 a::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 1.25em;
    height: 1.25em;
    font-size: 14px;
    background-color: #fff;
    color: var(--sub-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}
.btn002 a:hover {
    opacity: 0.75;
}
.ttl001 {
    margin-bottom: 30px;
}
.ttl001 h2 {
    font-size: min(50px, calc(50 / 1599 * 100vw));
    text-align: center;
}
.ttl001 h2 .color {
    color: var(--sub-color);
}
#container {
    overflow-x: hidden;
}
.color {
    color: var(--sub-color);
}

.tel_contents a {
    display: block;
}
.tel_contents a .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: bold;
}
.tel_contents a .number img {
    width: 32px;
    margin-right: 10px;
    display: block;
    filter: brightness(0) saturate(100%) invert(82%) sepia(66%) saturate(2713%) hue-rotate(334deg) brightness(89%) contrast(84%);
}
.tel_contents a .time {
    text-align: center;
    font-size: 16px;
}
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
    body:has(.header .menu.open) {
        overflow: hidden;
    }
    #container {
        padding-top: 0;
    }
    .btn001 a {
        padding: 5px 30px;
    }
    .btn001 a::after {
        right: 10px;
        font-size: 11px;
    }
    .ttl001 h2 {
        font-size: 32px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    .ttl001 h2 {
        font-size: 50px;
    }
}

/* *************************************
// ヘッダー
************************************* */
.header.h001 {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    width: 95%;
    top: 30px;
    left: 2.5%;
    border-radius: 100vh;
    padding: 15px 30px;
}
.header.h001 .logo {
    padding: 0;
}
.header.h001 .logo img {
    display: block;
    height: 50px;
}
.header.h001 .menu_box nav ul li {
    font-family: var(--soft-font);
    font-weight: 500;
}
.header.h001 .menu_box nav ul li a {
    position: relative;
}
.header.h001 .menu_box nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 3px;
    border-radius: 100vh;
    background-color: var(--main-color);
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.35s;
}
.header.h001 .menu_box nav ul li a:hover::after {
    transform: scale(1, 1);
}
@media (max-width: 1280px) {
    .header.h001 {
        top: 15px;
        padding: 0;
    }
    .h001.header #inner-header {
        padding: 0;
        height: 100%;
    }
    .header.h001 .logo {
        background-color: #fff;
        padding: 10px 15px;
        padding-right: 70px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        border-radius: 100vh;
        height: 100%;
    }
    .h001.header .menu {
        top: 5px;
        right: 5px;
        background-color: var(--main-color);
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }
    .h001.header label.buMenu {
        height: 16px;
        width: 20px;
    }
    .h001.header label.buMenu .icon-bar {
        width: 20px;
    }
    .h001.header label.buMenu .icon-bar {
        background-color: #fff;
    }
    .h001.header .menu .menu_text {
        color: #fff;
        font-size: 11px;
        margin-top: 5px;
    }
    .h001.header .menu_box {
        transition: none;
        transform: none;
        position: fixed;
        inset: 0;
        background-color: var(--main-color);
        padding: 15px;
        padding-top: 90px;
        transition: 0.4s;
        opacity: 0;
        visibility: hidden;
        filter: blur(10px);
    }
    .h001.header:has(.menu.open) .menu_box {
        opacity: 1;
        visibility: visible;
        filter: blur(0);
    }
    .h001.header .menu_box nav {
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        border-radius: 25px;
        padding: 15px;
        height: auto;
        
    }
    .h001.header .menu_box nav ul > li:first-child {
        border-top: none;
    }
    .h001.header .menu_box nav ul  {
        border-bottom: none;
    }
}


/* *************************************
// メインビジュアル
************************************* */
#main_visual {
    position: relative;
    z-index: 2;

}
#main_visual .image {
    position: relative;
    z-index: 1;
    width: 90%;
    height: 90vh;
    margin-left: auto;
}
#main_visual .image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 76%;
    background-color: var(--main-color);
    border-bottom-left-radius: 200px;
    z-index: -1;

        height: 107%;

}
#main_visual .image img {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 200px;
    object-fit: cover;
    box-shadow: var(--shadow-color);
}
#main_visual .text {
    position: absolute;
    top: 18%;
    left: 15%;
    z-index: 1;
}
#main_visual .text h1 {
    writing-mode: vertical-rl;
    font-family: var(--soft-font);
    font-size: calc(45 / 931 * 100vh);
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
}
#main_visual .text h1 > span {
    display: block;
    background-color: #fff;
    height: fit-content;
    padding: 15px;
    margin-right: 25px;
}
#main_visual .text h1 > span .shadow {
    font-size: 130%;
    text-shadow: 3px 3px 0 rgba(242	206	107);
    display: inline-block;
    margin: 10px 0;
}
#main_visual .text h1 > span:last-child {
    margin-top: 0.75em;
}
@media (max-width: 767px) {
#main_visual .image {
    width: 100%;
    height: 65vh;
}
    #main_visual .image img,
    #main_visual .image::before {
        border-bottom-left-radius: 150px;
    }
    #main_visual .image img{
        object-position: 44% top;
    }

    #main_visual .text {
        left: 4.5%;
    }
#main_visual .text h1 {
    font-size: calc(23 / 666 * 100vh);
}
    #main_visual .text h1 > span {
        padding: 10px;
        margin-right: 10px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    #container {
        padding-top: 0;
    }
}


/*  *************************************
// 沼津ってこんなところ
************************************* */
#top_about {
    position: relative;
    z-index: 1;
    padding: 15% 10% 0;
    overflow-y: hidden;
}
#top_about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.5) 85%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}
#top_about::after {
    content: url(../images/top/about.svg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -2;
}
#top_about .title {
    container-type: inline-size;
    margin-bottom: 50px;
}
#top_about .title .en {
    position: relative;
    font-size: min(27px, calc(27 / 1211 * 100cqi));
    color: var(--sub-color);
}
#top_about .title .en::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 0.75em);
    width: 100%;
    height: 1px;
    background-color: #333;
}
#top_about .title h2 {
    font-size: min(45px, calc(45 / 1211 * 100cqi));
}
#top_about .title h2 .large {
    font-size: 125%;
    line-height: 1;
}
#top_about .text {
    font-size: 20px;
    line-height: 2;
}
@media (max-width: 767px) {
    #top_about {
        overflow: hidden;
    }
    #top_about::before {
        width: 100%;
        height: 70%;
        background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0.5) 95%, rgba(255, 255, 255, 0) 100%);
    }
    #top_about::after {
        position: relative;
        inset: 0;
        display: block;
        width: 300%;
        margin-left: -177%;
        margin-top: -35%;
        margin-bottom: -95%;
    }
    #top_about .title {
        margin-bottom: 30px;
    }
    #top_about .title .en {
        font-size: 18px;
    }
    #top_about .title h2 {
        font-size: 25px;
    }
    #top_about .text {
        font-size: 16px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    #top_about .title h2 {
        font-size: 30px;
    }
}


/* *************************************
// 支援制度まとめ
************************************* */
#top_support {
    margin-top: 150px;
}
#top_support .title {
    margin-bottom: 30px;
}
#top_support .title .catch {
    position: relative;
    font-size: min(25px, calc(25 / 1211 * 100cqi));
    width: fit-content;
    background-color: var(--sub-color);
    border-radius: 100vh;
    padding: 5px 25px;
    color: #fff;
    margin-inline: auto;
    margin-bottom: 15px;
}
#top_support .title .catch::before {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    width: 40px;
    height: 20px;
    background-color: var(--sub-color);
    transform: translateX(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
#top_support .title .catch .large {
    font-size: 115%;
    line-height: 1;
    display: inline-block;
    margin-inline: 5px;
}
#top_support .title h2 {
    font-size: min(55px, calc(55 / 1211 * 100cqi));
    text-align: center;
}
#top_support .title h2 .color {
    color: var(--sub-color);
}
#top_support .detail {
    text-align: center;
    font-size: 20px;
    line-height: 2;
}
#top_support .contents {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 10px;
}
#top_support .contents::before,
#top_support .contents::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 110%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
}
#top_support .contents::before {
    background-color: var(--sub-color);
    opacity: 0.1;
    z-index: -1;
    border-top-left-radius: 100% 40%;
    border-bottom-left-radius: 50% 30%;
}
#top_support .contents::after {
    background-color: var(--main-color);
    z-index: -1;
    border-top-right-radius: 100% 40%;
    border-bottom-right-radius: 50% 30%;
}
#top_support .contents .four_in_one {
    width: 90%;
    max-width: 1400px;
    margin-inline: auto;
    justify-content: space-between;
}
#top_support .contents .four_in_one > div {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    container-type: inline-size;
    width: calc(100% / 4 - 25px);
    padding: 30px 15px;
}
#top_support .contents .four_in_one > div:nth-child(odd) {
    margin-bottom: 30px;
}
#top_support .contents .four_in_one > div:nth-child(even) {
    margin-top: 30px;
}
#top_support .contents .four_in_one > div h3 {
    font-size: calc(28 / 295 * 100cqi);
    line-height: 1.5;
    text-align: center;
}
#top_support .contents .four_in_one > div h3 .small {
    font-size: 70%;
}
#top_support .contents .four_in_one > div .icon {
    height: 80px;
    margin: 25px 0;
}
#top_support .contents .four_in_one > div .icon img {
    display: block;
    height: 100%;
    margin-inline: auto;
}
#top_support .contents .four_in_one > div .text {
    font-size: 16px;
    text-align: center;
}
#top_support .contents .four_in_one > div .text .color {
    color: var(--sub-color);
    font-weight: 500;
}
#top_support .contents .four_in_one > div .text > *:last-child {
    margin-bottom: 0;
}
#top_support .contents .btn001 {
    margin-top: 50px;
    margin-bottom: 100px;
}
#top_support .contents .btn001 a .large {
    font-size: 23px;
    font-weight: bold;
}
#top_support .subsidy {
    position: relative;
    z-index: 1;
    margin-bottom: -200px;
}
#top_support .subsidy .two_in_one {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: var(--shadow-color);
    padding: 30px;
    align-items: center;
    container-type: inline-size;
}
#top_support .subsidy .sub_title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
#top_support .subsidy .sub_title .icon {
    width: 60px;
    margin-right: 10px;
}
#top_support .subsidy .sub_title h3 {
    font-size: calc(32 / 1040 * 100cqi);
}
#top_support .subsidy .text {
    padding-left: 30px;
    font-size: 16px;
}
#top_support .subsidy .btn001 {
    margin-top: 30px;
    margin-bottom: 0;
}
#top_support .subsidy .btn001 a {
    padding-inline: 50px;
}
#top_support .subsidy .image {
    padding-left: 15px;
}
@media (max-width: 767px) {
    #top_support {
        margin-top: 120px;
    }
    #top_support .title {
        margin-bottom: 15px;
    }
    #top_support .title .catch {
        font-size: 13px;
        padding-inline: 0.75em;
    }
    #top_support .title .catch::before {
        width: 20px;
        height: 10px;
    }
    #top_support .title h2 {
        font-size: 28px;
    }
    #top_support .detail {
        font-size: 16px;
        margin-bottom: 30px;
    }
    #top_support .contents {
        padding-top: 30px;
    }
    #top_support .contents::before {
        border-top-left-radius: 100% 80px;
        border-bottom-left-radius: 0;
    }
    #top_support .contents::after {
        border-top-right-radius: 100% 80px;
        border-bottom-right-radius: 100% 100px;
    }
    #top_support .contents .four_in_one {
        width: 85%;
        gap: 50px;
    }
    #top_support .contents .four_in_one > div {
        width: 100%;
    }
    #top_support .contents .four_in_one > div:nth-child(odd),
    #top_support .contents .four_in_one > div:nth-child(even) {
        margin: 0;
    }
    #top_support .contents .btn001 {
        margin-bottom: 80px;
    }
    #top_support .contents .btn001 a {
        font-size: 13px;
    }
    #top_support .contents .btn001 a .large {
        font-size: 16px;
    }
    #top_support .subsidy .two_in_one {
        padding: 30px 15px 15px;
        width: calc(100% - 30px);
        margin-inline: auto;
    }
    #top_support .subsidy .sub_title .icon {
        width: 40px;
    }
    #top_support .subsidy .sub_title h3 {
        font-size: 20px;
    }
    #top_support .subsidy .text {
        padding-inline: 15px;
        font-size: 14px;
    }
    #top_support .subsidy .btn001 a {
        padding-right: 30px;
        padding-left: 15px;
    }
    #top_support .contents .subsidy .btn001 {
        margin: 25px 0;
    }
    #top_support .subsidy .image {
        padding-left: 0;
    }
    #top_support .subsidy .image img {
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    #top_support .title h2 {
        font-size: 50px;
    }
    #top_support .contents {
        padding-top: 80px;
        margin-top: 50px;
    }
    #top_support .contents::before {
        border-top-left-radius: 100% 15%;
    }
    #top_support .contents::after {
        border-top-right-radius: 100% 15%;
    }
    #top_support .contents .four_in_one > div {
        width: calc(100% / 2 - 15px);
        margin-bottom: 30px;
    }
    #top_support .contents .four_in_one > div:nth-child(even) {
        margin-top: 0;
    }
    #top_support .subsidy .two_in_one {
        gap: 30px;
    }
    #top_support .subsidy .two_in_one > div {
        width: 100%;
    }
    #top_support .subsidy .sub_title .icon {
        width: 80px;
    }
    #top_support .subsidy .sub_title h3 {
        font-size: 30px;
    }
}


/* *************************************
// よくあるご質問
************************************* */
#top_faq {
    padding-top: 20%;
}
#top_faq .detail {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
}
#top_faq .contents {
    margin-bottom: 100px;
}
#top_faq .contents .item {
    border-bottom: 2px solid #ccc;
    font-size: 20px;
    font-family: var(--soft-font);
    padding: 0 30px 50px;
    margin-bottom: 50px;
}
#top_faq .contents .item > div {
    position: relative;
    padding-left: calc(1em * 1.25 * 1.75 + 0.5em);
}
#top_faq .contents .item > div::before {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(0.75em * 1.8 / 2);
    left: 0;
    font-size: 125%;
    font-weight: bold;
    border: 2px solid var(--sub-color);
    border-radius: 50%;
    width: 1.75em;
    height: 1.75em;
    transform: translateY(-50%);
}
#top_faq .contents .item > div.question {
    margin-bottom: 25px;
    font-weight: bold;
}
#top_faq .contents .item > div.question::before {
    content: "Q.";
    color: var(--sub-color);
    background-color: #fff;
}
#top_faq .contents .item > div.answer::before {
    content: "A.";
    color: #fff;
    background-color: var(--sub-color);
}
@media (max-width: 767px) {
    #top_faq {
        padding-top: 80%;
    }
    #top_faq .detail {
        font-size: 16px;
    }
    #top_faq .contents .item {
        font-size: 16px;
        padding: 0 15px 30px;
        margin-bottom: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    #top_faq {
        padding-top: 40%;
    }
    #top_faq .contents .item {
        padding-inline: 15px;
    }
}


/* *************************************
// 移住した人の声
************************************* */
#top_usevoice {
    position: relative;
    z-index: 1;
    background-color: var(--main-color);
    margin-top: 20%;
    margin-bottom: 15%;
}
#top_usevoice::before,
#top_usevoice::after {
    content: url(../images/top/bg-wave.svg);
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    z-index: -1;
}
#top_usevoice::before {
    top: -13%;
    opacity: 0.2;
    transform: scaleX(-1);
    width: 160%;
    left: -15%;
}
.sc001 .title h2 {
    font-size: min(35px, calc(35 / 1599 * 100vw));
    width: fit-content;
    background-color: #fff;
    border-top-right-radius: 100vh;
    border-bottom-right-radius: 100vh;
    padding: 0 1.5em;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 100px;
}
.sc001 .title h2 > span {
    display: inline-block;
    margin-inline: 10px;
}
.sc001 .title h2 > .color {
    font-size: 150%;
    color: var(--sub-color);
}
.sc001 .title h2 > .large {
    font-size: 150%;
}
.sc001 .item {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 50px 60px;
    container-type: inline-size;
}
.sc001 .item .icon {
    float: right;
    background-color: #c7eeee;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    overflow: hidden;
    padding-top: 5%;
    margin-top: -130px;
    margin-right: -110px;
}
.sc001 .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.sc001 .item .catch h3 {
    font-size: calc(32 / 920 * 100cqi);
    margin-bottom: 15px;
}
.sc001 .item .catch h3 .color {
    color: var(--sub-color);
}
.sc001 .item .detail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 30px;
    gap: 30px;
    margin-bottom: 50px;
}
.sc001 .item .detail::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--sub-color);
    opacity: 0.2;
    z-index: -1;
    border-radius: 10px;
}
.sc001 .item .detail .info {
    font-size: 21px;
}
.sc001 .item .detail ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
    font-size: 16px;
}
.sc001 .item .detail ul > li {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.sc001 .item .detail ul > li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid var(--sub-color);
    border-radius: 50%;
}
.sc001 .item h4 {
    line-height: 1.25;
    font-size: calc(25 / 920 * 100cqi);
    border-left: 12px solid var(--sub-color);
    padding-left: 0.5em;
    margin-bottom: 30px;
}
.sc001 .item .text {
    padding-left: 30px;
    margin-bottom: 50px;
}
.sc001 .item .text_contents > .text:last-child {
    margin-bottom: 0;
}
.sc001 .contents {
    padding-bottom: 80px;
}
#top_usevoice .contents::before {
    content: url(../images/top/bg-wave.svg);
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 110%;
    z-index: -1;
}
@media (max-width: 767px) {
    #top_usevoice {
        margin-top: 30%;
        padding-top: 30px;
    }
    #top_usevoice::before,
    #top_usevoice::after {
        top: -3%;
        width: 150%;
    }
    #top_usevoice::after {
        top: -2%;
    }
    .sc001 .title h2 {
        font-size: 16px;
        padding-inline: 0.5em;
        margin-bottom: 130px;
    }
    .sc001 .title h2 > span {
        margin-inline: 5px;
    }
    .sc001 .item {
        padding: 30px 15px;
    }
    .sc001 .item .icon {
        float: none;
        width: 60%;
        margin-inline: auto;
        height: auto;
        aspect-ratio: 1;
        margin-bottom: 15px;
    }
    .sc001 .item .catch h3 {
        font-size: 23px;
    }
    .sc001 .item .detail {
        display: block;
        padding: 10px 20px;
        width: 100%;
        margin-bottom: 30px;
    }
    .sc001 .item .detail .info {
        font-size: 18px;
    }
    .sc001 .item .detail ul {
        width: 100%;
        font-size: 11px;
        gap: 0.5em;
        justify-content: flex-end;
    }
    .sc001 .item h4 {
        font-size: 18px;
        border-width: 8px;
        margin-bottom: 15px;
    }
    .sc001 .item .text {
        font-size: 14px;
        padding-inline: 15px;
        margin-bottom: 30px;
    }
    #top_usevoice .contents::before {
        bottom: -3%;
        width: 150%;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    #top_usevoice {
        margin-top: 30%;
    }
    #top_usevoice::before {
        top: -9%;
    }
    #top_usevoice::after {
        top: -8%;
    }
    .sc001 .title {
        margin-bottom: 220px;
    }
    .sc001 .title h2 {
        font-size: 28px;
    }
    .sc001 .item .icon {
        float: none;
        margin-bottom: 30px;
        margin-inline: auto;
        margin-top: -210px;
    }
    .sc001 .item {
        padding-inline: 30px;
    }
    .sc001 .item .catch h3 {
        font-size: 30px;
    }
    .sc001 .item .detail {
        padding-inline: 15px;
        gap: 15px;
    }
    .sc001 .item .detail ul {
        gap: 0.5em;
    }
    .sc001 .item .detail ul > li {
        gap: 0.25em;
    }
    .sc001 .item h4 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    #top_usevoice .contents::before {
        bottom: -5%;
    }
}


/* *************************************
// お試し移住 やってます
************************************* */
#top_trial {
    margin-bottom: 100px;
}
#top_trial .two_in_one {
    align-items: center;
}
#top_trial .two_in_one > .image_contents {
    position: relative;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    width: 40%;
    z-index: 2;
}
#top_trial .two_in_one > .image_contents img {
    display: block;
    aspect-ratio: 7 / 8;
    object-fit: cover;
    object-position: 75% 100%;
}
#top_trial .two_in_one > .text_contents {
    width: 60%;
    padding-left: 5%;
}
#top_trial .two_in_one > .text_contents .title {
    font-size: min(55px, calc(55 / 1599 * 100vw));
    margin-bottom: 30px;
}
#top_trial .two_in_one > .text_contents .title .catch {
    font-size: 60%;
    color: var(--sub-color);
}
#top_trial .two_in_one > .text_contents .title h2 {
    margin-left: -0.5em;
}
#top_trial .two_in_one > .text_contents h3 {
    position: relative;
    font-size: min(35px, calc(35 / 1599 * 100vw));
    padding-left: 30px;
    margin-bottom: 15px;
}
#top_trial .two_in_one > .text_contents h3::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    width: 100vw;
    height: 2px;
    background-color: var(--sub-color);
    z-index: 1;
}
#top_trial .two_in_one > .text_contents .text {
    padding-left: 50px;
}
@media (max-width: 767px) {
    #top_trial {
        margin-top: 100px;
    }
    #top_trial .two_in_one {
        flex-direction: column-reverse;
    }
    #top_trial .two_in_one > .image_contents {
        width: 90%;
        margin-right: auto;
    }
    #top_trial .two_in_one > .text_contents {
        width: 100%;
        padding: 0 15px 30px;
    }
    #top_trial .two_in_one > .text_contents .title {
        font-size: 26px;
    }
    #top_trial .two_in_one > .text_contents h3 {
        font-size: 23px;
        padding-left: 10px;
    }
    #top_trial .two_in_one > .text_contents .text {
        font-size: 14px;
        padding: 0;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    #top_trial .two_in_one {
        flex-direction: column-reverse;
    }
    #top_trial .two_in_one > .text_contents {
        width: 100%;
    }
    #top_trial .two_in_one > .text_contents .title {
        font-size: 35px;
    }
    #top_trial .two_in_one > .text_contents h3 {
        padding-left: 15px;
        font-size: 30px;
    }
    #top_trial .two_in_one > .image_contents {
        width: 90%;
        margin-right: auto;
        margin-top: 30px;
    }
    #top_trial .two_in_one > .text_contents .text {
        padding-inline: 15px;
    }
    #top_trial .two_in_one > .image_contents img {
        aspect-ratio: 3 / 2;
    }
}


/* *************************************
// お試し移住 声
************************************* */
#top_trialvoice {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}
#top_trialvoice::before,
#top_trialvoice::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 110%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
}
#top_trialvoice::before {
    background-color: var(--sub-color);
    border-top-right-radius: 100% 40%;
}
#top_trialvoice::after {
    background-color: var(--main-color);
    border-top-left-radius: 100% 40%;
    border-bottom-left-radius: 100% 20%;
}
@media (max-width: 767px) {
    #top_trialvoice {
        padding-top: 50px;
    }
    #top_trialvoice::before {
        border-top-right-radius: 100% 80px;
    }
    #top_trialvoice::after {
        border-top-left-radius: 100% 80px;
        border-bottom-left-radius: 100% 40px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    #top_trialvoice::before {
        border-top-right-radius: 100% 20%;
    }
    #top_trialvoice::after {
        border-top-left-radius: 100% 20%;
    }
}


/* *************************************
// お問い合わせ・ご相談
************************************* */
#top_contact {
    position: relative;
    z-index: 1;
    background-color: #f7ecd1;
    padding-bottom: 80px;
}
#top_contact::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 35%;
    background-color: var(--sub-color);
    z-index: -1;
}
#top_contact .title {
    font-size: min(55px, calc(55 / 1599 * 100vw));
    margin-bottom: 50px;
}
#top_contact .title .catch {
    width: fit-content;
    background-color: #333;
    color: #fff;
    padding: 0 1.5em;
    border-radius: 100vh;
    margin-inline: auto;
    font-size: 50%;
}
#top_contact .title h2 {
    color: #fff;
    text-align: center;
}
#top_contact .item {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    container-type: inline-size;
    padding: 30px 80px;
    margin-bottom: 50px;
}
#top_contact .item h3 {
    font-size: calc(25 / 880 * 100cqi);
    width: fit-content;
    margin-inline: auto;
    padding: 0 1.75em;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
}
#top_contact .item table.mail_form {
    margin-top: 30px;
}
table.mail_form tr:first-child {
    border-top: none;
}
table.mail_form tr:last-child {
    border-bottom: none;
}
table.mail_form th,
table.mail_form td {
    vertical-align: top;
    padding-top: 20px;
    padding-bottom: 20px;
}
table.mail_form tr th.required:after {
    color: #cc4b44;
    border: 1px solid #cc4b44;
    background-color: transparent;
    margin-left: 1.5em;
}
#top_contact .item .btn001 {
    position: relative;
    margin-bottom: 0;
    width: fit-content;
    margin-inline: auto;
}
#top_contact .item .btn001::before {
    content: ">";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 1.25em;
    height: 1.25em;
    font-size: 14px;
    background-color: var(--sub-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
    transition: 0.2s;
    z-index: 1;
}
#top_contact .item .btn001:has(input:hover)::before {
    opacity: 0.75;
}
#top_contact .item .btn001 input {
    background-color: #333;
    font-size: 20px;
    font-weight: bold;
    transition: 0.2s;
}
#top_contact .item .btn001 input:hover {
    opacity: 0.75;
}
.wpcf7-spinner {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    #top_contact {
        padding-bottom: 50px;
    }
    #top_contact .title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    #top_contact .item {
        padding: 30px 15px;
        margin-bottom: 15px;
    }
    #top_contact .item h3 {
        font-size: 25px;
        padding-inline: 0.75em;
    }
    table.mail_form th, table.mail_form td {
        padding: 0;
    }
    table.mail_form tr {
        border-bottom: none;
    }
    #top_contact .item .btn001 input {
        font-size: 16px;
        padding: 0.5em 15px;
        padding-right: 40px;
    }
    #top_contact .item .btn001::before {
        right: 8px;
    }
    .wpcf7-spinner {
        margin-inline: 10px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    #top_contact {
        padding-bottom: 30px;
    }
    #top_contact::before {
        height: 50%;
    }
    #top_contact .title {
        font-size: 40px;
    }
    #top_contact .item h3 {
        font-size: 28px;
    }
    #top_contact .item {
        padding-inline: 30px;
    }
}


/* *************************************
// フッター
************************************* */
footer.f001 {
    background-color: #fff;
    color: #333;
}
footer.f001 #inner-footer {
    display: block;
    padding: 50px 0 40px;
}
.f001 #inner-footer > * {
    margin-inline: auto;
}
footer.f001 .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    gap: 30px;
    margin-inline: auto;
}
footer.f001 .logo img {
    width: 50%;
    display: block;
}
footer.f001 .text {
    text-align: center;
    font-size: 16px;
    line-height: 2;
    margin-top: 15px;
}
footer.f001 .text .large {
    font-size: 18px;
    font-weight: 500;
}
.f001 .copyright {
    background-color: #333;
    color: #fff;
}
@media (max-width: 767px) {
    footer.f001 .logo {
        width: 80%;
        gap: 15px;
    }
}


/* *************************************
// Fix メニュー
************************************* */
.fix_menu {
    position: fixed;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
}
.fix_menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--sub-color);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 30px 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.fix_menu a:hover {
    opacity: 0.75;
}
.fix_menu a::after {
    content: ">";
    width: 1.25em;
    height: 1.25em;
    font-size: 14px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: var(--sub-color);
    z-index: 1;
    font-weight: bold;
    margin-top: 15px;
}
.fix_menu a .catch {
    width: 100px;
    margin-top: -85px;
    margin-left: -40px;
    margin-bottom: 20px;
}
.fix_menu a .catch img {
    width: 100%;
    display: block;
}
.fix_menu a span {
    color: #fff;
    writing-mode: vertical-lr;
    font-family: var(--soft-font);
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.1em;
}
@media (max-width: 767px) {
    .fix_menu {
        top: auto;
        bottom: 0;
        right: auto;
        left: 5%;
        transform: none;
        width: 90%;
    }
    .fix_menu a {
        justify-content: center;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0;
        flex-direction: row;
        padding: 10px 15px;
    }
    .fix_menu a span {
        writing-mode: horizontal-tb;
        font-size: 18px;
    }
    .fix_menu a .catch {
        width: 75px;
        flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 5px;
        margin-top: -40px;
        margin-left: -30px;
    }
    .fix_menu a::after {
        margin-top: 0;
        flex-shrink: 0;
        margin-left: 15px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    .fix_menu {
        transform: none;
        top: auto;
        bottom: 0;
        right: auto;
        left: 10%;
        width: 80%;
    }
    .fix_menu a {
        flex-direction: row;
        border-radius: 0;
        justify-content: center;
        gap: 15px;
        align-items: center;
        border-top-right-radius: 25px;
        border-top-left-radius: 25px;
        padding: 10px 30px;
    }
    .fix_menu a span {
        writing-mode: horizontal-tb;
    }
    .fix_menu a .catch {
        width: 80px;
        margin-top: -57px;
        margin-left: -50px;
        margin-bottom: -30px;
    }
    .fix_menu a::after {
        margin-top: 0;
    }
}

@media (max-width: 767px) {

    #top_about .text br,
    #top_faq br,
    #top_trial br{
        display: none;
    }

}